less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

68438 lines
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. }
  2475. //species
  2476. function getSpeciesInfo(speciesList) {
  2477. let result = new Set();
  2478. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2479. result.add(entry)
  2480. });
  2481. return Array.from(result);
  2482. };
  2483. function getSpeciesInfoHelper(species) {
  2484. if (!speciesData[species]) {
  2485. console.warn(species + " doesn't exist");
  2486. return [];
  2487. }
  2488. if (speciesData[species].parents) {
  2489. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2490. } else {
  2491. return [species];
  2492. }
  2493. }
  2494. characterMakers.push(() => makeCharacter(
  2495. {
  2496. name: "Fen",
  2497. species: ["crux"],
  2498. description: {
  2499. title: "Bio",
  2500. text: "Very furry. Sheds on everything."
  2501. },
  2502. tags: [
  2503. "anthro",
  2504. "goo"
  2505. ]
  2506. },
  2507. {
  2508. front: {
  2509. height: math.unit(12, "feet"),
  2510. weight: math.unit(2400, "lb"),
  2511. preyCapacity: math.unit(1, "people"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/fen/front.svg",
  2515. extra: 1804/1562,
  2516. bottom: 205/2009
  2517. },
  2518. extraAttributes: {
  2519. pawSize: {
  2520. name: "Paw Size",
  2521. power: 2,
  2522. type: "area",
  2523. base: math.unit(0.35, "m^2")
  2524. }
  2525. }
  2526. },
  2527. diving: {
  2528. height: math.unit(4.9, "meters"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Diving",
  2531. image: {
  2532. source: "./media/characters/fen/diving.svg"
  2533. }
  2534. },
  2535. sleeby: {
  2536. height: math.unit(3.45, "meters"),
  2537. weight: math.unit(2400, "lb"),
  2538. name: "Sleeby",
  2539. image: {
  2540. source: "./media/characters/fen/sleeby.svg"
  2541. }
  2542. },
  2543. goo: {
  2544. height: math.unit(12, "feet"),
  2545. weight: math.unit(3600, "lb"),
  2546. volume: math.unit(1000, "liters"),
  2547. preyCapacity: math.unit(6, "people"),
  2548. name: "Goo",
  2549. image: {
  2550. source: "./media/characters/fen/goo.svg",
  2551. extra: 1307/1071,
  2552. bottom: 134/1441
  2553. }
  2554. },
  2555. horror: {
  2556. height: math.unit(13.6, "feet"),
  2557. weight: math.unit(2400, "lb"),
  2558. preyCapacity: math.unit(1, "people"),
  2559. name: "Horror",
  2560. image: {
  2561. source: "./media/characters/fen/horror.svg",
  2562. extra: 893/797,
  2563. bottom: 0/893
  2564. }
  2565. },
  2566. gooNsfw: {
  2567. height: math.unit(12, "feet"),
  2568. weight: math.unit(3750, "lb"),
  2569. volume: math.unit(1000, "liters"),
  2570. preyCapacity: math.unit(6, "people"),
  2571. name: "Goo (NSFW)",
  2572. image: {
  2573. source: "./media/characters/fen/goo-nsfw.svg",
  2574. extra: 1875/1734,
  2575. bottom: 122/1997
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(5.03, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/fen/maw.svg"
  2583. }
  2584. },
  2585. gooCeiling: {
  2586. height: math.unit(6.6, "feet"),
  2587. weight: math.unit(3000, "lb"),
  2588. volume: math.unit(1000, "liters"),
  2589. preyCapacity: math.unit(6, "people"),
  2590. name: "Maw (Goo)",
  2591. image: {
  2592. source: "./media/characters/fen/goo-maw.svg"
  2593. }
  2594. },
  2595. paw: {
  2596. height: math.unit(3.77, "feet"),
  2597. name: "Paw",
  2598. image: {
  2599. source: "./media/characters/fen/paw.svg"
  2600. },
  2601. extraAttributes: {
  2602. "toeSize": {
  2603. name: "Toe Size",
  2604. power: 2,
  2605. type: "area",
  2606. base: math.unit(0.02875, "m^2")
  2607. },
  2608. "pawSize": {
  2609. name: "Paw Size",
  2610. power: 2,
  2611. type: "area",
  2612. base: math.unit(0.378, "m^2")
  2613. },
  2614. }
  2615. },
  2616. tail: {
  2617. height: math.unit(12.1, "feet"),
  2618. name: "Tail",
  2619. image: {
  2620. source: "./media/characters/fen/tail.svg"
  2621. }
  2622. },
  2623. tailFull: {
  2624. height: math.unit(12.1, "feet"),
  2625. name: "Full Tail",
  2626. image: {
  2627. source: "./media/characters/fen/tail-full.svg"
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(12, "feet"),
  2632. weight: math.unit(2400, "lb"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fen/back.svg",
  2636. },
  2637. info: {
  2638. description: {
  2639. mode: "append",
  2640. text: "\n\nHe is not currently looking at you."
  2641. }
  2642. }
  2643. },
  2644. full: {
  2645. height: math.unit(1.85, "meter"),
  2646. weight: math.unit(3200, "lb"),
  2647. preyCapacity: math.unit(3, "people"),
  2648. name: "Full",
  2649. image: {
  2650. source: "./media/characters/fen/full.svg",
  2651. extra: 1133/859,
  2652. bottom: 145/1278
  2653. },
  2654. info: {
  2655. description: {
  2656. mode: "append",
  2657. text: "\n\nMunch."
  2658. }
  2659. }
  2660. },
  2661. gooLounging: {
  2662. height: math.unit(4.53, "feet"),
  2663. weight: math.unit(3000, "lb"),
  2664. preyCapacity: math.unit(6, "people"),
  2665. name: "Goo (Lounging)",
  2666. image: {
  2667. source: "./media/characters/fen/goo-lounging.svg",
  2668. bottom: 116 / 613
  2669. }
  2670. },
  2671. lounging: {
  2672. height: math.unit(10.52, "feet"),
  2673. weight: math.unit(2400, "lb"),
  2674. name: "Lounging",
  2675. image: {
  2676. source: "./media/characters/fen/lounging.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Small",
  2683. height: math.unit(2.2428, "meter")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(12, "feet"),
  2688. default: true,
  2689. },
  2690. {
  2691. name: "Big",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Minimacro",
  2696. height: math.unit(40, "feet"),
  2697. info: {
  2698. description: {
  2699. mode: "append",
  2700. text: "\n\nTOO DAMN BIG"
  2701. }
  2702. }
  2703. },
  2704. {
  2705. name: "Macro",
  2706. height: math.unit(100, "feet"),
  2707. info: {
  2708. description: {
  2709. mode: "append",
  2710. text: "\n\nTOO DAMN BIG"
  2711. }
  2712. }
  2713. },
  2714. {
  2715. name: "Megamacro",
  2716. height: math.unit(2, "miles")
  2717. },
  2718. {
  2719. name: "Gigamacro",
  2720. height: math.unit(10, "earths")
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(183, "cm"),
  2729. weight: math.unit(80, "kg"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/sofia-fluttertail/front.svg",
  2733. bottom: 0.01,
  2734. extra: 2154 / 2081
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(183, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Front (alt)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2743. }
  2744. },
  2745. back: {
  2746. height: math.unit(183, "cm"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Back",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/back.svg"
  2751. }
  2752. },
  2753. kneeling: {
  2754. height: math.unit(125, "cm"),
  2755. weight: math.unit(80, "kg"),
  2756. name: "Kneeling",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2759. extra: 1033 / 977,
  2760. bottom: 23.7 / 1057
  2761. }
  2762. },
  2763. maw: {
  2764. height: math.unit(183 / 5, "cm"),
  2765. name: "Maw",
  2766. image: {
  2767. source: "./media/characters/sofia-fluttertail/maw.svg"
  2768. }
  2769. },
  2770. mawcloseup: {
  2771. height: math.unit(183 / 5 * 0.41, "cm"),
  2772. name: "Maw (Closeup)",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2775. }
  2776. },
  2777. paws: {
  2778. height: math.unit(1.17, "feet"),
  2779. name: "Paws",
  2780. image: {
  2781. source: "./media/characters/sofia-fluttertail/paws.svg",
  2782. extra: 851 / 851,
  2783. bottom: 17 / 868
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(1.83, "meter")
  2791. },
  2792. {
  2793. name: "Size Thief",
  2794. height: math.unit(18, "feet")
  2795. },
  2796. {
  2797. name: "50 Foot Collie",
  2798. height: math.unit(50, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(96, "feet"),
  2803. default: true
  2804. },
  2805. {
  2806. name: "Megamerger",
  2807. height: math.unit(650, "feet")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(7, "feet"),
  2816. weight: math.unit(100, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/march/front.svg",
  2820. extra: 1992/1851,
  2821. bottom: 39/2031
  2822. }
  2823. },
  2824. foot: {
  2825. height: math.unit(0.9, "feet"),
  2826. name: "Foot",
  2827. image: {
  2828. source: "./media/characters/march/foot.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(7.9, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(220, "meters")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(2.98, "km"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Gigamacro",
  2848. height: math.unit(15963, "km")
  2849. },
  2850. {
  2851. name: "Teramacro",
  2852. height: math.unit(2980000000, "km")
  2853. },
  2854. {
  2855. name: "Examacro",
  2856. height: math.unit(250, "parsecs")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/noir/front.svg",
  2869. extra: 1793/1668,
  2870. bottom: 74/1867
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(6.6, "feet")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(500, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(2.5, "km"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Gigamacro",
  2890. height: math.unit(22500, "km")
  2891. },
  2892. {
  2893. name: "Teramacro",
  2894. height: math.unit(2500000000, "km")
  2895. },
  2896. {
  2897. name: "Examacro",
  2898. height: math.unit(200, "parsecs")
  2899. },
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2904. {
  2905. front: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Front",
  2909. image: {
  2910. source: "./media/characters/okuri/front.svg",
  2911. extra: 739/665,
  2912. bottom: 39/778
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/okuri/back.svg",
  2921. extra: 734/653,
  2922. bottom: 13/747
  2923. }
  2924. },
  2925. sitting: {
  2926. height: math.unit(2.95, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Sitting",
  2929. image: {
  2930. source: "./media/characters/okuri/sitting.svg",
  2931. extra: 370/318,
  2932. bottom: 99/469
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Smallest",
  2939. height: math.unit(5 + 2/12, "feet")
  2940. },
  2941. {
  2942. name: "Smaller",
  2943. height: math.unit(300, "feet")
  2944. },
  2945. {
  2946. name: "Small",
  2947. height: math.unit(1000, "feet")
  2948. },
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(1, "mile")
  2952. },
  2953. {
  2954. name: "Mega Macro (Small)",
  2955. height: math.unit(20, "km")
  2956. },
  2957. {
  2958. name: "Mega Macro (Large)",
  2959. height: math.unit(600, "km")
  2960. },
  2961. {
  2962. name: "Giga Macro",
  2963. height: math.unit(10000, "km")
  2964. },
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(577560, "km"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Large",
  2972. height: math.unit(4, "galaxies")
  2973. },
  2974. {
  2975. name: "Largest",
  2976. height: math.unit(15, "multiverses")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(7, "feet"),
  2985. weight: math.unit(100, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/manny/front.svg",
  2989. extra: 1,
  2990. bottom: 0.06
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(7, "feet"),
  2995. weight: math.unit(100, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/manny/back.svg",
  2999. extra: 1,
  3000. bottom: 0.014
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(7, "feet"),
  3008. },
  3009. {
  3010. name: "Macro",
  3011. height: math.unit(78, "feet"),
  3012. default: true
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(300, "meters")
  3017. },
  3018. {
  3019. name: "Macro++",
  3020. height: math.unit(2400, "meters")
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(5167, "meters")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(41769, "miles")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3034. {
  3035. front: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(100, "kg"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/adake/front-1.svg"
  3041. }
  3042. },
  3043. frontAlt: {
  3044. height: math.unit(7, "feet"),
  3045. weight: math.unit(100, "kg"),
  3046. name: "Front (Alt)",
  3047. image: {
  3048. source: "./media/characters/adake/front-2.svg",
  3049. extra: 1,
  3050. bottom: 0.01
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(7, "feet"),
  3055. weight: math.unit(100, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/adake/back.svg",
  3059. }
  3060. },
  3061. kneel: {
  3062. height: math.unit(5.385, "feet"),
  3063. weight: math.unit(100, "kg"),
  3064. name: "Kneeling",
  3065. image: {
  3066. source: "./media/characters/adake/kneel.svg",
  3067. bottom: 0.052
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(7, "feet"),
  3075. },
  3076. {
  3077. name: "Macro",
  3078. height: math.unit(78, "feet"),
  3079. default: true
  3080. },
  3081. {
  3082. name: "Macro+",
  3083. height: math.unit(300, "meters")
  3084. },
  3085. {
  3086. name: "Macro++",
  3087. height: math.unit(2400, "meters")
  3088. },
  3089. {
  3090. name: "Megamacro",
  3091. height: math.unit(5167, "meters")
  3092. },
  3093. {
  3094. name: "Gigamacro",
  3095. height: math.unit(41769, "miles")
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(1.65, "meters"),
  3104. weight: math.unit(50, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/elijah/front.svg",
  3108. extra: 858 / 830,
  3109. bottom: 95.5 / 953.8559
  3110. }
  3111. },
  3112. back: {
  3113. height: math.unit(1.65, "meters"),
  3114. weight: math.unit(50, "kg"),
  3115. name: "Back",
  3116. image: {
  3117. source: "./media/characters/elijah/back.svg",
  3118. extra: 895 / 850,
  3119. bottom: 5.3 / 897.956
  3120. }
  3121. },
  3122. frontNsfw: {
  3123. height: math.unit(1.65, "meters"),
  3124. weight: math.unit(50, "kg"),
  3125. name: "Front (NSFW)",
  3126. image: {
  3127. source: "./media/characters/elijah/front-nsfw.svg",
  3128. extra: 858 / 830,
  3129. bottom: 95.5 / 953.8559
  3130. }
  3131. },
  3132. backNsfw: {
  3133. height: math.unit(1.65, "meters"),
  3134. weight: math.unit(50, "kg"),
  3135. name: "Back (NSFW)",
  3136. image: {
  3137. source: "./media/characters/elijah/back-nsfw.svg",
  3138. extra: 895 / 850,
  3139. bottom: 5.3 / 897.956
  3140. }
  3141. },
  3142. dick: {
  3143. height: math.unit(1, "feet"),
  3144. name: "Dick",
  3145. image: {
  3146. source: "./media/characters/elijah/dick.svg"
  3147. }
  3148. },
  3149. beakOpen: {
  3150. height: math.unit(1.25, "feet"),
  3151. name: "Beak (Open)",
  3152. image: {
  3153. source: "./media/characters/elijah/beak-open.svg"
  3154. }
  3155. },
  3156. beakShut: {
  3157. height: math.unit(1.25, "feet"),
  3158. name: "Beak (Shut)",
  3159. image: {
  3160. source: "./media/characters/elijah/beak-shut.svg"
  3161. }
  3162. },
  3163. footFlexing: {
  3164. height: math.unit(1.61, "feet"),
  3165. name: "Foot (Flexing)",
  3166. image: {
  3167. source: "./media/characters/elijah/foot-flexing.svg"
  3168. }
  3169. },
  3170. footStepping: {
  3171. height: math.unit(1.44, "feet"),
  3172. name: "Foot (Stepping)",
  3173. image: {
  3174. source: "./media/characters/elijah/foot-stepping.svg"
  3175. }
  3176. },
  3177. plantigradeLeg: {
  3178. height: math.unit(2.34, "feet"),
  3179. name: "Plantigrade Leg",
  3180. image: {
  3181. source: "./media/characters/elijah/plantigrade-leg.svg"
  3182. }
  3183. },
  3184. plantigradeFootLeft: {
  3185. height: math.unit(0.9, "feet"),
  3186. name: "Plantigrade Foot (Left)",
  3187. image: {
  3188. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3189. }
  3190. },
  3191. plantigradeFootRight: {
  3192. height: math.unit(0.9, "feet"),
  3193. name: "Plantigrade Foot (Right)",
  3194. image: {
  3195. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3196. }
  3197. },
  3198. },
  3199. [
  3200. {
  3201. name: "Normal",
  3202. height: math.unit(1.65, "meters")
  3203. },
  3204. {
  3205. name: "Macro",
  3206. height: math.unit(55, "meters"),
  3207. default: true
  3208. },
  3209. {
  3210. name: "Macro+",
  3211. height: math.unit(105, "meters")
  3212. },
  3213. ]
  3214. ))
  3215. characterMakers.push(() => makeCharacter(
  3216. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3217. {
  3218. front: {
  3219. height: math.unit(7 + 2/12, "feet"),
  3220. weight: math.unit(320, "kg"),
  3221. preyCapacity: math.unit(0.276549935, "people"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/rai/front.svg",
  3225. extra: 1802/1696,
  3226. bottom: 68/1870
  3227. },
  3228. form: "anthro",
  3229. default: true
  3230. },
  3231. frontDressed: {
  3232. height: math.unit(7 + 2/12, "feet"),
  3233. weight: math.unit(320, "kg"),
  3234. preyCapacity: math.unit(0.276549935, "people"),
  3235. name: "Front (Dressed)",
  3236. image: {
  3237. source: "./media/characters/rai/front-dressed.svg",
  3238. extra: 1802/1696,
  3239. bottom: 68/1870
  3240. },
  3241. form: "anthro"
  3242. },
  3243. side: {
  3244. height: math.unit(7 + 2/12, "feet"),
  3245. weight: math.unit(320, "kg"),
  3246. preyCapacity: math.unit(0.276549935, "people"),
  3247. name: "Side",
  3248. image: {
  3249. source: "./media/characters/rai/side.svg",
  3250. extra: 1789/1710,
  3251. bottom: 115/1904
  3252. },
  3253. form: "anthro"
  3254. },
  3255. back: {
  3256. height: math.unit(7 + 2/12, "feet"),
  3257. weight: math.unit(320, "kg"),
  3258. preyCapacity: math.unit(0.276549935, "people"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/rai/back.svg",
  3262. extra: 1770/1707,
  3263. bottom: 28/1798
  3264. },
  3265. form: "anthro"
  3266. },
  3267. feral: {
  3268. height: math.unit(9.5, "feet"),
  3269. weight: math.unit(640, "kg"),
  3270. preyCapacity: math.unit(4, "people"),
  3271. name: "Feral",
  3272. image: {
  3273. source: "./media/characters/rai/feral.svg",
  3274. extra: 945/553,
  3275. bottom: 176/1121
  3276. },
  3277. form: "feral",
  3278. default: true
  3279. },
  3280. dragon: {
  3281. height: math.unit(23, "feet"),
  3282. weight: math.unit(50000, "lb"),
  3283. name: "Dragon",
  3284. image: {
  3285. source: "./media/characters/rai/dragon.svg",
  3286. extra: 2498 / 2030,
  3287. bottom: 85.2 / 2584
  3288. },
  3289. form: "dragon",
  3290. default: true
  3291. },
  3292. maw: {
  3293. height: math.unit(1.69, "feet"),
  3294. name: "Maw",
  3295. image: {
  3296. source: "./media/characters/rai/maw.svg"
  3297. },
  3298. form: "anthro"
  3299. },
  3300. },
  3301. [
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(7 + 2/12, "feet"),
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Big",
  3309. height: math.unit(11, "feet"),
  3310. form: "anthro"
  3311. },
  3312. {
  3313. name: "Minimacro",
  3314. height: math.unit(77, "feet"),
  3315. form: "anthro"
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(302, "feet"),
  3320. default: true,
  3321. form: "anthro"
  3322. },
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(9.5, "feet"),
  3326. form: "feral",
  3327. default: true
  3328. },
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(23, "feet"),
  3332. form: "dragon",
  3333. default: true
  3334. }
  3335. ],
  3336. {
  3337. "anthro": {
  3338. name: "Anthro",
  3339. default: true
  3340. },
  3341. "feral": {
  3342. name: "Feral",
  3343. },
  3344. "dragon": {
  3345. name: "Dragon",
  3346. },
  3347. }
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3351. {
  3352. frontDressed: {
  3353. height: math.unit(216, "feet"),
  3354. weight: math.unit(7000000, "lb"),
  3355. preyCapacity: math.unit(1321, "people"),
  3356. name: "Front (Dressed)",
  3357. image: {
  3358. source: "./media/characters/jazzy/front-dressed.svg",
  3359. extra: 2738 / 2651,
  3360. bottom: 41.8 / 2786
  3361. }
  3362. },
  3363. backDressed: {
  3364. height: math.unit(216, "feet"),
  3365. weight: math.unit(7000000, "lb"),
  3366. preyCapacity: math.unit(1321, "people"),
  3367. name: "Back (Dressed)",
  3368. image: {
  3369. source: "./media/characters/jazzy/back-dressed.svg",
  3370. extra: 2775 / 2673,
  3371. bottom: 36.8 / 2817
  3372. }
  3373. },
  3374. front: {
  3375. height: math.unit(216, "feet"),
  3376. weight: math.unit(7000000, "lb"),
  3377. preyCapacity: math.unit(1321, "people"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/jazzy/front.svg",
  3381. extra: 2738 / 2651,
  3382. bottom: 41.8 / 2786
  3383. }
  3384. },
  3385. back: {
  3386. height: math.unit(216, "feet"),
  3387. weight: math.unit(7000000, "lb"),
  3388. preyCapacity: math.unit(1321, "people"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/jazzy/back.svg",
  3392. extra: 2775 / 2673,
  3393. bottom: 36.8 / 2817
  3394. }
  3395. },
  3396. maw: {
  3397. height: math.unit(20, "feet"),
  3398. name: "Maw",
  3399. image: {
  3400. source: "./media/characters/jazzy/maw.svg"
  3401. }
  3402. },
  3403. paws: {
  3404. height: math.unit(27.5, "feet"),
  3405. name: "Paws",
  3406. image: {
  3407. source: "./media/characters/jazzy/paws.svg"
  3408. }
  3409. },
  3410. eye: {
  3411. height: math.unit(4.4, "feet"),
  3412. name: "Eye",
  3413. image: {
  3414. source: "./media/characters/jazzy/eye.svg"
  3415. }
  3416. },
  3417. droneOffense: {
  3418. height: math.unit(9.5, "inches"),
  3419. name: "Drone (Offense)",
  3420. image: {
  3421. source: "./media/characters/jazzy/drone-offense.svg"
  3422. }
  3423. },
  3424. droneRecon: {
  3425. height: math.unit(9.5, "inches"),
  3426. name: "Drone (Recon)",
  3427. image: {
  3428. source: "./media/characters/jazzy/drone-recon.svg"
  3429. }
  3430. },
  3431. droneDefense: {
  3432. height: math.unit(9.5, "inches"),
  3433. name: "Drone (Defense)",
  3434. image: {
  3435. source: "./media/characters/jazzy/drone-defense.svg"
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(216, "feet"),
  3443. default: true
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(9 + 6/12, "feet"),
  3452. weight: math.unit(700, "lb"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/flamm/front.svg",
  3456. extra: 1736/1596,
  3457. bottom: 93/1829
  3458. }
  3459. },
  3460. buff: {
  3461. height: math.unit(9 + 6/12, "feet"),
  3462. weight: math.unit(950, "lb"),
  3463. name: "Buff",
  3464. image: {
  3465. source: "./media/characters/flamm/buff.svg",
  3466. extra: 3018/2874,
  3467. bottom: 221/3239
  3468. }
  3469. },
  3470. },
  3471. [
  3472. {
  3473. name: "Normal",
  3474. height: math.unit(9.5, "feet")
  3475. },
  3476. {
  3477. name: "Macro",
  3478. height: math.unit(200, "feet"),
  3479. default: true
  3480. },
  3481. ]
  3482. ))
  3483. characterMakers.push(() => makeCharacter(
  3484. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3485. {
  3486. front: {
  3487. height: math.unit(5 + 3/12, "feet"),
  3488. weight: math.unit(60, "kg"),
  3489. name: "Front",
  3490. image: {
  3491. source: "./media/characters/zephiro/front.svg",
  3492. extra: 1873/1761,
  3493. bottom: 147/2020
  3494. }
  3495. },
  3496. side: {
  3497. height: math.unit(5 + 3/12, "feet"),
  3498. weight: math.unit(60, "kg"),
  3499. name: "Side",
  3500. image: {
  3501. source: "./media/characters/zephiro/side.svg",
  3502. extra: 1929/1827,
  3503. bottom: 65/1994
  3504. }
  3505. },
  3506. back: {
  3507. height: math.unit(5 + 3/12, "feet"),
  3508. weight: math.unit(60, "kg"),
  3509. name: "Back",
  3510. image: {
  3511. source: "./media/characters/zephiro/back.svg",
  3512. extra: 1926/1816,
  3513. bottom: 41/1967
  3514. }
  3515. },
  3516. hand: {
  3517. height: math.unit(0.68, "feet"),
  3518. name: "Hand",
  3519. image: {
  3520. source: "./media/characters/zephiro/hand.svg"
  3521. }
  3522. },
  3523. paw: {
  3524. height: math.unit(1, "feet"),
  3525. name: "Paw",
  3526. image: {
  3527. source: "./media/characters/zephiro/paw.svg"
  3528. }
  3529. },
  3530. beans: {
  3531. height: math.unit(0.93, "feet"),
  3532. name: "Beans",
  3533. image: {
  3534. source: "./media/characters/zephiro/beans.svg"
  3535. }
  3536. },
  3537. },
  3538. [
  3539. {
  3540. name: "Micro",
  3541. height: math.unit(3, "inches")
  3542. },
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(5 + 3 / 12, "feet"),
  3546. default: true
  3547. },
  3548. {
  3549. name: "Macro",
  3550. height: math.unit(118, "feet")
  3551. },
  3552. ]
  3553. ))
  3554. characterMakers.push(() => makeCharacter(
  3555. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3556. {
  3557. front: {
  3558. height: math.unit(5, "feet"),
  3559. weight: math.unit(90, "kg"),
  3560. preyCapacity: math.unit(14, "people"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/fory/front.svg",
  3564. extra: 2862 / 2674,
  3565. bottom: 180 / 3043.8
  3566. },
  3567. form: "weaselbun",
  3568. default: true,
  3569. extraAttributes: {
  3570. "pawSize": {
  3571. name: "Paw Size",
  3572. power: 2,
  3573. type: "area",
  3574. base: math.unit(0.1596, "m^2")
  3575. },
  3576. "pawLength": {
  3577. name: "Paw Length",
  3578. power: 1,
  3579. type: "length",
  3580. base: math.unit(0.7, "m")
  3581. }
  3582. }
  3583. },
  3584. back: {
  3585. height: math.unit(5, "feet"),
  3586. weight: math.unit(90, "kg"),
  3587. preyCapacity: math.unit(14, "people"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/fory/back.svg",
  3591. extra: 1790/1672,
  3592. bottom: 84/1874
  3593. },
  3594. form: "weaselbun",
  3595. extraAttributes: {
  3596. "pawSize": {
  3597. name: "Paw Size",
  3598. power: 2,
  3599. type: "area",
  3600. base: math.unit(0.1596, "m^2")
  3601. },
  3602. "pawLength": {
  3603. name: "Paw Length",
  3604. power: 1,
  3605. type: "length",
  3606. base: math.unit(0.7, "m")
  3607. }
  3608. }
  3609. },
  3610. paw: {
  3611. height: math.unit(2.14, "feet"),
  3612. name: "Paw",
  3613. image: {
  3614. source: "./media/characters/fory/paw.svg"
  3615. },
  3616. form: "weaselbun",
  3617. extraAttributes: {
  3618. "pawSize": {
  3619. name: "Paw Size",
  3620. power: 2,
  3621. type: "area",
  3622. base: math.unit(0.1596, "m^2")
  3623. },
  3624. "pawLength": {
  3625. name: "Paw Length",
  3626. power: 1,
  3627. type: "length",
  3628. base: math.unit(0.48, "m")
  3629. }
  3630. }
  3631. },
  3632. bunBack: {
  3633. height: math.unit(3, "feet"),
  3634. weight: math.unit(20, "kg"),
  3635. preyCapacity: math.unit(3, "people"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/fory/bun-back.svg",
  3639. extra: 1749/1564,
  3640. bottom: 246/1995
  3641. },
  3642. form: "bun",
  3643. default: true,
  3644. extraAttributes: {
  3645. "pawSize": {
  3646. name: "Paw Size",
  3647. power: 2,
  3648. type: "area",
  3649. base: math.unit(0.072, "m^2")
  3650. },
  3651. "pawLength": {
  3652. name: "Paw Length",
  3653. power: 1,
  3654. type: "length",
  3655. base: math.unit(0.45, "m")
  3656. }
  3657. }
  3658. },
  3659. },
  3660. [
  3661. {
  3662. name: "Normal",
  3663. height: math.unit(5, "feet"),
  3664. form: "weaselbun"
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(50, "feet"),
  3669. default: true,
  3670. form: "weaselbun"
  3671. },
  3672. {
  3673. name: "Megamacro",
  3674. height: math.unit(10, "miles"),
  3675. form: "weaselbun"
  3676. },
  3677. {
  3678. name: "Gigamacro",
  3679. height: math.unit(5, "earths"),
  3680. form: "weaselbun"
  3681. },
  3682. {
  3683. name: "Normal",
  3684. height: math.unit(3, "feet"),
  3685. default: true,
  3686. form: "bun"
  3687. },
  3688. {
  3689. name: "Fun-Size",
  3690. height: math.unit(12, "feet"),
  3691. form: "bun"
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(100, "feet"),
  3696. form: "bun"
  3697. },
  3698. {
  3699. name: "Planetary",
  3700. height: math.unit(3, "earths"),
  3701. form: "bun"
  3702. },
  3703. ],
  3704. {
  3705. "weaselbun": {
  3706. name: "Weaselbun",
  3707. default: true
  3708. },
  3709. "bun": {
  3710. name: "Bun",
  3711. },
  3712. }
  3713. ))
  3714. characterMakers.push(() => makeCharacter(
  3715. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3716. {
  3717. front: {
  3718. height: math.unit(7, "feet"),
  3719. weight: math.unit(90, "kg"),
  3720. name: "Front",
  3721. image: {
  3722. source: "./media/characters/kurrikage/front.svg",
  3723. extra: 1845/1733,
  3724. bottom: 119/1964
  3725. }
  3726. },
  3727. back: {
  3728. height: math.unit(7, "feet"),
  3729. weight: math.unit(90, "kg"),
  3730. name: "Back",
  3731. image: {
  3732. source: "./media/characters/kurrikage/back.svg",
  3733. extra: 1790/1677,
  3734. bottom: 61/1851
  3735. }
  3736. },
  3737. dressed: {
  3738. height: math.unit(7, "feet"),
  3739. weight: math.unit(90, "kg"),
  3740. name: "Dressed",
  3741. image: {
  3742. source: "./media/characters/kurrikage/dressed.svg",
  3743. extra: 1845/1733,
  3744. bottom: 119/1964
  3745. }
  3746. },
  3747. foot: {
  3748. height: math.unit(1.5, "feet"),
  3749. name: "Foot",
  3750. image: {
  3751. source: "./media/characters/kurrikage/foot.svg"
  3752. }
  3753. },
  3754. staff: {
  3755. height: math.unit(6.7, "feet"),
  3756. name: "Staff",
  3757. image: {
  3758. source: "./media/characters/kurrikage/staff.svg"
  3759. }
  3760. },
  3761. peek: {
  3762. height: math.unit(1.05, "feet"),
  3763. name: "Peeking",
  3764. image: {
  3765. source: "./media/characters/kurrikage/peek.svg",
  3766. bottom: 0.08
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "Normal",
  3773. height: math.unit(12, "feet"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "Big",
  3778. height: math.unit(20, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(500, "feet")
  3783. },
  3784. {
  3785. name: "Megamacro",
  3786. height: math.unit(20, "miles")
  3787. },
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(6, "feet"),
  3795. weight: math.unit(75, "kg"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/shingo/front.svg",
  3799. extra: 1900/1825,
  3800. bottom: 82/1982
  3801. }
  3802. },
  3803. side: {
  3804. height: math.unit(6, "feet"),
  3805. weight: math.unit(75, "kg"),
  3806. name: "Side",
  3807. image: {
  3808. source: "./media/characters/shingo/side.svg",
  3809. extra: 1930/1865,
  3810. bottom: 16/1946
  3811. }
  3812. },
  3813. back: {
  3814. height: math.unit(6, "feet"),
  3815. weight: math.unit(75, "kg"),
  3816. name: "Back",
  3817. image: {
  3818. source: "./media/characters/shingo/back.svg",
  3819. extra: 1922/1852,
  3820. bottom: 16/1938
  3821. }
  3822. },
  3823. frontDressed: {
  3824. height: math.unit(6, "feet"),
  3825. weight: math.unit(150, "lb"),
  3826. name: "Front (Dressed)",
  3827. image: {
  3828. source: "./media/characters/shingo/front-dressed.svg",
  3829. extra: 1900/1825,
  3830. bottom: 82/1982
  3831. }
  3832. },
  3833. paw: {
  3834. height: math.unit(1.29, "feet"),
  3835. name: "Paw",
  3836. image: {
  3837. source: "./media/characters/shingo/paw.svg"
  3838. }
  3839. },
  3840. hand: {
  3841. height: math.unit(1.07, "feet"),
  3842. name: "Hand",
  3843. image: {
  3844. source: "./media/characters/shingo/hand.svg"
  3845. }
  3846. },
  3847. frontAlt: {
  3848. height: math.unit(6, "feet"),
  3849. weight: math.unit(75, "kg"),
  3850. name: "Front (Alt)",
  3851. image: {
  3852. source: "./media/characters/shingo/front-alt.svg",
  3853. extra: 3511 / 3338,
  3854. bottom: 0.005
  3855. }
  3856. },
  3857. frontAlt2: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(75, "kg"),
  3860. name: "Front (Alt 2)",
  3861. image: {
  3862. source: "./media/characters/shingo/front-alt-2.svg",
  3863. extra: 706/681,
  3864. bottom: 11/717
  3865. }
  3866. },
  3867. pawAlt: {
  3868. height: math.unit(1, "feet"),
  3869. name: "Paw (Alt)",
  3870. image: {
  3871. source: "./media/characters/shingo/paw-alt.svg"
  3872. }
  3873. },
  3874. },
  3875. [
  3876. {
  3877. name: "Micro",
  3878. height: math.unit(4, "inches")
  3879. },
  3880. {
  3881. name: "Normal",
  3882. height: math.unit(6, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Macro",
  3887. height: math.unit(108, "feet")
  3888. },
  3889. {
  3890. name: "Macro+",
  3891. height: math.unit(1500, "feet")
  3892. },
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3897. {
  3898. side: {
  3899. height: math.unit(6, "feet"),
  3900. weight: math.unit(75, "kg"),
  3901. name: "Side",
  3902. image: {
  3903. source: "./media/characters/aigey/side.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Macro",
  3910. height: math.unit(200, "feet"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Megamacro",
  3915. height: math.unit(100, "miles")
  3916. },
  3917. ]
  3918. )
  3919. )
  3920. characterMakers.push(() => makeCharacter(
  3921. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3922. {
  3923. front: {
  3924. height: math.unit(13, "feet"),
  3925. weight: math.unit(1036.80, "kg"),
  3926. name: "Front",
  3927. image: {
  3928. source: "./media/characters/natasha/front.svg",
  3929. extra: 1301/1210,
  3930. bottom: 39/1340
  3931. }
  3932. },
  3933. back: {
  3934. height: math.unit(13, "feet"),
  3935. weight: math.unit(1036.80, "kg"),
  3936. name: "Back",
  3937. image: {
  3938. source: "./media/characters/natasha/back.svg",
  3939. extra: 1342/1252,
  3940. bottom: 20/1362
  3941. }
  3942. },
  3943. head: {
  3944. height: math.unit(3.48, "feet"),
  3945. name: "Head",
  3946. image: {
  3947. source: "./media/characters/natasha/head.svg"
  3948. }
  3949. },
  3950. jaws: {
  3951. height: math.unit(3.52, "feet"),
  3952. name: "Jaws",
  3953. image: {
  3954. source: "./media/characters/natasha/jaws.svg"
  3955. }
  3956. },
  3957. paws: {
  3958. height: math.unit(2.7, "feet"),
  3959. name: "Paws",
  3960. image: {
  3961. source: "./media/characters/natasha/paws.svg"
  3962. }
  3963. },
  3964. collar: {
  3965. height: math.unit(0.89, "feet"),
  3966. name: "Collar",
  3967. image: {
  3968. source: "./media/characters/natasha/collar.svg"
  3969. }
  3970. },
  3971. gauge: {
  3972. height: math.unit(0.36, "feet"),
  3973. name: "Gauge",
  3974. image: {
  3975. source: "./media/characters/natasha/gauge.svg"
  3976. }
  3977. },
  3978. },
  3979. [
  3980. {
  3981. name: "Shortstack",
  3982. height: math.unit(3, "feet")
  3983. },
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(13, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(100, "feet")
  3992. },
  3993. {
  3994. name: "Macro+",
  3995. height: math.unit(260, "feet")
  3996. },
  3997. {
  3998. name: "Macro++",
  3999. height: math.unit(1, "mile")
  4000. },
  4001. ]
  4002. ))
  4003. characterMakers.push(() => makeCharacter(
  4004. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4005. {
  4006. front: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(75, "kg"),
  4009. name: "Front",
  4010. image: {
  4011. source: "./media/characters/malik/front.svg",
  4012. extra: 1750/1561,
  4013. bottom: 80/1830
  4014. },
  4015. extraAttributes: {
  4016. "toeSize": {
  4017. name: "Toe Size",
  4018. power: 2,
  4019. type: "area",
  4020. base: math.unit(0.0159, "m^2")
  4021. },
  4022. "pawSize": {
  4023. name: "Paw Size",
  4024. power: 2,
  4025. type: "area",
  4026. base: math.unit(0.09834, "m^2")
  4027. },
  4028. }
  4029. },
  4030. side: {
  4031. height: math.unit(6, "feet"),
  4032. weight: math.unit(75, "kg"),
  4033. name: "Side",
  4034. image: {
  4035. source: "./media/characters/malik/side.svg",
  4036. extra: 1802/1685,
  4037. bottom: 42/1844
  4038. },
  4039. extraAttributes: {
  4040. "toeSize": {
  4041. name: "Toe Size",
  4042. power: 2,
  4043. type: "area",
  4044. base: math.unit(0.0159, "m^2")
  4045. },
  4046. "pawSize": {
  4047. name: "Paw Size",
  4048. power: 2,
  4049. type: "area",
  4050. base: math.unit(0.09834, "m^2")
  4051. },
  4052. }
  4053. },
  4054. back: {
  4055. height: math.unit(6, "feet"),
  4056. weight: math.unit(75, "kg"),
  4057. name: "Back",
  4058. image: {
  4059. source: "./media/characters/malik/back.svg",
  4060. extra: 1803/1607,
  4061. bottom: 33/1836
  4062. },
  4063. extraAttributes: {
  4064. "toeSize": {
  4065. name: "Toe Size",
  4066. power: 2,
  4067. type: "area",
  4068. base: math.unit(0.0159, "m^2")
  4069. },
  4070. "pawSize": {
  4071. name: "Paw Size",
  4072. power: 2,
  4073. type: "area",
  4074. base: math.unit(0.09834, "m^2")
  4075. },
  4076. }
  4077. },
  4078. },
  4079. [
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(156, "feet"),
  4083. default: true
  4084. },
  4085. {
  4086. name: "Macro+",
  4087. height: math.unit(1188, "feet")
  4088. },
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4093. {
  4094. front: {
  4095. height: math.unit(6, "feet"),
  4096. weight: math.unit(75, "kg"),
  4097. name: "Front",
  4098. image: {
  4099. source: "./media/characters/sefer/front.svg",
  4100. extra: 848 / 659,
  4101. bottom: 28.3 / 876.442
  4102. }
  4103. },
  4104. back: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(75, "kg"),
  4107. name: "Back",
  4108. image: {
  4109. source: "./media/characters/sefer/back.svg",
  4110. extra: 864 / 695,
  4111. bottom: 10 / 871
  4112. }
  4113. },
  4114. frontDressed: {
  4115. height: math.unit(6, "feet"),
  4116. weight: math.unit(75, "kg"),
  4117. name: "Dressed",
  4118. image: {
  4119. source: "./media/characters/sefer/dressed.svg",
  4120. extra: 839 / 653,
  4121. bottom: 37.6 / 878
  4122. }
  4123. },
  4124. },
  4125. [
  4126. {
  4127. name: "Normal",
  4128. height: math.unit(6, "feet"),
  4129. default: true
  4130. },
  4131. {
  4132. name: "Big",
  4133. height: math.unit(8, "meters")
  4134. },
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4139. {
  4140. body: {
  4141. height: math.unit(2.2428, "meter"),
  4142. weight: math.unit(124.738, "kg"),
  4143. name: "Body",
  4144. image: {
  4145. extra: 1225 / 1050,
  4146. source: "./media/characters/north/front.svg"
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Micro",
  4153. height: math.unit(4, "inches")
  4154. },
  4155. {
  4156. name: "Macro",
  4157. height: math.unit(63, "meters")
  4158. },
  4159. {
  4160. name: "Megamacro",
  4161. height: math.unit(101, "miles"),
  4162. default: true
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4168. {
  4169. angled: {
  4170. height: math.unit(4, "meter"),
  4171. weight: math.unit(150, "kg"),
  4172. name: "Angled",
  4173. image: {
  4174. source: "./media/characters/talan/angled-sfw.svg",
  4175. bottom: 29 / 3734
  4176. }
  4177. },
  4178. angledNsfw: {
  4179. height: math.unit(4, "meter"),
  4180. weight: math.unit(150, "kg"),
  4181. name: "Angled (NSFW)",
  4182. image: {
  4183. source: "./media/characters/talan/angled-nsfw.svg",
  4184. bottom: 29 / 3734
  4185. }
  4186. },
  4187. frontNsfw: {
  4188. height: math.unit(4, "meter"),
  4189. weight: math.unit(150, "kg"),
  4190. name: "Front (NSFW)",
  4191. image: {
  4192. source: "./media/characters/talan/front-nsfw.svg",
  4193. bottom: 29 / 3734
  4194. }
  4195. },
  4196. sideNsfw: {
  4197. height: math.unit(4, "meter"),
  4198. weight: math.unit(150, "kg"),
  4199. name: "Side (NSFW)",
  4200. image: {
  4201. source: "./media/characters/talan/side-nsfw.svg",
  4202. bottom: 29 / 3734
  4203. }
  4204. },
  4205. back: {
  4206. height: math.unit(4, "meter"),
  4207. weight: math.unit(150, "kg"),
  4208. name: "Back",
  4209. image: {
  4210. source: "./media/characters/talan/back.svg"
  4211. }
  4212. },
  4213. dickBottom: {
  4214. height: math.unit(0.621, "meter"),
  4215. name: "Dick (Bottom)",
  4216. image: {
  4217. source: "./media/characters/talan/dick-bottom.svg"
  4218. }
  4219. },
  4220. dickTop: {
  4221. height: math.unit(0.621, "meter"),
  4222. name: "Dick (Top)",
  4223. image: {
  4224. source: "./media/characters/talan/dick-top.svg"
  4225. }
  4226. },
  4227. dickSide: {
  4228. height: math.unit(0.305, "meter"),
  4229. name: "Dick (Side)",
  4230. image: {
  4231. source: "./media/characters/talan/dick-side.svg"
  4232. }
  4233. },
  4234. dickFront: {
  4235. height: math.unit(0.305, "meter"),
  4236. name: "Dick (Front)",
  4237. image: {
  4238. source: "./media/characters/talan/dick-front.svg"
  4239. }
  4240. },
  4241. },
  4242. [
  4243. {
  4244. name: "Normal",
  4245. height: math.unit(4, "meters")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(100, "meters")
  4250. },
  4251. {
  4252. name: "Megamacro",
  4253. height: math.unit(2, "miles"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Gigamacro",
  4258. height: math.unit(5000, "miles")
  4259. },
  4260. {
  4261. name: "Teramacro",
  4262. height: math.unit(100, "parsecs")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(90, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/gael'rathus/front.svg"
  4275. }
  4276. },
  4277. frontAlt: {
  4278. height: math.unit(2, "meter"),
  4279. weight: math.unit(90, "kg"),
  4280. name: "Front (alt)",
  4281. image: {
  4282. source: "./media/characters/gael'rathus/front-alt.svg"
  4283. }
  4284. },
  4285. frontAlt2: {
  4286. height: math.unit(2, "meter"),
  4287. weight: math.unit(90, "kg"),
  4288. name: "Front (alt 2)",
  4289. image: {
  4290. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4291. }
  4292. }
  4293. },
  4294. [
  4295. {
  4296. name: "Normal",
  4297. height: math.unit(9, "feet"),
  4298. default: true
  4299. },
  4300. {
  4301. name: "Large",
  4302. height: math.unit(25, "feet")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(0.25, "miles")
  4307. },
  4308. {
  4309. name: "Megamacro",
  4310. height: math.unit(10, "miles")
  4311. }
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4316. {
  4317. side: {
  4318. height: math.unit(2, "meter"),
  4319. weight: math.unit(140, "kg"),
  4320. name: "Side",
  4321. image: {
  4322. source: "./media/characters/sosha/side.svg",
  4323. extra: 1170/1006,
  4324. bottom: 94/1264
  4325. }
  4326. },
  4327. maw: {
  4328. height: math.unit(2.87, "feet"),
  4329. name: "Maw",
  4330. image: {
  4331. source: "./media/characters/sosha/maw.svg",
  4332. extra: 966/865,
  4333. bottom: 0/966
  4334. }
  4335. },
  4336. cooch: {
  4337. height: math.unit(5.6, "feet"),
  4338. name: "Cooch",
  4339. image: {
  4340. source: "./media/characters/sosha/cooch.svg"
  4341. }
  4342. },
  4343. },
  4344. [
  4345. {
  4346. name: "Normal",
  4347. height: math.unit(12, "feet"),
  4348. default: true
  4349. }
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4354. {
  4355. side: {
  4356. height: math.unit(5 + 5 / 12, "feet"),
  4357. weight: math.unit(170, "kg"),
  4358. name: "Side",
  4359. image: {
  4360. source: "./media/characters/runnola/side.svg",
  4361. extra: 741 / 448,
  4362. bottom: 0.05
  4363. }
  4364. },
  4365. },
  4366. [
  4367. {
  4368. name: "Small",
  4369. height: math.unit(3, "feet")
  4370. },
  4371. {
  4372. name: "Normal",
  4373. height: math.unit(5 + 5 / 12, "feet"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Big",
  4378. height: math.unit(10, "feet")
  4379. },
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(2, "meter"),
  4387. weight: math.unit(50, "kg"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/kurribird/front.svg",
  4391. bottom: 0.015
  4392. }
  4393. },
  4394. frontAlt: {
  4395. height: math.unit(1.5, "meter"),
  4396. weight: math.unit(50, "kg"),
  4397. name: "Front (Alt)",
  4398. image: {
  4399. source: "./media/characters/kurribird/front-alt.svg",
  4400. extra: 1.45
  4401. }
  4402. },
  4403. },
  4404. [
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(7, "feet")
  4408. },
  4409. {
  4410. name: "Big",
  4411. height: math.unit(12, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(1500, "feet")
  4417. },
  4418. {
  4419. name: "Megamacro",
  4420. height: math.unit(2, "miles")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(80, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/elbial/front.svg",
  4433. extra: 1643 / 1556,
  4434. bottom: 60.2 / 1696
  4435. }
  4436. },
  4437. side: {
  4438. height: math.unit(2, "meter"),
  4439. weight: math.unit(80, "kg"),
  4440. name: "Side",
  4441. image: {
  4442. source: "./media/characters/elbial/side.svg",
  4443. extra: 1601/1528,
  4444. bottom: 97/1698
  4445. }
  4446. },
  4447. back: {
  4448. height: math.unit(2, "meter"),
  4449. weight: math.unit(80, "kg"),
  4450. name: "Back",
  4451. image: {
  4452. source: "./media/characters/elbial/back.svg",
  4453. extra: 1653/1569,
  4454. bottom: 20/1673
  4455. }
  4456. },
  4457. frontDressed: {
  4458. height: math.unit(2, "meter"),
  4459. weight: math.unit(80, "kg"),
  4460. name: "Front (Dressed)",
  4461. image: {
  4462. source: "./media/characters/elbial/front-dressed.svg",
  4463. extra: 1638/1569,
  4464. bottom: 70/1708
  4465. }
  4466. },
  4467. genitals: {
  4468. height: math.unit(2 / 3.367, "meter"),
  4469. name: "Genitals",
  4470. image: {
  4471. source: "./media/characters/elbial/genitals.svg"
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Large",
  4478. height: math.unit(100, "feet")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(500, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(10, "miles")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(25000, "miles")
  4492. },
  4493. {
  4494. name: "Full-Size",
  4495. height: math.unit(8000000, "gigaparsecs")
  4496. }
  4497. ]
  4498. ))
  4499. characterMakers.push(() => makeCharacter(
  4500. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4501. {
  4502. front: {
  4503. height: math.unit(2, "meter"),
  4504. weight: math.unit(60, "kg"),
  4505. name: "Front",
  4506. image: {
  4507. source: "./media/characters/noah/front.svg",
  4508. extra: 1383/1313,
  4509. bottom: 104/1487
  4510. }
  4511. },
  4512. hand: {
  4513. height: math.unit(0.6, "feet"),
  4514. name: "Hand",
  4515. image: {
  4516. source: "./media/characters/noah/hand.svg"
  4517. }
  4518. },
  4519. talons: {
  4520. height: math.unit(1.385, "feet"),
  4521. name: "Talons",
  4522. image: {
  4523. source: "./media/characters/noah/talons.svg"
  4524. }
  4525. },
  4526. beak: {
  4527. height: math.unit(0.43, "feet"),
  4528. name: "Beak",
  4529. image: {
  4530. source: "./media/characters/noah/beak.svg"
  4531. }
  4532. },
  4533. collar: {
  4534. height: math.unit(0.88, "feet"),
  4535. name: "Collar",
  4536. image: {
  4537. source: "./media/characters/noah/collar.svg"
  4538. }
  4539. },
  4540. eyeNarrow: {
  4541. height: math.unit(0.18, "feet"),
  4542. name: "Eye (Narrow)",
  4543. image: {
  4544. source: "./media/characters/noah/eye-narrow.svg"
  4545. }
  4546. },
  4547. eyeNormal: {
  4548. height: math.unit(0.18, "feet"),
  4549. name: "Eye (Normal)",
  4550. image: {
  4551. source: "./media/characters/noah/eye-normal.svg"
  4552. }
  4553. },
  4554. eyeWide: {
  4555. height: math.unit(0.18, "feet"),
  4556. name: "Eye (Wide)",
  4557. image: {
  4558. source: "./media/characters/noah/eye-wide.svg"
  4559. }
  4560. },
  4561. ear: {
  4562. height: math.unit(0.64, "feet"),
  4563. name: "Ear",
  4564. image: {
  4565. source: "./media/characters/noah/ear.svg"
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Large",
  4572. height: math.unit(50, "feet")
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(750, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Megamacro",
  4581. height: math.unit(50, "miles")
  4582. },
  4583. {
  4584. name: "Gigamacro",
  4585. height: math.unit(100000, "miles")
  4586. },
  4587. {
  4588. name: "Full-Size",
  4589. height: math.unit(3000000000, "miles")
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(80, "kg"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/natalya/front.svg"
  4602. }
  4603. },
  4604. back: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(80, "kg"),
  4607. name: "Back",
  4608. image: {
  4609. source: "./media/characters/natalya/back.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Normal",
  4616. height: math.unit(150, "feet"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Megamacro",
  4621. height: math.unit(5, "miles")
  4622. },
  4623. {
  4624. name: "Full-Size",
  4625. height: math.unit(600, "kiloparsecs")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(50, "kg"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/erestrebah/front.svg",
  4638. extra: 1262/1162,
  4639. bottom: 96/1358
  4640. }
  4641. },
  4642. back: {
  4643. height: math.unit(2, "meter"),
  4644. weight: math.unit(50, "kg"),
  4645. name: "Back",
  4646. image: {
  4647. source: "./media/characters/erestrebah/back.svg",
  4648. extra: 1257/1139,
  4649. bottom: 13/1270
  4650. }
  4651. },
  4652. wing: {
  4653. height: math.unit(2, "meter"),
  4654. weight: math.unit(50, "kg"),
  4655. name: "Wing",
  4656. image: {
  4657. source: "./media/characters/erestrebah/wing.svg",
  4658. extra: 1262/1162,
  4659. bottom: 96/1358
  4660. }
  4661. },
  4662. mouth: {
  4663. height: math.unit(0.39, "feet"),
  4664. name: "Mouth",
  4665. image: {
  4666. source: "./media/characters/erestrebah/mouth.svg"
  4667. }
  4668. }
  4669. },
  4670. [
  4671. {
  4672. name: "Normal",
  4673. height: math.unit(10, "feet")
  4674. },
  4675. {
  4676. name: "Large",
  4677. height: math.unit(50, "feet"),
  4678. default: true
  4679. },
  4680. {
  4681. name: "Macro",
  4682. height: math.unit(300, "feet")
  4683. },
  4684. {
  4685. name: "Macro+",
  4686. height: math.unit(750, "feet")
  4687. },
  4688. {
  4689. name: "Megamacro",
  4690. height: math.unit(3, "miles")
  4691. }
  4692. ]
  4693. ))
  4694. characterMakers.push(() => makeCharacter(
  4695. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4696. {
  4697. front: {
  4698. height: math.unit(2, "meter"),
  4699. weight: math.unit(80, "kg"),
  4700. name: "Front",
  4701. image: {
  4702. source: "./media/characters/jennifer/front.svg",
  4703. bottom: 0.11,
  4704. extra: 1.16
  4705. }
  4706. },
  4707. frontAlt: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(80, "kg"),
  4710. name: "Front (Alt)",
  4711. image: {
  4712. source: "./media/characters/jennifer/front-alt.svg"
  4713. }
  4714. }
  4715. },
  4716. [
  4717. {
  4718. name: "Canon Height",
  4719. height: math.unit(120, "feet"),
  4720. default: true
  4721. },
  4722. {
  4723. name: "Macro+",
  4724. height: math.unit(300, "feet")
  4725. },
  4726. {
  4727. name: "Megamacro",
  4728. height: math.unit(20000, "feet")
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(2, "meter"),
  4737. weight: math.unit(50, "kg"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/kalista/front.svg",
  4741. extra: 1314/1145,
  4742. bottom: 101/1415
  4743. }
  4744. },
  4745. back: {
  4746. height: math.unit(2, "meter"),
  4747. weight: math.unit(50, "kg"),
  4748. name: "Back",
  4749. image: {
  4750. source: "./media/characters/kalista/back.svg",
  4751. extra: 1366 / 1156,
  4752. bottom: 33.9 / 1362.78
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Uncomfortably Small",
  4759. height: math.unit(10, "feet")
  4760. },
  4761. {
  4762. name: "Small",
  4763. height: math.unit(30, "feet")
  4764. },
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(100, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Macro+",
  4772. height: math.unit(2000, "feet")
  4773. },
  4774. {
  4775. name: "True Form",
  4776. height: math.unit(8924, "miles")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(2, "meter"),
  4785. weight: math.unit(120, "kg"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/ggv/front.svg"
  4789. }
  4790. },
  4791. side: {
  4792. height: math.unit(2, "meter"),
  4793. weight: math.unit(120, "kg"),
  4794. name: "Side",
  4795. image: {
  4796. source: "./media/characters/ggv/side.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Extremely Puny",
  4803. height: math.unit(9 + 5 / 12, "feet")
  4804. },
  4805. {
  4806. name: "Horribly Small",
  4807. height: math.unit(47.7, "miles"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Reasonably Sized",
  4812. height: math.unit(25000, "parsecs")
  4813. },
  4814. {
  4815. name: "Slightly Uncompressed",
  4816. height: math.unit(7.77e31, "parsecs")
  4817. },
  4818. {
  4819. name: "Omniversal",
  4820. height: math.unit(1e300, "meters")
  4821. },
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(2, "meter"),
  4829. weight: math.unit(75, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/napalm/front.svg"
  4833. }
  4834. },
  4835. back: {
  4836. height: math.unit(2, "meter"),
  4837. weight: math.unit(75, "lb"),
  4838. name: "Back",
  4839. image: {
  4840. source: "./media/characters/napalm/back.svg"
  4841. }
  4842. }
  4843. },
  4844. [
  4845. {
  4846. name: "Standard",
  4847. height: math.unit(55, "feet"),
  4848. default: true
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(7 + 5 / 6, "feet"),
  4857. weight: math.unit(325, "lb"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/asana/front.svg",
  4861. extra: 1133 / 1060,
  4862. bottom: 15.2 / 1148.6
  4863. }
  4864. },
  4865. back: {
  4866. height: math.unit(7 + 5 / 6, "feet"),
  4867. weight: math.unit(325, "lb"),
  4868. name: "Back",
  4869. image: {
  4870. source: "./media/characters/asana/back.svg",
  4871. extra: 1114 / 1043,
  4872. bottom: 5 / 1120
  4873. }
  4874. },
  4875. dressedDark: {
  4876. height: math.unit(7 + 5 / 6, "feet"),
  4877. weight: math.unit(325, "lb"),
  4878. name: "Dressed (Dark)",
  4879. image: {
  4880. source: "./media/characters/asana/dressed-dark.svg",
  4881. extra: 1133 / 1060,
  4882. bottom: 15.2 / 1148.6
  4883. }
  4884. },
  4885. dressedLight: {
  4886. height: math.unit(7 + 5 / 6, "feet"),
  4887. weight: math.unit(325, "lb"),
  4888. name: "Dressed (Light)",
  4889. image: {
  4890. source: "./media/characters/asana/dressed-light.svg",
  4891. extra: 1133 / 1060,
  4892. bottom: 15.2 / 1148.6
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Standard",
  4899. height: math.unit(7 + 5 / 6, "feet"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Large",
  4904. height: math.unit(10, "meters")
  4905. },
  4906. {
  4907. name: "Macro",
  4908. height: math.unit(2500, "meters")
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(5e6, "meters")
  4913. },
  4914. {
  4915. name: "Examacro",
  4916. height: math.unit(5e12, "lightyears")
  4917. },
  4918. {
  4919. name: "Max Size",
  4920. height: math.unit(1e31, "lightyears")
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(2, "meter"),
  4929. weight: math.unit(60, "kg"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/ebony/front.svg",
  4933. bottom: 0.03,
  4934. extra: 1045 / 810 + 0.03
  4935. }
  4936. },
  4937. side: {
  4938. height: math.unit(2, "meter"),
  4939. weight: math.unit(60, "kg"),
  4940. name: "Side",
  4941. image: {
  4942. source: "./media/characters/ebony/side.svg",
  4943. bottom: 0.03,
  4944. extra: 1045 / 810 + 0.03
  4945. }
  4946. },
  4947. back: {
  4948. height: math.unit(2, "meter"),
  4949. weight: math.unit(60, "kg"),
  4950. name: "Back",
  4951. image: {
  4952. source: "./media/characters/ebony/back.svg",
  4953. bottom: 0.01,
  4954. extra: 1045 / 810 + 0.01
  4955. }
  4956. },
  4957. },
  4958. [
  4959. // TODO check why I did this lol
  4960. {
  4961. name: "Standard",
  4962. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(200, "feet")
  4968. },
  4969. {
  4970. name: "Gigamacro",
  4971. height: math.unit(13000, "km")
  4972. }
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(175, "lb"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/mountain/front.svg",
  4984. extra: 972 / 955,
  4985. bottom: 64 / 1036.6
  4986. }
  4987. },
  4988. back: {
  4989. height: math.unit(6, "feet"),
  4990. weight: math.unit(175, "lb"),
  4991. name: "Back",
  4992. image: {
  4993. source: "./media/characters/mountain/back.svg",
  4994. extra: 970 / 950,
  4995. bottom: 28.25 / 999
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Large",
  5002. height: math.unit(20, "meters")
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(300, "meters")
  5007. },
  5008. {
  5009. name: "Gigamacro",
  5010. height: math.unit(10000, "km"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Examacro",
  5015. height: math.unit(10e9, "lightyears")
  5016. }
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(8, "feet"),
  5024. weight: math.unit(500, "lb"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/rick/front.svg"
  5028. }
  5029. }
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(8, "feet"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Macro",
  5039. height: math.unit(5, "km")
  5040. }
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(8, "feet"),
  5048. weight: math.unit(120, "lb"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/ona/front.svg"
  5052. }
  5053. },
  5054. frontAlt: {
  5055. height: math.unit(8, "feet"),
  5056. weight: math.unit(120, "lb"),
  5057. name: "Front (Alt)",
  5058. image: {
  5059. source: "./media/characters/ona/front-alt.svg"
  5060. }
  5061. },
  5062. back: {
  5063. height: math.unit(8, "feet"),
  5064. weight: math.unit(120, "lb"),
  5065. name: "Back",
  5066. image: {
  5067. source: "./media/characters/ona/back.svg"
  5068. }
  5069. },
  5070. foot: {
  5071. height: math.unit(1.1, "feet"),
  5072. name: "Foot",
  5073. image: {
  5074. source: "./media/characters/ona/foot.svg"
  5075. }
  5076. }
  5077. },
  5078. [
  5079. {
  5080. name: "Megamacro",
  5081. height: math.unit(70, "km"),
  5082. default: true
  5083. },
  5084. {
  5085. name: "Gigamacro",
  5086. height: math.unit(681818, "miles")
  5087. },
  5088. {
  5089. name: "Examacro",
  5090. height: math.unit(3800000, "lightyears")
  5091. },
  5092. ]
  5093. ))
  5094. characterMakers.push(() => makeCharacter(
  5095. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5096. {
  5097. front: {
  5098. height: math.unit(12, "feet"),
  5099. weight: math.unit(3000, "lb"),
  5100. name: "Front",
  5101. image: {
  5102. source: "./media/characters/mech/front.svg",
  5103. extra: 2900 / 2770,
  5104. bottom: 110 / 3010
  5105. }
  5106. },
  5107. back: {
  5108. height: math.unit(12, "feet"),
  5109. weight: math.unit(3000, "lb"),
  5110. name: "Back",
  5111. image: {
  5112. source: "./media/characters/mech/back.svg",
  5113. extra: 3011 / 2890,
  5114. bottom: 94 / 3105
  5115. }
  5116. },
  5117. maw: {
  5118. height: math.unit(3.07, "feet"),
  5119. name: "Maw",
  5120. image: {
  5121. source: "./media/characters/mech/maw.svg"
  5122. }
  5123. },
  5124. head: {
  5125. height: math.unit(3.07, "feet"),
  5126. name: "Head",
  5127. image: {
  5128. source: "./media/characters/mech/head.svg"
  5129. }
  5130. },
  5131. dick: {
  5132. height: math.unit(1.43, "feet"),
  5133. name: "Dick",
  5134. image: {
  5135. source: "./media/characters/mech/dick.svg"
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(12, "feet")
  5143. },
  5144. {
  5145. name: "Macro",
  5146. height: math.unit(300, "feet"),
  5147. default: true
  5148. },
  5149. {
  5150. name: "Macro+",
  5151. height: math.unit(1500, "feet")
  5152. },
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(1.3, "meter"),
  5160. weight: math.unit(30, "kg"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/gregory/front.svg",
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(1.3, "meter"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Macro",
  5175. height: math.unit(20, "meter")
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5181. {
  5182. front: {
  5183. height: math.unit(2.8, "meter"),
  5184. weight: math.unit(200, "kg"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/elory/front.svg",
  5188. }
  5189. }
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(2.8, "meter"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Macro",
  5199. height: math.unit(38, "meter")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5205. {
  5206. front: {
  5207. height: math.unit(470, "feet"),
  5208. weight: math.unit(924, "tons"),
  5209. name: "Front",
  5210. image: {
  5211. source: "./media/characters/angelpatamon/front.svg",
  5212. }
  5213. }
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(470, "feet"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Deity Size I",
  5223. height: math.unit(28651.2, "km")
  5224. },
  5225. {
  5226. name: "Deity Size II",
  5227. height: math.unit(171907.2, "km")
  5228. }
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5233. {
  5234. side: {
  5235. height: math.unit(7.2, "meter"),
  5236. weight: math.unit(8.2, "tons"),
  5237. name: "Side",
  5238. image: {
  5239. source: "./media/characters/cryae/side.svg",
  5240. extra: 3500 / 1500
  5241. }
  5242. }
  5243. },
  5244. [
  5245. {
  5246. name: "Normal",
  5247. height: math.unit(7.2, "meter"),
  5248. default: true
  5249. }
  5250. ]
  5251. ))
  5252. characterMakers.push(() => makeCharacter(
  5253. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5254. {
  5255. front: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(175, "lb"),
  5258. name: "Front",
  5259. image: {
  5260. source: "./media/characters/xera/front.svg",
  5261. extra: 2377 / 1972,
  5262. bottom: 75.5 / 2452
  5263. }
  5264. },
  5265. side: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(175, "lb"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/xera/side.svg",
  5271. extra: 2345 / 2019,
  5272. bottom: 39.7 / 2384
  5273. }
  5274. },
  5275. back: {
  5276. height: math.unit(6, "feet"),
  5277. weight: math.unit(175, "lb"),
  5278. name: "Back",
  5279. image: {
  5280. source: "./media/characters/xera/back.svg",
  5281. extra: 2095 / 1984,
  5282. bottom: 67 / 2166
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Small",
  5289. height: math.unit(10, "feet")
  5290. },
  5291. {
  5292. name: "Macro",
  5293. height: math.unit(500, "meters"),
  5294. default: true
  5295. },
  5296. {
  5297. name: "Macro+",
  5298. height: math.unit(10, "km")
  5299. },
  5300. {
  5301. name: "Gigamacro",
  5302. height: math.unit(25000, "km")
  5303. },
  5304. {
  5305. name: "Teramacro",
  5306. height: math.unit(3e6, "km")
  5307. }
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(175, "lb"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/nebula/front.svg",
  5319. extra: 2566 / 2362,
  5320. bottom: 81 / 2644
  5321. }
  5322. }
  5323. },
  5324. [
  5325. {
  5326. name: "Small",
  5327. height: math.unit(4.5, "meters")
  5328. },
  5329. {
  5330. name: "Macro",
  5331. height: math.unit(1500, "meters"),
  5332. default: true
  5333. },
  5334. {
  5335. name: "Megamacro",
  5336. height: math.unit(150, "km")
  5337. },
  5338. {
  5339. name: "Gigamacro",
  5340. height: math.unit(27000, "km")
  5341. }
  5342. ]
  5343. ))
  5344. characterMakers.push(() => makeCharacter(
  5345. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5346. {
  5347. front: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(225, "lb"),
  5350. name: "Front",
  5351. image: {
  5352. source: "./media/characters/abysgar/front.svg",
  5353. extra: 1739/1614,
  5354. bottom: 71/1810
  5355. }
  5356. },
  5357. frontNsfw: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(225, "lb"),
  5360. name: "Front (NSFW)",
  5361. image: {
  5362. source: "./media/characters/abysgar/front-nsfw.svg",
  5363. extra: 1739/1614,
  5364. bottom: 71/1810
  5365. }
  5366. },
  5367. back: {
  5368. height: math.unit(4.6, "feet"),
  5369. weight: math.unit(225, "lb"),
  5370. name: "Back",
  5371. image: {
  5372. source: "./media/characters/abysgar/back.svg",
  5373. extra: 1384/1327,
  5374. bottom: 0/1384
  5375. }
  5376. },
  5377. head: {
  5378. height: math.unit(1.25, "feet"),
  5379. name: "Head",
  5380. image: {
  5381. source: "./media/characters/abysgar/head.svg",
  5382. extra: 669/569,
  5383. bottom: 0/669
  5384. }
  5385. },
  5386. },
  5387. [
  5388. {
  5389. name: "Small",
  5390. height: math.unit(4.5, "meters")
  5391. },
  5392. {
  5393. name: "Macro",
  5394. height: math.unit(1250, "meters"),
  5395. default: true
  5396. },
  5397. {
  5398. name: "Megamacro",
  5399. height: math.unit(125, "km")
  5400. },
  5401. {
  5402. name: "Gigamacro",
  5403. height: math.unit(26000, "km")
  5404. }
  5405. ]
  5406. ))
  5407. characterMakers.push(() => makeCharacter(
  5408. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5409. {
  5410. front: {
  5411. height: math.unit(6, "feet"),
  5412. weight: math.unit(180, "lb"),
  5413. name: "Front",
  5414. image: {
  5415. source: "./media/characters/yakuz/front.svg"
  5416. }
  5417. }
  5418. },
  5419. [
  5420. {
  5421. name: "Small",
  5422. height: math.unit(5, "meters")
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(1500, "meters"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Megamacro",
  5431. height: math.unit(200, "km")
  5432. },
  5433. {
  5434. name: "Gigamacro",
  5435. height: math.unit(100000, "km")
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(175, "lb"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/mirova/front.svg",
  5448. extra: 3334 / 3071,
  5449. bottom: 42 / 3375.6
  5450. }
  5451. }
  5452. },
  5453. [
  5454. {
  5455. name: "Small",
  5456. height: math.unit(5, "meters")
  5457. },
  5458. {
  5459. name: "Macro",
  5460. height: math.unit(900, "meters"),
  5461. default: true
  5462. },
  5463. {
  5464. name: "Megamacro",
  5465. height: math.unit(135, "km")
  5466. },
  5467. {
  5468. name: "Gigamacro",
  5469. height: math.unit(20000, "km")
  5470. }
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5475. {
  5476. side: {
  5477. height: math.unit(28.35, "feet"),
  5478. weight: math.unit(99.75, "tons"),
  5479. name: "Side",
  5480. image: {
  5481. source: "./media/characters/asana-mech/side.svg",
  5482. extra: 923 / 699,
  5483. bottom: 50 / 975
  5484. }
  5485. },
  5486. chaingun: {
  5487. height: math.unit(7, "feet"),
  5488. weight: math.unit(2400, "lb"),
  5489. name: "Chaingun",
  5490. image: {
  5491. source: "./media/characters/asana-mech/chaingun.svg"
  5492. }
  5493. },
  5494. laser: {
  5495. height: math.unit(7.12, "feet"),
  5496. weight: math.unit(2000, "lb"),
  5497. name: "Laser",
  5498. image: {
  5499. source: "./media/characters/asana-mech/laser.svg"
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "Normal",
  5506. height: math.unit(28.35, "feet"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(2500, "feet")
  5512. },
  5513. {
  5514. name: "Megamacro",
  5515. height: math.unit(25, "miles")
  5516. },
  5517. {
  5518. name: "Examacro",
  5519. height: math.unit(6e8, "lightyears")
  5520. },
  5521. ]
  5522. ))
  5523. characterMakers.push(() => makeCharacter(
  5524. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5525. {
  5526. front: {
  5527. height: math.unit(5, "meters"),
  5528. weight: math.unit(1000, "kg"),
  5529. name: "Front",
  5530. image: {
  5531. source: "./media/characters/asche/front.svg",
  5532. extra: 1258 / 1190,
  5533. bottom: 47 / 1305
  5534. }
  5535. },
  5536. frontUnderwear: {
  5537. height: math.unit(5, "meters"),
  5538. weight: math.unit(1000, "kg"),
  5539. name: "Front (Underwear)",
  5540. image: {
  5541. source: "./media/characters/asche/front-underwear.svg",
  5542. extra: 1258 / 1190,
  5543. bottom: 47 / 1305
  5544. }
  5545. },
  5546. frontDressed: {
  5547. height: math.unit(5, "meters"),
  5548. weight: math.unit(1000, "kg"),
  5549. name: "Front (Dressed)",
  5550. image: {
  5551. source: "./media/characters/asche/front-dressed.svg",
  5552. extra: 1258 / 1190,
  5553. bottom: 47 / 1305
  5554. }
  5555. },
  5556. frontArmor: {
  5557. height: math.unit(5, "meters"),
  5558. weight: math.unit(1000, "kg"),
  5559. name: "Front (Armored)",
  5560. image: {
  5561. source: "./media/characters/asche/front-armored.svg",
  5562. extra: 1374 / 1308,
  5563. bottom: 23 / 1397
  5564. }
  5565. },
  5566. mp724: {
  5567. height: math.unit(0.96, "meters"),
  5568. weight: math.unit(38, "kg"),
  5569. name: "H&K MP724",
  5570. image: {
  5571. source: "./media/characters/asche/h&k-mp724.svg"
  5572. }
  5573. },
  5574. side: {
  5575. height: math.unit(5, "meters"),
  5576. weight: math.unit(1000, "kg"),
  5577. name: "Side",
  5578. image: {
  5579. source: "./media/characters/asche/side.svg",
  5580. extra: 1717 / 1609,
  5581. bottom: 0.005
  5582. }
  5583. },
  5584. back: {
  5585. height: math.unit(5, "meters"),
  5586. weight: math.unit(1000, "kg"),
  5587. name: "Back",
  5588. image: {
  5589. source: "./media/characters/asche/back.svg",
  5590. extra: 1570 / 1501
  5591. }
  5592. },
  5593. },
  5594. [
  5595. {
  5596. name: "DEFCON 5",
  5597. height: math.unit(5, "meters")
  5598. },
  5599. {
  5600. name: "DEFCON 4",
  5601. height: math.unit(500, "meters"),
  5602. default: true
  5603. },
  5604. {
  5605. name: "DEFCON 3",
  5606. height: math.unit(5, "km")
  5607. },
  5608. {
  5609. name: "DEFCON 2",
  5610. height: math.unit(500, "km")
  5611. },
  5612. {
  5613. name: "DEFCON 1",
  5614. height: math.unit(500000, "km")
  5615. },
  5616. {
  5617. name: "DEFCON 0",
  5618. height: math.unit(3, "gigaparsecs")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(7, "feet"),
  5627. weight: math.unit(92.7, "kg"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/gale/front.svg",
  5631. extra: 977/919,
  5632. bottom: 105/1082
  5633. }
  5634. },
  5635. side: {
  5636. height: math.unit(6.7, "feet"),
  5637. weight: math.unit(92.7, "kg"),
  5638. name: "Side",
  5639. image: {
  5640. source: "./media/characters/gale/side.svg",
  5641. extra: 978/922,
  5642. bottom: 140/1118
  5643. }
  5644. },
  5645. back: {
  5646. height: math.unit(7, "feet"),
  5647. weight: math.unit(92.7, "kg"),
  5648. name: "Back",
  5649. image: {
  5650. source: "./media/characters/gale/back.svg",
  5651. extra: 966/920,
  5652. bottom: 61/1027
  5653. }
  5654. },
  5655. maw: {
  5656. height: math.unit(2.23, "feet"),
  5657. name: "Maw",
  5658. image: {
  5659. source: "./media/characters/gale/maw.svg"
  5660. }
  5661. },
  5662. foot: {
  5663. height: math.unit(2.1, "feet"),
  5664. name: "Foot",
  5665. image: {
  5666. source: "./media/characters/gale/foot.svg"
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(7, "feet")
  5674. },
  5675. {
  5676. name: "Macro",
  5677. height: math.unit(150, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Macro+",
  5682. height: math.unit(300, "feet")
  5683. },
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5688. {
  5689. front: {
  5690. height: math.unit(5 + 10/12, "feet"),
  5691. weight: math.unit(67, "kg"),
  5692. name: "Front",
  5693. image: {
  5694. source: "./media/characters/draylen/front.svg",
  5695. extra: 832/777,
  5696. bottom: 85/917
  5697. }
  5698. }
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(5 + 10/12, "feet")
  5704. },
  5705. {
  5706. name: "Macro",
  5707. height: math.unit(150, "feet"),
  5708. default: true
  5709. }
  5710. ]
  5711. ))
  5712. characterMakers.push(() => makeCharacter(
  5713. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5714. {
  5715. front: {
  5716. height: math.unit(7 + 9 / 12, "feet"),
  5717. weight: math.unit(379, "lbs"),
  5718. name: "Front",
  5719. image: {
  5720. source: "./media/characters/chez/front.svg"
  5721. }
  5722. },
  5723. side: {
  5724. height: math.unit(7 + 9 / 12, "feet"),
  5725. weight: math.unit(379, "lbs"),
  5726. name: "Side",
  5727. image: {
  5728. source: "./media/characters/chez/side.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(7 + 9 / 12, "feet"),
  5736. default: true
  5737. },
  5738. {
  5739. name: "God King",
  5740. height: math.unit(9750000, "meters")
  5741. }
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5746. {
  5747. front: {
  5748. height: math.unit(6, "feet"),
  5749. weight: math.unit(275, "lbs"),
  5750. name: "Front",
  5751. image: {
  5752. source: "./media/characters/kaylum/front.svg",
  5753. bottom: 0.01,
  5754. extra: 1166 / 1031
  5755. }
  5756. },
  5757. frontWingless: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(275, "lbs"),
  5760. name: "Front (Wingless)",
  5761. image: {
  5762. source: "./media/characters/kaylum/front-wingless.svg",
  5763. bottom: 0.01,
  5764. extra: 1117 / 1031
  5765. }
  5766. }
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(3.05, "meters")
  5772. },
  5773. {
  5774. name: "Master",
  5775. height: math.unit(5.5, "meters")
  5776. },
  5777. {
  5778. name: "Rampage",
  5779. height: math.unit(19, "meters")
  5780. },
  5781. {
  5782. name: "Macro Lite",
  5783. height: math.unit(37, "meters")
  5784. },
  5785. {
  5786. name: "Hyper Predator",
  5787. height: math.unit(61, "meters")
  5788. },
  5789. {
  5790. name: "Macro",
  5791. height: math.unit(138, "meters"),
  5792. default: true
  5793. }
  5794. ]
  5795. ))
  5796. characterMakers.push(() => makeCharacter(
  5797. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5798. {
  5799. front: {
  5800. height: math.unit(5 + 5 / 12, "feet"),
  5801. weight: math.unit(120, "lbs"),
  5802. name: "Front",
  5803. image: {
  5804. source: "./media/characters/geta/front.svg",
  5805. extra: 1003/933,
  5806. bottom: 21/1024
  5807. }
  5808. },
  5809. paw: {
  5810. height: math.unit(0.35, "feet"),
  5811. name: "Paw",
  5812. image: {
  5813. source: "./media/characters/geta/paw.svg"
  5814. }
  5815. },
  5816. },
  5817. [
  5818. {
  5819. name: "Micro",
  5820. height: math.unit(3, "inches"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(5 + 5 / 12, "feet")
  5826. }
  5827. ]
  5828. ))
  5829. characterMakers.push(() => makeCharacter(
  5830. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5831. {
  5832. front: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(300, "lbs"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/tyrnn/front.svg"
  5838. }
  5839. }
  5840. },
  5841. [
  5842. {
  5843. name: "Main Height",
  5844. height: math.unit(355, "feet"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Fave. Height",
  5849. height: math.unit(2400, "feet")
  5850. }
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(300, "lbs"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/appledectomy/front.svg"
  5862. }
  5863. }
  5864. },
  5865. [
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(2500, "feet")
  5869. },
  5870. {
  5871. name: "Megamacro",
  5872. height: math.unit(50, "miles"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Gigamacro",
  5877. height: math.unit(5000, "miles")
  5878. },
  5879. {
  5880. name: "Teramacro",
  5881. height: math.unit(250000, "miles")
  5882. },
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5887. {
  5888. front: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(200, "lbs"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/vulpes/front.svg",
  5894. extra: 573 / 543,
  5895. bottom: 0.033
  5896. }
  5897. },
  5898. side: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(200, "lbs"),
  5901. name: "Side",
  5902. image: {
  5903. source: "./media/characters/vulpes/side.svg",
  5904. extra: 577 / 549,
  5905. bottom: 11 / 588
  5906. }
  5907. },
  5908. back: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(200, "lbs"),
  5911. name: "Back",
  5912. image: {
  5913. source: "./media/characters/vulpes/back.svg",
  5914. extra: 573 / 549,
  5915. bottom: 20 / 593
  5916. }
  5917. },
  5918. feet: {
  5919. height: math.unit(1.276, "feet"),
  5920. name: "Feet",
  5921. image: {
  5922. source: "./media/characters/vulpes/feet.svg"
  5923. }
  5924. },
  5925. maw: {
  5926. height: math.unit(1.18, "feet"),
  5927. name: "Maw",
  5928. image: {
  5929. source: "./media/characters/vulpes/maw.svg"
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(2, "inches")
  5937. },
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(6.3, "feet")
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(850, "feet")
  5945. },
  5946. {
  5947. name: "Megamacro",
  5948. height: math.unit(7500, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Gigamacro",
  5953. height: math.unit(570000, "miles")
  5954. }
  5955. ]
  5956. ))
  5957. characterMakers.push(() => makeCharacter(
  5958. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5959. {
  5960. front: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(210, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/front.svg"
  5966. }
  5967. },
  5968. side: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(210, "lbs"),
  5971. name: "Side",
  5972. image: {
  5973. source: "./media/characters/rain-fallen/side.svg"
  5974. }
  5975. },
  5976. back: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(210, "lbs"),
  5979. name: "Back",
  5980. image: {
  5981. source: "./media/characters/rain-fallen/back.svg"
  5982. }
  5983. },
  5984. feral: {
  5985. height: math.unit(9, "feet"),
  5986. weight: math.unit(700, "lbs"),
  5987. name: "Feral",
  5988. image: {
  5989. source: "./media/characters/rain-fallen/feral.svg"
  5990. }
  5991. },
  5992. },
  5993. [
  5994. {
  5995. name: "Meddling with Mortals",
  5996. height: math.unit(8 + 8/12, "feet")
  5997. },
  5998. {
  5999. name: "Normal",
  6000. height: math.unit(5, "meter")
  6001. },
  6002. {
  6003. name: "Macro",
  6004. height: math.unit(150, "meter"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Megamacro",
  6009. height: math.unit(278e6, "meter")
  6010. },
  6011. {
  6012. name: "Gigamacro",
  6013. height: math.unit(2e9, "meter")
  6014. },
  6015. {
  6016. name: "Teramacro",
  6017. height: math.unit(8e12, "meter")
  6018. },
  6019. {
  6020. name: "Devourer",
  6021. height: math.unit(14, "zettameters")
  6022. },
  6023. {
  6024. name: "Scarlet King",
  6025. height: math.unit(18, "yottameters")
  6026. },
  6027. {
  6028. name: "Void",
  6029. height: math.unit(1e88, "yottameters")
  6030. }
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6035. {
  6036. standing: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(180, "lbs"),
  6039. name: "Standing",
  6040. image: {
  6041. source: "./media/characters/zaakira/standing.svg",
  6042. extra: 1599/1504,
  6043. bottom: 39/1638
  6044. }
  6045. },
  6046. laying: {
  6047. height: math.unit(3.3, "feet"),
  6048. weight: math.unit(180, "lbs"),
  6049. name: "Laying",
  6050. image: {
  6051. source: "./media/characters/zaakira/laying.svg"
  6052. }
  6053. },
  6054. },
  6055. [
  6056. {
  6057. name: "Normal",
  6058. height: math.unit(12, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(279, "feet"),
  6063. default: true
  6064. }
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6069. {
  6070. femSfw: {
  6071. height: math.unit(8, "feet"),
  6072. weight: math.unit(350, "lb"),
  6073. name: "Fem",
  6074. image: {
  6075. source: "./media/characters/sigvald/fem-sfw.svg",
  6076. extra: 182 / 164,
  6077. bottom: 8.7 / 190.5
  6078. }
  6079. },
  6080. femNsfw: {
  6081. height: math.unit(8, "feet"),
  6082. weight: math.unit(350, "lb"),
  6083. name: "Fem (NSFW)",
  6084. image: {
  6085. source: "./media/characters/sigvald/fem-nsfw.svg",
  6086. extra: 182 / 164,
  6087. bottom: 8.7 / 190.5
  6088. }
  6089. },
  6090. maleNsfw: {
  6091. height: math.unit(8, "feet"),
  6092. weight: math.unit(350, "lb"),
  6093. name: "Male (NSFW)",
  6094. image: {
  6095. source: "./media/characters/sigvald/male-nsfw.svg",
  6096. extra: 182 / 164,
  6097. bottom: 8.7 / 190.5
  6098. }
  6099. },
  6100. hermNsfw: {
  6101. height: math.unit(8, "feet"),
  6102. weight: math.unit(350, "lb"),
  6103. name: "Herm (NSFW)",
  6104. image: {
  6105. source: "./media/characters/sigvald/herm-nsfw.svg",
  6106. extra: 182 / 164,
  6107. bottom: 8.7 / 190.5
  6108. }
  6109. },
  6110. dick: {
  6111. height: math.unit(2.36, "feet"),
  6112. name: "Dick",
  6113. image: {
  6114. source: "./media/characters/sigvald/dick.svg"
  6115. }
  6116. },
  6117. eye: {
  6118. height: math.unit(0.31, "feet"),
  6119. name: "Eye",
  6120. image: {
  6121. source: "./media/characters/sigvald/eye.svg"
  6122. }
  6123. },
  6124. mouth: {
  6125. height: math.unit(0.92, "feet"),
  6126. name: "Mouth",
  6127. image: {
  6128. source: "./media/characters/sigvald/mouth.svg"
  6129. }
  6130. },
  6131. paws: {
  6132. height: math.unit(2.2, "feet"),
  6133. name: "Paws",
  6134. image: {
  6135. source: "./media/characters/sigvald/paws.svg"
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(8, "feet")
  6143. },
  6144. {
  6145. name: "Large",
  6146. height: math.unit(12, "feet")
  6147. },
  6148. {
  6149. name: "Larger",
  6150. height: math.unit(20, "feet")
  6151. },
  6152. {
  6153. name: "Macro",
  6154. height: math.unit(150, "feet")
  6155. },
  6156. {
  6157. name: "Macro+",
  6158. height: math.unit(200, "feet"),
  6159. default: true
  6160. },
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6165. {
  6166. anthro_front: {
  6167. height: math.unit(5 + 11/12, "feet"),
  6168. weight: math.unit(250, "lb"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/scott/anthro-front.svg",
  6172. extra: 851/781,
  6173. bottom: 54/905
  6174. },
  6175. form: "anthro",
  6176. default: true
  6177. },
  6178. anthro_side: {
  6179. height: math.unit(5.1, "feet"),
  6180. weight: math.unit(250, "lb"),
  6181. name: "Side",
  6182. image: {
  6183. source: "./media/characters/scott/anthro-side.svg"
  6184. },
  6185. form: "anthro",
  6186. },
  6187. anthro_dick: {
  6188. height: math.unit(1.33, "feet"),
  6189. name: "Dick",
  6190. image: {
  6191. source: "./media/characters/scott/anthro-dick.svg"
  6192. },
  6193. form: "anthro",
  6194. },
  6195. side: {
  6196. height: math.unit(12, "feet"),
  6197. weight: math.unit(2000, "kg"),
  6198. name: "Side",
  6199. image: {
  6200. source: "./media/characters/scott/side.svg",
  6201. extra: 754 / 724,
  6202. bottom: 0.069
  6203. },
  6204. form: "taur",
  6205. default: true
  6206. },
  6207. upright: {
  6208. height: math.unit(12, "feet"),
  6209. weight: math.unit(2000, "kg"),
  6210. name: "Upright",
  6211. image: {
  6212. source: "./media/characters/scott/upright.svg",
  6213. extra: 3881 / 3722,
  6214. bottom: 0.05
  6215. },
  6216. form: "taur",
  6217. },
  6218. },
  6219. [
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(5 + 11/12, "feet"),
  6223. default: true,
  6224. form: "anthro"
  6225. },
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(12, "feet"),
  6229. default: true,
  6230. form: "taur"
  6231. },
  6232. ],
  6233. {
  6234. "anthro": {
  6235. name: "Anthro",
  6236. default: true
  6237. },
  6238. "taur": {
  6239. name: "Taur",
  6240. },
  6241. }
  6242. ))
  6243. characterMakers.push(() => makeCharacter(
  6244. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6245. {
  6246. side: {
  6247. height: math.unit(8, "meters"),
  6248. weight: math.unit(84755, "lbs"),
  6249. name: "Side",
  6250. image: {
  6251. source: "./media/characters/tobias/side.svg",
  6252. extra: 1474 / 1096,
  6253. bottom: 38.9 / 1513.1235
  6254. }
  6255. },
  6256. maw: {
  6257. height: math.unit(2.3, "meters"),
  6258. name: "Maw",
  6259. image: {
  6260. source: "./media/characters/tobias/maw.svg"
  6261. }
  6262. },
  6263. burp: {
  6264. height: math.unit(2.85, "meters"),
  6265. name: "Burp",
  6266. image: {
  6267. source: "./media/characters/tobias/burp.svg"
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(8, "meters"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6281. {
  6282. front: {
  6283. height: math.unit(5.5, "feet"),
  6284. weight: math.unit(400, "lbs"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/kieran/front.svg",
  6288. extra: 2694 / 2364,
  6289. bottom: 217 / 2908
  6290. }
  6291. },
  6292. side: {
  6293. height: math.unit(5.5, "feet"),
  6294. weight: math.unit(400, "lbs"),
  6295. name: "Side",
  6296. image: {
  6297. source: "./media/characters/kieran/side.svg",
  6298. extra: 875 / 777,
  6299. bottom: 84.6 / 959
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(5.5, "feet"),
  6307. default: true
  6308. },
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6313. {
  6314. side: {
  6315. height: math.unit(2, "meters"),
  6316. weight: math.unit(70, "kg"),
  6317. name: "Side",
  6318. image: {
  6319. source: "./media/characters/sanya/side.svg",
  6320. bottom: 0.02,
  6321. extra: 1.02
  6322. }
  6323. },
  6324. },
  6325. [
  6326. {
  6327. name: "Small",
  6328. height: math.unit(2, "meters")
  6329. },
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(3, "meters")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(16, "meters"),
  6337. default: true
  6338. },
  6339. ]
  6340. ))
  6341. characterMakers.push(() => makeCharacter(
  6342. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6343. {
  6344. front: {
  6345. height: math.unit(2, "meters"),
  6346. weight: math.unit(120, "kg"),
  6347. name: "Front",
  6348. image: {
  6349. source: "./media/characters/miranda/front.svg",
  6350. extra: 195 / 185,
  6351. bottom: 10.9 / 206.5
  6352. }
  6353. },
  6354. back: {
  6355. height: math.unit(2, "meters"),
  6356. weight: math.unit(120, "kg"),
  6357. name: "Back",
  6358. image: {
  6359. source: "./media/characters/miranda/back.svg",
  6360. extra: 201 / 193,
  6361. bottom: 2.3 / 203.7
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Normal",
  6368. height: math.unit(10, "feet"),
  6369. default: true
  6370. }
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "James", species: ["deer"], tags: ["anthro"] },
  6375. {
  6376. side: {
  6377. height: math.unit(2, "meters"),
  6378. weight: math.unit(100, "kg"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/james/front.svg",
  6382. extra: 10 / 8.5
  6383. }
  6384. },
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(8.5, "feet"),
  6390. default: true
  6391. }
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6396. {
  6397. side: {
  6398. height: math.unit(9.5, "feet"),
  6399. weight: math.unit(2500, "lbs"),
  6400. name: "Side",
  6401. image: {
  6402. source: "./media/characters/heather/side.svg"
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(9.5, "feet"),
  6410. default: true
  6411. }
  6412. ]
  6413. ))
  6414. characterMakers.push(() => makeCharacter(
  6415. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6416. {
  6417. side: {
  6418. height: math.unit(6.5, "feet"),
  6419. weight: math.unit(400, "lbs"),
  6420. name: "Side",
  6421. image: {
  6422. source: "./media/characters/lukas/side.svg",
  6423. extra: 7.25 / 6.5
  6424. }
  6425. },
  6426. },
  6427. [
  6428. {
  6429. name: "Normal",
  6430. height: math.unit(6.5, "feet"),
  6431. default: true
  6432. }
  6433. ]
  6434. ))
  6435. characterMakers.push(() => makeCharacter(
  6436. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6437. {
  6438. side: {
  6439. height: math.unit(5, "feet"),
  6440. weight: math.unit(3000, "lbs"),
  6441. name: "Side",
  6442. image: {
  6443. source: "./media/characters/louise/side.svg"
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(5, "feet"),
  6451. default: true
  6452. }
  6453. ]
  6454. ))
  6455. characterMakers.push(() => makeCharacter(
  6456. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6457. {
  6458. side: {
  6459. height: math.unit(6, "feet"),
  6460. weight: math.unit(150, "lbs"),
  6461. name: "Side",
  6462. image: {
  6463. source: "./media/characters/ramona/side.svg",
  6464. extra: 871/854,
  6465. bottom: 41/912
  6466. }
  6467. },
  6468. },
  6469. [
  6470. {
  6471. name: "Normal",
  6472. height: math.unit(6 + 4/12, "feet")
  6473. },
  6474. {
  6475. name: "Minimacro",
  6476. height: math.unit(5.3, "meters"),
  6477. default: true
  6478. },
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(20, "stories")
  6482. },
  6483. {
  6484. name: "Macro+",
  6485. height: math.unit(50, "stories")
  6486. },
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6491. {
  6492. standing: {
  6493. height: math.unit(5.75, "feet"),
  6494. weight: math.unit(160, "lbs"),
  6495. name: "Standing",
  6496. image: {
  6497. source: "./media/characters/deerpuff/standing.svg",
  6498. extra: 682 / 624
  6499. }
  6500. },
  6501. sitting: {
  6502. height: math.unit(5.75 / 1.79, "feet"),
  6503. weight: math.unit(160, "lbs"),
  6504. name: "Sitting",
  6505. image: {
  6506. source: "./media/characters/deerpuff/sitting.svg",
  6507. bottom: 44 / 400,
  6508. extra: 1
  6509. }
  6510. },
  6511. taurLaying: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(400, "lbs"),
  6514. name: "Taur (Laying)",
  6515. image: {
  6516. source: "./media/characters/deerpuff/taur-laying.svg"
  6517. }
  6518. },
  6519. },
  6520. [
  6521. {
  6522. name: "Puffball",
  6523. height: math.unit(6, "inches")
  6524. },
  6525. {
  6526. name: "Normalpuff",
  6527. height: math.unit(5.75, "feet")
  6528. },
  6529. {
  6530. name: "Macropuff",
  6531. height: math.unit(1500, "feet"),
  6532. default: true
  6533. },
  6534. {
  6535. name: "Megapuff",
  6536. height: math.unit(500, "miles")
  6537. },
  6538. {
  6539. name: "Gigapuff",
  6540. height: math.unit(250000, "miles")
  6541. },
  6542. {
  6543. name: "Omegapuff",
  6544. height: math.unit(1000, "lightyears")
  6545. },
  6546. ]
  6547. ))
  6548. characterMakers.push(() => makeCharacter(
  6549. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6550. {
  6551. stomping: {
  6552. height: math.unit(6, "feet"),
  6553. weight: math.unit(170, "lbs"),
  6554. name: "Stomping",
  6555. image: {
  6556. source: "./media/characters/vivian/stomping.svg"
  6557. }
  6558. },
  6559. sitting: {
  6560. height: math.unit(6 / 1.75, "feet"),
  6561. weight: math.unit(170, "lbs"),
  6562. name: "Sitting",
  6563. image: {
  6564. source: "./media/characters/vivian/sitting.svg",
  6565. bottom: 1 / 6.4,
  6566. extra: 1,
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(7, "feet"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(10, "stories")
  6579. },
  6580. {
  6581. name: "Macro+",
  6582. height: math.unit(30, "stories")
  6583. },
  6584. {
  6585. name: "Megamacro",
  6586. height: math.unit(10, "miles")
  6587. },
  6588. {
  6589. name: "Megamacro+",
  6590. height: math.unit(2750000, "meters")
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(160, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/prince/front.svg",
  6603. extra: 1938/1682,
  6604. bottom: 45/1983
  6605. }
  6606. },
  6607. back: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(160, "lbs"),
  6610. name: "Back",
  6611. image: {
  6612. source: "./media/characters/prince/back.svg",
  6613. extra: 1955/1726,
  6614. bottom: 6/1961
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(7.75, "feet"),
  6622. default: true
  6623. },
  6624. {
  6625. name: "Not cute",
  6626. height: math.unit(17, "feet")
  6627. },
  6628. {
  6629. name: "I said NOT",
  6630. height: math.unit(91, "feet")
  6631. },
  6632. {
  6633. name: "Please stop",
  6634. height: math.unit(560, "feet")
  6635. },
  6636. {
  6637. name: "What have you done",
  6638. height: math.unit(2200, "feet")
  6639. },
  6640. {
  6641. name: "Deer God",
  6642. height: math.unit(3.6, "miles")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6648. {
  6649. standing: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(300, "lbs"),
  6652. name: "Standing",
  6653. image: {
  6654. source: "./media/characters/psymon/standing.svg",
  6655. extra: 1888 / 1810,
  6656. bottom: 0.05
  6657. }
  6658. },
  6659. slithering: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(300, "lbs"),
  6662. name: "Slithering",
  6663. image: {
  6664. source: "./media/characters/psymon/slithering.svg",
  6665. extra: 1330 / 1224
  6666. }
  6667. },
  6668. slitheringAlt: {
  6669. height: math.unit(6, "feet"),
  6670. weight: math.unit(300, "lbs"),
  6671. name: "Slithering (Alt)",
  6672. image: {
  6673. source: "./media/characters/psymon/slithering-alt.svg",
  6674. extra: 1330 / 1224
  6675. }
  6676. },
  6677. },
  6678. [
  6679. {
  6680. name: "Normal",
  6681. height: math.unit(11.25, "feet"),
  6682. default: true
  6683. },
  6684. {
  6685. name: "Large",
  6686. height: math.unit(27, "feet")
  6687. },
  6688. {
  6689. name: "Giant",
  6690. height: math.unit(87, "feet")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(365, "feet")
  6695. },
  6696. {
  6697. name: "Megamacro",
  6698. height: math.unit(3, "miles")
  6699. },
  6700. {
  6701. name: "World Serpent",
  6702. height: math.unit(8000, "miles")
  6703. },
  6704. ]
  6705. ))
  6706. characterMakers.push(() => makeCharacter(
  6707. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6708. {
  6709. front: {
  6710. height: math.unit(6, "feet"),
  6711. weight: math.unit(180, "lbs"),
  6712. name: "Front",
  6713. image: {
  6714. source: "./media/characters/daimos/front.svg",
  6715. extra: 4160 / 3897,
  6716. bottom: 0.021
  6717. }
  6718. }
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(8, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Big Dog",
  6728. height: math.unit(22, "feet")
  6729. },
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(127, "feet")
  6733. },
  6734. {
  6735. name: "Megamacro",
  6736. height: math.unit(3600, "feet")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6742. {
  6743. side: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(180, "lbs"),
  6746. name: "Side",
  6747. image: {
  6748. source: "./media/characters/blake/side.svg",
  6749. extra: 1212 / 1120,
  6750. bottom: 0.05
  6751. }
  6752. },
  6753. crouched: {
  6754. height: math.unit(6 * 0.57, "feet"),
  6755. weight: math.unit(180, "lbs"),
  6756. name: "Crouched",
  6757. image: {
  6758. source: "./media/characters/blake/crouched.svg",
  6759. extra: 840 / 587,
  6760. bottom: 0.04
  6761. }
  6762. },
  6763. bent: {
  6764. height: math.unit(6 * 0.75, "feet"),
  6765. weight: math.unit(180, "lbs"),
  6766. name: "Bent",
  6767. image: {
  6768. source: "./media/characters/blake/bent.svg",
  6769. extra: 592 / 544,
  6770. bottom: 0.035
  6771. }
  6772. },
  6773. },
  6774. [
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(8 + 1 / 6, "feet"),
  6778. default: true
  6779. },
  6780. {
  6781. name: "Big Backside",
  6782. height: math.unit(37, "feet")
  6783. },
  6784. {
  6785. name: "Subway Shredder",
  6786. height: math.unit(72, "feet")
  6787. },
  6788. {
  6789. name: "City Carver",
  6790. height: math.unit(1675, "feet")
  6791. },
  6792. {
  6793. name: "Tectonic Tweaker",
  6794. height: math.unit(2300, "miles")
  6795. },
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(180, "lbs"),
  6804. name: "Front",
  6805. image: {
  6806. source: "./media/characters/guisetto/front.svg",
  6807. extra: 856 / 817,
  6808. bottom: 0.06
  6809. }
  6810. },
  6811. airborne: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(180, "lbs"),
  6814. name: "Airborne",
  6815. image: {
  6816. source: "./media/characters/guisetto/airborne.svg",
  6817. extra: 584 / 525
  6818. }
  6819. },
  6820. },
  6821. [
  6822. {
  6823. name: "Normal",
  6824. height: math.unit(10 + 11 / 12, "feet"),
  6825. default: true
  6826. },
  6827. {
  6828. name: "Large",
  6829. height: math.unit(35, "feet")
  6830. },
  6831. {
  6832. name: "Macro",
  6833. height: math.unit(475, "feet")
  6834. },
  6835. ]
  6836. ))
  6837. characterMakers.push(() => makeCharacter(
  6838. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6839. {
  6840. front: {
  6841. height: math.unit(6, "feet"),
  6842. weight: math.unit(180, "lbs"),
  6843. name: "Front",
  6844. image: {
  6845. source: "./media/characters/luxor/front.svg",
  6846. extra: 2940 / 2152
  6847. }
  6848. },
  6849. back: {
  6850. height: math.unit(6, "feet"),
  6851. weight: math.unit(180, "lbs"),
  6852. name: "Back",
  6853. image: {
  6854. source: "./media/characters/luxor/back.svg",
  6855. extra: 1083 / 960
  6856. }
  6857. },
  6858. },
  6859. [
  6860. {
  6861. name: "Normal",
  6862. height: math.unit(5 + 5 / 6, "feet"),
  6863. default: true
  6864. },
  6865. {
  6866. name: "Lamp",
  6867. height: math.unit(50, "feet")
  6868. },
  6869. {
  6870. name: "Lämp",
  6871. height: math.unit(300, "feet")
  6872. },
  6873. {
  6874. name: "The sun is a lamp",
  6875. height: math.unit(250000, "miles")
  6876. },
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(50, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/huoyan/front.svg"
  6888. }
  6889. },
  6890. side: {
  6891. height: math.unit(6, "feet"),
  6892. weight: math.unit(180, "lbs"),
  6893. name: "Side",
  6894. image: {
  6895. source: "./media/characters/huoyan/side.svg"
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Chef",
  6902. height: math.unit(9, "feet")
  6903. },
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(65, "feet"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro",
  6911. height: math.unit(780, "feet")
  6912. },
  6913. {
  6914. name: "Flaming Mountain",
  6915. height: math.unit(4.8, "miles")
  6916. },
  6917. {
  6918. name: "Celestial",
  6919. height: math.unit(765000, "miles")
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(5 + 3 / 4, "feet"),
  6928. weight: math.unit(120, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/tails/front.svg"
  6932. }
  6933. }
  6934. },
  6935. [
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(5 + 3 / 4, "feet"),
  6939. default: true
  6940. }
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(4, "feet"),
  6948. weight: math.unit(50, "lbs"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/rainy/front.svg"
  6952. }
  6953. }
  6954. },
  6955. [
  6956. {
  6957. name: "Macro",
  6958. height: math.unit(800, "feet"),
  6959. default: true
  6960. }
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(150, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/rainier/front.svg"
  6972. }
  6973. }
  6974. },
  6975. [
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(2, "mm"),
  6979. default: true
  6980. }
  6981. ]
  6982. ))
  6983. characterMakers.push(() => makeCharacter(
  6984. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6985. {
  6986. front: {
  6987. height: math.unit(8 + 4/12, "feet"),
  6988. weight: math.unit(450, "kilograms"),
  6989. name: "Front",
  6990. image: {
  6991. source: "./media/characters/andy-renard/front.svg",
  6992. extra: 862/809,
  6993. bottom: 85/947
  6994. },
  6995. extraAttributes: {
  6996. "pawSize": {
  6997. name: "Paw Size",
  6998. power: 2,
  6999. type: "area",
  7000. base: math.unit(0.45*0.3, "meters^2")
  7001. },
  7002. "handSize": {
  7003. name: "Hand Size",
  7004. power: 2,
  7005. type: "area",
  7006. base: math.unit(0.4 * 0.3, "meters^2")
  7007. },
  7008. "cockSize": {
  7009. name: "Cock Length",
  7010. power: 1,
  7011. type: "length",
  7012. base: math.unit(0.75, "meters")
  7013. },
  7014. "ballDiameter": {
  7015. name: "Ball Diameter",
  7016. power: 1,
  7017. type: "length",
  7018. base: math.unit(0.3, "meters")
  7019. },
  7020. "ballVolume": {
  7021. name: "Ball Volume",
  7022. power: 3,
  7023. type: "volume",
  7024. base: math.unit(0.01413716694, "meters^3")
  7025. },
  7026. }
  7027. },
  7028. back: {
  7029. height: math.unit(8 + 4/12, "feet"),
  7030. weight: math.unit(450, "kilograms"),
  7031. name: "Back",
  7032. image: {
  7033. source: "./media/characters/andy-renard/back.svg",
  7034. extra: 1112/1033,
  7035. bottom: 64/1176
  7036. },
  7037. extraAttributes: {
  7038. "pawSize": {
  7039. name: "Paw Size",
  7040. power: 2,
  7041. type: "area",
  7042. base: math.unit(0.45*0.3, "meters^2")
  7043. },
  7044. "handSize": {
  7045. name: "Hand Size",
  7046. power: 2,
  7047. type: "area",
  7048. base: math.unit(0.4 * 0.3, "meters^2")
  7049. },
  7050. "cockSize": {
  7051. name: "Cock Length",
  7052. power: 1,
  7053. type: "length",
  7054. base: math.unit(0.75, "meters")
  7055. },
  7056. "ballDiameter": {
  7057. name: "Ball Diameter",
  7058. power: 1,
  7059. type: "length",
  7060. base: math.unit(0.3, "meters")
  7061. },
  7062. "ballVolume": {
  7063. name: "Ball Volume",
  7064. power: 3,
  7065. type: "volume",
  7066. base: math.unit(0.01413716694, "meters^3")
  7067. },
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Tall",
  7074. height: math.unit(6 + 8/12, "feet")
  7075. },
  7076. {
  7077. name: "Very Tall",
  7078. height: math.unit(8 + 4/12, "feet")
  7079. },
  7080. {
  7081. name: "Mini Macro",
  7082. height: math.unit(15, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Giant",
  7087. height: math.unit(50, "feet")
  7088. },
  7089. {
  7090. name: "Nice",
  7091. height: math.unit(69, "feet")
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(100, "feet")
  7096. },
  7097. {
  7098. name: "Enormous",
  7099. height: math.unit(500, "feet")
  7100. },
  7101. {
  7102. name: "Gargantuan",
  7103. height: math.unit(1000, "feet")
  7104. },
  7105. {
  7106. name: "Mega",
  7107. height: math.unit(1, "mile")
  7108. },
  7109. {
  7110. name: "Giga",
  7111. height: math.unit(50, "miles")
  7112. },
  7113. {
  7114. name: "Tera",
  7115. height: math.unit(1000, "miles")
  7116. },
  7117. {
  7118. name: "Cosmic",
  7119. height: math.unit(1.5, "galaxies")
  7120. },
  7121. {
  7122. name: "God",
  7123. height: math.unit(1.5, "universes")
  7124. },
  7125. {
  7126. name: "Chief Execute God",
  7127. height: math.unit(1.5, "multiverses")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(210, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/cimmaron/front-sfw.svg",
  7140. extra: 701 / 676,
  7141. bottom: 0.046
  7142. }
  7143. },
  7144. back: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(210, "lbs"),
  7147. name: "Back",
  7148. image: {
  7149. source: "./media/characters/cimmaron/back-sfw.svg",
  7150. extra: 701 / 676,
  7151. bottom: 0.046
  7152. }
  7153. },
  7154. frontNsfw: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(210, "lbs"),
  7157. name: "Front (NSFW)",
  7158. image: {
  7159. source: "./media/characters/cimmaron/front-nsfw.svg",
  7160. extra: 701 / 676,
  7161. bottom: 0.046
  7162. }
  7163. },
  7164. backNsfw: {
  7165. height: math.unit(6, "feet"),
  7166. weight: math.unit(210, "lbs"),
  7167. name: "Back (NSFW)",
  7168. image: {
  7169. source: "./media/characters/cimmaron/back-nsfw.svg",
  7170. extra: 701 / 676,
  7171. bottom: 0.046
  7172. }
  7173. },
  7174. dick: {
  7175. height: math.unit(1.714, "feet"),
  7176. name: "Dick",
  7177. image: {
  7178. source: "./media/characters/cimmaron/dick.svg"
  7179. }
  7180. },
  7181. },
  7182. [
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(6, "feet"),
  7186. default: true
  7187. },
  7188. {
  7189. name: "Macro Mayor",
  7190. height: math.unit(350, "meters")
  7191. },
  7192. ]
  7193. ))
  7194. characterMakers.push(() => makeCharacter(
  7195. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7196. {
  7197. front: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(200, "lbs"),
  7200. name: "Front",
  7201. image: {
  7202. source: "./media/characters/akari/front.svg",
  7203. extra: 962 / 901,
  7204. bottom: 0.04
  7205. }
  7206. }
  7207. },
  7208. [
  7209. {
  7210. name: "Micro",
  7211. height: math.unit(5, "inches"),
  7212. default: true
  7213. },
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(7, "feet")
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7222. {
  7223. front: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(140, "lbs"),
  7226. name: "Front",
  7227. image: {
  7228. source: "./media/characters/cynosura/front.svg",
  7229. extra: 437/410,
  7230. bottom: 9/446
  7231. }
  7232. },
  7233. back: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(140, "lbs"),
  7236. name: "Back",
  7237. image: {
  7238. source: "./media/characters/cynosura/back.svg",
  7239. extra: 1304/1160,
  7240. bottom: 71/1375
  7241. }
  7242. },
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(4, "inches")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(5.75, "feet"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Tall",
  7256. height: math.unit(10, "feet")
  7257. },
  7258. {
  7259. name: "Big",
  7260. height: math.unit(20, "feet")
  7261. },
  7262. {
  7263. name: "Macro",
  7264. height: math.unit(50, "feet")
  7265. },
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(13 + 2/12, "feet"),
  7273. weight: math.unit(800, "kg"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/gin/front.svg",
  7277. extra: 1312/1191,
  7278. bottom: 45/1357
  7279. }
  7280. },
  7281. mouth: {
  7282. height: math.unit(2.39 * 1.8, "feet"),
  7283. name: "Mouth",
  7284. image: {
  7285. source: "./media/characters/gin/mouth.svg"
  7286. }
  7287. },
  7288. hand: {
  7289. height: math.unit(1.57 * 2.19, "feet"),
  7290. name: "Hand",
  7291. image: {
  7292. source: "./media/characters/gin/hand.svg"
  7293. }
  7294. },
  7295. foot: {
  7296. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7297. name: "Foot",
  7298. image: {
  7299. source: "./media/characters/gin/foot.svg"
  7300. }
  7301. },
  7302. sole: {
  7303. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7304. name: "Sole",
  7305. image: {
  7306. source: "./media/characters/gin/sole.svg"
  7307. }
  7308. },
  7309. },
  7310. [
  7311. {
  7312. name: "Very Small",
  7313. height: math.unit(13 + 2 / 12, "feet")
  7314. },
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(600, "miles")
  7318. },
  7319. {
  7320. name: "Regular",
  7321. height: math.unit(20, "earths"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(2.2, "solarradii")
  7327. },
  7328. {
  7329. name: "Teramacro",
  7330. height: math.unit(1.2, "galaxies")
  7331. },
  7332. {
  7333. name: "Omegamacro",
  7334. height: math.unit(200, "universes")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6 + 1 / 6, "feet"),
  7343. weight: math.unit(178, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/guy/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(6 + 1 / 6, "feet"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Large",
  7358. height: math.unit(25 + 7 / 12, "feet")
  7359. },
  7360. {
  7361. name: "Macro",
  7362. height: math.unit(60 + 9 / 12, "feet")
  7363. },
  7364. {
  7365. name: "Macro+",
  7366. height: math.unit(246, "feet")
  7367. },
  7368. {
  7369. name: "Macro++",
  7370. height: math.unit(878, "feet")
  7371. }
  7372. ]
  7373. ))
  7374. characterMakers.push(() => makeCharacter(
  7375. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7376. {
  7377. front: {
  7378. height: math.unit(9, "feet"),
  7379. weight: math.unit(800, "lbs"),
  7380. name: "Front",
  7381. image: {
  7382. source: "./media/characters/tiberius/front.svg",
  7383. extra: 2295 / 2071
  7384. }
  7385. },
  7386. back: {
  7387. height: math.unit(9, "feet"),
  7388. weight: math.unit(800, "lbs"),
  7389. name: "Back",
  7390. image: {
  7391. source: "./media/characters/tiberius/back.svg",
  7392. extra: 2373 / 2160
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(9, "feet"),
  7400. default: true
  7401. }
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7406. {
  7407. front: {
  7408. height: math.unit(6, "feet"),
  7409. weight: math.unit(600, "lbs"),
  7410. name: "Front",
  7411. image: {
  7412. source: "./media/characters/surgo/front.svg",
  7413. extra: 3591 / 2227
  7414. }
  7415. },
  7416. back: {
  7417. height: math.unit(6, "feet"),
  7418. weight: math.unit(600, "lbs"),
  7419. name: "Back",
  7420. image: {
  7421. source: "./media/characters/surgo/back.svg",
  7422. extra: 3557 / 2228
  7423. }
  7424. },
  7425. laying: {
  7426. height: math.unit(6 * 0.85, "feet"),
  7427. weight: math.unit(600, "lbs"),
  7428. name: "Laying",
  7429. image: {
  7430. source: "./media/characters/surgo/laying.svg"
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(6, "feet"),
  7438. default: true
  7439. }
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7444. {
  7445. side: {
  7446. height: math.unit(6, "feet"),
  7447. weight: math.unit(150, "lbs"),
  7448. name: "Side",
  7449. image: {
  7450. source: "./media/characters/cibus/side.svg",
  7451. extra: 800 / 400
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(6, "feet"),
  7459. default: true
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(240, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/nibbles/front.svg"
  7472. }
  7473. },
  7474. side: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(240, "lbs"),
  7477. name: "Side",
  7478. image: {
  7479. source: "./media/characters/nibbles/side.svg"
  7480. }
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "Normal",
  7486. height: math.unit(9, "feet"),
  7487. default: true
  7488. }
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7493. {
  7494. side: {
  7495. height: math.unit(5 + 1 / 6, "feet"),
  7496. weight: math.unit(130, "lbs"),
  7497. name: "Side",
  7498. image: {
  7499. source: "./media/characters/rikky/side.svg",
  7500. extra: 851 / 801
  7501. }
  7502. },
  7503. },
  7504. [
  7505. {
  7506. name: "Normal",
  7507. height: math.unit(5 + 1 / 6, "feet")
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(152, "feet"),
  7512. default: true
  7513. },
  7514. {
  7515. name: "Megamacro",
  7516. height: math.unit(7, "miles")
  7517. }
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7522. {
  7523. side: {
  7524. height: math.unit(370, "cm"),
  7525. weight: math.unit(350, "lbs"),
  7526. name: "Side",
  7527. image: {
  7528. source: "./media/characters/malfressa/side.svg"
  7529. }
  7530. },
  7531. walking: {
  7532. height: math.unit(370, "cm"),
  7533. weight: math.unit(350, "lbs"),
  7534. name: "Walking",
  7535. image: {
  7536. source: "./media/characters/malfressa/walking.svg"
  7537. }
  7538. },
  7539. feral: {
  7540. height: math.unit(2500, "cm"),
  7541. weight: math.unit(100000, "lbs"),
  7542. name: "Feral",
  7543. image: {
  7544. source: "./media/characters/malfressa/feral.svg",
  7545. extra: 2108 / 837,
  7546. bottom: 0.02
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(370, "cm")
  7554. },
  7555. {
  7556. name: "Macro",
  7557. height: math.unit(300, "meters"),
  7558. default: true
  7559. }
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(60, "kg"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/jaro/front.svg",
  7571. extra: 845/817,
  7572. bottom: 45/890
  7573. }
  7574. },
  7575. back: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(60, "kg"),
  7578. name: "Back",
  7579. image: {
  7580. source: "./media/characters/jaro/back.svg",
  7581. extra: 847/817,
  7582. bottom: 34/881
  7583. }
  7584. },
  7585. },
  7586. [
  7587. {
  7588. name: "Micro",
  7589. height: math.unit(7, "inches")
  7590. },
  7591. {
  7592. name: "Normal",
  7593. height: math.unit(5.5, "feet"),
  7594. default: true
  7595. },
  7596. {
  7597. name: "Minimacro",
  7598. height: math.unit(20, "feet")
  7599. },
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(200, "meters")
  7603. }
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(195, "lb"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/rogue/front.svg"
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(90, "feet"),
  7622. default: true
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7628. {
  7629. standing: {
  7630. height: math.unit(5 + 8 / 12, "feet"),
  7631. weight: math.unit(140, "lb"),
  7632. name: "Standing",
  7633. image: {
  7634. source: "./media/characters/piper/standing.svg",
  7635. extra: 1440/1284,
  7636. bottom: 66/1506
  7637. }
  7638. },
  7639. running: {
  7640. height: math.unit(5 + 8 / 12, "feet"),
  7641. weight: math.unit(140, "lb"),
  7642. name: "Running",
  7643. image: {
  7644. source: "./media/characters/piper/running.svg",
  7645. extra: 3948/3655,
  7646. bottom: 0/3948
  7647. }
  7648. },
  7649. sole: {
  7650. height: math.unit(0.81, "feet"),
  7651. weight: math.unit(2, "kg"),
  7652. name: "Sole",
  7653. image: {
  7654. source: "./media/characters/piper/sole.svg"
  7655. }
  7656. },
  7657. nipple: {
  7658. height: math.unit(0.25, "feet"),
  7659. weight: math.unit(1.5, "lb"),
  7660. name: "Nipple",
  7661. image: {
  7662. source: "./media/characters/piper/nipple.svg"
  7663. }
  7664. },
  7665. head: {
  7666. height: math.unit(1.1, "feet"),
  7667. name: "Head",
  7668. image: {
  7669. source: "./media/characters/piper/head.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Micro",
  7676. height: math.unit(2, "inches")
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(5 + 8 / 12, "feet")
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(250, "feet"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(7, "miles")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(220, "lb"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/gemini/front.svg"
  7702. }
  7703. },
  7704. back: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(220, "lb"),
  7707. name: "Back",
  7708. image: {
  7709. source: "./media/characters/gemini/back.svg"
  7710. }
  7711. },
  7712. kneeling: {
  7713. height: math.unit(6 / 1.5, "feet"),
  7714. weight: math.unit(220, "lb"),
  7715. name: "Kneeling",
  7716. image: {
  7717. source: "./media/characters/gemini/kneeling.svg",
  7718. bottom: 0.02
  7719. }
  7720. },
  7721. },
  7722. [
  7723. {
  7724. name: "Macro",
  7725. height: math.unit(300, "meters"),
  7726. default: true
  7727. },
  7728. {
  7729. name: "Megamacro",
  7730. height: math.unit(6900, "meters")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7736. {
  7737. anthro: {
  7738. height: math.unit(2.35, "meters"),
  7739. weight: math.unit(73, "kg"),
  7740. name: "Anthro",
  7741. image: {
  7742. source: "./media/characters/alicia/anthro.svg",
  7743. extra: 2571 / 2385,
  7744. bottom: 75 / 2648
  7745. }
  7746. },
  7747. paw: {
  7748. height: math.unit(1.32, "feet"),
  7749. name: "Paw",
  7750. image: {
  7751. source: "./media/characters/alicia/paw.svg"
  7752. }
  7753. },
  7754. feral: {
  7755. height: math.unit(1.69, "meters"),
  7756. weight: math.unit(73, "kg"),
  7757. name: "Feral",
  7758. image: {
  7759. source: "./media/characters/alicia/feral.svg",
  7760. extra: 2123 / 1715,
  7761. bottom: 222 / 2349
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Normal",
  7768. height: math.unit(2.35, "meters")
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(60, "meters"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Megamacro",
  7777. height: math.unit(10000, "kilometers")
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(7, "feet"),
  7786. weight: math.unit(250, "lbs"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/archy/front.svg"
  7790. }
  7791. }
  7792. },
  7793. [
  7794. {
  7795. name: "Micro",
  7796. height: math.unit(1, "inch")
  7797. },
  7798. {
  7799. name: "Shorty",
  7800. height: math.unit(5, "feet")
  7801. },
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(7, "feet")
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(600, "meters"),
  7809. default: true
  7810. },
  7811. {
  7812. name: "Megamacro",
  7813. height: math.unit(1, "mile")
  7814. },
  7815. ]
  7816. ))
  7817. characterMakers.push(() => makeCharacter(
  7818. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7819. {
  7820. front: {
  7821. height: math.unit(1.65, "meters"),
  7822. weight: math.unit(74, "kg"),
  7823. name: "Front",
  7824. image: {
  7825. source: "./media/characters/berri/front.svg",
  7826. extra: 857 / 837,
  7827. bottom: 18 / 877
  7828. }
  7829. },
  7830. bum: {
  7831. height: math.unit(1.46, "feet"),
  7832. name: "Bum",
  7833. image: {
  7834. source: "./media/characters/berri/bum.svg"
  7835. }
  7836. },
  7837. mouth: {
  7838. height: math.unit(0.44, "feet"),
  7839. name: "Mouth",
  7840. image: {
  7841. source: "./media/characters/berri/mouth.svg"
  7842. }
  7843. },
  7844. paw: {
  7845. height: math.unit(0.826, "feet"),
  7846. name: "Paw",
  7847. image: {
  7848. source: "./media/characters/berri/paw.svg"
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(1.65, "meters")
  7856. },
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(60, "m"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Megamacro",
  7864. height: math.unit(9.213, "km")
  7865. },
  7866. {
  7867. name: "Planet Eater",
  7868. height: math.unit(489, "megameters")
  7869. },
  7870. {
  7871. name: "Teramacro",
  7872. height: math.unit(2471635000000, "meters")
  7873. },
  7874. {
  7875. name: "Examacro",
  7876. height: math.unit(8.0624e+26, "meters")
  7877. }
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(1.72, "meters"),
  7885. weight: math.unit(68, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/lexi/front.svg"
  7889. }
  7890. }
  7891. },
  7892. [
  7893. {
  7894. name: "Very Smol",
  7895. height: math.unit(10, "mm")
  7896. },
  7897. {
  7898. name: "Micro",
  7899. height: math.unit(6.8, "cm"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(1.72, "m")
  7905. }
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(1.69, "meters"),
  7913. weight: math.unit(68, "kg"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/martin/front.svg",
  7917. extra: 596 / 581
  7918. }
  7919. }
  7920. },
  7921. [
  7922. {
  7923. name: "Micro",
  7924. height: math.unit(6.85, "cm"),
  7925. default: true
  7926. },
  7927. {
  7928. name: "Normal",
  7929. height: math.unit(1.69, "m")
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(1.69, "meters"),
  7938. weight: math.unit(68, "kg"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/juno/front.svg"
  7942. }
  7943. }
  7944. },
  7945. [
  7946. {
  7947. name: "Micro",
  7948. height: math.unit(7, "cm")
  7949. },
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(1.89, "m")
  7953. },
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(353, "meters"),
  7957. default: true
  7958. }
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(1.93, "meters"),
  7966. weight: math.unit(83, "kg"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/samantha/front.svg"
  7970. }
  7971. },
  7972. frontClothed: {
  7973. height: math.unit(1.93, "meters"),
  7974. weight: math.unit(83, "kg"),
  7975. name: "Front (Clothed)",
  7976. image: {
  7977. source: "./media/characters/samantha/front-clothed.svg"
  7978. }
  7979. },
  7980. back: {
  7981. height: math.unit(1.93, "meters"),
  7982. weight: math.unit(83, "kg"),
  7983. name: "Back",
  7984. image: {
  7985. source: "./media/characters/samantha/back.svg"
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(1.93, "m")
  7993. },
  7994. {
  7995. name: "Macro",
  7996. height: math.unit(74, "meters"),
  7997. default: true
  7998. },
  7999. {
  8000. name: "Macro+",
  8001. height: math.unit(223, "meters"),
  8002. },
  8003. {
  8004. name: "Megamacro",
  8005. height: math.unit(8381, "meters"),
  8006. },
  8007. {
  8008. name: "Megamacro+",
  8009. height: math.unit(12000, "kilometers")
  8010. },
  8011. ]
  8012. ))
  8013. characterMakers.push(() => makeCharacter(
  8014. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8015. {
  8016. front: {
  8017. height: math.unit(1.92, "meters"),
  8018. weight: math.unit(80, "kg"),
  8019. name: "Front",
  8020. image: {
  8021. source: "./media/characters/dr-clay/front.svg"
  8022. }
  8023. },
  8024. frontClothed: {
  8025. height: math.unit(1.92, "meters"),
  8026. weight: math.unit(80, "kg"),
  8027. name: "Front (Clothed)",
  8028. image: {
  8029. source: "./media/characters/dr-clay/front-clothed.svg"
  8030. }
  8031. }
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(1.92, "m")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(214, "meters"),
  8041. default: true
  8042. },
  8043. {
  8044. name: "Macro+",
  8045. height: math.unit(12.237, "meters"),
  8046. },
  8047. {
  8048. name: "Megamacro",
  8049. height: math.unit(557, "megameters"),
  8050. },
  8051. {
  8052. name: "Unimaginable",
  8053. height: math.unit(120e9, "lightyears")
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(2, "meters"),
  8062. weight: math.unit(80, "kg"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8066. }
  8067. }
  8068. },
  8069. [
  8070. {
  8071. name: "Teramacro",
  8072. height: math.unit(500000, "lightyears"),
  8073. default: true
  8074. },
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8079. {
  8080. crux: {
  8081. height: math.unit(2, "meters"),
  8082. weight: math.unit(150, "kg"),
  8083. name: "Crux",
  8084. image: {
  8085. source: "./media/characters/vemus/crux.svg",
  8086. extra: 1074/936,
  8087. bottom: 23/1097
  8088. }
  8089. },
  8090. skunkTanuki: {
  8091. height: math.unit(2, "meters"),
  8092. weight: math.unit(150, "kg"),
  8093. name: "Skunk-Tanuki",
  8094. image: {
  8095. source: "./media/characters/vemus/skunk-tanuki.svg",
  8096. extra: 926/893,
  8097. bottom: 20/946
  8098. }
  8099. },
  8100. },
  8101. [
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(4, "meters"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Big",
  8109. height: math.unit(8, "meters")
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(100, "meters")
  8114. },
  8115. {
  8116. name: "Macro+",
  8117. height: math.unit(1500, "meters")
  8118. },
  8119. {
  8120. name: "Stellar",
  8121. height: math.unit(14e8, "meters")
  8122. },
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(2, "meters"),
  8130. weight: math.unit(70, "kg"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/beherit/front.svg",
  8134. extra: 1234/1109,
  8135. bottom: 55/1289
  8136. }
  8137. }
  8138. },
  8139. [
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(6, "feet")
  8143. },
  8144. {
  8145. name: "Lorg",
  8146. height: math.unit(25, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Lorger",
  8151. height: math.unit(75, "feet")
  8152. },
  8153. {
  8154. name: "Macro",
  8155. height: math.unit(200, "meters")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(2, "meters"),
  8164. weight: math.unit(150, "kg"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/everett/front.svg",
  8168. extra: 1017/866,
  8169. bottom: 86/1103
  8170. }
  8171. },
  8172. paw: {
  8173. height: math.unit(2 / 3.6, "meters"),
  8174. name: "Paw",
  8175. image: {
  8176. source: "./media/characters/everett/paw.svg"
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(15, "feet"),
  8184. default: true
  8185. },
  8186. {
  8187. name: "Lorg",
  8188. height: math.unit(70, "feet"),
  8189. default: true
  8190. },
  8191. {
  8192. name: "Lorger",
  8193. height: math.unit(250, "feet")
  8194. },
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(500, "meters")
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(2, "meters"),
  8206. weight: math.unit(86, "kg"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/rose/front.svg",
  8210. extra: 1785/1636,
  8211. bottom: 30/1815
  8212. },
  8213. form: "liom",
  8214. default: true
  8215. },
  8216. frontSporty: {
  8217. height: math.unit(2, "meters"),
  8218. weight: math.unit(86, "kg"),
  8219. name: "Front (Sporty)",
  8220. image: {
  8221. source: "./media/characters/rose/front-sporty.svg",
  8222. extra: 350/335,
  8223. bottom: 10/360
  8224. },
  8225. form: "liom"
  8226. },
  8227. frontAlt: {
  8228. height: math.unit(1.6, "meters"),
  8229. weight: math.unit(86, "kg"),
  8230. name: "Front (Alt)",
  8231. image: {
  8232. source: "./media/characters/rose/front-alt.svg",
  8233. extra: 299/283,
  8234. bottom: 3/302
  8235. },
  8236. form: "liom"
  8237. },
  8238. plush: {
  8239. height: math.unit(2, "meters"),
  8240. weight: math.unit(86/3, "kg"),
  8241. name: "Plush",
  8242. image: {
  8243. source: "./media/characters/rose/plush.svg",
  8244. extra: 361/337,
  8245. bottom: 11/372
  8246. },
  8247. form: "plush",
  8248. default: true
  8249. },
  8250. faeStanding: {
  8251. height: math.unit(10, "cm"),
  8252. weight: math.unit(10, "grams"),
  8253. name: "Standing",
  8254. image: {
  8255. source: "./media/characters/rose/fae-standing.svg",
  8256. extra: 1189/1060,
  8257. bottom: 27/1216
  8258. },
  8259. form: "fae",
  8260. default: true
  8261. },
  8262. faeSitting: {
  8263. height: math.unit(5, "cm"),
  8264. weight: math.unit(10, "grams"),
  8265. name: "Sitting",
  8266. image: {
  8267. source: "./media/characters/rose/fae-sitting.svg",
  8268. extra: 737/577,
  8269. bottom: 356/1093
  8270. },
  8271. form: "fae"
  8272. },
  8273. faePaw: {
  8274. height: math.unit(1.35, "cm"),
  8275. name: "Paw",
  8276. image: {
  8277. source: "./media/characters/rose/fae-paw.svg"
  8278. },
  8279. form: "fae"
  8280. },
  8281. fronttrueFae: {
  8282. height: math.unit(10, "cm"),
  8283. weight: math.unit(10, "grams"),
  8284. name: "Front",
  8285. image: {
  8286. source: "./media/characters/rose/true-fae-front.svg",
  8287. extra: 839/789,
  8288. bottom: 12/851
  8289. },
  8290. form: "true-fae",
  8291. default: true
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "True Micro",
  8297. height: math.unit(9, "cm"),
  8298. form: "liom"
  8299. },
  8300. {
  8301. name: "Micro",
  8302. height: math.unit(16, "cm"),
  8303. form: "liom"
  8304. },
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(1.85, "meters"),
  8308. default: true,
  8309. form: "liom"
  8310. },
  8311. {
  8312. name: "Mini-Macro",
  8313. height: math.unit(5, "meters"),
  8314. form: "liom"
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(15, "meters"),
  8319. form: "liom"
  8320. },
  8321. {
  8322. name: "True Macro",
  8323. height: math.unit(40, "meters"),
  8324. form: "liom"
  8325. },
  8326. {
  8327. name: "City Scale",
  8328. height: math.unit(1, "km"),
  8329. form: "liom"
  8330. },
  8331. {
  8332. name: "Plushie",
  8333. height: math.unit(9, "cm"),
  8334. form: "plush",
  8335. default: true
  8336. },
  8337. {
  8338. name: "Fae",
  8339. height: math.unit(10, "cm"),
  8340. form: "fae",
  8341. default: true
  8342. },
  8343. {
  8344. name: "Fae",
  8345. height: math.unit(10, "cm"),
  8346. form: "true-fae",
  8347. default: true
  8348. },
  8349. ],
  8350. {
  8351. "liom": {
  8352. name: "Liom"
  8353. },
  8354. "plush": {
  8355. name: "Plush"
  8356. },
  8357. "fae": {
  8358. name: "Fae Fox",
  8359. default: true
  8360. },
  8361. "true-fae": {
  8362. name: "True Fae",
  8363. },
  8364. }
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(2, "meters"),
  8371. weight: math.unit(350, "lbs"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/regal/front.svg"
  8375. }
  8376. },
  8377. back: {
  8378. height: math.unit(2, "meters"),
  8379. weight: math.unit(350, "lbs"),
  8380. name: "Back",
  8381. image: {
  8382. source: "./media/characters/regal/back.svg"
  8383. }
  8384. },
  8385. },
  8386. [
  8387. {
  8388. name: "Macro",
  8389. height: math.unit(350, "feet"),
  8390. default: true
  8391. }
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8396. {
  8397. standing: {
  8398. height: math.unit(4 + 11/12, "feet"),
  8399. weight: math.unit(100, "lb"),
  8400. name: "Standing",
  8401. image: {
  8402. source: "./media/characters/opal/standing.svg",
  8403. extra: 1588/1513,
  8404. bottom: 23/1611
  8405. }
  8406. },
  8407. sitting: {
  8408. height: math.unit(2.3, "feet"),
  8409. weight: math.unit(100, "lb"),
  8410. name: "Sitting",
  8411. image: {
  8412. source: "./media/characters/opal/sitting.svg",
  8413. extra: 1031/892,
  8414. bottom: 142/1173
  8415. }
  8416. },
  8417. hand: {
  8418. height: math.unit(0.59, "feet"),
  8419. name: "Hand",
  8420. image: {
  8421. source: "./media/characters/opal/hand.svg"
  8422. }
  8423. },
  8424. foot: {
  8425. height: math.unit(0.61, "feet"),
  8426. name: "Foot",
  8427. image: {
  8428. source: "./media/characters/opal/foot.svg"
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Small",
  8435. height: math.unit(4 + 11 / 12, "feet")
  8436. },
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(20, "feet"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "Macro",
  8444. height: math.unit(120, "feet")
  8445. },
  8446. {
  8447. name: "Megamacro",
  8448. height: math.unit(80, "miles")
  8449. },
  8450. {
  8451. name: "True Size",
  8452. height: math.unit(100000, "lightyears")
  8453. },
  8454. ]
  8455. ))
  8456. characterMakers.push(() => makeCharacter(
  8457. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8458. {
  8459. front: {
  8460. height: math.unit(6, "feet"),
  8461. weight: math.unit(200, "lbs"),
  8462. name: "Front",
  8463. image: {
  8464. source: "./media/characters/vector-wuff/front.svg"
  8465. }
  8466. }
  8467. },
  8468. [
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(2.8, "meters")
  8472. },
  8473. {
  8474. name: "Macro",
  8475. height: math.unit(450, "meters"),
  8476. default: true
  8477. },
  8478. {
  8479. name: "Megamacro",
  8480. height: math.unit(15, "kilometers")
  8481. }
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8486. {
  8487. front: {
  8488. height: math.unit(6, "feet"),
  8489. weight: math.unit(256, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/dannik/front.svg"
  8493. }
  8494. }
  8495. },
  8496. [
  8497. {
  8498. name: "Macro",
  8499. height: math.unit(69.57, "meters"),
  8500. default: true
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(120, "lbs"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/azura-saharah/front.svg"
  8513. }
  8514. },
  8515. back: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(120, "lbs"),
  8518. name: "Back",
  8519. image: {
  8520. source: "./media/characters/azura-saharah/back.svg"
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(100, "feet"),
  8528. default: true
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8534. {
  8535. side: {
  8536. height: math.unit(5 + 4 / 12, "feet"),
  8537. weight: math.unit(163, "lbs"),
  8538. name: "Side",
  8539. image: {
  8540. source: "./media/characters/kennedy/side.svg"
  8541. }
  8542. }
  8543. },
  8544. [
  8545. {
  8546. name: "Standard Doggo",
  8547. height: math.unit(5 + 4 / 12, "feet")
  8548. },
  8549. {
  8550. name: "Big Doggo",
  8551. height: math.unit(25 + 3 / 12, "feet"),
  8552. default: true
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(5 + 5/12, "feet"),
  8561. weight: math.unit(100, "lbs"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/odios-de-lunar/front.svg",
  8565. extra: 1468/1323,
  8566. bottom: 22/1490
  8567. }
  8568. }
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(3, "inches")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(5.5, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(100, "feet")
  8583. },
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8588. {
  8589. back: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(220, "lbs"),
  8592. name: "Back",
  8593. image: {
  8594. source: "./media/characters/mandake/back.svg"
  8595. }
  8596. }
  8597. },
  8598. [
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(7, "feet"),
  8602. default: true
  8603. },
  8604. {
  8605. name: "Macro",
  8606. height: math.unit(78, "feet")
  8607. },
  8608. {
  8609. name: "Macro+",
  8610. height: math.unit(300, "meters")
  8611. },
  8612. {
  8613. name: "Macro++",
  8614. height: math.unit(2400, "feet")
  8615. },
  8616. {
  8617. name: "Megamacro",
  8618. height: math.unit(5167, "meters")
  8619. },
  8620. {
  8621. name: "Gigamacro",
  8622. height: math.unit(41769, "miles")
  8623. },
  8624. ]
  8625. ))
  8626. characterMakers.push(() => makeCharacter(
  8627. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8628. {
  8629. front: {
  8630. height: math.unit(6, "feet"),
  8631. weight: math.unit(120, "lbs"),
  8632. name: "Front",
  8633. image: {
  8634. source: "./media/characters/yozey/front.svg"
  8635. }
  8636. },
  8637. frontAlt: {
  8638. height: math.unit(6, "feet"),
  8639. weight: math.unit(120, "lbs"),
  8640. name: "Front (Alt)",
  8641. image: {
  8642. source: "./media/characters/yozey/front-alt.svg"
  8643. }
  8644. },
  8645. side: {
  8646. height: math.unit(6, "feet"),
  8647. weight: math.unit(120, "lbs"),
  8648. name: "Side",
  8649. image: {
  8650. source: "./media/characters/yozey/side.svg"
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Micro",
  8657. height: math.unit(3, "inches"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(6, "feet")
  8663. }
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(103, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/valeska-voss/front.svg"
  8675. }
  8676. }
  8677. },
  8678. [
  8679. {
  8680. name: "Mini-Sized Sub",
  8681. height: math.unit(3.1, "inches")
  8682. },
  8683. {
  8684. name: "Mid-Sized Sub",
  8685. height: math.unit(6.2, "inches")
  8686. },
  8687. {
  8688. name: "Full-Sized Sub",
  8689. height: math.unit(9.3, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(5 + 2 / 12, "foot"),
  8694. default: true
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(160, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/gene-zeta/front.svg",
  8707. extra: 3006 / 2826,
  8708. bottom: 182 / 3188
  8709. }
  8710. }
  8711. },
  8712. [
  8713. {
  8714. name: "Micro",
  8715. height: math.unit(6, "inches")
  8716. },
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(5 + 11 / 12, "foot"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(140, "feet")
  8725. },
  8726. {
  8727. name: "Supercharged",
  8728. height: math.unit(2500, "feet")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8734. {
  8735. front: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(350, "lbs"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/razinox/front.svg",
  8741. extra: 1686 / 1548,
  8742. bottom: 28.2 / 1868
  8743. }
  8744. },
  8745. back: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(350, "lbs"),
  8748. name: "Back",
  8749. image: {
  8750. source: "./media/characters/razinox/back.svg",
  8751. extra: 1660 / 1590,
  8752. bottom: 15 / 1665
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(10 + 8 / 12, "foot")
  8760. },
  8761. {
  8762. name: "Minimacro",
  8763. height: math.unit(15, "foot")
  8764. },
  8765. {
  8766. name: "Macro",
  8767. height: math.unit(60, "foot"),
  8768. default: true
  8769. },
  8770. {
  8771. name: "Megamacro",
  8772. height: math.unit(5, "miles")
  8773. },
  8774. {
  8775. name: "Gigamacro",
  8776. height: math.unit(6000, "miles")
  8777. },
  8778. ]
  8779. ))
  8780. characterMakers.push(() => makeCharacter(
  8781. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8782. {
  8783. front: {
  8784. height: math.unit(6, "feet"),
  8785. weight: math.unit(150, "lbs"),
  8786. name: "Front",
  8787. image: {
  8788. source: "./media/characters/cobalt/front.svg"
  8789. }
  8790. }
  8791. },
  8792. [
  8793. {
  8794. name: "Normal",
  8795. height: math.unit(8 + 1 / 12, "foot")
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(111, "foot"),
  8800. default: true
  8801. },
  8802. {
  8803. name: "Supracosmic",
  8804. height: math.unit(1e42, "feet")
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8810. {
  8811. front: {
  8812. height: math.unit(5, "inches"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/amanda/front.svg",
  8816. extra: 926/791,
  8817. bottom: 38/964
  8818. }
  8819. },
  8820. back: {
  8821. height: math.unit(5, "inches"),
  8822. name: "Back",
  8823. image: {
  8824. source: "./media/characters/amanda/back.svg",
  8825. extra: 909/805,
  8826. bottom: 43/952
  8827. }
  8828. },
  8829. },
  8830. [
  8831. {
  8832. name: "Micro",
  8833. height: math.unit(5, "inches"),
  8834. default: true
  8835. },
  8836. ]
  8837. ))
  8838. characterMakers.push(() => makeCharacter(
  8839. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8840. {
  8841. front: {
  8842. height: math.unit(2.75, "meters"),
  8843. weight: math.unit(1200, "lb"),
  8844. name: "Front",
  8845. image: {
  8846. source: "./media/characters/teal/front.svg",
  8847. extra: 2463 / 2320,
  8848. bottom: 166 / 2629
  8849. }
  8850. },
  8851. back: {
  8852. height: math.unit(2.75, "meters"),
  8853. weight: math.unit(1200, "lb"),
  8854. name: "Back",
  8855. image: {
  8856. source: "./media/characters/teal/back.svg",
  8857. extra: 2580 / 2489,
  8858. bottom: 151 / 2731
  8859. }
  8860. },
  8861. sitting: {
  8862. height: math.unit(1.9, "meters"),
  8863. weight: math.unit(1200, "lb"),
  8864. name: "Sitting",
  8865. image: {
  8866. source: "./media/characters/teal/sitting.svg",
  8867. extra: 623 / 590,
  8868. bottom: 121 / 744
  8869. }
  8870. },
  8871. standing: {
  8872. height: math.unit(2.75, "meters"),
  8873. weight: math.unit(1200, "lb"),
  8874. name: "Standing",
  8875. image: {
  8876. source: "./media/characters/teal/standing.svg",
  8877. extra: 923 / 893,
  8878. bottom: 60 / 983
  8879. }
  8880. },
  8881. stretching: {
  8882. height: math.unit(3.65, "meters"),
  8883. weight: math.unit(1200, "lb"),
  8884. name: "Stretching",
  8885. image: {
  8886. source: "./media/characters/teal/stretching.svg",
  8887. extra: 1276 / 1244,
  8888. bottom: 0 / 1276
  8889. }
  8890. },
  8891. legged: {
  8892. height: math.unit(1.3, "meters"),
  8893. weight: math.unit(100, "lb"),
  8894. name: "Legged",
  8895. image: {
  8896. source: "./media/characters/teal/legged.svg",
  8897. extra: 462 / 437,
  8898. bottom: 24 / 486
  8899. }
  8900. },
  8901. naga: {
  8902. height: math.unit(5.4, "meters"),
  8903. weight: math.unit(4000, "lb"),
  8904. name: "Naga",
  8905. image: {
  8906. source: "./media/characters/teal/naga.svg",
  8907. extra: 1902 / 1858,
  8908. bottom: 0 / 1902
  8909. }
  8910. },
  8911. hand: {
  8912. height: math.unit(0.52, "meters"),
  8913. name: "Hand",
  8914. image: {
  8915. source: "./media/characters/teal/hand.svg"
  8916. }
  8917. },
  8918. maw: {
  8919. height: math.unit(0.43, "meters"),
  8920. name: "Maw",
  8921. image: {
  8922. source: "./media/characters/teal/maw.svg"
  8923. }
  8924. },
  8925. slit: {
  8926. height: math.unit(0.25, "meters"),
  8927. name: "Slit",
  8928. image: {
  8929. source: "./media/characters/teal/slit.svg"
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(2.75, "meters"),
  8937. default: true
  8938. },
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(300, "feet")
  8942. },
  8943. {
  8944. name: "Macro+",
  8945. height: math.unit(2000, "feet")
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8951. {
  8952. frontCat: {
  8953. height: math.unit(6, "feet"),
  8954. weight: math.unit(180, "lbs"),
  8955. name: "Front (Cat)",
  8956. image: {
  8957. source: "./media/characters/ravin-amulet/front-cat.svg"
  8958. }
  8959. },
  8960. frontCatAlt: {
  8961. height: math.unit(6, "feet"),
  8962. weight: math.unit(180, "lbs"),
  8963. name: "Front (Alt, Cat)",
  8964. image: {
  8965. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8966. }
  8967. },
  8968. frontWerewolf: {
  8969. height: math.unit(6 * 1.2, "feet"),
  8970. weight: math.unit(225, "lbs"),
  8971. name: "Front (Werewolf)",
  8972. image: {
  8973. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8974. }
  8975. },
  8976. backWerewolf: {
  8977. height: math.unit(6 * 1.2, "feet"),
  8978. weight: math.unit(225, "lbs"),
  8979. name: "Back (Werewolf)",
  8980. image: {
  8981. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8982. }
  8983. },
  8984. },
  8985. [
  8986. {
  8987. name: "Nano",
  8988. height: math.unit(1, "micrometer")
  8989. },
  8990. {
  8991. name: "Micro",
  8992. height: math.unit(1, "inch")
  8993. },
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(6, "feet"),
  8997. default: true
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(60, "feet")
  9002. }
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(6, "feet"),
  9010. weight: math.unit(165, "lbs"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/fluoresce/front.svg"
  9014. }
  9015. }
  9016. },
  9017. [
  9018. {
  9019. name: "Micro",
  9020. height: math.unit(6, "cm")
  9021. },
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(5 + 7 / 12, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(56, "feet")
  9030. },
  9031. {
  9032. name: "Megamacro",
  9033. height: math.unit(1.9, "miles")
  9034. },
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(9 + 6 / 12, "feet"),
  9042. weight: math.unit(523, "lbs"),
  9043. name: "Side",
  9044. image: {
  9045. source: "./media/characters/aurora/side.svg",
  9046. extra: 474/393,
  9047. bottom: 5/479
  9048. }
  9049. }
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(9 + 6 / 12, "feet")
  9055. },
  9056. {
  9057. name: "Macro",
  9058. height: math.unit(96, "feet"),
  9059. default: true
  9060. },
  9061. {
  9062. name: "Macro+",
  9063. height: math.unit(243, "feet")
  9064. },
  9065. ]
  9066. ))
  9067. characterMakers.push(() => makeCharacter(
  9068. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9069. {
  9070. front: {
  9071. height: math.unit(194, "cm"),
  9072. weight: math.unit(90, "kg"),
  9073. name: "Front",
  9074. image: {
  9075. source: "./media/characters/ranek/front.svg",
  9076. extra: 1862/1791,
  9077. bottom: 80/1942
  9078. }
  9079. },
  9080. back: {
  9081. height: math.unit(194, "cm"),
  9082. weight: math.unit(90, "kg"),
  9083. name: "Back",
  9084. image: {
  9085. source: "./media/characters/ranek/back.svg",
  9086. extra: 1853/1787,
  9087. bottom: 74/1927
  9088. }
  9089. },
  9090. feral: {
  9091. height: math.unit(30, "cm"),
  9092. weight: math.unit(1.6, "lbs"),
  9093. name: "Feral",
  9094. image: {
  9095. source: "./media/characters/ranek/feral.svg",
  9096. extra: 990/631,
  9097. bottom: 29/1019
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(194, "cm"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Macro",
  9109. height: math.unit(100, "meters")
  9110. },
  9111. ]
  9112. ))
  9113. characterMakers.push(() => makeCharacter(
  9114. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9115. {
  9116. front: {
  9117. height: math.unit(5 + 6 / 12, "feet"),
  9118. weight: math.unit(153, "lbs"),
  9119. name: "Front",
  9120. image: {
  9121. source: "./media/characters/andrew-cooper/front.svg"
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Nano",
  9128. height: math.unit(1, "mm")
  9129. },
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(2, "inches")
  9133. },
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(5 + 6 / 12, "feet"),
  9137. default: true
  9138. }
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(180, "lbs"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/akane-sato/front.svg",
  9150. extra: 1219 / 1140
  9151. }
  9152. },
  9153. back: {
  9154. height: math.unit(6, "feet"),
  9155. weight: math.unit(180, "lbs"),
  9156. name: "Back",
  9157. image: {
  9158. source: "./media/characters/akane-sato/back.svg",
  9159. extra: 1219 / 1170
  9160. }
  9161. },
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(2.5, "meters")
  9167. },
  9168. {
  9169. name: "Macro",
  9170. height: math.unit(250, "meters"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Megamacro",
  9175. height: math.unit(25, "km")
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(6, "feet"),
  9184. weight: math.unit(65, "kg"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/rook/front.svg",
  9188. extra: 960 / 950
  9189. }
  9190. }
  9191. },
  9192. [
  9193. {
  9194. name: "Normal",
  9195. height: math.unit(8.8, "feet")
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(88, "feet"),
  9200. default: true
  9201. },
  9202. {
  9203. name: "Megamacro",
  9204. height: math.unit(8, "miles")
  9205. },
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(12 + 2 / 12, "feet"),
  9213. weight: math.unit(808, "lbs"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/prodigy/front.svg"
  9217. }
  9218. }
  9219. },
  9220. [
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(12 + 2 / 12, "feet"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Macro",
  9228. height: math.unit(143, "feet")
  9229. },
  9230. {
  9231. name: "Macro+",
  9232. height: math.unit(400, "feet")
  9233. },
  9234. ]
  9235. ))
  9236. characterMakers.push(() => makeCharacter(
  9237. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9238. {
  9239. front: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(225, "lbs"),
  9242. name: "Front",
  9243. image: {
  9244. source: "./media/characters/daniel/front.svg"
  9245. }
  9246. },
  9247. leaning: {
  9248. height: math.unit(6, "feet"),
  9249. weight: math.unit(225, "lbs"),
  9250. name: "Leaning",
  9251. image: {
  9252. source: "./media/characters/daniel/leaning.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Macro",
  9259. height: math.unit(1000, "feet"),
  9260. default: true
  9261. },
  9262. ]
  9263. ))
  9264. characterMakers.push(() => makeCharacter(
  9265. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9266. {
  9267. front: {
  9268. height: math.unit(6, "feet"),
  9269. weight: math.unit(88, "lbs"),
  9270. name: "Front",
  9271. image: {
  9272. source: "./media/characters/chiros/front.svg",
  9273. extra: 306 / 226
  9274. }
  9275. },
  9276. side: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(88, "lbs"),
  9279. name: "Side",
  9280. image: {
  9281. source: "./media/characters/chiros/side.svg",
  9282. extra: 306 / 226
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(6, "cm"),
  9290. default: true
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9296. {
  9297. front: {
  9298. height: math.unit(6, "feet"),
  9299. weight: math.unit(100, "lbs"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/selka/front.svg",
  9303. extra: 947 / 887
  9304. }
  9305. }
  9306. },
  9307. [
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(5, "cm"),
  9311. default: true
  9312. },
  9313. ]
  9314. ))
  9315. characterMakers.push(() => makeCharacter(
  9316. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9317. {
  9318. front: {
  9319. height: math.unit(8 + 3 / 12, "feet"),
  9320. weight: math.unit(424, "lbs"),
  9321. name: "Front",
  9322. image: {
  9323. source: "./media/characters/verin/front.svg",
  9324. extra: 1845 / 1550
  9325. }
  9326. },
  9327. frontArmored: {
  9328. height: math.unit(8 + 3 / 12, "feet"),
  9329. weight: math.unit(424, "lbs"),
  9330. name: "Front (Armored)",
  9331. image: {
  9332. source: "./media/characters/verin/front-armor.svg",
  9333. extra: 1845 / 1550,
  9334. bottom: 0.01
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(8 + 3 / 12, "feet"),
  9339. weight: math.unit(424, "lbs"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/verin/back.svg",
  9343. bottom: 0.1,
  9344. extra: 1
  9345. }
  9346. },
  9347. foot: {
  9348. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9349. name: "Foot",
  9350. image: {
  9351. source: "./media/characters/verin/foot.svg"
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Normal",
  9358. height: math.unit(8 + 3 / 12, "feet")
  9359. },
  9360. {
  9361. name: "Minimacro",
  9362. height: math.unit(21, "feet"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Macro",
  9367. height: math.unit(626, "feet")
  9368. },
  9369. ]
  9370. ))
  9371. characterMakers.push(() => makeCharacter(
  9372. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9373. {
  9374. front: {
  9375. height: math.unit(2.718, "meters"),
  9376. weight: math.unit(150, "lbs"),
  9377. name: "Front",
  9378. image: {
  9379. source: "./media/characters/sovrim-terraquian/front.svg",
  9380. extra: 1752/1689,
  9381. bottom: 36/1788
  9382. }
  9383. },
  9384. back: {
  9385. height: math.unit(2.718, "meters"),
  9386. weight: math.unit(150, "lbs"),
  9387. name: "Back",
  9388. image: {
  9389. source: "./media/characters/sovrim-terraquian/back.svg",
  9390. extra: 1698/1657,
  9391. bottom: 58/1756
  9392. }
  9393. },
  9394. tongue: {
  9395. height: math.unit(2.865, "feet"),
  9396. name: "Tongue",
  9397. image: {
  9398. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9399. }
  9400. },
  9401. hand: {
  9402. height: math.unit(1.61, "feet"),
  9403. name: "Hand",
  9404. image: {
  9405. source: "./media/characters/sovrim-terraquian/hand.svg"
  9406. }
  9407. },
  9408. foot: {
  9409. height: math.unit(1.05, "feet"),
  9410. name: "Foot",
  9411. image: {
  9412. source: "./media/characters/sovrim-terraquian/foot.svg"
  9413. }
  9414. },
  9415. footAlt: {
  9416. height: math.unit(0.88, "feet"),
  9417. name: "Foot (Alt)",
  9418. image: {
  9419. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Micro",
  9426. height: math.unit(2, "inches")
  9427. },
  9428. {
  9429. name: "Small",
  9430. height: math.unit(1, "meter")
  9431. },
  9432. {
  9433. name: "Normal",
  9434. height: math.unit(Math.E, "meters"),
  9435. default: true
  9436. },
  9437. {
  9438. name: "Macro",
  9439. height: math.unit(20, "meters")
  9440. },
  9441. {
  9442. name: "Macro+",
  9443. height: math.unit(400, "meters")
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9449. {
  9450. front: {
  9451. height: math.unit(7, "feet"),
  9452. weight: math.unit(489, "lbs"),
  9453. name: "Front",
  9454. image: {
  9455. source: "./media/characters/reece-silvermane/front.svg",
  9456. bottom: 0.02,
  9457. extra: 1
  9458. }
  9459. },
  9460. },
  9461. [
  9462. {
  9463. name: "Macro",
  9464. height: math.unit(1.5, "miles"),
  9465. default: true
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(6, "feet"),
  9474. weight: math.unit(78, "kg"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/kane/front.svg",
  9478. extra: 978 / 899
  9479. }
  9480. },
  9481. back: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(78, "kg"),
  9484. name: "Back",
  9485. image: {
  9486. source: "./media/characters/kane/back.svg",
  9487. extra: 1966/1800,
  9488. bottom: 0/1966
  9489. }
  9490. },
  9491. head: {
  9492. height: math.unit(1.4, "feet"),
  9493. name: "Head",
  9494. image: {
  9495. source: "./media/characters/kane/head.svg"
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(2.1, "m"),
  9503. },
  9504. {
  9505. name: "Macro",
  9506. height: math.unit(1, "km"),
  9507. default: true
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9513. {
  9514. frontSfw: {
  9515. name: "Front (SFW)",
  9516. height: math.unit(6 + 3/12, "feet"),
  9517. weight: math.unit(200, "kg"),
  9518. image: {
  9519. source: "./media/characters/tegon/front-sfw.svg",
  9520. extra: 1105/1087,
  9521. bottom: 86/1191
  9522. }
  9523. },
  9524. backSfw: {
  9525. name: "Back (SFW)",
  9526. height: math.unit(6 + 3/12, "feet"),
  9527. weight: math.unit(200, "kg"),
  9528. image: {
  9529. source: "./media/characters/tegon/back-sfw.svg",
  9530. extra: 1107/1087,
  9531. bottom: 21/1128
  9532. }
  9533. },
  9534. frontNsfw: {
  9535. name: "Front (NSFW)",
  9536. height: math.unit(6 + 3/12, "feet"),
  9537. weight: math.unit(200, "kg"),
  9538. image: {
  9539. source: "./media/characters/tegon/front-nsfw.svg",
  9540. extra: 1105/1087,
  9541. bottom: 86/1191
  9542. }
  9543. },
  9544. maw: {
  9545. height: math.unit(1.23, "feet"),
  9546. name: "Maw",
  9547. image: {
  9548. source: "./media/characters/tegon/maw.svg"
  9549. }
  9550. },
  9551. dick: {
  9552. height: math.unit(1.18, "feet"),
  9553. name: "Dick",
  9554. image: {
  9555. source: "./media/characters/tegon/dick.svg"
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(1, "inch")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(6 + 3 / 12, "feet"),
  9567. default: true
  9568. },
  9569. {
  9570. name: "Macro",
  9571. height: math.unit(300, "feet")
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(69, "miles")
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9581. {
  9582. side: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(2304, "lbs"),
  9585. name: "Side",
  9586. image: {
  9587. source: "./media/characters/arcturax/side.svg",
  9588. extra: 790 / 376,
  9589. bottom: 0.01
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(2, "inch")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(6, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(39, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(7, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(50, "lbs"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/sentri/front.svg",
  9622. extra: 1750 / 1570,
  9623. bottom: 0.025
  9624. }
  9625. },
  9626. frontAlt: {
  9627. height: math.unit(6, "feet"),
  9628. weight: math.unit(50, "lbs"),
  9629. name: "Front (Alt)",
  9630. image: {
  9631. source: "./media/characters/sentri/front-alt.svg",
  9632. extra: 1750 / 1570,
  9633. bottom: 0.025
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(15, "feet"),
  9641. default: true
  9642. },
  9643. {
  9644. name: "Macro",
  9645. height: math.unit(2500, "feet")
  9646. }
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(5 + 8 / 12, "feet"),
  9654. weight: math.unit(130, "lbs"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/corvin/front.svg",
  9658. extra: 1803 / 1629
  9659. }
  9660. },
  9661. frontShirt: {
  9662. height: math.unit(5 + 8 / 12, "feet"),
  9663. weight: math.unit(130, "lbs"),
  9664. name: "Front (Shirt)",
  9665. image: {
  9666. source: "./media/characters/corvin/front-shirt.svg",
  9667. extra: 1803 / 1629
  9668. }
  9669. },
  9670. frontPoncho: {
  9671. height: math.unit(5 + 8 / 12, "feet"),
  9672. weight: math.unit(130, "lbs"),
  9673. name: "Front (Poncho)",
  9674. image: {
  9675. source: "./media/characters/corvin/front-poncho.svg",
  9676. extra: 1803 / 1629
  9677. }
  9678. },
  9679. side: {
  9680. height: math.unit(5 + 8 / 12, "feet"),
  9681. weight: math.unit(130, "lbs"),
  9682. name: "Side",
  9683. image: {
  9684. source: "./media/characters/corvin/side.svg",
  9685. extra: 1012 / 945
  9686. }
  9687. },
  9688. back: {
  9689. height: math.unit(5 + 8 / 12, "feet"),
  9690. weight: math.unit(130, "lbs"),
  9691. name: "Back",
  9692. image: {
  9693. source: "./media/characters/corvin/back.svg",
  9694. extra: 1803 / 1629
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Micro",
  9701. height: math.unit(3, "inches")
  9702. },
  9703. {
  9704. name: "Normal",
  9705. height: math.unit(5 + 8 / 12, "feet")
  9706. },
  9707. {
  9708. name: "Macro",
  9709. height: math.unit(300, "feet"),
  9710. default: true
  9711. },
  9712. {
  9713. name: "Megamacro",
  9714. height: math.unit(500, "miles")
  9715. }
  9716. ]
  9717. ))
  9718. characterMakers.push(() => makeCharacter(
  9719. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9720. {
  9721. front: {
  9722. height: math.unit(6, "feet"),
  9723. weight: math.unit(135, "lbs"),
  9724. name: "Front",
  9725. image: {
  9726. source: "./media/characters/q/front.svg",
  9727. extra: 854 / 752,
  9728. bottom: 0.005
  9729. }
  9730. },
  9731. back: {
  9732. height: math.unit(6, "feet"),
  9733. weight: math.unit(130, "lbs"),
  9734. name: "Back",
  9735. image: {
  9736. source: "./media/characters/q/back.svg",
  9737. extra: 854 / 752
  9738. }
  9739. },
  9740. },
  9741. [
  9742. {
  9743. name: "Macro",
  9744. height: math.unit(90, "feet"),
  9745. default: true
  9746. },
  9747. {
  9748. name: "Extra Macro",
  9749. height: math.unit(300, "feet"),
  9750. },
  9751. {
  9752. name: "BIG WALF",
  9753. height: math.unit(750, "feet"),
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(3, "feet"),
  9762. weight: math.unit(28, "lbs"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/citrine/front.svg"
  9766. }
  9767. }
  9768. },
  9769. [
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(3, "feet"),
  9773. default: true
  9774. }
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9779. {
  9780. front: {
  9781. height: math.unit(14, "feet"),
  9782. weight: math.unit(1450, "kg"),
  9783. preyCapacity: math.unit(15, "people"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/aura-starwind/front.svg",
  9787. extra: 1440/1327,
  9788. bottom: 11/1451
  9789. }
  9790. },
  9791. side: {
  9792. height: math.unit(14, "feet"),
  9793. weight: math.unit(1450, "kg"),
  9794. preyCapacity: math.unit(15, "people"),
  9795. name: "Side",
  9796. image: {
  9797. source: "./media/characters/aura-starwind/side.svg",
  9798. extra: 1654 / 1497
  9799. }
  9800. },
  9801. taur: {
  9802. height: math.unit(18, "feet"),
  9803. weight: math.unit(5500, "kg"),
  9804. preyCapacity: math.unit(50, "people"),
  9805. name: "Taur",
  9806. image: {
  9807. source: "./media/characters/aura-starwind/taur.svg",
  9808. extra: 1760 / 1650
  9809. }
  9810. },
  9811. feral: {
  9812. height: math.unit(46, "feet"),
  9813. weight: math.unit(25000, "kg"),
  9814. preyCapacity: math.unit(120, "people"),
  9815. name: "Feral",
  9816. image: {
  9817. source: "./media/characters/aura-starwind/feral.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(14, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(50, "meters")
  9830. },
  9831. {
  9832. name: "Megamacro",
  9833. height: math.unit(5000, "meters")
  9834. },
  9835. {
  9836. name: "Gigamacro",
  9837. height: math.unit(100000, "kilometers")
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(2 + 7 / 12, "feet"),
  9846. weight: math.unit(32, "lbs"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/rivet/front.svg",
  9850. extra: 1716 / 1658,
  9851. bottom: 0.03
  9852. }
  9853. },
  9854. foot: {
  9855. height: math.unit(0.551, "feet"),
  9856. name: "Rivet's Foot",
  9857. image: {
  9858. source: "./media/characters/rivet/foot.svg"
  9859. },
  9860. rename: true
  9861. }
  9862. },
  9863. [
  9864. {
  9865. name: "Micro",
  9866. height: math.unit(1.5, "inches"),
  9867. },
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(2 + 7 / 12, "feet"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(85, "feet")
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(2.2, "km")
  9880. }
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(5 + 9 / 12, "feet"),
  9888. weight: math.unit(150, "lbs"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/coffee/front.svg",
  9892. extra: 946/880,
  9893. bottom: 66/1012
  9894. }
  9895. },
  9896. foot: {
  9897. height: math.unit(1.29, "feet"),
  9898. name: "Foot",
  9899. image: {
  9900. source: "./media/characters/coffee/foot.svg"
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Micro",
  9907. height: math.unit(2, "inches"),
  9908. },
  9909. {
  9910. name: "Normal",
  9911. height: math.unit(5 + 9 / 12, "feet"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Macro",
  9916. height: math.unit(800, "feet")
  9917. },
  9918. {
  9919. name: "Megamacro",
  9920. height: math.unit(25, "miles")
  9921. }
  9922. ]
  9923. ))
  9924. characterMakers.push(() => makeCharacter(
  9925. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9926. {
  9927. front: {
  9928. height: math.unit(6, "feet"),
  9929. weight: math.unit(200, "lbs"),
  9930. name: "Front",
  9931. image: {
  9932. source: "./media/characters/chari-gal/front.svg",
  9933. extra: 735/649,
  9934. bottom: 55/790
  9935. },
  9936. form: "normal",
  9937. default: true
  9938. },
  9939. back: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(200, "lb"),
  9942. name: "Back",
  9943. image: {
  9944. source: "./media/characters/chari-gal/back.svg",
  9945. extra: 762/666,
  9946. bottom: 31/793
  9947. },
  9948. form: "normal"
  9949. },
  9950. mouth: {
  9951. height: math.unit(1.35, "feet"),
  9952. name: "Mouth",
  9953. image: {
  9954. source: "./media/characters/chari-gal/mouth.svg"
  9955. },
  9956. form: "normal"
  9957. },
  9958. gigantamax: {
  9959. height: math.unit(6 * 16, "feet"),
  9960. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9961. name: "Gigantamax",
  9962. image: {
  9963. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9964. extra: 1507/1149,
  9965. bottom: 254/1761
  9966. },
  9967. form: "gigantamax",
  9968. default: true
  9969. },
  9970. },
  9971. [
  9972. {
  9973. name: "Normal",
  9974. height: math.unit(5 + 7 / 12, "feet"),
  9975. form: "normal",
  9976. },
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(200, "feet"),
  9980. default: true,
  9981. form: "normal"
  9982. },
  9983. {
  9984. name: "Normal",
  9985. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9986. form: "gigantamax",
  9987. },
  9988. {
  9989. name: "Macro",
  9990. height: math.unit(16 * 200, "feet"),
  9991. default: true,
  9992. form: "gigantamax"
  9993. },
  9994. ],
  9995. {
  9996. "normal": {
  9997. name: "Normal",
  9998. default: true
  9999. },
  10000. "gigantamax": {
  10001. name: "Gigantamax",
  10002. },
  10003. }
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(150, "lbs"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/nova/front.svg",
  10014. extra: 5000 / 4722,
  10015. bottom: 0.02
  10016. }
  10017. }
  10018. },
  10019. [
  10020. {
  10021. name: "Micro-",
  10022. height: math.unit(0.8, "inches")
  10023. },
  10024. {
  10025. name: "Micro",
  10026. height: math.unit(2, "inches"),
  10027. default: true
  10028. },
  10029. ]
  10030. ))
  10031. characterMakers.push(() => makeCharacter(
  10032. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10033. {
  10034. koboldFront: {
  10035. height: math.unit(3 + 1 / 12, "feet"),
  10036. weight: math.unit(21.7, "lbs"),
  10037. name: "Front",
  10038. image: {
  10039. source: "./media/characters/argent/kobold-front.svg",
  10040. extra: 1471 / 1331,
  10041. bottom: 100.8 / 1575.5
  10042. },
  10043. form: "kobold",
  10044. default: true
  10045. },
  10046. dragonFront: {
  10047. height: math.unit(75, "inches"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/argent/dragon-front.svg",
  10051. extra: 1389/1248,
  10052. bottom: 54/1443
  10053. },
  10054. form: "dragon",
  10055. },
  10056. dragonBack: {
  10057. height: math.unit(75, "inches"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/argent/dragon-back.svg",
  10061. extra: 1399/1271,
  10062. bottom: 23/1422
  10063. },
  10064. form: "dragon",
  10065. },
  10066. dragonDressed: {
  10067. height: math.unit(75, "inches"),
  10068. name: "Dressed",
  10069. image: {
  10070. source: "./media/characters/argent/dragon-dressed.svg",
  10071. extra: 1350/1215,
  10072. bottom: 26/1376
  10073. },
  10074. form: "dragon"
  10075. },
  10076. dragonHead: {
  10077. height: math.unit(23.5, "inches"),
  10078. name: "Head",
  10079. image: {
  10080. source: "./media/characters/argent/dragon-head.svg"
  10081. },
  10082. form: "dragon",
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Micro",
  10088. height: math.unit(2, "inches"),
  10089. form: "kobold",
  10090. },
  10091. {
  10092. name: "Normal",
  10093. height: math.unit(3 + 1 / 12, "feet"),
  10094. form: "kobold",
  10095. default: true
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(120, "feet"),
  10100. form: "kobold",
  10101. },
  10102. {
  10103. name: "Speck",
  10104. height: math.unit(1, "mm"),
  10105. form: "dragon",
  10106. },
  10107. {
  10108. name: "Tiny",
  10109. height: math.unit(1, "cm"),
  10110. form: "dragon",
  10111. },
  10112. {
  10113. name: "Micro",
  10114. height: math.unit(5, "cm"),
  10115. form: "dragon",
  10116. },
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(75, "inches"),
  10120. form: "dragon",
  10121. default: true
  10122. },
  10123. {
  10124. name: "Extra Tall",
  10125. height: math.unit(9, "feet"),
  10126. form: "dragon",
  10127. },
  10128. {
  10129. name: "Inconvenient",
  10130. height: math.unit(5, "meters"),
  10131. form: "dragon",
  10132. },
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(70, "meters"),
  10136. form: "dragon",
  10137. },
  10138. {
  10139. name: "Macro+",
  10140. height: math.unit(250, "meters"),
  10141. form: "dragon",
  10142. },
  10143. {
  10144. name: "Megamacro",
  10145. height: math.unit(20, "km"),
  10146. form: "dragon",
  10147. },
  10148. {
  10149. name: "Mountainous",
  10150. height: math.unit(100, "km"),
  10151. form: "dragon",
  10152. },
  10153. {
  10154. name: "Continental",
  10155. height: math.unit(2, "megameters"),
  10156. form: "dragon",
  10157. },
  10158. {
  10159. name: "Too Big",
  10160. height: math.unit(900, "megameters"),
  10161. form: "dragon",
  10162. },
  10163. ],
  10164. {
  10165. "kobold": {
  10166. name: "Kobold",
  10167. default: true
  10168. },
  10169. "dragon": {
  10170. name: "Dragon",
  10171. },
  10172. }
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10176. {
  10177. lamp: {
  10178. height: math.unit(7 * 1559 / 989, "feet"),
  10179. name: "Magic Lamp",
  10180. image: {
  10181. source: "./media/characters/mira-al-cul/lamp.svg",
  10182. extra: 1617 / 1559
  10183. }
  10184. },
  10185. front: {
  10186. height: math.unit(7, "feet"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/mira-al-cul/front.svg",
  10190. extra: 1044 / 990
  10191. }
  10192. },
  10193. },
  10194. [
  10195. {
  10196. name: "Heavily Restricted",
  10197. height: math.unit(7 * 1559 / 989, "feet")
  10198. },
  10199. {
  10200. name: "Freshly Freed",
  10201. height: math.unit(50 * 1559 / 989, "feet")
  10202. },
  10203. {
  10204. name: "World Encompassing",
  10205. height: math.unit(10000 * 1559 / 989, "miles")
  10206. },
  10207. {
  10208. name: "Galactic",
  10209. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10210. },
  10211. {
  10212. name: "Palmed Universe",
  10213. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10214. default: true
  10215. },
  10216. {
  10217. name: "Multiversal Matriarch",
  10218. height: math.unit(8.87e10, "yottameters")
  10219. },
  10220. {
  10221. name: "Void Mother",
  10222. height: math.unit(3.14e110, "yottaparsecs")
  10223. },
  10224. {
  10225. name: "Toying with Transcendence",
  10226. height: math.unit(1e307, "meters")
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10232. {
  10233. front: {
  10234. height: math.unit(17 + 1 / 12, "feet"),
  10235. weight: math.unit(476.2 * 5, "lbs"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/kuro-shi-uchū/front.svg",
  10239. extra: 2329 / 1835,
  10240. bottom: 0.02
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(2, "inches")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(12, "meters")
  10252. },
  10253. {
  10254. name: "Planetary",
  10255. height: math.unit(0.00929, "AU"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Universal",
  10260. height: math.unit(20, "gigaparsecs")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(5 + 2 / 12, "feet"),
  10269. weight: math.unit(120, "lbs"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/katherine/front.svg",
  10273. extra: 2075 / 1969
  10274. }
  10275. },
  10276. dress: {
  10277. height: math.unit(5 + 2 / 12, "feet"),
  10278. weight: math.unit(120, "lbs"),
  10279. name: "Dress",
  10280. image: {
  10281. source: "./media/characters/katherine/dress.svg",
  10282. extra: 2258 / 2064
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Micro",
  10289. height: math.unit(1, "inches"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(5 + 2 / 12, "feet")
  10295. },
  10296. {
  10297. name: "Macro",
  10298. height: math.unit(100, "meters")
  10299. },
  10300. {
  10301. name: "Megamacro",
  10302. height: math.unit(80, "miles")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(7 + 8 / 12, "feet"),
  10311. weight: math.unit(250, "lbs"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/yevis/front.svg",
  10315. extra: 1938 / 1755
  10316. }
  10317. }
  10318. },
  10319. [
  10320. {
  10321. name: "Mortal",
  10322. height: math.unit(7 + 8 / 12, "feet")
  10323. },
  10324. {
  10325. name: "Battle",
  10326. height: math.unit(25 + 11 / 12, "feet")
  10327. },
  10328. {
  10329. name: "Wrath",
  10330. height: math.unit(1654 + 11 / 12, "feet")
  10331. },
  10332. {
  10333. name: "Planet Destroyer",
  10334. height: math.unit(12000, "miles")
  10335. },
  10336. {
  10337. name: "Galaxy Conqueror",
  10338. height: math.unit(1.45, "zettameters"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Universal War",
  10343. height: math.unit(184, "gigaparsecs")
  10344. },
  10345. {
  10346. name: "Eternity War",
  10347. height: math.unit(1.98e55, "yottaparsecs")
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10353. {
  10354. front: {
  10355. height: math.unit(5 + 8 / 12, "feet"),
  10356. weight: math.unit(63, "kg"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/xavier/front.svg",
  10360. extra: 944 / 883
  10361. }
  10362. },
  10363. frontStretch: {
  10364. height: math.unit(5 + 8 / 12, "feet"),
  10365. weight: math.unit(63, "kg"),
  10366. name: "Stretching",
  10367. image: {
  10368. source: "./media/characters/xavier/front-stretch.svg",
  10369. extra: 962 / 820
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(5 + 8 / 12, "feet")
  10377. },
  10378. {
  10379. name: "Macro",
  10380. height: math.unit(100, "meters"),
  10381. default: true
  10382. },
  10383. {
  10384. name: "McLargeHuge",
  10385. height: math.unit(10, "miles")
  10386. },
  10387. ]
  10388. ))
  10389. characterMakers.push(() => makeCharacter(
  10390. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10391. {
  10392. front: {
  10393. height: math.unit(5 + 5 / 12, "feet"),
  10394. weight: math.unit(150, "lb"),
  10395. name: "Front",
  10396. image: {
  10397. source: "./media/characters/joshii/front.svg",
  10398. extra: 765 / 653,
  10399. bottom: 51 / 816
  10400. }
  10401. },
  10402. foot: {
  10403. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10404. name: "Foot",
  10405. image: {
  10406. source: "./media/characters/joshii/foot.svg"
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Micro",
  10413. height: math.unit(2, "inches")
  10414. },
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(5 + 5 / 12, "feet")
  10418. },
  10419. {
  10420. name: "Macro",
  10421. height: math.unit(785, "feet"),
  10422. default: true
  10423. },
  10424. {
  10425. name: "Megamacro",
  10426. height: math.unit(24.5, "miles")
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(150, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/goddess-elizabeth/front.svg",
  10439. extra: 1800 / 1525,
  10440. bottom: 0.005
  10441. }
  10442. },
  10443. foot: {
  10444. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10445. name: "Foot",
  10446. image: {
  10447. source: "./media/characters/goddess-elizabeth/foot.svg"
  10448. }
  10449. },
  10450. mouth: {
  10451. height: math.unit(6, "feet"),
  10452. name: "Mouth",
  10453. image: {
  10454. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10455. }
  10456. },
  10457. },
  10458. [
  10459. {
  10460. name: "Micro",
  10461. height: math.unit(12, "feet")
  10462. },
  10463. {
  10464. name: "Normal",
  10465. height: math.unit(80, "miles"),
  10466. default: true
  10467. },
  10468. {
  10469. name: "Macro",
  10470. height: math.unit(15000, "parsecs")
  10471. },
  10472. ]
  10473. ))
  10474. characterMakers.push(() => makeCharacter(
  10475. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10476. {
  10477. front: {
  10478. height: math.unit(5 + 9 / 12, "feet"),
  10479. weight: math.unit(144, "lb"),
  10480. name: "Front",
  10481. image: {
  10482. source: "./media/characters/kara/front.svg"
  10483. }
  10484. },
  10485. feet: {
  10486. height: math.unit(6 / 6.765, "feet"),
  10487. name: "Kara's Feet",
  10488. rename: true,
  10489. image: {
  10490. source: "./media/characters/kara/feet.svg"
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(5 + 9 / 12, "feet")
  10498. },
  10499. {
  10500. name: "Macro",
  10501. height: math.unit(174, "feet"),
  10502. default: true
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(18, "feet"),
  10511. weight: math.unit(4050, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/tyrone/front.svg",
  10515. extra: 2405 / 2270,
  10516. bottom: 182 / 2587
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(18, "feet"),
  10524. default: true
  10525. },
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(300, "feet")
  10529. },
  10530. {
  10531. name: "Megamacro",
  10532. height: math.unit(15, "km")
  10533. },
  10534. {
  10535. name: "Gigamacro",
  10536. height: math.unit(500, "km")
  10537. },
  10538. {
  10539. name: "Teramacro",
  10540. height: math.unit(0.5, "gigameters")
  10541. },
  10542. {
  10543. name: "Omnimacro",
  10544. height: math.unit(1e252, "yottauniverse")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(7 + 8 / 12, "feet"),
  10553. weight: math.unit(120, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/danny/front.svg",
  10557. extra: 1490 / 1350
  10558. }
  10559. },
  10560. back: {
  10561. height: math.unit(7 + 8 / 12, "feet"),
  10562. weight: math.unit(120, "lb"),
  10563. name: "Back",
  10564. image: {
  10565. source: "./media/characters/danny/back.svg",
  10566. extra: 1490 / 1350
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(7 + 8 / 12, "feet"),
  10574. default: true
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(3.5, "inches"),
  10583. weight: math.unit(19, "grams"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/mallow/front.svg",
  10587. extra: 471 / 431
  10588. }
  10589. },
  10590. back: {
  10591. height: math.unit(3.5, "inches"),
  10592. weight: math.unit(19, "grams"),
  10593. name: "Back",
  10594. image: {
  10595. source: "./media/characters/mallow/back.svg",
  10596. extra: 471 / 431
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(3.5, "inches"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(9, "feet"),
  10613. weight: math.unit(230, "kg"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/starry-aqua/front.svg"
  10617. }
  10618. },
  10619. back: {
  10620. height: math.unit(9, "feet"),
  10621. weight: math.unit(230, "kg"),
  10622. name: "Back",
  10623. image: {
  10624. source: "./media/characters/starry-aqua/back.svg"
  10625. }
  10626. },
  10627. hand: {
  10628. height: math.unit(9 * 0.1168, "feet"),
  10629. name: "Hand",
  10630. image: {
  10631. source: "./media/characters/starry-aqua/hand.svg"
  10632. }
  10633. },
  10634. foot: {
  10635. height: math.unit(9 * 0.18, "feet"),
  10636. name: "Foot",
  10637. image: {
  10638. source: "./media/characters/starry-aqua/foot.svg"
  10639. }
  10640. }
  10641. },
  10642. [
  10643. {
  10644. name: "Micro",
  10645. height: math.unit(3, "inches")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(9, "feet")
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(300, "feet"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(3200, "feet")
  10659. }
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10664. {
  10665. front: {
  10666. height: math.unit(15, "feet"),
  10667. weight: math.unit(5026, "lb"),
  10668. name: "Front",
  10669. image: {
  10670. source: "./media/characters/luka-towers/front.svg",
  10671. extra: 1269/1133,
  10672. bottom: 51/1320
  10673. }
  10674. },
  10675. },
  10676. [
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(15, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Minimacro",
  10684. height: math.unit(25, "feet")
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(320, "feet")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(35000, "feet")
  10693. },
  10694. {
  10695. name: "Gigamacro",
  10696. height: math.unit(4000, "miles")
  10697. },
  10698. {
  10699. name: "Teramacro",
  10700. height: math.unit(15000, "miles")
  10701. },
  10702. ]
  10703. ))
  10704. characterMakers.push(() => makeCharacter(
  10705. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10706. {
  10707. front: {
  10708. height: math.unit(6, "feet"),
  10709. weight: math.unit(150, "lb"),
  10710. name: "Front",
  10711. image: {
  10712. source: "./media/characters/natalie-nightring/front.svg",
  10713. extra: 1,
  10714. bottom: 0.06
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Uh Oh",
  10721. height: math.unit(0.1, "mm")
  10722. },
  10723. {
  10724. name: "Small",
  10725. height: math.unit(3, "inches")
  10726. },
  10727. {
  10728. name: "Human Scale",
  10729. height: math.unit(6, "feet")
  10730. },
  10731. {
  10732. name: "Librarian",
  10733. height: math.unit(50, "feet"),
  10734. default: true
  10735. },
  10736. {
  10737. name: "Immense",
  10738. height: math.unit(200, "miles")
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(180, "lbs"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/danni-rosie/front.svg",
  10751. extra: 1260 / 1128,
  10752. bottom: 0.022
  10753. }
  10754. },
  10755. },
  10756. [
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(2, "inches"),
  10760. default: true
  10761. },
  10762. ]
  10763. ))
  10764. characterMakers.push(() => makeCharacter(
  10765. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10766. {
  10767. front: {
  10768. height: math.unit(5 + 9 / 12, "feet"),
  10769. weight: math.unit(220, "lb"),
  10770. name: "Front",
  10771. image: {
  10772. source: "./media/characters/samantha-kruse/front.svg",
  10773. extra: (985 / 935),
  10774. bottom: 0.03
  10775. }
  10776. },
  10777. frontUndressed: {
  10778. height: math.unit(5 + 9 / 12, "feet"),
  10779. weight: math.unit(220, "lb"),
  10780. name: "Front (Undressed)",
  10781. image: {
  10782. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10783. extra: (973 / 923),
  10784. bottom: 0.025
  10785. }
  10786. },
  10787. fat: {
  10788. height: math.unit(5 + 9 / 12, "feet"),
  10789. weight: math.unit(900, "lb"),
  10790. name: "Front (Fat)",
  10791. image: {
  10792. source: "./media/characters/samantha-kruse/fat.svg",
  10793. extra: 2688 / 2561
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(5 + 9 / 12, "feet"),
  10801. default: true
  10802. }
  10803. ]
  10804. ))
  10805. characterMakers.push(() => makeCharacter(
  10806. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10807. {
  10808. back: {
  10809. height: math.unit(5 + 4 / 12, "feet"),
  10810. weight: math.unit(4963, "lb"),
  10811. name: "Back",
  10812. image: {
  10813. source: "./media/characters/amelia-rosie/back.svg",
  10814. extra: 1113 / 963,
  10815. bottom: 0.01
  10816. }
  10817. },
  10818. },
  10819. [
  10820. {
  10821. name: "Level 0",
  10822. height: math.unit(5 + 4 / 12, "feet")
  10823. },
  10824. {
  10825. name: "Level 1",
  10826. height: math.unit(164597, "feet"),
  10827. default: true
  10828. },
  10829. {
  10830. name: "Level 2",
  10831. height: math.unit(956243, "miles")
  10832. },
  10833. {
  10834. name: "Level 3",
  10835. height: math.unit(29421709423, "miles")
  10836. },
  10837. {
  10838. name: "Level 4",
  10839. height: math.unit(154, "lightyears")
  10840. },
  10841. {
  10842. name: "Level 5",
  10843. height: math.unit(4738272, "lightyears")
  10844. },
  10845. {
  10846. name: "Level 6",
  10847. height: math.unit(145787152896, "lightyears")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(5 + 11 / 12, "feet"),
  10856. weight: math.unit(65, "kg"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/rook-kitara/front.svg",
  10860. extra: 1347 / 1274,
  10861. bottom: 0.005
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Totally Unfair",
  10868. height: math.unit(1.8, "mm")
  10869. },
  10870. {
  10871. name: "Lap Rookie",
  10872. height: math.unit(1.4, "feet")
  10873. },
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(5 + 11 / 12, "feet"),
  10877. default: true
  10878. },
  10879. {
  10880. name: "How Did This Happen",
  10881. height: math.unit(80, "miles")
  10882. }
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(7, "feet"),
  10890. weight: math.unit(300, "lb"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/pisces/front.svg",
  10894. extra: 2255 / 2115,
  10895. bottom: 0.03
  10896. }
  10897. },
  10898. back: {
  10899. height: math.unit(7, "feet"),
  10900. weight: math.unit(300, "lb"),
  10901. name: "Back",
  10902. image: {
  10903. source: "./media/characters/pisces/back.svg",
  10904. extra: 2146 / 2055,
  10905. bottom: 0.04
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(7, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Swimming Pool",
  10917. height: math.unit(12.2, "meters")
  10918. },
  10919. {
  10920. name: "Olympic Swimming Pool",
  10921. height: math.unit(56.3, "meters")
  10922. },
  10923. {
  10924. name: "Lake Superior",
  10925. height: math.unit(93900, "meters")
  10926. },
  10927. {
  10928. name: "Mediterranean Sea",
  10929. height: math.unit(644457, "meters")
  10930. },
  10931. {
  10932. name: "World's Oceans",
  10933. height: math.unit(4567491, "meters")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(2.3, "meters"),
  10942. weight: math.unit(120, "kg"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/zelas/front.svg"
  10946. }
  10947. },
  10948. side: {
  10949. height: math.unit(2.3, "meters"),
  10950. weight: math.unit(120, "kg"),
  10951. name: "Side",
  10952. image: {
  10953. source: "./media/characters/zelas/side.svg"
  10954. }
  10955. },
  10956. back: {
  10957. height: math.unit(2.3, "meters"),
  10958. weight: math.unit(120, "kg"),
  10959. name: "Back",
  10960. image: {
  10961. source: "./media/characters/zelas/back.svg"
  10962. }
  10963. },
  10964. foot: {
  10965. height: math.unit(1.116, "feet"),
  10966. name: "Foot",
  10967. image: {
  10968. source: "./media/characters/zelas/foot.svg"
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(2.3, "meters")
  10976. },
  10977. {
  10978. name: "Macro",
  10979. height: math.unit(30, "meters"),
  10980. default: true
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10986. {
  10987. front: {
  10988. height: math.unit(1, "inch"),
  10989. weight: math.unit(0.21, "grams"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/talbot/front.svg",
  10993. extra: 594 / 544
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(1, "inch"),
  11001. default: true
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11007. {
  11008. front: {
  11009. height: math.unit(3 + 3 / 12, "feet"),
  11010. weight: math.unit(51.8, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/fliss/front.svg",
  11014. extra: 840 / 640
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Teeny Tiny",
  11021. height: math.unit(1, "mm")
  11022. },
  11023. {
  11024. name: "Small",
  11025. height: math.unit(1, "inch"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Standard Sylveon",
  11030. height: math.unit(3 + 3 / 12, "feet")
  11031. },
  11032. {
  11033. name: "Large Nuisance",
  11034. height: math.unit(33, "feet")
  11035. },
  11036. {
  11037. name: "City Filler",
  11038. height: math.unit(3000, "feet")
  11039. },
  11040. {
  11041. name: "New Horizon",
  11042. height: math.unit(6000, "miles")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(5, "cm"),
  11051. weight: math.unit(1.94, "g"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/fleta/front.svg",
  11055. extra: 835 / 803
  11056. }
  11057. },
  11058. back: {
  11059. height: math.unit(5, "cm"),
  11060. weight: math.unit(1.94, "g"),
  11061. name: "Back",
  11062. image: {
  11063. source: "./media/characters/fleta/back.svg",
  11064. extra: 835 / 803
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Micro",
  11071. height: math.unit(5, "cm"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(225, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/dominic/front.svg",
  11085. extra: 1770 / 1620,
  11086. bottom: 0.025
  11087. }
  11088. },
  11089. back: {
  11090. height: math.unit(6, "feet"),
  11091. weight: math.unit(225, "lb"),
  11092. name: "Back",
  11093. image: {
  11094. source: "./media/characters/dominic/back.svg",
  11095. extra: 1745 / 1620,
  11096. bottom: 0.065
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Nano",
  11103. height: math.unit(0.1, "mm")
  11104. },
  11105. {
  11106. name: "Micro-",
  11107. height: math.unit(1, "mm")
  11108. },
  11109. {
  11110. name: "Micro",
  11111. height: math.unit(4, "inches")
  11112. },
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(6 + 4 / 12, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(115, "feet")
  11121. },
  11122. {
  11123. name: "Macro+",
  11124. height: math.unit(955, "feet")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(8990, "feet")
  11129. },
  11130. {
  11131. name: "Gigmacro",
  11132. height: math.unit(9310, "miles")
  11133. },
  11134. {
  11135. name: "Teramacro",
  11136. height: math.unit(1567005010, "miles")
  11137. },
  11138. {
  11139. name: "Examacro",
  11140. height: math.unit(1425, "parsecs")
  11141. },
  11142. ]
  11143. ))
  11144. characterMakers.push(() => makeCharacter(
  11145. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11146. {
  11147. front: {
  11148. height: math.unit(400, "feet"),
  11149. weight: math.unit(44444444, "lb"),
  11150. name: "Front",
  11151. image: {
  11152. source: "./media/characters/major-colonel/front.svg"
  11153. }
  11154. },
  11155. back: {
  11156. height: math.unit(400, "feet"),
  11157. weight: math.unit(44444444, "lb"),
  11158. name: "Back",
  11159. image: {
  11160. source: "./media/characters/major-colonel/back.svg"
  11161. }
  11162. },
  11163. },
  11164. [
  11165. {
  11166. name: "Macro",
  11167. height: math.unit(400, "feet"),
  11168. default: true
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11174. {
  11175. catFront: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(120, "lb"),
  11178. name: "Front (Cat Side)",
  11179. image: {
  11180. source: "./media/characters/axel-lycan/cat-front.svg",
  11181. extra: 430 / 402,
  11182. bottom: 43 / 472.35
  11183. }
  11184. },
  11185. catBack: {
  11186. height: math.unit(6, "feet"),
  11187. weight: math.unit(120, "lb"),
  11188. name: "Back (Cat Side)",
  11189. image: {
  11190. source: "./media/characters/axel-lycan/cat-back.svg",
  11191. extra: 447 / 419,
  11192. bottom: 23.3 / 469
  11193. }
  11194. },
  11195. wolfFront: {
  11196. height: math.unit(6, "feet"),
  11197. weight: math.unit(120, "lb"),
  11198. name: "Front (Wolf Side)",
  11199. image: {
  11200. source: "./media/characters/axel-lycan/wolf-front.svg",
  11201. extra: 485 / 456,
  11202. bottom: 19 / 504
  11203. }
  11204. },
  11205. wolfBack: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(120, "lb"),
  11208. name: "Back (Wolf Side)",
  11209. image: {
  11210. source: "./media/characters/axel-lycan/wolf-back.svg",
  11211. extra: 475 / 438,
  11212. bottom: 39.2 / 514
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(1, "km"),
  11220. default: true
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(5 + 9 / 12, "feet"),
  11229. weight: math.unit(175, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/vanrel-hyena/front.svg",
  11233. extra: 1086 / 1010,
  11234. bottom: 0.04
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(5 + 9 / 12, "feet"),
  11242. default: true
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(103, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/abbott-absol/front.svg",
  11255. extra: 765/694,
  11256. bottom: 47/812
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Megamicro",
  11263. height: math.unit(0.1, "mm")
  11264. },
  11265. {
  11266. name: "Micro",
  11267. height: math.unit(1, "inch")
  11268. },
  11269. {
  11270. name: "Normal",
  11271. height: math.unit(6, "feet"),
  11272. default: true
  11273. },
  11274. ]
  11275. ))
  11276. characterMakers.push(() => makeCharacter(
  11277. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11278. {
  11279. front: {
  11280. height: math.unit(6, "feet"),
  11281. weight: math.unit(264, "lb"),
  11282. name: "Front",
  11283. image: {
  11284. source: "./media/characters/hector/front.svg",
  11285. extra: 2280 / 2130,
  11286. bottom: 0.07
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(12.25, "foot"),
  11294. default: true
  11295. },
  11296. {
  11297. name: "Macro",
  11298. height: math.unit(160, "feet")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11304. {
  11305. front: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(150, "lb"),
  11308. name: "Front",
  11309. image: {
  11310. source: "./media/characters/sal/front.svg",
  11311. extra: 1846 / 1699,
  11312. bottom: 0.04
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Megamacro",
  11319. height: math.unit(10, "miles"),
  11320. default: true
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11326. {
  11327. front: {
  11328. height: math.unit(3, "meters"),
  11329. weight: math.unit(450, "kg"),
  11330. name: "front",
  11331. image: {
  11332. source: "./media/characters/ranger/front.svg",
  11333. extra: 2401 / 2243,
  11334. bottom: 0.05
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Normal",
  11341. height: math.unit(3, "meters"),
  11342. default: true
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(14, "feet"),
  11351. weight: math.unit(800, "kg"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/theresa/front.svg",
  11355. extra: 3575 / 3346,
  11356. bottom: 0.03
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Normal",
  11363. height: math.unit(14, "feet"),
  11364. default: true
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11370. {
  11371. front: {
  11372. height: math.unit(6, "feet"),
  11373. weight: math.unit(3, "kg"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/ine/front.svg",
  11377. extra: 678 / 539,
  11378. bottom: 0.023
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(2.265, "feet"),
  11386. default: true
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(5, "feet"),
  11395. weight: math.unit(30, "kg"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/vial/front.svg",
  11399. extra: 1365 / 1277,
  11400. bottom: 0.04
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(5, "feet"),
  11408. default: true
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11414. {
  11415. side: {
  11416. height: math.unit(3.4, "meters"),
  11417. weight: math.unit(1000, "lb"),
  11418. name: "Side",
  11419. image: {
  11420. source: "./media/characters/rovoska/side.svg",
  11421. extra: 4403 / 1515
  11422. }
  11423. },
  11424. },
  11425. [
  11426. {
  11427. name: "Normal",
  11428. height: math.unit(3.4, "meters"),
  11429. default: true
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(8, "feet"),
  11438. weight: math.unit(315, "lb"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/gunner-rotthbauer/front.svg"
  11442. }
  11443. },
  11444. back: {
  11445. height: math.unit(8, "feet"),
  11446. weight: math.unit(315, "lb"),
  11447. name: "Back",
  11448. image: {
  11449. source: "./media/characters/gunner-rotthbauer/back.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(3.5, "inches")
  11457. },
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(8, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Macro",
  11465. height: math.unit(250, "feet")
  11466. },
  11467. {
  11468. name: "Megamacro",
  11469. height: math.unit(1, "AU")
  11470. },
  11471. ]
  11472. ))
  11473. characterMakers.push(() => makeCharacter(
  11474. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11475. {
  11476. front: {
  11477. height: math.unit(5 + 5 / 12, "feet"),
  11478. weight: math.unit(140, "lb"),
  11479. name: "Front",
  11480. image: {
  11481. source: "./media/characters/allatia/front.svg",
  11482. extra: 1227 / 1180,
  11483. bottom: 0.027
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Normal",
  11490. height: math.unit(5 + 5 / 12, "feet")
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(250, "feet"),
  11495. default: true
  11496. },
  11497. {
  11498. name: "Megamacro",
  11499. height: math.unit(8, "miles")
  11500. }
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(120, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/tene/front.svg",
  11512. extra: 814/750,
  11513. bottom: 36/850
  11514. }
  11515. },
  11516. stomping: {
  11517. height: math.unit(2.025, "meters"),
  11518. weight: math.unit(120, "lb"),
  11519. name: "Stomping",
  11520. image: {
  11521. source: "./media/characters/tene/stomping.svg",
  11522. extra: 885/821,
  11523. bottom: 15/900
  11524. }
  11525. },
  11526. sitting: {
  11527. height: math.unit(1, "meter"),
  11528. weight: math.unit(120, "lb"),
  11529. name: "Sitting",
  11530. image: {
  11531. source: "./media/characters/tene/sitting.svg",
  11532. extra: 396/366,
  11533. bottom: 79/475
  11534. }
  11535. },
  11536. smiling: {
  11537. height: math.unit(1.2, "feet"),
  11538. name: "Smiling",
  11539. image: {
  11540. source: "./media/characters/tene/smiling.svg",
  11541. extra: 1364/1071,
  11542. bottom: 0/1364
  11543. }
  11544. },
  11545. smug: {
  11546. height: math.unit(1.3, "feet"),
  11547. name: "Smug",
  11548. image: {
  11549. source: "./media/characters/tene/smug.svg",
  11550. extra: 1323/1082,
  11551. bottom: 0/1323
  11552. }
  11553. },
  11554. feral: {
  11555. height: math.unit(3.9, "feet"),
  11556. weight: math.unit(250, "lb"),
  11557. name: "Feral",
  11558. image: {
  11559. source: "./media/characters/tene/feral.svg",
  11560. extra: 717 / 458,
  11561. bottom: 0.179
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(6, "feet")
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(300, "feet"),
  11573. default: true
  11574. },
  11575. {
  11576. name: "Megamacro",
  11577. height: math.unit(5, "miles")
  11578. },
  11579. ]
  11580. ))
  11581. characterMakers.push(() => makeCharacter(
  11582. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11583. {
  11584. side: {
  11585. height: math.unit(6, "feet"),
  11586. name: "Side",
  11587. image: {
  11588. source: "./media/characters/evander/side.svg",
  11589. extra: 877 / 477
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(0.83, "meters"),
  11597. default: true
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(12, "feet"),
  11606. weight: math.unit(1000, "lb"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11610. extra: 1762 / 1611
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(12, "feet"),
  11615. weight: math.unit(1000, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11619. extra: 1762 / 1611
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Normal",
  11626. height: math.unit(12, "feet"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Kaiju",
  11631. height: math.unit(150, "feet")
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(5 + 11/12, "feet"),
  11640. weight: math.unit(180, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/zero-alurus/front.svg",
  11644. extra: 1032/957,
  11645. bottom: 10/1042
  11646. }
  11647. },
  11648. back: {
  11649. height: math.unit(5 + 11/12, "feet"),
  11650. weight: math.unit(180, "lb"),
  11651. name: "Back",
  11652. image: {
  11653. source: "./media/characters/zero-alurus/back.svg",
  11654. extra: 1027/950,
  11655. bottom: 12/1039
  11656. }
  11657. },
  11658. },
  11659. [
  11660. {
  11661. name: "Normal",
  11662. height: math.unit(5 + 11 / 12, "feet")
  11663. },
  11664. {
  11665. name: "Mini-Macro",
  11666. height: math.unit(25, "feet")
  11667. },
  11668. {
  11669. name: "Macro",
  11670. height: math.unit(90, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Macro+",
  11675. height: math.unit(500, "feet")
  11676. },
  11677. {
  11678. name: "Megamacro",
  11679. height: math.unit(1200, "feet")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(6, "feet"),
  11688. weight: math.unit(200, "lb"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/mega-shi/front.svg",
  11692. extra: 1279 / 1250,
  11693. bottom: 0.02
  11694. }
  11695. },
  11696. back: {
  11697. height: math.unit(6, "feet"),
  11698. weight: math.unit(200, "lb"),
  11699. name: "Back",
  11700. image: {
  11701. source: "./media/characters/mega-shi/back.svg",
  11702. extra: 1279 / 1250,
  11703. bottom: 0.02
  11704. }
  11705. },
  11706. },
  11707. [
  11708. {
  11709. name: "Micro",
  11710. height: math.unit(16 + 6 / 12, "feet")
  11711. },
  11712. {
  11713. name: "Third Dimension",
  11714. height: math.unit(40, "meters")
  11715. },
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(660, "feet"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Megamacro",
  11723. height: math.unit(10, "miles")
  11724. },
  11725. {
  11726. name: "Planetary Launch",
  11727. height: math.unit(500, "miles")
  11728. },
  11729. {
  11730. name: "Interstellar",
  11731. height: math.unit(1e9, "miles")
  11732. },
  11733. {
  11734. name: "Leaving the Universe",
  11735. height: math.unit(1, "gigaparsec")
  11736. },
  11737. {
  11738. name: "Travelling Universes",
  11739. height: math.unit(30e15, "parsecs")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(5 + 4/12, "feet"),
  11748. weight: math.unit(120, "lb"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/odyssey/front.svg",
  11752. extra: 1747/1571,
  11753. bottom: 47/1794
  11754. }
  11755. },
  11756. side: {
  11757. height: math.unit(5.1, "feet"),
  11758. weight: math.unit(120, "lb"),
  11759. name: "Side",
  11760. image: {
  11761. source: "./media/characters/odyssey/side.svg",
  11762. extra: 1847/1619,
  11763. bottom: 47/1894
  11764. }
  11765. },
  11766. lounging: {
  11767. height: math.unit(1.464, "feet"),
  11768. weight: math.unit(120, "lb"),
  11769. name: "Lounging",
  11770. image: {
  11771. source: "./media/characters/odyssey/lounging.svg",
  11772. extra: 1235/837,
  11773. bottom: 551/1786
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(5 + 4 / 12, "feet")
  11781. },
  11782. {
  11783. name: "Macro",
  11784. height: math.unit(1, "km")
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(3000, "km")
  11789. },
  11790. {
  11791. name: "Gigamacro",
  11792. height: math.unit(1, "AU"),
  11793. default: true
  11794. },
  11795. {
  11796. name: "Omniversal",
  11797. height: math.unit(100e14, "lightyears")
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(5 + 10/12, "feet"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/mekuto/front.svg",
  11809. extra: 875/835,
  11810. bottom: 46/921
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Minimicro",
  11817. height: math.unit(0.2, "inches")
  11818. },
  11819. {
  11820. name: "Micro",
  11821. height: math.unit(1.5, "inches")
  11822. },
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(5 + 10 / 12, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Minimacro",
  11830. height: math.unit(17 + 9 / 12, "feet")
  11831. },
  11832. {
  11833. name: "Macro",
  11834. height: math.unit(177.5, "feet")
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(152, "miles")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11844. {
  11845. front: {
  11846. height: math.unit(6.5, "inches"),
  11847. weight: math.unit(13, "oz"),
  11848. name: "Front",
  11849. image: {
  11850. source: "./media/characters/dafydd-tomos/front.svg",
  11851. extra: 2990 / 2603,
  11852. bottom: 0.03
  11853. }
  11854. },
  11855. },
  11856. [
  11857. {
  11858. name: "Micro",
  11859. height: math.unit(6.5, "inches"),
  11860. default: true
  11861. },
  11862. ]
  11863. ))
  11864. characterMakers.push(() => makeCharacter(
  11865. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11866. {
  11867. front: {
  11868. height: math.unit(6, "feet"),
  11869. weight: math.unit(150, "lb"),
  11870. name: "Front",
  11871. image: {
  11872. source: "./media/characters/splinter/front.svg",
  11873. extra: 2990 / 2882,
  11874. bottom: 0.04
  11875. }
  11876. },
  11877. back: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(150, "lb"),
  11880. name: "Back",
  11881. image: {
  11882. source: "./media/characters/splinter/back.svg",
  11883. extra: 2990 / 2882,
  11884. bottom: 0.04
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(6, "feet")
  11892. },
  11893. {
  11894. name: "Macro",
  11895. height: math.unit(230, "meters"),
  11896. default: true
  11897. },
  11898. ]
  11899. ))
  11900. characterMakers.push(() => makeCharacter(
  11901. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11902. {
  11903. front: {
  11904. height: math.unit(4 + 10 / 12, "feet"),
  11905. weight: math.unit(480, "lb"),
  11906. name: "Front",
  11907. image: {
  11908. source: "./media/characters/snow-gabumon/front.svg",
  11909. extra: 1140 / 963,
  11910. bottom: 0.058
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(4 + 10 / 12, "feet"),
  11915. weight: math.unit(480, "lb"),
  11916. name: "Back",
  11917. image: {
  11918. source: "./media/characters/snow-gabumon/back.svg",
  11919. extra: 1115 / 962,
  11920. bottom: 0.041
  11921. }
  11922. },
  11923. frontUndresed: {
  11924. height: math.unit(4 + 10 / 12, "feet"),
  11925. weight: math.unit(480, "lb"),
  11926. name: "Front (Undressed)",
  11927. image: {
  11928. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11929. extra: 1061 / 960,
  11930. bottom: 0.045
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Micro",
  11937. height: math.unit(1, "inch")
  11938. },
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(4 + 10 / 12, "feet"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(200, "feet")
  11947. },
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(120, "miles")
  11951. },
  11952. {
  11953. name: "Gigamacro",
  11954. height: math.unit(9800, "miles")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11960. {
  11961. front: {
  11962. height: math.unit(1.7, "meters"),
  11963. weight: math.unit(140, "lb"),
  11964. name: "Front",
  11965. image: {
  11966. source: "./media/characters/moody/front.svg",
  11967. extra: 3226 / 3007,
  11968. bottom: 0.087
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Micro",
  11975. height: math.unit(1, "mm")
  11976. },
  11977. {
  11978. name: "Normal",
  11979. height: math.unit(1.7, "meters"),
  11980. default: true
  11981. },
  11982. {
  11983. name: "Macro",
  11984. height: math.unit(80, "meters")
  11985. },
  11986. {
  11987. name: "Macro+",
  11988. height: math.unit(500, "meters")
  11989. },
  11990. ]
  11991. ))
  11992. characterMakers.push(() => makeCharacter(
  11993. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11994. {
  11995. front: {
  11996. height: math.unit(6, "feet"),
  11997. weight: math.unit(150, "lb"),
  11998. name: "Front",
  11999. image: {
  12000. source: "./media/characters/zyas/front.svg",
  12001. extra: 1180 / 1120,
  12002. bottom: 0.045
  12003. }
  12004. },
  12005. },
  12006. [
  12007. {
  12008. name: "Normal",
  12009. height: math.unit(10, "feet"),
  12010. default: true
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(500, "feet")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(5, "miles")
  12019. },
  12020. {
  12021. name: "Teramacro",
  12022. height: math.unit(150000, "miles")
  12023. },
  12024. ]
  12025. ))
  12026. characterMakers.push(() => makeCharacter(
  12027. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12028. {
  12029. front: {
  12030. height: math.unit(6, "feet"),
  12031. weight: math.unit(150, "lb"),
  12032. name: "Front",
  12033. image: {
  12034. source: "./media/characters/cuon/front.svg",
  12035. extra: 1390 / 1320,
  12036. bottom: 0.008
  12037. }
  12038. },
  12039. },
  12040. [
  12041. {
  12042. name: "Micro",
  12043. height: math.unit(3, "inches")
  12044. },
  12045. {
  12046. name: "Normal",
  12047. height: math.unit(18 + 9 / 12, "feet"),
  12048. default: true
  12049. },
  12050. {
  12051. name: "Macro",
  12052. height: math.unit(360, "feet")
  12053. },
  12054. {
  12055. name: "Megamacro",
  12056. height: math.unit(360, "miles")
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(2.4, "meters"),
  12065. weight: math.unit(70, "kg"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/nyanuxk/front.svg",
  12069. extra: 1172 / 1084,
  12070. bottom: 0.065
  12071. }
  12072. },
  12073. side: {
  12074. height: math.unit(2.4, "meters"),
  12075. weight: math.unit(70, "kg"),
  12076. name: "Side",
  12077. image: {
  12078. source: "./media/characters/nyanuxk/side.svg",
  12079. extra: 1190 / 1132,
  12080. bottom: 0.007
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(2.4, "meters"),
  12085. weight: math.unit(70, "kg"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/nyanuxk/back.svg",
  12089. extra: 1200 / 1141,
  12090. bottom: 0.015
  12091. }
  12092. },
  12093. foot: {
  12094. height: math.unit(0.52, "meters"),
  12095. name: "Foot",
  12096. image: {
  12097. source: "./media/characters/nyanuxk/foot.svg"
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Micro",
  12104. height: math.unit(2, "cm")
  12105. },
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(2.4, "meters"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Smaller Macro",
  12113. height: math.unit(120, "meters")
  12114. },
  12115. {
  12116. name: "Bigger Macro",
  12117. height: math.unit(1.2, "km")
  12118. },
  12119. {
  12120. name: "Megamacro",
  12121. height: math.unit(15, "kilometers")
  12122. },
  12123. {
  12124. name: "Gigamacro",
  12125. height: math.unit(2000, "km")
  12126. },
  12127. {
  12128. name: "Teramacro",
  12129. height: math.unit(500000, "km")
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12135. {
  12136. side: {
  12137. height: math.unit(6, "feet"),
  12138. name: "Side",
  12139. image: {
  12140. source: "./media/characters/ailbhe/side.svg",
  12141. extra: 757 / 464,
  12142. bottom: 0.041
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(1.07, "meters"),
  12150. default: true
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(6, "feet"),
  12159. weight: math.unit(120, "kg"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/zevulfius/front.svg",
  12163. extra: 965 / 903
  12164. }
  12165. },
  12166. side: {
  12167. height: math.unit(6, "feet"),
  12168. weight: math.unit(120, "kg"),
  12169. name: "Side",
  12170. image: {
  12171. source: "./media/characters/zevulfius/side.svg",
  12172. extra: 939 / 900
  12173. }
  12174. },
  12175. back: {
  12176. height: math.unit(6, "feet"),
  12177. weight: math.unit(120, "kg"),
  12178. name: "Back",
  12179. image: {
  12180. source: "./media/characters/zevulfius/back.svg",
  12181. extra: 918 / 854,
  12182. bottom: 0.005
  12183. }
  12184. },
  12185. foot: {
  12186. height: math.unit(6 / 3.72, "feet"),
  12187. name: "Foot",
  12188. image: {
  12189. source: "./media/characters/zevulfius/foot.svg"
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Macro",
  12196. height: math.unit(750, "meters")
  12197. },
  12198. {
  12199. name: "Megamacro",
  12200. height: math.unit(20, "km"),
  12201. default: true
  12202. },
  12203. {
  12204. name: "Gigamacro",
  12205. height: math.unit(2000, "km")
  12206. },
  12207. {
  12208. name: "Teramacro",
  12209. height: math.unit(250000, "km")
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(100, "feet"),
  12218. weight: math.unit(350, "kg"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/rikes/front.svg",
  12222. extra: 1565 / 1483,
  12223. bottom: 0.017
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(100, "feet"),
  12231. default: true
  12232. },
  12233. ]
  12234. ))
  12235. characterMakers.push(() => makeCharacter(
  12236. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12237. {
  12238. front: {
  12239. height: math.unit(8, "feet"),
  12240. weight: math.unit(356, "lb"),
  12241. name: "Front",
  12242. image: {
  12243. source: "./media/characters/adam-silver-mane/front.svg",
  12244. extra: 1036/937,
  12245. bottom: 63/1099
  12246. }
  12247. },
  12248. side: {
  12249. height: math.unit(8, "feet"),
  12250. weight: math.unit(356, "lb"),
  12251. name: "Side",
  12252. image: {
  12253. source: "./media/characters/adam-silver-mane/side.svg",
  12254. extra: 997/901,
  12255. bottom: 59/1056
  12256. }
  12257. },
  12258. frontNsfw: {
  12259. height: math.unit(8, "feet"),
  12260. weight: math.unit(356, "lb"),
  12261. name: "Front (NSFW)",
  12262. image: {
  12263. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12264. extra: 1036/937,
  12265. bottom: 63/1099
  12266. }
  12267. },
  12268. sideNsfw: {
  12269. height: math.unit(8, "feet"),
  12270. weight: math.unit(356, "lb"),
  12271. name: "Side (NSFW)",
  12272. image: {
  12273. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12274. extra: 997/901,
  12275. bottom: 59/1056
  12276. }
  12277. },
  12278. dick: {
  12279. height: math.unit(2.1, "feet"),
  12280. name: "Dick",
  12281. image: {
  12282. source: "./media/characters/adam-silver-mane/dick.svg"
  12283. }
  12284. },
  12285. taur: {
  12286. height: math.unit(16, "feet"),
  12287. weight: math.unit(1500, "kg"),
  12288. name: "Taur",
  12289. image: {
  12290. source: "./media/characters/adam-silver-mane/taur.svg",
  12291. extra: 1713 / 1571,
  12292. bottom: 0.01
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(8, "feet")
  12300. },
  12301. {
  12302. name: "Minimacro",
  12303. height: math.unit(80, "feet")
  12304. },
  12305. {
  12306. name: "MDA",
  12307. height: math.unit(80, "meters")
  12308. },
  12309. {
  12310. name: "Macro",
  12311. height: math.unit(800, "feet"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(8000, "feet")
  12317. },
  12318. {
  12319. name: "Gigamacro",
  12320. height: math.unit(800, "miles")
  12321. },
  12322. {
  12323. name: "Teramacro",
  12324. height: math.unit(80000, "miles")
  12325. },
  12326. {
  12327. name: "Celestial",
  12328. height: math.unit(8e6, "miles")
  12329. },
  12330. {
  12331. name: "Star Dragon",
  12332. height: math.unit(800000, "parsecs")
  12333. },
  12334. {
  12335. name: "Godly",
  12336. height: math.unit(800, "teraparsecs")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(150, "lb"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/ky'owin/front.svg",
  12349. extra: 3862/3053,
  12350. bottom: 74/3936
  12351. }
  12352. },
  12353. },
  12354. [
  12355. {
  12356. name: "Normal",
  12357. height: math.unit(6 + 8 / 12, "feet")
  12358. },
  12359. {
  12360. name: "Large",
  12361. height: math.unit(68, "feet")
  12362. },
  12363. {
  12364. name: "Macro",
  12365. height: math.unit(132, "feet")
  12366. },
  12367. {
  12368. name: "Macro+",
  12369. height: math.unit(340, "feet")
  12370. },
  12371. {
  12372. name: "Macro++",
  12373. height: math.unit(680, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Megamacro",
  12378. height: math.unit(1, "mile")
  12379. },
  12380. {
  12381. name: "Megamacro+",
  12382. height: math.unit(10, "miles")
  12383. },
  12384. ]
  12385. ))
  12386. characterMakers.push(() => makeCharacter(
  12387. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12388. {
  12389. front: {
  12390. height: math.unit(4, "feet"),
  12391. weight: math.unit(50, "lb"),
  12392. name: "Front",
  12393. image: {
  12394. source: "./media/characters/mal/front.svg",
  12395. extra: 785 / 724,
  12396. bottom: 0.07
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Micro",
  12403. height: math.unit(4, "inches")
  12404. },
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(4, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Macro",
  12412. height: math.unit(200, "feet")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(150, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/jordan-deware/front.svg",
  12425. extra: 1191 / 1012
  12426. }
  12427. },
  12428. },
  12429. [
  12430. {
  12431. name: "Nano",
  12432. height: math.unit(0.01, "mm")
  12433. },
  12434. {
  12435. name: "Minimicro",
  12436. height: math.unit(1, "mm")
  12437. },
  12438. {
  12439. name: "Micro",
  12440. height: math.unit(0.5, "inches")
  12441. },
  12442. {
  12443. name: "Normal",
  12444. height: math.unit(4, "feet"),
  12445. default: true
  12446. },
  12447. {
  12448. name: "Minimacro",
  12449. height: math.unit(40, "meters")
  12450. },
  12451. {
  12452. name: "Small Macro",
  12453. height: math.unit(400, "meters")
  12454. },
  12455. {
  12456. name: "Macro",
  12457. height: math.unit(4, "miles")
  12458. },
  12459. {
  12460. name: "Megamacro",
  12461. height: math.unit(40, "miles")
  12462. },
  12463. {
  12464. name: "Megamacro+",
  12465. height: math.unit(400, "miles")
  12466. },
  12467. {
  12468. name: "Gigamacro",
  12469. height: math.unit(400000, "miles")
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(15, "feet"),
  12478. weight: math.unit(3000, "kg"),
  12479. preyCapacity: math.unit(450, "people"),
  12480. name: "Front",
  12481. image: {
  12482. source: "./media/characters/kimiko/front.svg",
  12483. extra: 875/832,
  12484. bottom: 36/911
  12485. },
  12486. extraAttributes: {
  12487. "pawSize": {
  12488. name: "Paw Size",
  12489. power: 1,
  12490. type: "length",
  12491. base: math.unit(0.9, "meters")
  12492. },
  12493. }
  12494. },
  12495. side: {
  12496. height: math.unit(15, "feet"),
  12497. weight: math.unit(3000, "kg"),
  12498. preyCapacity: math.unit(400, "people"),
  12499. name: "Side",
  12500. image: {
  12501. source: "./media/characters/kimiko/side.svg",
  12502. extra: 448/270,
  12503. bottom: 7/455
  12504. },
  12505. extraAttributes: {
  12506. "pawSize": {
  12507. name: "Paw Size",
  12508. power: 1,
  12509. type: "length",
  12510. base: math.unit(0.9, "meters")
  12511. },
  12512. }
  12513. },
  12514. maw: {
  12515. height: math.unit(0.81, "feet"),
  12516. name: "Maw",
  12517. image: {
  12518. source: "./media/characters/kimiko/maw.svg"
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(15, "feet"),
  12526. default: true
  12527. },
  12528. {
  12529. name: "Macro",
  12530. height: math.unit(220, "feet")
  12531. },
  12532. {
  12533. name: "Macro+",
  12534. height: math.unit(1450, "feet")
  12535. },
  12536. {
  12537. name: "Megamacro",
  12538. height: math.unit(11500, "feet")
  12539. },
  12540. {
  12541. name: "Gigamacro",
  12542. height: math.unit(9500, "miles")
  12543. },
  12544. {
  12545. name: "Teramacro",
  12546. height: math.unit(2208005005, "miles")
  12547. },
  12548. {
  12549. name: "Examacro",
  12550. height: math.unit(2750, "parsecs")
  12551. },
  12552. {
  12553. name: "Zettamacro",
  12554. height: math.unit(101500, "parsecs")
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(70, "kg"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/andrew-sleepy/front.svg"
  12567. }
  12568. },
  12569. side: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(70, "kg"),
  12572. name: "Side",
  12573. image: {
  12574. source: "./media/characters/andrew-sleepy/side.svg"
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Micro",
  12581. height: math.unit(1, "mm"),
  12582. default: true
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12588. {
  12589. front: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(150, "lb"),
  12592. name: "Front",
  12593. image: {
  12594. source: "./media/characters/judio/front.svg",
  12595. extra: 1258 / 1110
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(5 + 6 / 12, "feet")
  12603. },
  12604. {
  12605. name: "Macro",
  12606. height: math.unit(1000, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(10, "miles")
  12612. },
  12613. ]
  12614. ))
  12615. characterMakers.push(() => makeCharacter(
  12616. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12617. {
  12618. frontDressed: {
  12619. height: math.unit(6, "feet"),
  12620. weight: math.unit(68, "kg"),
  12621. name: "Front (Dressed)",
  12622. image: {
  12623. source: "./media/characters/nomaxice/front-dressed.svg",
  12624. extra: 1137/824,
  12625. bottom: 74/1211
  12626. }
  12627. },
  12628. frontShorts: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(68, "kg"),
  12631. name: "Front (Shorts)",
  12632. image: {
  12633. source: "./media/characters/nomaxice/front-shorts.svg",
  12634. extra: 1137/824,
  12635. bottom: 74/1211
  12636. }
  12637. },
  12638. back: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(68, "kg"),
  12641. name: "Back",
  12642. image: {
  12643. source: "./media/characters/nomaxice/back.svg",
  12644. extra: 822/786,
  12645. bottom: 39/861
  12646. }
  12647. },
  12648. hand: {
  12649. height: math.unit(0.565, "feet"),
  12650. name: "Hand",
  12651. image: {
  12652. source: "./media/characters/nomaxice/hand.svg"
  12653. }
  12654. },
  12655. foot: {
  12656. height: math.unit(1, "feet"),
  12657. name: "Foot",
  12658. image: {
  12659. source: "./media/characters/nomaxice/foot.svg"
  12660. }
  12661. },
  12662. },
  12663. [
  12664. {
  12665. name: "Micro",
  12666. height: math.unit(8, "cm")
  12667. },
  12668. {
  12669. name: "Norm",
  12670. height: math.unit(1.82, "m")
  12671. },
  12672. {
  12673. name: "Norm+",
  12674. height: math.unit(8.8, "feet"),
  12675. default: true
  12676. },
  12677. {
  12678. name: "Big",
  12679. height: math.unit(8, "meters")
  12680. },
  12681. {
  12682. name: "Macro",
  12683. height: math.unit(18, "meters")
  12684. },
  12685. {
  12686. name: "Macro+",
  12687. height: math.unit(88, "meters")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(12, "feet"),
  12696. weight: math.unit(1.5, "tons"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/dydros/front.svg",
  12700. extra: 863 / 800,
  12701. bottom: 0.015
  12702. }
  12703. },
  12704. back: {
  12705. height: math.unit(12, "feet"),
  12706. weight: math.unit(1.5, "tons"),
  12707. name: "Back",
  12708. image: {
  12709. source: "./media/characters/dydros/back.svg",
  12710. extra: 900 / 843,
  12711. bottom: 0.005
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(12, "feet"),
  12719. default: true
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(6, "feet"),
  12728. weight: math.unit(100, "kg"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/riggi/front.svg",
  12732. extra: 5787 / 5303
  12733. }
  12734. },
  12735. hyper: {
  12736. height: math.unit(6 * 5 / 3, "feet"),
  12737. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12738. name: "Hyper",
  12739. image: {
  12740. source: "./media/characters/riggi/hyper.svg",
  12741. extra: 3595 / 3485
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Small Macro",
  12748. height: math.unit(50, "feet")
  12749. },
  12750. {
  12751. name: "Default",
  12752. height: math.unit(200, "feet"),
  12753. default: true
  12754. },
  12755. {
  12756. name: "Loom",
  12757. height: math.unit(10000, "feet")
  12758. },
  12759. {
  12760. name: "Cruising Altitude",
  12761. height: math.unit(30000, "feet")
  12762. },
  12763. {
  12764. name: "Megamacro",
  12765. height: math.unit(100, "miles")
  12766. },
  12767. {
  12768. name: "Continent Sized",
  12769. height: math.unit(2800, "miles")
  12770. },
  12771. {
  12772. name: "Earth Sized",
  12773. height: math.unit(8000, "miles")
  12774. },
  12775. ]
  12776. ))
  12777. characterMakers.push(() => makeCharacter(
  12778. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12779. {
  12780. front: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(250, "lb"),
  12783. name: "Front",
  12784. image: {
  12785. source: "./media/characters/alexi/front.svg",
  12786. extra: 3483 / 3291,
  12787. bottom: 0.04
  12788. }
  12789. },
  12790. back: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(250, "lb"),
  12793. name: "Back",
  12794. image: {
  12795. source: "./media/characters/alexi/back.svg",
  12796. extra: 3533 / 3356,
  12797. bottom: 0.021
  12798. }
  12799. },
  12800. frontTransforming: {
  12801. height: math.unit(8.58, "feet"),
  12802. weight: math.unit(1300, "lb"),
  12803. name: "Transforming",
  12804. image: {
  12805. source: "./media/characters/alexi/front-transforming.svg",
  12806. extra: 437 / 409,
  12807. bottom: 19 / 458.66
  12808. }
  12809. },
  12810. frontTransformed: {
  12811. height: math.unit(12.5, "feet"),
  12812. weight: math.unit(4000, "lb"),
  12813. name: "Transformed",
  12814. image: {
  12815. source: "./media/characters/alexi/front-transformed.svg",
  12816. extra: 639 / 614,
  12817. bottom: 30.55 / 671
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(14, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Minimacro",
  12829. height: math.unit(30, "meters")
  12830. },
  12831. {
  12832. name: "Macro",
  12833. height: math.unit(500, "meters")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(9000, "km")
  12838. },
  12839. {
  12840. name: "Teramacro",
  12841. height: math.unit(384000, "km")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(6, "feet"),
  12850. weight: math.unit(150, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/kayroo/front.svg",
  12854. extra: 1153 / 1038,
  12855. bottom: 0.06
  12856. }
  12857. },
  12858. foot: {
  12859. height: math.unit(6, "feet"),
  12860. weight: math.unit(150, "lb"),
  12861. name: "Foot",
  12862. image: {
  12863. source: "./media/characters/kayroo/foot.svg"
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(8, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Minimacro",
  12875. height: math.unit(250, "feet")
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(2800, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(5200, "feet")
  12884. },
  12885. {
  12886. name: "Gigamacro",
  12887. height: math.unit(27000, "feet")
  12888. },
  12889. {
  12890. name: "Omega",
  12891. height: math.unit(45000, "feet")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(18, "feet"),
  12900. weight: math.unit(5800, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/rhys/front.svg",
  12904. extra: 3386 / 3090,
  12905. bottom: 0.07
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(18, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Working Size",
  12917. height: math.unit(200, "feet")
  12918. },
  12919. {
  12920. name: "Demolition Size",
  12921. height: math.unit(2000, "feet")
  12922. },
  12923. {
  12924. name: "Maximum Licensed Size",
  12925. height: math.unit(5, "miles")
  12926. },
  12927. {
  12928. name: "Maximum Observed Size",
  12929. height: math.unit(10, "yottameters")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(6, "feet"),
  12938. weight: math.unit(250, "lb"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/toto/front.svg",
  12942. extra: 527 / 479,
  12943. bottom: 0.05
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Micro",
  12950. height: math.unit(3, "feet")
  12951. },
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(10, "feet")
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(150, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(1200, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "King", species: ["lion"], tags: ["anthro"] },
  12969. {
  12970. back: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Back",
  12974. image: {
  12975. source: "./media/characters/king/back.svg"
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Micro",
  12982. height: math.unit(2, "inches")
  12983. },
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(8, "feet")
  12987. },
  12988. {
  12989. name: "Macro",
  12990. height: math.unit(200, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Megamacro",
  12995. height: math.unit(50, "miles")
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13001. {
  13002. front: {
  13003. height: math.unit(11, "feet"),
  13004. weight: math.unit(1400, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/cordite/front.svg",
  13008. extra: 1919/1827,
  13009. bottom: 40/1959
  13010. }
  13011. },
  13012. side: {
  13013. height: math.unit(11, "feet"),
  13014. weight: math.unit(1400, "lb"),
  13015. name: "Side",
  13016. image: {
  13017. source: "./media/characters/cordite/side.svg",
  13018. extra: 1908/1793,
  13019. bottom: 38/1946
  13020. }
  13021. },
  13022. back: {
  13023. height: math.unit(11, "feet"),
  13024. weight: math.unit(1400, "lb"),
  13025. name: "Back",
  13026. image: {
  13027. source: "./media/characters/cordite/back.svg",
  13028. extra: 1938/1837,
  13029. bottom: 10/1948
  13030. }
  13031. },
  13032. feral: {
  13033. height: math.unit(2, "feet"),
  13034. weight: math.unit(90, "lb"),
  13035. name: "Feral",
  13036. image: {
  13037. source: "./media/characters/cordite/feral.svg",
  13038. extra: 1260 / 755,
  13039. bottom: 0.05
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Normal",
  13046. height: math.unit(11, "feet"),
  13047. default: true
  13048. },
  13049. ]
  13050. ))
  13051. characterMakers.push(() => makeCharacter(
  13052. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13053. {
  13054. front: {
  13055. height: math.unit(6, "feet"),
  13056. weight: math.unit(150, "lb"),
  13057. name: "Front",
  13058. image: {
  13059. source: "./media/characters/pianostrong/front.svg",
  13060. extra: 6577 / 6254,
  13061. bottom: 0.02
  13062. }
  13063. },
  13064. side: {
  13065. height: math.unit(6, "feet"),
  13066. weight: math.unit(150, "lb"),
  13067. name: "Side",
  13068. image: {
  13069. source: "./media/characters/pianostrong/side.svg",
  13070. extra: 6106 / 5730
  13071. }
  13072. },
  13073. back: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(150, "lb"),
  13076. name: "Back",
  13077. image: {
  13078. source: "./media/characters/pianostrong/back.svg",
  13079. extra: 6085 / 5733,
  13080. bottom: 0.01
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(100, "feet")
  13088. },
  13089. {
  13090. name: "Macro+",
  13091. height: math.unit(300, "feet"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Macro++",
  13096. height: math.unit(1000, "feet")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6, "feet"),
  13105. weight: math.unit(150, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/kona/front.svg",
  13109. extra: 2960 / 2629,
  13110. bottom: 0.005
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(11 + 8 / 12, "feet")
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(850, "feet"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Macro+",
  13126. height: math.unit(1.5, "km"),
  13127. default: true
  13128. },
  13129. {
  13130. name: "Megamacro",
  13131. height: math.unit(80, "miles")
  13132. },
  13133. {
  13134. name: "Gigamacro",
  13135. height: math.unit(3500, "miles")
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13141. {
  13142. side: {
  13143. height: math.unit(1.9, "meters"),
  13144. weight: math.unit(326, "kg"),
  13145. name: "Side",
  13146. image: {
  13147. source: "./media/characters/levi/side.svg",
  13148. extra: 1704 / 1334,
  13149. bottom: 0.02
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(1.9, "meters"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Macro",
  13161. height: math.unit(20, "meters")
  13162. },
  13163. {
  13164. name: "Macro+",
  13165. height: math.unit(200, "meters")
  13166. },
  13167. {
  13168. name: "Megamacro",
  13169. height: math.unit(2, "km")
  13170. },
  13171. {
  13172. name: "Megamacro+",
  13173. height: math.unit(20, "km")
  13174. },
  13175. {
  13176. name: "Gigamacro",
  13177. height: math.unit(2500, "km")
  13178. },
  13179. {
  13180. name: "Gigamacro+",
  13181. height: math.unit(120000, "km")
  13182. },
  13183. {
  13184. name: "Teramacro",
  13185. height: math.unit(7.77e6, "km")
  13186. },
  13187. ]
  13188. ))
  13189. characterMakers.push(() => makeCharacter(
  13190. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13191. {
  13192. front: {
  13193. height: math.unit(6 + 4/12, "feet"),
  13194. weight: math.unit(190, "lb"),
  13195. name: "Front",
  13196. image: {
  13197. source: "./media/characters/bmc/front.svg",
  13198. extra: 1626/1472,
  13199. bottom: 79/1705
  13200. }
  13201. },
  13202. back: {
  13203. height: math.unit(6 + 4/12, "feet"),
  13204. weight: math.unit(190, "lb"),
  13205. name: "Back",
  13206. image: {
  13207. source: "./media/characters/bmc/back.svg",
  13208. extra: 1640/1479,
  13209. bottom: 45/1685
  13210. }
  13211. },
  13212. frontArmor: {
  13213. height: math.unit(6 + 4/12, "feet"),
  13214. weight: math.unit(190, "lb"),
  13215. name: "Front (Armor)",
  13216. image: {
  13217. source: "./media/characters/bmc/front-armor.svg",
  13218. extra: 1538/1468,
  13219. bottom: 79/1617
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Human-sized",
  13226. height: math.unit(6 + 4 / 12, "feet")
  13227. },
  13228. {
  13229. name: "Interactive Size",
  13230. height: math.unit(25, "feet")
  13231. },
  13232. {
  13233. name: "Small",
  13234. height: math.unit(250, "feet")
  13235. },
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(1250, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Good Day",
  13243. height: math.unit(88, "miles")
  13244. },
  13245. {
  13246. name: "Largest Measured Size",
  13247. height: math.unit(105.960, "galaxies")
  13248. },
  13249. ]
  13250. ))
  13251. characterMakers.push(() => makeCharacter(
  13252. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13253. {
  13254. front: {
  13255. height: math.unit(20, "feet"),
  13256. weight: math.unit(2016, "kg"),
  13257. name: "Front",
  13258. image: {
  13259. source: "./media/characters/sven-the-kaiju/front.svg",
  13260. extra: 1277/1250,
  13261. bottom: 35/1312
  13262. }
  13263. },
  13264. mouth: {
  13265. height: math.unit(1.85, "feet"),
  13266. name: "Mouth",
  13267. image: {
  13268. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Fairy",
  13275. height: math.unit(6, "inches")
  13276. },
  13277. {
  13278. name: "Normal",
  13279. height: math.unit(20, "feet"),
  13280. default: true
  13281. },
  13282. {
  13283. name: "Rampage",
  13284. height: math.unit(200, "feet")
  13285. },
  13286. {
  13287. name: "Archfey Forest Guardian",
  13288. height: math.unit(1, "mile")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(4, "meters"),
  13297. weight: math.unit(2, "tons"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/marik/front.svg",
  13301. extra: 1057 / 1003,
  13302. bottom: 0.08
  13303. }
  13304. },
  13305. },
  13306. [
  13307. {
  13308. name: "Normal",
  13309. height: math.unit(4, "meters"),
  13310. default: true
  13311. },
  13312. {
  13313. name: "Macro",
  13314. height: math.unit(20, "meters")
  13315. },
  13316. {
  13317. name: "Megamacro",
  13318. height: math.unit(50, "km")
  13319. },
  13320. {
  13321. name: "Gigamacro",
  13322. height: math.unit(100, "km")
  13323. },
  13324. {
  13325. name: "Alpha Macro",
  13326. height: math.unit(7.88e7, "yottameters")
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(110, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/mel/front.svg",
  13339. extra: 736 / 617,
  13340. bottom: 0.017
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Pico",
  13347. height: math.unit(3, "pm")
  13348. },
  13349. {
  13350. name: "Nano",
  13351. height: math.unit(3, "nm")
  13352. },
  13353. {
  13354. name: "Micro",
  13355. height: math.unit(0.3, "mm"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Micro+",
  13360. height: math.unit(3, "mm")
  13361. },
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(5 + 10.5 / 12, "feet")
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13370. {
  13371. kaiju: {
  13372. height: math.unit(1.75, "meters"),
  13373. weight: math.unit(55, "kg"),
  13374. name: "Kaiju",
  13375. image: {
  13376. source: "./media/characters/lykonous/kaiju.svg",
  13377. extra: 1055 / 946,
  13378. bottom: 0.135
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Normal",
  13385. height: math.unit(2.5, "meters"),
  13386. default: true
  13387. },
  13388. {
  13389. name: "Kaiju Dragon",
  13390. height: math.unit(60, "meters")
  13391. },
  13392. {
  13393. name: "Mega Kaiju",
  13394. height: math.unit(120, "km")
  13395. },
  13396. {
  13397. name: "Giga Kaiju",
  13398. height: math.unit(200, "megameters")
  13399. },
  13400. {
  13401. name: "Terra Kaiju",
  13402. height: math.unit(400, "gigameters")
  13403. },
  13404. {
  13405. name: "Kaiju Dragon God",
  13406. height: math.unit(13000, "exaparsecs")
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13412. {
  13413. front: {
  13414. height: math.unit(6, "feet"),
  13415. weight: math.unit(150, "lb"),
  13416. name: "Front",
  13417. image: {
  13418. source: "./media/characters/blü/front.svg",
  13419. extra: 1883 / 1564,
  13420. bottom: 0.031
  13421. }
  13422. },
  13423. },
  13424. [
  13425. {
  13426. name: "Normal",
  13427. height: math.unit(13, "feet"),
  13428. default: true
  13429. },
  13430. {
  13431. name: "Big Boi",
  13432. height: math.unit(150, "meters")
  13433. },
  13434. {
  13435. name: "Mini Stomper",
  13436. height: math.unit(300, "meters")
  13437. },
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(1000, "meters")
  13441. },
  13442. {
  13443. name: "Megamacro",
  13444. height: math.unit(11000, "meters")
  13445. },
  13446. {
  13447. name: "Gigamacro",
  13448. height: math.unit(11000, "km")
  13449. },
  13450. {
  13451. name: "Teramacro",
  13452. height: math.unit(420000, "km")
  13453. },
  13454. {
  13455. name: "Examacro",
  13456. height: math.unit(120, "parsecs")
  13457. },
  13458. {
  13459. name: "God Tho",
  13460. height: math.unit(98000000000, "parsecs")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13466. {
  13467. taurFront: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(200, "lb"),
  13470. name: "Taur (Front)",
  13471. image: {
  13472. source: "./media/characters/scales/taur-front.svg",
  13473. extra: 1,
  13474. bottom: 0.05
  13475. }
  13476. },
  13477. taurBack: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(200, "lb"),
  13480. name: "Taur (Back)",
  13481. image: {
  13482. source: "./media/characters/scales/taur-back.svg",
  13483. extra: 1,
  13484. bottom: 0.08
  13485. }
  13486. },
  13487. anthro: {
  13488. height: math.unit(6 * 7 / 12, "feet"),
  13489. weight: math.unit(100, "lb"),
  13490. name: "Anthro",
  13491. image: {
  13492. source: "./media/characters/scales/anthro.svg",
  13493. extra: 1,
  13494. bottom: 0.06
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(12, "feet"),
  13502. default: true
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13508. {
  13509. front: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(150, "lb"),
  13512. name: "Front",
  13513. image: {
  13514. source: "./media/characters/koragos/front.svg",
  13515. extra: 841 / 794,
  13516. bottom: 0.035
  13517. }
  13518. },
  13519. back: {
  13520. height: math.unit(6, "feet"),
  13521. weight: math.unit(150, "lb"),
  13522. name: "Back",
  13523. image: {
  13524. source: "./media/characters/koragos/back.svg",
  13525. extra: 841 / 810,
  13526. bottom: 0.022
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(6 + 11 / 12, "feet"),
  13534. default: true
  13535. },
  13536. {
  13537. name: "Macro",
  13538. height: math.unit(490, "feet")
  13539. },
  13540. {
  13541. name: "Megamacro",
  13542. height: math.unit(10, "miles")
  13543. },
  13544. {
  13545. name: "Gigamacro",
  13546. height: math.unit(50, "miles")
  13547. },
  13548. ]
  13549. ))
  13550. characterMakers.push(() => makeCharacter(
  13551. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13552. {
  13553. front: {
  13554. height: math.unit(6, "feet"),
  13555. weight: math.unit(250, "lb"),
  13556. name: "Front",
  13557. image: {
  13558. source: "./media/characters/xylrem/front.svg",
  13559. extra: 3323 / 3050,
  13560. bottom: 0.065
  13561. }
  13562. },
  13563. },
  13564. [
  13565. {
  13566. name: "Micro",
  13567. height: math.unit(4, "feet")
  13568. },
  13569. {
  13570. name: "Normal",
  13571. height: math.unit(16, "feet"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(2720, "feet")
  13577. },
  13578. {
  13579. name: "Megamacro",
  13580. height: math.unit(25000, "miles")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(8, "feet"),
  13589. weight: math.unit(250, "kg"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/ikideru/front.svg",
  13593. extra: 930 / 870,
  13594. bottom: 0.087
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(8, "feet"),
  13599. weight: math.unit(250, "kg"),
  13600. name: "Back",
  13601. image: {
  13602. source: "./media/characters/ikideru/back.svg",
  13603. extra: 919 / 852,
  13604. bottom: 0.055
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Rare",
  13611. height: math.unit(8, "feet"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Playful Loom",
  13616. height: math.unit(80, "feet")
  13617. },
  13618. {
  13619. name: "City Leaner",
  13620. height: math.unit(230, "feet")
  13621. },
  13622. {
  13623. name: "Megamacro",
  13624. height: math.unit(2500, "feet")
  13625. },
  13626. {
  13627. name: "Gigamacro",
  13628. height: math.unit(26400, "feet")
  13629. },
  13630. {
  13631. name: "Tectonic Shifter",
  13632. height: math.unit(1.7, "megameters")
  13633. },
  13634. {
  13635. name: "Planet Carer",
  13636. height: math.unit(21, "megameters")
  13637. },
  13638. {
  13639. name: "God",
  13640. height: math.unit(11157.22, "parsecs")
  13641. },
  13642. ]
  13643. ))
  13644. characterMakers.push(() => makeCharacter(
  13645. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13646. {
  13647. front: {
  13648. height: math.unit(6, "feet"),
  13649. weight: math.unit(120, "lb"),
  13650. name: "Front",
  13651. image: {
  13652. source: "./media/characters/neo/front.svg"
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Micro",
  13659. height: math.unit(2, "inches"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Human Size",
  13664. height: math.unit(5 + 8 / 12, "feet")
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(13 + 10 / 12, "feet"),
  13673. weight: math.unit(5320, "lb"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/chauncey-chantz/front.svg",
  13677. extra: 1587 / 1435,
  13678. bottom: 0.02
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(13 + 10 / 12, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Macro",
  13690. height: math.unit(45, "feet")
  13691. },
  13692. {
  13693. name: "Megamacro",
  13694. height: math.unit(250, "miles")
  13695. },
  13696. {
  13697. name: "Planetary",
  13698. height: math.unit(10000, "miles")
  13699. },
  13700. {
  13701. name: "Galactic",
  13702. height: math.unit(40000, "parsecs")
  13703. },
  13704. {
  13705. name: "Universal",
  13706. height: math.unit(1, "yottameter")
  13707. },
  13708. ]
  13709. ))
  13710. characterMakers.push(() => makeCharacter(
  13711. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13712. {
  13713. front: {
  13714. height: math.unit(6, "feet"),
  13715. weight: math.unit(150, "lb"),
  13716. name: "Front",
  13717. image: {
  13718. source: "./media/characters/epifox/front.svg",
  13719. extra: 1,
  13720. bottom: 0.075
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Micro",
  13727. height: math.unit(6, "inches")
  13728. },
  13729. {
  13730. name: "Normal",
  13731. height: math.unit(12, "feet"),
  13732. default: true
  13733. },
  13734. {
  13735. name: "Macro",
  13736. height: math.unit(3810, "feet")
  13737. },
  13738. {
  13739. name: "Megamacro",
  13740. height: math.unit(500, "miles")
  13741. },
  13742. ]
  13743. ))
  13744. characterMakers.push(() => makeCharacter(
  13745. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13746. {
  13747. front: {
  13748. height: math.unit(1.8796, "m"),
  13749. weight: math.unit(230, "lb"),
  13750. name: "Front",
  13751. image: {
  13752. source: "./media/characters/colin-t/front.svg",
  13753. extra: 1272 / 1193,
  13754. bottom: 0.07
  13755. }
  13756. },
  13757. },
  13758. [
  13759. {
  13760. name: "Micro",
  13761. height: math.unit(0.571, "meters")
  13762. },
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(1.8796, "meters"),
  13766. default: true
  13767. },
  13768. {
  13769. name: "Tall",
  13770. height: math.unit(4, "meters")
  13771. },
  13772. {
  13773. name: "Macro",
  13774. height: math.unit(67.241, "meters")
  13775. },
  13776. {
  13777. name: "Megamacro",
  13778. height: math.unit(371.856, "meters")
  13779. },
  13780. {
  13781. name: "Planetary",
  13782. height: math.unit(12631.5689, "km")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(1.85, "meters"),
  13791. weight: math.unit(80, "kg"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/matvei/front.svg",
  13795. extra: 456/447,
  13796. bottom: 8/464
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(1.85, "meters"),
  13801. weight: math.unit(80, "kg"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/matvei/back.svg",
  13805. extra: 434/427,
  13806. bottom: 11/445
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(1.85, "meters"),
  13814. default: true
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13820. {
  13821. front: {
  13822. height: math.unit(5 + 9 / 12, "feet"),
  13823. weight: math.unit(70, "lb"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/quincy/front.svg",
  13827. extra: 3041 / 2751
  13828. }
  13829. },
  13830. back: {
  13831. height: math.unit(5 + 9 / 12, "feet"),
  13832. weight: math.unit(70, "lb"),
  13833. name: "Back",
  13834. image: {
  13835. source: "./media/characters/quincy/back.svg",
  13836. extra: 3041 / 2751
  13837. }
  13838. },
  13839. flying: {
  13840. height: math.unit(5 + 4 / 12, "feet"),
  13841. weight: math.unit(70, "lb"),
  13842. name: "Flying",
  13843. image: {
  13844. source: "./media/characters/quincy/flying.svg",
  13845. extra: 1044 / 930
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Micro",
  13852. height: math.unit(3, "cm")
  13853. },
  13854. {
  13855. name: "Normal",
  13856. height: math.unit(5 + 9 / 12, "feet")
  13857. },
  13858. {
  13859. name: "Macro",
  13860. height: math.unit(200, "meters"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Megamacro",
  13865. height: math.unit(1000, "meters")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(3 + 11/12, "feet"),
  13874. weight: math.unit(50, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/vanrel/front.svg",
  13878. extra: 1104/949,
  13879. bottom: 52/1156
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(3 + 11/12, "feet"),
  13884. weight: math.unit(50, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/vanrel/back.svg",
  13888. extra: 1119/976,
  13889. bottom: 37/1156
  13890. }
  13891. },
  13892. tome: {
  13893. height: math.unit(1.35, "feet"),
  13894. weight: math.unit(10, "lb"),
  13895. name: "Vanrel's Tome",
  13896. rename: true,
  13897. image: {
  13898. source: "./media/characters/vanrel/tome.svg"
  13899. }
  13900. },
  13901. beans: {
  13902. height: math.unit(0.89, "feet"),
  13903. name: "Beans",
  13904. image: {
  13905. source: "./media/characters/vanrel/beans.svg"
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Normal",
  13912. height: math.unit(3 + 11/12, "feet"),
  13913. default: true
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13919. {
  13920. front: {
  13921. height: math.unit(7 + 5 / 12, "feet"),
  13922. name: "Front",
  13923. image: {
  13924. source: "./media/characters/kuiper-vanrel/front.svg",
  13925. extra: 1219/1169,
  13926. bottom: 69/1288
  13927. }
  13928. },
  13929. back: {
  13930. height: math.unit(7 + 5 / 12, "feet"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/kuiper-vanrel/back.svg",
  13934. extra: 1236/1193,
  13935. bottom: 27/1263
  13936. }
  13937. },
  13938. foot: {
  13939. height: math.unit(0.55, "meters"),
  13940. name: "Foot",
  13941. image: {
  13942. source: "./media/characters/kuiper-vanrel/foot.svg",
  13943. }
  13944. },
  13945. battle: {
  13946. height: math.unit(6.824, "feet"),
  13947. name: "Battle",
  13948. image: {
  13949. source: "./media/characters/kuiper-vanrel/battle.svg",
  13950. extra: 1466 / 1327,
  13951. bottom: 29 / 1492.5
  13952. }
  13953. },
  13954. meerkui: {
  13955. height: math.unit(18, "inches"),
  13956. name: "Meerkui",
  13957. image: {
  13958. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13959. extra: 1354/1289,
  13960. bottom: 69/1423
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(7 + 5 / 12, "feet"),
  13968. default: true
  13969. },
  13970. ]
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13974. {
  13975. front: {
  13976. height: math.unit(8 + 5 / 12, "feet"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/keset-vanrel/front.svg",
  13980. extra: 1231/1148,
  13981. bottom: 82/1313
  13982. }
  13983. },
  13984. back: {
  13985. height: math.unit(8 + 5 / 12, "feet"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/keset-vanrel/back.svg",
  13989. extra: 1240/1174,
  13990. bottom: 33/1273
  13991. }
  13992. },
  13993. hand: {
  13994. height: math.unit(0.6, "meters"),
  13995. name: "Hand",
  13996. image: {
  13997. source: "./media/characters/keset-vanrel/hand.svg"
  13998. }
  13999. },
  14000. foot: {
  14001. height: math.unit(0.94978, "meters"),
  14002. name: "Foot",
  14003. image: {
  14004. source: "./media/characters/keset-vanrel/foot.svg"
  14005. }
  14006. },
  14007. battle: {
  14008. height: math.unit(7.408, "feet"),
  14009. name: "Battle",
  14010. image: {
  14011. source: "./media/characters/keset-vanrel/battle.svg",
  14012. extra: 1890 / 1386,
  14013. bottom: 73.28 / 1970
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(8 + 5 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(6, "feet"),
  14030. weight: math.unit(150, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/neos/front.svg",
  14034. extra: 1696 / 992,
  14035. bottom: 0.14
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(54, "cm"),
  14043. default: true
  14044. },
  14045. {
  14046. name: "Macro",
  14047. height: math.unit(100, "m")
  14048. },
  14049. {
  14050. name: "Megamacro",
  14051. height: math.unit(10, "km")
  14052. },
  14053. {
  14054. name: "Megamacro+",
  14055. height: math.unit(100, "km")
  14056. },
  14057. {
  14058. name: "Gigamacro",
  14059. height: math.unit(100, "Mm")
  14060. },
  14061. {
  14062. name: "Teramacro",
  14063. height: math.unit(100, "Gm")
  14064. },
  14065. {
  14066. name: "Examacro",
  14067. height: math.unit(100, "Em")
  14068. },
  14069. {
  14070. name: "Godly",
  14071. height: math.unit(10000, "Ym")
  14072. },
  14073. {
  14074. name: "Beyond Godly",
  14075. height: math.unit(25, "multiverses")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14081. {
  14082. fluide_tame: {
  14083. height: math.unit(5, "feet"),
  14084. name: "Tame",
  14085. image: {
  14086. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14087. extra: 1655/1574,
  14088. bottom: 231/1886
  14089. },
  14090. form: "fluide",
  14091. default: true
  14092. },
  14093. fluide_nude: {
  14094. height: math.unit(5, "feet"),
  14095. name: "Nude",
  14096. image: {
  14097. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14098. extra: 1655/1574,
  14099. bottom: 231/1886
  14100. },
  14101. form: "fluide",
  14102. },
  14103. male_tame: {
  14104. height: math.unit(5, "feet"),
  14105. name: "Tame",
  14106. image: {
  14107. source: "./media/characters/sammy-mouse/male-tame.svg",
  14108. extra: 1655/1574,
  14109. bottom: 231/1886
  14110. },
  14111. form: "male",
  14112. default: true
  14113. },
  14114. male_nude: {
  14115. height: math.unit(5, "feet"),
  14116. name: "Nude",
  14117. image: {
  14118. source: "./media/characters/sammy-mouse/male-nude.svg",
  14119. extra: 1655/1574,
  14120. bottom: 231/1886
  14121. },
  14122. form: "male",
  14123. },
  14124. female_nude: {
  14125. height: math.unit(5, "feet"),
  14126. name: "Nude",
  14127. image: {
  14128. source: "./media/characters/sammy-mouse/female-nude.svg",
  14129. extra: 1655/1574,
  14130. bottom: 231/1886
  14131. },
  14132. form: "female",
  14133. default: true
  14134. },
  14135. mouth: {
  14136. height: math.unit(0.32, "feet"),
  14137. name: "Mouth",
  14138. image: {
  14139. source: "./media/characters/sammy-mouse/mouth.svg"
  14140. },
  14141. allForms: true
  14142. },
  14143. paw: {
  14144. height: math.unit(0.42, "feet"),
  14145. name: "Paw",
  14146. image: {
  14147. source: "./media/characters/sammy-mouse/paw.svg"
  14148. },
  14149. allForms: true
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Micro",
  14155. height: math.unit(5, "inches"),
  14156. allForms: true
  14157. },
  14158. {
  14159. name: "Normal",
  14160. height: math.unit(5, "feet"),
  14161. default: true,
  14162. allForms: true
  14163. },
  14164. {
  14165. name: "Macro",
  14166. height: math.unit(60, "feet"),
  14167. allForms: true
  14168. },
  14169. ],
  14170. {
  14171. "fluide": {
  14172. name: "Fluide",
  14173. default: true
  14174. },
  14175. "male": {
  14176. name: "Male",
  14177. },
  14178. "female": {
  14179. name: "Female",
  14180. },
  14181. }
  14182. ))
  14183. characterMakers.push(() => makeCharacter(
  14184. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14185. {
  14186. front: {
  14187. height: math.unit(4, "feet"),
  14188. weight: math.unit(50, "lb"),
  14189. name: "Front",
  14190. image: {
  14191. source: "./media/characters/kole/front.svg",
  14192. extra: 1423 / 1303,
  14193. bottom: 0.025
  14194. }
  14195. },
  14196. back: {
  14197. height: math.unit(4, "feet"),
  14198. weight: math.unit(50, "lb"),
  14199. name: "Back",
  14200. image: {
  14201. source: "./media/characters/kole/back.svg",
  14202. extra: 1426 / 1280,
  14203. bottom: 0.02
  14204. }
  14205. },
  14206. },
  14207. [
  14208. {
  14209. name: "Normal",
  14210. height: math.unit(4, "feet"),
  14211. default: true
  14212. },
  14213. ]
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14217. {
  14218. front: {
  14219. height: math.unit(2.5, "feet"),
  14220. weight: math.unit(32, "lb"),
  14221. name: "Front",
  14222. image: {
  14223. source: "./media/characters/rufran/front.svg",
  14224. extra: 1313/885,
  14225. bottom: 94/1407
  14226. }
  14227. },
  14228. side: {
  14229. height: math.unit(2.5, "feet"),
  14230. weight: math.unit(32, "lb"),
  14231. name: "Side",
  14232. image: {
  14233. source: "./media/characters/rufran/side.svg",
  14234. extra: 1109/852,
  14235. bottom: 118/1227
  14236. }
  14237. },
  14238. back: {
  14239. height: math.unit(2.5, "feet"),
  14240. weight: math.unit(32, "lb"),
  14241. name: "Back",
  14242. image: {
  14243. source: "./media/characters/rufran/back.svg",
  14244. extra: 1280/878,
  14245. bottom: 131/1411
  14246. }
  14247. },
  14248. mouth: {
  14249. height: math.unit(1.13, "feet"),
  14250. name: "Mouth",
  14251. image: {
  14252. source: "./media/characters/rufran/mouth.svg"
  14253. }
  14254. },
  14255. foot: {
  14256. height: math.unit(1.33, "feet"),
  14257. name: "Foot",
  14258. image: {
  14259. source: "./media/characters/rufran/foot.svg"
  14260. }
  14261. },
  14262. koboldFront: {
  14263. height: math.unit(2 + 6 / 12, "feet"),
  14264. weight: math.unit(20, "lb"),
  14265. name: "Front (Kobold)",
  14266. image: {
  14267. source: "./media/characters/rufran/kobold-front.svg",
  14268. extra: 2041 / 1839,
  14269. bottom: 0.055
  14270. }
  14271. },
  14272. koboldBack: {
  14273. height: math.unit(2 + 6 / 12, "feet"),
  14274. weight: math.unit(20, "lb"),
  14275. name: "Back (Kobold)",
  14276. image: {
  14277. source: "./media/characters/rufran/kobold-back.svg",
  14278. extra: 2054 / 1839,
  14279. bottom: 0.01
  14280. }
  14281. },
  14282. koboldHand: {
  14283. height: math.unit(0.2166, "meters"),
  14284. name: "Hand (Kobold)",
  14285. image: {
  14286. source: "./media/characters/rufran/kobold-hand.svg"
  14287. }
  14288. },
  14289. koboldFoot: {
  14290. height: math.unit(0.185, "meters"),
  14291. name: "Foot (Kobold)",
  14292. image: {
  14293. source: "./media/characters/rufran/kobold-foot.svg"
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Micro",
  14300. height: math.unit(1, "inch")
  14301. },
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(2 + 6 / 12, "feet"),
  14305. default: true
  14306. },
  14307. {
  14308. name: "Big",
  14309. height: math.unit(60, "feet")
  14310. },
  14311. {
  14312. name: "Macro",
  14313. height: math.unit(325, "feet")
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14319. {
  14320. front: {
  14321. height: math.unit(0.3, "meters"),
  14322. weight: math.unit(3.5, "kg"),
  14323. name: "Front",
  14324. image: {
  14325. source: "./media/characters/chip/front.svg",
  14326. extra: 748 / 674
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Micro",
  14333. height: math.unit(1, "inch"),
  14334. default: true
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14340. {
  14341. side: {
  14342. height: math.unit(2.3, "meters"),
  14343. weight: math.unit(3500, "lb"),
  14344. name: "Side",
  14345. image: {
  14346. source: "./media/characters/torvid/side.svg",
  14347. extra: 1972 / 722,
  14348. bottom: 0.035
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(2.3, "meters"),
  14356. default: true
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14362. {
  14363. front: {
  14364. height: math.unit(2, "meters"),
  14365. weight: math.unit(150.5, "kg"),
  14366. name: "Front",
  14367. image: {
  14368. source: "./media/characters/susan/front.svg",
  14369. extra: 693 / 635,
  14370. bottom: 0.05
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(505, "miles"),
  14378. default: true
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(150, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/raindrops/front.svg",
  14391. extra: 2655 / 2461,
  14392. bottom: 49 / 2705
  14393. }
  14394. },
  14395. back: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(150, "lb"),
  14398. name: "Back",
  14399. image: {
  14400. source: "./media/characters/raindrops/back.svg",
  14401. extra: 2574 / 2400,
  14402. bottom: 65 / 2634
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Micro",
  14409. height: math.unit(6, "inches")
  14410. },
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(6 + 2 / 12, "feet")
  14414. },
  14415. {
  14416. name: "Macro",
  14417. height: math.unit(131, "feet"),
  14418. default: true
  14419. },
  14420. {
  14421. name: "Megamacro",
  14422. height: math.unit(15, "miles")
  14423. },
  14424. {
  14425. name: "Gigamacro",
  14426. height: math.unit(4000, "miles")
  14427. },
  14428. {
  14429. name: "Teramacro",
  14430. height: math.unit(315000, "miles")
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14436. {
  14437. normal_front: {
  14438. height: math.unit(9 + 2/12, "feet"),
  14439. weight: math.unit(325, "kg"),
  14440. name: "Front",
  14441. image: {
  14442. source: "./media/characters/tezwa/normal-front.svg",
  14443. extra: 770/714,
  14444. bottom: 32/802
  14445. },
  14446. form: "normal",
  14447. },
  14448. normal_paw: {
  14449. height: math.unit(2.2, "feet"),
  14450. name: "Paw",
  14451. image: {
  14452. source: "./media/characters/tezwa/paw.svg"
  14453. },
  14454. form: "normal",
  14455. },
  14456. muscled_front: {
  14457. height: math.unit(916 + 8/12, "feet"),
  14458. weight: math.unit(500000, "tons"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/tezwa/muscled-front.svg",
  14462. extra: 1840/1697,
  14463. bottom: 29/1869
  14464. },
  14465. form: "muscled",
  14466. },
  14467. muscled_paw: {
  14468. height: math.unit(200, "feet"),
  14469. name: "Paw",
  14470. image: {
  14471. source: "./media/characters/tezwa/paw.svg"
  14472. },
  14473. form: "muscled",
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Normal",
  14479. height: math.unit(9 + 2 / 12, "feet"),
  14480. default: true,
  14481. form: "normal"
  14482. },
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(916 + 8/12, "feet"),
  14486. default: true,
  14487. form: "muscled"
  14488. },
  14489. ],
  14490. {
  14491. "normal": {
  14492. name: "Normal",
  14493. default: true
  14494. },
  14495. "muscled": {
  14496. name: "Muscled",
  14497. },
  14498. }
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(58, "feet"),
  14505. weight: math.unit(89000, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/typhus/front.svg",
  14509. extra: 816 / 800,
  14510. bottom: 0.065
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Macro",
  14517. height: math.unit(58, "feet"),
  14518. default: true
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(12, "feet"),
  14527. weight: math.unit(6, "tonnes"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/lyra-von-wulf/front.svg",
  14531. extra: 1,
  14532. bottom: 0.10
  14533. }
  14534. },
  14535. frontMecha: {
  14536. height: math.unit(12, "feet"),
  14537. weight: math.unit(12, "tonnes"),
  14538. name: "Front (Mecha)",
  14539. image: {
  14540. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14541. extra: 1,
  14542. bottom: 0.042
  14543. }
  14544. },
  14545. maw: {
  14546. height: math.unit(2.2, "feet"),
  14547. name: "Maw",
  14548. image: {
  14549. source: "./media/characters/lyra-von-wulf/maw.svg"
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(12, "feet"),
  14557. default: true
  14558. },
  14559. {
  14560. name: "Classic",
  14561. height: math.unit(50, "feet")
  14562. },
  14563. {
  14564. name: "Macro",
  14565. height: math.unit(500, "feet")
  14566. },
  14567. {
  14568. name: "Megamacro",
  14569. height: math.unit(1, "mile")
  14570. },
  14571. {
  14572. name: "Gigamacro",
  14573. height: math.unit(400, "miles")
  14574. },
  14575. {
  14576. name: "Teramacro",
  14577. height: math.unit(22000, "miles")
  14578. },
  14579. {
  14580. name: "Solarmacro",
  14581. height: math.unit(8600000, "miles")
  14582. },
  14583. {
  14584. name: "Galactic",
  14585. height: math.unit(1057000, "lightyears")
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(6 + 10 / 12, "feet"),
  14594. weight: math.unit(150, "lb"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/dixon/front.svg",
  14598. extra: 3361 / 3209,
  14599. bottom: 0.01
  14600. }
  14601. },
  14602. },
  14603. [
  14604. {
  14605. name: "Normal",
  14606. height: math.unit(6 + 10 / 12, "feet"),
  14607. default: true
  14608. },
  14609. {
  14610. name: "Big",
  14611. height: math.unit(12, "meters")
  14612. },
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(500, "meters")
  14616. },
  14617. {
  14618. name: "Megamacro",
  14619. height: math.unit(2, "km")
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14625. {
  14626. kingCheetah_front: {
  14627. height: math.unit(1.85, "meters"),
  14628. weight: math.unit(68, "kg"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/kauko/king-cheetah-front.svg",
  14632. extra: 1007/972,
  14633. bottom: 35/1042
  14634. },
  14635. form: "king-cheetah",
  14636. default: true
  14637. },
  14638. kingCheetah_back: {
  14639. height: math.unit(1.85, "meters"),
  14640. weight: math.unit(68, "kg"),
  14641. name: "Back",
  14642. image: {
  14643. source: "./media/characters/kauko/king-cheetah-back.svg",
  14644. extra: 1015/980,
  14645. bottom: 11/1026
  14646. },
  14647. form: "king-cheetah",
  14648. },
  14649. kingCheetah_hand: {
  14650. height: math.unit(0.23, "meters"),
  14651. name: "Hand",
  14652. image: {
  14653. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14654. },
  14655. form: "king-cheetah",
  14656. },
  14657. kingCheetah_paw: {
  14658. height: math.unit(0.38, "meters"),
  14659. name: "Paw",
  14660. image: {
  14661. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14662. },
  14663. form: "king-cheetah",
  14664. },
  14665. kingCheetah_nape: {
  14666. height: math.unit(0.23, "meters"),
  14667. name: "Nape",
  14668. image: {
  14669. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14670. },
  14671. form: "king-cheetah",
  14672. },
  14673. wolf_front: {
  14674. height: math.unit(1.88, "meters"),
  14675. weight: math.unit(74, "kg"),
  14676. name: "Front",
  14677. image: {
  14678. source: "./media/characters/kauko/wolf-front.svg",
  14679. extra: 952/908,
  14680. bottom: 64/1016
  14681. },
  14682. form: "wolf",
  14683. default: true
  14684. },
  14685. wolf_dressed: {
  14686. height: math.unit(1.88, "meters"),
  14687. weight: math.unit(74, "kg"),
  14688. name: "Dressed",
  14689. image: {
  14690. source: "./media/characters/kauko/wolf-dressed.svg",
  14691. extra: 963/916,
  14692. bottom: 101/1064
  14693. },
  14694. form: "wolf",
  14695. },
  14696. wolf_hand: {
  14697. height: math.unit(0.3, "meters"),
  14698. name: "Hand",
  14699. image: {
  14700. source: "./media/characters/kauko/wolf-hand.svg"
  14701. },
  14702. form: "wolf",
  14703. },
  14704. wolf_paw: {
  14705. height: math.unit(0.407, "meters"),
  14706. name: "Paw",
  14707. image: {
  14708. source: "./media/characters/kauko/wolf-paw.svg"
  14709. },
  14710. form: "wolf",
  14711. },
  14712. wolf_nape: {
  14713. height: math.unit(0.25, "meters"),
  14714. name: "Nape",
  14715. image: {
  14716. source: "./media/characters/kauko/wolf-nape.svg"
  14717. },
  14718. form: "wolf",
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(1.85, "m"),
  14725. default: true,
  14726. form: "king-cheetah"
  14727. },
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(1.88, "m"),
  14731. default: true,
  14732. form: "wolf"
  14733. },
  14734. ],
  14735. {
  14736. "king-cheetah": {
  14737. name: "King Cheetah",
  14738. default: true
  14739. },
  14740. "wolf": {
  14741. name: "Wolf",
  14742. },
  14743. }
  14744. ))
  14745. characterMakers.push(() => makeCharacter(
  14746. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14747. {
  14748. frontSfw: {
  14749. height: math.unit(5, "meters"),
  14750. weight: math.unit(4250, "lb"),
  14751. name: "Front",
  14752. image: {
  14753. source: "./media/characters/varg/front-sfw.svg",
  14754. extra: 1103/1010,
  14755. bottom: 50/1153
  14756. },
  14757. form: "anthro",
  14758. default: true
  14759. },
  14760. backSfw: {
  14761. height: math.unit(5, "meters"),
  14762. weight: math.unit(4250, "lb"),
  14763. name: "Back",
  14764. image: {
  14765. source: "./media/characters/varg/back-sfw.svg",
  14766. extra: 1038/1022,
  14767. bottom: 36/1074
  14768. },
  14769. form: "anthro"
  14770. },
  14771. frontNsfw: {
  14772. height: math.unit(5, "meters"),
  14773. weight: math.unit(4250, "lb"),
  14774. name: "Front (NSFW)",
  14775. image: {
  14776. source: "./media/characters/varg/front-nsfw.svg",
  14777. extra: 1103/1010,
  14778. bottom: 50/1153
  14779. },
  14780. form: "anthro"
  14781. },
  14782. sheath: {
  14783. height: math.unit(3.8, "feet"),
  14784. weight: math.unit(90, "kilograms"),
  14785. name: "Sheath",
  14786. image: {
  14787. source: "./media/characters/varg/sheath.svg"
  14788. },
  14789. form: "anthro"
  14790. },
  14791. dick: {
  14792. height: math.unit(4.6, "feet"),
  14793. weight: math.unit(451, "kilograms"),
  14794. name: "Dick",
  14795. image: {
  14796. source: "./media/characters/varg/dick.svg"
  14797. },
  14798. form: "anthro"
  14799. },
  14800. feralSfw: {
  14801. height: math.unit(5, "meters"),
  14802. weight: math.unit(100000, "lb"),
  14803. name: "Side",
  14804. image: {
  14805. source: "./media/characters/varg/feral-sfw.svg",
  14806. extra: 1065/511,
  14807. bottom: 211/1276
  14808. },
  14809. form: "feral",
  14810. default: true
  14811. },
  14812. feralNsfw: {
  14813. height: math.unit(5, "meters"),
  14814. weight: math.unit(100000, "lb"),
  14815. name: "Side (NSFW)",
  14816. image: {
  14817. source: "./media/characters/varg/feral-nsfw.svg",
  14818. extra: 1065/511,
  14819. bottom: 211/1276
  14820. },
  14821. form: "feral",
  14822. },
  14823. feralSheath: {
  14824. height: math.unit(9.8, "feet"),
  14825. weight: math.unit(2000, "kilograms"),
  14826. name: "Sheath",
  14827. image: {
  14828. source: "./media/characters/varg/sheath.svg"
  14829. },
  14830. form: "feral"
  14831. },
  14832. feralDick: {
  14833. height: math.unit(13.11, "feet"),
  14834. weight: math.unit(10440, "kilograms"),
  14835. name: "Dick",
  14836. image: {
  14837. source: "./media/characters/varg/dick.svg"
  14838. },
  14839. form: "feral"
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(5, "meters"),
  14846. form: "anthro"
  14847. },
  14848. {
  14849. name: "Macro",
  14850. height: math.unit(200, "meters"),
  14851. form: "anthro"
  14852. },
  14853. {
  14854. name: "Megamacro",
  14855. height: math.unit(20, "kilometers"),
  14856. form: "anthro"
  14857. },
  14858. {
  14859. name: "True Size",
  14860. height: math.unit(211, "km"),
  14861. form: "anthro",
  14862. default: true
  14863. },
  14864. {
  14865. name: "Gigamacro",
  14866. height: math.unit(1000, "km"),
  14867. form: "anthro"
  14868. },
  14869. {
  14870. name: "Gigamacro+",
  14871. height: math.unit(8000, "km"),
  14872. form: "anthro"
  14873. },
  14874. {
  14875. name: "Teramacro",
  14876. height: math.unit(1000000, "km"),
  14877. form: "anthro"
  14878. },
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(5, "meters"),
  14882. form: "feral"
  14883. },
  14884. {
  14885. name: "Macro",
  14886. height: math.unit(200, "meters"),
  14887. form: "feral"
  14888. },
  14889. {
  14890. name: "Megamacro",
  14891. height: math.unit(20, "kilometers"),
  14892. form: "feral"
  14893. },
  14894. {
  14895. name: "True Size",
  14896. height: math.unit(211, "km"),
  14897. form: "feral",
  14898. default: true
  14899. },
  14900. {
  14901. name: "Gigamacro",
  14902. height: math.unit(1000, "km"),
  14903. form: "feral"
  14904. },
  14905. {
  14906. name: "Gigamacro+",
  14907. height: math.unit(8000, "km"),
  14908. form: "feral"
  14909. },
  14910. {
  14911. name: "Teramacro",
  14912. height: math.unit(1000000, "km"),
  14913. form: "feral"
  14914. },
  14915. ],
  14916. {
  14917. "anthro": {
  14918. name: "Anthro",
  14919. default: true
  14920. },
  14921. "feral": {
  14922. name: "Feral",
  14923. },
  14924. }
  14925. ))
  14926. characterMakers.push(() => makeCharacter(
  14927. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14928. {
  14929. front: {
  14930. height: math.unit(7 + 7 / 12, "feet"),
  14931. weight: math.unit(267, "lb"),
  14932. name: "Front",
  14933. image: {
  14934. source: "./media/characters/dayza/front.svg",
  14935. extra: 1262 / 1200,
  14936. bottom: 0.035
  14937. }
  14938. },
  14939. side: {
  14940. height: math.unit(7 + 7 / 12, "feet"),
  14941. weight: math.unit(267, "lb"),
  14942. name: "Side",
  14943. image: {
  14944. source: "./media/characters/dayza/side.svg",
  14945. extra: 1295 / 1245,
  14946. bottom: 0.05
  14947. }
  14948. },
  14949. back: {
  14950. height: math.unit(7 + 7 / 12, "feet"),
  14951. weight: math.unit(267, "lb"),
  14952. name: "Back",
  14953. image: {
  14954. source: "./media/characters/dayza/back.svg",
  14955. extra: 1241 / 1170
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(7 + 7 / 12, "feet"),
  14963. default: true
  14964. },
  14965. {
  14966. name: "Macro",
  14967. height: math.unit(155, "feet")
  14968. },
  14969. ]
  14970. ))
  14971. characterMakers.push(() => makeCharacter(
  14972. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14973. {
  14974. front: {
  14975. height: math.unit(6 + 5 / 12, "feet"),
  14976. weight: math.unit(160, "lb"),
  14977. name: "Front",
  14978. image: {
  14979. source: "./media/characters/xanthos/front.svg",
  14980. extra: 1,
  14981. bottom: 0.04
  14982. }
  14983. },
  14984. back: {
  14985. height: math.unit(6 + 5 / 12, "feet"),
  14986. weight: math.unit(160, "lb"),
  14987. name: "Back",
  14988. image: {
  14989. source: "./media/characters/xanthos/back.svg",
  14990. extra: 1,
  14991. bottom: 0.03
  14992. }
  14993. },
  14994. hand: {
  14995. height: math.unit(0.928, "feet"),
  14996. name: "Hand",
  14997. image: {
  14998. source: "./media/characters/xanthos/hand.svg"
  14999. }
  15000. },
  15001. foot: {
  15002. height: math.unit(1.286, "feet"),
  15003. name: "Foot",
  15004. image: {
  15005. source: "./media/characters/xanthos/foot.svg"
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Normal",
  15012. height: math.unit(6 + 5 / 12, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Normal+",
  15017. height: math.unit(6, "meters")
  15018. },
  15019. {
  15020. name: "Macro",
  15021. height: math.unit(40, "feet")
  15022. },
  15023. {
  15024. name: "Macro+",
  15025. height: math.unit(200, "meters")
  15026. },
  15027. {
  15028. name: "Megamacro",
  15029. height: math.unit(20, "km")
  15030. },
  15031. {
  15032. name: "Megamacro+",
  15033. height: math.unit(100, "km")
  15034. },
  15035. {
  15036. name: "Gigamacro",
  15037. height: math.unit(200, "megameters")
  15038. },
  15039. {
  15040. name: "Gigamacro+",
  15041. height: math.unit(1.5, "gigameters")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6 + 3 / 12, "feet"),
  15050. weight: math.unit(215, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/grynn/front.svg",
  15054. extra: 4627 / 4209,
  15055. bottom: 0.047
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Micro",
  15062. height: math.unit(6, "inches")
  15063. },
  15064. {
  15065. name: "Normal",
  15066. height: math.unit(6 + 3 / 12, "feet"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Big",
  15071. height: math.unit(104, "feet")
  15072. },
  15073. {
  15074. name: "Macro",
  15075. height: math.unit(944, "feet")
  15076. },
  15077. {
  15078. name: "Macro+",
  15079. height: math.unit(9480, "feet")
  15080. },
  15081. {
  15082. name: "Megamacro",
  15083. height: math.unit(78752, "feet")
  15084. },
  15085. {
  15086. name: "Megamacro+",
  15087. height: math.unit(630128, "feet")
  15088. },
  15089. {
  15090. name: "Megamacro++",
  15091. height: math.unit(3150695, "feet")
  15092. },
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(7 + 5 / 12, "feet"),
  15100. weight: math.unit(450, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/mocha-aura/front.svg",
  15104. extra: 1907 / 1817,
  15105. bottom: 0.04
  15106. }
  15107. },
  15108. back: {
  15109. height: math.unit(7 + 5 / 12, "feet"),
  15110. weight: math.unit(450, "lb"),
  15111. name: "Back",
  15112. image: {
  15113. source: "./media/characters/mocha-aura/back.svg",
  15114. extra: 1900 / 1825,
  15115. bottom: 0.045
  15116. }
  15117. },
  15118. },
  15119. [
  15120. {
  15121. name: "Nano",
  15122. height: math.unit(1, "nm")
  15123. },
  15124. {
  15125. name: "Megamicro",
  15126. height: math.unit(1, "mm")
  15127. },
  15128. {
  15129. name: "Micro",
  15130. height: math.unit(3, "inches")
  15131. },
  15132. {
  15133. name: "Normal",
  15134. height: math.unit(7 + 5 / 12, "feet"),
  15135. default: true
  15136. },
  15137. {
  15138. name: "Macro",
  15139. height: math.unit(30, "feet")
  15140. },
  15141. {
  15142. name: "Megamacro",
  15143. height: math.unit(3500, "feet")
  15144. },
  15145. {
  15146. name: "Teramacro",
  15147. height: math.unit(500000, "miles")
  15148. },
  15149. {
  15150. name: "Petamacro",
  15151. height: math.unit(50000000000000000, "parsecs")
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(6, "feet"),
  15160. weight: math.unit(150, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/ilisha-devya/front.svg",
  15164. extra: 1053/1049,
  15165. bottom: 270/1323
  15166. }
  15167. },
  15168. back: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Back",
  15172. image: {
  15173. source: "./media/characters/ilisha-devya/back.svg",
  15174. extra: 1131/1128,
  15175. bottom: 39/1170
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Macro",
  15182. height: math.unit(500, "feet"),
  15183. default: true
  15184. },
  15185. {
  15186. name: "Megamacro",
  15187. height: math.unit(10, "miles")
  15188. },
  15189. {
  15190. name: "Gigamacro",
  15191. height: math.unit(100000, "miles")
  15192. },
  15193. {
  15194. name: "Examacro",
  15195. height: math.unit(1e9, "lightyears")
  15196. },
  15197. {
  15198. name: "Omniversal",
  15199. height: math.unit(1e33, "lightyears")
  15200. },
  15201. {
  15202. name: "Beyond Infinite",
  15203. height: math.unit(1e100, "lightyears")
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15209. {
  15210. Side: {
  15211. height: math.unit(6, "feet"),
  15212. weight: math.unit(150, "lb"),
  15213. name: "Side",
  15214. image: {
  15215. source: "./media/characters/mira/side.svg",
  15216. extra: 900 / 799,
  15217. bottom: 0.02
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Human Size",
  15224. height: math.unit(6, "feet")
  15225. },
  15226. {
  15227. name: "Macro",
  15228. height: math.unit(100, "feet"),
  15229. default: true
  15230. },
  15231. {
  15232. name: "Megamacro",
  15233. height: math.unit(10, "miles")
  15234. },
  15235. {
  15236. name: "Gigamacro",
  15237. height: math.unit(25000, "miles")
  15238. },
  15239. {
  15240. name: "Teramacro",
  15241. height: math.unit(300, "AU")
  15242. },
  15243. {
  15244. name: "Full Size",
  15245. height: math.unit(4.5e10, "lightyears")
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(6, "feet"),
  15254. weight: math.unit(150, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/holly/front.svg",
  15258. extra: 639 / 606
  15259. }
  15260. },
  15261. back: {
  15262. height: math.unit(6, "feet"),
  15263. weight: math.unit(150, "lb"),
  15264. name: "Back",
  15265. image: {
  15266. source: "./media/characters/holly/back.svg",
  15267. extra: 623 / 598
  15268. }
  15269. },
  15270. frontWorking: {
  15271. height: math.unit(6, "feet"),
  15272. weight: math.unit(150, "lb"),
  15273. name: "Front (Working)",
  15274. image: {
  15275. source: "./media/characters/holly/front-working.svg",
  15276. extra: 607 / 577,
  15277. bottom: 0.048
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(12 + 3 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/porter/front.svg",
  15298. extra: 1,
  15299. bottom: 0.01
  15300. }
  15301. },
  15302. frontRobes: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(150, "lb"),
  15305. name: "Front (Robes)",
  15306. image: {
  15307. source: "./media/characters/porter/front-robes.svg",
  15308. extra: 1.01,
  15309. bottom: 0.01
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(11 + 9 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15323. {
  15324. legendary: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Legendary",
  15328. image: {
  15329. source: "./media/characters/lucy/legendary.svg",
  15330. extra: 1355 / 1100,
  15331. bottom: 0.045
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Legendary",
  15338. height: math.unit(86882 * 2, "miles"),
  15339. default: true
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(6, "feet"),
  15348. weight: math.unit(150, "lb"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/drusilla/front.svg",
  15352. extra: 678 / 635,
  15353. bottom: 0.03
  15354. }
  15355. },
  15356. back: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Back",
  15360. image: {
  15361. source: "./media/characters/drusilla/back.svg",
  15362. extra: 678 / 635,
  15363. bottom: 0.005
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Macro",
  15370. height: math.unit(100, "feet")
  15371. },
  15372. {
  15373. name: "Canon Height",
  15374. height: math.unit(2000, "feet"),
  15375. default: true
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(6, "feet"),
  15384. weight: math.unit(180, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/renard-thatch/front.svg",
  15388. extra: 2411 / 2275,
  15389. bottom: 0.01
  15390. }
  15391. },
  15392. frontPosing: {
  15393. height: math.unit(6, "feet"),
  15394. weight: math.unit(180, "lb"),
  15395. name: "Front (Posing)",
  15396. image: {
  15397. source: "./media/characters/renard-thatch/front-posing.svg",
  15398. extra: 2381 / 2261,
  15399. bottom: 0.01
  15400. }
  15401. },
  15402. back: {
  15403. height: math.unit(6, "feet"),
  15404. weight: math.unit(180, "lb"),
  15405. name: "Back",
  15406. image: {
  15407. source: "./media/characters/renard-thatch/back.svg",
  15408. extra: 2428 / 2288
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Micro",
  15415. height: math.unit(3, "inches")
  15416. },
  15417. {
  15418. name: "Default",
  15419. height: math.unit(6, "feet"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Macro",
  15424. height: math.unit(75, "feet")
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(1450, "feet"),
  15433. weight: math.unit(1.21e6, "tons"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/sekvra/front.svg",
  15437. extra: 1193/1190,
  15438. bottom: 78/1271
  15439. }
  15440. },
  15441. side: {
  15442. height: math.unit(1450, "feet"),
  15443. weight: math.unit(1.21e6, "tons"),
  15444. name: "Side",
  15445. image: {
  15446. source: "./media/characters/sekvra/side.svg",
  15447. extra: 1193/1190,
  15448. bottom: 52/1245
  15449. }
  15450. },
  15451. back: {
  15452. height: math.unit(1450, "feet"),
  15453. weight: math.unit(1.21e6, "tons"),
  15454. name: "Back",
  15455. image: {
  15456. source: "./media/characters/sekvra/back.svg",
  15457. extra: 1219/1216,
  15458. bottom: 21/1240
  15459. }
  15460. },
  15461. frontClothed: {
  15462. height: math.unit(1450, "feet"),
  15463. weight: math.unit(1.21e6, "tons"),
  15464. name: "Front (Clothed)",
  15465. image: {
  15466. source: "./media/characters/sekvra/front-clothed.svg",
  15467. extra: 1192/1189,
  15468. bottom: 79/1271
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(1450, "feet"),
  15476. default: true
  15477. },
  15478. {
  15479. name: "Megamacro",
  15480. height: math.unit(15000, "feet")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/carmine/front.svg",
  15493. extra: 1557/1538,
  15494. bottom: 68/1625
  15495. }
  15496. },
  15497. frontArmor: {
  15498. height: math.unit(6, "feet"),
  15499. weight: math.unit(150, "lb"),
  15500. name: "Front (Armor)",
  15501. image: {
  15502. source: "./media/characters/carmine/front-armor.svg",
  15503. extra: 1549/1530,
  15504. bottom: 82/1631
  15505. }
  15506. },
  15507. mouth: {
  15508. height: math.unit(0.55, "feet"),
  15509. name: "Mouth",
  15510. image: {
  15511. source: "./media/characters/carmine/mouth.svg"
  15512. }
  15513. },
  15514. hand: {
  15515. height: math.unit(1.05, "feet"),
  15516. name: "Hand",
  15517. image: {
  15518. source: "./media/characters/carmine/hand.svg"
  15519. }
  15520. },
  15521. foot: {
  15522. height: math.unit(0.6, "feet"),
  15523. name: "Foot",
  15524. image: {
  15525. source: "./media/characters/carmine/foot.svg"
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Large",
  15532. height: math.unit(1, "mile")
  15533. },
  15534. {
  15535. name: "Huge",
  15536. height: math.unit(40, "miles"),
  15537. default: true
  15538. },
  15539. {
  15540. name: "Colossal",
  15541. height: math.unit(2500, "miles")
  15542. },
  15543. ]
  15544. ))
  15545. characterMakers.push(() => makeCharacter(
  15546. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15547. {
  15548. front: {
  15549. height: math.unit(6, "feet"),
  15550. weight: math.unit(150, "lb"),
  15551. name: "Front",
  15552. image: {
  15553. source: "./media/characters/elyssia/front.svg",
  15554. extra: 2201 / 2035,
  15555. bottom: 0.05
  15556. }
  15557. },
  15558. frontClothed: {
  15559. height: math.unit(6, "feet"),
  15560. weight: math.unit(150, "lb"),
  15561. name: "Front (Clothed)",
  15562. image: {
  15563. source: "./media/characters/elyssia/front-clothed.svg",
  15564. extra: 2201 / 2035,
  15565. bottom: 0.05
  15566. }
  15567. },
  15568. back: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(150, "lb"),
  15571. name: "Back",
  15572. image: {
  15573. source: "./media/characters/elyssia/back.svg",
  15574. extra: 2201 / 2035,
  15575. bottom: 0.013
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Smaller",
  15582. height: math.unit(150, "feet")
  15583. },
  15584. {
  15585. name: "Standard",
  15586. height: math.unit(1400, "feet"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Distracted",
  15591. height: math.unit(15000, "feet")
  15592. },
  15593. ]
  15594. ))
  15595. characterMakers.push(() => makeCharacter(
  15596. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15597. {
  15598. front: {
  15599. height: math.unit(7 + 4/12, "feet"),
  15600. weight: math.unit(690, "lb"),
  15601. name: "Front",
  15602. image: {
  15603. source: "./media/characters/geno-maxwell/front.svg",
  15604. extra: 984/856,
  15605. bottom: 87/1071
  15606. }
  15607. },
  15608. back: {
  15609. height: math.unit(7 + 4/12, "feet"),
  15610. weight: math.unit(690, "lb"),
  15611. name: "Back",
  15612. image: {
  15613. source: "./media/characters/geno-maxwell/back.svg",
  15614. extra: 981/854,
  15615. bottom: 57/1038
  15616. }
  15617. },
  15618. frontCostume: {
  15619. height: math.unit(7 + 4/12, "feet"),
  15620. weight: math.unit(690, "lb"),
  15621. name: "Front (Costume)",
  15622. image: {
  15623. source: "./media/characters/geno-maxwell/front-costume.svg",
  15624. extra: 984/856,
  15625. bottom: 87/1071
  15626. }
  15627. },
  15628. backcostume: {
  15629. height: math.unit(7 + 4/12, "feet"),
  15630. weight: math.unit(690, "lb"),
  15631. name: "Back (Costume)",
  15632. image: {
  15633. source: "./media/characters/geno-maxwell/back-costume.svg",
  15634. extra: 981/854,
  15635. bottom: 57/1038
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Micro",
  15642. height: math.unit(3, "inches")
  15643. },
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(7 + 4 / 12, "feet"),
  15647. default: true
  15648. },
  15649. {
  15650. name: "Macro",
  15651. height: math.unit(220, "feet")
  15652. },
  15653. {
  15654. name: "Megamacro",
  15655. height: math.unit(11, "miles")
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15661. {
  15662. front: {
  15663. height: math.unit(7 + 4/12, "feet"),
  15664. weight: math.unit(750, "lb"),
  15665. name: "Front",
  15666. image: {
  15667. source: "./media/characters/regena-maxwell/front.svg",
  15668. extra: 984/856,
  15669. bottom: 87/1071
  15670. }
  15671. },
  15672. back: {
  15673. height: math.unit(7 + 4/12, "feet"),
  15674. weight: math.unit(750, "lb"),
  15675. name: "Back",
  15676. image: {
  15677. source: "./media/characters/regena-maxwell/back.svg",
  15678. extra: 981/854,
  15679. bottom: 57/1038
  15680. }
  15681. },
  15682. frontCostume: {
  15683. height: math.unit(7 + 4/12, "feet"),
  15684. weight: math.unit(750, "lb"),
  15685. name: "Front (Costume)",
  15686. image: {
  15687. source: "./media/characters/regena-maxwell/front-costume.svg",
  15688. extra: 984/856,
  15689. bottom: 87/1071
  15690. }
  15691. },
  15692. backcostume: {
  15693. height: math.unit(7 + 4/12, "feet"),
  15694. weight: math.unit(750, "lb"),
  15695. name: "Back (Costume)",
  15696. image: {
  15697. source: "./media/characters/regena-maxwell/back-costume.svg",
  15698. extra: 981/854,
  15699. bottom: 57/1038
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Normal",
  15706. height: math.unit(7 + 4 / 12, "feet"),
  15707. default: true
  15708. },
  15709. {
  15710. name: "Macro",
  15711. height: math.unit(220, "feet")
  15712. },
  15713. {
  15714. name: "Megamacro",
  15715. height: math.unit(11, "miles")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(150, "lb"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15728. extra: 860 / 690,
  15729. bottom: 0.03
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Normal",
  15736. height: math.unit(1.7, "meters"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(6, "feet"),
  15746. weight: math.unit(150, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/quilly/front.svg",
  15750. extra: 890 / 776
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Gigamacro",
  15757. height: math.unit(404090, "miles"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(7 + 8 / 12, "feet"),
  15767. weight: math.unit(350, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/tempest/front.svg",
  15771. extra: 1175 / 1086,
  15772. bottom: 0.02
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(7 + 8 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15786. {
  15787. side: {
  15788. height: math.unit(4 + 5 / 12, "feet"),
  15789. weight: math.unit(80, "lb"),
  15790. name: "Side",
  15791. image: {
  15792. source: "./media/characters/rodger/side.svg",
  15793. extra: 1235 / 1118
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Micro",
  15800. height: math.unit(1, "inch")
  15801. },
  15802. {
  15803. name: "Normal",
  15804. height: math.unit(4 + 5 / 12, "feet"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Macro",
  15809. height: math.unit(120, "feet")
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15815. {
  15816. front: {
  15817. height: math.unit(6, "feet"),
  15818. weight: math.unit(150, "lb"),
  15819. name: "Front",
  15820. image: {
  15821. source: "./media/characters/danyel/front.svg",
  15822. extra: 1185 / 1123,
  15823. bottom: 0.05
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Shrunken",
  15830. height: math.unit(0.5, "mm")
  15831. },
  15832. {
  15833. name: "Micro",
  15834. height: math.unit(1, "mm"),
  15835. default: true
  15836. },
  15837. {
  15838. name: "Upsized",
  15839. height: math.unit(5 + 5 / 12, "feet")
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(5 + 6 / 12, "feet"),
  15848. weight: math.unit(200, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/vivian-bijoux/front.svg",
  15852. extra: 1217/1209,
  15853. bottom: 76/1293
  15854. }
  15855. },
  15856. back: {
  15857. height: math.unit(5 + 6 / 12, "feet"),
  15858. weight: math.unit(200, "lb"),
  15859. name: "Back",
  15860. image: {
  15861. source: "./media/characters/vivian-bijoux/back.svg",
  15862. extra: 1214/1208,
  15863. bottom: 51/1265
  15864. }
  15865. },
  15866. dressed: {
  15867. height: math.unit(5 + 6 / 12, "feet"),
  15868. weight: math.unit(200, "lb"),
  15869. name: "Dressed",
  15870. image: {
  15871. source: "./media/characters/vivian-bijoux/dressed.svg",
  15872. extra: 1217/1209,
  15873. bottom: 76/1293
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(5 + 6 / 12, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Bad Dream",
  15885. height: math.unit(500, "feet")
  15886. },
  15887. {
  15888. name: "Nightmare",
  15889. height: math.unit(500, "miles")
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(6 + 1 / 12, "feet"),
  15898. weight: math.unit(260, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/zeta/front.svg",
  15902. extra: 1968 / 1889,
  15903. bottom: 0.06
  15904. }
  15905. },
  15906. back: {
  15907. height: math.unit(6 + 1 / 12, "feet"),
  15908. weight: math.unit(260, "lb"),
  15909. name: "Back",
  15910. image: {
  15911. source: "./media/characters/zeta/back.svg",
  15912. extra: 1944 / 1858,
  15913. bottom: 0.03
  15914. }
  15915. },
  15916. hand: {
  15917. height: math.unit(1.112, "feet"),
  15918. name: "Hand",
  15919. image: {
  15920. source: "./media/characters/zeta/hand.svg"
  15921. }
  15922. },
  15923. foot: {
  15924. height: math.unit(1.48, "feet"),
  15925. name: "Foot",
  15926. image: {
  15927. source: "./media/characters/zeta/foot.svg"
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Micro",
  15934. height: math.unit(6, "inches")
  15935. },
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(6 + 1 / 12, "feet"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro",
  15943. height: math.unit(20, "feet")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/jamie-larsen/front.svg",
  15956. extra: 962 / 933,
  15957. bottom: 0.02
  15958. }
  15959. },
  15960. back: {
  15961. height: math.unit(6, "feet"),
  15962. weight: math.unit(150, "lb"),
  15963. name: "Back",
  15964. image: {
  15965. source: "./media/characters/jamie-larsen/back.svg",
  15966. extra: 997 / 946
  15967. }
  15968. },
  15969. },
  15970. [
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(28 + 7 / 12, "feet"),
  15974. default: true
  15975. },
  15976. {
  15977. name: "Macro+",
  15978. height: math.unit(180, "feet")
  15979. },
  15980. {
  15981. name: "Megamacro",
  15982. height: math.unit(10, "miles")
  15983. },
  15984. {
  15985. name: "Gigamacro",
  15986. height: math.unit(200000, "miles")
  15987. },
  15988. ]
  15989. ))
  15990. characterMakers.push(() => makeCharacter(
  15991. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15992. {
  15993. front: {
  15994. height: math.unit(6, "feet"),
  15995. weight: math.unit(120, "lb"),
  15996. name: "Front",
  15997. image: {
  15998. source: "./media/characters/vance/front.svg",
  15999. extra: 1980 / 1890,
  16000. bottom: 0.09
  16001. }
  16002. },
  16003. back: {
  16004. height: math.unit(6, "feet"),
  16005. weight: math.unit(120, "lb"),
  16006. name: "Back",
  16007. image: {
  16008. source: "./media/characters/vance/back.svg",
  16009. extra: 2081 / 1994,
  16010. bottom: 0.014
  16011. }
  16012. },
  16013. hand: {
  16014. height: math.unit(0.88, "feet"),
  16015. name: "Hand",
  16016. image: {
  16017. source: "./media/characters/vance/hand.svg"
  16018. }
  16019. },
  16020. foot: {
  16021. height: math.unit(0.64, "feet"),
  16022. name: "Foot",
  16023. image: {
  16024. source: "./media/characters/vance/foot.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Small",
  16031. height: math.unit(90, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Macro",
  16036. height: math.unit(100, "meters")
  16037. },
  16038. {
  16039. name: "Megamacro",
  16040. height: math.unit(15, "miles")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(6, "feet"),
  16049. weight: math.unit(180, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/xochitl/front.svg",
  16053. extra: 2297 / 2261,
  16054. bottom: 0.065
  16055. }
  16056. },
  16057. back: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(180, "lb"),
  16060. name: "Back",
  16061. image: {
  16062. source: "./media/characters/xochitl/back.svg",
  16063. extra: 2386 / 2354,
  16064. bottom: 0.01
  16065. }
  16066. },
  16067. foot: {
  16068. height: math.unit(6 / 5 * 1.15, "feet"),
  16069. weight: math.unit(150, "lb"),
  16070. name: "Foot",
  16071. image: {
  16072. source: "./media/characters/xochitl/foot.svg"
  16073. }
  16074. },
  16075. },
  16076. [
  16077. {
  16078. name: "Macro",
  16079. height: math.unit(80, "feet")
  16080. },
  16081. {
  16082. name: "Macro+",
  16083. height: math.unit(400, "feet"),
  16084. default: true
  16085. },
  16086. {
  16087. name: "Gigamacro",
  16088. height: math.unit(80000, "miles")
  16089. },
  16090. {
  16091. name: "Gigamacro+",
  16092. height: math.unit(400000, "miles")
  16093. },
  16094. {
  16095. name: "Teramacro",
  16096. height: math.unit(300, "AU")
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(6, "feet"),
  16105. weight: math.unit(150, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/vincent/front.svg",
  16109. extra: 1130 / 1080,
  16110. bottom: 0.055
  16111. }
  16112. },
  16113. beak: {
  16114. height: math.unit(6 * 0.1, "feet"),
  16115. name: "Beak",
  16116. image: {
  16117. source: "./media/characters/vincent/beak.svg"
  16118. }
  16119. },
  16120. hand: {
  16121. height: math.unit(6 * 0.85, "feet"),
  16122. weight: math.unit(150, "lb"),
  16123. name: "Hand",
  16124. image: {
  16125. source: "./media/characters/vincent/hand.svg"
  16126. }
  16127. },
  16128. foot: {
  16129. height: math.unit(6 * 0.19, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Foot",
  16132. image: {
  16133. source: "./media/characters/vincent/foot.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Base",
  16140. height: math.unit(6 + 5 / 12, "feet"),
  16141. default: true
  16142. },
  16143. {
  16144. name: "Macro",
  16145. height: math.unit(300, "feet")
  16146. },
  16147. {
  16148. name: "Megamacro",
  16149. height: math.unit(2, "miles")
  16150. },
  16151. {
  16152. name: "Gigamacro",
  16153. height: math.unit(1000, "miles")
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(2, "meters"),
  16162. weight: math.unit(500, "kg"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/coatl/front.svg",
  16166. extra: 3948 / 3500,
  16167. bottom: 0.082
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(4, "meters")
  16175. },
  16176. {
  16177. name: "Macro",
  16178. height: math.unit(100, "meters"),
  16179. default: true
  16180. },
  16181. {
  16182. name: "Macro+",
  16183. height: math.unit(300, "meters")
  16184. },
  16185. {
  16186. name: "Megamacro",
  16187. height: math.unit(3, "gigameters")
  16188. },
  16189. {
  16190. name: "Megamacro+",
  16191. height: math.unit(300, "terameters")
  16192. },
  16193. {
  16194. name: "Megamacro++",
  16195. height: math.unit(3, "lightyears")
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(6, "feet"),
  16204. weight: math.unit(50, "kg"),
  16205. name: "front",
  16206. image: {
  16207. source: "./media/characters/shiroryu/front.svg",
  16208. extra: 1990 / 1935
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Mortal Mingling",
  16215. height: math.unit(3, "meters")
  16216. },
  16217. {
  16218. name: "Kaiju-ish",
  16219. height: math.unit(250, "meters")
  16220. },
  16221. {
  16222. name: "Somewhat Godly",
  16223. height: math.unit(400, "km"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Planetary",
  16228. height: math.unit(300, "megameters")
  16229. },
  16230. {
  16231. name: "Galaxy-dwarfing",
  16232. height: math.unit(450, "kiloparsecs")
  16233. },
  16234. {
  16235. name: "Universe Eater",
  16236. height: math.unit(150, "gigaparsecs")
  16237. },
  16238. {
  16239. name: "Almost Immeasurable",
  16240. height: math.unit(1.3e266, "yottaparsecs")
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6, "feet"),
  16249. weight: math.unit(150, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/umeko/front.svg",
  16253. extra: 1,
  16254. bottom: 0.019
  16255. }
  16256. },
  16257. frontArmored: {
  16258. height: math.unit(6, "feet"),
  16259. weight: math.unit(150, "lb"),
  16260. name: "Front (Armored)",
  16261. image: {
  16262. source: "./media/characters/umeko/front-armored.svg",
  16263. extra: 1,
  16264. bottom: 0.021
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Macro",
  16271. height: math.unit(220, "feet"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Guardian Dragon",
  16276. height: math.unit(50, "miles")
  16277. },
  16278. {
  16279. name: "Cosmic",
  16280. height: math.unit(800000, "miles")
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(6, "feet"),
  16289. weight: math.unit(150, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/cassidy/front.svg",
  16293. extra: 810/808,
  16294. bottom: 41/851
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Canon Height",
  16301. height: math.unit(120, "feet"),
  16302. default: true
  16303. },
  16304. {
  16305. name: "Macro+",
  16306. height: math.unit(400, "feet")
  16307. },
  16308. {
  16309. name: "Macro++",
  16310. height: math.unit(4000, "feet")
  16311. },
  16312. {
  16313. name: "Megamacro",
  16314. height: math.unit(3, "miles")
  16315. },
  16316. ]
  16317. ))
  16318. characterMakers.push(() => makeCharacter(
  16319. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16320. {
  16321. front: {
  16322. height: math.unit(6, "feet"),
  16323. weight: math.unit(150, "lb"),
  16324. name: "Front",
  16325. image: {
  16326. source: "./media/characters/isaac/front.svg",
  16327. extra: 896 / 815,
  16328. bottom: 0.11
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Human Size",
  16335. height: math.unit(8, "feet"),
  16336. default: true
  16337. },
  16338. {
  16339. name: "Macro",
  16340. height: math.unit(400, "feet")
  16341. },
  16342. {
  16343. name: "Megamacro",
  16344. height: math.unit(50, "miles")
  16345. },
  16346. {
  16347. name: "Canon Height",
  16348. height: math.unit(200, "AU")
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(6, "feet"),
  16357. weight: math.unit(72, "kg"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/sleekit/front.svg",
  16361. extra: 4693 / 4487,
  16362. bottom: 0.012
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Minimum Height",
  16369. height: math.unit(10, "meters")
  16370. },
  16371. {
  16372. name: "Smaller",
  16373. height: math.unit(25, "meters")
  16374. },
  16375. {
  16376. name: "Larger",
  16377. height: math.unit(38, "meters"),
  16378. default: true
  16379. },
  16380. {
  16381. name: "Maximum height",
  16382. height: math.unit(100, "meters")
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16388. {
  16389. front: {
  16390. height: math.unit(6, "feet"),
  16391. weight: math.unit(150, "lb"),
  16392. name: "Front",
  16393. image: {
  16394. source: "./media/characters/nillia/front.svg",
  16395. extra: 719/665,
  16396. bottom: 6/725
  16397. }
  16398. },
  16399. back: {
  16400. height: math.unit(6, "feet"),
  16401. weight: math.unit(150, "lb"),
  16402. name: "Back",
  16403. image: {
  16404. source: "./media/characters/nillia/back.svg",
  16405. extra: 705/651,
  16406. bottom: 5/710
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Canon Height",
  16413. height: math.unit(489, "feet"),
  16414. default: true
  16415. }
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(150, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/mesmyriza/front.svg",
  16427. extra: 1541/1291,
  16428. bottom: 87/1628
  16429. }
  16430. },
  16431. foot: {
  16432. height: math.unit(6 / (250 / 35), "feet"),
  16433. name: "Foot",
  16434. image: {
  16435. source: "./media/characters/mesmyriza/foot.svg"
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Macro",
  16442. height: math.unit(457, "meters"),
  16443. default: true
  16444. },
  16445. {
  16446. name: "Megamacro",
  16447. height: math.unit(8, "megameters")
  16448. },
  16449. ]
  16450. ))
  16451. characterMakers.push(() => makeCharacter(
  16452. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16453. {
  16454. front: {
  16455. height: math.unit(6, "feet"),
  16456. weight: math.unit(250, "lb"),
  16457. name: "Front",
  16458. image: {
  16459. source: "./media/characters/saudade/front.svg",
  16460. extra: 1172 / 1139,
  16461. bottom: 0.035
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Micro",
  16468. height: math.unit(3, "inches")
  16469. },
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(6, "feet"),
  16473. default: true
  16474. },
  16475. {
  16476. name: "Macro",
  16477. height: math.unit(50, "feet")
  16478. },
  16479. {
  16480. name: "Megamacro",
  16481. height: math.unit(2800, "feet")
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16487. {
  16488. front: {
  16489. height: math.unit(5 + 4 / 12, "feet"),
  16490. weight: math.unit(100, "lb"),
  16491. name: "Front",
  16492. image: {
  16493. source: "./media/characters/keireer/front.svg",
  16494. extra: 716 / 666,
  16495. bottom: 0.05
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(5 + 4 / 12, "feet"),
  16503. default: true
  16504. },
  16505. ]
  16506. ))
  16507. characterMakers.push(() => makeCharacter(
  16508. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16509. {
  16510. front: {
  16511. height: math.unit(5.5, "feet"),
  16512. weight: math.unit(90, "kg"),
  16513. name: "Front",
  16514. image: {
  16515. source: "./media/characters/mirja/front.svg",
  16516. extra: 1452/1262,
  16517. bottom: 67/1519
  16518. }
  16519. },
  16520. frontDressed: {
  16521. height: math.unit(5.5, "feet"),
  16522. weight: math.unit(90, "lb"),
  16523. name: "Front (Dressed)",
  16524. image: {
  16525. source: "./media/characters/mirja/dressed.svg",
  16526. extra: 1452/1262,
  16527. bottom: 67/1519
  16528. }
  16529. },
  16530. back: {
  16531. height: math.unit(6, "feet"),
  16532. weight: math.unit(90, "lb"),
  16533. name: "Back",
  16534. image: {
  16535. source: "./media/characters/mirja/back.svg",
  16536. extra: 1892/1795,
  16537. bottom: 48/1940
  16538. }
  16539. },
  16540. maw: {
  16541. height: math.unit(1.312, "feet"),
  16542. name: "Maw",
  16543. image: {
  16544. source: "./media/characters/mirja/maw.svg"
  16545. }
  16546. },
  16547. paw: {
  16548. height: math.unit(1.15, "feet"),
  16549. name: "Paw",
  16550. image: {
  16551. source: "./media/characters/mirja/paw.svg"
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "\"Incognito\"",
  16558. height: math.unit(3, "meters")
  16559. },
  16560. {
  16561. name: "Strolling Size",
  16562. height: math.unit(15, "km")
  16563. },
  16564. {
  16565. name: "Larger Strolling Size",
  16566. height: math.unit(400, "km")
  16567. },
  16568. {
  16569. name: "Preferred Size",
  16570. height: math.unit(5000, "km"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "True Size",
  16575. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(15, "feet"),
  16584. weight: math.unit(880, "kg"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/nightraver/front.svg",
  16588. extra: 2444 / 2160,
  16589. bottom: 0.027
  16590. }
  16591. },
  16592. back: {
  16593. height: math.unit(15, "feet"),
  16594. weight: math.unit(880, "kg"),
  16595. name: "Back",
  16596. image: {
  16597. source: "./media/characters/nightraver/back.svg",
  16598. extra: 2309 / 2180,
  16599. bottom: 0.005
  16600. }
  16601. },
  16602. sole: {
  16603. height: math.unit(2.878, "feet"),
  16604. name: "Sole",
  16605. image: {
  16606. source: "./media/characters/nightraver/sole.svg"
  16607. }
  16608. },
  16609. foot: {
  16610. height: math.unit(2.285, "feet"),
  16611. name: "Foot",
  16612. image: {
  16613. source: "./media/characters/nightraver/foot.svg"
  16614. }
  16615. },
  16616. maw: {
  16617. height: math.unit(2.67, "feet"),
  16618. name: "Maw",
  16619. image: {
  16620. source: "./media/characters/nightraver/maw.svg"
  16621. }
  16622. },
  16623. },
  16624. [
  16625. {
  16626. name: "Micro",
  16627. height: math.unit(1, "cm")
  16628. },
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(15, "feet"),
  16632. default: true
  16633. },
  16634. {
  16635. name: "Macro",
  16636. height: math.unit(300, "feet")
  16637. },
  16638. {
  16639. name: "Megamacro",
  16640. height: math.unit(300, "miles")
  16641. },
  16642. {
  16643. name: "Gigamacro",
  16644. height: math.unit(10000, "miles")
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16650. {
  16651. side: {
  16652. height: math.unit(2, "inches"),
  16653. weight: math.unit(5, "grams"),
  16654. name: "Side",
  16655. image: {
  16656. source: "./media/characters/arc/side.svg"
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Micro",
  16663. height: math.unit(2, "inches"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16670. {
  16671. front: {
  16672. height: math.unit(1.1938, "meters"),
  16673. weight: math.unit(54, "kg"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/nebula-shahar/front.svg",
  16677. extra: 1642 / 1436,
  16678. bottom: 0.06
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Megamicro",
  16685. height: math.unit(0.3, "mm")
  16686. },
  16687. {
  16688. name: "Micro",
  16689. height: math.unit(3, "cm")
  16690. },
  16691. {
  16692. name: "Normal",
  16693. height: math.unit(138, "cm"),
  16694. default: true
  16695. },
  16696. {
  16697. name: "Macro",
  16698. height: math.unit(30, "m")
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16704. {
  16705. front: {
  16706. height: math.unit(5.24, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/shayla/front.svg",
  16711. extra: 1512 / 1414,
  16712. bottom: 0.01
  16713. }
  16714. },
  16715. back: {
  16716. height: math.unit(5.24, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Back",
  16719. image: {
  16720. source: "./media/characters/shayla/back.svg",
  16721. extra: 1512 / 1414
  16722. }
  16723. },
  16724. hand: {
  16725. height: math.unit(0.7781496062992126, "feet"),
  16726. name: "Hand",
  16727. image: {
  16728. source: "./media/characters/shayla/hand.svg"
  16729. }
  16730. },
  16731. foot: {
  16732. height: math.unit(1.4206036745406823, "feet"),
  16733. name: "Foot",
  16734. image: {
  16735. source: "./media/characters/shayla/foot.svg"
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Micro",
  16742. height: math.unit(0.32, "feet")
  16743. },
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(5.24, "feet"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Macro",
  16751. height: math.unit(492.12, "feet")
  16752. },
  16753. {
  16754. name: "Megamacro",
  16755. height: math.unit(186.41, "miles")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(2.2, "m"),
  16764. weight: math.unit(120, "kg"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/pia-jr/front.svg",
  16768. extra: 1000 / 970,
  16769. bottom: 0.035
  16770. }
  16771. },
  16772. hand: {
  16773. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16774. name: "Hand",
  16775. image: {
  16776. source: "./media/characters/pia-jr/hand.svg"
  16777. }
  16778. },
  16779. paw: {
  16780. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16781. name: "Paw",
  16782. image: {
  16783. source: "./media/characters/pia-jr/paw.svg"
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Micro",
  16790. height: math.unit(1.2, "cm")
  16791. },
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(2.2, "m"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macro",
  16799. height: math.unit(180, "m")
  16800. },
  16801. {
  16802. name: "Megamacro",
  16803. height: math.unit(420, "km")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(2, "m"),
  16812. weight: math.unit(115, "kg"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/pia-sr/front.svg",
  16816. extra: 760 / 730,
  16817. bottom: 0.015
  16818. }
  16819. },
  16820. back: {
  16821. height: math.unit(2, "m"),
  16822. weight: math.unit(115, "kg"),
  16823. name: "Back",
  16824. image: {
  16825. source: "./media/characters/pia-sr/back.svg",
  16826. extra: 760 / 730,
  16827. bottom: 0.01
  16828. }
  16829. },
  16830. hand: {
  16831. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16832. name: "Hand",
  16833. image: {
  16834. source: "./media/characters/pia-sr/hand.svg"
  16835. }
  16836. },
  16837. foot: {
  16838. height: math.unit(1.83, "feet"),
  16839. name: "Foot",
  16840. image: {
  16841. source: "./media/characters/pia-sr/foot.svg"
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Micro",
  16848. height: math.unit(88, "mm")
  16849. },
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(2, "m"),
  16853. default: true
  16854. },
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(200, "m")
  16858. },
  16859. {
  16860. name: "Megamacro",
  16861. height: math.unit(420, "km")
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(8 + 2 / 12, "feet"),
  16870. weight: math.unit(300, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/kibibyte/front.svg",
  16874. extra: 2221 / 2098,
  16875. bottom: 0.04
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(8 + 2 / 12, "feet"),
  16883. default: true
  16884. },
  16885. {
  16886. name: "Socialable Macro",
  16887. height: math.unit(50, "feet")
  16888. },
  16889. {
  16890. name: "Macro",
  16891. height: math.unit(300, "feet")
  16892. },
  16893. {
  16894. name: "Megamacro",
  16895. height: math.unit(500, "miles")
  16896. },
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(6, "feet"),
  16904. weight: math.unit(150, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/felix/front.svg",
  16908. extra: 762 / 722,
  16909. bottom: 0.02
  16910. }
  16911. },
  16912. frontClothed: {
  16913. height: math.unit(6, "feet"),
  16914. weight: math.unit(150, "lb"),
  16915. name: "Front (Clothed)",
  16916. image: {
  16917. source: "./media/characters/felix/front-clothed.svg",
  16918. extra: 762 / 722,
  16919. bottom: 0.02
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6 + 8 / 12, "feet"),
  16927. default: true
  16928. },
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(2600, "feet")
  16932. },
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(450, "miles")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(6 + 1 / 12, "feet"),
  16944. weight: math.unit(250, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/tobo/front.svg",
  16948. extra: 608 / 586,
  16949. bottom: 0.023
  16950. }
  16951. },
  16952. back: {
  16953. height: math.unit(6 + 1 / 12, "feet"),
  16954. weight: math.unit(250, "lb"),
  16955. name: "Back",
  16956. image: {
  16957. source: "./media/characters/tobo/back.svg",
  16958. extra: 608 / 586
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Nano",
  16965. height: math.unit(2, "nm")
  16966. },
  16967. {
  16968. name: "Megamicro",
  16969. height: math.unit(0.1, "mm")
  16970. },
  16971. {
  16972. name: "Micro",
  16973. height: math.unit(1, "inch"),
  16974. default: true
  16975. },
  16976. {
  16977. name: "Human-sized",
  16978. height: math.unit(6 + 1 / 12, "feet")
  16979. },
  16980. {
  16981. name: "Macro",
  16982. height: math.unit(250, "feet")
  16983. },
  16984. {
  16985. name: "Megamacro",
  16986. height: math.unit(75, "miles")
  16987. },
  16988. {
  16989. name: "Texas-sized",
  16990. height: math.unit(750, "miles")
  16991. },
  16992. {
  16993. name: "Teramacro",
  16994. height: math.unit(50000, "miles")
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(6, "feet"),
  17003. weight: math.unit(269, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/danny-kapowsky/front.svg",
  17007. extra: 766 / 736,
  17008. bottom: 0.044
  17009. }
  17010. },
  17011. back: {
  17012. height: math.unit(6, "feet"),
  17013. weight: math.unit(269, "lb"),
  17014. name: "Back",
  17015. image: {
  17016. source: "./media/characters/danny-kapowsky/back.svg",
  17017. extra: 797 / 760,
  17018. bottom: 0.025
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Macro",
  17025. height: math.unit(150, "feet"),
  17026. default: true
  17027. },
  17028. {
  17029. name: "Macro+",
  17030. height: math.unit(200, "feet")
  17031. },
  17032. {
  17033. name: "Macro++",
  17034. height: math.unit(300, "feet")
  17035. },
  17036. {
  17037. name: "Macro+++",
  17038. height: math.unit(400, "feet")
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17044. {
  17045. side: {
  17046. height: math.unit(6, "feet"),
  17047. weight: math.unit(170, "lb"),
  17048. name: "Side",
  17049. image: {
  17050. source: "./media/characters/finn/side.svg",
  17051. extra: 1953 / 1807,
  17052. bottom: 0.057
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Megamacro",
  17059. height: math.unit(14445, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(5 + 6 / 12, "feet"),
  17069. weight: math.unit(125, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/roy/front.svg",
  17073. extra: 1,
  17074. bottom: 0.11
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Micro",
  17081. height: math.unit(3, "inches"),
  17082. default: true
  17083. },
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(5 + 6 / 12, "feet")
  17087. },
  17088. {
  17089. name: "Lesser Macro",
  17090. height: math.unit(60, "feet")
  17091. },
  17092. {
  17093. name: "Greater Macro",
  17094. height: math.unit(120, "feet")
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(100, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/aevsivs/front.svg",
  17107. extra: 1,
  17108. bottom: 0.03
  17109. }
  17110. },
  17111. back: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(100, "lb"),
  17114. name: "Back",
  17115. image: {
  17116. source: "./media/characters/aevsivs/back.svg"
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Micro",
  17123. height: math.unit(2, "inches"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Normal",
  17128. height: math.unit(5, "feet")
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(5 + 7 / 12, "feet"),
  17137. weight: math.unit(159, "lb"),
  17138. name: "Front",
  17139. image: {
  17140. source: "./media/characters/hildegard/front.svg",
  17141. extra: 289 / 269,
  17142. bottom: 7.63 / 297.8
  17143. }
  17144. },
  17145. back: {
  17146. height: math.unit(5 + 7 / 12, "feet"),
  17147. weight: math.unit(159, "lb"),
  17148. name: "Back",
  17149. image: {
  17150. source: "./media/characters/hildegard/back.svg",
  17151. extra: 280 / 260,
  17152. bottom: 2.3 / 282
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(5 + 7 / 12, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17166. {
  17167. bernard: {
  17168. height: math.unit(2 + 7 / 12, "feet"),
  17169. weight: math.unit(66, "lb"),
  17170. name: "Bernard",
  17171. rename: true,
  17172. image: {
  17173. source: "./media/characters/bernard-wilder/bernard.svg",
  17174. extra: 192 / 128,
  17175. bottom: 0.05
  17176. }
  17177. },
  17178. wilder: {
  17179. height: math.unit(5 + 8 / 12, "feet"),
  17180. weight: math.unit(143, "lb"),
  17181. name: "Wilder",
  17182. rename: true,
  17183. image: {
  17184. source: "./media/characters/bernard-wilder/wilder.svg",
  17185. extra: 361 / 312,
  17186. bottom: 0.02
  17187. }
  17188. },
  17189. },
  17190. [
  17191. {
  17192. name: "Normal",
  17193. height: math.unit(2 + 7 / 12, "feet"),
  17194. default: true
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17200. {
  17201. anthro: {
  17202. height: math.unit(6 + 1 / 12, "feet"),
  17203. weight: math.unit(155, "lb"),
  17204. name: "Anthro",
  17205. image: {
  17206. source: "./media/characters/hearth/anthro.svg",
  17207. extra: 1178/1136,
  17208. bottom: 28/1206
  17209. }
  17210. },
  17211. feral: {
  17212. height: math.unit(3.78, "feet"),
  17213. weight: math.unit(35, "kg"),
  17214. name: "Feral",
  17215. image: {
  17216. source: "./media/characters/hearth/feral.svg",
  17217. extra: 153 / 135,
  17218. bottom: 0.03
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(6 + 1 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17232. {
  17233. front: {
  17234. height: math.unit(6, "feet"),
  17235. weight: math.unit(182, "lb"),
  17236. name: "Front",
  17237. image: {
  17238. source: "./media/characters/ingrid/front.svg",
  17239. extra: 294 / 268,
  17240. bottom: 0.027
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(6, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17254. {
  17255. eevee: {
  17256. height: math.unit(2 + 10 / 12, "feet"),
  17257. weight: math.unit(86, "lb"),
  17258. name: "Malgam",
  17259. image: {
  17260. source: "./media/characters/malgam/eevee.svg",
  17261. extra: 952/784,
  17262. bottom: 38/990
  17263. }
  17264. },
  17265. sylveon: {
  17266. height: math.unit(4, "feet"),
  17267. weight: math.unit(101, "lb"),
  17268. name: "Future Malgam",
  17269. rename: true,
  17270. image: {
  17271. source: "./media/characters/malgam/sylveon.svg",
  17272. extra: 371 / 325,
  17273. bottom: 0.015
  17274. }
  17275. },
  17276. gigantamax: {
  17277. height: math.unit(50, "feet"),
  17278. name: "Gigantamax Malgam",
  17279. rename: true,
  17280. image: {
  17281. source: "./media/characters/malgam/gigantamax.svg"
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Normal",
  17288. height: math.unit(2 + 10 / 12, "feet"),
  17289. default: true
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17295. {
  17296. front: {
  17297. height: math.unit(5 + 11 / 12, "feet"),
  17298. weight: math.unit(188, "lb"),
  17299. name: "Front",
  17300. image: {
  17301. source: "./media/characters/fleur/front.svg",
  17302. extra: 309 / 283,
  17303. bottom: 0.007
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(5 + 11 / 12, "feet"),
  17311. default: true
  17312. },
  17313. ]
  17314. ))
  17315. characterMakers.push(() => makeCharacter(
  17316. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17317. {
  17318. front: {
  17319. height: math.unit(5 + 4 / 12, "feet"),
  17320. weight: math.unit(122, "lb"),
  17321. name: "Front",
  17322. image: {
  17323. source: "./media/characters/jude/front.svg",
  17324. extra: 288 / 273,
  17325. bottom: 0.03
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(5 + 4 / 12, "feet"),
  17333. default: true
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17339. {
  17340. front: {
  17341. height: math.unit(5 + 11 / 12, "feet"),
  17342. weight: math.unit(190, "lb"),
  17343. name: "Front",
  17344. image: {
  17345. source: "./media/characters/seara/front.svg",
  17346. extra: 1,
  17347. bottom: 0.05
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Normal",
  17354. height: math.unit(5 + 11 / 12, "feet"),
  17355. default: true
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(16 + 5 / 12, "feet"),
  17364. weight: math.unit(524, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/caspian-lugia/front.svg",
  17368. extra: 1,
  17369. bottom: 0.04
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Normal",
  17376. height: math.unit(16 + 5 / 12, "feet"),
  17377. default: true
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17383. {
  17384. front: {
  17385. height: math.unit(5 + 7 / 12, "feet"),
  17386. weight: math.unit(170, "lb"),
  17387. name: "Front",
  17388. image: {
  17389. source: "./media/characters/mika/front.svg",
  17390. extra: 1,
  17391. bottom: 0.016
  17392. }
  17393. },
  17394. },
  17395. [
  17396. {
  17397. name: "Normal",
  17398. height: math.unit(5 + 7 / 12, "feet"),
  17399. default: true
  17400. },
  17401. ]
  17402. ))
  17403. characterMakers.push(() => makeCharacter(
  17404. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17405. {
  17406. front: {
  17407. height: math.unit(6 + 2 / 12, "feet"),
  17408. weight: math.unit(268, "lb"),
  17409. name: "Front",
  17410. image: {
  17411. source: "./media/characters/sol/front.svg",
  17412. extra: 247 / 231,
  17413. bottom: 0.05
  17414. }
  17415. },
  17416. },
  17417. [
  17418. {
  17419. name: "Normal",
  17420. height: math.unit(6 + 2 / 12, "feet"),
  17421. default: true
  17422. },
  17423. ]
  17424. ))
  17425. characterMakers.push(() => makeCharacter(
  17426. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17427. {
  17428. buizel: {
  17429. height: math.unit(2 + 5 / 12, "feet"),
  17430. weight: math.unit(87, "lb"),
  17431. name: "Front",
  17432. image: {
  17433. source: "./media/characters/umiko/buizel.svg",
  17434. extra: 172 / 157,
  17435. bottom: 0.01
  17436. },
  17437. form: "buizel",
  17438. default: true
  17439. },
  17440. floatzel: {
  17441. height: math.unit(5 + 9 / 12, "feet"),
  17442. weight: math.unit(250, "lb"),
  17443. name: "Front",
  17444. image: {
  17445. source: "./media/characters/umiko/floatzel.svg",
  17446. extra: 1076/1006,
  17447. bottom: 15/1091
  17448. },
  17449. form: "floatzel",
  17450. default: true
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(2 + 5 / 12, "feet"),
  17457. form: "buizel",
  17458. default: true
  17459. },
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(5 + 9 / 12, "feet"),
  17463. form: "floatzel",
  17464. default: true
  17465. },
  17466. ],
  17467. {
  17468. "buizel": {
  17469. name: "Buizel"
  17470. },
  17471. "floatzel": {
  17472. name: "Floatzel",
  17473. default: true
  17474. }
  17475. }
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(6 + 2 / 12, "feet"),
  17482. weight: math.unit(146, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/iliac/front.svg",
  17486. extra: 389 / 365,
  17487. bottom: 0.035
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(6 + 2 / 12, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(170, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/topaz/front.svg",
  17508. extra: 317 / 303,
  17509. bottom: 0.055
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(6, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(5 + 11 / 12, "feet"),
  17526. weight: math.unit(144, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/gabriel/front.svg",
  17530. extra: 285 / 262,
  17531. bottom: 0.004
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(5 + 11 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17545. {
  17546. side: {
  17547. height: math.unit(6 + 5 / 12, "feet"),
  17548. weight: math.unit(300, "lb"),
  17549. name: "Side",
  17550. image: {
  17551. source: "./media/characters/tempest-suicune/side.svg",
  17552. extra: 195 / 154,
  17553. bottom: 0.04
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(6 + 5 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(7 + 2 / 12, "feet"),
  17570. weight: math.unit(322, "lb"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/vulcan/front.svg",
  17574. extra: 154 / 147,
  17575. bottom: 0.04
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(7 + 2 / 12, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(5 + 10 / 12, "feet"),
  17592. weight: math.unit(264, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/gault/front.svg",
  17596. extra: 161 / 140,
  17597. bottom: 0.028
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Normal",
  17604. height: math.unit(5 + 10 / 12, "feet"),
  17605. default: true
  17606. },
  17607. ]
  17608. ))
  17609. characterMakers.push(() => makeCharacter(
  17610. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17611. {
  17612. front: {
  17613. height: math.unit(6, "feet"),
  17614. weight: math.unit(150, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/shard/front.svg",
  17618. extra: 273 / 238,
  17619. bottom: 0.02
  17620. }
  17621. },
  17622. },
  17623. [
  17624. {
  17625. name: "Normal",
  17626. height: math.unit(3 + 6 / 12, "feet"),
  17627. default: true
  17628. },
  17629. ]
  17630. ))
  17631. characterMakers.push(() => makeCharacter(
  17632. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17633. {
  17634. front: {
  17635. height: math.unit(5 + 11 / 12, "feet"),
  17636. weight: math.unit(146, "lb"),
  17637. name: "Front",
  17638. image: {
  17639. source: "./media/characters/ashe/front.svg",
  17640. extra: 400 / 373,
  17641. bottom: 0.01
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(5 + 11 / 12, "feet"),
  17649. default: true
  17650. },
  17651. ]
  17652. ))
  17653. characterMakers.push(() => makeCharacter(
  17654. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17655. {
  17656. front: {
  17657. height: math.unit(5 + 5 / 12, "feet"),
  17658. weight: math.unit(135, "lb"),
  17659. name: "Front",
  17660. image: {
  17661. source: "./media/characters/beatrix/front.svg",
  17662. extra: 392 / 379,
  17663. bottom: 0.01
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(6, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(6 + 2/12, "feet"),
  17680. weight: math.unit(135, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/ignatius/front.svg",
  17684. extra: 1380/1259,
  17685. bottom: 27/1407
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(6 + 2/12, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(6 + 2 / 12, "feet"),
  17702. weight: math.unit(138, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/mei-li/front.svg",
  17706. extra: 237 / 229,
  17707. bottom: 0.03
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(6 + 2 / 12, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(2 + 4 / 12, "feet"),
  17724. weight: math.unit(62, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/puru/front.svg",
  17728. extra: 206 / 149,
  17729. bottom: 0.06
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(2 + 4 / 12, "feet"),
  17737. default: true
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17743. {
  17744. anthro: {
  17745. height: math.unit(5 + 8/12, "feet"),
  17746. weight: math.unit(200, "lb"),
  17747. energyNeed: math.unit(2000, "kcal"),
  17748. name: "Anthro",
  17749. image: {
  17750. source: "./media/characters/kee/anthro.svg",
  17751. extra: 3251/3184,
  17752. bottom: 250/3501
  17753. }
  17754. },
  17755. taur: {
  17756. height: math.unit(11, "feet"),
  17757. weight: math.unit(500, "lb"),
  17758. energyNeed: math.unit(5000, "kcal"),
  17759. name: "Taur",
  17760. image: {
  17761. source: "./media/characters/kee/taur.svg",
  17762. extra: 1362/1320,
  17763. bottom: 83/1445
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(5 + 8/12, "feet"),
  17771. default: true
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(35, "feet")
  17776. },
  17777. ]
  17778. ))
  17779. characterMakers.push(() => makeCharacter(
  17780. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17781. {
  17782. anthro: {
  17783. height: math.unit(7, "feet"),
  17784. weight: math.unit(190, "lb"),
  17785. name: "Anthro",
  17786. image: {
  17787. source: "./media/characters/cobalt-dracha/anthro.svg",
  17788. extra: 231 / 225,
  17789. bottom: 0.04
  17790. }
  17791. },
  17792. feral: {
  17793. height: math.unit(9 + 7 / 12, "feet"),
  17794. weight: math.unit(294, "lb"),
  17795. name: "Feral",
  17796. image: {
  17797. source: "./media/characters/cobalt-dracha/feral.svg",
  17798. extra: 692 / 633,
  17799. bottom: 0.05
  17800. }
  17801. },
  17802. },
  17803. [
  17804. {
  17805. name: "Normal",
  17806. height: math.unit(7, "feet"),
  17807. default: true
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17813. {
  17814. fallen: {
  17815. height: math.unit(11 + 8 / 12, "feet"),
  17816. weight: math.unit(485, "lb"),
  17817. name: "Java (Fallen)",
  17818. rename: true,
  17819. image: {
  17820. source: "./media/characters/java/fallen.svg",
  17821. extra: 226 / 208,
  17822. bottom: 0.005
  17823. }
  17824. },
  17825. godkin: {
  17826. height: math.unit(10 + 6 / 12, "feet"),
  17827. weight: math.unit(328, "lb"),
  17828. name: "Java (Godkin)",
  17829. rename: true,
  17830. image: {
  17831. source: "./media/characters/java/godkin.svg",
  17832. extra: 1104/1068,
  17833. bottom: 36/1140
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(11 + 8 / 12, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(5 + 9 / 12, "feet"),
  17850. weight: math.unit(170, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/purna/front.svg",
  17854. extra: 239 / 229,
  17855. bottom: 0.01
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Normal",
  17862. height: math.unit(5 + 9 / 12, "feet"),
  17863. default: true
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(5 + 9 / 12, "feet"),
  17872. weight: math.unit(142, "lb"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/kuva/front.svg",
  17876. extra: 281 / 271,
  17877. bottom: 0.006
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Normal",
  17884. height: math.unit(5 + 9 / 12, "feet"),
  17885. default: true
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17891. {
  17892. anthro: {
  17893. height: math.unit(9 + 2 / 12, "feet"),
  17894. weight: math.unit(270, "lb"),
  17895. name: "Anthro",
  17896. image: {
  17897. source: "./media/characters/embra/anthro.svg",
  17898. extra: 200 / 187,
  17899. bottom: 0.02
  17900. }
  17901. },
  17902. feral: {
  17903. height: math.unit(18 + 8 / 12, "feet"),
  17904. weight: math.unit(576, "lb"),
  17905. name: "Feral",
  17906. image: {
  17907. source: "./media/characters/embra/feral.svg",
  17908. extra: 152 / 137,
  17909. bottom: 0.037
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(9 + 2 / 12, "feet"),
  17917. default: true
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17923. {
  17924. anthro: {
  17925. height: math.unit(10 + 9 / 12, "feet"),
  17926. weight: math.unit(224, "lb"),
  17927. name: "Anthro",
  17928. image: {
  17929. source: "./media/characters/grottos/anthro.svg",
  17930. extra: 350 / 332,
  17931. bottom: 0.045
  17932. }
  17933. },
  17934. feral: {
  17935. height: math.unit(20 + 7 / 12, "feet"),
  17936. weight: math.unit(629, "lb"),
  17937. name: "Feral",
  17938. image: {
  17939. source: "./media/characters/grottos/feral.svg",
  17940. extra: 207 / 190,
  17941. bottom: 0.05
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(10 + 9 / 12, "feet"),
  17949. default: true
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17955. {
  17956. anthro: {
  17957. height: math.unit(9 + 6 / 12, "feet"),
  17958. weight: math.unit(298, "lb"),
  17959. name: "Anthro",
  17960. image: {
  17961. source: "./media/characters/frifna/anthro.svg",
  17962. extra: 282 / 269,
  17963. bottom: 0.015
  17964. }
  17965. },
  17966. feral: {
  17967. height: math.unit(16 + 2 / 12, "feet"),
  17968. weight: math.unit(624, "lb"),
  17969. name: "Feral",
  17970. image: {
  17971. source: "./media/characters/frifna/feral.svg"
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(9 + 6 / 12, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(6 + 2 / 12, "feet"),
  17988. weight: math.unit(168, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/elise/front.svg",
  17992. extra: 276 / 271
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(6 + 2 / 12, "feet"),
  18000. default: true
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(5 + 10 / 12, "feet"),
  18009. weight: math.unit(210, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/glade/front.svg",
  18013. extra: 258 / 247,
  18014. bottom: 0.008
  18015. }
  18016. },
  18017. },
  18018. [
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(5 + 10 / 12, "feet"),
  18022. default: true
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18028. {
  18029. front: {
  18030. height: math.unit(5 + 10 / 12, "feet"),
  18031. weight: math.unit(129, "lb"),
  18032. name: "Front",
  18033. image: {
  18034. source: "./media/characters/rina/front.svg",
  18035. extra: 266 / 255,
  18036. bottom: 0.005
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(5 + 10 / 12, "feet"),
  18044. default: true
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(6 + 1 / 12, "feet"),
  18053. weight: math.unit(192, "lb"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/veronica/front.svg",
  18057. extra: 319 / 309,
  18058. bottom: 0.005
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Normal",
  18065. height: math.unit(6 + 1 / 12, "feet"),
  18066. default: true
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(9 + 3 / 12, "feet"),
  18075. weight: math.unit(1100, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/braxton/front.svg",
  18079. extra: 1057 / 984,
  18080. bottom: 0.05
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(9 + 3 / 12, "feet")
  18088. },
  18089. {
  18090. name: "Giant",
  18091. height: math.unit(300, "feet"),
  18092. default: true
  18093. },
  18094. {
  18095. name: "Macro",
  18096. height: math.unit(700, "feet")
  18097. },
  18098. {
  18099. name: "Megamacro",
  18100. height: math.unit(6000, "feet")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(6 + 7 / 12, "feet"),
  18109. weight: math.unit(150, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/blue-feyonics/front.svg",
  18113. extra: 1403 / 1306,
  18114. bottom: 0.047
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(6 + 7 / 12, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(1.8, "meters"),
  18131. weight: math.unit(60, "kg"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/maxwell/front.svg",
  18135. extra: 2060 / 1873
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Micro",
  18142. height: math.unit(1, "mm")
  18143. },
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(1.8, "meter"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "Macro",
  18151. height: math.unit(30, "meters")
  18152. },
  18153. {
  18154. name: "Megamacro",
  18155. height: math.unit(10, "km")
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(6, "feet"),
  18164. weight: math.unit(150, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/jack/front.svg",
  18168. extra: 1754 / 1640,
  18169. bottom: 0.01
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(80000, "feet"),
  18177. default: true
  18178. },
  18179. {
  18180. name: "Max size",
  18181. height: math.unit(10, "lightyears")
  18182. },
  18183. ]
  18184. ))
  18185. characterMakers.push(() => makeCharacter(
  18186. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18187. {
  18188. urban: {
  18189. height: math.unit(5, "feet"),
  18190. weight: math.unit(240, "lb"),
  18191. name: "Urban",
  18192. image: {
  18193. source: "./media/characters/cafat/urban.svg",
  18194. extra: 1223/1126,
  18195. bottom: 205/1428
  18196. }
  18197. },
  18198. summer: {
  18199. height: math.unit(5, "feet"),
  18200. weight: math.unit(240, "lb"),
  18201. name: "Summer",
  18202. image: {
  18203. source: "./media/characters/cafat/summer.svg",
  18204. extra: 1223/1126,
  18205. bottom: 205/1428
  18206. }
  18207. },
  18208. winter: {
  18209. height: math.unit(5, "feet"),
  18210. weight: math.unit(240, "lb"),
  18211. name: "Winter",
  18212. image: {
  18213. source: "./media/characters/cafat/winter.svg",
  18214. extra: 1223/1126,
  18215. bottom: 205/1428
  18216. }
  18217. },
  18218. lingerie: {
  18219. height: math.unit(5, "feet"),
  18220. weight: math.unit(240, "lb"),
  18221. name: "Lingerie",
  18222. image: {
  18223. source: "./media/characters/cafat/lingerie.svg",
  18224. extra: 1223/1126,
  18225. bottom: 205/1428
  18226. }
  18227. },
  18228. upright: {
  18229. height: math.unit(6.3, "feet"),
  18230. weight: math.unit(240, "lb"),
  18231. name: "Upright",
  18232. image: {
  18233. source: "./media/characters/cafat/upright.svg",
  18234. bottom: 0.01
  18235. }
  18236. },
  18237. uprightFull: {
  18238. height: math.unit(6.3, "feet"),
  18239. weight: math.unit(240, "lb"),
  18240. name: "Upright (Full)",
  18241. image: {
  18242. source: "./media/characters/cafat/upright-full.svg",
  18243. bottom: 0.01
  18244. }
  18245. },
  18246. },
  18247. [
  18248. {
  18249. name: "Small",
  18250. height: math.unit(5, "feet"),
  18251. default: true
  18252. },
  18253. {
  18254. name: "Large",
  18255. height: math.unit(13, "feet")
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18261. {
  18262. front: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/verin-raharra/front.svg",
  18268. extra: 5019 / 4835,
  18269. bottom: 0.023
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(7 + 5 / 12, "feet"),
  18277. default: true
  18278. },
  18279. {
  18280. name: "Upsized",
  18281. height: math.unit(20, "feet")
  18282. },
  18283. ]
  18284. ))
  18285. characterMakers.push(() => makeCharacter(
  18286. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18287. {
  18288. front: {
  18289. height: math.unit(7, "feet"),
  18290. weight: math.unit(230, "lb"),
  18291. name: "Front",
  18292. image: {
  18293. source: "./media/characters/nakata/front.svg",
  18294. extra: 1.005,
  18295. bottom: 0.01
  18296. }
  18297. },
  18298. },
  18299. [
  18300. {
  18301. name: "Normal",
  18302. height: math.unit(7, "feet"),
  18303. default: true
  18304. },
  18305. {
  18306. name: "Big",
  18307. height: math.unit(14, "feet")
  18308. },
  18309. {
  18310. name: "Macro",
  18311. height: math.unit(400, "feet")
  18312. },
  18313. ]
  18314. ))
  18315. characterMakers.push(() => makeCharacter(
  18316. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18317. {
  18318. front: {
  18319. height: math.unit(4.91, "feet"),
  18320. weight: math.unit(100, "lb"),
  18321. name: "Front",
  18322. image: {
  18323. source: "./media/characters/lily/front.svg",
  18324. extra: 1585 / 1415,
  18325. bottom: 0.02
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Normal",
  18332. height: math.unit(4.91, "feet"),
  18333. default: true
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18339. {
  18340. laying: {
  18341. height: math.unit(4 + 4 / 12, "feet"),
  18342. weight: math.unit(600, "lb"),
  18343. name: "Laying",
  18344. image: {
  18345. source: "./media/characters/sheila/laying.svg",
  18346. extra: 1333 / 1265,
  18347. bottom: 0.16
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(4 + 4 / 12, "feet"),
  18355. default: true
  18356. },
  18357. ]
  18358. ))
  18359. characterMakers.push(() => makeCharacter(
  18360. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18361. {
  18362. front: {
  18363. height: math.unit(6, "feet"),
  18364. weight: math.unit(190, "lb"),
  18365. name: "Front",
  18366. image: {
  18367. source: "./media/characters/sax/front.svg",
  18368. extra: 1187 / 973,
  18369. bottom: 0.042
  18370. }
  18371. },
  18372. },
  18373. [
  18374. {
  18375. name: "Micro",
  18376. height: math.unit(4, "inches"),
  18377. default: true
  18378. },
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(6, "feet"),
  18386. weight: math.unit(150, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/pandora/front.svg",
  18390. extra: 2720 / 2556,
  18391. bottom: 0.015
  18392. }
  18393. },
  18394. back: {
  18395. height: math.unit(6, "feet"),
  18396. weight: math.unit(150, "lb"),
  18397. name: "Back",
  18398. image: {
  18399. source: "./media/characters/pandora/back.svg",
  18400. extra: 2720 / 2556,
  18401. bottom: 0.01
  18402. }
  18403. },
  18404. beans: {
  18405. height: math.unit(6 / 8, "feet"),
  18406. name: "Beans",
  18407. image: {
  18408. source: "./media/characters/pandora/beans.svg"
  18409. }
  18410. },
  18411. collar: {
  18412. height: math.unit(0.31, "feet"),
  18413. name: "Collar",
  18414. image: {
  18415. source: "./media/characters/pandora/collar.svg"
  18416. }
  18417. },
  18418. skirt: {
  18419. height: math.unit(6, "feet"),
  18420. weight: math.unit(150, "lb"),
  18421. name: "Skirt",
  18422. image: {
  18423. source: "./media/characters/pandora/skirt.svg",
  18424. extra: 1622 / 1525,
  18425. bottom: 0.015
  18426. }
  18427. },
  18428. hoodie: {
  18429. height: math.unit(6, "feet"),
  18430. weight: math.unit(150, "lb"),
  18431. name: "Hoodie",
  18432. image: {
  18433. source: "./media/characters/pandora/hoodie.svg",
  18434. extra: 1622 / 1525,
  18435. bottom: 0.015
  18436. }
  18437. },
  18438. casual: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(150, "lb"),
  18441. name: "Casual",
  18442. image: {
  18443. source: "./media/characters/pandora/casual.svg",
  18444. extra: 1622 / 1525,
  18445. bottom: 0.015
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(6, "feet")
  18453. },
  18454. {
  18455. name: "Big Steppy",
  18456. height: math.unit(1, "km"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Galactic Steppy",
  18461. height: math.unit(2, "gigameters")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18467. {
  18468. side: {
  18469. height: math.unit(10, "feet"),
  18470. weight: math.unit(800, "kg"),
  18471. name: "Side",
  18472. image: {
  18473. source: "./media/characters/venio-darcony/side.svg",
  18474. extra: 1373 / 1003,
  18475. bottom: 0.037
  18476. }
  18477. },
  18478. front: {
  18479. height: math.unit(19, "feet"),
  18480. weight: math.unit(800, "kg"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/venio-darcony/front.svg"
  18484. }
  18485. },
  18486. back: {
  18487. height: math.unit(19, "feet"),
  18488. weight: math.unit(800, "kg"),
  18489. name: "Back",
  18490. image: {
  18491. source: "./media/characters/venio-darcony/back.svg"
  18492. }
  18493. },
  18494. sideNsfw: {
  18495. height: math.unit(10, "feet"),
  18496. weight: math.unit(800, "kg"),
  18497. name: "Side (NSFW)",
  18498. image: {
  18499. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18500. extra: 1373 / 1003,
  18501. bottom: 0.037
  18502. }
  18503. },
  18504. frontNsfw: {
  18505. height: math.unit(19, "feet"),
  18506. weight: math.unit(800, "kg"),
  18507. name: "Front (NSFW)",
  18508. image: {
  18509. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18510. }
  18511. },
  18512. backNsfw: {
  18513. height: math.unit(19, "feet"),
  18514. weight: math.unit(800, "kg"),
  18515. name: "Back (NSFW)",
  18516. image: {
  18517. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18518. }
  18519. },
  18520. sideArmored: {
  18521. height: math.unit(10, "feet"),
  18522. weight: math.unit(800, "kg"),
  18523. name: "Side (Armored)",
  18524. image: {
  18525. source: "./media/characters/venio-darcony/side-armored.svg",
  18526. extra: 1373 / 1003,
  18527. bottom: 0.037
  18528. }
  18529. },
  18530. frontArmored: {
  18531. height: math.unit(19, "feet"),
  18532. weight: math.unit(900, "kg"),
  18533. name: "Front (Armored)",
  18534. image: {
  18535. source: "./media/characters/venio-darcony/front-armored.svg"
  18536. }
  18537. },
  18538. backArmored: {
  18539. height: math.unit(19, "feet"),
  18540. weight: math.unit(900, "kg"),
  18541. name: "Back (Armored)",
  18542. image: {
  18543. source: "./media/characters/venio-darcony/back-armored.svg"
  18544. }
  18545. },
  18546. sword: {
  18547. height: math.unit(10, "feet"),
  18548. weight: math.unit(50, "lb"),
  18549. name: "Sword",
  18550. image: {
  18551. source: "./media/characters/venio-darcony/sword.svg"
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(10, "feet")
  18559. },
  18560. {
  18561. name: "Macro",
  18562. height: math.unit(130, "feet"),
  18563. default: true
  18564. },
  18565. {
  18566. name: "Macro+",
  18567. height: math.unit(240, "feet")
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18573. {
  18574. front: {
  18575. height: math.unit(6, "feet"),
  18576. weight: math.unit(150, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/veski/front.svg",
  18580. extra: 1299 / 1225,
  18581. bottom: 0.04
  18582. }
  18583. },
  18584. back: {
  18585. height: math.unit(6, "feet"),
  18586. weight: math.unit(150, "lb"),
  18587. name: "Back",
  18588. image: {
  18589. source: "./media/characters/veski/back.svg",
  18590. extra: 1299 / 1225,
  18591. bottom: 0.008
  18592. }
  18593. },
  18594. maw: {
  18595. height: math.unit(1.5 * 1.21, "feet"),
  18596. name: "Maw",
  18597. image: {
  18598. source: "./media/characters/veski/maw.svg"
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(2, "km"),
  18606. default: true
  18607. },
  18608. ]
  18609. ))
  18610. characterMakers.push(() => makeCharacter(
  18611. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18612. {
  18613. front: {
  18614. height: math.unit(5 + 7 / 12, "feet"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/isabelle/front.svg",
  18618. extra: 2130 / 1976,
  18619. bottom: 0.05
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Supermicro",
  18626. height: math.unit(10, "micrometers")
  18627. },
  18628. {
  18629. name: "Micro",
  18630. height: math.unit(1, "inch")
  18631. },
  18632. {
  18633. name: "Tiny",
  18634. height: math.unit(5, "inches")
  18635. },
  18636. {
  18637. name: "Standard",
  18638. height: math.unit(5 + 7 / 12, "inches")
  18639. },
  18640. {
  18641. name: "Macro",
  18642. height: math.unit(80, "meters"),
  18643. default: true
  18644. },
  18645. {
  18646. name: "Megamacro",
  18647. height: math.unit(250, "meters")
  18648. },
  18649. {
  18650. name: "Gigamacro",
  18651. height: math.unit(5, "km")
  18652. },
  18653. {
  18654. name: "Cosmic",
  18655. height: math.unit(2.5e6, "miles")
  18656. },
  18657. ]
  18658. ))
  18659. characterMakers.push(() => makeCharacter(
  18660. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18661. {
  18662. front: {
  18663. height: math.unit(6, "feet"),
  18664. weight: math.unit(150, "lb"),
  18665. name: "Front",
  18666. image: {
  18667. source: "./media/characters/hanzo/front.svg",
  18668. extra: 374 / 344,
  18669. bottom: 0.02
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(8, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(7, "feet"),
  18686. weight: math.unit(130, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/anna/front.svg",
  18690. extra: 169 / 145,
  18691. bottom: 0.06
  18692. }
  18693. },
  18694. full: {
  18695. height: math.unit(4.96, "feet"),
  18696. weight: math.unit(220, "lb"),
  18697. name: "Full",
  18698. image: {
  18699. source: "./media/characters/anna/full.svg",
  18700. extra: 138 / 114,
  18701. bottom: 0.15
  18702. }
  18703. },
  18704. tongue: {
  18705. height: math.unit(2.53, "feet"),
  18706. name: "Tongue",
  18707. image: {
  18708. source: "./media/characters/anna/tongue.svg"
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Normal",
  18715. height: math.unit(7, "feet"),
  18716. default: true
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(7 + 1/12, "feet"),
  18725. weight: math.unit(150, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/ian-corvid/front.svg",
  18729. extra: 621/591,
  18730. bottom: 14/635
  18731. }
  18732. },
  18733. back: {
  18734. height: math.unit(7 + 1/12, "feet"),
  18735. weight: math.unit(150, "lb"),
  18736. name: "Back",
  18737. image: {
  18738. source: "./media/characters/ian-corvid/back.svg",
  18739. extra: 621/600,
  18740. bottom: 10/631
  18741. }
  18742. },
  18743. stomping: {
  18744. height: math.unit(7 + 1/12, "feet"),
  18745. weight: math.unit(150, "lb"),
  18746. name: "Stomping",
  18747. image: {
  18748. source: "./media/characters/ian-corvid/stomping.svg",
  18749. extra: 309/291,
  18750. bottom: 7/316
  18751. }
  18752. },
  18753. tongue: {
  18754. height: math.unit(3.9, "feet"),
  18755. name: "Tongue",
  18756. image: {
  18757. source: "./media/characters/ian-corvid/tongue.svg"
  18758. }
  18759. },
  18760. beak: {
  18761. height: math.unit(0.9, "feet"),
  18762. name: "Beak",
  18763. image: {
  18764. source: "./media/characters/ian-corvid/beak.svg"
  18765. }
  18766. },
  18767. sitting: {
  18768. height: math.unit(7 / 1.8, "feet"),
  18769. weight: math.unit(150, "lb"),
  18770. name: "Sitting",
  18771. image: {
  18772. source: "./media/characters/ian-corvid/sitting.svg",
  18773. extra: 1400 / 1269,
  18774. bottom: 0.15
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Tiny Microw",
  18781. height: math.unit(1, "inch")
  18782. },
  18783. {
  18784. name: "Microw",
  18785. height: math.unit(6, "inches")
  18786. },
  18787. {
  18788. name: "Crow",
  18789. height: math.unit(7 + 1 / 12, "feet"),
  18790. default: true
  18791. },
  18792. {
  18793. name: "Macrow",
  18794. height: math.unit(176, "feet")
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18800. {
  18801. front: {
  18802. height: math.unit(5 + 7 / 12, "feet"),
  18803. weight: math.unit(147, "lb"),
  18804. name: "Front",
  18805. image: {
  18806. source: "./media/characters/natalie-kellon/front.svg",
  18807. extra: 1214 / 1141,
  18808. bottom: 0.02
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Micro",
  18815. height: math.unit(1 / 16, "inch")
  18816. },
  18817. {
  18818. name: "Tiny",
  18819. height: math.unit(4, "inches")
  18820. },
  18821. {
  18822. name: "Normal",
  18823. height: math.unit(5 + 7 / 12, "feet"),
  18824. default: true
  18825. },
  18826. {
  18827. name: "Amazon",
  18828. height: math.unit(12, "feet")
  18829. },
  18830. {
  18831. name: "Giantess",
  18832. height: math.unit(160, "meters")
  18833. },
  18834. {
  18835. name: "Titaness",
  18836. height: math.unit(800, "meters")
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(6, "feet"),
  18845. weight: math.unit(150, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/alluria/front.svg",
  18849. extra: 806 / 738,
  18850. bottom: 0.01
  18851. }
  18852. },
  18853. side: {
  18854. height: math.unit(6, "feet"),
  18855. weight: math.unit(150, "lb"),
  18856. name: "Side",
  18857. image: {
  18858. source: "./media/characters/alluria/side.svg",
  18859. extra: 800 / 750,
  18860. }
  18861. },
  18862. back: {
  18863. height: math.unit(6, "feet"),
  18864. weight: math.unit(150, "lb"),
  18865. name: "Back",
  18866. image: {
  18867. source: "./media/characters/alluria/back.svg",
  18868. extra: 806 / 738,
  18869. }
  18870. },
  18871. frontMaid: {
  18872. height: math.unit(6, "feet"),
  18873. weight: math.unit(150, "lb"),
  18874. name: "Front (Maid)",
  18875. image: {
  18876. source: "./media/characters/alluria/front-maid.svg",
  18877. extra: 806 / 738,
  18878. bottom: 0.01
  18879. }
  18880. },
  18881. sideMaid: {
  18882. height: math.unit(6, "feet"),
  18883. weight: math.unit(150, "lb"),
  18884. name: "Side (Maid)",
  18885. image: {
  18886. source: "./media/characters/alluria/side-maid.svg",
  18887. extra: 800 / 750,
  18888. bottom: 0.005
  18889. }
  18890. },
  18891. backMaid: {
  18892. height: math.unit(6, "feet"),
  18893. weight: math.unit(150, "lb"),
  18894. name: "Back (Maid)",
  18895. image: {
  18896. source: "./media/characters/alluria/back-maid.svg",
  18897. extra: 806 / 738,
  18898. }
  18899. },
  18900. },
  18901. [
  18902. {
  18903. name: "Micro",
  18904. height: math.unit(6, "inches"),
  18905. default: true
  18906. },
  18907. ]
  18908. ))
  18909. characterMakers.push(() => makeCharacter(
  18910. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18911. {
  18912. front: {
  18913. height: math.unit(6, "feet"),
  18914. weight: math.unit(150, "lb"),
  18915. name: "Front",
  18916. image: {
  18917. source: "./media/characters/kyle/front.svg",
  18918. extra: 1069 / 962,
  18919. bottom: 77.228 / 1727.45
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(150, "feet"),
  18927. default: true
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18933. {
  18934. front: {
  18935. height: math.unit(6, "feet"),
  18936. weight: math.unit(300, "lb"),
  18937. name: "Front",
  18938. image: {
  18939. source: "./media/characters/duncan/front.svg",
  18940. extra: 1650 / 1482,
  18941. bottom: 0.05
  18942. }
  18943. },
  18944. },
  18945. [
  18946. {
  18947. name: "Macro",
  18948. height: math.unit(100, "feet"),
  18949. default: true
  18950. },
  18951. ]
  18952. ))
  18953. characterMakers.push(() => makeCharacter(
  18954. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18955. {
  18956. front: {
  18957. height: math.unit(5 + 4 / 12, "feet"),
  18958. weight: math.unit(220, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/memory/front.svg",
  18962. extra: 3641 / 3545,
  18963. bottom: 0.03
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(5 + 4 / 12, "feet"),
  18968. weight: math.unit(220, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/memory/back.svg",
  18972. extra: 3641 / 3545,
  18973. bottom: 0.025
  18974. }
  18975. },
  18976. frontSkirt: {
  18977. height: math.unit(5 + 4 / 12, "feet"),
  18978. weight: math.unit(220, "lb"),
  18979. name: "Front (Skirt)",
  18980. image: {
  18981. source: "./media/characters/memory/front-skirt.svg",
  18982. extra: 3641 / 3545,
  18983. bottom: 0.03
  18984. }
  18985. },
  18986. frontDress: {
  18987. height: math.unit(5 + 4 / 12, "feet"),
  18988. weight: math.unit(220, "lb"),
  18989. name: "Front (Dress)",
  18990. image: {
  18991. source: "./media/characters/memory/front-dress.svg",
  18992. extra: 3641 / 3545,
  18993. bottom: 0.03
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Micro",
  19000. height: math.unit(6, "inches"),
  19001. default: true
  19002. },
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(5 + 4 / 12, "feet")
  19006. },
  19007. ]
  19008. ))
  19009. characterMakers.push(() => makeCharacter(
  19010. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19011. {
  19012. front: {
  19013. height: math.unit(4 + 11 / 12, "feet"),
  19014. weight: math.unit(100, "lb"),
  19015. name: "Front",
  19016. image: {
  19017. source: "./media/characters/luno/front.svg",
  19018. extra: 1535 / 1487,
  19019. bottom: 0.03
  19020. }
  19021. },
  19022. },
  19023. [
  19024. {
  19025. name: "Micro",
  19026. height: math.unit(3, "inches")
  19027. },
  19028. {
  19029. name: "Normal",
  19030. height: math.unit(4 + 11 / 12, "feet"),
  19031. default: true
  19032. },
  19033. {
  19034. name: "Macro",
  19035. height: math.unit(300, "feet")
  19036. },
  19037. {
  19038. name: "Megamacro",
  19039. height: math.unit(700, "miles")
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(6 + 2 / 12, "feet"),
  19048. weight: math.unit(170, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/jamesy/front.svg",
  19052. extra: 440 / 382,
  19053. bottom: 0.005
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Micro",
  19060. height: math.unit(3, "inches")
  19061. },
  19062. {
  19063. name: "Normal",
  19064. height: math.unit(6 + 2 / 12, "feet"),
  19065. default: true
  19066. },
  19067. {
  19068. name: "Macro",
  19069. height: math.unit(300, "feet")
  19070. },
  19071. {
  19072. name: "Megamacro",
  19073. height: math.unit(700, "miles")
  19074. },
  19075. ]
  19076. ))
  19077. characterMakers.push(() => makeCharacter(
  19078. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19079. {
  19080. front: {
  19081. height: math.unit(6, "feet"),
  19082. weight: math.unit(160, "lb"),
  19083. name: "Front",
  19084. image: {
  19085. source: "./media/characters/mark/front.svg",
  19086. extra: 3300 / 3100,
  19087. bottom: 136.42 / 3440.47
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Macro",
  19094. height: math.unit(120, "meters")
  19095. },
  19096. {
  19097. name: "Bigger Macro",
  19098. height: math.unit(350, "meters")
  19099. },
  19100. {
  19101. name: "Megamacro",
  19102. height: math.unit(8, "km"),
  19103. default: true
  19104. },
  19105. {
  19106. name: "Continental",
  19107. height: math.unit(4550, "km")
  19108. },
  19109. {
  19110. name: "Planetary",
  19111. height: math.unit(65000, "km")
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19117. {
  19118. front: {
  19119. height: math.unit(6, "feet"),
  19120. weight: math.unit(400, "lb"),
  19121. name: "Front",
  19122. image: {
  19123. source: "./media/characters/mac/front.svg",
  19124. extra: 1048 / 987.7,
  19125. bottom: 60 / 1107.6,
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Macro",
  19132. height: math.unit(500, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19139. {
  19140. front: {
  19141. height: math.unit(5 + 2 / 12, "feet"),
  19142. weight: math.unit(190, "lb"),
  19143. name: "Front",
  19144. image: {
  19145. source: "./media/characters/bari/front.svg",
  19146. extra: 3156 / 2880,
  19147. bottom: 0.03
  19148. }
  19149. },
  19150. back: {
  19151. height: math.unit(5 + 2 / 12, "feet"),
  19152. weight: math.unit(190, "lb"),
  19153. name: "Back",
  19154. image: {
  19155. source: "./media/characters/bari/back.svg",
  19156. extra: 3260 / 2834,
  19157. bottom: 0.025
  19158. }
  19159. },
  19160. frontPlush: {
  19161. height: math.unit(5 + 2 / 12, "feet"),
  19162. weight: math.unit(190, "lb"),
  19163. name: "Front (Plush)",
  19164. image: {
  19165. source: "./media/characters/bari/front-plush.svg",
  19166. extra: 1112 / 1061,
  19167. bottom: 0.002
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Micro",
  19174. height: math.unit(3, "inches")
  19175. },
  19176. {
  19177. name: "Normal",
  19178. height: math.unit(5 + 2 / 12, "feet"),
  19179. default: true
  19180. },
  19181. {
  19182. name: "Macro",
  19183. height: math.unit(20, "feet")
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19189. {
  19190. front: {
  19191. height: math.unit(6 + 1 / 12, "feet"),
  19192. weight: math.unit(275, "lb"),
  19193. name: "Front",
  19194. image: {
  19195. source: "./media/characters/hunter-misha-raven/front.svg"
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Mortal",
  19202. height: math.unit(6 + 1 / 12, "feet")
  19203. },
  19204. {
  19205. name: "Divine",
  19206. height: math.unit(1.12134e34, "parsecs"),
  19207. default: true
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(6 + 3 / 12, "feet"),
  19216. weight: math.unit(220, "lb"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/max-calore/front.svg",
  19220. extra: 1700 / 1648,
  19221. bottom: 0.01
  19222. }
  19223. },
  19224. back: {
  19225. height: math.unit(6 + 3 / 12, "feet"),
  19226. weight: math.unit(220, "lb"),
  19227. name: "Back",
  19228. image: {
  19229. source: "./media/characters/max-calore/back.svg",
  19230. extra: 1700 / 1648,
  19231. bottom: 0.01
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(6 + 3 / 12, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19245. {
  19246. side: {
  19247. height: math.unit(2 + 8 / 12, "feet"),
  19248. weight: math.unit(99, "lb"),
  19249. name: "Side",
  19250. image: {
  19251. source: "./media/characters/aspen/side.svg",
  19252. extra: 152 / 138,
  19253. bottom: 0.032
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(2 + 8 / 12, "feet"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19267. {
  19268. side: {
  19269. height: math.unit(3 + 2 / 12, "feet"),
  19270. weight: math.unit(224, "lb"),
  19271. name: "Side",
  19272. image: {
  19273. source: "./media/characters/sheila-feral-wolf/side.svg",
  19274. extra: 179 / 166,
  19275. bottom: 0.03
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(3 + 2 / 12, "feet"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19289. {
  19290. side: {
  19291. height: math.unit(1 + 9 / 12, "feet"),
  19292. weight: math.unit(38, "lb"),
  19293. name: "Side",
  19294. image: {
  19295. source: "./media/characters/michelle/side.svg",
  19296. extra: 147 / 136.7,
  19297. bottom: 0.03
  19298. }
  19299. },
  19300. },
  19301. [
  19302. {
  19303. name: "Normal",
  19304. height: math.unit(1 + 9 / 12, "feet"),
  19305. default: true
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19311. {
  19312. front: {
  19313. height: math.unit(1.54, "feet"),
  19314. weight: math.unit(50, "lb"),
  19315. name: "Front",
  19316. image: {
  19317. source: "./media/characters/nino/front.svg"
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(1.54, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(1.49, "feet"),
  19334. weight: math.unit(45, "lb"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/viola/front.svg"
  19338. }
  19339. },
  19340. },
  19341. [
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(1.49, "feet"),
  19345. default: true
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(6 + 5 / 12, "feet"),
  19354. weight: math.unit(580, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/atlas/front.svg",
  19358. extra: 298.5 / 290,
  19359. bottom: 0.015
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(6 + 5 / 12, "feet"),
  19367. default: true
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19373. {
  19374. side: {
  19375. height: math.unit(15.6, "inches"),
  19376. weight: math.unit(10, "lb"),
  19377. name: "Side",
  19378. image: {
  19379. source: "./media/characters/davy/side.svg",
  19380. extra: 200 / 170,
  19381. bottom: 0.01
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(15.6, "inches"),
  19389. default: true
  19390. },
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19395. {
  19396. side: {
  19397. height: math.unit(4 + 8 / 12, "feet"),
  19398. weight: math.unit(166, "lb"),
  19399. name: "Side",
  19400. image: {
  19401. source: "./media/characters/fiona/side.svg",
  19402. extra: 232 / 220,
  19403. bottom: 0.03
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(4 + 8 / 12, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19417. {
  19418. front: {
  19419. height: math.unit(26, "inches"),
  19420. weight: math.unit(35, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/lyla/front.svg",
  19424. bottom: 0.1
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(3, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19438. {
  19439. side: {
  19440. height: math.unit(1.8, "feet"),
  19441. weight: math.unit(44, "lb"),
  19442. name: "Side",
  19443. image: {
  19444. source: "./media/characters/perseus/side.svg",
  19445. bottom: 0.21
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(1.8, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19459. {
  19460. side: {
  19461. height: math.unit(4 + 2 / 12, "feet"),
  19462. weight: math.unit(20, "lb"),
  19463. name: "Side",
  19464. image: {
  19465. source: "./media/characters/remus/side.svg"
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(4 + 2 / 12, "feet"),
  19473. default: true
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(4 + 11 / 12, "feet"),
  19482. weight: math.unit(114, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/raf/front.svg",
  19486. extra: 1504/1339,
  19487. bottom: 26/1530
  19488. }
  19489. },
  19490. side: {
  19491. height: math.unit(4 + 11 / 12, "feet"),
  19492. weight: math.unit(114, "lb"),
  19493. name: "Side",
  19494. image: {
  19495. source: "./media/characters/raf/side.svg",
  19496. extra: 1466/1316,
  19497. bottom: 29/1495
  19498. }
  19499. },
  19500. paw: {
  19501. height: math.unit(1.45, "feet"),
  19502. name: "Paw",
  19503. image: {
  19504. source: "./media/characters/raf/paw.svg"
  19505. },
  19506. extraAttributes: {
  19507. "toeSize": {
  19508. name: "Toe Size",
  19509. power: 2,
  19510. type: "area",
  19511. base: math.unit(0.004, "m^2")
  19512. },
  19513. "padSize": {
  19514. name: "Pad Size",
  19515. power: 2,
  19516. type: "area",
  19517. base: math.unit(0.04, "m^2")
  19518. },
  19519. "footSize": {
  19520. name: "Foot Size",
  19521. power: 2,
  19522. type: "area",
  19523. base: math.unit(0.08, "m^2")
  19524. },
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Micro",
  19531. height: math.unit(2, "inches")
  19532. },
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(4 + 11 / 12, "feet"),
  19536. default: true
  19537. },
  19538. {
  19539. name: "Macro",
  19540. height: math.unit(70, "feet")
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(1.5, "meters"),
  19549. weight: math.unit(68, "kg"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/liam-einarr/front.svg",
  19553. extra: 2822 / 2666
  19554. }
  19555. },
  19556. back: {
  19557. height: math.unit(1.5, "meters"),
  19558. weight: math.unit(68, "kg"),
  19559. name: "Back",
  19560. image: {
  19561. source: "./media/characters/liam-einarr/back.svg",
  19562. extra: 2822 / 2666,
  19563. bottom: 0.015
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(1.5, "meters"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro",
  19575. height: math.unit(150, "meters")
  19576. },
  19577. {
  19578. name: "Megamacro",
  19579. height: math.unit(35, "km")
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(6, "feet"),
  19588. weight: math.unit(75, "kg"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/linda/front.svg",
  19592. extra: 930 / 874,
  19593. bottom: 0.004
  19594. }
  19595. },
  19596. },
  19597. [
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(6, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6 + 8 / 12, "feet"),
  19610. weight: math.unit(220, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/caylex/front.svg",
  19614. extra: 821 / 772,
  19615. bottom: 0.07
  19616. }
  19617. },
  19618. back: {
  19619. height: math.unit(6 + 8 / 12, "feet"),
  19620. weight: math.unit(220, "lb"),
  19621. name: "Back",
  19622. image: {
  19623. source: "./media/characters/caylex/back.svg",
  19624. extra: 821 / 772,
  19625. bottom: 0.022
  19626. }
  19627. },
  19628. hand: {
  19629. height: math.unit(1.25, "feet"),
  19630. name: "Hand",
  19631. image: {
  19632. source: "./media/characters/caylex/hand.svg"
  19633. }
  19634. },
  19635. foot: {
  19636. height: math.unit(1.6, "feet"),
  19637. name: "Foot",
  19638. image: {
  19639. source: "./media/characters/caylex/foot.svg"
  19640. }
  19641. },
  19642. armored: {
  19643. height: math.unit(6 + 8 / 12, "feet"),
  19644. weight: math.unit(250, "lb"),
  19645. name: "Armored",
  19646. image: {
  19647. source: "./media/characters/caylex/armored.svg",
  19648. extra: 1420 / 1310,
  19649. bottom: 0.045
  19650. }
  19651. },
  19652. },
  19653. [
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(6 + 8 / 12, "feet"),
  19657. default: true
  19658. },
  19659. {
  19660. name: "Normal+",
  19661. height: math.unit(12, "feet")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(7 + 6 / 12, "feet"),
  19670. weight: math.unit(288, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/alana/front.svg",
  19674. extra: 679 / 653,
  19675. bottom: 22.5 / 701
  19676. }
  19677. },
  19678. },
  19679. [
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(7 + 6 / 12, "feet")
  19683. },
  19684. {
  19685. name: "Large",
  19686. height: math.unit(50, "feet")
  19687. },
  19688. {
  19689. name: "Macro",
  19690. height: math.unit(100, "feet"),
  19691. default: true
  19692. },
  19693. {
  19694. name: "Macro+",
  19695. height: math.unit(200, "feet")
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(6 + 1 / 12, "feet"),
  19704. weight: math.unit(210, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/hasani/front.svg",
  19708. extra: 244 / 232,
  19709. bottom: 0.01
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(6 + 1 / 12, "feet"),
  19714. weight: math.unit(210, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/hasani/back.svg",
  19718. extra: 244 / 232,
  19719. bottom: 0.01
  19720. }
  19721. },
  19722. },
  19723. [
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(6 + 1 / 12, "feet")
  19727. },
  19728. {
  19729. name: "Macro",
  19730. height: math.unit(175, "feet"),
  19731. default: true
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19737. {
  19738. front: {
  19739. height: math.unit(1.82, "meters"),
  19740. weight: math.unit(140, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/nita/front.svg",
  19744. extra: 2473 / 2363,
  19745. bottom: 0.01
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(1.82, "m")
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(300, "m")
  19757. },
  19758. {
  19759. name: "Mistake Canon",
  19760. height: math.unit(0.5, "miles"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Big Mistake",
  19765. height: math.unit(13, "miles")
  19766. },
  19767. {
  19768. name: "Playing God",
  19769. height: math.unit(2450, "miles")
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(4, "feet"),
  19778. weight: math.unit(120, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/shiriko/front.svg",
  19782. extra: 970/934,
  19783. bottom: 5/975
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(4, "feet"),
  19791. default: true
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19797. {
  19798. front: {
  19799. height: math.unit(6, "feet"),
  19800. name: "front",
  19801. image: {
  19802. source: "./media/characters/deja/front.svg",
  19803. extra: 926 / 840,
  19804. bottom: 0.07
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Planck Length",
  19811. height: math.unit(1.6e-35, "meters")
  19812. },
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(30.48, "meters"),
  19816. default: true
  19817. },
  19818. {
  19819. name: "Universal",
  19820. height: math.unit(8.8e26, "meters")
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19826. {
  19827. side: {
  19828. height: math.unit(8, "feet"),
  19829. weight: math.unit(6300, "lb"),
  19830. name: "Side",
  19831. image: {
  19832. source: "./media/characters/anima/side.svg",
  19833. bottom: 0.035
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(8, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(8, "feet"),
  19850. weight: math.unit(350, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/bianca/front.svg",
  19854. extra: 234 / 225,
  19855. bottom: 0.03
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Normal",
  19862. height: math.unit(8, "feet"),
  19863. default: true
  19864. },
  19865. ]
  19866. ))
  19867. characterMakers.push(() => makeCharacter(
  19868. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19869. {
  19870. front: {
  19871. height: math.unit(11 + 5/12, "feet"),
  19872. weight: math.unit(1200, "lb"),
  19873. name: "Front",
  19874. image: {
  19875. source: "./media/characters/adinia/front.svg",
  19876. extra: 1767/1641,
  19877. bottom: 44/1811
  19878. },
  19879. extraAttributes: {
  19880. "energyIntake": {
  19881. name: "Energy Intake",
  19882. power: 3,
  19883. type: "energy",
  19884. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19885. },
  19886. }
  19887. },
  19888. back: {
  19889. height: math.unit(11 + 5/12, "feet"),
  19890. weight: math.unit(1200, "lb"),
  19891. name: "Back",
  19892. image: {
  19893. source: "./media/characters/adinia/back.svg",
  19894. extra: 1834/1684,
  19895. bottom: 14/1848
  19896. },
  19897. extraAttributes: {
  19898. "energyIntake": {
  19899. name: "Energy Intake",
  19900. power: 3,
  19901. type: "energy",
  19902. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19903. },
  19904. }
  19905. },
  19906. maw: {
  19907. height: math.unit(3.79, "feet"),
  19908. name: "Maw",
  19909. image: {
  19910. source: "./media/characters/adinia/maw.svg"
  19911. }
  19912. },
  19913. rump: {
  19914. height: math.unit(4.6, "feet"),
  19915. name: "Rump",
  19916. image: {
  19917. source: "./media/characters/adinia/rump.svg"
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Normal",
  19924. height: math.unit(11 + 5 / 12, "feet"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19931. {
  19932. front: {
  19933. height: math.unit(3, "meters"),
  19934. weight: math.unit(200, "kg"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/lykasa/front.svg",
  19938. extra: 1076 / 976,
  19939. bottom: 0.06
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(3, "meters")
  19947. },
  19948. {
  19949. name: "Kaiju",
  19950. height: math.unit(120, "meters"),
  19951. default: true
  19952. },
  19953. {
  19954. name: "Mega Kaiju",
  19955. height: math.unit(240, "km")
  19956. },
  19957. {
  19958. name: "Giga Kaiju",
  19959. height: math.unit(400, "megameters")
  19960. },
  19961. {
  19962. name: "Tera Kaiju",
  19963. height: math.unit(800, "gigameters")
  19964. },
  19965. {
  19966. name: "Kaiju Dragon Goddess",
  19967. height: math.unit(26, "zettaparsecs")
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19973. {
  19974. side: {
  19975. height: math.unit(283 / 124 * 6, "feet"),
  19976. weight: math.unit(35000, "lb"),
  19977. name: "Side",
  19978. image: {
  19979. source: "./media/characters/malfaren/side.svg",
  19980. extra: 1310/529,
  19981. bottom: 24/1334
  19982. }
  19983. },
  19984. front: {
  19985. height: math.unit(22.36, "feet"),
  19986. weight: math.unit(35000, "lb"),
  19987. name: "Front",
  19988. image: {
  19989. source: "./media/characters/malfaren/front.svg",
  19990. extra: 1237/1115,
  19991. bottom: 32/1269
  19992. }
  19993. },
  19994. maw: {
  19995. height: math.unit(6.9, "feet"),
  19996. name: "Maw",
  19997. image: {
  19998. source: "./media/characters/malfaren/maw.svg"
  19999. }
  20000. },
  20001. dick: {
  20002. height: math.unit(6.19, "feet"),
  20003. name: "Dick",
  20004. image: {
  20005. source: "./media/characters/malfaren/dick.svg"
  20006. }
  20007. },
  20008. eye: {
  20009. height: math.unit(0.69, "feet"),
  20010. name: "Eye",
  20011. image: {
  20012. source: "./media/characters/malfaren/eye.svg"
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Big",
  20019. height: math.unit(283 / 162 * 6, "feet"),
  20020. },
  20021. {
  20022. name: "Bigger",
  20023. height: math.unit(283 / 124 * 6, "feet")
  20024. },
  20025. {
  20026. name: "Massive",
  20027. height: math.unit(283 / 92 * 6, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "👀💦",
  20032. height: math.unit(283 / 73 * 6, "feet"),
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(1.7, "m"),
  20041. weight: math.unit(70, "kg"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/kernel/front.svg",
  20045. extra: 1960/1821,
  20046. bottom: 17/1977
  20047. }
  20048. },
  20049. },
  20050. [
  20051. {
  20052. name: "Nano",
  20053. height: math.unit(17, "micrometers")
  20054. },
  20055. {
  20056. name: "Micro",
  20057. height: math.unit(1.7, "mm")
  20058. },
  20059. {
  20060. name: "Small",
  20061. height: math.unit(1.7, "cm")
  20062. },
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(1.7, "m"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(1.75, "meters"),
  20075. weight: math.unit(65, "kg"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/jayne-folest/front.svg",
  20079. extra: 2115 / 2007,
  20080. bottom: 0.02
  20081. }
  20082. },
  20083. back: {
  20084. height: math.unit(1.75, "meters"),
  20085. weight: math.unit(65, "kg"),
  20086. name: "Back",
  20087. image: {
  20088. source: "./media/characters/jayne-folest/back.svg",
  20089. extra: 2115 / 2007,
  20090. bottom: 0.005
  20091. }
  20092. },
  20093. frontClothed: {
  20094. height: math.unit(1.75, "meters"),
  20095. weight: math.unit(65, "kg"),
  20096. name: "Front (Clothed)",
  20097. image: {
  20098. source: "./media/characters/jayne-folest/front-clothed.svg",
  20099. extra: 2115 / 2007,
  20100. bottom: 0.035
  20101. }
  20102. },
  20103. hand: {
  20104. height: math.unit(1 / 1.260, "feet"),
  20105. name: "Hand",
  20106. image: {
  20107. source: "./media/characters/jayne-folest/hand.svg"
  20108. }
  20109. },
  20110. foot: {
  20111. height: math.unit(1 / 0.918, "feet"),
  20112. name: "Foot",
  20113. image: {
  20114. source: "./media/characters/jayne-folest/foot.svg"
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Micro",
  20121. height: math.unit(4, "cm")
  20122. },
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(1.75, "meters")
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(47.5, "meters"),
  20130. default: true
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(180, "cm"),
  20139. weight: math.unit(70, "kg"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/algier/front.svg",
  20143. extra: 596 / 572,
  20144. bottom: 0.04
  20145. }
  20146. },
  20147. back: {
  20148. height: math.unit(180, "cm"),
  20149. weight: math.unit(70, "kg"),
  20150. name: "Back",
  20151. image: {
  20152. source: "./media/characters/algier/back.svg",
  20153. extra: 596 / 572,
  20154. bottom: 0.025
  20155. }
  20156. },
  20157. frontdressed: {
  20158. height: math.unit(180, "cm"),
  20159. weight: math.unit(150, "kg"),
  20160. name: "Front (Dressed)",
  20161. image: {
  20162. source: "./media/characters/algier/front-dressed.svg",
  20163. extra: 596 / 572,
  20164. bottom: 0.038
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Micro",
  20171. height: math.unit(5, "cm")
  20172. },
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(180, "cm"),
  20176. default: true
  20177. },
  20178. {
  20179. name: "Macro",
  20180. height: math.unit(64, "m")
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20186. {
  20187. upright: {
  20188. height: math.unit(7, "feet"),
  20189. weight: math.unit(300, "lb"),
  20190. name: "Upright",
  20191. image: {
  20192. source: "./media/characters/pretzel/upright.svg",
  20193. extra: 534 / 522,
  20194. bottom: 0.065
  20195. }
  20196. },
  20197. sprawling: {
  20198. height: math.unit(3.75, "feet"),
  20199. weight: math.unit(300, "lb"),
  20200. name: "Sprawling",
  20201. image: {
  20202. source: "./media/characters/pretzel/sprawling.svg",
  20203. extra: 314 / 281,
  20204. bottom: 0.1
  20205. }
  20206. },
  20207. tongue: {
  20208. height: math.unit(2, "feet"),
  20209. name: "Tongue",
  20210. image: {
  20211. source: "./media/characters/pretzel/tongue.svg"
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(7, "feet"),
  20219. default: true
  20220. },
  20221. {
  20222. name: "Oversized",
  20223. height: math.unit(15, "feet")
  20224. },
  20225. {
  20226. name: "Huge",
  20227. height: math.unit(30, "feet")
  20228. },
  20229. {
  20230. name: "Macro",
  20231. height: math.unit(250, "feet")
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20237. {
  20238. sideFront: {
  20239. height: math.unit(5 + 2 / 12, "feet"),
  20240. weight: math.unit(120, "lb"),
  20241. name: "Front Side",
  20242. image: {
  20243. source: "./media/characters/roxi/side-front.svg",
  20244. extra: 2924 / 2717,
  20245. bottom: 0.08
  20246. }
  20247. },
  20248. sideBack: {
  20249. height: math.unit(5 + 2 / 12, "feet"),
  20250. weight: math.unit(120, "lb"),
  20251. name: "Back Side",
  20252. image: {
  20253. source: "./media/characters/roxi/side-back.svg",
  20254. extra: 2904 / 2693,
  20255. bottom: 0.06
  20256. }
  20257. },
  20258. front: {
  20259. height: math.unit(5 + 2 / 12, "feet"),
  20260. weight: math.unit(120, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/roxi/front.svg",
  20264. extra: 2028 / 1907,
  20265. bottom: 0.01
  20266. }
  20267. },
  20268. frontAlt: {
  20269. height: math.unit(5 + 2 / 12, "feet"),
  20270. weight: math.unit(120, "lb"),
  20271. name: "Front (Alt)",
  20272. image: {
  20273. source: "./media/characters/roxi/front-alt.svg",
  20274. extra: 1828 / 1798,
  20275. bottom: 0.01
  20276. }
  20277. },
  20278. sitting: {
  20279. height: math.unit(2.8, "feet"),
  20280. weight: math.unit(120, "lb"),
  20281. name: "Sitting",
  20282. image: {
  20283. source: "./media/characters/roxi/sitting.svg",
  20284. extra: 2660 / 2462,
  20285. bottom: 0.1
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(5 + 2 / 12, "feet"),
  20293. default: true
  20294. },
  20295. ]
  20296. ))
  20297. characterMakers.push(() => makeCharacter(
  20298. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20299. {
  20300. side: {
  20301. height: math.unit(55, "feet"),
  20302. weight: math.unit(153, "tons"),
  20303. name: "Side",
  20304. image: {
  20305. source: "./media/characters/shadow/side.svg",
  20306. extra: 701 / 628,
  20307. bottom: 0.02
  20308. }
  20309. },
  20310. flying: {
  20311. height: math.unit(145, "feet"),
  20312. weight: math.unit(153, "tons"),
  20313. name: "Flying",
  20314. image: {
  20315. source: "./media/characters/shadow/flying.svg"
  20316. }
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(55, "feet"),
  20323. default: true
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20329. {
  20330. front: {
  20331. height: math.unit(6, "feet"),
  20332. weight: math.unit(200, "lb"),
  20333. name: "Front",
  20334. image: {
  20335. source: "./media/characters/marcie/front.svg",
  20336. extra: 960 / 876,
  20337. bottom: 58 / 1017.87
  20338. }
  20339. },
  20340. },
  20341. [
  20342. {
  20343. name: "Macro",
  20344. height: math.unit(1, "mile"),
  20345. default: true
  20346. },
  20347. ]
  20348. ))
  20349. characterMakers.push(() => makeCharacter(
  20350. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20351. {
  20352. front: {
  20353. height: math.unit(7, "feet"),
  20354. weight: math.unit(200, "lb"),
  20355. name: "Front",
  20356. image: {
  20357. source: "./media/characters/kachina/front.svg",
  20358. extra: 3206/2764,
  20359. bottom: 140/3346
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(7, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20373. {
  20374. looking: {
  20375. height: math.unit(2, "meters"),
  20376. weight: math.unit(300, "kg"),
  20377. name: "Looking",
  20378. image: {
  20379. source: "./media/characters/kash/looking.svg",
  20380. extra: 474 / 344,
  20381. bottom: 0.03
  20382. }
  20383. },
  20384. side: {
  20385. height: math.unit(2, "meters"),
  20386. weight: math.unit(300, "kg"),
  20387. name: "Side",
  20388. image: {
  20389. source: "./media/characters/kash/side.svg",
  20390. extra: 302 / 251,
  20391. bottom: 0.03
  20392. }
  20393. },
  20394. front: {
  20395. height: math.unit(2, "meters"),
  20396. weight: math.unit(300, "kg"),
  20397. name: "Front",
  20398. image: {
  20399. source: "./media/characters/kash/front.svg",
  20400. extra: 495 / 360,
  20401. bottom: 0.015
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(2, "meters"),
  20409. default: true
  20410. },
  20411. {
  20412. name: "Big",
  20413. height: math.unit(3, "meters")
  20414. },
  20415. {
  20416. name: "Large",
  20417. height: math.unit(5, "meters")
  20418. },
  20419. ]
  20420. ))
  20421. characterMakers.push(() => makeCharacter(
  20422. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20423. {
  20424. feeding: {
  20425. height: math.unit(6.7, "feet"),
  20426. weight: math.unit(350, "lb"),
  20427. name: "Feeding",
  20428. image: {
  20429. source: "./media/characters/lalim/feeding.svg",
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(6.7, "feet"),
  20437. default: true
  20438. },
  20439. ]
  20440. ))
  20441. characterMakers.push(() => makeCharacter(
  20442. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20443. {
  20444. front: {
  20445. height: math.unit(9.5, "feet"),
  20446. weight: math.unit(600, "lb"),
  20447. name: "Front",
  20448. image: {
  20449. source: "./media/characters/de'vout/front.svg",
  20450. extra: 1443 / 1328,
  20451. bottom: 0.025
  20452. }
  20453. },
  20454. back: {
  20455. height: math.unit(9.5, "feet"),
  20456. weight: math.unit(600, "lb"),
  20457. name: "Back",
  20458. image: {
  20459. source: "./media/characters/de'vout/back.svg",
  20460. extra: 1443 / 1328
  20461. }
  20462. },
  20463. frontDressed: {
  20464. height: math.unit(9.5, "feet"),
  20465. weight: math.unit(600, "lb"),
  20466. name: "Front (Dressed",
  20467. image: {
  20468. source: "./media/characters/de'vout/front-dressed.svg",
  20469. extra: 1443 / 1328,
  20470. bottom: 0.025
  20471. }
  20472. },
  20473. backDressed: {
  20474. height: math.unit(9.5, "feet"),
  20475. weight: math.unit(600, "lb"),
  20476. name: "Back (Dressed",
  20477. image: {
  20478. source: "./media/characters/de'vout/back-dressed.svg",
  20479. extra: 1443 / 1328
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(9.5, "feet"),
  20487. default: true
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20493. {
  20494. front: {
  20495. height: math.unit(8, "feet"),
  20496. weight: math.unit(225, "lb"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/talana/front.svg",
  20500. extra: 1410 / 1300,
  20501. bottom: 0.015
  20502. }
  20503. },
  20504. frontDressed: {
  20505. height: math.unit(8, "feet"),
  20506. weight: math.unit(225, "lb"),
  20507. name: "Front (Dressed",
  20508. image: {
  20509. source: "./media/characters/talana/front-dressed.svg",
  20510. extra: 1410 / 1300,
  20511. bottom: 0.015
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(8, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20525. {
  20526. side: {
  20527. height: math.unit(7.2, "feet"),
  20528. weight: math.unit(150, "lb"),
  20529. name: "Side",
  20530. image: {
  20531. source: "./media/characters/xeauvok/side.svg",
  20532. extra: 1975 / 1523,
  20533. bottom: 0.07
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(7.2, "feet"),
  20541. default: true
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20547. {
  20548. side: {
  20549. height: math.unit(4, "meters"),
  20550. weight: math.unit(2200, "kg"),
  20551. name: "Side",
  20552. image: {
  20553. source: "./media/characters/zara/side.svg",
  20554. extra: 765/744,
  20555. bottom: 156/921
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(4, "meters"),
  20563. default: true
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20569. {
  20570. side: {
  20571. height: math.unit(6, "feet"),
  20572. weight: math.unit(150, "lb"),
  20573. name: "Side",
  20574. image: {
  20575. source: "./media/characters/richard-dragon/side.svg",
  20576. extra: 845 / 340,
  20577. bottom: 0.017
  20578. }
  20579. },
  20580. maw: {
  20581. height: math.unit(2.97, "feet"),
  20582. name: "Maw",
  20583. image: {
  20584. source: "./media/characters/richard-dragon/maw.svg"
  20585. }
  20586. },
  20587. },
  20588. [
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(4, "feet"),
  20596. weight: math.unit(100, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/richard-smeargle/front.svg",
  20600. extra: 2952 / 2820,
  20601. bottom: 0.028
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(4, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Dynamax",
  20613. height: math.unit(20, "meters")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20619. {
  20620. front: {
  20621. height: math.unit(6, "feet"),
  20622. weight: math.unit(110, "lb"),
  20623. name: "Front",
  20624. image: {
  20625. source: "./media/characters/klay/front.svg",
  20626. extra: 962 / 883,
  20627. bottom: 0.04
  20628. }
  20629. },
  20630. back: {
  20631. height: math.unit(6, "feet"),
  20632. weight: math.unit(110, "lb"),
  20633. name: "Back",
  20634. image: {
  20635. source: "./media/characters/klay/back.svg",
  20636. extra: 962 / 883
  20637. }
  20638. },
  20639. beans: {
  20640. height: math.unit(1.15, "feet"),
  20641. name: "Beans",
  20642. image: {
  20643. source: "./media/characters/klay/beans.svg"
  20644. }
  20645. },
  20646. },
  20647. [
  20648. {
  20649. name: "Micro",
  20650. height: math.unit(6, "inches")
  20651. },
  20652. {
  20653. name: "Mini",
  20654. height: math.unit(3, "feet")
  20655. },
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(6, "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Big",
  20663. height: math.unit(25, "feet")
  20664. },
  20665. {
  20666. name: "Macro",
  20667. height: math.unit(100, "feet")
  20668. },
  20669. {
  20670. name: "Megamacro",
  20671. height: math.unit(400, "feet")
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(6, "feet"),
  20680. weight: math.unit(160, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/marcus/front.svg",
  20684. extra: 734 / 676,
  20685. bottom: 0.03
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Little",
  20692. height: math.unit(6, "feet")
  20693. },
  20694. {
  20695. name: "Normal",
  20696. height: math.unit(110, "feet"),
  20697. default: true
  20698. },
  20699. {
  20700. name: "Macro",
  20701. height: math.unit(250, "feet")
  20702. },
  20703. {
  20704. name: "Megamacro",
  20705. height: math.unit(1000, "feet")
  20706. },
  20707. ]
  20708. ))
  20709. characterMakers.push(() => makeCharacter(
  20710. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20711. {
  20712. front: {
  20713. height: math.unit(7, "feet"),
  20714. weight: math.unit(275, "lb"),
  20715. name: "Front",
  20716. image: {
  20717. source: "./media/characters/claude-delroute/front.svg",
  20718. extra: 902/827,
  20719. bottom: 26/928
  20720. }
  20721. },
  20722. side: {
  20723. height: math.unit(7, "feet"),
  20724. weight: math.unit(275, "lb"),
  20725. name: "Side",
  20726. image: {
  20727. source: "./media/characters/claude-delroute/side.svg",
  20728. extra: 908/853,
  20729. bottom: 16/924
  20730. }
  20731. },
  20732. back: {
  20733. height: math.unit(7, "feet"),
  20734. weight: math.unit(275, "lb"),
  20735. name: "Back",
  20736. image: {
  20737. source: "./media/characters/claude-delroute/back.svg",
  20738. extra: 911/829,
  20739. bottom: 18/929
  20740. }
  20741. },
  20742. maw: {
  20743. height: math.unit(0.6407, "meters"),
  20744. name: "Maw",
  20745. image: {
  20746. source: "./media/characters/claude-delroute/maw.svg"
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(7, "feet"),
  20754. default: true
  20755. },
  20756. {
  20757. name: "Lorge",
  20758. height: math.unit(20, "feet")
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(8 + 4 / 12, "feet"),
  20767. weight: math.unit(600, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/dragonien/front.svg",
  20771. extra: 100 / 94,
  20772. bottom: 3.3 / 103.3445
  20773. }
  20774. },
  20775. back: {
  20776. height: math.unit(8 + 4 / 12, "feet"),
  20777. weight: math.unit(600, "lb"),
  20778. name: "Back",
  20779. image: {
  20780. source: "./media/characters/dragonien/back.svg",
  20781. extra: 776 / 746,
  20782. bottom: 6.4 / 782.0616
  20783. }
  20784. },
  20785. foot: {
  20786. height: math.unit(1.54, "feet"),
  20787. name: "Foot",
  20788. image: {
  20789. source: "./media/characters/dragonien/foot.svg",
  20790. }
  20791. },
  20792. },
  20793. [
  20794. {
  20795. name: "Normal",
  20796. height: math.unit(8 + 4 / 12, "feet"),
  20797. default: true
  20798. },
  20799. {
  20800. name: "Macro",
  20801. height: math.unit(200, "feet")
  20802. },
  20803. {
  20804. name: "Megamacro",
  20805. height: math.unit(1, "mile")
  20806. },
  20807. {
  20808. name: "Gigamacro",
  20809. height: math.unit(1000, "miles")
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(5 + 2 / 12, "feet"),
  20818. weight: math.unit(110, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/desta/front.svg",
  20822. extra: 767 / 726,
  20823. bottom: 11.7 / 779
  20824. }
  20825. },
  20826. back: {
  20827. height: math.unit(5 + 2 / 12, "feet"),
  20828. weight: math.unit(110, "lb"),
  20829. name: "Back",
  20830. image: {
  20831. source: "./media/characters/desta/back.svg",
  20832. extra: 777 / 728,
  20833. bottom: 6 / 784
  20834. }
  20835. },
  20836. frontAlt: {
  20837. height: math.unit(5 + 2 / 12, "feet"),
  20838. weight: math.unit(110, "lb"),
  20839. name: "Front",
  20840. image: {
  20841. source: "./media/characters/desta/front-alt.svg",
  20842. extra: 1482 / 1417
  20843. }
  20844. },
  20845. side: {
  20846. height: math.unit(5 + 2 / 12, "feet"),
  20847. weight: math.unit(110, "lb"),
  20848. name: "Side",
  20849. image: {
  20850. source: "./media/characters/desta/side.svg",
  20851. extra: 2579 / 2491,
  20852. bottom: 0.053
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Micro",
  20859. height: math.unit(6, "inches")
  20860. },
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(5 + 2 / 12, "feet"),
  20864. default: true
  20865. },
  20866. {
  20867. name: "Macro",
  20868. height: math.unit(62, "feet")
  20869. },
  20870. {
  20871. name: "Megamacro",
  20872. height: math.unit(1800, "feet")
  20873. },
  20874. ]
  20875. ))
  20876. characterMakers.push(() => makeCharacter(
  20877. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20878. {
  20879. front: {
  20880. height: math.unit(10, "feet"),
  20881. weight: math.unit(700, "lb"),
  20882. name: "Front",
  20883. image: {
  20884. source: "./media/characters/storm-alystar/front.svg",
  20885. extra: 2112 / 1898,
  20886. bottom: 0.034
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Micro",
  20893. height: math.unit(3.5, "inches")
  20894. },
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(10, "feet"),
  20898. default: true
  20899. },
  20900. {
  20901. name: "Macro",
  20902. height: math.unit(400, "feet")
  20903. },
  20904. {
  20905. name: "Deific",
  20906. height: math.unit(60, "miles")
  20907. },
  20908. ]
  20909. ))
  20910. characterMakers.push(() => makeCharacter(
  20911. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20912. {
  20913. front: {
  20914. height: math.unit(2.35, "meters"),
  20915. weight: math.unit(119, "kg"),
  20916. name: "Front",
  20917. image: {
  20918. source: "./media/characters/ilia/front.svg",
  20919. extra: 1285 / 1255,
  20920. bottom: 0.06
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(2.35, "meters")
  20928. },
  20929. {
  20930. name: "Macro",
  20931. height: math.unit(140, "meters"),
  20932. default: true
  20933. },
  20934. {
  20935. name: "Megamacro",
  20936. height: math.unit(100, "miles")
  20937. },
  20938. ]
  20939. ))
  20940. characterMakers.push(() => makeCharacter(
  20941. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20942. {
  20943. front: {
  20944. height: math.unit(6 + 5 / 12, "feet"),
  20945. weight: math.unit(190, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/kingdead/front.svg",
  20949. extra: 1228 / 1177
  20950. }
  20951. },
  20952. },
  20953. [
  20954. {
  20955. name: "Micro",
  20956. height: math.unit(7, "inches")
  20957. },
  20958. {
  20959. name: "Normal",
  20960. height: math.unit(6 + 5 / 12, "feet")
  20961. },
  20962. {
  20963. name: "Macro",
  20964. height: math.unit(150, "feet"),
  20965. default: true
  20966. },
  20967. {
  20968. name: "Megamacro",
  20969. height: math.unit(200, "miles")
  20970. },
  20971. ]
  20972. ))
  20973. characterMakers.push(() => makeCharacter(
  20974. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20975. {
  20976. front: {
  20977. height: math.unit(8, "feet"),
  20978. weight: math.unit(600, "lb"),
  20979. name: "Front",
  20980. image: {
  20981. source: "./media/characters/kyrehx/front.svg",
  20982. extra: 1195 / 1095,
  20983. bottom: 0.034
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Micro",
  20990. height: math.unit(2, "inches")
  20991. },
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(8, "feet"),
  20995. default: true
  20996. },
  20997. {
  20998. name: "Macro",
  20999. height: math.unit(255, "feet")
  21000. },
  21001. ]
  21002. ))
  21003. characterMakers.push(() => makeCharacter(
  21004. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21005. {
  21006. front: {
  21007. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21008. weight: math.unit(184, "lb"),
  21009. name: "Front",
  21010. image: {
  21011. source: "./media/characters/xang/front.svg",
  21012. extra: 845 / 755
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Macro",
  21024. height: math.unit(0.935 * 146, "feet")
  21025. },
  21026. {
  21027. name: "Megamacro",
  21028. height: math.unit(0.935 * 3, "miles")
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21034. {
  21035. frontDressed: {
  21036. height: math.unit(5 + 7 / 12, "feet"),
  21037. weight: math.unit(140, "lb"),
  21038. name: "Front (Dressed)",
  21039. image: {
  21040. source: "./media/characters/doc-weardno/front-dressed.svg",
  21041. extra: 263 / 234
  21042. }
  21043. },
  21044. backDressed: {
  21045. height: math.unit(5 + 7 / 12, "feet"),
  21046. weight: math.unit(140, "lb"),
  21047. name: "Back (Dressed)",
  21048. image: {
  21049. source: "./media/characters/doc-weardno/back-dressed.svg",
  21050. extra: 266 / 238
  21051. }
  21052. },
  21053. front: {
  21054. height: math.unit(5 + 7 / 12, "feet"),
  21055. weight: math.unit(140, "lb"),
  21056. name: "Front",
  21057. image: {
  21058. source: "./media/characters/doc-weardno/front.svg",
  21059. extra: 254 / 233
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Micro",
  21066. height: math.unit(3, "inches")
  21067. },
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(5 + 7 / 12, "feet"),
  21071. default: true
  21072. },
  21073. {
  21074. name: "Macro",
  21075. height: math.unit(25, "feet")
  21076. },
  21077. {
  21078. name: "Megamacro",
  21079. height: math.unit(2, "miles")
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(6 + 2 / 12, "feet"),
  21088. weight: math.unit(153, "lb"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/seth-whilst/front.svg",
  21092. bottom: 0.07
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Micro",
  21099. height: math.unit(5, "inches")
  21100. },
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(6 + 2 / 12, "feet"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21110. {
  21111. front: {
  21112. height: math.unit(3, "inches"),
  21113. weight: math.unit(8, "grams"),
  21114. name: "Front",
  21115. image: {
  21116. source: "./media/characters/pocket-jabari/front.svg",
  21117. extra: 1024 / 974,
  21118. bottom: 0.039
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Minimicro",
  21125. height: math.unit(8, "mm")
  21126. },
  21127. {
  21128. name: "Micro",
  21129. height: math.unit(3, "inches"),
  21130. default: true
  21131. },
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(3, "feet")
  21135. },
  21136. ]
  21137. ))
  21138. characterMakers.push(() => makeCharacter(
  21139. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21140. {
  21141. frontDressed: {
  21142. height: math.unit(15, "feet"),
  21143. weight: math.unit(3280, "lb"),
  21144. name: "Front (Dressed)",
  21145. image: {
  21146. source: "./media/characters/sapphy/front-dressed.svg",
  21147. extra: 1951/1654,
  21148. bottom: 194/2145
  21149. },
  21150. form: "anthro",
  21151. default: true
  21152. },
  21153. backDressed: {
  21154. height: math.unit(15, "feet"),
  21155. weight: math.unit(3280, "lb"),
  21156. name: "Back (Dressed)",
  21157. image: {
  21158. source: "./media/characters/sapphy/back-dressed.svg",
  21159. extra: 2058/1918,
  21160. bottom: 125/2183
  21161. },
  21162. form: "anthro"
  21163. },
  21164. frontNude: {
  21165. height: math.unit(15, "feet"),
  21166. weight: math.unit(3280, "lb"),
  21167. name: "Front (Nude)",
  21168. image: {
  21169. source: "./media/characters/sapphy/front-nude.svg",
  21170. extra: 1951/1654,
  21171. bottom: 194/2145
  21172. },
  21173. form: "anthro"
  21174. },
  21175. backNude: {
  21176. height: math.unit(15, "feet"),
  21177. weight: math.unit(3280, "lb"),
  21178. name: "Back (Nude)",
  21179. image: {
  21180. source: "./media/characters/sapphy/back-nude.svg",
  21181. extra: 2058/1918,
  21182. bottom: 125/2183
  21183. },
  21184. form: "anthro"
  21185. },
  21186. full: {
  21187. height: math.unit(15, "feet"),
  21188. weight: math.unit(3280, "lb"),
  21189. name: "Full",
  21190. image: {
  21191. source: "./media/characters/sapphy/full.svg",
  21192. extra: 1396/1317,
  21193. bottom: 44/1440
  21194. },
  21195. form: "anthro"
  21196. },
  21197. dick: {
  21198. height: math.unit(3.8, "feet"),
  21199. name: "Dick",
  21200. image: {
  21201. source: "./media/characters/sapphy/dick.svg"
  21202. },
  21203. form: "anthro"
  21204. },
  21205. feral: {
  21206. height: math.unit(35, "feet"),
  21207. weight: math.unit(160, "tons"),
  21208. name: "Feral",
  21209. image: {
  21210. source: "./media/characters/sapphy/feral.svg",
  21211. extra: 1050/573,
  21212. bottom: 60/1110
  21213. },
  21214. form: "feral",
  21215. default: true
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(15, "feet"),
  21222. form: "anthro"
  21223. },
  21224. {
  21225. name: "Casual Macro",
  21226. height: math.unit(120, "feet"),
  21227. form: "anthro"
  21228. },
  21229. {
  21230. name: "Macro",
  21231. height: math.unit(2150, "feet"),
  21232. default: true,
  21233. form: "anthro"
  21234. },
  21235. {
  21236. name: "Megamacro",
  21237. height: math.unit(8, "miles"),
  21238. form: "anthro"
  21239. },
  21240. {
  21241. name: "Galaxy Mom",
  21242. height: math.unit(6, "megalightyears"),
  21243. form: "anthro"
  21244. },
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(35, "feet"),
  21248. form: "feral",
  21249. default: true
  21250. },
  21251. {
  21252. name: "Macro",
  21253. height: math.unit(300, "feet"),
  21254. form: "feral"
  21255. },
  21256. {
  21257. name: "Galaxy Mom",
  21258. height: math.unit(10, "megalightyears"),
  21259. form: "feral"
  21260. },
  21261. ],
  21262. {
  21263. "anthro": {
  21264. name: "Anthro",
  21265. default: true
  21266. },
  21267. "feral": {
  21268. name: "Feral"
  21269. }
  21270. }
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21274. {
  21275. hyenaFront: {
  21276. height: math.unit(6, "feet"),
  21277. weight: math.unit(190, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/kiro/hyena-front.svg",
  21281. extra: 927/839,
  21282. bottom: 91/1018
  21283. },
  21284. form: "hyena",
  21285. default: true
  21286. },
  21287. front: {
  21288. height: math.unit(6, "feet"),
  21289. weight: math.unit(170, "lb"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/kiro/front.svg",
  21293. extra: 1064 / 1012,
  21294. bottom: 0.052
  21295. },
  21296. form: "folf",
  21297. default: true
  21298. },
  21299. },
  21300. [
  21301. {
  21302. name: "Micro",
  21303. height: math.unit(6, "inches"),
  21304. form: "folf"
  21305. },
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(6, "feet"),
  21309. form: "folf",
  21310. default: true
  21311. },
  21312. {
  21313. name: "Macro",
  21314. height: math.unit(72, "feet"),
  21315. form: "folf"
  21316. },
  21317. {
  21318. name: "Micro",
  21319. height: math.unit(6, "inches"),
  21320. form: "hyena"
  21321. },
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(6, "feet"),
  21325. form: "hyena",
  21326. default: true
  21327. },
  21328. {
  21329. name: "Macro",
  21330. height: math.unit(72, "feet"),
  21331. form: "hyena"
  21332. },
  21333. ],
  21334. {
  21335. "hyena": {
  21336. name: "Hyena",
  21337. default: true
  21338. },
  21339. "folf": {
  21340. name: "Folf",
  21341. },
  21342. }
  21343. ))
  21344. characterMakers.push(() => makeCharacter(
  21345. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21346. {
  21347. front: {
  21348. height: math.unit(5 + 9 / 12, "feet"),
  21349. weight: math.unit(175, "lb"),
  21350. name: "Front",
  21351. image: {
  21352. source: "./media/characters/irishfox/front.svg",
  21353. extra: 1912 / 1680,
  21354. bottom: 0.02
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Nano",
  21361. height: math.unit(1, "mm")
  21362. },
  21363. {
  21364. name: "Micro",
  21365. height: math.unit(2, "inches")
  21366. },
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(5 + 9 / 12, "feet"),
  21370. default: true
  21371. },
  21372. {
  21373. name: "Macro",
  21374. height: math.unit(45, "feet")
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(6 + 1 / 12, "feet"),
  21383. weight: math.unit(75, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/aronai-sieyes/front.svg",
  21387. extra: 1532/1450,
  21388. bottom: 42/1574
  21389. }
  21390. },
  21391. side: {
  21392. height: math.unit(6 + 1 / 12, "feet"),
  21393. weight: math.unit(75, "lb"),
  21394. name: "Side",
  21395. image: {
  21396. source: "./media/characters/aronai-sieyes/side.svg",
  21397. extra: 1422/1365,
  21398. bottom: 148/1570
  21399. }
  21400. },
  21401. back: {
  21402. height: math.unit(6 + 1 / 12, "feet"),
  21403. weight: math.unit(75, "lb"),
  21404. name: "Back",
  21405. image: {
  21406. source: "./media/characters/aronai-sieyes/back.svg",
  21407. extra: 1526/1464,
  21408. bottom: 51/1577
  21409. }
  21410. },
  21411. dressed: {
  21412. height: math.unit(6 + 1 / 12, "feet"),
  21413. weight: math.unit(75, "lb"),
  21414. name: "Dressed",
  21415. image: {
  21416. source: "./media/characters/aronai-sieyes/dressed.svg",
  21417. extra: 1559/1483,
  21418. bottom: 39/1598
  21419. }
  21420. },
  21421. slit: {
  21422. height: math.unit(1.3, "feet"),
  21423. name: "Slit",
  21424. image: {
  21425. source: "./media/characters/aronai-sieyes/slit.svg"
  21426. }
  21427. },
  21428. slitSpread: {
  21429. height: math.unit(0.9, "feet"),
  21430. name: "Slit (Spread)",
  21431. image: {
  21432. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21433. }
  21434. },
  21435. rump: {
  21436. height: math.unit(1.3, "feet"),
  21437. name: "Rump",
  21438. image: {
  21439. source: "./media/characters/aronai-sieyes/rump.svg"
  21440. }
  21441. },
  21442. maw: {
  21443. height: math.unit(1.25, "feet"),
  21444. name: "Maw",
  21445. image: {
  21446. source: "./media/characters/aronai-sieyes/maw.svg"
  21447. }
  21448. },
  21449. feral: {
  21450. height: math.unit(18, "feet"),
  21451. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21452. name: "Feral",
  21453. image: {
  21454. source: "./media/characters/aronai-sieyes/feral.svg",
  21455. extra: 1530 / 1240,
  21456. bottom: 0.035
  21457. }
  21458. },
  21459. },
  21460. [
  21461. {
  21462. name: "Micro",
  21463. height: math.unit(2, "inches")
  21464. },
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(6 + 1 / 12, "feet"),
  21468. default: true
  21469. }
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21474. {
  21475. front: {
  21476. height: math.unit(12, "feet"),
  21477. weight: math.unit(410, "kg"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/xuna/front.svg",
  21481. extra: 2184 / 1980
  21482. }
  21483. },
  21484. side: {
  21485. height: math.unit(12, "feet"),
  21486. weight: math.unit(410, "kg"),
  21487. name: "Side",
  21488. image: {
  21489. source: "./media/characters/xuna/side.svg",
  21490. extra: 2184 / 1980
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(12, "feet"),
  21495. weight: math.unit(410, "kg"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/xuna/back.svg",
  21499. extra: 2184 / 1980
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Nano glow",
  21506. height: math.unit(10, "nm")
  21507. },
  21508. {
  21509. name: "Micro floof",
  21510. height: math.unit(0.3, "m")
  21511. },
  21512. {
  21513. name: "Huggable softy boi",
  21514. height: math.unit(3.6576, "m"),
  21515. default: true
  21516. },
  21517. {
  21518. name: "Admirable floof",
  21519. height: math.unit(80, "meters")
  21520. },
  21521. {
  21522. name: "Gentle macro",
  21523. height: math.unit(300, "meters")
  21524. },
  21525. {
  21526. name: "Very careful floof",
  21527. height: math.unit(3200, "meters")
  21528. },
  21529. {
  21530. name: "The mega floof",
  21531. height: math.unit(36000, "meters")
  21532. },
  21533. {
  21534. name: "Giga-fur-Wicker",
  21535. height: math.unit(4800000, "meters")
  21536. },
  21537. {
  21538. name: "Licky world",
  21539. height: math.unit(20000000, "meters")
  21540. },
  21541. {
  21542. name: "Floofy cyan sun",
  21543. height: math.unit(1500000000, "meters")
  21544. },
  21545. {
  21546. name: "Milky Wicker",
  21547. height: math.unit(1000000000000000000000, "meters")
  21548. },
  21549. {
  21550. name: "The observing Wicker",
  21551. height: math.unit(999999999999999999999999999, "meters")
  21552. },
  21553. ]
  21554. ))
  21555. characterMakers.push(() => makeCharacter(
  21556. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21557. {
  21558. front: {
  21559. height: math.unit(5 + 9 / 12, "feet"),
  21560. weight: math.unit(150, "lb"),
  21561. name: "Front",
  21562. image: {
  21563. source: "./media/characters/arokha-sieyes/front.svg",
  21564. extra: 1425 / 1284,
  21565. bottom: 0.05
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Normal",
  21572. height: math.unit(5 + 9 / 12, "feet")
  21573. },
  21574. {
  21575. name: "Macro",
  21576. height: math.unit(30, "meters"),
  21577. default: true
  21578. },
  21579. ]
  21580. ))
  21581. characterMakers.push(() => makeCharacter(
  21582. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21583. {
  21584. front: {
  21585. height: math.unit(6, "feet"),
  21586. weight: math.unit(180, "lb"),
  21587. name: "Front",
  21588. image: {
  21589. source: "./media/characters/arokh-sieyes/front.svg",
  21590. extra: 1830 / 1769,
  21591. bottom: 0.01
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(6, "feet")
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(30, "meters"),
  21603. default: true
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21609. {
  21610. side: {
  21611. height: math.unit(13 + 1 / 12, "feet"),
  21612. weight: math.unit(8.5, "tonnes"),
  21613. preyCapacity: math.unit(36, "people"),
  21614. name: "Side",
  21615. image: {
  21616. source: "./media/characters/goldeneye/side.svg",
  21617. extra: 1139/741,
  21618. bottom: 98/1237
  21619. }
  21620. },
  21621. front: {
  21622. height: math.unit(5.1, "feet"),
  21623. weight: math.unit(8.5, "tonnes"),
  21624. preyCapacity: math.unit(36, "people"),
  21625. name: "Front",
  21626. image: {
  21627. source: "./media/characters/goldeneye/front.svg",
  21628. extra: 635/365,
  21629. bottom: 598/1233
  21630. }
  21631. },
  21632. maw: {
  21633. height: math.unit(6.6, "feet"),
  21634. name: "Maw",
  21635. image: {
  21636. source: "./media/characters/goldeneye/maw.svg"
  21637. }
  21638. },
  21639. headFront: {
  21640. height: math.unit(8, "feet"),
  21641. name: "Head (Front)",
  21642. image: {
  21643. source: "./media/characters/goldeneye/head-front.svg"
  21644. }
  21645. },
  21646. headSide: {
  21647. height: math.unit(6, "feet"),
  21648. name: "Head (Side)",
  21649. image: {
  21650. source: "./media/characters/goldeneye/head-side.svg"
  21651. }
  21652. },
  21653. headBack: {
  21654. height: math.unit(8, "feet"),
  21655. name: "Head (Back)",
  21656. image: {
  21657. source: "./media/characters/goldeneye/head-back.svg"
  21658. }
  21659. },
  21660. paw: {
  21661. height: math.unit(3.4, "feet"),
  21662. name: "Paw",
  21663. image: {
  21664. source: "./media/characters/goldeneye/paw.svg"
  21665. }
  21666. },
  21667. toering: {
  21668. height: math.unit(0.45, "feet"),
  21669. name: "Toering",
  21670. image: {
  21671. source: "./media/characters/goldeneye/toering.svg"
  21672. }
  21673. },
  21674. eyes: {
  21675. height: math.unit(0.5, "feet"),
  21676. name: "Eyes",
  21677. image: {
  21678. source: "./media/characters/goldeneye/eyes.svg"
  21679. }
  21680. },
  21681. },
  21682. [
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(13 + 1 / 12, "feet"),
  21686. default: true
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21692. {
  21693. front: {
  21694. height: math.unit(6 + 1 / 12, "feet"),
  21695. weight: math.unit(210, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/leonardo-lycheborne/front.svg",
  21699. extra: 776/723,
  21700. bottom: 34/810
  21701. }
  21702. },
  21703. side: {
  21704. height: math.unit(6 + 1 / 12, "feet"),
  21705. weight: math.unit(210, "lb"),
  21706. name: "Side",
  21707. image: {
  21708. source: "./media/characters/leonardo-lycheborne/side.svg",
  21709. extra: 780/728,
  21710. bottom: 12/792
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(6 + 1 / 12, "feet"),
  21715. weight: math.unit(210, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/leonardo-lycheborne/back.svg",
  21719. extra: 775/721,
  21720. bottom: 17/792
  21721. }
  21722. },
  21723. hand: {
  21724. height: math.unit(1.08, "feet"),
  21725. name: "Hand",
  21726. image: {
  21727. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21728. }
  21729. },
  21730. foot: {
  21731. height: math.unit(1.32, "feet"),
  21732. name: "Foot",
  21733. image: {
  21734. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21735. }
  21736. },
  21737. maw: {
  21738. height: math.unit(1, "feet"),
  21739. name: "Maw",
  21740. image: {
  21741. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21742. }
  21743. },
  21744. were: {
  21745. height: math.unit(20, "feet"),
  21746. weight: math.unit(7800, "lb"),
  21747. name: "Were",
  21748. image: {
  21749. source: "./media/characters/leonardo-lycheborne/were.svg",
  21750. extra: 1224/1165,
  21751. bottom: 72/1296
  21752. }
  21753. },
  21754. feral: {
  21755. height: math.unit(7.5, "feet"),
  21756. weight: math.unit(600, "lb"),
  21757. name: "Feral",
  21758. image: {
  21759. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21760. extra: 797/702,
  21761. bottom: 139/936
  21762. }
  21763. },
  21764. taur: {
  21765. height: math.unit(11, "feet"),
  21766. weight: math.unit(3300, "lb"),
  21767. name: "Taur",
  21768. image: {
  21769. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21770. extra: 1271/1197,
  21771. bottom: 47/1318
  21772. }
  21773. },
  21774. barghest: {
  21775. height: math.unit(11, "feet"),
  21776. weight: math.unit(1300, "lb"),
  21777. name: "Barghest",
  21778. image: {
  21779. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21780. extra: 1291/1204,
  21781. bottom: 37/1328
  21782. }
  21783. },
  21784. dick: {
  21785. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21786. name: "Dick",
  21787. image: {
  21788. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21789. }
  21790. },
  21791. dickWere: {
  21792. height: math.unit((20) / 3.8, "feet"),
  21793. name: "Dick (Were)",
  21794. image: {
  21795. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(6 + 1 / 12, "feet"),
  21803. default: true
  21804. },
  21805. ]
  21806. ))
  21807. characterMakers.push(() => makeCharacter(
  21808. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21809. {
  21810. front: {
  21811. height: math.unit(10, "feet"),
  21812. weight: math.unit(350, "lb"),
  21813. name: "Front",
  21814. image: {
  21815. source: "./media/characters/jet/front.svg",
  21816. extra: 2050 / 1980,
  21817. bottom: 0.013
  21818. }
  21819. },
  21820. back: {
  21821. height: math.unit(10, "feet"),
  21822. weight: math.unit(350, "lb"),
  21823. name: "Back",
  21824. image: {
  21825. source: "./media/characters/jet/back.svg",
  21826. extra: 2050 / 1980,
  21827. bottom: 0.013
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Micro",
  21834. height: math.unit(6, "inches")
  21835. },
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(10, "feet"),
  21839. default: true
  21840. },
  21841. {
  21842. name: "Macro",
  21843. height: math.unit(100, "feet")
  21844. },
  21845. ]
  21846. ))
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21849. {
  21850. front: {
  21851. height: math.unit(15, "feet"),
  21852. weight: math.unit(2800, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/tanarath/front.svg",
  21856. extra: 2392 / 2220,
  21857. bottom: 0.03
  21858. }
  21859. },
  21860. back: {
  21861. height: math.unit(15, "feet"),
  21862. weight: math.unit(2800, "lb"),
  21863. name: "Back",
  21864. image: {
  21865. source: "./media/characters/tanarath/back.svg",
  21866. extra: 2392 / 2220,
  21867. bottom: 0.03
  21868. }
  21869. },
  21870. },
  21871. [
  21872. {
  21873. name: "Normal",
  21874. height: math.unit(15, "feet"),
  21875. default: true
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(7 + 1 / 12, "feet"),
  21884. weight: math.unit(175, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/patty-cattybatty/front.svg",
  21888. extra: 908 / 874,
  21889. bottom: 0.025
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Micro",
  21896. height: math.unit(1, "inch")
  21897. },
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(7 + 1 / 12, "feet")
  21901. },
  21902. {
  21903. name: "Mini Macro",
  21904. height: math.unit(155, "feet")
  21905. },
  21906. {
  21907. name: "Macro",
  21908. height: math.unit(1077, "feet")
  21909. },
  21910. {
  21911. name: "Mega Macro",
  21912. height: math.unit(47650, "feet"),
  21913. default: true
  21914. },
  21915. {
  21916. name: "Giga Macro",
  21917. height: math.unit(440, "miles")
  21918. },
  21919. {
  21920. name: "Tera Macro",
  21921. height: math.unit(8700, "miles")
  21922. },
  21923. {
  21924. name: "Planetary Macro",
  21925. height: math.unit(32700, "miles")
  21926. },
  21927. {
  21928. name: "Solar Macro",
  21929. height: math.unit(550000, "miles")
  21930. },
  21931. {
  21932. name: "Celestial Macro",
  21933. height: math.unit(2.5, "AU")
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(4 + 5 / 12, "feet"),
  21942. weight: math.unit(90, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/cappu/front.svg",
  21946. extra: 1247 / 1152,
  21947. bottom: 0.012
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(4 + 5 / 12, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21961. {
  21962. frontDressed: {
  21963. height: math.unit(70, "cm"),
  21964. weight: math.unit(6, "kg"),
  21965. name: "Front (Dressed)",
  21966. image: {
  21967. source: "./media/characters/sebi/front-dressed.svg",
  21968. extra: 713.5 / 686.5,
  21969. bottom: 0.003
  21970. }
  21971. },
  21972. front: {
  21973. height: math.unit(70, "cm"),
  21974. weight: math.unit(5, "kg"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/sebi/front.svg",
  21978. extra: 713.5 / 686.5,
  21979. bottom: 0.003
  21980. }
  21981. }
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(70, "cm"),
  21987. default: true
  21988. },
  21989. {
  21990. name: "Macro",
  21991. height: math.unit(8, "meters")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(6, "feet"),
  22000. weight: math.unit(150, "lb"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/typhek/front.svg",
  22004. extra: 1948 / 1929,
  22005. bottom: 0.025
  22006. }
  22007. },
  22008. side: {
  22009. height: math.unit(6, "feet"),
  22010. weight: math.unit(150, "lb"),
  22011. name: "Side",
  22012. image: {
  22013. source: "./media/characters/typhek/side.svg",
  22014. extra: 2034 / 2010,
  22015. bottom: 0.003
  22016. }
  22017. },
  22018. back: {
  22019. height: math.unit(6, "feet"),
  22020. weight: math.unit(150, "lb"),
  22021. name: "Back",
  22022. image: {
  22023. source: "./media/characters/typhek/back.svg",
  22024. extra: 2005 / 1978,
  22025. bottom: 0.004
  22026. }
  22027. },
  22028. palm: {
  22029. height: math.unit(1.2, "feet"),
  22030. name: "Palm",
  22031. image: {
  22032. source: "./media/characters/typhek/palm.svg"
  22033. }
  22034. },
  22035. fist: {
  22036. height: math.unit(1.1, "feet"),
  22037. name: "Fist",
  22038. image: {
  22039. source: "./media/characters/typhek/fist.svg"
  22040. }
  22041. },
  22042. foot: {
  22043. height: math.unit(1.57, "feet"),
  22044. name: "Foot",
  22045. image: {
  22046. source: "./media/characters/typhek/foot.svg"
  22047. }
  22048. },
  22049. sole: {
  22050. height: math.unit(2.05, "feet"),
  22051. name: "Sole",
  22052. image: {
  22053. source: "./media/characters/typhek/sole.svg"
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Macro",
  22060. height: math.unit(40, "stories"),
  22061. default: true
  22062. },
  22063. {
  22064. name: "Megamacro",
  22065. height: math.unit(1, "mile")
  22066. },
  22067. {
  22068. name: "Gigamacro",
  22069. height: math.unit(4000, "solarradii")
  22070. },
  22071. {
  22072. name: "Universal",
  22073. height: math.unit(1.1, "universes")
  22074. }
  22075. ]
  22076. ))
  22077. characterMakers.push(() => makeCharacter(
  22078. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22079. {
  22080. side: {
  22081. height: math.unit(5 + 7 / 12, "feet"),
  22082. weight: math.unit(150, "lb"),
  22083. name: "Side",
  22084. image: {
  22085. source: "./media/characters/kassy/side.svg",
  22086. extra: 1280 / 1225,
  22087. bottom: 0.002
  22088. }
  22089. },
  22090. front: {
  22091. height: math.unit(5 + 7 / 12, "feet"),
  22092. weight: math.unit(150, "lb"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/kassy/front.svg",
  22096. extra: 1280 / 1225,
  22097. bottom: 0.025
  22098. }
  22099. },
  22100. back: {
  22101. height: math.unit(5 + 7 / 12, "feet"),
  22102. weight: math.unit(150, "lb"),
  22103. name: "Back",
  22104. image: {
  22105. source: "./media/characters/kassy/back.svg",
  22106. extra: 1280 / 1225,
  22107. bottom: 0.002
  22108. }
  22109. },
  22110. foot: {
  22111. height: math.unit(1.266, "feet"),
  22112. name: "Foot",
  22113. image: {
  22114. source: "./media/characters/kassy/foot.svg"
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Normal",
  22121. height: math.unit(5 + 7 / 12, "feet")
  22122. },
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(137, "feet"),
  22126. default: true
  22127. },
  22128. {
  22129. name: "Megamacro",
  22130. height: math.unit(1, "mile")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(6 + 1 / 12, "feet"),
  22139. weight: math.unit(200, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/neil/front.svg",
  22143. extra: 1326 / 1250,
  22144. bottom: 0.023
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Normal",
  22151. height: math.unit(6 + 1 / 12, "feet"),
  22152. default: true
  22153. },
  22154. {
  22155. name: "Macro",
  22156. height: math.unit(200, "feet")
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22162. {
  22163. front: {
  22164. height: math.unit(5 + 9 / 12, "feet"),
  22165. weight: math.unit(190, "lb"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/atticus/front.svg",
  22169. extra: 2934 / 2785,
  22170. bottom: 0.025
  22171. }
  22172. },
  22173. },
  22174. [
  22175. {
  22176. name: "Normal",
  22177. height: math.unit(5 + 9 / 12, "feet"),
  22178. default: true
  22179. },
  22180. {
  22181. name: "Macro",
  22182. height: math.unit(180, "feet")
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22188. {
  22189. side: {
  22190. height: math.unit(9, "feet"),
  22191. weight: math.unit(650, "lb"),
  22192. name: "Side",
  22193. image: {
  22194. source: "./media/characters/milo/side.svg",
  22195. extra: 2644 / 2310,
  22196. bottom: 0.032
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Normal",
  22203. height: math.unit(9, "feet"),
  22204. default: true
  22205. },
  22206. {
  22207. name: "Macro",
  22208. height: math.unit(300, "feet")
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22214. {
  22215. side: {
  22216. height: math.unit(8, "meters"),
  22217. weight: math.unit(90000, "kg"),
  22218. name: "Side",
  22219. image: {
  22220. source: "./media/characters/ijzer/side.svg",
  22221. extra: 2756 / 1600,
  22222. bottom: 0.01
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Small",
  22229. height: math.unit(3, "meters")
  22230. },
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(8, "meters"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Normal+",
  22238. height: math.unit(10, "meters")
  22239. },
  22240. {
  22241. name: "Bigger",
  22242. height: math.unit(24, "meters")
  22243. },
  22244. {
  22245. name: "Huge",
  22246. height: math.unit(80, "meters")
  22247. },
  22248. ]
  22249. ))
  22250. characterMakers.push(() => makeCharacter(
  22251. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22252. {
  22253. front: {
  22254. height: math.unit(6 + 2 / 12, "feet"),
  22255. weight: math.unit(153, "lb"),
  22256. name: "Front",
  22257. image: {
  22258. source: "./media/characters/luca-cervicum/front.svg",
  22259. extra: 370 / 327,
  22260. bottom: 0.015
  22261. }
  22262. },
  22263. back: {
  22264. height: math.unit(6 + 2 / 12, "feet"),
  22265. weight: math.unit(153, "lb"),
  22266. name: "Back",
  22267. image: {
  22268. source: "./media/characters/luca-cervicum/back.svg",
  22269. extra: 367 / 333,
  22270. bottom: 0.005
  22271. }
  22272. },
  22273. frontGear: {
  22274. height: math.unit(6 + 2 / 12, "feet"),
  22275. weight: math.unit(173, "lb"),
  22276. name: "Front (Gear)",
  22277. image: {
  22278. source: "./media/characters/luca-cervicum/front-gear.svg",
  22279. extra: 377 / 333,
  22280. bottom: 0.006
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Normal",
  22287. height: math.unit(6 + 2 / 12, "feet"),
  22288. default: true
  22289. },
  22290. ]
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22294. {
  22295. front: {
  22296. height: math.unit(6 + 1 / 12, "feet"),
  22297. weight: math.unit(304, "lb"),
  22298. name: "Front",
  22299. image: {
  22300. source: "./media/characters/oliver/front.svg",
  22301. extra: 157 / 143,
  22302. bottom: 0.08
  22303. }
  22304. },
  22305. },
  22306. [
  22307. {
  22308. name: "Normal",
  22309. height: math.unit(6 + 1 / 12, "feet"),
  22310. default: true
  22311. },
  22312. ]
  22313. ))
  22314. characterMakers.push(() => makeCharacter(
  22315. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22316. {
  22317. front: {
  22318. height: math.unit(5 + 7 / 12, "feet"),
  22319. weight: math.unit(140, "lb"),
  22320. name: "Front",
  22321. image: {
  22322. source: "./media/characters/shane/front.svg",
  22323. extra: 304 / 289,
  22324. bottom: 0.005
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(5 + 7 / 12, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(5 + 9 / 12, "feet"),
  22341. weight: math.unit(178, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/shin/front.svg",
  22345. extra: 159 / 151,
  22346. bottom: 0.015
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(5 + 9 / 12, "feet"),
  22354. default: true
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(5 + 10 / 12, "feet"),
  22363. weight: math.unit(168, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/xerxes/front.svg",
  22367. extra: 282 / 260,
  22368. bottom: 0.045
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(5 + 10 / 12, "feet"),
  22376. default: true
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22382. {
  22383. front: {
  22384. height: math.unit(6 + 7 / 12, "feet"),
  22385. weight: math.unit(208, "lb"),
  22386. name: "Front",
  22387. image: {
  22388. source: "./media/characters/chaska/front.svg",
  22389. extra: 332 / 319,
  22390. bottom: 0.015
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(6 + 7 / 12, "feet"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(5 + 8 / 12, "feet"),
  22407. weight: math.unit(208, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/enuk/front.svg",
  22411. extra: 437 / 406,
  22412. bottom: 0.02
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(5 + 8 / 12, "feet"),
  22420. default: true
  22421. },
  22422. ]
  22423. ))
  22424. characterMakers.push(() => makeCharacter(
  22425. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22426. {
  22427. front: {
  22428. height: math.unit(5 + 10 / 12, "feet"),
  22429. weight: math.unit(252, "lb"),
  22430. name: "Front",
  22431. image: {
  22432. source: "./media/characters/bruun/front.svg",
  22433. extra: 197 / 187,
  22434. bottom: 0.012
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(5 + 10 / 12, "feet"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6 + 10 / 12, "feet"),
  22451. weight: math.unit(255, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/alexeev/front.svg",
  22455. extra: 213 / 200,
  22456. bottom: 0.05
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(6 + 10 / 12, "feet"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22470. {
  22471. front: {
  22472. height: math.unit(2 + 8 / 12, "feet"),
  22473. weight: math.unit(22, "lb"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/evelyn/front.svg",
  22477. extra: 208 / 180
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Normal",
  22484. height: math.unit(2 + 8 / 12, "feet"),
  22485. default: true
  22486. },
  22487. ]
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(5 + 9 / 12, "feet"),
  22494. weight: math.unit(139, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/inca/front.svg",
  22498. extra: 294 / 291,
  22499. bottom: 0.03
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Normal",
  22506. height: math.unit(5 + 9 / 12, "feet"),
  22507. default: true
  22508. },
  22509. ]
  22510. ))
  22511. characterMakers.push(() => makeCharacter(
  22512. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22513. {
  22514. front: {
  22515. height: math.unit(6 + 3 / 12, "feet"),
  22516. weight: math.unit(185, "lb"),
  22517. name: "Front",
  22518. image: {
  22519. source: "./media/characters/mera/front.svg",
  22520. extra: 291 / 277,
  22521. bottom: 0.03
  22522. }
  22523. },
  22524. },
  22525. [
  22526. {
  22527. name: "Normal",
  22528. height: math.unit(6 + 3 / 12, "feet"),
  22529. default: true
  22530. },
  22531. ]
  22532. ))
  22533. characterMakers.push(() => makeCharacter(
  22534. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22535. {
  22536. front: {
  22537. height: math.unit(6 + 7 / 12, "feet"),
  22538. weight: math.unit(160, "lb"),
  22539. name: "Front",
  22540. image: {
  22541. source: "./media/characters/ceres/front.svg",
  22542. extra: 1023 / 950,
  22543. bottom: 0.027
  22544. }
  22545. },
  22546. back: {
  22547. height: math.unit(6 + 7 / 12, "feet"),
  22548. weight: math.unit(160, "lb"),
  22549. name: "Back",
  22550. image: {
  22551. source: "./media/characters/ceres/back.svg",
  22552. extra: 1023 / 950
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Normal",
  22559. height: math.unit(6 + 7 / 12, "feet"),
  22560. default: true
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22566. {
  22567. front: {
  22568. height: math.unit(5 + 10 / 12, "feet"),
  22569. weight: math.unit(150, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/kris/front.svg",
  22573. extra: 885 / 803,
  22574. bottom: 0.03
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(5 + 10 / 12, "feet"),
  22582. default: true
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22588. {
  22589. dragon_front: {
  22590. height: math.unit(5, "feet"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/taluthus/dragon-front.svg",
  22594. extra: 1203/1098,
  22595. bottom: 46/1249
  22596. },
  22597. form: "dragon",
  22598. default: true
  22599. },
  22600. dragon_maw: {
  22601. height: math.unit(2.35, "feet"),
  22602. name: "Maw",
  22603. image: {
  22604. source: "./media/characters/taluthus/dragon-maw.svg"
  22605. },
  22606. form: "dragon",
  22607. },
  22608. kitsune_front: {
  22609. height: math.unit(7, "feet"),
  22610. name: "Front",
  22611. image: {
  22612. source: "./media/characters/taluthus/kitsune-front.svg",
  22613. extra: 900/841,
  22614. bottom: 65/965
  22615. },
  22616. form: "kitsune",
  22617. default: true
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(5, "feet"),
  22624. form: "dragon",
  22625. default: true,
  22626. },
  22627. {
  22628. name: "Normal",
  22629. height: math.unit(7, "feet"),
  22630. form: "kitsune",
  22631. default: true
  22632. },
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(300, "feet"),
  22636. allForms: true
  22637. },
  22638. ],
  22639. {
  22640. "dragon": {
  22641. name: "Dragon",
  22642. default: true
  22643. },
  22644. "kitsune": {
  22645. name: "Kitsune",
  22646. },
  22647. }
  22648. ))
  22649. characterMakers.push(() => makeCharacter(
  22650. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22651. {
  22652. front: {
  22653. height: math.unit(5 + 9 / 12, "feet"),
  22654. weight: math.unit(145, "lb"),
  22655. name: "Front",
  22656. image: {
  22657. source: "./media/characters/dawn/front.svg",
  22658. extra: 2094 / 2016,
  22659. bottom: 0.025
  22660. }
  22661. },
  22662. back: {
  22663. height: math.unit(5 + 9 / 12, "feet"),
  22664. weight: math.unit(160, "lb"),
  22665. name: "Back",
  22666. image: {
  22667. source: "./media/characters/dawn/back.svg",
  22668. extra: 2112 / 2080,
  22669. bottom: 0.005
  22670. }
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(6 + 7 / 12, "feet"),
  22677. default: true
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22683. {
  22684. anthro: {
  22685. height: math.unit(8 + 3 / 12, "feet"),
  22686. weight: math.unit(450, "lb"),
  22687. name: "Anthro",
  22688. image: {
  22689. source: "./media/characters/arador/anthro.svg",
  22690. extra: 1835 / 1718,
  22691. bottom: 0.025
  22692. }
  22693. },
  22694. feral: {
  22695. height: math.unit(4, "feet"),
  22696. weight: math.unit(200, "lb"),
  22697. name: "Feral",
  22698. image: {
  22699. source: "./media/characters/arador/feral.svg",
  22700. extra: 1683 / 1514,
  22701. bottom: 0.07
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(8 + 3 / 12, "feet")
  22709. },
  22710. {
  22711. name: "Macro",
  22712. height: math.unit(82.5, "feet"),
  22713. default: true
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(5 + 10 / 12, "feet"),
  22722. weight: math.unit(125, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/dharsi/front.svg",
  22726. extra: 716 / 630,
  22727. bottom: 0.035
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Nano",
  22734. height: math.unit(100, "nm")
  22735. },
  22736. {
  22737. name: "Micro",
  22738. height: math.unit(2, "inches")
  22739. },
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(5 + 10 / 12, "feet"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(1000, "feet")
  22748. },
  22749. {
  22750. name: "Megamacro",
  22751. height: math.unit(10, "miles")
  22752. },
  22753. {
  22754. name: "Gigamacro",
  22755. height: math.unit(3000, "miles")
  22756. },
  22757. {
  22758. name: "Teramacro",
  22759. height: math.unit(500000, "miles")
  22760. },
  22761. {
  22762. name: "Teramacro+",
  22763. height: math.unit(30, "galaxies")
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(6, "feet"),
  22772. weight: math.unit(150, "lb"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/deathy/front.svg",
  22776. extra: 1552 / 1463,
  22777. bottom: 0.025
  22778. }
  22779. },
  22780. side: {
  22781. height: math.unit(6, "feet"),
  22782. weight: math.unit(150, "lb"),
  22783. name: "Side",
  22784. image: {
  22785. source: "./media/characters/deathy/side.svg",
  22786. extra: 1604 / 1455,
  22787. bottom: 0.025
  22788. }
  22789. },
  22790. back: {
  22791. height: math.unit(6, "feet"),
  22792. weight: math.unit(150, "lb"),
  22793. name: "Back",
  22794. image: {
  22795. source: "./media/characters/deathy/back.svg",
  22796. extra: 1580 / 1463,
  22797. bottom: 0.005
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Micro",
  22804. height: math.unit(5, "millimeters")
  22805. },
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(6 + 5 / 12, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22815. {
  22816. front: {
  22817. height: math.unit(16, "feet"),
  22818. weight: math.unit(4000, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/juniper/front.svg",
  22822. bottom: 0.04
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(16, "feet"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22836. {
  22837. front: {
  22838. height: math.unit(6, "feet"),
  22839. weight: math.unit(150, "lb"),
  22840. name: "Front",
  22841. image: {
  22842. source: "./media/characters/hipster/front.svg",
  22843. extra: 1312 / 1209,
  22844. bottom: 0.025
  22845. }
  22846. },
  22847. back: {
  22848. height: math.unit(6, "feet"),
  22849. weight: math.unit(150, "lb"),
  22850. name: "Back",
  22851. image: {
  22852. source: "./media/characters/hipster/back.svg",
  22853. extra: 1281 / 1196,
  22854. bottom: 0.01
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Micro",
  22861. height: math.unit(1, "mm")
  22862. },
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(4, "inches"),
  22866. default: true
  22867. },
  22868. {
  22869. name: "Macro",
  22870. height: math.unit(500, "feet")
  22871. },
  22872. {
  22873. name: "Megamacro",
  22874. height: math.unit(1000, "miles")
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(6, "feet"),
  22883. weight: math.unit(150, "lb"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/tendirmuldr/front.svg",
  22887. extra: 1878 / 1772,
  22888. bottom: 0.015
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Megamacro",
  22895. height: math.unit(1500, "miles"),
  22896. default: true
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22902. {
  22903. front: {
  22904. height: math.unit(14, "feet"),
  22905. weight: math.unit(12000, "lb"),
  22906. name: "Front",
  22907. image: {
  22908. source: "./media/characters/mort/front.svg",
  22909. extra: 365 / 318,
  22910. bottom: 0.01
  22911. }
  22912. },
  22913. side: {
  22914. height: math.unit(14, "feet"),
  22915. weight: math.unit(12000, "lb"),
  22916. name: "Side",
  22917. image: {
  22918. source: "./media/characters/mort/side.svg",
  22919. extra: 365 / 318,
  22920. bottom: 0.052
  22921. },
  22922. default: true
  22923. },
  22924. back: {
  22925. height: math.unit(14, "feet"),
  22926. weight: math.unit(12000, "lb"),
  22927. name: "Back",
  22928. image: {
  22929. source: "./media/characters/mort/back.svg",
  22930. extra: 371 / 332,
  22931. bottom: 0.18
  22932. }
  22933. },
  22934. },
  22935. [
  22936. {
  22937. name: "Normal",
  22938. height: math.unit(14, "feet"),
  22939. default: true
  22940. },
  22941. ]
  22942. ))
  22943. characterMakers.push(() => makeCharacter(
  22944. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22945. {
  22946. front: {
  22947. height: math.unit(8, "feet"),
  22948. weight: math.unit(1, "ton"),
  22949. name: "Front",
  22950. image: {
  22951. source: "./media/characters/lycoa/front.svg",
  22952. extra: 1836/1728,
  22953. bottom: 81/1917
  22954. }
  22955. },
  22956. back: {
  22957. height: math.unit(8, "feet"),
  22958. weight: math.unit(1, "ton"),
  22959. name: "Back",
  22960. image: {
  22961. source: "./media/characters/lycoa/back.svg",
  22962. extra: 1785/1720,
  22963. bottom: 91/1876
  22964. }
  22965. },
  22966. head: {
  22967. height: math.unit(1.6243, "feet"),
  22968. name: "Head",
  22969. image: {
  22970. source: "./media/characters/lycoa/head.svg",
  22971. extra: 1011/782,
  22972. bottom: 0/1011
  22973. }
  22974. },
  22975. tailmaw: {
  22976. height: math.unit(1.9, "feet"),
  22977. name: "Tailmaw",
  22978. image: {
  22979. source: "./media/characters/lycoa/tailmaw.svg"
  22980. }
  22981. },
  22982. tentacles: {
  22983. height: math.unit(2.1, "feet"),
  22984. name: "Tentacles",
  22985. image: {
  22986. source: "./media/characters/lycoa/tentacles.svg"
  22987. }
  22988. },
  22989. dick: {
  22990. height: math.unit(1.73, "feet"),
  22991. name: "Dick",
  22992. image: {
  22993. source: "./media/characters/lycoa/dick.svg"
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(8, "feet"),
  23001. default: true
  23002. },
  23003. {
  23004. name: "Macro",
  23005. height: math.unit(30, "feet")
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23011. {
  23012. front: {
  23013. height: math.unit(4 + 2 / 12, "feet"),
  23014. weight: math.unit(70, "lb"),
  23015. name: "Front",
  23016. image: {
  23017. source: "./media/characters/naldara/front.svg",
  23018. extra: 1664/1387,
  23019. bottom: 81/1745
  23020. },
  23021. form: "anthro",
  23022. default: true
  23023. },
  23024. naga: {
  23025. height: math.unit(20, "feet"),
  23026. weight: math.unit(15000, "kg"),
  23027. name: "Front",
  23028. image: {
  23029. source: "./media/characters/naldara/naga.svg",
  23030. extra: 1590/1396,
  23031. bottom: 285/1875
  23032. },
  23033. form: "naga",
  23034. default: true
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(4 + 2 / 12, "feet"),
  23041. form: "anthro",
  23042. default: true
  23043. },
  23044. {
  23045. name: "Normal",
  23046. height: math.unit(20, "feet"),
  23047. form: "naga",
  23048. default: true
  23049. },
  23050. ],
  23051. {
  23052. "anthro": {
  23053. name: "Anthro",
  23054. default: true
  23055. },
  23056. "naga": {
  23057. name: "Naga"
  23058. }
  23059. }
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(13 + 7 / 12, "feet"),
  23066. weight: math.unit(1500, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/briar/front.svg",
  23070. extra: 1223/1157,
  23071. bottom: 123/1346
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(13 + 7 / 12, "feet"),
  23079. default: true
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23085. {
  23086. side: {
  23087. height: math.unit(16, "feet"),
  23088. weight: math.unit(500, "lb"),
  23089. name: "Side",
  23090. image: {
  23091. source: "./media/characters/vanguard/side.svg",
  23092. extra: 1022/914,
  23093. bottom: 30/1052
  23094. }
  23095. },
  23096. sideAlt: {
  23097. height: math.unit(10, "feet"),
  23098. weight: math.unit(500, "lb"),
  23099. name: "Side (Alt)",
  23100. image: {
  23101. source: "./media/characters/vanguard/side-alt.svg",
  23102. extra: 502 / 425,
  23103. bottom: 0.087
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(17.71, "feet"),
  23111. default: true
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(7.5, "feet"),
  23120. weight: math.unit(2, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/artemis/work-safe-front.svg",
  23124. extra: 1192 / 1075,
  23125. bottom: 0.07
  23126. },
  23127. form: "work-safe",
  23128. default: true
  23129. },
  23130. frontNsfw: {
  23131. height: math.unit(7.5, "feet"),
  23132. weight: math.unit(2, "lb"),
  23133. name: "Front",
  23134. image: {
  23135. source: "./media/characters/artemis/calibrating-front.svg",
  23136. extra: 1192 / 1075,
  23137. bottom: 0.07
  23138. },
  23139. form: "calibrating",
  23140. default: true
  23141. },
  23142. frontNsfwer: {
  23143. height: math.unit(7.5, "feet"),
  23144. weight: math.unit(2, "lb"),
  23145. name: "Front",
  23146. image: {
  23147. source: "./media/characters/artemis/oversize-load-front.svg",
  23148. extra: 1192 / 1075,
  23149. bottom: 0.07
  23150. },
  23151. form: "oversize-load",
  23152. default: true
  23153. },
  23154. side: {
  23155. height: math.unit(7.5, "feet"),
  23156. weight: math.unit(2, "lb"),
  23157. name: "Side",
  23158. image: {
  23159. source: "./media/characters/artemis/work-safe-side.svg",
  23160. extra: 1192 / 1075,
  23161. bottom: 0.07
  23162. },
  23163. form: "work-safe"
  23164. },
  23165. sideNsfw: {
  23166. height: math.unit(7.5, "feet"),
  23167. weight: math.unit(2, "lb"),
  23168. name: "Side",
  23169. image: {
  23170. source: "./media/characters/artemis/calibrating-side.svg",
  23171. extra: 1192 / 1075,
  23172. bottom: 0.07
  23173. },
  23174. form: "calibrating"
  23175. },
  23176. sideNsfwer: {
  23177. height: math.unit(7.5, "feet"),
  23178. weight: math.unit(2, "lb"),
  23179. name: "Side",
  23180. image: {
  23181. source: "./media/characters/artemis/oversize-load-side.svg",
  23182. extra: 1192 / 1075,
  23183. bottom: 0.07
  23184. },
  23185. form: "oversize-load"
  23186. },
  23187. maw: {
  23188. height: math.unit(1.1, "feet"),
  23189. name: "Maw",
  23190. image: {
  23191. source: "./media/characters/artemis/maw.svg"
  23192. },
  23193. form: "work-safe"
  23194. },
  23195. stomach: {
  23196. height: math.unit(0.95, "feet"),
  23197. name: "Stomach",
  23198. image: {
  23199. source: "./media/characters/artemis/stomach.svg"
  23200. },
  23201. form: "work-safe"
  23202. },
  23203. dickCanine: {
  23204. height: math.unit(1, "feet"),
  23205. name: "Dick (Canine)",
  23206. image: {
  23207. source: "./media/characters/artemis/dick-canine.svg"
  23208. },
  23209. form: "calibrating"
  23210. },
  23211. dickEquine: {
  23212. height: math.unit(0.85, "feet"),
  23213. name: "Dick (Equine)",
  23214. image: {
  23215. source: "./media/characters/artemis/dick-equine.svg"
  23216. },
  23217. form: "calibrating"
  23218. },
  23219. dickExotic: {
  23220. height: math.unit(0.85, "feet"),
  23221. name: "Dick (Exotic)",
  23222. image: {
  23223. source: "./media/characters/artemis/dick-exotic.svg"
  23224. },
  23225. form: "calibrating"
  23226. },
  23227. dickCanineBigger: {
  23228. height: math.unit(1 * 1.33, "feet"),
  23229. name: "Dick (Canine)",
  23230. image: {
  23231. source: "./media/characters/artemis/dick-canine.svg"
  23232. },
  23233. form: "oversize-load"
  23234. },
  23235. dickEquineBigger: {
  23236. height: math.unit(0.85 * 1.33, "feet"),
  23237. name: "Dick (Equine)",
  23238. image: {
  23239. source: "./media/characters/artemis/dick-equine.svg"
  23240. },
  23241. form: "oversize-load"
  23242. },
  23243. dickExoticBigger: {
  23244. height: math.unit(0.85 * 1.33, "feet"),
  23245. name: "Dick (Exotic)",
  23246. image: {
  23247. source: "./media/characters/artemis/dick-exotic.svg"
  23248. },
  23249. form: "oversize-load"
  23250. },
  23251. },
  23252. [
  23253. {
  23254. name: "Normal",
  23255. height: math.unit(7.5, "feet"),
  23256. form: "work-safe",
  23257. default: true
  23258. },
  23259. {
  23260. name: "Normal",
  23261. height: math.unit(7.5, "feet"),
  23262. form: "calibrating",
  23263. default: true
  23264. },
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(7.5, "feet"),
  23268. form: "oversize-load",
  23269. default: true
  23270. },
  23271. {
  23272. name: "Enlarged",
  23273. height: math.unit(12, "feet"),
  23274. form: "work-safe",
  23275. },
  23276. {
  23277. name: "Enlarged",
  23278. height: math.unit(12, "feet"),
  23279. form: "calibrating",
  23280. },
  23281. {
  23282. name: "Enlarged",
  23283. height: math.unit(12, "feet"),
  23284. form: "oversize-load",
  23285. },
  23286. ],
  23287. {
  23288. "work-safe": {
  23289. name: "Work-Safe",
  23290. default: true
  23291. },
  23292. "calibrating": {
  23293. name: "Calibrating"
  23294. },
  23295. "oversize-load": {
  23296. name: "Oversize Load"
  23297. }
  23298. }
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(5 + 3 / 12, "feet"),
  23305. weight: math.unit(160, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/kira/front.svg",
  23309. extra: 906 / 786,
  23310. bottom: 0.01
  23311. }
  23312. },
  23313. back: {
  23314. height: math.unit(5 + 3 / 12, "feet"),
  23315. weight: math.unit(160, "lb"),
  23316. name: "Back",
  23317. image: {
  23318. source: "./media/characters/kira/back.svg",
  23319. extra: 882 / 757,
  23320. bottom: 0.005
  23321. }
  23322. },
  23323. frontDressed: {
  23324. height: math.unit(5 + 3 / 12, "feet"),
  23325. weight: math.unit(160, "lb"),
  23326. name: "Front (Dressed)",
  23327. image: {
  23328. source: "./media/characters/kira/front-dressed.svg",
  23329. extra: 906 / 786,
  23330. bottom: 0.01
  23331. }
  23332. },
  23333. beans: {
  23334. height: math.unit(0.92, "feet"),
  23335. name: "Beans",
  23336. image: {
  23337. source: "./media/characters/kira/beans.svg"
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Normal",
  23344. height: math.unit(5 + 3 / 12, "feet"),
  23345. default: true
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(5 + 4 / 12, "feet"),
  23354. weight: math.unit(145, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/scramble/front.svg",
  23358. extra: 763 / 727,
  23359. bottom: 0.05
  23360. }
  23361. },
  23362. back: {
  23363. height: math.unit(5 + 4 / 12, "feet"),
  23364. weight: math.unit(145, "lb"),
  23365. name: "Back",
  23366. image: {
  23367. source: "./media/characters/scramble/back.svg",
  23368. extra: 826 / 737,
  23369. bottom: 0.002
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(5 + 4 / 12, "feet"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23383. {
  23384. side: {
  23385. height: math.unit(6 + 2 / 12, "feet"),
  23386. weight: math.unit(190, "lb"),
  23387. name: "Side",
  23388. image: {
  23389. source: "./media/characters/biscuit/side.svg",
  23390. extra: 858 / 791,
  23391. bottom: 0.044
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Normal",
  23398. height: math.unit(6 + 2 / 12, "feet"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(5 + 2 / 12, "feet"),
  23408. weight: math.unit(120, "lb"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/poffin/front.svg",
  23412. extra: 786 / 680,
  23413. bottom: 0.005
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Normal",
  23420. height: math.unit(5 + 2 / 12, "feet"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(6 + 3 / 12, "feet"),
  23430. weight: math.unit(519, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/dhari/front.svg",
  23434. extra: 1048 / 946,
  23435. bottom: 0.015
  23436. }
  23437. },
  23438. back: {
  23439. height: math.unit(6 + 3 / 12, "feet"),
  23440. weight: math.unit(519, "lb"),
  23441. name: "Back",
  23442. image: {
  23443. source: "./media/characters/dhari/back.svg",
  23444. extra: 1048 / 931,
  23445. bottom: 0.005
  23446. }
  23447. },
  23448. frontDressed: {
  23449. height: math.unit(6 + 3 / 12, "feet"),
  23450. weight: math.unit(519, "lb"),
  23451. name: "Front (Dressed)",
  23452. image: {
  23453. source: "./media/characters/dhari/front-dressed.svg",
  23454. extra: 1713 / 1546,
  23455. bottom: 0.02
  23456. }
  23457. },
  23458. backDressed: {
  23459. height: math.unit(6 + 3 / 12, "feet"),
  23460. weight: math.unit(519, "lb"),
  23461. name: "Back (Dressed)",
  23462. image: {
  23463. source: "./media/characters/dhari/back-dressed.svg",
  23464. extra: 1699 / 1537,
  23465. bottom: 0.01
  23466. }
  23467. },
  23468. maw: {
  23469. height: math.unit(0.95, "feet"),
  23470. name: "Maw",
  23471. image: {
  23472. source: "./media/characters/dhari/maw.svg"
  23473. }
  23474. },
  23475. wereFront: {
  23476. height: math.unit(12 + 8 / 12, "feet"),
  23477. weight: math.unit(4000, "lb"),
  23478. name: "Front (Were)",
  23479. image: {
  23480. source: "./media/characters/dhari/were-front.svg",
  23481. extra: 1065 / 969,
  23482. bottom: 0.015
  23483. }
  23484. },
  23485. wereBack: {
  23486. height: math.unit(12 + 8 / 12, "feet"),
  23487. weight: math.unit(4000, "lb"),
  23488. name: "Back (Were)",
  23489. image: {
  23490. source: "./media/characters/dhari/were-back.svg",
  23491. extra: 1065 / 969,
  23492. bottom: 0.012
  23493. }
  23494. },
  23495. wereMaw: {
  23496. height: math.unit(0.625, "meters"),
  23497. name: "Maw (Were)",
  23498. image: {
  23499. source: "./media/characters/dhari/were-maw.svg"
  23500. }
  23501. },
  23502. },
  23503. [
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(6 + 3 / 12, "feet"),
  23507. default: true
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23513. {
  23514. anthro: {
  23515. height: math.unit(5 + 7 / 12, "feet"),
  23516. weight: math.unit(175, "lb"),
  23517. name: "Anthro",
  23518. image: {
  23519. source: "./media/characters/rena-dyne/anthro.svg",
  23520. extra: 1849 / 1785,
  23521. bottom: 0.005
  23522. }
  23523. },
  23524. taur: {
  23525. height: math.unit(15 + 6 / 12, "feet"),
  23526. weight: math.unit(8000, "lb"),
  23527. name: "Taur",
  23528. image: {
  23529. source: "./media/characters/rena-dyne/taur.svg",
  23530. extra: 2315 / 2234,
  23531. bottom: 0.033
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(5 + 7 / 12, "feet"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23545. {
  23546. front: {
  23547. height: math.unit(8, "feet"),
  23548. weight: math.unit(600, "lb"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/weremeep/front.svg",
  23552. extra: 970/849,
  23553. bottom: 7/977
  23554. }
  23555. },
  23556. },
  23557. [
  23558. {
  23559. name: "Normal",
  23560. height: math.unit(8, "feet"),
  23561. default: true
  23562. },
  23563. {
  23564. name: "Lorg",
  23565. height: math.unit(12, "feet")
  23566. },
  23567. {
  23568. name: "Oh Lawd She Comin'",
  23569. height: math.unit(20, "feet")
  23570. },
  23571. ]
  23572. ))
  23573. characterMakers.push(() => makeCharacter(
  23574. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23575. {
  23576. front: {
  23577. height: math.unit(4, "feet"),
  23578. weight: math.unit(90, "lb"),
  23579. name: "Front",
  23580. image: {
  23581. source: "./media/characters/reza/front.svg",
  23582. extra: 1183 / 1111,
  23583. bottom: 0.017
  23584. }
  23585. },
  23586. back: {
  23587. height: math.unit(4, "feet"),
  23588. weight: math.unit(90, "lb"),
  23589. name: "Back",
  23590. image: {
  23591. source: "./media/characters/reza/back.svg",
  23592. extra: 1183 / 1111,
  23593. bottom: 0.01
  23594. }
  23595. },
  23596. drake: {
  23597. height: math.unit(30, "feet"),
  23598. weight: math.unit(246960, "lb"),
  23599. name: "Drake",
  23600. image: {
  23601. source: "./media/characters/reza/drake.svg",
  23602. extra: 2350 / 2024,
  23603. bottom: 60.7 / 2403
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(4, "feet"),
  23611. default: true
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23617. {
  23618. side: {
  23619. height: math.unit(15, "feet"),
  23620. weight: math.unit(14, "tons"),
  23621. name: "Side",
  23622. image: {
  23623. source: "./media/characters/athea/side.svg",
  23624. extra: 960 / 540,
  23625. bottom: 0.003
  23626. }
  23627. },
  23628. sitting: {
  23629. height: math.unit(6 * 2.85, "feet"),
  23630. weight: math.unit(14, "tons"),
  23631. name: "Sitting",
  23632. image: {
  23633. source: "./media/characters/athea/sitting.svg",
  23634. extra: 621 / 581,
  23635. bottom: 0.075
  23636. }
  23637. },
  23638. maw: {
  23639. height: math.unit(7.59498031496063, "feet"),
  23640. name: "Maw",
  23641. image: {
  23642. source: "./media/characters/athea/maw.svg"
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Lap Cat",
  23649. height: math.unit(2.5, "feet")
  23650. },
  23651. {
  23652. name: "Minimacro",
  23653. height: math.unit(15, "feet"),
  23654. default: true
  23655. },
  23656. {
  23657. name: "Macro",
  23658. height: math.unit(120, "feet")
  23659. },
  23660. {
  23661. name: "Macro+",
  23662. height: math.unit(640, "feet")
  23663. },
  23664. {
  23665. name: "Colossus",
  23666. height: math.unit(2.2, "miles")
  23667. },
  23668. ]
  23669. ))
  23670. characterMakers.push(() => makeCharacter(
  23671. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23672. {
  23673. front: {
  23674. height: math.unit(8 + 8 / 12, "feet"),
  23675. weight: math.unit(130, "kg"),
  23676. name: "Front",
  23677. image: {
  23678. source: "./media/characters/seroko/front.svg",
  23679. extra: 1385 / 1280,
  23680. bottom: 0.025
  23681. }
  23682. },
  23683. back: {
  23684. height: math.unit(8 + 8 / 12, "feet"),
  23685. weight: math.unit(130, "kg"),
  23686. name: "Back",
  23687. image: {
  23688. source: "./media/characters/seroko/back.svg",
  23689. extra: 1369 / 1238,
  23690. bottom: 0.018
  23691. }
  23692. },
  23693. frontDressed: {
  23694. height: math.unit(8 + 8 / 12, "feet"),
  23695. weight: math.unit(130, "kg"),
  23696. name: "Front (Dressed)",
  23697. image: {
  23698. source: "./media/characters/seroko/front-dressed.svg",
  23699. extra: 1366 / 1275,
  23700. bottom: 0.03
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Normal",
  23707. height: math.unit(8 + 8 / 12, "feet"),
  23708. default: true
  23709. },
  23710. ]
  23711. ))
  23712. characterMakers.push(() => makeCharacter(
  23713. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23714. {
  23715. front: {
  23716. height: math.unit(5.5, "feet"),
  23717. weight: math.unit(160, "lb"),
  23718. name: "Front",
  23719. image: {
  23720. source: "./media/characters/quatzi/front.svg",
  23721. extra: 2346 / 2242,
  23722. bottom: 0.015
  23723. }
  23724. },
  23725. },
  23726. [
  23727. {
  23728. name: "Normal",
  23729. height: math.unit(5.5, "feet"),
  23730. default: true
  23731. },
  23732. {
  23733. name: "Big",
  23734. height: math.unit(7.7, "feet")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(5 + 11 / 12, "feet"),
  23743. weight: math.unit(180, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/sen/front.svg",
  23747. extra: 1321 / 1254,
  23748. bottom: 0.015
  23749. }
  23750. },
  23751. side: {
  23752. height: math.unit(5 + 11 / 12, "feet"),
  23753. weight: math.unit(180, "lb"),
  23754. name: "Side",
  23755. image: {
  23756. source: "./media/characters/sen/side.svg",
  23757. extra: 1321 / 1254,
  23758. bottom: 0.007
  23759. }
  23760. },
  23761. back: {
  23762. height: math.unit(5 + 11 / 12, "feet"),
  23763. weight: math.unit(180, "lb"),
  23764. name: "Back",
  23765. image: {
  23766. source: "./media/characters/sen/back.svg",
  23767. extra: 1321 / 1254
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(5 + 11 / 12, "feet"),
  23775. default: true
  23776. },
  23777. ]
  23778. ))
  23779. characterMakers.push(() => makeCharacter(
  23780. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23781. {
  23782. front: {
  23783. height: math.unit(166.6, "cm"),
  23784. weight: math.unit(66.6, "kg"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/fruity/front.svg",
  23788. extra: 1510 / 1386,
  23789. bottom: 0.04
  23790. }
  23791. },
  23792. back: {
  23793. height: math.unit(166.6, "cm"),
  23794. weight: math.unit(66.6, "lb"),
  23795. name: "Back",
  23796. image: {
  23797. source: "./media/characters/fruity/back.svg",
  23798. extra: 1563 / 1435,
  23799. bottom: 0.005
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(166.6, "cm"),
  23807. default: true
  23808. },
  23809. {
  23810. name: "Demonic",
  23811. height: math.unit(166.6, "feet")
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23817. {
  23818. side: {
  23819. height: math.unit(10, "feet"),
  23820. weight: math.unit(500, "lb"),
  23821. name: "Side",
  23822. image: {
  23823. source: "./media/characters/zost/side.svg",
  23824. extra: 2870/2533,
  23825. bottom: 252/3122
  23826. }
  23827. },
  23828. mawFront: {
  23829. height: math.unit(1.08, "meters"),
  23830. name: "Maw (Front)",
  23831. image: {
  23832. source: "./media/characters/zost/maw-front.svg"
  23833. }
  23834. },
  23835. mawSide: {
  23836. height: math.unit(2.66, "feet"),
  23837. name: "Maw (Side)",
  23838. image: {
  23839. source: "./media/characters/zost/maw-side.svg"
  23840. }
  23841. },
  23842. wingspan: {
  23843. height: math.unit(7.4, "feet"),
  23844. name: "Wingspan",
  23845. image: {
  23846. source: "./media/characters/zost/wingspan.svg"
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(10, "feet"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(5 + 4 / 12, "feet"),
  23863. weight: math.unit(120, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/luci/front.svg",
  23867. extra: 1985 / 1884,
  23868. bottom: 0.04
  23869. }
  23870. },
  23871. back: {
  23872. height: math.unit(5 + 4 / 12, "feet"),
  23873. weight: math.unit(120, "lb"),
  23874. name: "Back",
  23875. image: {
  23876. source: "./media/characters/luci/back.svg",
  23877. extra: 1892 / 1791,
  23878. bottom: 0.002
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(5 + 4 / 12, "feet"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(1500, "feet"),
  23895. weight: math.unit(3.8e6, "tons"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/2th/front.svg",
  23899. extra: 3489 / 3350,
  23900. bottom: 0.1
  23901. }
  23902. },
  23903. foot: {
  23904. height: math.unit(461, "feet"),
  23905. name: "Foot",
  23906. image: {
  23907. source: "./media/characters/2th/foot.svg"
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "\"Micro\"",
  23914. height: math.unit(15 + 7 / 12, "feet")
  23915. },
  23916. {
  23917. name: "Normal",
  23918. height: math.unit(1500, "feet"),
  23919. default: true
  23920. },
  23921. {
  23922. name: "Macro",
  23923. height: math.unit(5000, "feet")
  23924. },
  23925. {
  23926. name: "Megamacro",
  23927. height: math.unit(15, "miles")
  23928. },
  23929. {
  23930. name: "Gigamacro",
  23931. height: math.unit(4000, "miles")
  23932. },
  23933. {
  23934. name: "Galactic",
  23935. height: math.unit(50, "AU")
  23936. },
  23937. ]
  23938. ))
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23941. {
  23942. front: {
  23943. height: math.unit(5 + 6 / 12, "feet"),
  23944. weight: math.unit(220, "lb"),
  23945. name: "Front",
  23946. image: {
  23947. source: "./media/characters/amethyst/front.svg",
  23948. extra: 2078 / 2040,
  23949. bottom: 0.045
  23950. }
  23951. },
  23952. back: {
  23953. height: math.unit(5 + 6 / 12, "feet"),
  23954. weight: math.unit(220, "lb"),
  23955. name: "Back",
  23956. image: {
  23957. source: "./media/characters/amethyst/back.svg",
  23958. extra: 2021 / 1989,
  23959. bottom: 0.02
  23960. }
  23961. },
  23962. },
  23963. [
  23964. {
  23965. name: "Normal",
  23966. height: math.unit(5 + 6 / 12, "feet"),
  23967. default: true
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23973. {
  23974. front: {
  23975. height: math.unit(4 + 11 / 12, "feet"),
  23976. weight: math.unit(120, "lb"),
  23977. name: "Front",
  23978. image: {
  23979. source: "./media/characters/yumi-akiyama/front.svg",
  23980. extra: 2638/2432,
  23981. bottom: 70/2708
  23982. }
  23983. },
  23984. back: {
  23985. height: math.unit(4 + 11 / 12, "feet"),
  23986. weight: math.unit(120, "lb"),
  23987. name: "Back",
  23988. image: {
  23989. source: "./media/characters/yumi-akiyama/back.svg",
  23990. extra: 2502/2397,
  23991. bottom: 80/2582
  23992. }
  23993. },
  23994. casual: {
  23995. height: math.unit(4 + 11 / 12, "feet"),
  23996. weight: math.unit(120, "lb"),
  23997. name: "Casual",
  23998. image: {
  23999. source: "./media/characters/yumi-akiyama/casual.svg",
  24000. extra: 958/887,
  24001. bottom: 41/999
  24002. }
  24003. },
  24004. jammies: {
  24005. height: math.unit(4 + 11 / 12, "feet"),
  24006. weight: math.unit(120, "lb"),
  24007. name: "Jammies",
  24008. image: {
  24009. source: "./media/characters/yumi-akiyama/jammies.svg",
  24010. extra: 958/894,
  24011. bottom: 37/995
  24012. }
  24013. },
  24014. warmWeather: {
  24015. height: math.unit(4 + 11 / 12, "feet"),
  24016. weight: math.unit(120, "lb"),
  24017. name: "Warm Weather",
  24018. image: {
  24019. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24020. extra: 929/865,
  24021. bottom: 76/1005
  24022. }
  24023. },
  24024. mouth: {
  24025. height: math.unit(0.35, "feet"),
  24026. name: "Mouth",
  24027. image: {
  24028. source: "./media/characters/yumi-akiyama/mouth.svg"
  24029. }
  24030. },
  24031. paws: {
  24032. height: math.unit(1.05, "feet"),
  24033. name: "Paws",
  24034. image: {
  24035. source: "./media/characters/yumi-akiyama/paws.svg"
  24036. }
  24037. },
  24038. cockRing: {
  24039. height: math.unit(0.225, "feet"),
  24040. name: "Cock Ring",
  24041. image: {
  24042. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Galactic",
  24049. height: math.unit(50, "galaxies"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Universal",
  24054. height: math.unit(100, "universes")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(8, "feet"),
  24063. weight: math.unit(500, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/rifter-yrmori/front.svg",
  24067. extra: 1180 / 1125,
  24068. bottom: 0.02
  24069. }
  24070. },
  24071. back: {
  24072. height: math.unit(8, "feet"),
  24073. weight: math.unit(500, "lb"),
  24074. name: "Back",
  24075. image: {
  24076. source: "./media/characters/rifter-yrmori/back.svg",
  24077. extra: 1190 / 1145,
  24078. bottom: 0.001
  24079. }
  24080. },
  24081. wings: {
  24082. height: math.unit(7.75, "feet"),
  24083. weight: math.unit(500, "lb"),
  24084. name: "Wings",
  24085. image: {
  24086. source: "./media/characters/rifter-yrmori/wings.svg",
  24087. extra: 1357 / 1285
  24088. }
  24089. },
  24090. maw: {
  24091. height: math.unit(0.8, "feet"),
  24092. name: "Maw",
  24093. image: {
  24094. source: "./media/characters/rifter-yrmori/maw.svg"
  24095. }
  24096. },
  24097. mawfront: {
  24098. height: math.unit(1.45, "feet"),
  24099. name: "Maw (Front)",
  24100. image: {
  24101. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Normal",
  24108. height: math.unit(8, "feet"),
  24109. default: true
  24110. },
  24111. {
  24112. name: "Macro",
  24113. height: math.unit(42, "meters")
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24119. {
  24120. were: {
  24121. height: math.unit(25 + 6 / 12, "feet"),
  24122. weight: math.unit(10000, "lb"),
  24123. name: "Were",
  24124. image: {
  24125. source: "./media/characters/tahajin/were.svg",
  24126. extra: 801 / 770,
  24127. bottom: 0.042
  24128. }
  24129. },
  24130. aquatic: {
  24131. height: math.unit(6 + 4 / 12, "feet"),
  24132. weight: math.unit(160, "lb"),
  24133. name: "Aquatic",
  24134. image: {
  24135. source: "./media/characters/tahajin/aquatic.svg",
  24136. extra: 572 / 542,
  24137. bottom: 0.04
  24138. }
  24139. },
  24140. chow: {
  24141. height: math.unit(8 + 11 / 12, "feet"),
  24142. weight: math.unit(450, "lb"),
  24143. name: "Chow",
  24144. image: {
  24145. source: "./media/characters/tahajin/chow.svg",
  24146. extra: 660 / 640,
  24147. bottom: 0.015
  24148. }
  24149. },
  24150. demiNaga: {
  24151. height: math.unit(6 + 8 / 12, "feet"),
  24152. weight: math.unit(300, "lb"),
  24153. name: "Demi Naga",
  24154. image: {
  24155. source: "./media/characters/tahajin/demi-naga.svg",
  24156. extra: 643 / 615,
  24157. bottom: 0.1
  24158. }
  24159. },
  24160. data: {
  24161. height: math.unit(5, "inches"),
  24162. weight: math.unit(0.1, "lb"),
  24163. name: "Data",
  24164. image: {
  24165. source: "./media/characters/tahajin/data.svg"
  24166. }
  24167. },
  24168. fluu: {
  24169. height: math.unit(5 + 7 / 12, "feet"),
  24170. weight: math.unit(140, "lb"),
  24171. name: "Fluu",
  24172. image: {
  24173. source: "./media/characters/tahajin/fluu.svg",
  24174. extra: 628 / 592,
  24175. bottom: 0.02
  24176. }
  24177. },
  24178. starWarrior: {
  24179. height: math.unit(4 + 5 / 12, "feet"),
  24180. weight: math.unit(50, "lb"),
  24181. name: "Star Warrior",
  24182. image: {
  24183. source: "./media/characters/tahajin/star-warrior.svg"
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Normal",
  24190. height: math.unit(25 + 6 / 12, "feet"),
  24191. default: true
  24192. },
  24193. ]
  24194. ))
  24195. characterMakers.push(() => makeCharacter(
  24196. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24197. {
  24198. front: {
  24199. height: math.unit(8, "feet"),
  24200. weight: math.unit(350, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/gabira/front.svg",
  24204. extra: 1261/1154,
  24205. bottom: 51/1312
  24206. }
  24207. },
  24208. back: {
  24209. height: math.unit(8, "feet"),
  24210. weight: math.unit(350, "lb"),
  24211. name: "Back",
  24212. image: {
  24213. source: "./media/characters/gabira/back.svg",
  24214. extra: 1265/1163,
  24215. bottom: 46/1311
  24216. }
  24217. },
  24218. head: {
  24219. height: math.unit(2.85, "feet"),
  24220. name: "Head",
  24221. image: {
  24222. source: "./media/characters/gabira/head.svg"
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Normal",
  24229. height: math.unit(8, "feet"),
  24230. default: true
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(5 + 3 / 12, "feet"),
  24239. weight: math.unit(137, "lb"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/sasha-katraine/front.svg",
  24243. extra: 1745/1694,
  24244. bottom: 37/1782
  24245. }
  24246. },
  24247. back: {
  24248. height: math.unit(5 + 3 / 12, "feet"),
  24249. weight: math.unit(137, "lb"),
  24250. name: "Back",
  24251. image: {
  24252. source: "./media/characters/sasha-katraine/back.svg",
  24253. extra: 1776/1699,
  24254. bottom: 26/1802
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Micro",
  24261. height: math.unit(5, "inches")
  24262. },
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(5 + 3 / 12, "feet"),
  24266. default: true
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24272. {
  24273. side: {
  24274. height: math.unit(4, "inches"),
  24275. weight: math.unit(200, "grams"),
  24276. name: "Side",
  24277. image: {
  24278. source: "./media/characters/der/side.svg",
  24279. extra: 719 / 400,
  24280. bottom: 30.6 / 749.9187
  24281. }
  24282. },
  24283. },
  24284. [
  24285. {
  24286. name: "Micro",
  24287. height: math.unit(4, "inches"),
  24288. default: true
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24294. {
  24295. side: {
  24296. height: math.unit(30, "meters"),
  24297. weight: math.unit(700, "tonnes"),
  24298. name: "Side",
  24299. image: {
  24300. source: "./media/characters/fixerdragon/side.svg",
  24301. extra: (1293.0514 - 116.03) / 1106.86,
  24302. bottom: 116.03 / 1293.0514
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Planck",
  24309. height: math.unit(1.6e-35, "meters")
  24310. },
  24311. {
  24312. name: "Micro",
  24313. height: math.unit(0.4, "meters")
  24314. },
  24315. {
  24316. name: "Normal",
  24317. height: math.unit(30, "meters"),
  24318. default: true
  24319. },
  24320. {
  24321. name: "Megamacro",
  24322. height: math.unit(1.2, "megameters")
  24323. },
  24324. {
  24325. name: "Teramacro",
  24326. height: math.unit(130, "terameters")
  24327. },
  24328. {
  24329. name: "Yottamacro",
  24330. height: math.unit(6200, "yottameters")
  24331. },
  24332. ]
  24333. ));
  24334. characterMakers.push(() => makeCharacter(
  24335. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24336. {
  24337. front: {
  24338. height: math.unit(8, "feet"),
  24339. weight: math.unit(250, "lb"),
  24340. name: "Front",
  24341. image: {
  24342. source: "./media/characters/kite/front.svg",
  24343. extra: 456/414,
  24344. bottom: 24/480
  24345. }
  24346. },
  24347. },
  24348. [
  24349. {
  24350. name: "Normal",
  24351. height: math.unit(8, "feet"),
  24352. default: true
  24353. },
  24354. {
  24355. name: "Macro",
  24356. height: math.unit(360, "feet")
  24357. },
  24358. {
  24359. name: "Megamacro",
  24360. height: math.unit(1500, "feet")
  24361. },
  24362. ]
  24363. ))
  24364. characterMakers.push(() => makeCharacter(
  24365. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24366. {
  24367. anthro_front: {
  24368. height: math.unit(5 + 11/12, "feet"),
  24369. weight: math.unit(170, "lb"),
  24370. name: "Front",
  24371. image: {
  24372. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24373. extra: 1735/1585,
  24374. bottom: 96/1831
  24375. },
  24376. form: "anthro",
  24377. default: true
  24378. },
  24379. anthro_back: {
  24380. height: math.unit(5 + 11/12, "feet"),
  24381. weight: math.unit(170, "lb"),
  24382. name: "Back",
  24383. image: {
  24384. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24385. extra: 1749/1607,
  24386. bottom: 28/1777
  24387. },
  24388. form: "anthro"
  24389. },
  24390. anthro_male: {
  24391. height: math.unit(5 + 11/12, "feet"),
  24392. weight: math.unit(170, "lb"),
  24393. name: "Male",
  24394. image: {
  24395. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24396. extra: 1855/1713,
  24397. bottom: 63/1918
  24398. },
  24399. form: "anthro"
  24400. },
  24401. taur_front: {
  24402. height: math.unit(5 + 7/12, "feet"),
  24403. weight: math.unit(170, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24407. extra: 1151/1059,
  24408. bottom: 356/1507
  24409. },
  24410. form: "taur",
  24411. default: true
  24412. },
  24413. anthro_frontDressed: {
  24414. height: math.unit(5 + 11/12, "feet"),
  24415. weight: math.unit(170, "lb"),
  24416. name: "Front (Dressed)",
  24417. image: {
  24418. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24419. extra: 1735/1585,
  24420. bottom: 96/1831
  24421. },
  24422. form: "anthro"
  24423. },
  24424. anthro_backDressed: {
  24425. height: math.unit(5 + 11/12, "feet"),
  24426. weight: math.unit(170, "lb"),
  24427. name: "Back (Dressed)",
  24428. image: {
  24429. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24430. extra: 1749/1607,
  24431. bottom: 28/1777
  24432. },
  24433. form: "anthro"
  24434. },
  24435. anthro_maleDressed: {
  24436. height: math.unit(5 + 11/12, "feet"),
  24437. weight: math.unit(170, "lb"),
  24438. name: "Male (Dressed)",
  24439. image: {
  24440. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24441. extra: 1855/1713,
  24442. bottom: 63/1918
  24443. },
  24444. form: "anthro"
  24445. },
  24446. taur_frontDressed: {
  24447. height: math.unit(5 + 7/12, "feet"),
  24448. weight: math.unit(170, "lb"),
  24449. name: "Front (Dressed)",
  24450. image: {
  24451. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24452. extra: 1151/1059,
  24453. bottom: 356/1507
  24454. },
  24455. form: "taur"
  24456. },
  24457. maw: {
  24458. height: math.unit(1.46, "feet"),
  24459. name: "Maw",
  24460. image: {
  24461. source: "./media/characters/poojawa-vynar/maw.svg"
  24462. },
  24463. allForms: true
  24464. },
  24465. head: {
  24466. height: math.unit(2.34, "feet"),
  24467. name: "Head",
  24468. image: {
  24469. source: "./media/characters/poojawa-vynar/head.svg"
  24470. },
  24471. allForms: true
  24472. },
  24473. leftPaw: {
  24474. height: math.unit(1.72, "feet"),
  24475. name: "Left Paw",
  24476. image: {
  24477. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24478. },
  24479. allForms: true
  24480. },
  24481. rightPaw: {
  24482. height: math.unit(1.61, "feet"),
  24483. name: "Right Paw",
  24484. image: {
  24485. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24486. },
  24487. allForms: true
  24488. },
  24489. toering: {
  24490. height: math.unit(2.9, "inches"),
  24491. name: "Toering",
  24492. image: {
  24493. source: "./media/characters/poojawa-vynar/toering.svg"
  24494. },
  24495. allForms: true
  24496. },
  24497. shaft: {
  24498. height: math.unit(0.625, "feet"),
  24499. name: "Shaft",
  24500. image: {
  24501. source: "./media/characters/poojawa-vynar/shaft.svg"
  24502. },
  24503. allForms: true
  24504. },
  24505. spade: {
  24506. height: math.unit(0.42, "feet"),
  24507. name: "Spade",
  24508. image: {
  24509. source: "./media/characters/poojawa-vynar/spade.svg"
  24510. },
  24511. allForms: true
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Shortstack",
  24517. height: math.unit(4, "feet"),
  24518. form: "anthro"
  24519. },
  24520. {
  24521. name: "Normal",
  24522. height: math.unit(5 + 11 / 12, "feet"),
  24523. form: "anthro",
  24524. default: true
  24525. },
  24526. {
  24527. name: "Tauric",
  24528. height: math.unit(4, "meters"),
  24529. form: "taur",
  24530. default: true
  24531. },
  24532. ],
  24533. {
  24534. "anthro": {
  24535. name: "Anthro",
  24536. default: true
  24537. },
  24538. "taur": {
  24539. name: "Taur",
  24540. },
  24541. }
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24545. {
  24546. front: {
  24547. height: math.unit(293, "meters"),
  24548. weight: math.unit(70400, "tons"),
  24549. name: "Front",
  24550. image: {
  24551. source: "./media/characters/violette/front.svg",
  24552. extra: 1227 / 1180,
  24553. bottom: 0.005
  24554. }
  24555. },
  24556. back: {
  24557. height: math.unit(293, "meters"),
  24558. weight: math.unit(70400, "tons"),
  24559. name: "Back",
  24560. image: {
  24561. source: "./media/characters/violette/back.svg",
  24562. extra: 1227 / 1180,
  24563. bottom: 0.005
  24564. }
  24565. },
  24566. },
  24567. [
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(293, "meters"),
  24571. default: true
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(1050, "feet"),
  24580. weight: math.unit(200000, "tons"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/alessandra/front.svg",
  24584. extra: 960 / 912,
  24585. bottom: 0.06
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Macro",
  24592. height: math.unit(1050, "feet")
  24593. },
  24594. {
  24595. name: "Macro+",
  24596. height: math.unit(900, "meters"),
  24597. default: true
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24603. {
  24604. front: {
  24605. height: math.unit(5, "feet"),
  24606. weight: math.unit(187, "lb"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/person/front.svg",
  24610. extra: 3087 / 2945,
  24611. bottom: 91 / 3181
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Micro",
  24618. height: math.unit(3, "inches")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(5, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Macro",
  24627. height: math.unit(90, "feet")
  24628. },
  24629. {
  24630. name: "Max Size",
  24631. height: math.unit(280, "feet")
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(12, "feet"),
  24640. weight: math.unit(3200, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/ty/front.svg",
  24644. extra: 753/703,
  24645. bottom: 61/814
  24646. }
  24647. },
  24648. back: {
  24649. height: math.unit(12, "feet"),
  24650. weight: math.unit(3200, "lb"),
  24651. name: "Back",
  24652. image: {
  24653. source: "./media/characters/ty/back.svg",
  24654. extra: 757/707,
  24655. bottom: 16/773
  24656. }
  24657. },
  24658. head: {
  24659. height: math.unit(3.7, "feet"),
  24660. name: "Head",
  24661. image: {
  24662. source: "./media/characters/ty/head.svg"
  24663. }
  24664. },
  24665. hand: {
  24666. height: math.unit(2.38, "feet"),
  24667. name: "Hand",
  24668. image: {
  24669. source: "./media/characters/ty/hand.svg"
  24670. }
  24671. },
  24672. tail: {
  24673. height: math.unit(8.01096641535, "feet"),
  24674. name: "Tail",
  24675. image: {
  24676. source: "./media/characters/ty/tail.svg"
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(12, "feet"),
  24684. default: true
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(5 + 4 / 12, "feet"),
  24693. weight: math.unit(115, "lb"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/rocky/front.svg",
  24697. extra: 1012 / 975,
  24698. bottom: 54 / 1066
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Normal",
  24705. height: math.unit(5 + 4 / 12, "feet"),
  24706. default: true
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24712. {
  24713. upright: {
  24714. height: math.unit(6, "meters"),
  24715. weight: math.unit(4000, "kg"),
  24716. name: "Upright",
  24717. image: {
  24718. source: "./media/characters/ruin/upright.svg",
  24719. extra: 668 / 661,
  24720. bottom: 42 / 799.8396
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(6, "meters"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(5, "feet"),
  24737. weight: math.unit(106, "lb"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/robin/front.svg",
  24741. extra: 862 / 799,
  24742. bottom: 42.4 / 914.8856
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(5, "feet"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24756. {
  24757. side: {
  24758. height: math.unit(3, "feet"),
  24759. weight: math.unit(225, "lb"),
  24760. name: "Side",
  24761. image: {
  24762. source: "./media/characters/saian/side.svg",
  24763. extra: 566 / 356,
  24764. bottom: 79.7 / 643
  24765. }
  24766. },
  24767. maw: {
  24768. height: math.unit(2.85, "feet"),
  24769. name: "Maw",
  24770. image: {
  24771. source: "./media/characters/saian/maw.svg"
  24772. }
  24773. },
  24774. },
  24775. [
  24776. {
  24777. name: "Normal",
  24778. height: math.unit(3, "feet"),
  24779. default: true
  24780. },
  24781. ]
  24782. ))
  24783. characterMakers.push(() => makeCharacter(
  24784. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24785. {
  24786. side: {
  24787. height: math.unit(8, "feet"),
  24788. weight: math.unit(300, "lb"),
  24789. name: "Side",
  24790. image: {
  24791. source: "./media/characters/equus-silvermane/side.svg",
  24792. extra: 2176 / 2050,
  24793. bottom: 65.7 / 2245
  24794. }
  24795. },
  24796. front: {
  24797. height: math.unit(8, "feet"),
  24798. weight: math.unit(300, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/equus-silvermane/front.svg",
  24802. extra: 4633 / 4400,
  24803. bottom: 71.3 / 4706.915
  24804. }
  24805. },
  24806. sideStepping: {
  24807. height: math.unit(8, "feet"),
  24808. weight: math.unit(300, "lb"),
  24809. name: "Side (Stepping)",
  24810. image: {
  24811. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24812. extra: 1968 / 1860,
  24813. bottom: 16.4 / 1989
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "Normal",
  24820. height: math.unit(8, "feet")
  24821. },
  24822. {
  24823. name: "Minimacro",
  24824. height: math.unit(75, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(150, "feet")
  24830. },
  24831. {
  24832. name: "Macro+",
  24833. height: math.unit(1000, "feet")
  24834. },
  24835. {
  24836. name: "Megamacro",
  24837. height: math.unit(1, "mile")
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24843. {
  24844. side: {
  24845. height: math.unit(20, "feet"),
  24846. weight: math.unit(30000, "kg"),
  24847. name: "Side",
  24848. image: {
  24849. source: "./media/characters/windar/side.svg",
  24850. extra: 1491 / 1248,
  24851. bottom: 82.56 / 1568
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(20, "feet"),
  24859. default: true
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24865. {
  24866. side: {
  24867. height: math.unit(15.66, "feet"),
  24868. weight: math.unit(150, "lb"),
  24869. name: "Side",
  24870. image: {
  24871. source: "./media/characters/melody/side.svg",
  24872. extra: 1097 / 944,
  24873. bottom: 11.8 / 1109
  24874. }
  24875. },
  24876. sideOutfit: {
  24877. height: math.unit(15.66, "feet"),
  24878. weight: math.unit(150, "lb"),
  24879. name: "Side (Outfit)",
  24880. image: {
  24881. source: "./media/characters/melody/side-outfit.svg",
  24882. extra: 1097 / 944,
  24883. bottom: 11.8 / 1109
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(15.66, "feet"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24897. {
  24898. armoredFront: {
  24899. height: math.unit(8, "feet"),
  24900. weight: math.unit(325, "lb"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/windera/armored-front.svg",
  24904. extra: 1830/1598,
  24905. bottom: 151/1981
  24906. },
  24907. form: "armored",
  24908. default: true
  24909. },
  24910. macroFront: {
  24911. height: math.unit(70, "feet"),
  24912. weight: math.unit(315453, "lb"),
  24913. name: "Front",
  24914. image: {
  24915. source: "./media/characters/windera/macro-front.svg",
  24916. extra: 963/883,
  24917. bottom: 23/986
  24918. },
  24919. form: "macro",
  24920. default: true
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(8, "feet"),
  24927. default: true,
  24928. form: "armored"
  24929. },
  24930. {
  24931. name: "Normal",
  24932. height: math.unit(70, "feet"),
  24933. default: true,
  24934. form: "macro"
  24935. },
  24936. ],
  24937. {
  24938. "armored": {
  24939. name: "Armored",
  24940. default: true
  24941. },
  24942. "macro": {
  24943. name: "Macro",
  24944. },
  24945. }
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24949. {
  24950. front: {
  24951. height: math.unit(28.75, "feet"),
  24952. weight: math.unit(2000, "kg"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/sonear/front.svg",
  24956. extra: 1041.1 / 964.9,
  24957. bottom: 53.7 / 1096.6
  24958. }
  24959. },
  24960. },
  24961. [
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(28.75, "feet"),
  24965. default: true
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24971. {
  24972. side: {
  24973. height: math.unit(25.5, "feet"),
  24974. weight: math.unit(23000, "kg"),
  24975. name: "Side",
  24976. image: {
  24977. source: "./media/characters/kanara/side.svg"
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Normal",
  24984. height: math.unit(25.5, "feet"),
  24985. default: true
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24991. {
  24992. side: {
  24993. height: math.unit(10, "feet"),
  24994. weight: math.unit(1000, "kg"),
  24995. name: "Side",
  24996. image: {
  24997. source: "./media/characters/ereus/side.svg",
  24998. extra: 1157 / 959,
  24999. bottom: 153 / 1312.5
  25000. }
  25001. },
  25002. },
  25003. [
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(10, "feet"),
  25007. default: true
  25008. },
  25009. ]
  25010. ))
  25011. characterMakers.push(() => makeCharacter(
  25012. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25013. {
  25014. side: {
  25015. height: math.unit(4.5, "feet"),
  25016. weight: math.unit(500, "lb"),
  25017. name: "Side",
  25018. image: {
  25019. source: "./media/characters/e-ter/side.svg",
  25020. extra: 1550 / 1248,
  25021. bottom: 146 / 1694
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(4.5, "feet"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25035. {
  25036. side: {
  25037. height: math.unit(9.7, "feet"),
  25038. weight: math.unit(4000, "kg"),
  25039. name: "Side",
  25040. image: {
  25041. source: "./media/characters/yamie/side.svg"
  25042. }
  25043. },
  25044. },
  25045. [
  25046. {
  25047. name: "Normal",
  25048. height: math.unit(9.7, "feet"),
  25049. default: true
  25050. },
  25051. ]
  25052. ))
  25053. characterMakers.push(() => makeCharacter(
  25054. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25055. {
  25056. front: {
  25057. height: math.unit(50, "feet"),
  25058. weight: math.unit(50000, "kg"),
  25059. name: "Front",
  25060. image: {
  25061. source: "./media/characters/anders/front.svg",
  25062. extra: 570 / 539,
  25063. bottom: 14.7 / 586.7
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Large",
  25070. height: math.unit(50, "feet")
  25071. },
  25072. {
  25073. name: "Macro",
  25074. height: math.unit(2000, "feet"),
  25075. default: true
  25076. },
  25077. {
  25078. name: "Megamacro",
  25079. height: math.unit(12, "miles")
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(7 + 2 / 12, "feet"),
  25088. weight: math.unit(300, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/reban/front.svg",
  25092. extra: 1287/1212,
  25093. bottom: 148/1435
  25094. }
  25095. },
  25096. head: {
  25097. height: math.unit(1.95, "feet"),
  25098. name: "Head",
  25099. image: {
  25100. source: "./media/characters/reban/head.svg"
  25101. }
  25102. },
  25103. maw: {
  25104. height: math.unit(0.95, "feet"),
  25105. name: "Maw",
  25106. image: {
  25107. source: "./media/characters/reban/maw.svg"
  25108. }
  25109. },
  25110. foot: {
  25111. height: math.unit(1.65, "feet"),
  25112. name: "Foot",
  25113. image: {
  25114. source: "./media/characters/reban/foot.svg"
  25115. }
  25116. },
  25117. dick: {
  25118. height: math.unit(7 / 5, "feet"),
  25119. name: "Dick",
  25120. image: {
  25121. source: "./media/characters/reban/dick.svg"
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Natural Height",
  25128. height: math.unit(7 + 2 / 12, "feet")
  25129. },
  25130. {
  25131. name: "Macro",
  25132. height: math.unit(500, "feet"),
  25133. default: true
  25134. },
  25135. {
  25136. name: "Canon Height",
  25137. height: math.unit(50, "AU")
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25143. {
  25144. front: {
  25145. height: math.unit(6, "feet"),
  25146. weight: math.unit(150, "lb"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/terrance-keayes/front.svg",
  25150. extra: 1.005,
  25151. bottom: 151 / 1615
  25152. }
  25153. },
  25154. side: {
  25155. height: math.unit(6, "feet"),
  25156. weight: math.unit(150, "lb"),
  25157. name: "Side",
  25158. image: {
  25159. source: "./media/characters/terrance-keayes/side.svg",
  25160. extra: 1.005,
  25161. bottom: 129.4 / 1544
  25162. }
  25163. },
  25164. back: {
  25165. height: math.unit(6, "feet"),
  25166. weight: math.unit(150, "lb"),
  25167. name: "Back",
  25168. image: {
  25169. source: "./media/characters/terrance-keayes/back.svg",
  25170. extra: 1.005,
  25171. bottom: 58.4 / 1557.3
  25172. }
  25173. },
  25174. dick: {
  25175. height: math.unit(6 * 0.208, "feet"),
  25176. name: "Dick",
  25177. image: {
  25178. source: "./media/characters/terrance-keayes/dick.svg"
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Canon Height",
  25185. height: math.unit(35, "miles"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25192. {
  25193. front: {
  25194. height: math.unit(6, "feet"),
  25195. weight: math.unit(150, "lb"),
  25196. name: "Front",
  25197. image: {
  25198. source: "./media/characters/ofelia/front.svg",
  25199. extra: 1130/1117,
  25200. bottom: 91/1221
  25201. }
  25202. },
  25203. back: {
  25204. height: math.unit(6, "feet"),
  25205. weight: math.unit(150, "lb"),
  25206. name: "Back",
  25207. image: {
  25208. source: "./media/characters/ofelia/back.svg",
  25209. extra: 1172/1159,
  25210. bottom: 28/1200
  25211. }
  25212. },
  25213. maw: {
  25214. height: math.unit(1, "feet"),
  25215. name: "Maw",
  25216. image: {
  25217. source: "./media/characters/ofelia/maw.svg"
  25218. }
  25219. },
  25220. foot: {
  25221. height: math.unit(1.949, "feet"),
  25222. name: "Foot",
  25223. image: {
  25224. source: "./media/characters/ofelia/foot.svg"
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Canon Height",
  25231. height: math.unit(2000, "miles"),
  25232. default: true
  25233. },
  25234. ]
  25235. ))
  25236. characterMakers.push(() => makeCharacter(
  25237. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25238. {
  25239. front: {
  25240. height: math.unit(6, "feet"),
  25241. weight: math.unit(150, "lb"),
  25242. name: "Front",
  25243. image: {
  25244. source: "./media/characters/samuel/front.svg",
  25245. extra: 265 / 258,
  25246. bottom: 2 / 266.1566
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Macro",
  25253. height: math.unit(100, "feet"),
  25254. default: true
  25255. },
  25256. {
  25257. name: "Full Size",
  25258. height: math.unit(1000, "miles")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(6, "feet"),
  25267. weight: math.unit(300, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/beishir-kiel/front.svg",
  25271. extra: 569 / 547,
  25272. bottom: 41.9 / 609
  25273. }
  25274. },
  25275. maw: {
  25276. height: math.unit(6 * 0.202, "feet"),
  25277. name: "Maw",
  25278. image: {
  25279. source: "./media/characters/beishir-kiel/maw.svg"
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Macro",
  25286. height: math.unit(300, "feet"),
  25287. default: true
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25293. {
  25294. front: {
  25295. height: math.unit(5 + 7/12, "feet"),
  25296. weight: math.unit(120, "lb"),
  25297. name: "Front",
  25298. image: {
  25299. source: "./media/characters/logan-grey/front.svg",
  25300. extra: 1836/1738,
  25301. bottom: 108/1944
  25302. }
  25303. },
  25304. back: {
  25305. height: math.unit(5 + 7/12, "feet"),
  25306. weight: math.unit(120, "lb"),
  25307. name: "Back",
  25308. image: {
  25309. source: "./media/characters/logan-grey/back.svg",
  25310. extra: 1880/1794,
  25311. bottom: 24/1904
  25312. }
  25313. },
  25314. frontSfw: {
  25315. height: math.unit(5 + 7/12, "feet"),
  25316. weight: math.unit(120, "lb"),
  25317. name: "Front (SFW)",
  25318. image: {
  25319. source: "./media/characters/logan-grey/front-sfw.svg",
  25320. extra: 1836/1738,
  25321. bottom: 108/1944
  25322. }
  25323. },
  25324. backSfw: {
  25325. height: math.unit(5 + 7/12, "feet"),
  25326. weight: math.unit(120, "lb"),
  25327. name: "Back (SFW)",
  25328. image: {
  25329. source: "./media/characters/logan-grey/back-sfw.svg",
  25330. extra: 1880/1794,
  25331. bottom: 24/1904
  25332. }
  25333. },
  25334. hands: {
  25335. height: math.unit(0.84, "feet"),
  25336. name: "Hands",
  25337. image: {
  25338. source: "./media/characters/logan-grey/hands.svg"
  25339. }
  25340. },
  25341. paws: {
  25342. height: math.unit(0.72, "feet"),
  25343. name: "Paws",
  25344. image: {
  25345. source: "./media/characters/logan-grey/paws.svg"
  25346. }
  25347. },
  25348. cock: {
  25349. height: math.unit(1.45, "feet"),
  25350. name: "Cock",
  25351. image: {
  25352. source: "./media/characters/logan-grey/cock.svg"
  25353. }
  25354. },
  25355. cockAlt: {
  25356. height: math.unit(1.437, "feet"),
  25357. name: "Cock (alt)",
  25358. image: {
  25359. source: "./media/characters/logan-grey/cock-alt.svg"
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Normal",
  25366. height: math.unit(5 + 8 / 12, "feet")
  25367. },
  25368. {
  25369. name: "The 500 Foot Femboy",
  25370. height: math.unit(500, "feet"),
  25371. default: true
  25372. },
  25373. {
  25374. name: "Megmacro",
  25375. height: math.unit(20, "miles")
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25381. {
  25382. front: {
  25383. height: math.unit(8 + 2 / 12, "feet"),
  25384. weight: math.unit(275, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/draganta/front.svg",
  25388. extra: 1177 / 1135,
  25389. bottom: 33.46 / 1212.1
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(8 + 6 / 12, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(150, "feet")
  25402. },
  25403. {
  25404. name: "Megamacro",
  25405. height: math.unit(1000, "miles")
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(1.72, "m"),
  25414. weight: math.unit(80, "lb"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/voski/front.svg",
  25418. extra: 2076.22 / 2022.4,
  25419. bottom: 102.7 / 2177.3866
  25420. }
  25421. },
  25422. frontFlaccid: {
  25423. height: math.unit(1.72, "m"),
  25424. weight: math.unit(80, "lb"),
  25425. name: "Front (Flaccid)",
  25426. image: {
  25427. source: "./media/characters/voski/front-flaccid.svg",
  25428. extra: 2076.22 / 2022.4,
  25429. bottom: 102.7 / 2177.3866
  25430. }
  25431. },
  25432. frontErect: {
  25433. height: math.unit(1.72, "m"),
  25434. weight: math.unit(80, "lb"),
  25435. name: "Front (Erect)",
  25436. image: {
  25437. source: "./media/characters/voski/front-erect.svg",
  25438. extra: 2076.22 / 2022.4,
  25439. bottom: 102.7 / 2177.3866
  25440. }
  25441. },
  25442. back: {
  25443. height: math.unit(1.72, "m"),
  25444. weight: math.unit(80, "lb"),
  25445. name: "Back",
  25446. image: {
  25447. source: "./media/characters/voski/back.svg",
  25448. extra: 2104 / 2051,
  25449. bottom: 10.45 / 2113.63
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(1.72, "m")
  25457. },
  25458. {
  25459. name: "Macro",
  25460. height: math.unit(55, "m"),
  25461. default: true
  25462. },
  25463. {
  25464. name: "Macro+",
  25465. height: math.unit(300, "m")
  25466. },
  25467. {
  25468. name: "Macro++",
  25469. height: math.unit(700, "m")
  25470. },
  25471. {
  25472. name: "Macro+++",
  25473. height: math.unit(4500, "m")
  25474. },
  25475. {
  25476. name: "Macro++++",
  25477. height: math.unit(45, "km")
  25478. },
  25479. {
  25480. name: "Macro+++++",
  25481. height: math.unit(1220, "km")
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25487. {
  25488. front: {
  25489. height: math.unit(2.3, "m"),
  25490. weight: math.unit(304, "kg"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/icowom-lee/front.svg",
  25494. extra: 985 / 955,
  25495. bottom: 25.4 / 1012
  25496. }
  25497. },
  25498. fronttentacles: {
  25499. height: math.unit(2.3, "m"),
  25500. weight: math.unit(304, "kg"),
  25501. name: "Front (Tentacles)",
  25502. image: {
  25503. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25504. extra: 985 / 955,
  25505. bottom: 25.4 / 1012
  25506. }
  25507. },
  25508. back: {
  25509. height: math.unit(2.3, "m"),
  25510. weight: math.unit(304, "kg"),
  25511. name: "Back",
  25512. image: {
  25513. source: "./media/characters/icowom-lee/back.svg",
  25514. extra: 975 / 954,
  25515. bottom: 9.5 / 985
  25516. }
  25517. },
  25518. backtentacles: {
  25519. height: math.unit(2.3, "m"),
  25520. weight: math.unit(304, "kg"),
  25521. name: "Back (Tentacles)",
  25522. image: {
  25523. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25524. extra: 975 / 954,
  25525. bottom: 9.5 / 985
  25526. }
  25527. },
  25528. frontDressed: {
  25529. height: math.unit(2.3, "m"),
  25530. weight: math.unit(304, "kg"),
  25531. name: "Front (Dressed)",
  25532. image: {
  25533. source: "./media/characters/icowom-lee/front-dressed.svg",
  25534. extra: 3076 / 2933,
  25535. bottom: 51.4 / 3125.1889
  25536. }
  25537. },
  25538. rump: {
  25539. height: math.unit(0.776, "meters"),
  25540. name: "Rump",
  25541. image: {
  25542. source: "./media/characters/icowom-lee/rump.svg"
  25543. }
  25544. },
  25545. genitals: {
  25546. height: math.unit(0.78, "meters"),
  25547. name: "Genitals",
  25548. image: {
  25549. source: "./media/characters/icowom-lee/genitals.svg"
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(2.3, "meters"),
  25557. default: true
  25558. },
  25559. {
  25560. name: "Macro",
  25561. height: math.unit(94, "meters"),
  25562. default: true
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25568. {
  25569. front: {
  25570. height: math.unit(22, "meters"),
  25571. weight: math.unit(21000, "kg"),
  25572. name: "Front",
  25573. image: {
  25574. source: "./media/characters/shock-diamond/front.svg",
  25575. extra: 2204 / 2053,
  25576. bottom: 65 / 2239.47
  25577. }
  25578. },
  25579. frontNude: {
  25580. height: math.unit(22, "meters"),
  25581. weight: math.unit(21000, "kg"),
  25582. name: "Front (Nude)",
  25583. image: {
  25584. source: "./media/characters/shock-diamond/front-nude.svg",
  25585. extra: 2514 / 2285,
  25586. bottom: 13 / 2527.56
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(3, "meters")
  25594. },
  25595. {
  25596. name: "Macro",
  25597. height: math.unit(22, "meters"),
  25598. default: true
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25604. {
  25605. front: {
  25606. height: math.unit(5 + 4/12, "feet"),
  25607. weight: math.unit(125, "lb"),
  25608. name: "Front",
  25609. image: {
  25610. source: "./media/characters/rory/front.svg",
  25611. extra: 1790/1681,
  25612. bottom: 66/1856
  25613. },
  25614. form: "normal",
  25615. default: true
  25616. },
  25617. back: {
  25618. height: math.unit(5 + 4/12, "feet"),
  25619. weight: math.unit(125, "lb"),
  25620. name: "Back",
  25621. image: {
  25622. source: "./media/characters/rory/back.svg",
  25623. extra: 1805/1690,
  25624. bottom: 56/1861
  25625. },
  25626. form: "normal"
  25627. },
  25628. frontDressed: {
  25629. height: math.unit(5 + 4/12, "feet"),
  25630. weight: math.unit(125, "lb"),
  25631. name: "Front (Dressed)",
  25632. image: {
  25633. source: "./media/characters/rory/front-dressed.svg",
  25634. extra: 1790/1681,
  25635. bottom: 66/1856
  25636. },
  25637. form: "normal"
  25638. },
  25639. backDressed: {
  25640. height: math.unit(5 + 4/12, "feet"),
  25641. weight: math.unit(125, "lb"),
  25642. name: "Back (Dressed)",
  25643. image: {
  25644. source: "./media/characters/rory/back-dressed.svg",
  25645. extra: 1805/1690,
  25646. bottom: 56/1861
  25647. },
  25648. form: "normal"
  25649. },
  25650. frontNsfw: {
  25651. height: math.unit(5 + 4/12, "feet"),
  25652. weight: math.unit(125, "lb"),
  25653. name: "Front (NSFW)",
  25654. image: {
  25655. source: "./media/characters/rory/front-nsfw.svg",
  25656. extra: 1790/1681,
  25657. bottom: 66/1856
  25658. },
  25659. form: "normal"
  25660. },
  25661. backNsfw: {
  25662. height: math.unit(5 + 4/12, "feet"),
  25663. weight: math.unit(125, "lb"),
  25664. name: "Back (NSFW)",
  25665. image: {
  25666. source: "./media/characters/rory/back-nsfw.svg",
  25667. extra: 1805/1690,
  25668. bottom: 56/1861
  25669. },
  25670. form: "normal"
  25671. },
  25672. dick: {
  25673. height: math.unit(0.8, "feet"),
  25674. name: "Dick",
  25675. image: {
  25676. source: "./media/characters/rory/dick.svg"
  25677. },
  25678. form: "normal"
  25679. },
  25680. thicc_front: {
  25681. height: math.unit(5 + 4/12, "feet"),
  25682. weight: math.unit(195, "lb"),
  25683. name: "Front",
  25684. image: {
  25685. source: "./media/characters/rory/thicc-front.svg",
  25686. extra: 1220/1100,
  25687. bottom: 103/1323
  25688. },
  25689. form: "thicc",
  25690. default: true
  25691. },
  25692. thicc_back: {
  25693. height: math.unit(5 + 4/12, "feet"),
  25694. weight: math.unit(195, "lb"),
  25695. name: "Back",
  25696. image: {
  25697. source: "./media/characters/rory/thicc-back.svg",
  25698. extra: 1166/1086,
  25699. bottom: 35/1201
  25700. },
  25701. form: "thicc"
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Micro",
  25707. height: math.unit(3, "inches"),
  25708. allForms: true
  25709. },
  25710. {
  25711. name: "Normal",
  25712. height: math.unit(5 + 4/12, "feet"),
  25713. allForms: true,
  25714. default: true
  25715. },
  25716. {
  25717. name: "Macro",
  25718. height: math.unit(90, "feet"),
  25719. allForms: true
  25720. },
  25721. {
  25722. name: "Supercharged",
  25723. height: math.unit(270, "feet"),
  25724. allForms: true
  25725. },
  25726. ],
  25727. {
  25728. "normal": {
  25729. name: "Normal",
  25730. default: true
  25731. },
  25732. "thicc": {
  25733. name: "Thicc",
  25734. },
  25735. }
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(5 + 9 / 12, "feet"),
  25742. weight: math.unit(190, "lb"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/sprisk/front.svg",
  25746. extra: 1225 / 1180,
  25747. bottom: 42.7 / 1266.4
  25748. }
  25749. },
  25750. frontNsfw: {
  25751. height: math.unit(5 + 9 / 12, "feet"),
  25752. weight: math.unit(190, "lb"),
  25753. name: "Front (NSFW)",
  25754. image: {
  25755. source: "./media/characters/sprisk/front-nsfw.svg",
  25756. extra: 1225 / 1180,
  25757. bottom: 42.7 / 1266.4
  25758. }
  25759. },
  25760. back: {
  25761. height: math.unit(5 + 9 / 12, "feet"),
  25762. weight: math.unit(190, "lb"),
  25763. name: "Back",
  25764. image: {
  25765. source: "./media/characters/sprisk/back.svg",
  25766. extra: 1247 / 1200,
  25767. bottom: 5.6 / 1253.04
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Tiny",
  25774. height: math.unit(2, "inches")
  25775. },
  25776. {
  25777. name: "Normal",
  25778. height: math.unit(5 + 9 / 12, "feet"),
  25779. default: true
  25780. },
  25781. {
  25782. name: "Mini Macro",
  25783. height: math.unit(18, "feet")
  25784. },
  25785. {
  25786. name: "Macro",
  25787. height: math.unit(100, "feet")
  25788. },
  25789. {
  25790. name: "MACRO",
  25791. height: math.unit(50, "miles")
  25792. },
  25793. {
  25794. name: "M A C R O",
  25795. height: math.unit(300, "miles")
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25801. {
  25802. side: {
  25803. height: math.unit(15.6, "meters"),
  25804. weight: math.unit(700000, "kg"),
  25805. name: "Side",
  25806. image: {
  25807. source: "./media/characters/bunsen/side.svg",
  25808. extra: 1644 / 358
  25809. }
  25810. },
  25811. foot: {
  25812. height: math.unit(1.611 * 1644 / 358, "meter"),
  25813. name: "Foot",
  25814. image: {
  25815. source: "./media/characters/bunsen/foot.svg"
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Small",
  25822. height: math.unit(10, "feet")
  25823. },
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(15.6, "meters"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(4 + 11 / 12, "feet"),
  25836. weight: math.unit(140, "lb"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/sesh/front.svg",
  25840. extra: 3420 / 3231,
  25841. bottom: 72 / 3949.5
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(4 + 11 / 12, "feet")
  25849. },
  25850. {
  25851. name: "Grown",
  25852. height: math.unit(15, "feet"),
  25853. default: true
  25854. },
  25855. {
  25856. name: "Macro",
  25857. height: math.unit(1500, "feet")
  25858. },
  25859. {
  25860. name: "Megamacro",
  25861. height: math.unit(30, "miles")
  25862. },
  25863. {
  25864. name: "Continental",
  25865. height: math.unit(3000, "miles")
  25866. },
  25867. {
  25868. name: "Gravity Mass",
  25869. height: math.unit(300000, "miles")
  25870. },
  25871. {
  25872. name: "Planet Buster",
  25873. height: math.unit(30000000, "miles")
  25874. },
  25875. {
  25876. name: "Big",
  25877. height: math.unit(3000000000, "miles")
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(9, "feet"),
  25886. weight: math.unit(350, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/pepper/front.svg",
  25890. extra: 1448 / 1312,
  25891. bottom: 9.4 / 1457.88
  25892. }
  25893. },
  25894. back: {
  25895. height: math.unit(9, "feet"),
  25896. weight: math.unit(350, "lb"),
  25897. name: "Back",
  25898. image: {
  25899. source: "./media/characters/pepper/back.svg",
  25900. extra: 1423 / 1300,
  25901. bottom: 4.6 / 1429
  25902. }
  25903. },
  25904. maw: {
  25905. height: math.unit(0.932, "feet"),
  25906. name: "Maw",
  25907. image: {
  25908. source: "./media/characters/pepper/maw.svg"
  25909. }
  25910. },
  25911. },
  25912. [
  25913. {
  25914. name: "Normal",
  25915. height: math.unit(9, "feet"),
  25916. default: true
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25922. {
  25923. front: {
  25924. height: math.unit(6, "feet"),
  25925. weight: math.unit(150, "lb"),
  25926. name: "Front",
  25927. image: {
  25928. source: "./media/characters/maelstrom/front.svg",
  25929. extra: 2100 / 1883,
  25930. bottom: 94 / 2196.7
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Less Kaiju",
  25937. height: math.unit(200, "feet")
  25938. },
  25939. {
  25940. name: "Kaiju",
  25941. height: math.unit(400, "feet"),
  25942. default: true
  25943. },
  25944. {
  25945. name: "Kaiju-er",
  25946. height: math.unit(600, "feet")
  25947. },
  25948. ]
  25949. ))
  25950. characterMakers.push(() => makeCharacter(
  25951. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25952. {
  25953. front: {
  25954. height: math.unit(6 + 5 / 12, "feet"),
  25955. weight: math.unit(180, "lb"),
  25956. name: "Front",
  25957. image: {
  25958. source: "./media/characters/lexir/front.svg",
  25959. extra: 180 / 172,
  25960. bottom: 12 / 192
  25961. }
  25962. },
  25963. back: {
  25964. height: math.unit(6 + 5 / 12, "feet"),
  25965. weight: math.unit(180, "lb"),
  25966. name: "Back",
  25967. image: {
  25968. source: "./media/characters/lexir/back.svg",
  25969. extra: 1273/1201,
  25970. bottom: 39/1312
  25971. }
  25972. },
  25973. },
  25974. [
  25975. {
  25976. name: "Very Smal",
  25977. height: math.unit(1, "nm")
  25978. },
  25979. {
  25980. name: "Normal",
  25981. height: math.unit(6 + 5 / 12, "feet"),
  25982. default: true
  25983. },
  25984. {
  25985. name: "Macro",
  25986. height: math.unit(1, "mile")
  25987. },
  25988. {
  25989. name: "Megamacro",
  25990. height: math.unit(50, "miles")
  25991. },
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(1.5, "meters"),
  25999. weight: math.unit(100, "lb"),
  26000. name: "Front",
  26001. image: {
  26002. source: "./media/characters/maksio/front.svg",
  26003. extra: 1549 / 1531,
  26004. bottom: 123.7 / 1674.5429
  26005. }
  26006. },
  26007. back: {
  26008. height: math.unit(1.5, "meters"),
  26009. weight: math.unit(100, "lb"),
  26010. name: "Back",
  26011. image: {
  26012. source: "./media/characters/maksio/back.svg",
  26013. extra: 1541 / 1509,
  26014. bottom: 97 / 1639
  26015. }
  26016. },
  26017. hand: {
  26018. height: math.unit(0.621, "feet"),
  26019. name: "Hand",
  26020. image: {
  26021. source: "./media/characters/maksio/hand.svg"
  26022. }
  26023. },
  26024. foot: {
  26025. height: math.unit(1.611, "feet"),
  26026. name: "Foot",
  26027. image: {
  26028. source: "./media/characters/maksio/foot.svg"
  26029. }
  26030. },
  26031. },
  26032. [
  26033. {
  26034. name: "Shrunken",
  26035. height: math.unit(10, "cm")
  26036. },
  26037. {
  26038. name: "Normal",
  26039. height: math.unit(150, "cm"),
  26040. default: true
  26041. },
  26042. ]
  26043. ))
  26044. characterMakers.push(() => makeCharacter(
  26045. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26046. {
  26047. front: {
  26048. height: math.unit(100, "feet"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/erza-bear/front.svg",
  26052. extra: 2449 / 2390,
  26053. bottom: 46 / 2494
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(100, "feet"),
  26058. name: "Back",
  26059. image: {
  26060. source: "./media/characters/erza-bear/back.svg",
  26061. extra: 2489 / 2430,
  26062. bottom: 85.4 / 2480
  26063. }
  26064. },
  26065. tail: {
  26066. height: math.unit(42, "feet"),
  26067. name: "Tail",
  26068. image: {
  26069. source: "./media/characters/erza-bear/tail.svg"
  26070. }
  26071. },
  26072. tongue: {
  26073. height: math.unit(8, "feet"),
  26074. name: "Tongue",
  26075. image: {
  26076. source: "./media/characters/erza-bear/tongue.svg"
  26077. }
  26078. },
  26079. dick: {
  26080. height: math.unit(10.5, "feet"),
  26081. name: "Dick",
  26082. image: {
  26083. source: "./media/characters/erza-bear/dick.svg"
  26084. }
  26085. },
  26086. dickVertical: {
  26087. height: math.unit(16.9, "feet"),
  26088. name: "Dick (Vertical)",
  26089. image: {
  26090. source: "./media/characters/erza-bear/dick-vertical.svg"
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Macro",
  26097. height: math.unit(100, "feet"),
  26098. default: true
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26104. {
  26105. front: {
  26106. height: math.unit(172, "cm"),
  26107. weight: math.unit(73, "kg"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/violet-flor/front.svg",
  26111. extra: 1474/1379,
  26112. bottom: 113/1587
  26113. }
  26114. },
  26115. back: {
  26116. height: math.unit(180, "cm"),
  26117. weight: math.unit(73, "kg"),
  26118. name: "Back",
  26119. image: {
  26120. source: "./media/characters/violet-flor/back.svg",
  26121. extra: 1660/1567,
  26122. bottom: 49/1709
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Normal",
  26129. height: math.unit(172, "cm"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(6, "feet"),
  26139. weight: math.unit(220, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/lynn-rhea/front.svg",
  26143. extra: 310 / 273
  26144. }
  26145. },
  26146. back: {
  26147. height: math.unit(6, "feet"),
  26148. weight: math.unit(220, "lb"),
  26149. name: "Back",
  26150. image: {
  26151. source: "./media/characters/lynn-rhea/back.svg",
  26152. extra: 310 / 273
  26153. }
  26154. },
  26155. dicks: {
  26156. height: math.unit(0.9, "feet"),
  26157. name: "Dicks",
  26158. image: {
  26159. source: "./media/characters/lynn-rhea/dicks.svg"
  26160. }
  26161. },
  26162. slit: {
  26163. height: math.unit(0.4, "feet"),
  26164. name: "Slit",
  26165. image: {
  26166. source: "./media/characters/lynn-rhea/slit.svg"
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Micro",
  26173. height: math.unit(1, "inch")
  26174. },
  26175. {
  26176. name: "Macro",
  26177. height: math.unit(60, "feet"),
  26178. default: true
  26179. },
  26180. {
  26181. name: "Megamacro",
  26182. height: math.unit(2, "miles")
  26183. },
  26184. {
  26185. name: "Gigamacro",
  26186. height: math.unit(3, "earths")
  26187. },
  26188. {
  26189. name: "Galactic",
  26190. height: math.unit(0.8, "galaxies")
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26196. {
  26197. front: {
  26198. height: math.unit(1600, "feet"),
  26199. weight: math.unit(85758785169, "kg"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/valathos/front.svg",
  26203. extra: 1451 / 1339
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Macro",
  26210. height: math.unit(1600, "feet"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(7 + 5 / 12, "feet"),
  26220. weight: math.unit(300, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/azula/front.svg",
  26224. extra: 3208 / 2880,
  26225. bottom: 80.2 / 3277
  26226. }
  26227. },
  26228. back: {
  26229. height: math.unit(7 + 5 / 12, "feet"),
  26230. weight: math.unit(300, "lb"),
  26231. name: "Back",
  26232. image: {
  26233. source: "./media/characters/azula/back.svg",
  26234. extra: 3169 / 2822,
  26235. bottom: 150.6 / 3321
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(7 + 5 / 12, "feet"),
  26243. default: true
  26244. },
  26245. {
  26246. name: "Big",
  26247. height: math.unit(20, "feet")
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26253. {
  26254. front: {
  26255. height: math.unit(5 + 1 / 12, "feet"),
  26256. weight: math.unit(110, "lb"),
  26257. name: "Front",
  26258. image: {
  26259. source: "./media/characters/rupert/front.svg",
  26260. extra: 1549 / 1495,
  26261. bottom: 54.2 / 1604.4
  26262. }
  26263. },
  26264. },
  26265. [
  26266. {
  26267. name: "Normal",
  26268. height: math.unit(5 + 1 / 12, "feet"),
  26269. default: true
  26270. },
  26271. ]
  26272. ))
  26273. characterMakers.push(() => makeCharacter(
  26274. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26275. {
  26276. front: {
  26277. height: math.unit(8 + 4 / 12, "feet"),
  26278. weight: math.unit(350, "lb"),
  26279. name: "Front",
  26280. image: {
  26281. source: "./media/characters/sheera-castellar/front.svg",
  26282. extra: 1957 / 1894,
  26283. bottom: 26.97 / 1975.017
  26284. }
  26285. },
  26286. side: {
  26287. height: math.unit(8 + 4 / 12, "feet"),
  26288. weight: math.unit(350, "lb"),
  26289. name: "Side",
  26290. image: {
  26291. source: "./media/characters/sheera-castellar/side.svg",
  26292. extra: 1957 / 1894
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(8 + 4 / 12, "feet"),
  26297. weight: math.unit(350, "lb"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/sheera-castellar/back.svg",
  26301. extra: 1957 / 1894
  26302. }
  26303. },
  26304. angled: {
  26305. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26306. weight: math.unit(350, "lb"),
  26307. name: "Angled",
  26308. image: {
  26309. source: "./media/characters/sheera-castellar/angled.svg",
  26310. extra: 1807 / 1707,
  26311. bottom: 68 / 1875
  26312. }
  26313. },
  26314. genitals: {
  26315. height: math.unit(2.2, "feet"),
  26316. name: "Genitals",
  26317. image: {
  26318. source: "./media/characters/sheera-castellar/genitals.svg"
  26319. }
  26320. },
  26321. taur: {
  26322. height: math.unit(10 + 6/12, "feet"),
  26323. name: "Taur",
  26324. image: {
  26325. source: "./media/characters/sheera-castellar/taur.svg",
  26326. extra: 2017/1909,
  26327. bottom: 185/2202
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(8 + 4 / 12, "feet")
  26335. },
  26336. {
  26337. name: "Macro",
  26338. height: math.unit(150, "feet"),
  26339. default: true
  26340. },
  26341. {
  26342. name: "Macro+",
  26343. height: math.unit(800, "feet")
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26349. {
  26350. front: {
  26351. height: math.unit(6, "feet"),
  26352. weight: math.unit(150, "lb"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/jaipur/front.svg",
  26356. extra: 3860 / 3731,
  26357. bottom: 287 / 4140
  26358. }
  26359. },
  26360. back: {
  26361. height: math.unit(6, "feet"),
  26362. weight: math.unit(150, "lb"),
  26363. name: "Back",
  26364. image: {
  26365. source: "./media/characters/jaipur/back.svg",
  26366. extra: 1637/1561,
  26367. bottom: 154/1791
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(1.85, "meters"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Macro",
  26379. height: math.unit(150, "meters")
  26380. },
  26381. {
  26382. name: "Macro+",
  26383. height: math.unit(0.5, "miles")
  26384. },
  26385. {
  26386. name: "Macro++",
  26387. height: math.unit(2.5, "miles")
  26388. },
  26389. {
  26390. name: "Macro+++",
  26391. height: math.unit(12, "miles")
  26392. },
  26393. {
  26394. name: "Macro++++",
  26395. height: math.unit(120, "miles")
  26396. },
  26397. {
  26398. name: "Macro+++++",
  26399. height: math.unit(1200, "miles")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(6, "feet"),
  26408. weight: math.unit(150, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/sheila-wolf/front.svg",
  26412. extra: 1931 / 1808,
  26413. bottom: 29.5 / 1960
  26414. }
  26415. },
  26416. dick: {
  26417. height: math.unit(1.464, "feet"),
  26418. name: "Dick",
  26419. image: {
  26420. source: "./media/characters/sheila-wolf/dick.svg"
  26421. }
  26422. },
  26423. muzzle: {
  26424. height: math.unit(0.513, "feet"),
  26425. name: "Muzzle",
  26426. image: {
  26427. source: "./media/characters/sheila-wolf/muzzle.svg"
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Macro",
  26434. height: math.unit(70, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26441. {
  26442. front: {
  26443. height: math.unit(32, "meters"),
  26444. weight: math.unit(300000, "kg"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/almor/front.svg",
  26448. extra: 1408 / 1322,
  26449. bottom: 94.6 / 1506.5
  26450. }
  26451. },
  26452. },
  26453. [
  26454. {
  26455. name: "Macro",
  26456. height: math.unit(32, "meters"),
  26457. default: true
  26458. },
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26463. {
  26464. front: {
  26465. height: math.unit(7, "feet"),
  26466. weight: math.unit(200, "lb"),
  26467. name: "Front",
  26468. image: {
  26469. source: "./media/characters/silver/front.svg",
  26470. extra: 472.1 / 450.5,
  26471. bottom: 26.5 / 499.424
  26472. }
  26473. },
  26474. },
  26475. [
  26476. {
  26477. name: "Normal",
  26478. height: math.unit(7, "feet"),
  26479. default: true
  26480. },
  26481. {
  26482. name: "Macro",
  26483. height: math.unit(800, "feet")
  26484. },
  26485. {
  26486. name: "Megamacro",
  26487. height: math.unit(250, "miles")
  26488. },
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26493. {
  26494. front: {
  26495. height: math.unit(6, "feet"),
  26496. weight: math.unit(150, "lb"),
  26497. name: "Front",
  26498. image: {
  26499. source: "./media/characters/pliskin/front.svg",
  26500. extra: 1469 / 1359,
  26501. bottom: 70 / 1540
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Micro",
  26508. height: math.unit(3, "inches")
  26509. },
  26510. {
  26511. name: "Normal",
  26512. height: math.unit(5 + 11 / 12, "feet"),
  26513. default: true
  26514. },
  26515. {
  26516. name: "Macro",
  26517. height: math.unit(120, "feet")
  26518. },
  26519. ]
  26520. ))
  26521. characterMakers.push(() => makeCharacter(
  26522. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26523. {
  26524. front: {
  26525. height: math.unit(6, "feet"),
  26526. weight: math.unit(150, "lb"),
  26527. name: "Front",
  26528. image: {
  26529. source: "./media/characters/sammy/front.svg",
  26530. extra: 1193 / 1089,
  26531. bottom: 30.5 / 1226
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Macro",
  26538. height: math.unit(1700, "feet"),
  26539. default: true
  26540. },
  26541. {
  26542. name: "Examacro",
  26543. height: math.unit(2.5e9, "lightyears")
  26544. },
  26545. ]
  26546. ))
  26547. characterMakers.push(() => makeCharacter(
  26548. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26549. {
  26550. front: {
  26551. height: math.unit(21, "meters"),
  26552. weight: math.unit(12, "tonnes"),
  26553. name: "Front",
  26554. image: {
  26555. source: "./media/characters/kuru/front.svg",
  26556. extra: 4301 / 3785,
  26557. bottom: 371.3 / 4691
  26558. }
  26559. },
  26560. },
  26561. [
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(21, "meters"),
  26565. default: true
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(23, "meters"),
  26574. weight: math.unit(12.2, "tonnes"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/rakka/front.svg",
  26578. extra: 4670 / 4169,
  26579. bottom: 301 / 4968.7
  26580. }
  26581. },
  26582. },
  26583. [
  26584. {
  26585. name: "Macro",
  26586. height: math.unit(23, "meters"),
  26587. default: true
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(6, "feet"),
  26596. weight: math.unit(150, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/rhys-feline/front.svg",
  26600. extra: 2488 / 2308,
  26601. bottom: 35.67 / 2519.19
  26602. }
  26603. },
  26604. },
  26605. [
  26606. {
  26607. name: "Really Small",
  26608. height: math.unit(1, "nm")
  26609. },
  26610. {
  26611. name: "Micro",
  26612. height: math.unit(4, "inches")
  26613. },
  26614. {
  26615. name: "Normal",
  26616. height: math.unit(4 + 10 / 12, "feet"),
  26617. default: true
  26618. },
  26619. {
  26620. name: "Macro",
  26621. height: math.unit(100, "feet")
  26622. },
  26623. {
  26624. name: "Megamacto",
  26625. height: math.unit(50, "miles")
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26631. {
  26632. side: {
  26633. height: math.unit(30, "feet"),
  26634. weight: math.unit(35000, "kg"),
  26635. name: "Side",
  26636. image: {
  26637. source: "./media/characters/alydar/side.svg",
  26638. extra: 234 / 222,
  26639. bottom: 6.5 / 241
  26640. }
  26641. },
  26642. front: {
  26643. height: math.unit(30, "feet"),
  26644. weight: math.unit(35000, "kg"),
  26645. name: "Front",
  26646. image: {
  26647. source: "./media/characters/alydar/front.svg",
  26648. extra: 223.37 / 210.2,
  26649. bottom: 22.3 / 246.76
  26650. }
  26651. },
  26652. top: {
  26653. height: math.unit(64.54, "feet"),
  26654. weight: math.unit(35000, "kg"),
  26655. name: "Top",
  26656. image: {
  26657. source: "./media/characters/alydar/top.svg"
  26658. }
  26659. },
  26660. anthro: {
  26661. height: math.unit(30, "feet"),
  26662. weight: math.unit(9000, "kg"),
  26663. name: "Anthro",
  26664. image: {
  26665. source: "./media/characters/alydar/anthro.svg",
  26666. extra: 432 / 421,
  26667. bottom: 7.18 / 440
  26668. }
  26669. },
  26670. maw: {
  26671. height: math.unit(11.693, "feet"),
  26672. name: "Maw",
  26673. image: {
  26674. source: "./media/characters/alydar/maw.svg"
  26675. }
  26676. },
  26677. head: {
  26678. height: math.unit(11.693, "feet"),
  26679. name: "Head",
  26680. image: {
  26681. source: "./media/characters/alydar/head.svg"
  26682. }
  26683. },
  26684. headAlt: {
  26685. height: math.unit(12.861, "feet"),
  26686. name: "Head (Alt)",
  26687. image: {
  26688. source: "./media/characters/alydar/head-alt.svg"
  26689. }
  26690. },
  26691. wing: {
  26692. height: math.unit(20.712, "feet"),
  26693. name: "Wing",
  26694. image: {
  26695. source: "./media/characters/alydar/wing.svg"
  26696. }
  26697. },
  26698. wingFeather: {
  26699. height: math.unit(9.662, "feet"),
  26700. name: "Wing Feather",
  26701. image: {
  26702. source: "./media/characters/alydar/wing-feather.svg"
  26703. }
  26704. },
  26705. countourFeather: {
  26706. height: math.unit(4.154, "feet"),
  26707. name: "Contour Feather",
  26708. image: {
  26709. source: "./media/characters/alydar/contour-feather.svg"
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Diplomatic",
  26716. height: math.unit(13, "feet"),
  26717. default: true
  26718. },
  26719. {
  26720. name: "Small",
  26721. height: math.unit(30, "feet")
  26722. },
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(95, "feet"),
  26726. default: true
  26727. },
  26728. {
  26729. name: "Large",
  26730. height: math.unit(285, "feet")
  26731. },
  26732. {
  26733. name: "Incomprehensible",
  26734. height: math.unit(450, "megameters")
  26735. },
  26736. ]
  26737. ))
  26738. characterMakers.push(() => makeCharacter(
  26739. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26740. {
  26741. side: {
  26742. height: math.unit(11, "feet"),
  26743. weight: math.unit(1750, "kg"),
  26744. name: "Side",
  26745. image: {
  26746. source: "./media/characters/selicia/side.svg",
  26747. extra: 440 / 396,
  26748. bottom: 24.8 / 465.979
  26749. }
  26750. },
  26751. maw: {
  26752. height: math.unit(4.665, "feet"),
  26753. name: "Maw",
  26754. image: {
  26755. source: "./media/characters/selicia/maw.svg"
  26756. }
  26757. },
  26758. },
  26759. [
  26760. {
  26761. name: "Normal",
  26762. height: math.unit(11, "feet"),
  26763. default: true
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26769. {
  26770. side: {
  26771. height: math.unit(2 + 6 / 12, "feet"),
  26772. weight: math.unit(30, "lb"),
  26773. name: "Side",
  26774. image: {
  26775. source: "./media/characters/layla/side.svg",
  26776. extra: 244 / 188,
  26777. bottom: 18.2 / 262.1
  26778. }
  26779. },
  26780. back: {
  26781. height: math.unit(2 + 6 / 12, "feet"),
  26782. weight: math.unit(30, "lb"),
  26783. name: "Back",
  26784. image: {
  26785. source: "./media/characters/layla/back.svg",
  26786. extra: 308 / 241.5,
  26787. bottom: 8.9 / 316.8
  26788. }
  26789. },
  26790. cumming: {
  26791. height: math.unit(2 + 6 / 12, "feet"),
  26792. weight: math.unit(30, "lb"),
  26793. name: "Cumming",
  26794. image: {
  26795. source: "./media/characters/layla/cumming.svg",
  26796. extra: 342 / 279,
  26797. bottom: 595 / 938
  26798. }
  26799. },
  26800. dickFlaccid: {
  26801. height: math.unit(2.595, "feet"),
  26802. name: "Flaccid Genitals",
  26803. image: {
  26804. source: "./media/characters/layla/dick-flaccid.svg"
  26805. }
  26806. },
  26807. dickErect: {
  26808. height: math.unit(2.359, "feet"),
  26809. name: "Erect Genitals",
  26810. image: {
  26811. source: "./media/characters/layla/dick-erect.svg"
  26812. }
  26813. },
  26814. dragon: {
  26815. height: math.unit(40, "feet"),
  26816. name: "Dragon",
  26817. image: {
  26818. source: "./media/characters/layla/dragon.svg",
  26819. extra: 610/535,
  26820. bottom: 367/977
  26821. }
  26822. },
  26823. taur: {
  26824. height: math.unit(30, "feet"),
  26825. name: "Taur",
  26826. image: {
  26827. source: "./media/characters/layla/taur.svg",
  26828. extra: 1268/1199,
  26829. bottom: 112/1380
  26830. }
  26831. },
  26832. },
  26833. [
  26834. {
  26835. name: "Micro",
  26836. height: math.unit(1, "inch")
  26837. },
  26838. {
  26839. name: "Small",
  26840. height: math.unit(1, "foot")
  26841. },
  26842. {
  26843. name: "Normal",
  26844. height: math.unit(2 + 6 / 12, "feet"),
  26845. default: true
  26846. },
  26847. {
  26848. name: "Macro",
  26849. height: math.unit(200, "feet")
  26850. },
  26851. {
  26852. name: "Megamacro",
  26853. height: math.unit(1000, "miles")
  26854. },
  26855. {
  26856. name: "Planetary",
  26857. height: math.unit(8000, "miles")
  26858. },
  26859. {
  26860. name: "True Layla",
  26861. height: math.unit(200000 * 7, "multiverses")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26867. {
  26868. back: {
  26869. height: math.unit(10.5, "feet"),
  26870. weight: math.unit(800, "lb"),
  26871. name: "Back",
  26872. image: {
  26873. source: "./media/characters/knox/back.svg",
  26874. extra: 1486 / 1089,
  26875. bottom: 107 / 1601.4
  26876. }
  26877. },
  26878. side: {
  26879. height: math.unit(10.5, "feet"),
  26880. weight: math.unit(800, "lb"),
  26881. name: "Side",
  26882. image: {
  26883. source: "./media/characters/knox/side.svg",
  26884. extra: 244 / 218,
  26885. bottom: 14 / 260
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Compact",
  26892. height: math.unit(10.5, "feet"),
  26893. default: true
  26894. },
  26895. {
  26896. name: "Dynamax",
  26897. height: math.unit(210, "feet")
  26898. },
  26899. {
  26900. name: "Full Macro",
  26901. height: math.unit(850, "feet")
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26907. {
  26908. front: {
  26909. height: math.unit(28, "feet"),
  26910. weight: math.unit(10500, "lb"),
  26911. name: "Front",
  26912. image: {
  26913. source: "./media/characters/kayda/front.svg",
  26914. extra: 1536 / 1428,
  26915. bottom: 68.7 / 1603
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(28, "feet"),
  26920. weight: math.unit(10500, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/kayda/back.svg",
  26924. extra: 1557 / 1464,
  26925. bottom: 39.5 / 1597.49
  26926. }
  26927. },
  26928. dick: {
  26929. height: math.unit(3.858, "feet"),
  26930. name: "Dick",
  26931. image: {
  26932. source: "./media/characters/kayda/dick.svg"
  26933. }
  26934. },
  26935. },
  26936. [
  26937. {
  26938. name: "Macro",
  26939. height: math.unit(28, "feet"),
  26940. default: true
  26941. },
  26942. ]
  26943. ))
  26944. characterMakers.push(() => makeCharacter(
  26945. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26946. {
  26947. front: {
  26948. height: math.unit(10 + 11 / 12, "feet"),
  26949. weight: math.unit(1400, "lb"),
  26950. name: "Front",
  26951. image: {
  26952. source: "./media/characters/brian/front.svg",
  26953. extra: 737 / 692,
  26954. bottom: 55.4 / 785
  26955. }
  26956. },
  26957. },
  26958. [
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(10 + 11 / 12, "feet"),
  26962. default: true
  26963. },
  26964. ]
  26965. ))
  26966. characterMakers.push(() => makeCharacter(
  26967. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26968. {
  26969. front: {
  26970. height: math.unit(5 + 8 / 12, "feet"),
  26971. weight: math.unit(140, "lb"),
  26972. name: "Front",
  26973. image: {
  26974. source: "./media/characters/khemri/front.svg",
  26975. extra: 4780 / 4059,
  26976. bottom: 80.1 / 4859.25
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Micro",
  26983. height: math.unit(6, "inches")
  26984. },
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(5 + 8 / 12, "feet"),
  26988. default: true
  26989. },
  26990. ]
  26991. ))
  26992. characterMakers.push(() => makeCharacter(
  26993. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26994. {
  26995. front: {
  26996. height: math.unit(13, "feet"),
  26997. weight: math.unit(1700, "lb"),
  26998. name: "Front",
  26999. image: {
  27000. source: "./media/characters/felix-braveheart/front.svg",
  27001. extra: 1222 / 1157,
  27002. bottom: 53.2 / 1280
  27003. }
  27004. },
  27005. back: {
  27006. height: math.unit(13, "feet"),
  27007. weight: math.unit(1700, "lb"),
  27008. name: "Back",
  27009. image: {
  27010. source: "./media/characters/felix-braveheart/back.svg",
  27011. extra: 1277 / 1203,
  27012. bottom: 50.2 / 1327
  27013. }
  27014. },
  27015. feral: {
  27016. height: math.unit(6, "feet"),
  27017. weight: math.unit(400, "lb"),
  27018. name: "Feral",
  27019. image: {
  27020. source: "./media/characters/felix-braveheart/feral.svg",
  27021. extra: 682 / 625,
  27022. bottom: 6.9 / 688
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Normal",
  27029. height: math.unit(13, "feet"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27036. {
  27037. side: {
  27038. height: math.unit(5 + 11 / 12, "feet"),
  27039. weight: math.unit(1400, "lb"),
  27040. name: "Side",
  27041. image: {
  27042. source: "./media/characters/shadow-blade/side.svg",
  27043. extra: 1726 / 1267,
  27044. bottom: 58.4 / 1785
  27045. }
  27046. },
  27047. },
  27048. [
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(5 + 11 / 12, "feet"),
  27052. default: true
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(1 + 6 / 12, "feet"),
  27061. weight: math.unit(25, "lb"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/karla-halldor/front.svg",
  27065. extra: 1459 / 1383,
  27066. bottom: 12 / 1472
  27067. }
  27068. },
  27069. },
  27070. [
  27071. {
  27072. name: "Normal",
  27073. height: math.unit(1 + 6 / 12, "feet"),
  27074. default: true
  27075. },
  27076. ]
  27077. ))
  27078. characterMakers.push(() => makeCharacter(
  27079. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27080. {
  27081. front: {
  27082. height: math.unit(6 + 2 / 12, "feet"),
  27083. weight: math.unit(160, "lb"),
  27084. name: "Front",
  27085. image: {
  27086. source: "./media/characters/ariam/front.svg",
  27087. extra: 1073/976,
  27088. bottom: 52/1125
  27089. }
  27090. },
  27091. back: {
  27092. height: math.unit(6 + 2/12, "feet"),
  27093. weight: math.unit(160, "lb"),
  27094. name: "Back",
  27095. image: {
  27096. source: "./media/characters/ariam/back.svg",
  27097. extra: 1103/1023,
  27098. bottom: 9/1112
  27099. }
  27100. },
  27101. dressed: {
  27102. height: math.unit(6 + 2/12, "feet"),
  27103. weight: math.unit(160, "lb"),
  27104. name: "Dressed",
  27105. image: {
  27106. source: "./media/characters/ariam/dressed.svg",
  27107. extra: 1099/1009,
  27108. bottom: 25/1124
  27109. }
  27110. },
  27111. squatting: {
  27112. height: math.unit(4.1, "feet"),
  27113. weight: math.unit(160, "lb"),
  27114. name: "Squatting",
  27115. image: {
  27116. source: "./media/characters/ariam/squatting.svg",
  27117. extra: 2617 / 2112,
  27118. bottom: 61.2 / 2681,
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(6 + 2 / 12, "feet"),
  27126. default: true
  27127. },
  27128. {
  27129. name: "Normal+",
  27130. height: math.unit(4, "meters")
  27131. },
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(50, "meters")
  27135. },
  27136. {
  27137. name: "Macro+",
  27138. height: math.unit(100, "meters")
  27139. },
  27140. {
  27141. name: "Megamacro",
  27142. height: math.unit(20, "km")
  27143. },
  27144. {
  27145. name: "Caretaker",
  27146. height: math.unit(444, "megameters")
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27152. {
  27153. front: {
  27154. height: math.unit(1.67, "meters"),
  27155. weight: math.unit(140, "lb"),
  27156. name: "Front",
  27157. image: {
  27158. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27159. extra: 438 / 410,
  27160. bottom: 0.75 / 439
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Shrunken",
  27167. height: math.unit(7.6, "cm")
  27168. },
  27169. {
  27170. name: "Human Scale",
  27171. height: math.unit(1.67, "meters")
  27172. },
  27173. {
  27174. name: "Wolxi Scale",
  27175. height: math.unit(36.7, "meters"),
  27176. default: true
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(1.73, "meters"),
  27185. weight: math.unit(240, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/izue-two-mothers/front.svg",
  27189. extra: 469 / 437,
  27190. bottom: 1.24 / 470.6
  27191. }
  27192. },
  27193. },
  27194. [
  27195. {
  27196. name: "Shrunken",
  27197. height: math.unit(7.86, "cm")
  27198. },
  27199. {
  27200. name: "Human Scale",
  27201. height: math.unit(1.73, "meters")
  27202. },
  27203. {
  27204. name: "Wolxi Scale",
  27205. height: math.unit(38, "meters"),
  27206. default: true
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(1.55, "meters"),
  27215. weight: math.unit(120, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/teeku-love-shack/front.svg",
  27219. extra: 387 / 362,
  27220. bottom: 1.51 / 388
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Shrunken",
  27227. height: math.unit(7, "cm")
  27228. },
  27229. {
  27230. name: "Human Scale",
  27231. height: math.unit(1.55, "meters")
  27232. },
  27233. {
  27234. name: "Wolxi Scale",
  27235. height: math.unit(34.1, "meters"),
  27236. default: true
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27242. {
  27243. front: {
  27244. height: math.unit(1.83, "meters"),
  27245. weight: math.unit(135, "lb"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/dejma-the-red/front.svg",
  27249. extra: 480 / 458,
  27250. bottom: 1.8 / 482
  27251. }
  27252. },
  27253. },
  27254. [
  27255. {
  27256. name: "Shrunken",
  27257. height: math.unit(8.3, "cm")
  27258. },
  27259. {
  27260. name: "Human Scale",
  27261. height: math.unit(1.83, "meters")
  27262. },
  27263. {
  27264. name: "Wolxi Scale",
  27265. height: math.unit(40, "meters"),
  27266. default: true
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27272. {
  27273. front: {
  27274. height: math.unit(1.78, "meters"),
  27275. weight: math.unit(65, "kg"),
  27276. name: "Front",
  27277. image: {
  27278. source: "./media/characters/aki/front.svg",
  27279. extra: 452 / 415
  27280. }
  27281. },
  27282. frontNsfw: {
  27283. height: math.unit(1.78, "meters"),
  27284. weight: math.unit(65, "kg"),
  27285. name: "Front (NSFW)",
  27286. image: {
  27287. source: "./media/characters/aki/front-nsfw.svg",
  27288. extra: 452 / 415
  27289. }
  27290. },
  27291. back: {
  27292. height: math.unit(1.78, "meters"),
  27293. weight: math.unit(65, "kg"),
  27294. name: "Back",
  27295. image: {
  27296. source: "./media/characters/aki/back.svg",
  27297. extra: 452 / 415
  27298. }
  27299. },
  27300. rump: {
  27301. height: math.unit(2.05, "feet"),
  27302. name: "Rump",
  27303. image: {
  27304. source: "./media/characters/aki/rump.svg"
  27305. }
  27306. },
  27307. dick: {
  27308. height: math.unit(0.95, "feet"),
  27309. name: "Dick",
  27310. image: {
  27311. source: "./media/characters/aki/dick.svg"
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Micro",
  27318. height: math.unit(15, "cm")
  27319. },
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(178, "cm"),
  27323. default: true
  27324. },
  27325. {
  27326. name: "Macro",
  27327. height: math.unit(214, "m")
  27328. },
  27329. {
  27330. name: "Macro+",
  27331. height: math.unit(534, "m")
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(5 + 5 / 12, "feet"),
  27340. weight: math.unit(120, "lb"),
  27341. name: "Front",
  27342. image: {
  27343. source: "./media/characters/ari/front.svg",
  27344. extra: 1550/1471,
  27345. bottom: 39/1589
  27346. }
  27347. },
  27348. },
  27349. [
  27350. {
  27351. name: "Normal",
  27352. height: math.unit(5 + 5 / 12, "feet")
  27353. },
  27354. {
  27355. name: "Macro",
  27356. height: math.unit(100, "feet"),
  27357. default: true
  27358. },
  27359. {
  27360. name: "Megamacro",
  27361. height: math.unit(100, "miles")
  27362. },
  27363. {
  27364. name: "Gigamacro",
  27365. height: math.unit(80000, "miles")
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27371. {
  27372. side: {
  27373. height: math.unit(9, "feet"),
  27374. weight: math.unit(400, "kg"),
  27375. name: "Side",
  27376. image: {
  27377. source: "./media/characters/bolt/side.svg",
  27378. extra: 1126 / 896,
  27379. bottom: 60 / 1187.3,
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Micro",
  27386. height: math.unit(5, "inches")
  27387. },
  27388. {
  27389. name: "Normal",
  27390. height: math.unit(9, "feet"),
  27391. default: true
  27392. },
  27393. {
  27394. name: "Macro",
  27395. height: math.unit(700, "feet")
  27396. },
  27397. {
  27398. name: "Max Size",
  27399. height: math.unit(1.52e22, "yottameters")
  27400. },
  27401. ]
  27402. ))
  27403. characterMakers.push(() => makeCharacter(
  27404. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27405. {
  27406. front: {
  27407. height: math.unit(4.3, "meters"),
  27408. weight: math.unit(3, "tons"),
  27409. name: "Front",
  27410. image: {
  27411. source: "./media/characters/draekon-sylviar/front.svg",
  27412. extra: 2072/1512,
  27413. bottom: 74/2146
  27414. }
  27415. },
  27416. back: {
  27417. height: math.unit(4.3, "meters"),
  27418. weight: math.unit(3, "tons"),
  27419. name: "Back",
  27420. image: {
  27421. source: "./media/characters/draekon-sylviar/back.svg",
  27422. extra: 1639/1483,
  27423. bottom: 41/1680
  27424. }
  27425. },
  27426. feral: {
  27427. height: math.unit(1.15, "meters"),
  27428. weight: math.unit(3, "tons"),
  27429. name: "Feral",
  27430. image: {
  27431. source: "./media/characters/draekon-sylviar/feral.svg",
  27432. extra: 1033/395,
  27433. bottom: 130/1163
  27434. }
  27435. },
  27436. maw: {
  27437. height: math.unit(1.3, "meters"),
  27438. name: "Maw",
  27439. image: {
  27440. source: "./media/characters/draekon-sylviar/maw.svg"
  27441. }
  27442. },
  27443. mawSeparated: {
  27444. height: math.unit(1.53, "meters"),
  27445. name: "Separated Maw",
  27446. image: {
  27447. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27448. }
  27449. },
  27450. tail: {
  27451. height: math.unit(1.15, "meters"),
  27452. name: "Tail",
  27453. image: {
  27454. source: "./media/characters/draekon-sylviar/tail.svg"
  27455. }
  27456. },
  27457. tailDick: {
  27458. height: math.unit(1.15, "meters"),
  27459. name: "Tail (Dick)",
  27460. image: {
  27461. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27462. }
  27463. },
  27464. tailDickSeparated: {
  27465. height: math.unit(1.19, "meters"),
  27466. name: "Tail (Separated Dick)",
  27467. image: {
  27468. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27469. }
  27470. },
  27471. slit: {
  27472. height: math.unit(1, "meters"),
  27473. name: "Slit",
  27474. image: {
  27475. source: "./media/characters/draekon-sylviar/slit.svg"
  27476. }
  27477. },
  27478. dick: {
  27479. height: math.unit(1.15, "meters"),
  27480. name: "Dick",
  27481. image: {
  27482. source: "./media/characters/draekon-sylviar/dick.svg"
  27483. }
  27484. },
  27485. dickSeparated: {
  27486. height: math.unit(1.1, "meters"),
  27487. name: "Separated Dick",
  27488. image: {
  27489. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27490. }
  27491. },
  27492. sheath: {
  27493. height: math.unit(1.15, "meters"),
  27494. name: "Sheath",
  27495. image: {
  27496. source: "./media/characters/draekon-sylviar/sheath.svg"
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Small",
  27503. height: math.unit(4.53 / 2, "meters"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Normal",
  27508. height: math.unit(4.53, "meters"),
  27509. default: true
  27510. },
  27511. {
  27512. name: "Large",
  27513. height: math.unit(4.53 * 2, "meters"),
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27519. {
  27520. front: {
  27521. height: math.unit(6 + 2 / 12, "feet"),
  27522. weight: math.unit(180, "lb"),
  27523. name: "Front",
  27524. image: {
  27525. source: "./media/characters/brawler/front.svg",
  27526. extra: 3301 / 3027,
  27527. bottom: 138 / 3439
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(6 + 2 / 12, "feet"),
  27535. default: true
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27541. {
  27542. front: {
  27543. height: math.unit(11, "feet"),
  27544. weight: math.unit(1000, "lb"),
  27545. name: "Front",
  27546. image: {
  27547. source: "./media/characters/alex/front.svg",
  27548. bottom: 44.5 / 620
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Micro",
  27555. height: math.unit(5, "inches")
  27556. },
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(11, "feet"),
  27560. default: true
  27561. },
  27562. {
  27563. name: "Macro",
  27564. height: math.unit(9.5e9, "feet")
  27565. },
  27566. {
  27567. name: "Max Size",
  27568. height: math.unit(1.4e283, "yottameters")
  27569. },
  27570. ]
  27571. ))
  27572. characterMakers.push(() => makeCharacter(
  27573. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27574. {
  27575. female: {
  27576. height: math.unit(29.9, "m"),
  27577. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27578. name: "Female",
  27579. image: {
  27580. source: "./media/characters/zenari/female.svg",
  27581. extra: 3281.6 / 3217,
  27582. bottom: 72.2 / 3353
  27583. }
  27584. },
  27585. male: {
  27586. height: math.unit(27.7, "m"),
  27587. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27588. name: "Male",
  27589. image: {
  27590. source: "./media/characters/zenari/male.svg",
  27591. extra: 3008 / 2991,
  27592. bottom: 54.6 / 3069
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Macro",
  27599. height: math.unit(29.7, "meters"),
  27600. default: true
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27606. {
  27607. female: {
  27608. height: math.unit(23.8, "m"),
  27609. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27610. name: "Female",
  27611. image: {
  27612. source: "./media/characters/mactarian/female.svg",
  27613. extra: 2662 / 2569,
  27614. bottom: 73 / 2736
  27615. }
  27616. },
  27617. male: {
  27618. height: math.unit(23.8, "m"),
  27619. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27620. name: "Male",
  27621. image: {
  27622. source: "./media/characters/mactarian/male.svg",
  27623. extra: 2673 / 2600,
  27624. bottom: 76 / 2750
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Macro",
  27631. height: math.unit(23.8, "meters"),
  27632. default: true
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27638. {
  27639. female: {
  27640. height: math.unit(19.3, "m"),
  27641. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27642. name: "Female",
  27643. image: {
  27644. source: "./media/characters/umok/female.svg",
  27645. extra: 2186 / 2078,
  27646. bottom: 87 / 2277
  27647. }
  27648. },
  27649. male: {
  27650. height: math.unit(19.5, "m"),
  27651. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27652. name: "Male",
  27653. image: {
  27654. source: "./media/characters/umok/male.svg",
  27655. extra: 2233 / 2140,
  27656. bottom: 24.4 / 2258
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Macro",
  27663. height: math.unit(19.3, "meters"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27670. {
  27671. female: {
  27672. height: math.unit(26.15, "m"),
  27673. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27674. name: "Female",
  27675. image: {
  27676. source: "./media/characters/joraxian/female.svg",
  27677. extra: 2912 / 2824,
  27678. bottom: 36 / 2956
  27679. }
  27680. },
  27681. male: {
  27682. height: math.unit(25.4, "m"),
  27683. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27684. name: "Male",
  27685. image: {
  27686. source: "./media/characters/joraxian/male.svg",
  27687. extra: 2877 / 2721,
  27688. bottom: 82 / 2967
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Macro",
  27695. height: math.unit(26.15, "meters"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27702. {
  27703. female: {
  27704. height: math.unit(21.6, "m"),
  27705. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27706. name: "Female",
  27707. image: {
  27708. source: "./media/characters/sthara/female.svg",
  27709. extra: 2516 / 2347,
  27710. bottom: 21.5 / 2537
  27711. }
  27712. },
  27713. male: {
  27714. height: math.unit(24, "m"),
  27715. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27716. name: "Male",
  27717. image: {
  27718. source: "./media/characters/sthara/male.svg",
  27719. extra: 2732 / 2607,
  27720. bottom: 23 / 2732
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Macro",
  27727. height: math.unit(21.6, "meters"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(6 + 4 / 12, "feet"),
  27737. weight: math.unit(175, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/luka-bryzant/front.svg",
  27741. extra: 311 / 289,
  27742. bottom: 4 / 315
  27743. }
  27744. },
  27745. back: {
  27746. height: math.unit(6 + 4 / 12, "feet"),
  27747. weight: math.unit(175, "lb"),
  27748. name: "Back",
  27749. image: {
  27750. source: "./media/characters/luka-bryzant/back.svg",
  27751. extra: 311 / 289,
  27752. bottom: 3.8 / 313.7
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Micro",
  27759. height: math.unit(10, "inches")
  27760. },
  27761. {
  27762. name: "Normal",
  27763. height: math.unit(6 + 4 / 12, "feet"),
  27764. default: true
  27765. },
  27766. {
  27767. name: "Large",
  27768. height: math.unit(12, "feet")
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27774. {
  27775. front: {
  27776. height: math.unit(5 + 7 / 12, "feet"),
  27777. weight: math.unit(185, "lb"),
  27778. name: "Front",
  27779. image: {
  27780. source: "./media/characters/aman-aquila/front.svg",
  27781. extra: 1013 / 976,
  27782. bottom: 45.6 / 1057
  27783. }
  27784. },
  27785. side: {
  27786. height: math.unit(5 + 7 / 12, "feet"),
  27787. weight: math.unit(185, "lb"),
  27788. name: "Side",
  27789. image: {
  27790. source: "./media/characters/aman-aquila/side.svg",
  27791. extra: 1054 / 1011,
  27792. bottom: 15 / 1070
  27793. }
  27794. },
  27795. back: {
  27796. height: math.unit(5 + 7 / 12, "feet"),
  27797. weight: math.unit(185, "lb"),
  27798. name: "Back",
  27799. image: {
  27800. source: "./media/characters/aman-aquila/back.svg",
  27801. extra: 1026 / 970,
  27802. bottom: 12 / 1039
  27803. }
  27804. },
  27805. head: {
  27806. height: math.unit(1.211, "feet"),
  27807. name: "Head",
  27808. image: {
  27809. source: "./media/characters/aman-aquila/head.svg",
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Minimicro",
  27816. height: math.unit(0.057, "inches")
  27817. },
  27818. {
  27819. name: "Micro",
  27820. height: math.unit(7, "inches")
  27821. },
  27822. {
  27823. name: "Mini",
  27824. height: math.unit(3 + 7 / 12, "feet")
  27825. },
  27826. {
  27827. name: "Normal",
  27828. height: math.unit(5 + 7 / 12, "feet"),
  27829. default: true
  27830. },
  27831. {
  27832. name: "Macro",
  27833. height: math.unit(157 + 7 / 12, "feet")
  27834. },
  27835. {
  27836. name: "Megamacro",
  27837. height: math.unit(1557 + 7 / 12, "feet")
  27838. },
  27839. {
  27840. name: "Gigamacro",
  27841. height: math.unit(15557 + 7 / 12, "feet")
  27842. },
  27843. ]
  27844. ))
  27845. characterMakers.push(() => makeCharacter(
  27846. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27847. {
  27848. front: {
  27849. height: math.unit(3 + 2 / 12, "inches"),
  27850. weight: math.unit(0.3, "ounces"),
  27851. name: "Front",
  27852. image: {
  27853. source: "./media/characters/hiphae/front.svg",
  27854. extra: 1931 / 1683,
  27855. bottom: 24 / 1955
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(3 + 1 / 2, "inches"),
  27863. default: true
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27869. {
  27870. front: {
  27871. height: math.unit(5 + 10 / 12, "feet"),
  27872. weight: math.unit(165, "lb"),
  27873. name: "Front",
  27874. image: {
  27875. source: "./media/characters/nicky/front.svg",
  27876. extra: 3144 / 2886,
  27877. bottom: 45.6 / 3192
  27878. }
  27879. },
  27880. back: {
  27881. height: math.unit(5 + 10 / 12, "feet"),
  27882. weight: math.unit(165, "lb"),
  27883. name: "Back",
  27884. image: {
  27885. source: "./media/characters/nicky/back.svg",
  27886. extra: 3055 / 2804,
  27887. bottom: 28.4 / 3087
  27888. }
  27889. },
  27890. frontclothed: {
  27891. height: math.unit(5 + 10 / 12, "feet"),
  27892. weight: math.unit(165, "lb"),
  27893. name: "Front (Clothed)",
  27894. image: {
  27895. source: "./media/characters/nicky/front-clothed.svg",
  27896. extra: 3184.9 / 2926.9,
  27897. bottom: 86.5 / 3239.9
  27898. }
  27899. },
  27900. foot: {
  27901. height: math.unit(1.16, "feet"),
  27902. name: "Foot",
  27903. image: {
  27904. source: "./media/characters/nicky/foot.svg"
  27905. }
  27906. },
  27907. feet: {
  27908. height: math.unit(1.34, "feet"),
  27909. name: "Feet",
  27910. image: {
  27911. source: "./media/characters/nicky/feet.svg"
  27912. }
  27913. },
  27914. maw: {
  27915. height: math.unit(0.9, "feet"),
  27916. name: "Maw",
  27917. image: {
  27918. source: "./media/characters/nicky/maw.svg"
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Normal",
  27925. height: math.unit(5 + 10 / 12, "feet"),
  27926. default: true
  27927. },
  27928. {
  27929. name: "Macro",
  27930. height: math.unit(60, "feet")
  27931. },
  27932. {
  27933. name: "Megamacro",
  27934. height: math.unit(1, "mile")
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27940. {
  27941. side: {
  27942. height: math.unit(10, "feet"),
  27943. weight: math.unit(600, "lb"),
  27944. name: "Side",
  27945. image: {
  27946. source: "./media/characters/blair/side.svg",
  27947. bottom: 16.6 / 475,
  27948. extra: 458 / 431
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Micro",
  27955. height: math.unit(8, "inches")
  27956. },
  27957. {
  27958. name: "Normal",
  27959. height: math.unit(10, "feet"),
  27960. default: true
  27961. },
  27962. {
  27963. name: "Macro",
  27964. height: math.unit(180, "feet")
  27965. },
  27966. ]
  27967. ))
  27968. characterMakers.push(() => makeCharacter(
  27969. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27970. {
  27971. front: {
  27972. height: math.unit(5 + 4 / 12, "feet"),
  27973. weight: math.unit(125, "lb"),
  27974. name: "Front",
  27975. image: {
  27976. source: "./media/characters/fisher/front.svg",
  27977. extra: 444 / 390,
  27978. bottom: 2 / 444.8
  27979. }
  27980. },
  27981. },
  27982. [
  27983. {
  27984. name: "Micro",
  27985. height: math.unit(4, "inches")
  27986. },
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(5 + 4 / 12, "feet"),
  27990. default: true
  27991. },
  27992. {
  27993. name: "Macro",
  27994. height: math.unit(100, "feet")
  27995. },
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(6.71, "feet"),
  28003. weight: math.unit(200, "lb"),
  28004. preyCapacity: math.unit(1000000, "people"),
  28005. name: "Front",
  28006. image: {
  28007. source: "./media/characters/gliss/front.svg",
  28008. extra: 2347 / 2231,
  28009. bottom: 113 / 2462
  28010. }
  28011. },
  28012. hammerspaceSize: {
  28013. height: math.unit(6.71 * 717, "feet"),
  28014. weight: math.unit(200, "lb"),
  28015. preyCapacity: math.unit(1000000, "people"),
  28016. name: "Hammerspace Size",
  28017. image: {
  28018. source: "./media/characters/gliss/front.svg",
  28019. extra: 2347 / 2231,
  28020. bottom: 113 / 2462
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(6.71, "feet"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28034. {
  28035. side: {
  28036. height: math.unit(1.44, "m"),
  28037. weight: math.unit(80, "kg"),
  28038. name: "Side",
  28039. image: {
  28040. source: "./media/characters/dune-anderson/side.svg",
  28041. bottom: 49 / 1426
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Wolf-sized",
  28048. height: math.unit(1.44, "meters")
  28049. },
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(5.05, "meters"),
  28053. default: true
  28054. },
  28055. {
  28056. name: "Big",
  28057. height: math.unit(14.4, "meters")
  28058. },
  28059. {
  28060. name: "Huge",
  28061. height: math.unit(144, "meters")
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(6, "feet"),
  28070. weight: math.unit(220, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/hind/front.svg",
  28074. extra: 1912/1787,
  28075. bottom: 52/1964
  28076. }
  28077. },
  28078. back: {
  28079. height: math.unit(6, "feet"),
  28080. weight: math.unit(220, "lb"),
  28081. name: "Back",
  28082. image: {
  28083. source: "./media/characters/hind/back.svg",
  28084. extra: 1901/1794,
  28085. bottom: 26/1927
  28086. }
  28087. },
  28088. },
  28089. [
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(6, "feet"),
  28093. default: true
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28099. {
  28100. front: {
  28101. height: math.unit(2.1, "meters"),
  28102. weight: math.unit(150, "lb"),
  28103. name: "Front",
  28104. image: {
  28105. source: "./media/characters/tharquench-sizestealer/front.svg",
  28106. extra: 1605/1470,
  28107. bottom: 36/1641
  28108. }
  28109. },
  28110. frontAlt: {
  28111. height: math.unit(2.1, "meters"),
  28112. weight: math.unit(150, "lb"),
  28113. name: "Front (Alt)",
  28114. image: {
  28115. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28116. extra: 2318 / 2063,
  28117. bottom: 93.4 / 2410
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Nano",
  28124. height: math.unit(1, "mm")
  28125. },
  28126. {
  28127. name: "Micro",
  28128. height: math.unit(1, "cm")
  28129. },
  28130. {
  28131. name: "Normal",
  28132. height: math.unit(2.1, "meters"),
  28133. default: true
  28134. },
  28135. ]
  28136. ))
  28137. characterMakers.push(() => makeCharacter(
  28138. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28139. {
  28140. front: {
  28141. height: math.unit(7 + 5 / 12, "feet"),
  28142. weight: math.unit(357, "lb"),
  28143. name: "Front",
  28144. image: {
  28145. source: "./media/characters/solex-draconov/front.svg",
  28146. extra: 1993 / 1865,
  28147. bottom: 117 / 2111
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Natural Height",
  28154. height: math.unit(7 + 5 / 12, "feet"),
  28155. default: true
  28156. },
  28157. {
  28158. name: "Macro",
  28159. height: math.unit(350, "feet")
  28160. },
  28161. {
  28162. name: "Macro+",
  28163. height: math.unit(1000, "feet")
  28164. },
  28165. {
  28166. name: "Megamacro",
  28167. height: math.unit(20, "km")
  28168. },
  28169. {
  28170. name: "Megamacro+",
  28171. height: math.unit(1000, "km")
  28172. },
  28173. {
  28174. name: "Gigamacro",
  28175. height: math.unit(2.5, "Gm")
  28176. },
  28177. {
  28178. name: "Teramacro",
  28179. height: math.unit(15, "Tm")
  28180. },
  28181. {
  28182. name: "Galactic",
  28183. height: math.unit(30, "Zm")
  28184. },
  28185. {
  28186. name: "Universal",
  28187. height: math.unit(21000, "Ym")
  28188. },
  28189. {
  28190. name: "Omniversal",
  28191. height: math.unit(9.861e50, "Ym")
  28192. },
  28193. {
  28194. name: "Existential",
  28195. height: math.unit(1e300, "meters")
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28201. {
  28202. side: {
  28203. height: math.unit(25, "feet"),
  28204. weight: math.unit(90000, "lb"),
  28205. name: "Side",
  28206. image: {
  28207. source: "./media/characters/mandarax/side.svg",
  28208. extra: 614 / 332,
  28209. bottom: 55 / 630
  28210. }
  28211. },
  28212. lounging: {
  28213. height: math.unit(15.4, "feet"),
  28214. weight: math.unit(90000, "lb"),
  28215. name: "Lounging",
  28216. image: {
  28217. source: "./media/characters/mandarax/lounging.svg",
  28218. extra: 817/609,
  28219. bottom: 685/1502
  28220. }
  28221. },
  28222. head: {
  28223. height: math.unit(11.4, "feet"),
  28224. name: "Head",
  28225. image: {
  28226. source: "./media/characters/mandarax/head.svg"
  28227. }
  28228. },
  28229. belly: {
  28230. height: math.unit(33, "feet"),
  28231. name: "Belly",
  28232. preyCapacity: math.unit(500, "people"),
  28233. image: {
  28234. source: "./media/characters/mandarax/belly.svg"
  28235. }
  28236. },
  28237. dick: {
  28238. height: math.unit(8.46, "feet"),
  28239. name: "Dick",
  28240. image: {
  28241. source: "./media/characters/mandarax/dick.svg"
  28242. }
  28243. },
  28244. top: {
  28245. height: math.unit(28, "meters"),
  28246. name: "Top",
  28247. image: {
  28248. source: "./media/characters/mandarax/top.svg"
  28249. }
  28250. },
  28251. },
  28252. [
  28253. {
  28254. name: "Normal",
  28255. height: math.unit(25, "feet"),
  28256. default: true
  28257. },
  28258. ]
  28259. ))
  28260. characterMakers.push(() => makeCharacter(
  28261. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28262. {
  28263. front: {
  28264. height: math.unit(5, "feet"),
  28265. weight: math.unit(90, "lb"),
  28266. name: "Front",
  28267. image: {
  28268. source: "./media/characters/pixil/front.svg",
  28269. extra: 2000 / 1618,
  28270. bottom: 12.3 / 2011
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Normal",
  28277. height: math.unit(5, "feet"),
  28278. default: true
  28279. },
  28280. {
  28281. name: "Megamacro",
  28282. height: math.unit(10, "miles"),
  28283. },
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(7 + 2 / 12, "feet"),
  28291. weight: math.unit(200, "lb"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/angel/front.svg",
  28295. extra: 1946/1840,
  28296. bottom: 30/1976
  28297. }
  28298. },
  28299. },
  28300. [
  28301. {
  28302. name: "Normal",
  28303. height: math.unit(7 + 2 / 12, "feet"),
  28304. default: true
  28305. },
  28306. {
  28307. name: "Macro",
  28308. height: math.unit(1000, "feet")
  28309. },
  28310. {
  28311. name: "Megamacro",
  28312. height: math.unit(2, "miles")
  28313. },
  28314. {
  28315. name: "Gigamacro",
  28316. height: math.unit(20, "earths")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(5, "feet"),
  28325. weight: math.unit(180, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/mekana/front.svg",
  28329. extra: 1671 / 1605,
  28330. bottom: 3.5 / 1691
  28331. }
  28332. },
  28333. side: {
  28334. height: math.unit(5, "feet"),
  28335. weight: math.unit(180, "lb"),
  28336. name: "Side",
  28337. image: {
  28338. source: "./media/characters/mekana/side.svg",
  28339. extra: 1671 / 1605,
  28340. bottom: 3.5 / 1691
  28341. }
  28342. },
  28343. back: {
  28344. height: math.unit(5, "feet"),
  28345. weight: math.unit(180, "lb"),
  28346. name: "Back",
  28347. image: {
  28348. source: "./media/characters/mekana/back.svg",
  28349. extra: 1671 / 1605,
  28350. bottom: 3.5 / 1691
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Normal",
  28357. height: math.unit(5, "feet"),
  28358. default: true
  28359. },
  28360. ]
  28361. ))
  28362. characterMakers.push(() => makeCharacter(
  28363. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28364. {
  28365. front: {
  28366. height: math.unit(4 + 6 / 12, "feet"),
  28367. weight: math.unit(80, "lb"),
  28368. name: "Front",
  28369. image: {
  28370. source: "./media/characters/pixie/front.svg",
  28371. extra: 1924 / 1825,
  28372. bottom: 22.4 / 1946
  28373. }
  28374. },
  28375. },
  28376. [
  28377. {
  28378. name: "Normal",
  28379. height: math.unit(4 + 6 / 12, "feet"),
  28380. default: true
  28381. },
  28382. {
  28383. name: "Macro",
  28384. height: math.unit(40, "feet")
  28385. },
  28386. ]
  28387. ))
  28388. characterMakers.push(() => makeCharacter(
  28389. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28390. {
  28391. front: {
  28392. height: math.unit(2.1, "meters"),
  28393. weight: math.unit(200, "lb"),
  28394. name: "Front",
  28395. image: {
  28396. source: "./media/characters/the-lascivious/front.svg",
  28397. extra: 1 / 0.893,
  28398. bottom: 3.5 / 573.7
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Human Scale",
  28405. height: math.unit(2.1, "meters")
  28406. },
  28407. {
  28408. name: "Wolxi Scale",
  28409. height: math.unit(46.2, "m"),
  28410. default: true
  28411. },
  28412. {
  28413. name: "Boinker of Buildings",
  28414. height: math.unit(10, "km")
  28415. },
  28416. {
  28417. name: "Shagger of Skyscrapers",
  28418. height: math.unit(40, "km")
  28419. },
  28420. {
  28421. name: "Banger of Boroughs",
  28422. height: math.unit(4000, "km")
  28423. },
  28424. {
  28425. name: "Screwer of States",
  28426. height: math.unit(100000, "km")
  28427. },
  28428. {
  28429. name: "Pounder of Planets",
  28430. height: math.unit(2000000, "km")
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(6, "feet"),
  28439. weight: math.unit(150, "lb"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/aj/front.svg",
  28443. extra: 2039 / 1562,
  28444. bottom: 40 / 2079
  28445. }
  28446. },
  28447. },
  28448. [
  28449. {
  28450. name: "Normal",
  28451. height: math.unit(11 + 6 / 12, "feet"),
  28452. default: true
  28453. },
  28454. {
  28455. name: "Megamacro",
  28456. height: math.unit(60, "megameters")
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28462. {
  28463. side: {
  28464. height: math.unit(31 + 8 / 12, "feet"),
  28465. weight: math.unit(75000, "kg"),
  28466. name: "Side",
  28467. image: {
  28468. source: "./media/characters/koros/side.svg",
  28469. extra: 1442 / 1297,
  28470. bottom: 122.7 / 1562
  28471. }
  28472. },
  28473. dicksKingsCrown: {
  28474. height: math.unit(6, "feet"),
  28475. name: "Dicks (King's Crown)",
  28476. image: {
  28477. source: "./media/characters/koros/dicks-kings-crown.svg"
  28478. }
  28479. },
  28480. dicksTailSet: {
  28481. height: math.unit(3, "feet"),
  28482. name: "Dicks (Tail Set)",
  28483. image: {
  28484. source: "./media/characters/koros/dicks-tail-set.svg"
  28485. }
  28486. },
  28487. dickCumming: {
  28488. height: math.unit(7.98, "feet"),
  28489. name: "Dick (Cumming)",
  28490. image: {
  28491. source: "./media/characters/koros/dick-cumming.svg"
  28492. }
  28493. },
  28494. dicksBack: {
  28495. height: math.unit(5.9, "feet"),
  28496. name: "Dicks (Back)",
  28497. image: {
  28498. source: "./media/characters/koros/dicks-back.svg"
  28499. }
  28500. },
  28501. dicksFront: {
  28502. height: math.unit(3.72, "feet"),
  28503. name: "Dicks (Front)",
  28504. image: {
  28505. source: "./media/characters/koros/dicks-front.svg"
  28506. }
  28507. },
  28508. dicksPeeking: {
  28509. height: math.unit(3.0, "feet"),
  28510. name: "Dicks (Peeking)",
  28511. image: {
  28512. source: "./media/characters/koros/dicks-peeking.svg"
  28513. }
  28514. },
  28515. eye: {
  28516. height: math.unit(1.7, "feet"),
  28517. name: "Eye",
  28518. image: {
  28519. source: "./media/characters/koros/eye.svg"
  28520. }
  28521. },
  28522. headFront: {
  28523. height: math.unit(11.69, "feet"),
  28524. name: "Head (Front)",
  28525. image: {
  28526. source: "./media/characters/koros/head-front.svg"
  28527. }
  28528. },
  28529. headSide: {
  28530. height: math.unit(14, "feet"),
  28531. name: "Head (Side)",
  28532. image: {
  28533. source: "./media/characters/koros/head-side.svg"
  28534. }
  28535. },
  28536. leg: {
  28537. height: math.unit(17, "feet"),
  28538. name: "Leg",
  28539. image: {
  28540. source: "./media/characters/koros/leg.svg"
  28541. }
  28542. },
  28543. mawSide: {
  28544. height: math.unit(12.8, "feet"),
  28545. name: "Maw (Side)",
  28546. image: {
  28547. source: "./media/characters/koros/maw-side.svg"
  28548. }
  28549. },
  28550. mawSpitting: {
  28551. height: math.unit(17, "feet"),
  28552. name: "Maw (Spitting)",
  28553. image: {
  28554. source: "./media/characters/koros/maw-spitting.svg"
  28555. }
  28556. },
  28557. slit: {
  28558. height: math.unit(2.8, "feet"),
  28559. name: "Slit",
  28560. image: {
  28561. source: "./media/characters/koros/slit.svg"
  28562. }
  28563. },
  28564. stomach: {
  28565. height: math.unit(6.8, "feet"),
  28566. preyCapacity: math.unit(20, "people"),
  28567. name: "Stomach",
  28568. image: {
  28569. source: "./media/characters/koros/stomach.svg"
  28570. }
  28571. },
  28572. wingspanBottom: {
  28573. height: math.unit(114, "feet"),
  28574. name: "Wingspan (Bottom)",
  28575. image: {
  28576. source: "./media/characters/koros/wingspan-bottom.svg"
  28577. }
  28578. },
  28579. wingspanTop: {
  28580. height: math.unit(104, "feet"),
  28581. name: "Wingspan (Top)",
  28582. image: {
  28583. source: "./media/characters/koros/wingspan-top.svg"
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Normal",
  28590. height: math.unit(31 + 8 / 12, "feet"),
  28591. default: true
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(18 + 5 / 12, "feet"),
  28600. weight: math.unit(3750, "kg"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/vexx/front.svg",
  28604. extra: 426 / 396,
  28605. bottom: 31.5 / 458
  28606. }
  28607. },
  28608. maw: {
  28609. height: math.unit(6, "feet"),
  28610. name: "Maw",
  28611. image: {
  28612. source: "./media/characters/vexx/maw.svg"
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Normal",
  28619. height: math.unit(18 + 5 / 12, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28626. {
  28627. front: {
  28628. height: math.unit(17 + 6 / 12, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Front",
  28631. image: {
  28632. source: "./media/characters/baadra/front.svg",
  28633. extra: 1694/1553,
  28634. bottom: 179/1873
  28635. }
  28636. },
  28637. frontAlt: {
  28638. height: math.unit(17 + 6 / 12, "feet"),
  28639. weight: math.unit(150, "lb"),
  28640. name: "Front (Alt)",
  28641. image: {
  28642. source: "./media/characters/baadra/front-alt.svg",
  28643. extra: 3137 / 2890,
  28644. bottom: 168.4 / 3305
  28645. }
  28646. },
  28647. back: {
  28648. height: math.unit(17 + 6 / 12, "feet"),
  28649. weight: math.unit(150, "lb"),
  28650. name: "Back",
  28651. image: {
  28652. source: "./media/characters/baadra/back.svg",
  28653. extra: 3142 / 2890,
  28654. bottom: 220 / 3371
  28655. }
  28656. },
  28657. head: {
  28658. height: math.unit(5.45, "feet"),
  28659. name: "Head",
  28660. image: {
  28661. source: "./media/characters/baadra/head.svg"
  28662. }
  28663. },
  28664. headAngry: {
  28665. height: math.unit(4.95, "feet"),
  28666. name: "Head (Angry)",
  28667. image: {
  28668. source: "./media/characters/baadra/head-angry.svg"
  28669. }
  28670. },
  28671. headOpen: {
  28672. height: math.unit(6, "feet"),
  28673. name: "Head (Open)",
  28674. image: {
  28675. source: "./media/characters/baadra/head-open.svg"
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(17 + 6 / 12, "feet"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(7 + 3 / 12, "feet"),
  28692. weight: math.unit(180, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/juri/front.svg",
  28696. extra: 1401 / 1237,
  28697. bottom: 18.5 / 1418
  28698. }
  28699. },
  28700. side: {
  28701. height: math.unit(7 + 3 / 12, "feet"),
  28702. weight: math.unit(180, "lb"),
  28703. name: "Side",
  28704. image: {
  28705. source: "./media/characters/juri/side.svg",
  28706. extra: 1424 / 1242,
  28707. bottom: 18.5 / 1447
  28708. }
  28709. },
  28710. sitting: {
  28711. height: math.unit(6, "feet"),
  28712. weight: math.unit(180, "lb"),
  28713. name: "Sitting",
  28714. image: {
  28715. source: "./media/characters/juri/sitting.svg",
  28716. extra: 1270 / 1143,
  28717. bottom: 100 / 1343
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(7 + 3 / 12, "feet"),
  28722. weight: math.unit(180, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/juri/back.svg",
  28726. extra: 1377 / 1240,
  28727. bottom: 23.7 / 1405
  28728. }
  28729. },
  28730. maw: {
  28731. height: math.unit(2.8, "feet"),
  28732. name: "Maw",
  28733. image: {
  28734. source: "./media/characters/juri/maw.svg"
  28735. }
  28736. },
  28737. stomach: {
  28738. height: math.unit(0.89, "feet"),
  28739. preyCapacity: math.unit(4, "liters"),
  28740. name: "Stomach",
  28741. image: {
  28742. source: "./media/characters/juri/stomach.svg"
  28743. }
  28744. },
  28745. },
  28746. [
  28747. {
  28748. name: "Normal",
  28749. height: math.unit(7 + 3 / 12, "feet"),
  28750. default: true
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28756. {
  28757. fox: {
  28758. height: math.unit(5 + 6 / 12, "feet"),
  28759. weight: math.unit(140, "lb"),
  28760. name: "Fox",
  28761. image: {
  28762. source: "./media/characters/maxene-sita/fox.svg",
  28763. extra: 146 / 138,
  28764. bottom: 2.1 / 148.19
  28765. }
  28766. },
  28767. foxLaying: {
  28768. height: math.unit(1.70, "feet"),
  28769. weight: math.unit(140, "lb"),
  28770. name: "Fox (Laying)",
  28771. image: {
  28772. source: "./media/characters/maxene-sita/fox-laying.svg",
  28773. extra: 910 / 572,
  28774. bottom: 71 / 981
  28775. }
  28776. },
  28777. kitsune: {
  28778. height: math.unit(10, "feet"),
  28779. weight: math.unit(800, "lb"),
  28780. name: "Kitsune",
  28781. image: {
  28782. source: "./media/characters/maxene-sita/kitsune.svg",
  28783. extra: 185 / 176,
  28784. bottom: 4.7 / 189.9
  28785. }
  28786. },
  28787. hellhound: {
  28788. height: math.unit(10, "feet"),
  28789. weight: math.unit(700, "lb"),
  28790. name: "Hellhound",
  28791. image: {
  28792. source: "./media/characters/maxene-sita/hellhound.svg",
  28793. extra: 1600 / 1545,
  28794. bottom: 81 / 1681
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(5 + 6 / 12, "feet"),
  28802. default: true
  28803. },
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28808. {
  28809. front: {
  28810. height: math.unit(3 + 4 / 12, "feet"),
  28811. weight: math.unit(70, "lb"),
  28812. name: "Front",
  28813. image: {
  28814. source: "./media/characters/maia/front.svg",
  28815. extra: 227 / 219.5,
  28816. bottom: 40 / 267
  28817. }
  28818. },
  28819. back: {
  28820. height: math.unit(3 + 4 / 12, "feet"),
  28821. weight: math.unit(70, "lb"),
  28822. name: "Back",
  28823. image: {
  28824. source: "./media/characters/maia/back.svg",
  28825. extra: 237 / 225
  28826. }
  28827. },
  28828. },
  28829. [
  28830. {
  28831. name: "Normal",
  28832. height: math.unit(3 + 4 / 12, "feet"),
  28833. default: true
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(5 + 10 / 12, "feet"),
  28842. weight: math.unit(197, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/jabaro/front.svg",
  28846. extra: 225 / 216,
  28847. bottom: 5.06 / 230
  28848. }
  28849. },
  28850. back: {
  28851. height: math.unit(5 + 10 / 12, "feet"),
  28852. weight: math.unit(197, "lb"),
  28853. name: "Back",
  28854. image: {
  28855. source: "./media/characters/jabaro/back.svg",
  28856. extra: 225 / 219,
  28857. bottom: 1.9 / 227
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(5 + 10 / 12, "feet"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(5 + 8 / 12, "feet"),
  28874. weight: math.unit(139, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/risa/front.svg",
  28878. extra: 270 / 260,
  28879. bottom: 11.2 / 282
  28880. }
  28881. },
  28882. back: {
  28883. height: math.unit(5 + 8 / 12, "feet"),
  28884. weight: math.unit(139, "lb"),
  28885. name: "Back",
  28886. image: {
  28887. source: "./media/characters/risa/back.svg",
  28888. extra: 264 / 255,
  28889. bottom: 4 / 268
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(5 + 8 / 12, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(2 + 11 / 12, "feet"),
  28906. weight: math.unit(30, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/weatley/front.svg",
  28910. bottom: 10.7 / 414,
  28911. extra: 403.5 / 362
  28912. }
  28913. },
  28914. back: {
  28915. height: math.unit(2 + 11 / 12, "feet"),
  28916. weight: math.unit(30, "lb"),
  28917. name: "Back",
  28918. image: {
  28919. source: "./media/characters/weatley/back.svg",
  28920. bottom: 10.7 / 414,
  28921. extra: 403.5 / 362
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(2 + 11 / 12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(5 + 2 / 12, "feet"),
  28938. weight: math.unit(50, "kg"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/mercury-crescent/front.svg",
  28942. extra: 1088 / 1033,
  28943. bottom: 18.9 / 1109
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(5 + 2 / 12, "feet"),
  28951. default: true
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(2, "feet"),
  28960. weight: math.unit(15, "kg"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/diamond-jones/front.svg",
  28964. extra: 727/723,
  28965. bottom: 46/773
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(2, "feet"),
  28973. default: true
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(3, "feet"),
  28982. weight: math.unit(30, "kg"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/sweet-bit/front.svg",
  28986. extra: 675 / 567,
  28987. bottom: 27.7 / 703
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(3, "feet"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29001. {
  29002. side: {
  29003. height: math.unit(9.178, "feet"),
  29004. weight: math.unit(500, "lb"),
  29005. name: "Side",
  29006. image: {
  29007. source: "./media/characters/umbrazen/side.svg",
  29008. extra: 1730 / 1473,
  29009. bottom: 34.6 / 1765
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(9.178, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(10, "feet"),
  29026. weight: math.unit(750, "lb"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/arlist/front.svg",
  29030. extra: 961 / 778,
  29031. bottom: 6.2 / 986
  29032. }
  29033. },
  29034. },
  29035. [
  29036. {
  29037. name: "Normal",
  29038. height: math.unit(10, "feet"),
  29039. default: true
  29040. },
  29041. ]
  29042. ))
  29043. characterMakers.push(() => makeCharacter(
  29044. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29045. {
  29046. front: {
  29047. height: math.unit(5 + 1 / 12, "feet"),
  29048. weight: math.unit(110, "lb"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/aradel/front.svg",
  29052. extra: 324 / 303,
  29053. bottom: 3.6 / 329.4
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(5 + 1 / 12, "feet"),
  29061. default: true
  29062. },
  29063. ]
  29064. ))
  29065. characterMakers.push(() => makeCharacter(
  29066. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29067. {
  29068. dressed: {
  29069. height: math.unit(3 + 8 / 12, "feet"),
  29070. weight: math.unit(50, "lb"),
  29071. name: "Dressed",
  29072. image: {
  29073. source: "./media/characters/serryn/dressed.svg",
  29074. extra: 1792 / 1656,
  29075. bottom: 43.5 / 1840
  29076. }
  29077. },
  29078. nude: {
  29079. height: math.unit(3 + 8 / 12, "feet"),
  29080. weight: math.unit(50, "lb"),
  29081. name: "Nude",
  29082. image: {
  29083. source: "./media/characters/serryn/nude.svg",
  29084. extra: 1792 / 1656,
  29085. bottom: 43.5 / 1840
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(3 + 8 / 12, "feet"),
  29093. default: true
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29099. {
  29100. front: {
  29101. height: math.unit(7 + 10 / 12, "feet"),
  29102. weight: math.unit(255, "lb"),
  29103. name: "Front",
  29104. image: {
  29105. source: "./media/characters/xavier-thyme/front.svg",
  29106. extra: 3733 / 3642,
  29107. bottom: 131 / 3869
  29108. }
  29109. },
  29110. frontRaven: {
  29111. height: math.unit(7 + 10 / 12, "feet"),
  29112. weight: math.unit(255, "lb"),
  29113. name: "Front (Raven)",
  29114. image: {
  29115. source: "./media/characters/xavier-thyme/front-raven.svg",
  29116. extra: 4385 / 3642,
  29117. bottom: 131 / 4517
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(7 + 10 / 12, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(1.6, "m"),
  29134. weight: math.unit(50, "kg"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/kiki/front.svg",
  29138. extra: 4682 / 3610,
  29139. bottom: 115 / 4777
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(1.6, "meters"),
  29147. default: true
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(50, "m"),
  29156. weight: math.unit(500, "tonnes"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/ryoko/front.svg",
  29160. extra: 4632 / 3926,
  29161. bottom: 193 / 4823
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(50, "meters"),
  29169. default: true
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29175. {
  29176. front: {
  29177. height: math.unit(30, "m"),
  29178. weight: math.unit(22, "tonnes"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/elio/front.svg",
  29182. extra: 4582 / 3720,
  29183. bottom: 236 / 4828
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Normal",
  29190. height: math.unit(30, "meters"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(6 + 3 / 12, "feet"),
  29200. weight: math.unit(120, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/azura/front.svg",
  29204. extra: 1149 / 1135,
  29205. bottom: 45 / 1194
  29206. }
  29207. },
  29208. frontClothed: {
  29209. height: math.unit(6 + 3 / 12, "feet"),
  29210. weight: math.unit(120, "lb"),
  29211. name: "Front (Clothed)",
  29212. image: {
  29213. source: "./media/characters/azura/front-clothed.svg",
  29214. extra: 1149 / 1135,
  29215. bottom: 45 / 1194
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Normal",
  29222. height: math.unit(6 + 3 / 12, "feet"),
  29223. default: true
  29224. },
  29225. {
  29226. name: "Macro",
  29227. height: math.unit(20 + 6 / 12, "feet")
  29228. },
  29229. {
  29230. name: "Megamacro",
  29231. height: math.unit(12, "miles")
  29232. },
  29233. {
  29234. name: "Gigamacro",
  29235. height: math.unit(10000, "miles")
  29236. },
  29237. {
  29238. name: "Teramacro",
  29239. height: math.unit(900000, "miles")
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(12, "feet"),
  29248. weight: math.unit(1, "ton"),
  29249. capacity: math.unit(660000, "gallons"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/zeus/front.svg",
  29253. extra: 5005 / 4717,
  29254. bottom: 363 / 5388
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(12, "feet")
  29262. },
  29263. {
  29264. name: "Preferred Size",
  29265. height: math.unit(0.5, "miles"),
  29266. default: true
  29267. },
  29268. {
  29269. name: "Giga Horse",
  29270. height: math.unit(300, "miles")
  29271. },
  29272. {
  29273. name: "Riding Planets",
  29274. height: math.unit(30, "megameters")
  29275. },
  29276. {
  29277. name: "Cosmic Giant",
  29278. height: math.unit(3, "zettameters")
  29279. },
  29280. {
  29281. name: "Breeding God",
  29282. height: math.unit(9.92e22, "yottameters")
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29288. {
  29289. side: {
  29290. height: math.unit(9, "feet"),
  29291. weight: math.unit(1500, "kg"),
  29292. name: "Side",
  29293. image: {
  29294. source: "./media/characters/fang/side.svg",
  29295. extra: 924 / 866,
  29296. bottom: 47.5 / 972.3
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(9, "feet"),
  29304. default: true
  29305. },
  29306. {
  29307. name: "Macro",
  29308. height: math.unit(75 + 6 / 12, "feet")
  29309. },
  29310. {
  29311. name: "Teramacro",
  29312. height: math.unit(50000, "miles")
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(10, "feet"),
  29321. weight: math.unit(2, "tons"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/rekhit/front.svg",
  29325. extra: 2796 / 2590,
  29326. bottom: 225 / 3022
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(10, "feet"),
  29334. default: true
  29335. },
  29336. {
  29337. name: "Macro",
  29338. height: math.unit(500, "feet")
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(7 + 6.451 / 12, "feet"),
  29347. weight: math.unit(310, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/dahlia-verrick/front.svg",
  29351. extra: 1488 / 1365,
  29352. bottom: 6.2 / 1495
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(7 + 6.451 / 12, "feet"),
  29357. weight: math.unit(310, "lb"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/dahlia-verrick/back.svg",
  29361. extra: 1472 / 1351,
  29362. bottom: 5.28 / 1477
  29363. }
  29364. },
  29365. frontBusiness: {
  29366. height: math.unit(7 + 6.451 / 12, "feet"),
  29367. weight: math.unit(200, "lb"),
  29368. name: "Front (Business)",
  29369. image: {
  29370. source: "./media/characters/dahlia-verrick/front-business.svg",
  29371. extra: 1478 / 1381,
  29372. bottom: 5.5 / 1484
  29373. }
  29374. },
  29375. frontCasual: {
  29376. height: math.unit(7 + 6.451 / 12, "feet"),
  29377. weight: math.unit(200, "lb"),
  29378. name: "Front (Casual)",
  29379. image: {
  29380. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29381. extra: 1478 / 1381,
  29382. bottom: 5.5 / 1484
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Travel-Sized",
  29389. height: math.unit(7.45, "inches")
  29390. },
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(7 + 6.451 / 12, "feet"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Hitting the Town",
  29398. height: math.unit(37 + 8 / 12, "feet")
  29399. },
  29400. {
  29401. name: "Stomp in the Suburbs",
  29402. height: math.unit(964 + 9.728 / 12, "feet")
  29403. },
  29404. {
  29405. name: "Sit on the City",
  29406. height: math.unit(61747 + 10.592 / 12, "feet")
  29407. },
  29408. {
  29409. name: "Glomp the Globe",
  29410. height: math.unit(252919327 + 4.832 / 12, "feet")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(6 + 4 / 12, "feet"),
  29419. weight: math.unit(320, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/balina-mahigan/front.svg",
  29423. extra: 447 / 428,
  29424. bottom: 18 / 466
  29425. }
  29426. },
  29427. back: {
  29428. height: math.unit(6 + 4 / 12, "feet"),
  29429. weight: math.unit(320, "lb"),
  29430. name: "Back",
  29431. image: {
  29432. source: "./media/characters/balina-mahigan/back.svg",
  29433. extra: 445 / 428,
  29434. bottom: 4.07 / 448
  29435. }
  29436. },
  29437. arm: {
  29438. height: math.unit(1.88, "feet"),
  29439. name: "Arm",
  29440. image: {
  29441. source: "./media/characters/balina-mahigan/arm.svg"
  29442. }
  29443. },
  29444. backPort: {
  29445. height: math.unit(0.685, "feet"),
  29446. name: "Back Port",
  29447. image: {
  29448. source: "./media/characters/balina-mahigan/back-port.svg"
  29449. }
  29450. },
  29451. hoofpaw: {
  29452. height: math.unit(1.41, "feet"),
  29453. name: "Hoofpaw",
  29454. image: {
  29455. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29456. }
  29457. },
  29458. leftHandBack: {
  29459. height: math.unit(0.938, "feet"),
  29460. name: "Left Hand (Back)",
  29461. image: {
  29462. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29463. }
  29464. },
  29465. leftHandFront: {
  29466. height: math.unit(0.938, "feet"),
  29467. name: "Left Hand (Front)",
  29468. image: {
  29469. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29470. }
  29471. },
  29472. rightHandBack: {
  29473. height: math.unit(0.95, "feet"),
  29474. name: "Right Hand (Back)",
  29475. image: {
  29476. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29477. }
  29478. },
  29479. rightHandFront: {
  29480. height: math.unit(0.95, "feet"),
  29481. name: "Right Hand (Front)",
  29482. image: {
  29483. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29484. }
  29485. },
  29486. },
  29487. [
  29488. {
  29489. name: "Normal",
  29490. height: math.unit(6 + 4 / 12, "feet"),
  29491. default: true
  29492. },
  29493. ]
  29494. ))
  29495. characterMakers.push(() => makeCharacter(
  29496. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29497. {
  29498. front: {
  29499. height: math.unit(6, "feet"),
  29500. weight: math.unit(320, "lb"),
  29501. name: "Front",
  29502. image: {
  29503. source: "./media/characters/balina-mejeri/front.svg",
  29504. extra: 517 / 488,
  29505. bottom: 44.2 / 561
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(6 + 4 / 12, "feet")
  29513. },
  29514. {
  29515. name: "Business",
  29516. height: math.unit(155, "feet"),
  29517. default: true
  29518. },
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29523. {
  29524. kneeling: {
  29525. height: math.unit(6 + 4 / 12, "feet"),
  29526. weight: math.unit(300 * 20, "lb"),
  29527. name: "Kneeling",
  29528. image: {
  29529. source: "./media/characters/balbarian/kneeling.svg",
  29530. extra: 922 / 862,
  29531. bottom: 42.4 / 965
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Normal",
  29538. height: math.unit(6 + 4 / 12, "feet")
  29539. },
  29540. {
  29541. name: "Treasured",
  29542. height: math.unit(18 + 9 / 12, "feet"),
  29543. default: true
  29544. },
  29545. {
  29546. name: "Macro",
  29547. height: math.unit(900, "feet")
  29548. },
  29549. ]
  29550. ))
  29551. characterMakers.push(() => makeCharacter(
  29552. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29553. {
  29554. front: {
  29555. height: math.unit(6 + 4 / 12, "feet"),
  29556. weight: math.unit(325, "lb"),
  29557. name: "Front",
  29558. image: {
  29559. source: "./media/characters/balina-amarini/front.svg",
  29560. extra: 415 / 403,
  29561. bottom: 19 / 433.4
  29562. }
  29563. },
  29564. back: {
  29565. height: math.unit(6 + 4 / 12, "feet"),
  29566. weight: math.unit(325, "lb"),
  29567. name: "Back",
  29568. image: {
  29569. source: "./media/characters/balina-amarini/back.svg",
  29570. extra: 415 / 403,
  29571. bottom: 13.5 / 432
  29572. }
  29573. },
  29574. overdrive: {
  29575. height: math.unit(6 + 4 / 12, "feet"),
  29576. weight: math.unit(400, "lb"),
  29577. name: "Overdrive",
  29578. image: {
  29579. source: "./media/characters/balina-amarini/overdrive.svg",
  29580. extra: 269 / 259,
  29581. bottom: 12 / 282
  29582. }
  29583. },
  29584. },
  29585. [
  29586. {
  29587. name: "Boom",
  29588. height: math.unit(9 + 10 / 12, "feet"),
  29589. default: true
  29590. },
  29591. {
  29592. name: "Macro",
  29593. height: math.unit(280, "feet")
  29594. },
  29595. ]
  29596. ))
  29597. characterMakers.push(() => makeCharacter(
  29598. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29599. {
  29600. goddess: {
  29601. height: math.unit(600, "feet"),
  29602. weight: math.unit(2000000, "tons"),
  29603. name: "Goddess",
  29604. image: {
  29605. source: "./media/characters/lady-kubwa/goddess.svg",
  29606. extra: 1240.5 / 1223,
  29607. bottom: 22 / 1263
  29608. }
  29609. },
  29610. goddesser: {
  29611. height: math.unit(900, "feet"),
  29612. weight: math.unit(20000000, "lb"),
  29613. name: "Goddess-er",
  29614. image: {
  29615. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29616. extra: 899 / 888,
  29617. bottom: 12.6 / 912
  29618. }
  29619. },
  29620. },
  29621. [
  29622. {
  29623. name: "Macro",
  29624. height: math.unit(600, "feet"),
  29625. default: true
  29626. },
  29627. {
  29628. name: "Megamacro",
  29629. height: math.unit(250, "miles")
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(7 + 7 / 12, "feet"),
  29638. weight: math.unit(250, "lb"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/tala-grovehorn/front.svg",
  29642. extra: 2636 / 2525,
  29643. bottom: 147 / 2781
  29644. }
  29645. },
  29646. back: {
  29647. height: math.unit(7 + 7 / 12, "feet"),
  29648. weight: math.unit(250, "lb"),
  29649. name: "Back",
  29650. image: {
  29651. source: "./media/characters/tala-grovehorn/back.svg",
  29652. extra: 2635 / 2539,
  29653. bottom: 100 / 2732.8
  29654. }
  29655. },
  29656. mouth: {
  29657. height: math.unit(1.15, "feet"),
  29658. name: "Mouth",
  29659. image: {
  29660. source: "./media/characters/tala-grovehorn/mouth.svg"
  29661. }
  29662. },
  29663. dick: {
  29664. height: math.unit(2.36, "feet"),
  29665. name: "Dick",
  29666. image: {
  29667. source: "./media/characters/tala-grovehorn/dick.svg"
  29668. }
  29669. },
  29670. slit: {
  29671. height: math.unit(0.61, "feet"),
  29672. name: "Slit",
  29673. image: {
  29674. source: "./media/characters/tala-grovehorn/slit.svg"
  29675. }
  29676. },
  29677. },
  29678. [
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(7 + 7 / 12, "feet"),
  29686. weight: math.unit(225, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/epona/front.svg",
  29690. extra: 2445 / 2290,
  29691. bottom: 251 / 2696
  29692. }
  29693. },
  29694. back: {
  29695. height: math.unit(7 + 7 / 12, "feet"),
  29696. weight: math.unit(225, "lb"),
  29697. name: "Back",
  29698. image: {
  29699. source: "./media/characters/epona/back.svg",
  29700. extra: 2546 / 2408,
  29701. bottom: 44 / 2589
  29702. }
  29703. },
  29704. genitals: {
  29705. height: math.unit(1.5, "feet"),
  29706. name: "Genitals",
  29707. image: {
  29708. source: "./media/characters/epona/genitals.svg"
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Normal",
  29715. height: math.unit(7 + 7 / 12, "feet"),
  29716. default: true
  29717. },
  29718. ]
  29719. ))
  29720. characterMakers.push(() => makeCharacter(
  29721. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29722. {
  29723. front: {
  29724. height: math.unit(7, "feet"),
  29725. weight: math.unit(518, "lb"),
  29726. name: "Front",
  29727. image: {
  29728. source: "./media/characters/avia-bloodbourn/front.svg",
  29729. extra: 1466 / 1350,
  29730. bottom: 65 / 1527
  29731. }
  29732. },
  29733. },
  29734. [
  29735. ]
  29736. ))
  29737. characterMakers.push(() => makeCharacter(
  29738. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29739. {
  29740. front: {
  29741. height: math.unit(9.35, "feet"),
  29742. weight: math.unit(600, "lb"),
  29743. name: "Front",
  29744. image: {
  29745. source: "./media/characters/amera/front.svg",
  29746. extra: 891 / 818,
  29747. bottom: 30 / 922.7
  29748. }
  29749. },
  29750. back: {
  29751. height: math.unit(9.35, "feet"),
  29752. weight: math.unit(600, "lb"),
  29753. name: "Back",
  29754. image: {
  29755. source: "./media/characters/amera/back.svg",
  29756. extra: 876 / 824,
  29757. bottom: 6.8 / 884
  29758. }
  29759. },
  29760. dick: {
  29761. height: math.unit(2.14, "feet"),
  29762. name: "Dick",
  29763. image: {
  29764. source: "./media/characters/amera/dick.svg"
  29765. }
  29766. },
  29767. },
  29768. [
  29769. {
  29770. name: "Normal",
  29771. height: math.unit(9.35, "feet"),
  29772. default: true
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29778. {
  29779. kneeling: {
  29780. height: math.unit(3 + 4 / 12, "feet"),
  29781. weight: math.unit(90, "lb"),
  29782. name: "Kneeling",
  29783. image: {
  29784. source: "./media/characters/rosewen/kneeling.svg",
  29785. extra: 1835 / 1571,
  29786. bottom: 27.7 / 1862
  29787. }
  29788. },
  29789. },
  29790. [
  29791. {
  29792. name: "Normal",
  29793. height: math.unit(3 + 4 / 12, "feet"),
  29794. default: true
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(5 + 10 / 12, "feet"),
  29803. weight: math.unit(200, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/sabah/front.svg",
  29807. extra: 849 / 763,
  29808. bottom: 33.9 / 881
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(5 + 10 / 12, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29822. {
  29823. front: {
  29824. height: math.unit(3 + 5 / 12, "feet"),
  29825. weight: math.unit(40, "kg"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/purple-flame/front.svg",
  29829. extra: 1577 / 1412,
  29830. bottom: 97 / 1694
  29831. }
  29832. },
  29833. frontDressed: {
  29834. height: math.unit(3 + 5 / 12, "feet"),
  29835. weight: math.unit(40, "kg"),
  29836. name: "Front (Dressed)",
  29837. image: {
  29838. source: "./media/characters/purple-flame/front-dressed.svg",
  29839. extra: 1577 / 1412,
  29840. bottom: 97 / 1694
  29841. }
  29842. },
  29843. headphones: {
  29844. height: math.unit(0.85, "feet"),
  29845. name: "Headphones",
  29846. image: {
  29847. source: "./media/characters/purple-flame/headphones.svg"
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Really Small",
  29854. height: math.unit(5, "cm")
  29855. },
  29856. {
  29857. name: "Micro",
  29858. height: math.unit(1 + 5 / 12, "feet")
  29859. },
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(3 + 5 / 12, "feet"),
  29863. default: true
  29864. },
  29865. {
  29866. name: "Minimacro",
  29867. height: math.unit(125, "feet")
  29868. },
  29869. {
  29870. name: "Macro",
  29871. height: math.unit(0.5, "miles")
  29872. },
  29873. {
  29874. name: "Megamacro",
  29875. height: math.unit(50, "miles")
  29876. },
  29877. {
  29878. name: "Gigantic",
  29879. height: math.unit(750, "miles")
  29880. },
  29881. {
  29882. name: "Planetary",
  29883. height: math.unit(15000, "miles")
  29884. },
  29885. ]
  29886. ))
  29887. characterMakers.push(() => makeCharacter(
  29888. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29889. {
  29890. front: {
  29891. height: math.unit(14, "feet"),
  29892. weight: math.unit(959, "lb"),
  29893. name: "Front",
  29894. image: {
  29895. source: "./media/characters/arsenal/front.svg",
  29896. extra: 2357 / 2157,
  29897. bottom: 93 / 2458
  29898. }
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Normal",
  29904. height: math.unit(14, "feet"),
  29905. default: true
  29906. },
  29907. ]
  29908. ))
  29909. characterMakers.push(() => makeCharacter(
  29910. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29911. {
  29912. front: {
  29913. height: math.unit(6, "feet"),
  29914. weight: math.unit(150, "lb"),
  29915. name: "Front",
  29916. image: {
  29917. source: "./media/characters/adira/front.svg",
  29918. extra: 2121/2013,
  29919. bottom: 206/2327
  29920. }
  29921. },
  29922. },
  29923. [
  29924. {
  29925. name: "Micro",
  29926. height: math.unit(4, "inches"),
  29927. default: true
  29928. },
  29929. {
  29930. name: "Macro",
  29931. height: math.unit(50, "feet")
  29932. },
  29933. ]
  29934. ))
  29935. characterMakers.push(() => makeCharacter(
  29936. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29937. {
  29938. front: {
  29939. height: math.unit(16, "feet"),
  29940. weight: math.unit(1000, "lb"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/grim/front.svg",
  29944. extra: 622 / 614,
  29945. bottom: 18.1 / 642
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(16, "feet"),
  29950. weight: math.unit(1000, "lb"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/grim/back.svg",
  29954. extra: 610.6 / 602,
  29955. bottom: 40.8 / 652
  29956. }
  29957. },
  29958. hunched: {
  29959. height: math.unit(9.75, "feet"),
  29960. weight: math.unit(1000, "lb"),
  29961. name: "Hunched",
  29962. image: {
  29963. source: "./media/characters/grim/hunched.svg",
  29964. extra: 304 / 297,
  29965. bottom: 35.4 / 394
  29966. }
  29967. },
  29968. },
  29969. [
  29970. {
  29971. name: "Normal",
  29972. height: math.unit(16, "feet"),
  29973. default: true
  29974. },
  29975. ]
  29976. ))
  29977. characterMakers.push(() => makeCharacter(
  29978. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29979. {
  29980. front: {
  29981. height: math.unit(2.3, "meters"),
  29982. weight: math.unit(300, "lb"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/sinja/front-sfw.svg",
  29986. extra: 1393 / 1294,
  29987. bottom: 70 / 1463
  29988. }
  29989. },
  29990. frontNsfw: {
  29991. height: math.unit(2.3, "meters"),
  29992. weight: math.unit(300, "lb"),
  29993. name: "Front (NSFW)",
  29994. image: {
  29995. source: "./media/characters/sinja/front-nsfw.svg",
  29996. extra: 1393 / 1294,
  29997. bottom: 70 / 1463
  29998. }
  29999. },
  30000. back: {
  30001. height: math.unit(2.3, "meters"),
  30002. weight: math.unit(300, "lb"),
  30003. name: "Back",
  30004. image: {
  30005. source: "./media/characters/sinja/back.svg",
  30006. extra: 1393 / 1294,
  30007. bottom: 70 / 1463
  30008. }
  30009. },
  30010. head: {
  30011. height: math.unit(1.771, "feet"),
  30012. name: "Head",
  30013. image: {
  30014. source: "./media/characters/sinja/head.svg"
  30015. }
  30016. },
  30017. slit: {
  30018. height: math.unit(0.8, "feet"),
  30019. name: "Slit",
  30020. image: {
  30021. source: "./media/characters/sinja/slit.svg"
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Normal",
  30028. height: math.unit(2.3, "meters")
  30029. },
  30030. {
  30031. name: "Macro",
  30032. height: math.unit(91, "meters"),
  30033. default: true
  30034. },
  30035. {
  30036. name: "Megamacro",
  30037. height: math.unit(91440, "meters")
  30038. },
  30039. {
  30040. name: "Gigamacro",
  30041. height: math.unit(60960000, "meters")
  30042. },
  30043. {
  30044. name: "Teramacro",
  30045. height: math.unit(9144000000, "meters")
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30051. {
  30052. front: {
  30053. height: math.unit(1.7, "meters"),
  30054. weight: math.unit(130, "lb"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/kyu/front.svg",
  30058. extra: 415 / 395,
  30059. bottom: 5 / 420
  30060. }
  30061. },
  30062. head: {
  30063. height: math.unit(1.75, "feet"),
  30064. name: "Head",
  30065. image: {
  30066. source: "./media/characters/kyu/head.svg"
  30067. }
  30068. },
  30069. foot: {
  30070. height: math.unit(0.81, "feet"),
  30071. name: "Foot",
  30072. image: {
  30073. source: "./media/characters/kyu/foot.svg"
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(1.7, "meters")
  30081. },
  30082. {
  30083. name: "Macro",
  30084. height: math.unit(131, "feet"),
  30085. default: true
  30086. },
  30087. {
  30088. name: "Megamacro",
  30089. height: math.unit(91440, "meters")
  30090. },
  30091. {
  30092. name: "Gigamacro",
  30093. height: math.unit(60960000, "meters")
  30094. },
  30095. {
  30096. name: "Teramacro",
  30097. height: math.unit(9144000000, "meters")
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(7 + 1 / 12, "feet"),
  30106. weight: math.unit(250, "lb"),
  30107. name: "Front",
  30108. image: {
  30109. source: "./media/characters/joey/front.svg",
  30110. extra: 1791 / 1537,
  30111. bottom: 28 / 1816
  30112. }
  30113. },
  30114. },
  30115. [
  30116. {
  30117. name: "Micro",
  30118. height: math.unit(3, "inches")
  30119. },
  30120. {
  30121. name: "Normal",
  30122. height: math.unit(7 + 1 / 12, "feet"),
  30123. default: true
  30124. },
  30125. ]
  30126. ))
  30127. characterMakers.push(() => makeCharacter(
  30128. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30129. {
  30130. front: {
  30131. height: math.unit(165, "cm"),
  30132. weight: math.unit(140, "lb"),
  30133. name: "Front",
  30134. image: {
  30135. source: "./media/characters/sam-evans/front.svg",
  30136. extra: 3417 / 3230,
  30137. bottom: 41.3 / 3417
  30138. }
  30139. },
  30140. frontSixTails: {
  30141. height: math.unit(165, "cm"),
  30142. weight: math.unit(140, "lb"),
  30143. name: "Front-six-tails",
  30144. image: {
  30145. source: "./media/characters/sam-evans/front-six-tails.svg",
  30146. extra: 3417 / 3230,
  30147. bottom: 41.3 / 3417
  30148. }
  30149. },
  30150. back: {
  30151. height: math.unit(165, "cm"),
  30152. weight: math.unit(140, "lb"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/sam-evans/back.svg",
  30156. extra: 3227 / 3032,
  30157. bottom: 6.8 / 3234
  30158. }
  30159. },
  30160. face: {
  30161. height: math.unit(0.68, "feet"),
  30162. name: "Face",
  30163. image: {
  30164. source: "./media/characters/sam-evans/face.svg"
  30165. }
  30166. },
  30167. },
  30168. [
  30169. {
  30170. name: "Normal",
  30171. height: math.unit(165, "cm"),
  30172. default: true
  30173. },
  30174. {
  30175. name: "Macro",
  30176. height: math.unit(100, "meters")
  30177. },
  30178. {
  30179. name: "Macro+",
  30180. height: math.unit(800, "meters")
  30181. },
  30182. {
  30183. name: "Macro++",
  30184. height: math.unit(3, "km")
  30185. },
  30186. {
  30187. name: "Macro+++",
  30188. height: math.unit(30, "km")
  30189. },
  30190. ]
  30191. ))
  30192. characterMakers.push(() => makeCharacter(
  30193. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30194. {
  30195. front: {
  30196. height: math.unit(10, "feet"),
  30197. weight: math.unit(750, "lb"),
  30198. name: "Front",
  30199. image: {
  30200. source: "./media/characters/juliet-a/front.svg",
  30201. extra: 1766 / 1720,
  30202. bottom: 43 / 1809
  30203. }
  30204. },
  30205. back: {
  30206. height: math.unit(10, "feet"),
  30207. weight: math.unit(750, "lb"),
  30208. name: "Back",
  30209. image: {
  30210. source: "./media/characters/juliet-a/back.svg",
  30211. extra: 1781 / 1734,
  30212. bottom: 35 / 1810,
  30213. }
  30214. },
  30215. },
  30216. [
  30217. {
  30218. name: "Normal",
  30219. height: math.unit(10, "feet"),
  30220. default: true
  30221. },
  30222. {
  30223. name: "Dragon Form",
  30224. height: math.unit(250, "feet")
  30225. },
  30226. {
  30227. name: "Macro",
  30228. height: math.unit(1000, "feet")
  30229. },
  30230. {
  30231. name: "Megamacro",
  30232. height: math.unit(10000, "feet")
  30233. }
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30238. {
  30239. regular: {
  30240. height: math.unit(7 + 3 / 12, "feet"),
  30241. weight: math.unit(260, "lb"),
  30242. name: "Regular",
  30243. image: {
  30244. source: "./media/characters/wild/regular.svg",
  30245. extra: 97.45 / 92,
  30246. bottom: 6.8 / 104.3
  30247. }
  30248. },
  30249. biggums: {
  30250. height: math.unit(8 + 6 / 12, "feet"),
  30251. weight: math.unit(425, "lb"),
  30252. name: "Biggums",
  30253. image: {
  30254. source: "./media/characters/wild/biggums.svg",
  30255. extra: 97.45 / 92,
  30256. bottom: 7.5 / 132.34
  30257. }
  30258. },
  30259. mawRegular: {
  30260. height: math.unit(1.24, "feet"),
  30261. name: "Maw (Regular)",
  30262. image: {
  30263. source: "./media/characters/wild/maw.svg"
  30264. }
  30265. },
  30266. mawBiggums: {
  30267. height: math.unit(1.47, "feet"),
  30268. name: "Maw (Biggums)",
  30269. image: {
  30270. source: "./media/characters/wild/maw.svg"
  30271. }
  30272. },
  30273. },
  30274. [
  30275. {
  30276. name: "Normal",
  30277. height: math.unit(7 + 3 / 12, "feet"),
  30278. default: true
  30279. },
  30280. ]
  30281. ))
  30282. characterMakers.push(() => makeCharacter(
  30283. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30284. {
  30285. front: {
  30286. height: math.unit(2.5, "meters"),
  30287. weight: math.unit(200, "kg"),
  30288. name: "Front",
  30289. image: {
  30290. source: "./media/characters/vidar/front.svg",
  30291. extra: 2994 / 2795,
  30292. bottom: 56 / 3061
  30293. }
  30294. },
  30295. back: {
  30296. height: math.unit(2.5, "meters"),
  30297. weight: math.unit(200, "kg"),
  30298. name: "Back",
  30299. image: {
  30300. source: "./media/characters/vidar/back.svg",
  30301. extra: 3131 / 2928,
  30302. bottom: 13.5 / 3141.5
  30303. }
  30304. },
  30305. feral: {
  30306. height: math.unit(2.5, "meters"),
  30307. weight: math.unit(2000, "kg"),
  30308. name: "Feral",
  30309. image: {
  30310. source: "./media/characters/vidar/feral.svg",
  30311. extra: 2790 / 1765,
  30312. bottom: 6 / 2796
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(2.5, "meters"),
  30320. default: true
  30321. },
  30322. {
  30323. name: "Macro",
  30324. height: math.unit(100, "meters")
  30325. },
  30326. ]
  30327. ))
  30328. characterMakers.push(() => makeCharacter(
  30329. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30330. {
  30331. front: {
  30332. height: math.unit(5 + 9 / 12, "feet"),
  30333. weight: math.unit(120, "lb"),
  30334. name: "Front",
  30335. image: {
  30336. source: "./media/characters/ash/front.svg",
  30337. extra: 2189 / 1961,
  30338. bottom: 5.2 / 2194
  30339. }
  30340. },
  30341. },
  30342. [
  30343. {
  30344. name: "Normal",
  30345. height: math.unit(5 + 9 / 12, "feet"),
  30346. default: true
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30352. {
  30353. front: {
  30354. height: math.unit(9, "feet"),
  30355. weight: math.unit(10000, "lb"),
  30356. name: "Front",
  30357. image: {
  30358. source: "./media/characters/gygabite/front.svg",
  30359. bottom: 31.7 / 537.8,
  30360. extra: 505 / 370
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Normal",
  30367. height: math.unit(9, "feet"),
  30368. default: true
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(12, "feet"),
  30377. weight: math.unit(4000, "lb"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/p0tat0/front.svg",
  30381. extra: 1065 / 921,
  30382. bottom: 55.7 / 1121.25
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Normal",
  30389. height: math.unit(12, "feet"),
  30390. default: true
  30391. },
  30392. ]
  30393. ))
  30394. characterMakers.push(() => makeCharacter(
  30395. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30396. {
  30397. side: {
  30398. height: math.unit(6.5, "feet"),
  30399. weight: math.unit(800, "lb"),
  30400. name: "Side",
  30401. image: {
  30402. source: "./media/characters/dusk/side.svg",
  30403. extra: 615 / 373,
  30404. bottom: 53 / 664
  30405. }
  30406. },
  30407. sitting: {
  30408. height: math.unit(7, "feet"),
  30409. weight: math.unit(800, "lb"),
  30410. name: "Sitting",
  30411. image: {
  30412. source: "./media/characters/dusk/sitting.svg",
  30413. extra: 753 / 425,
  30414. bottom: 33 / 774
  30415. }
  30416. },
  30417. head: {
  30418. height: math.unit(6.1, "feet"),
  30419. name: "Head",
  30420. image: {
  30421. source: "./media/characters/dusk/head.svg"
  30422. }
  30423. },
  30424. },
  30425. [
  30426. {
  30427. name: "Normal",
  30428. height: math.unit(7, "feet"),
  30429. default: true
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30435. {
  30436. front: {
  30437. height: math.unit(15, "feet"),
  30438. weight: math.unit(7000, "lb"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/jay-direwolf/front.svg",
  30442. extra: 1810 / 1732,
  30443. bottom: 66 / 1892
  30444. }
  30445. },
  30446. },
  30447. [
  30448. {
  30449. name: "Normal",
  30450. height: math.unit(15, "feet"),
  30451. default: true
  30452. },
  30453. ]
  30454. ))
  30455. characterMakers.push(() => makeCharacter(
  30456. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30457. {
  30458. front: {
  30459. height: math.unit(4 + 9 / 12, "feet"),
  30460. weight: math.unit(130, "lb"),
  30461. name: "Front",
  30462. image: {
  30463. source: "./media/characters/anchovie/front.svg",
  30464. extra: 382 / 350,
  30465. bottom: 25 / 409
  30466. }
  30467. },
  30468. back: {
  30469. height: math.unit(4 + 9 / 12, "feet"),
  30470. weight: math.unit(130, "lb"),
  30471. name: "Back",
  30472. image: {
  30473. source: "./media/characters/anchovie/back.svg",
  30474. extra: 385 / 352,
  30475. bottom: 16.6 / 402
  30476. }
  30477. },
  30478. frontDressed: {
  30479. height: math.unit(4 + 9 / 12, "feet"),
  30480. weight: math.unit(130, "lb"),
  30481. name: "Front (Dressed)",
  30482. image: {
  30483. source: "./media/characters/anchovie/front-dressed.svg",
  30484. extra: 382 / 350,
  30485. bottom: 25 / 409
  30486. }
  30487. },
  30488. backDressed: {
  30489. height: math.unit(4 + 9 / 12, "feet"),
  30490. weight: math.unit(130, "lb"),
  30491. name: "Back (Dressed)",
  30492. image: {
  30493. source: "./media/characters/anchovie/back-dressed.svg",
  30494. extra: 385 / 352,
  30495. bottom: 16.6 / 402
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Micro",
  30502. height: math.unit(6.4, "inches")
  30503. },
  30504. {
  30505. name: "Normal",
  30506. height: math.unit(4 + 9 / 12, "feet"),
  30507. default: true
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30513. {
  30514. front: {
  30515. height: math.unit(2, "meters"),
  30516. weight: math.unit(180, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/acidrenamon/front.svg",
  30520. extra: 987 / 890,
  30521. bottom: 22.8 / 1009
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(2, "meters"),
  30526. weight: math.unit(180, "lb"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/acidrenamon/back.svg",
  30530. extra: 983 / 891,
  30531. bottom: 8.4 / 992
  30532. }
  30533. },
  30534. head: {
  30535. height: math.unit(1.92, "feet"),
  30536. name: "Head",
  30537. image: {
  30538. source: "./media/characters/acidrenamon/head.svg"
  30539. }
  30540. },
  30541. rump: {
  30542. height: math.unit(1.72, "feet"),
  30543. name: "Rump",
  30544. image: {
  30545. source: "./media/characters/acidrenamon/rump.svg"
  30546. }
  30547. },
  30548. tail: {
  30549. height: math.unit(4.2, "feet"),
  30550. name: "Tail",
  30551. image: {
  30552. source: "./media/characters/acidrenamon/tail.svg"
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(2, "meters"),
  30560. default: true
  30561. },
  30562. {
  30563. name: "Minimacro",
  30564. height: math.unit(7, "meters")
  30565. },
  30566. {
  30567. name: "Macro",
  30568. height: math.unit(200, "meters")
  30569. },
  30570. {
  30571. name: "Gigamacro",
  30572. height: math.unit(0.2, "earths")
  30573. },
  30574. ]
  30575. ))
  30576. characterMakers.push(() => makeCharacter(
  30577. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30578. {
  30579. front: {
  30580. height: math.unit(152, "feet"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/kenzie-lee/front.svg",
  30584. extra: 1869/1774,
  30585. bottom: 128/1997
  30586. }
  30587. },
  30588. side: {
  30589. height: math.unit(86, "feet"),
  30590. name: "Side",
  30591. image: {
  30592. source: "./media/characters/kenzie-lee/side.svg",
  30593. extra: 930/815,
  30594. bottom: 177/1107
  30595. }
  30596. },
  30597. paw: {
  30598. height: math.unit(15, "feet"),
  30599. name: "Paw",
  30600. image: {
  30601. source: "./media/characters/kenzie-lee/paw.svg"
  30602. }
  30603. },
  30604. },
  30605. [
  30606. {
  30607. name: "Kenzie Flea",
  30608. height: math.unit(2, "mm"),
  30609. default: true
  30610. },
  30611. {
  30612. name: "Micro",
  30613. height: math.unit(2, "inches")
  30614. },
  30615. {
  30616. name: "Normal",
  30617. height: math.unit(152, "feet")
  30618. },
  30619. {
  30620. name: "Megamacro",
  30621. height: math.unit(7, "miles")
  30622. },
  30623. {
  30624. name: "Gigamacro",
  30625. height: math.unit(8000, "miles")
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(6, "feet"),
  30634. name: "Front",
  30635. image: {
  30636. source: "./media/characters/withers/front.svg",
  30637. extra: 1935/1760,
  30638. bottom: 72/2007
  30639. }
  30640. },
  30641. back: {
  30642. height: math.unit(6, "feet"),
  30643. name: "Back",
  30644. image: {
  30645. source: "./media/characters/withers/back.svg",
  30646. extra: 1944/1792,
  30647. bottom: 12/1956
  30648. }
  30649. },
  30650. dressed: {
  30651. height: math.unit(6, "feet"),
  30652. name: "Dressed",
  30653. image: {
  30654. source: "./media/characters/withers/dressed.svg",
  30655. extra: 1937/1765,
  30656. bottom: 73/2010
  30657. }
  30658. },
  30659. phase1: {
  30660. height: math.unit(1.1, "feet"),
  30661. name: "Phase 1",
  30662. image: {
  30663. source: "./media/characters/withers/phase-1.svg",
  30664. extra: 1885/1232,
  30665. bottom: 0/1885
  30666. }
  30667. },
  30668. phase2: {
  30669. height: math.unit(1.05, "feet"),
  30670. name: "Phase 2",
  30671. image: {
  30672. source: "./media/characters/withers/phase-2.svg",
  30673. extra: 1792/1090,
  30674. bottom: 0/1792
  30675. }
  30676. },
  30677. partyWipe: {
  30678. height: math.unit(1.1, "feet"),
  30679. name: "Party Wipe",
  30680. image: {
  30681. source: "./media/characters/withers/party-wipe.svg",
  30682. extra: 1864/1207,
  30683. bottom: 0/1864
  30684. }
  30685. },
  30686. },
  30687. [
  30688. {
  30689. name: "Macro",
  30690. height: math.unit(167, "feet"),
  30691. default: true
  30692. },
  30693. {
  30694. name: "Megamacro",
  30695. height: math.unit(15, "miles")
  30696. }
  30697. ]
  30698. ))
  30699. characterMakers.push(() => makeCharacter(
  30700. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30701. {
  30702. front: {
  30703. height: math.unit(6 + 7 / 12, "feet"),
  30704. weight: math.unit(250, "lb"),
  30705. name: "Front",
  30706. image: {
  30707. source: "./media/characters/nemoskii/front.svg",
  30708. extra: 2270 / 1734,
  30709. bottom: 86 / 2354
  30710. }
  30711. },
  30712. back: {
  30713. height: math.unit(6 + 7 / 12, "feet"),
  30714. weight: math.unit(250, "lb"),
  30715. name: "Back",
  30716. image: {
  30717. source: "./media/characters/nemoskii/back.svg",
  30718. extra: 1845 / 1788,
  30719. bottom: 10.5 / 1852
  30720. }
  30721. },
  30722. head: {
  30723. height: math.unit(1.31, "feet"),
  30724. name: "Head",
  30725. image: {
  30726. source: "./media/characters/nemoskii/head.svg"
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Micro",
  30733. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30734. },
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(6 + 7 / 12, "feet"),
  30738. default: true
  30739. },
  30740. {
  30741. name: "Macro",
  30742. height: math.unit((6 + 7 / 12) * 150, "feet")
  30743. },
  30744. {
  30745. name: "Macro+",
  30746. height: math.unit((6 + 7 / 12) * 500, "feet")
  30747. },
  30748. {
  30749. name: "Megamacro",
  30750. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(1, "mile"),
  30759. weight: math.unit(265261.9, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/shui/front.svg",
  30763. extra: 1633 / 1564,
  30764. bottom: 91.5 / 1726
  30765. }
  30766. },
  30767. },
  30768. [
  30769. {
  30770. name: "Macro",
  30771. height: math.unit(1, "mile"),
  30772. default: true
  30773. },
  30774. ]
  30775. ))
  30776. characterMakers.push(() => makeCharacter(
  30777. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30778. {
  30779. front: {
  30780. height: math.unit(12 + 6 / 12, "feet"),
  30781. weight: math.unit(1342, "lb"),
  30782. name: "Front",
  30783. image: {
  30784. source: "./media/characters/arokh-takakura/front.svg",
  30785. extra: 1089 / 1043,
  30786. bottom: 77.4 / 1176.7
  30787. }
  30788. },
  30789. back: {
  30790. height: math.unit(12 + 6 / 12, "feet"),
  30791. weight: math.unit(1342, "lb"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/arokh-takakura/back.svg",
  30795. extra: 1046 / 1019,
  30796. bottom: 102 / 1150
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Big",
  30803. height: math.unit(12 + 6 / 12, "feet"),
  30804. default: true
  30805. },
  30806. ]
  30807. ))
  30808. characterMakers.push(() => makeCharacter(
  30809. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30810. {
  30811. front: {
  30812. height: math.unit(5 + 6 / 12, "feet"),
  30813. weight: math.unit(150, "lb"),
  30814. name: "Front",
  30815. image: {
  30816. source: "./media/characters/theo/front.svg",
  30817. extra: 1184 / 1131,
  30818. bottom: 7.4 / 1191
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Micro",
  30825. height: math.unit(5, "inches")
  30826. },
  30827. {
  30828. name: "Normal",
  30829. height: math.unit(5 + 6 / 12, "feet"),
  30830. default: true
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30836. {
  30837. front: {
  30838. height: math.unit(5 + 9 / 12, "feet"),
  30839. weight: math.unit(130, "lb"),
  30840. name: "Front",
  30841. image: {
  30842. source: "./media/characters/cecelia-swift/front.svg",
  30843. extra: 502 / 484,
  30844. bottom: 23 / 523
  30845. }
  30846. },
  30847. back: {
  30848. height: math.unit(5 + 9 / 12, "feet"),
  30849. weight: math.unit(130, "lb"),
  30850. name: "Back",
  30851. image: {
  30852. source: "./media/characters/cecelia-swift/back.svg",
  30853. extra: 499 / 485,
  30854. bottom: 12 / 511
  30855. }
  30856. },
  30857. head: {
  30858. height: math.unit(0.90, "feet"),
  30859. name: "Head",
  30860. image: {
  30861. source: "./media/characters/cecelia-swift/head.svg"
  30862. }
  30863. },
  30864. rump: {
  30865. height: math.unit(1.75, "feet"),
  30866. name: "Rump",
  30867. image: {
  30868. source: "./media/characters/cecelia-swift/rump.svg"
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(5 + 9 / 12, "feet"),
  30876. default: true
  30877. },
  30878. {
  30879. name: "Big",
  30880. height: math.unit(50, "feet")
  30881. },
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(100, "feet")
  30885. },
  30886. {
  30887. name: "Macro+",
  30888. height: math.unit(500, "feet")
  30889. },
  30890. {
  30891. name: "Macro++",
  30892. height: math.unit(1000, "feet")
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(6, "feet"),
  30901. weight: math.unit(150, "lb"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/kaunan/front.svg",
  30905. extra: 2890 / 2523,
  30906. bottom: 49 / 2939
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Macro",
  30913. height: math.unit(150, "feet"),
  30914. default: true
  30915. },
  30916. ]
  30917. ))
  30918. characterMakers.push(() => makeCharacter(
  30919. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30920. {
  30921. dressed: {
  30922. height: math.unit(175, "cm"),
  30923. weight: math.unit(60, "kg"),
  30924. name: "Dressed",
  30925. image: {
  30926. source: "./media/characters/fei/dressed.svg",
  30927. extra: 1402/1278,
  30928. bottom: 27/1429
  30929. }
  30930. },
  30931. nude: {
  30932. height: math.unit(175, "cm"),
  30933. weight: math.unit(60, "kg"),
  30934. name: "Nude",
  30935. image: {
  30936. source: "./media/characters/fei/nude.svg",
  30937. extra: 1402/1278,
  30938. bottom: 27/1429
  30939. }
  30940. },
  30941. heels: {
  30942. height: math.unit(0.466, "feet"),
  30943. name: "Heels",
  30944. image: {
  30945. source: "./media/characters/fei/heels.svg",
  30946. extra: 156/152,
  30947. bottom: 28/184
  30948. }
  30949. },
  30950. },
  30951. [
  30952. {
  30953. name: "Mortal",
  30954. height: math.unit(175, "cm")
  30955. },
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(3500, "m")
  30959. },
  30960. {
  30961. name: "Stroll",
  30962. height: math.unit(18.4, "km"),
  30963. default: true
  30964. },
  30965. {
  30966. name: "Showoff",
  30967. height: math.unit(175, "km")
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30973. {
  30974. front: {
  30975. height: math.unit(7, "feet"),
  30976. weight: math.unit(1000, "kg"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/edrax/front.svg",
  30980. extra: 2838 / 2550,
  30981. bottom: 130 / 2968
  30982. }
  30983. },
  30984. },
  30985. [
  30986. {
  30987. name: "Small",
  30988. height: math.unit(7, "feet")
  30989. },
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(1500, "meters")
  30993. },
  30994. {
  30995. name: "Mega",
  30996. height: math.unit(12000000, "km"),
  30997. default: true
  30998. },
  30999. {
  31000. name: "Megamacro",
  31001. height: math.unit(10600000, "lightyears")
  31002. },
  31003. {
  31004. name: "Hypermacro",
  31005. height: math.unit(256, "yottameters")
  31006. },
  31007. ]
  31008. ))
  31009. characterMakers.push(() => makeCharacter(
  31010. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31011. {
  31012. front: {
  31013. height: math.unit(10, "feet"),
  31014. weight: math.unit(750, "lb"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/clove/front.svg",
  31018. extra: 1918/1751,
  31019. bottom: 52/1970
  31020. }
  31021. },
  31022. back: {
  31023. height: math.unit(10, "feet"),
  31024. weight: math.unit(750, "lb"),
  31025. name: "Back",
  31026. image: {
  31027. source: "./media/characters/clove/back.svg",
  31028. extra: 1912/1747,
  31029. bottom: 50/1962
  31030. }
  31031. },
  31032. },
  31033. [
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(10, "feet"),
  31037. default: true
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31043. {
  31044. front: {
  31045. height: math.unit(4, "feet"),
  31046. weight: math.unit(50, "lb"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/alex-rabbit/front.svg",
  31050. extra: 507 / 458,
  31051. bottom: 18.5 / 527
  31052. }
  31053. },
  31054. back: {
  31055. height: math.unit(4, "feet"),
  31056. weight: math.unit(50, "lb"),
  31057. name: "Back",
  31058. image: {
  31059. source: "./media/characters/alex-rabbit/back.svg",
  31060. extra: 502 / 460,
  31061. bottom: 18.9 / 521
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(4, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(1 + 3 / 12, "feet"),
  31078. weight: math.unit(80, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/zander-rose/front.svg",
  31082. extra: 916 / 797,
  31083. bottom: 17 / 933
  31084. }
  31085. },
  31086. back: {
  31087. height: math.unit(1 + 3 / 12, "feet"),
  31088. weight: math.unit(80, "lb"),
  31089. name: "Back",
  31090. image: {
  31091. source: "./media/characters/zander-rose/back.svg",
  31092. extra: 903 / 779,
  31093. bottom: 31 / 934
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(1 + 3 / 12, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31107. {
  31108. anthro: {
  31109. height: math.unit(6, "feet"),
  31110. weight: math.unit(150, "lb"),
  31111. name: "Anthro",
  31112. image: {
  31113. source: "./media/characters/razz/anthro.svg",
  31114. extra: 1437 / 1343,
  31115. bottom: 48 / 1485
  31116. }
  31117. },
  31118. feral: {
  31119. height: math.unit(6, "feet"),
  31120. weight: math.unit(150, "lb"),
  31121. name: "Feral",
  31122. image: {
  31123. source: "./media/characters/razz/feral.svg",
  31124. extra: 2569 / 1385,
  31125. bottom: 95 / 2664
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Normal",
  31132. height: math.unit(6, "feet"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31139. {
  31140. front: {
  31141. height: math.unit(9 + 4 / 12, "feet"),
  31142. weight: math.unit(500, "lb"),
  31143. name: "Front",
  31144. image: {
  31145. source: "./media/characters/morrigan/front.svg",
  31146. extra: 2707 / 2579,
  31147. bottom: 156 / 2863
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Normal",
  31154. height: math.unit(9 + 4 / 12, "feet"),
  31155. default: true
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31161. {
  31162. front: {
  31163. height: math.unit(5, "stories"),
  31164. weight: math.unit(4000, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/jenene/front.svg",
  31168. extra: 1780 / 1710,
  31169. bottom: 57 / 1837
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Normal",
  31176. height: math.unit(5, "stories"),
  31177. default: true
  31178. },
  31179. ]
  31180. ))
  31181. characterMakers.push(() => makeCharacter(
  31182. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31183. {
  31184. taurSfw: {
  31185. height: math.unit(10, "meters"),
  31186. weight: math.unit(17500, "kg"),
  31187. name: "Taur",
  31188. image: {
  31189. source: "./media/characters/faey/taur-sfw.svg",
  31190. extra: 1200 / 968,
  31191. bottom: 41 / 1241
  31192. }
  31193. },
  31194. chestmaw: {
  31195. height: math.unit(2.01, "meters"),
  31196. name: "Chestmaw",
  31197. image: {
  31198. source: "./media/characters/faey/chestmaw.svg"
  31199. }
  31200. },
  31201. foot: {
  31202. height: math.unit(2.43, "meters"),
  31203. name: "Foot",
  31204. image: {
  31205. source: "./media/characters/faey/foot.svg"
  31206. }
  31207. },
  31208. jaws: {
  31209. height: math.unit(1.66, "meters"),
  31210. name: "Jaws",
  31211. image: {
  31212. source: "./media/characters/faey/jaws.svg"
  31213. }
  31214. },
  31215. tongues: {
  31216. height: math.unit(2.01, "meters"),
  31217. name: "Tongues",
  31218. image: {
  31219. source: "./media/characters/faey/tongues.svg"
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Small",
  31226. height: math.unit(10, "meters"),
  31227. default: true
  31228. },
  31229. {
  31230. name: "Big",
  31231. height: math.unit(500000, "km")
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(7, "feet"),
  31240. weight: math.unit(275, "lb"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/roku/front.svg",
  31244. extra: 903 / 878,
  31245. bottom: 37 / 940
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Normal",
  31252. height: math.unit(7, "feet"),
  31253. default: true
  31254. },
  31255. {
  31256. name: "Macro",
  31257. height: math.unit(500, "feet")
  31258. },
  31259. {
  31260. name: "Megamacro",
  31261. height: math.unit(200, "miles")
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(6 + 2 / 12, "feet"),
  31270. weight: math.unit(150, "lb"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/lira/front.svg",
  31274. extra: 1727 / 1605,
  31275. bottom: 26 / 1753
  31276. }
  31277. },
  31278. back: {
  31279. height: math.unit(6 + 2 / 12, "feet"),
  31280. weight: math.unit(150, "lb"),
  31281. name: "Back",
  31282. image: {
  31283. source: "./media/characters/lira/back.svg",
  31284. extra: 1713/1621,
  31285. bottom: 20/1733
  31286. }
  31287. },
  31288. hand: {
  31289. height: math.unit(0.75, "feet"),
  31290. name: "Hand",
  31291. image: {
  31292. source: "./media/characters/lira/hand.svg"
  31293. }
  31294. },
  31295. maw: {
  31296. height: math.unit(0.65, "feet"),
  31297. name: "Maw",
  31298. image: {
  31299. source: "./media/characters/lira/maw.svg"
  31300. }
  31301. },
  31302. pawDigi: {
  31303. height: math.unit(1.6, "feet"),
  31304. name: "Paw Digi",
  31305. image: {
  31306. source: "./media/characters/lira/paw-digi.svg"
  31307. }
  31308. },
  31309. pawPlanti: {
  31310. height: math.unit(1.4, "feet"),
  31311. name: "Paw Planti",
  31312. image: {
  31313. source: "./media/characters/lira/paw-planti.svg"
  31314. }
  31315. },
  31316. },
  31317. [
  31318. {
  31319. name: "Normal",
  31320. height: math.unit(6 + 2 / 12, "feet"),
  31321. default: true
  31322. },
  31323. {
  31324. name: "Macro",
  31325. height: math.unit(100, "feet")
  31326. },
  31327. {
  31328. name: "Macro²",
  31329. height: math.unit(1600, "feet")
  31330. },
  31331. {
  31332. name: "Planetary",
  31333. height: math.unit(20, "earths")
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(6, "feet"),
  31342. weight: math.unit(150, "lb"),
  31343. name: "Front",
  31344. image: {
  31345. source: "./media/characters/hadjet/front.svg",
  31346. extra: 1480 / 1346,
  31347. bottom: 26 / 1506
  31348. }
  31349. },
  31350. frontNsfw: {
  31351. height: math.unit(6, "feet"),
  31352. weight: math.unit(150, "lb"),
  31353. name: "Front (NSFW)",
  31354. image: {
  31355. source: "./media/characters/hadjet/front-nsfw.svg",
  31356. extra: 1440 / 1358,
  31357. bottom: 52 / 1492
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Macro",
  31364. height: math.unit(10, "stories"),
  31365. default: true
  31366. },
  31367. {
  31368. name: "Megamacro",
  31369. height: math.unit(1.5, "miles")
  31370. },
  31371. {
  31372. name: "Megamacro+",
  31373. height: math.unit(5, "miles")
  31374. },
  31375. ]
  31376. ))
  31377. characterMakers.push(() => makeCharacter(
  31378. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31379. {
  31380. side: {
  31381. height: math.unit(106, "feet"),
  31382. weight: math.unit(500, "tonnes"),
  31383. name: "Side",
  31384. image: {
  31385. source: "./media/characters/kodran/side.svg",
  31386. extra: 553 / 480,
  31387. bottom: 33 / 586
  31388. }
  31389. },
  31390. front: {
  31391. height: math.unit(132, "feet"),
  31392. weight: math.unit(500, "tonnes"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/kodran/front.svg",
  31396. extra: 667 / 643,
  31397. bottom: 42 / 709
  31398. }
  31399. },
  31400. flying: {
  31401. height: math.unit(350, "feet"),
  31402. weight: math.unit(500, "tonnes"),
  31403. name: "Flying",
  31404. image: {
  31405. source: "./media/characters/kodran/flying.svg"
  31406. }
  31407. },
  31408. foot: {
  31409. height: math.unit(33, "feet"),
  31410. name: "Foot",
  31411. image: {
  31412. source: "./media/characters/kodran/foot.svg"
  31413. }
  31414. },
  31415. footFront: {
  31416. height: math.unit(19, "feet"),
  31417. name: "Foot (Front)",
  31418. image: {
  31419. source: "./media/characters/kodran/foot-front.svg",
  31420. extra: 261 / 261,
  31421. bottom: 91 / 352
  31422. }
  31423. },
  31424. headFront: {
  31425. height: math.unit(53, "feet"),
  31426. name: "Head (Front)",
  31427. image: {
  31428. source: "./media/characters/kodran/head-front.svg"
  31429. }
  31430. },
  31431. headSide: {
  31432. height: math.unit(65, "feet"),
  31433. name: "Head (Side)",
  31434. image: {
  31435. source: "./media/characters/kodran/head-side.svg"
  31436. }
  31437. },
  31438. throat: {
  31439. height: math.unit(79, "feet"),
  31440. name: "Throat",
  31441. image: {
  31442. source: "./media/characters/kodran/throat.svg"
  31443. }
  31444. },
  31445. },
  31446. [
  31447. {
  31448. name: "Large",
  31449. height: math.unit(106, "feet"),
  31450. default: true
  31451. },
  31452. ]
  31453. ))
  31454. characterMakers.push(() => makeCharacter(
  31455. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31456. {
  31457. side: {
  31458. height: math.unit(11, "feet"),
  31459. weight: math.unit(150, "lb"),
  31460. name: "Side",
  31461. image: {
  31462. source: "./media/characters/pyxaron/side.svg",
  31463. extra: 305 / 195,
  31464. bottom: 17 / 322
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(11, "feet"),
  31472. default: true
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(6, "feet"),
  31481. weight: math.unit(150, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/meep/front.svg",
  31485. extra: 88 / 80,
  31486. bottom: 6 / 94
  31487. }
  31488. },
  31489. },
  31490. [
  31491. {
  31492. name: "Fun Sized",
  31493. height: math.unit(2, "inches"),
  31494. default: true
  31495. },
  31496. {
  31497. name: "Friend Sized",
  31498. height: math.unit(8, "inches")
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(15, "feet"),
  31507. weight: math.unit(2500, "lb"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/holly-rabbit/front.svg",
  31511. extra: 1433 / 1233,
  31512. bottom: 125 / 1558
  31513. }
  31514. },
  31515. dick: {
  31516. height: math.unit(4.6, "feet"),
  31517. name: "Dick",
  31518. image: {
  31519. source: "./media/characters/holly-rabbit/dick.svg"
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Normal",
  31526. height: math.unit(15, "feet"),
  31527. default: true
  31528. },
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(250, "feet")
  31532. },
  31533. {
  31534. name: "Macro+",
  31535. height: math.unit(2500, "feet")
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31541. {
  31542. front: {
  31543. height: math.unit(3.02, "meters"),
  31544. weight: math.unit(500, "kg"),
  31545. name: "Front",
  31546. image: {
  31547. source: "./media/characters/drena/front.svg",
  31548. extra: 282 / 243,
  31549. bottom: 8 / 290
  31550. }
  31551. },
  31552. side: {
  31553. height: math.unit(3.02, "meters"),
  31554. weight: math.unit(500, "kg"),
  31555. name: "Side",
  31556. image: {
  31557. source: "./media/characters/drena/side.svg",
  31558. extra: 280 / 245,
  31559. bottom: 10 / 290
  31560. }
  31561. },
  31562. back: {
  31563. height: math.unit(3.02, "meters"),
  31564. weight: math.unit(500, "kg"),
  31565. name: "Back",
  31566. image: {
  31567. source: "./media/characters/drena/back.svg",
  31568. extra: 278 / 243,
  31569. bottom: 2 / 280
  31570. }
  31571. },
  31572. foot: {
  31573. height: math.unit(0.75, "meters"),
  31574. name: "Foot",
  31575. image: {
  31576. source: "./media/characters/drena/foot.svg"
  31577. }
  31578. },
  31579. maw: {
  31580. height: math.unit(0.82, "meters"),
  31581. name: "Maw",
  31582. image: {
  31583. source: "./media/characters/drena/maw.svg"
  31584. }
  31585. },
  31586. eating: {
  31587. height: math.unit(0.75, "meters"),
  31588. name: "Eating",
  31589. image: {
  31590. source: "./media/characters/drena/eating.svg"
  31591. }
  31592. },
  31593. rump: {
  31594. height: math.unit(0.93, "meters"),
  31595. name: "Rump",
  31596. image: {
  31597. source: "./media/characters/drena/rump.svg"
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Normal",
  31604. height: math.unit(3.02, "meters"),
  31605. default: true
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31611. {
  31612. front: {
  31613. height: math.unit(6 + 4 / 12, "feet"),
  31614. weight: math.unit(250, "lb"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/remmyzilla/front.svg",
  31618. extra: 4033 / 3588,
  31619. bottom: 123 / 4156
  31620. }
  31621. },
  31622. back: {
  31623. height: math.unit(6 + 4 / 12, "feet"),
  31624. weight: math.unit(250, "lb"),
  31625. name: "Back",
  31626. image: {
  31627. source: "./media/characters/remmyzilla/back.svg",
  31628. extra: 1696/1602,
  31629. bottom: 63/1759
  31630. }
  31631. },
  31632. paw: {
  31633. height: math.unit(1.73, "feet"),
  31634. name: "Paw",
  31635. image: {
  31636. source: "./media/characters/remmyzilla/paw.svg"
  31637. },
  31638. extraAttributes: {
  31639. "toeSize": {
  31640. name: "Toe Size",
  31641. power: 2,
  31642. type: "area",
  31643. base: math.unit(0.0035, "m^2")
  31644. },
  31645. "padSize": {
  31646. name: "Pad Size",
  31647. power: 2,
  31648. type: "area",
  31649. base: math.unit(0.015, "m^2")
  31650. },
  31651. "pawsize": {
  31652. name: "Paw Size",
  31653. power: 2,
  31654. type: "area",
  31655. base: math.unit(0.072, "m^2")
  31656. },
  31657. }
  31658. },
  31659. maw: {
  31660. height: math.unit(1.73, "feet"),
  31661. name: "Maw",
  31662. image: {
  31663. source: "./media/characters/remmyzilla/maw.svg"
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Normal",
  31670. height: math.unit(6 + 4 / 12, "feet")
  31671. },
  31672. {
  31673. name: "Minimacro",
  31674. height: math.unit(12 + 8 / 12, "feet")
  31675. },
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(640, "feet"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "Megamacro",
  31683. height: math.unit(6400, "feet")
  31684. },
  31685. {
  31686. name: "Gigamacro",
  31687. height: math.unit(64000, "miles")
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31693. {
  31694. front: {
  31695. height: math.unit(2.5, "meters"),
  31696. weight: math.unit(300, "lb"),
  31697. name: "Front",
  31698. image: {
  31699. source: "./media/characters/lawrence/front.svg",
  31700. extra: 357 / 335,
  31701. bottom: 30 / 387
  31702. }
  31703. },
  31704. back: {
  31705. height: math.unit(2.5, "meters"),
  31706. weight: math.unit(300, "lb"),
  31707. name: "Back",
  31708. image: {
  31709. source: "./media/characters/lawrence/back.svg",
  31710. extra: 357 / 338,
  31711. bottom: 16 / 373
  31712. }
  31713. },
  31714. head: {
  31715. height: math.unit(0.9, "meter"),
  31716. name: "Head",
  31717. image: {
  31718. source: "./media/characters/lawrence/head.svg"
  31719. }
  31720. },
  31721. maw: {
  31722. height: math.unit(0.7, "meter"),
  31723. name: "Maw",
  31724. image: {
  31725. source: "./media/characters/lawrence/maw.svg"
  31726. }
  31727. },
  31728. footBottom: {
  31729. height: math.unit(0.5, "meter"),
  31730. name: "Foot (Bottom)",
  31731. image: {
  31732. source: "./media/characters/lawrence/foot-bottom.svg"
  31733. }
  31734. },
  31735. footTop: {
  31736. height: math.unit(0.5, "meter"),
  31737. name: "Foot (Top)",
  31738. image: {
  31739. source: "./media/characters/lawrence/foot-top.svg"
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(2.5, "meters"),
  31747. default: true
  31748. },
  31749. {
  31750. name: "Macro",
  31751. height: math.unit(95, "meters")
  31752. },
  31753. {
  31754. name: "Megamacro",
  31755. height: math.unit(150, "km")
  31756. },
  31757. ]
  31758. ))
  31759. characterMakers.push(() => makeCharacter(
  31760. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31761. {
  31762. front: {
  31763. height: math.unit(4.2, "meters"),
  31764. preyCapacity: math.unit(50, "m^3"),
  31765. weight: math.unit(30, "tonnes"),
  31766. name: "Front",
  31767. image: {
  31768. source: "./media/characters/sydney/front.svg",
  31769. extra: 1177/1129,
  31770. bottom: 197/1374
  31771. },
  31772. extraAttributes: {
  31773. "length": {
  31774. name: "Length",
  31775. power: 1,
  31776. type: "length",
  31777. base: math.unit(21, "meters")
  31778. },
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Normal",
  31785. height: math.unit(4.2, "meters"),
  31786. default: true
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31792. {
  31793. back: {
  31794. height: math.unit(201, "feet"),
  31795. name: "Back",
  31796. image: {
  31797. source: "./media/characters/jessica/back.svg",
  31798. extra: 273 / 259,
  31799. bottom: 7 / 280
  31800. }
  31801. },
  31802. },
  31803. [
  31804. {
  31805. name: "Normal",
  31806. height: math.unit(201, "feet"),
  31807. default: true
  31808. },
  31809. {
  31810. name: "Megamacro",
  31811. height: math.unit(8, "miles")
  31812. },
  31813. ]
  31814. ))
  31815. characterMakers.push(() => makeCharacter(
  31816. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31817. {
  31818. side: {
  31819. height: math.unit(5.6, "m"),
  31820. weight: math.unit(8000, "kg"),
  31821. name: "Side",
  31822. image: {
  31823. source: "./media/characters/victoria/side.svg",
  31824. extra: 1542/1229,
  31825. bottom: 124/1666
  31826. }
  31827. },
  31828. maw: {
  31829. height: math.unit(7.14, "feet"),
  31830. name: "Maw",
  31831. image: {
  31832. source: "./media/characters/victoria/maw.svg"
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Normal",
  31839. height: math.unit(5.6, "m"),
  31840. default: true
  31841. },
  31842. ]
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31846. {
  31847. front: {
  31848. height: math.unit(5 + 6 / 12, "feet"),
  31849. name: "Front",
  31850. image: {
  31851. source: "./media/characters/cat/cat-front.svg",
  31852. extra: 1422/1262,
  31853. bottom: 61/1483
  31854. },
  31855. form: "cat",
  31856. default: true
  31857. },
  31858. back: {
  31859. height: math.unit(5 + 6 / 12, "feet"),
  31860. name: "Back",
  31861. image: {
  31862. source: "./media/characters/cat/cat-back.svg",
  31863. extra: 1466/1301,
  31864. bottom: 19/1485
  31865. },
  31866. form: "cat"
  31867. },
  31868. taur: {
  31869. height: math.unit(7, "feet"),
  31870. name: "Side",
  31871. image: {
  31872. source: "./media/characters/cat/taur-side.svg",
  31873. extra: 1389/1233,
  31874. bottom: 83/1472
  31875. },
  31876. form: "taur",
  31877. default: true
  31878. },
  31879. lucarioFront: {
  31880. height: math.unit(4, "feet"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/cat/lucario-front.svg",
  31884. extra: 1149/1019,
  31885. bottom: 84/1233
  31886. },
  31887. form: "lucario",
  31888. default: true
  31889. },
  31890. lucarioBack: {
  31891. height: math.unit(4, "feet"),
  31892. name: "Back",
  31893. image: {
  31894. source: "./media/characters/cat/lucario-back.svg",
  31895. extra: 1190/1059,
  31896. bottom: 33/1223
  31897. },
  31898. form: "lucario"
  31899. },
  31900. riolu_front: {
  31901. height: math.unit(2 + 4/12, "feet"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/cat/riolu-front.svg",
  31905. extra: 1104/956,
  31906. bottom: 70/1174
  31907. },
  31908. form: "riolu",
  31909. default: true
  31910. },
  31911. nickit: {
  31912. height: math.unit(2, "feet"),
  31913. name: "Side",
  31914. image: {
  31915. source: "./media/characters/cat/nickit-side.svg",
  31916. extra: 1087/852,
  31917. bottom: 67/1154
  31918. },
  31919. form: "nickit",
  31920. default: true
  31921. },
  31922. lopunnyFront: {
  31923. height: math.unit(5, "feet"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/cat/lopunny-front.svg",
  31927. extra: 1217/1078,
  31928. bottom: 23/1240
  31929. },
  31930. form: "lopunny",
  31931. default: true
  31932. },
  31933. lopunnyBack: {
  31934. height: math.unit(5, "feet"),
  31935. name: "Back",
  31936. image: {
  31937. source: "./media/characters/cat/lopunny-back.svg",
  31938. extra: 1205/1057,
  31939. bottom: 33/1238
  31940. },
  31941. form: "lopunny"
  31942. },
  31943. dog_front: {
  31944. height: math.unit(5 + 9/12, "feet"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/cat/dog-front.svg",
  31948. extra: 1403/1309,
  31949. bottom: 31/1434
  31950. },
  31951. form: "dog",
  31952. default: true
  31953. },
  31954. dog_back: {
  31955. height: math.unit(5 + 9/12, "feet"),
  31956. name: "Back",
  31957. image: {
  31958. source: "./media/characters/cat/dog-back.svg",
  31959. extra: 1393/1297,
  31960. bottom: 38/1431
  31961. },
  31962. form: "dog",
  31963. },
  31964. pikachu_front: {
  31965. height: math.unit(2.64, "feet"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/cat/pikachu-front.svg",
  31969. extra: 1224/958,
  31970. bottom: 34/1258
  31971. },
  31972. form: "pikachu",
  31973. default: true
  31974. },
  31975. pikachu_back: {
  31976. height: math.unit(2.64, "feet"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/cat/pikachu-back.svg",
  31980. extra: 1228/958,
  31981. bottom: 16/1244
  31982. },
  31983. form: "pikachu",
  31984. },
  31985. gigachuFront: {
  31986. height: math.unit(75, "feet"),
  31987. name: "Front",
  31988. image: {
  31989. source: "./media/characters/cat/gigachu-front.svg",
  31990. extra: 1239/1027,
  31991. bottom: 32/1271
  31992. },
  31993. form: "gigachu",
  31994. default: true
  31995. },
  31996. gigachuBack: {
  31997. height: math.unit(75, "feet"),
  31998. name: "Back",
  31999. image: {
  32000. source: "./media/characters/cat/gigachu-back.svg",
  32001. extra: 1229/1030,
  32002. bottom: 9/1238
  32003. },
  32004. form: "gigachu"
  32005. },
  32006. },
  32007. [
  32008. {
  32009. name: "Really small",
  32010. height: math.unit(1, "nm"),
  32011. allForms: true
  32012. },
  32013. {
  32014. name: "Micro",
  32015. height: math.unit(5, "inches"),
  32016. allForms: true
  32017. },
  32018. {
  32019. name: "Normal",
  32020. height: math.unit(5 + 6 / 12, "feet"),
  32021. default: true,
  32022. form: "cat"
  32023. },
  32024. {
  32025. name: "Normal",
  32026. height: math.unit(7, "feet"),
  32027. default: true,
  32028. form: "taur"
  32029. },
  32030. {
  32031. name: "Normal",
  32032. height: math.unit(4, "feet"),
  32033. default: true,
  32034. form: "lucario"
  32035. },
  32036. {
  32037. name: "Normal",
  32038. height: math.unit(2, "feet"),
  32039. default: true,
  32040. form: "nickit"
  32041. },
  32042. {
  32043. name: "Normal",
  32044. height: math.unit(5, "feet"),
  32045. default: true,
  32046. form: "lopunny"
  32047. },
  32048. {
  32049. name: "Normal",
  32050. height: math.unit(2 + 4/12, "feet"),
  32051. default: true,
  32052. form: "riolu"
  32053. },
  32054. {
  32055. name: "Normal",
  32056. height: math.unit(5 + 6 / 12, "feet"),
  32057. default: true,
  32058. form: "dog"
  32059. },
  32060. {
  32061. name: "Macro",
  32062. height: math.unit(50, "feet"),
  32063. allForms: true
  32064. },
  32065. {
  32066. name: "Normal",
  32067. height: math.unit(2.64, "feet"),
  32068. default: true,
  32069. form: "pikachu"
  32070. },
  32071. {
  32072. name: "Dynamax",
  32073. height: math.unit(75, "feet"),
  32074. form: "gigachu",
  32075. default: true
  32076. },
  32077. {
  32078. name: "Macro+",
  32079. height: math.unit(150, "feet"),
  32080. allForms: true
  32081. },
  32082. {
  32083. name: "Megamacro",
  32084. height: math.unit(100, "miles"),
  32085. allForms: true
  32086. },
  32087. ],
  32088. {
  32089. "cat": {
  32090. name: "Cat",
  32091. default: true
  32092. },
  32093. "taur": {
  32094. name: "Taur",
  32095. },
  32096. "lucario": {
  32097. name: "Lucario",
  32098. },
  32099. "riolu": {
  32100. name: "Riolu",
  32101. },
  32102. "nickit": {
  32103. name: "Nickit",
  32104. },
  32105. "lopunny": {
  32106. name: "Lopunny",
  32107. },
  32108. "dog": {
  32109. name: "Dog",
  32110. },
  32111. "pikachu": {
  32112. name: "Pikachu",
  32113. },
  32114. "gigachu": {
  32115. name: "Gigachu",
  32116. ignoreAllFormSizes: true
  32117. }
  32118. }
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(63.4, "meters"),
  32125. weight: math.unit(3.28349e+6, "kilograms"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/kirina-violet/front.svg",
  32129. extra: 2812 / 2725,
  32130. bottom: 0 / 2812
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(63.4, "meters"),
  32135. weight: math.unit(3.28349e+6, "kilograms"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/kirina-violet/back.svg",
  32139. extra: 2812 / 2725,
  32140. bottom: 0 / 2812
  32141. }
  32142. },
  32143. mouth: {
  32144. height: math.unit(4.35, "meters"),
  32145. name: "Mouth",
  32146. image: {
  32147. source: "./media/characters/kirina-violet/mouth.svg"
  32148. }
  32149. },
  32150. paw: {
  32151. height: math.unit(5.6, "meters"),
  32152. name: "Paw",
  32153. image: {
  32154. source: "./media/characters/kirina-violet/paw.svg"
  32155. }
  32156. },
  32157. tail: {
  32158. height: math.unit(18, "meters"),
  32159. name: "Tail",
  32160. image: {
  32161. source: "./media/characters/kirina-violet/tail.svg"
  32162. }
  32163. },
  32164. },
  32165. [
  32166. {
  32167. name: "Macro",
  32168. height: math.unit(63.4, "meters"),
  32169. default: true
  32170. },
  32171. ]
  32172. ))
  32173. characterMakers.push(() => makeCharacter(
  32174. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32175. {
  32176. front: {
  32177. height: math.unit(6, "feet"),
  32178. weight: math.unit(150, "lb"),
  32179. name: "Front",
  32180. image: {
  32181. source: "./media/characters/sfaiyan/front.svg",
  32182. extra: 999 / 978,
  32183. bottom: 5 / 1004
  32184. }
  32185. },
  32186. },
  32187. [
  32188. {
  32189. name: "Normal",
  32190. height: math.unit(1.82, "meters")
  32191. },
  32192. {
  32193. name: "Giant",
  32194. height: math.unit(2.27, "km"),
  32195. default: true
  32196. },
  32197. ]
  32198. ))
  32199. characterMakers.push(() => makeCharacter(
  32200. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32201. {
  32202. front: {
  32203. height: math.unit(179, "cm"),
  32204. weight: math.unit(100, "kg"),
  32205. name: "Front",
  32206. image: {
  32207. source: "./media/characters/raunehkeli/front.svg",
  32208. extra: 1934 / 1926,
  32209. bottom: 0 / 1934
  32210. }
  32211. },
  32212. },
  32213. [
  32214. {
  32215. name: "Normal",
  32216. height: math.unit(179, "cm")
  32217. },
  32218. {
  32219. name: "Maximum",
  32220. height: math.unit(575, "meters"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32227. {
  32228. dressed: {
  32229. height: math.unit(6 + 2/12, "feet"),
  32230. weight: math.unit(150, "lb"),
  32231. name: "Dressed",
  32232. image: {
  32233. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32234. extra: 2620/2496,
  32235. bottom: 66/2686
  32236. }
  32237. },
  32238. nude: {
  32239. height: math.unit(6 + 2/12, "feet"),
  32240. weight: math.unit(150, "lb"),
  32241. name: "Nude",
  32242. image: {
  32243. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32244. extra: 2620/2496,
  32245. bottom: 66/2686
  32246. }
  32247. },
  32248. },
  32249. [
  32250. {
  32251. name: "Normal",
  32252. height: math.unit(6 + 2 / 12, "feet")
  32253. },
  32254. {
  32255. name: "Max Height",
  32256. height: math.unit(1181, "feet"),
  32257. default: true
  32258. },
  32259. ]
  32260. ))
  32261. characterMakers.push(() => makeCharacter(
  32262. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32263. {
  32264. front: {
  32265. height: math.unit(5 + 6 / 12, "feet"),
  32266. weight: math.unit(108, "lb"),
  32267. name: "Front",
  32268. image: {
  32269. source: "./media/characters/lilith-zott/front.svg",
  32270. extra: 2415/2133,
  32271. bottom: 193/2608
  32272. }
  32273. },
  32274. },
  32275. [
  32276. {
  32277. name: "Base Height",
  32278. height: math.unit(5 + 6 / 12, "feet")
  32279. },
  32280. {
  32281. name: "Preferred Height",
  32282. height: math.unit(200, "feet")
  32283. },
  32284. {
  32285. name: "Max Height",
  32286. height: math.unit(1030, "feet"),
  32287. default: true
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32293. {
  32294. super: {
  32295. height: math.unit(6 + 2/12, "feet"),
  32296. weight: math.unit(150, "lb"),
  32297. name: "Super",
  32298. image: {
  32299. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32300. extra: 2555/2387,
  32301. bottom: 50/2605
  32302. }
  32303. },
  32304. casual: {
  32305. height: math.unit(6 + 2/12, "feet"),
  32306. weight: math.unit(150, "lb"),
  32307. name: "Casual",
  32308. image: {
  32309. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32310. extra: 2555/2387,
  32311. bottom: 50/2605
  32312. }
  32313. },
  32314. hand: {
  32315. height: math.unit(1.08, "feet"),
  32316. name: "Hand",
  32317. image: {
  32318. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32319. }
  32320. },
  32321. paw: {
  32322. height: math.unit(1.33, "feet"),
  32323. name: "Paw",
  32324. image: {
  32325. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Normal",
  32332. height: math.unit(6 + 2/12, "feet")
  32333. },
  32334. {
  32335. name: "Preferred Height",
  32336. height: math.unit(220, "feet")
  32337. },
  32338. {
  32339. name: "Max Height",
  32340. height: math.unit(1100, "feet"),
  32341. default: true
  32342. },
  32343. ]
  32344. ))
  32345. characterMakers.push(() => makeCharacter(
  32346. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32347. {
  32348. front: {
  32349. height: math.unit(100, "miles"),
  32350. name: "Front",
  32351. image: {
  32352. source: "./media/characters/sona/front.svg",
  32353. extra: 2433 / 2201,
  32354. bottom: 53 / 2486
  32355. }
  32356. },
  32357. foot: {
  32358. height: math.unit(16.1, "miles"),
  32359. name: "Foot",
  32360. image: {
  32361. source: "./media/characters/sona/foot.svg"
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Macro",
  32368. height: math.unit(100, "miles"),
  32369. default: true
  32370. },
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Bailey", species: ["wolf"], 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/bailey/front.svg",
  32382. extra: 1778 / 1724,
  32383. bottom: 30 / 1808
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Micro",
  32390. height: math.unit(4, "inches")
  32391. },
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(5 + 5 / 12, "feet"),
  32395. default: true
  32396. },
  32397. {
  32398. name: "Macro",
  32399. height: math.unit(250, "feet")
  32400. },
  32401. {
  32402. name: "Megamacro",
  32403. height: math.unit(100, "miles")
  32404. },
  32405. ]
  32406. ))
  32407. characterMakers.push(() => makeCharacter(
  32408. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32409. {
  32410. front: {
  32411. height: math.unit(5 + 2 / 12, "feet"),
  32412. weight: math.unit(120, "lb"),
  32413. name: "Front",
  32414. image: {
  32415. source: "./media/characters/snaps/front.svg",
  32416. extra: 2370 / 2177,
  32417. bottom: 48 / 2418
  32418. }
  32419. },
  32420. back: {
  32421. height: math.unit(5 + 2 / 12, "feet"),
  32422. weight: math.unit(120, "lb"),
  32423. name: "Back",
  32424. image: {
  32425. source: "./media/characters/snaps/back.svg",
  32426. extra: 2408 / 2258,
  32427. bottom: 15 / 2423
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Micro",
  32434. height: math.unit(9, "inches")
  32435. },
  32436. {
  32437. name: "Normal",
  32438. height: math.unit(5 + 2 / 12, "feet"),
  32439. default: true
  32440. },
  32441. {
  32442. name: "Mini Macro",
  32443. height: math.unit(10, "feet")
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32449. {
  32450. front: {
  32451. height: math.unit(1.8, "meters"),
  32452. weight: math.unit(85, "kg"),
  32453. name: "Front",
  32454. image: {
  32455. source: "./media/characters/azteck/front.svg",
  32456. extra: 2815 / 2625,
  32457. bottom: 89 / 2904
  32458. }
  32459. },
  32460. back: {
  32461. height: math.unit(1.8, "meters"),
  32462. weight: math.unit(85, "kg"),
  32463. name: "Back",
  32464. image: {
  32465. source: "./media/characters/azteck/back.svg",
  32466. extra: 2856 / 2648,
  32467. bottom: 85 / 2941
  32468. }
  32469. },
  32470. frontDressed: {
  32471. height: math.unit(1.8, "meters"),
  32472. weight: math.unit(85, "kg"),
  32473. name: "Front (Dressed)",
  32474. image: {
  32475. source: "./media/characters/azteck/front-dressed.svg",
  32476. extra: 2147 / 2003,
  32477. bottom: 68 / 2215
  32478. }
  32479. },
  32480. head: {
  32481. height: math.unit(0.47, "meters"),
  32482. weight: math.unit(85, "kg"),
  32483. name: "Head",
  32484. image: {
  32485. source: "./media/characters/azteck/head.svg"
  32486. }
  32487. },
  32488. },
  32489. [
  32490. {
  32491. name: "Bite sized",
  32492. height: math.unit(16, "cm")
  32493. },
  32494. {
  32495. name: "Normal",
  32496. height: math.unit(1.8, "meters"),
  32497. default: true
  32498. },
  32499. ]
  32500. ))
  32501. characterMakers.push(() => makeCharacter(
  32502. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32503. {
  32504. front: {
  32505. height: math.unit(6, "feet"),
  32506. weight: math.unit(150, "lb"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/pidge/front.svg",
  32510. extra: 1936/1820,
  32511. bottom: 0/1936
  32512. }
  32513. },
  32514. back: {
  32515. height: math.unit(6, "feet"),
  32516. weight: math.unit(150, "lb"),
  32517. name: "Back",
  32518. image: {
  32519. source: "./media/characters/pidge/back.svg",
  32520. extra: 1938/1843,
  32521. bottom: 0/1938
  32522. }
  32523. },
  32524. casual: {
  32525. height: math.unit(6, "feet"),
  32526. weight: math.unit(150, "lb"),
  32527. name: "Casual",
  32528. image: {
  32529. source: "./media/characters/pidge/casual.svg",
  32530. extra: 1936/1820,
  32531. bottom: 0/1936
  32532. }
  32533. },
  32534. tech: {
  32535. height: math.unit(6, "feet"),
  32536. weight: math.unit(150, "lb"),
  32537. name: "Tech",
  32538. image: {
  32539. source: "./media/characters/pidge/tech.svg",
  32540. extra: 1802/1682,
  32541. bottom: 0/1802
  32542. }
  32543. },
  32544. head: {
  32545. height: math.unit(1.61, "feet"),
  32546. name: "Head",
  32547. image: {
  32548. source: "./media/characters/pidge/head.svg"
  32549. }
  32550. },
  32551. collar: {
  32552. height: math.unit(0.82, "feet"),
  32553. name: "Collar",
  32554. image: {
  32555. source: "./media/characters/pidge/collar.svg"
  32556. }
  32557. },
  32558. },
  32559. [
  32560. {
  32561. name: "Macro",
  32562. height: math.unit(2, "mile"),
  32563. default: true
  32564. },
  32565. {
  32566. name: "PUPPY",
  32567. height: math.unit(20, "miles")
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32573. {
  32574. front: {
  32575. height: math.unit(6, "feet"),
  32576. weight: math.unit(150, "lb"),
  32577. name: "Front",
  32578. image: {
  32579. source: "./media/characters/en/front.svg",
  32580. extra: 1697 / 1563,
  32581. bottom: 103 / 1800
  32582. }
  32583. },
  32584. back: {
  32585. height: math.unit(6, "feet"),
  32586. weight: math.unit(150, "lb"),
  32587. name: "Back",
  32588. image: {
  32589. source: "./media/characters/en/back.svg",
  32590. extra: 1700 / 1570,
  32591. bottom: 51 / 1751
  32592. }
  32593. },
  32594. frontDressed: {
  32595. height: math.unit(6, "feet"),
  32596. weight: math.unit(150, "lb"),
  32597. name: "Front (Dressed)",
  32598. image: {
  32599. source: "./media/characters/en/front-dressed.svg",
  32600. extra: 1697 / 1563,
  32601. bottom: 103 / 1800
  32602. }
  32603. },
  32604. backDressed: {
  32605. height: math.unit(6, "feet"),
  32606. weight: math.unit(150, "lb"),
  32607. name: "Back (Dressed)",
  32608. image: {
  32609. source: "./media/characters/en/back-dressed.svg",
  32610. extra: 1700 / 1570,
  32611. bottom: 51 / 1751
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "Macro",
  32618. height: math.unit(210, "feet"),
  32619. default: true
  32620. },
  32621. ]
  32622. ))
  32623. characterMakers.push(() => makeCharacter(
  32624. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32625. {
  32626. front: {
  32627. height: math.unit(6, "feet"),
  32628. weight: math.unit(150, "lb"),
  32629. name: "Front",
  32630. image: {
  32631. source: "./media/characters/haze-orris/front.svg",
  32632. extra: 3975 / 3525,
  32633. bottom: 137 / 4112
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Micro",
  32640. height: math.unit(150, "mm"),
  32641. default: true
  32642. },
  32643. ]
  32644. ))
  32645. characterMakers.push(() => makeCharacter(
  32646. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32647. {
  32648. front: {
  32649. height: math.unit(6, "feet"),
  32650. weight: math.unit(150, "lb"),
  32651. name: "Front",
  32652. image: {
  32653. source: "./media/characters/casselene-yaro/front.svg",
  32654. extra: 4721 / 4541,
  32655. bottom: 82 / 4803
  32656. }
  32657. },
  32658. back: {
  32659. height: math.unit(6, "feet"),
  32660. weight: math.unit(150, "lb"),
  32661. name: "Back",
  32662. image: {
  32663. source: "./media/characters/casselene-yaro/back.svg",
  32664. extra: 4569 / 4377,
  32665. bottom: 69 / 4638
  32666. }
  32667. },
  32668. dressed: {
  32669. height: math.unit(6, "feet"),
  32670. weight: math.unit(150, "lb"),
  32671. name: "Dressed",
  32672. image: {
  32673. source: "./media/characters/casselene-yaro/dressed.svg",
  32674. extra: 4721 / 4541,
  32675. bottom: 82 / 4803
  32676. }
  32677. },
  32678. maw: {
  32679. height: math.unit(1, "feet"),
  32680. name: "Maw",
  32681. image: {
  32682. source: "./media/characters/casselene-yaro/maw.svg"
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Macro",
  32689. height: math.unit(190, "feet"),
  32690. default: true
  32691. },
  32692. ]
  32693. ))
  32694. characterMakers.push(() => makeCharacter(
  32695. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32696. {
  32697. front: {
  32698. height: math.unit(10, "feet"),
  32699. weight: math.unit(15015, "lb"),
  32700. name: "Front",
  32701. image: {
  32702. source: "./media/characters/platine/front.svg",
  32703. extra: 1741/1650,
  32704. bottom: 84/1825
  32705. }
  32706. },
  32707. side: {
  32708. height: math.unit(10, "feet"),
  32709. weight: math.unit(15015, "lb"),
  32710. name: "Side",
  32711. image: {
  32712. source: "./media/characters/platine/side.svg",
  32713. extra: 1790/1705,
  32714. bottom: 29/1819
  32715. }
  32716. },
  32717. },
  32718. [
  32719. {
  32720. name: "Normal",
  32721. height: math.unit(10, "feet"),
  32722. default: true
  32723. },
  32724. {
  32725. name: "Macro",
  32726. height: math.unit(100, "feet")
  32727. },
  32728. {
  32729. name: "Megamacro",
  32730. height: math.unit(1000, "feet")
  32731. },
  32732. ]
  32733. ))
  32734. characterMakers.push(() => makeCharacter(
  32735. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32736. {
  32737. front: {
  32738. height: math.unit(15 + 5 / 12, "feet"),
  32739. weight: math.unit(4600, "lb"),
  32740. name: "Front",
  32741. image: {
  32742. source: "./media/characters/neapolitan-ananassa/front.svg",
  32743. extra: 2903 / 2736,
  32744. bottom: 0 / 2903
  32745. }
  32746. },
  32747. side: {
  32748. height: math.unit(15 + 5 / 12, "feet"),
  32749. weight: math.unit(4600, "lb"),
  32750. name: "Side",
  32751. image: {
  32752. source: "./media/characters/neapolitan-ananassa/side.svg",
  32753. extra: 2925 / 2719,
  32754. bottom: 0 / 2925
  32755. }
  32756. },
  32757. back: {
  32758. height: math.unit(15 + 5 / 12, "feet"),
  32759. weight: math.unit(4600, "lb"),
  32760. name: "Back",
  32761. image: {
  32762. source: "./media/characters/neapolitan-ananassa/back.svg",
  32763. extra: 2903 / 2736,
  32764. bottom: 0 / 2903
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Normal",
  32771. height: math.unit(15 + 5 / 12, "feet"),
  32772. default: true
  32773. },
  32774. {
  32775. name: "Post-Millenium",
  32776. height: math.unit(35 + 5 / 12, "feet")
  32777. },
  32778. {
  32779. name: "Post-Era",
  32780. height: math.unit(450 + 5 / 12, "feet")
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(300, "meters"),
  32789. weight: math.unit(125000, "tonnes"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/pazuzu/front.svg",
  32793. extra: 877 / 794,
  32794. bottom: 47 / 924
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Macro",
  32801. height: math.unit(300, "meters"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32808. {
  32809. side: {
  32810. height: math.unit(10 + 7 / 12, "feet"),
  32811. weight: math.unit(2.5, "tons"),
  32812. name: "Side",
  32813. image: {
  32814. source: "./media/characters/aasha/side.svg",
  32815. extra: 1345 / 1245,
  32816. bottom: 111 / 1456
  32817. }
  32818. },
  32819. back: {
  32820. height: math.unit(10 + 7 / 12, "feet"),
  32821. weight: math.unit(2.5, "tons"),
  32822. name: "Back",
  32823. image: {
  32824. source: "./media/characters/aasha/back.svg",
  32825. extra: 1133 / 1057,
  32826. bottom: 257 / 1390
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(10 + 7 / 12, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32840. {
  32841. front: {
  32842. height: math.unit(6 + 3 / 12, "feet"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/nevan/front.svg",
  32846. extra: 704 / 704,
  32847. bottom: 28 / 732
  32848. }
  32849. },
  32850. back: {
  32851. height: math.unit(6 + 3 / 12, "feet"),
  32852. name: "Back",
  32853. image: {
  32854. source: "./media/characters/nevan/back.svg",
  32855. extra: 714 / 714,
  32856. bottom: 21 / 735
  32857. }
  32858. },
  32859. frontFlaccid: {
  32860. height: math.unit(6 + 3 / 12, "feet"),
  32861. name: "Front (Flaccid)",
  32862. image: {
  32863. source: "./media/characters/nevan/front-flaccid.svg",
  32864. extra: 704 / 704,
  32865. bottom: 28 / 732
  32866. }
  32867. },
  32868. frontErect: {
  32869. height: math.unit(6 + 3 / 12, "feet"),
  32870. name: "Front (Erect)",
  32871. image: {
  32872. source: "./media/characters/nevan/front-erect.svg",
  32873. extra: 704 / 704,
  32874. bottom: 28 / 732
  32875. }
  32876. },
  32877. backFlaccid: {
  32878. height: math.unit(6 + 3 / 12, "feet"),
  32879. name: "Back (Flaccid)",
  32880. image: {
  32881. source: "./media/characters/nevan/back-flaccid.svg",
  32882. extra: 714 / 714,
  32883. bottom: 21 / 735
  32884. }
  32885. },
  32886. },
  32887. [
  32888. {
  32889. name: "Normal",
  32890. height: math.unit(6 + 3 / 12, "feet"),
  32891. default: true
  32892. },
  32893. ]
  32894. ))
  32895. characterMakers.push(() => makeCharacter(
  32896. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32897. {
  32898. front: {
  32899. height: math.unit(4, "feet"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/arhan/front.svg",
  32903. extra: 3368 / 3133,
  32904. bottom: 0 / 3368
  32905. }
  32906. },
  32907. side: {
  32908. height: math.unit(4, "feet"),
  32909. name: "Side",
  32910. image: {
  32911. source: "./media/characters/arhan/side.svg",
  32912. extra: 3347 / 3105,
  32913. bottom: 0 / 3347
  32914. }
  32915. },
  32916. tongue: {
  32917. height: math.unit(1.42, "feet"),
  32918. name: "Tongue",
  32919. image: {
  32920. source: "./media/characters/arhan/tongue.svg"
  32921. }
  32922. },
  32923. head: {
  32924. height: math.unit(0.85, "feet"),
  32925. name: "Head",
  32926. image: {
  32927. source: "./media/characters/arhan/head.svg"
  32928. }
  32929. },
  32930. },
  32931. [
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(4, "feet"),
  32935. default: true
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32941. {
  32942. front: {
  32943. height: math.unit(5 + 7.5 / 12, "feet"),
  32944. weight: math.unit(120, "lb"),
  32945. name: "Front",
  32946. image: {
  32947. source: "./media/characters/digi-duncan/front.svg",
  32948. extra: 330 / 326,
  32949. bottom: 16 / 346
  32950. }
  32951. },
  32952. side: {
  32953. height: math.unit(5 + 7.5 / 12, "feet"),
  32954. weight: math.unit(120, "lb"),
  32955. name: "Side",
  32956. image: {
  32957. source: "./media/characters/digi-duncan/side.svg",
  32958. extra: 341 / 337,
  32959. bottom: 1 / 342
  32960. }
  32961. },
  32962. back: {
  32963. height: math.unit(5 + 7.5 / 12, "feet"),
  32964. weight: math.unit(120, "lb"),
  32965. name: "Back",
  32966. image: {
  32967. source: "./media/characters/digi-duncan/back.svg",
  32968. extra: 330 / 326,
  32969. bottom: 12 / 342
  32970. }
  32971. },
  32972. },
  32973. [
  32974. {
  32975. name: "Speck",
  32976. height: math.unit(0.25, "mm")
  32977. },
  32978. {
  32979. name: "Micro",
  32980. height: math.unit(5, "mm")
  32981. },
  32982. {
  32983. name: "Tiny",
  32984. height: math.unit(0.5, "inches"),
  32985. default: true
  32986. },
  32987. {
  32988. name: "Human",
  32989. height: math.unit(5 + 7.5 / 12, "feet")
  32990. },
  32991. {
  32992. name: "Minigiant",
  32993. height: math.unit(8 + 5.25, "feet")
  32994. },
  32995. {
  32996. name: "Giant",
  32997. height: math.unit(2000, "feet")
  32998. },
  32999. {
  33000. name: "Mega",
  33001. height: math.unit(371.1, "miles")
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33007. {
  33008. front: {
  33009. height: math.unit(2, "meters"),
  33010. weight: math.unit(350, "kg"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33014. extra: 898 / 838,
  33015. bottom: 9 / 907
  33016. }
  33017. },
  33018. },
  33019. [
  33020. {
  33021. name: "Micro",
  33022. height: math.unit(8, "meters")
  33023. },
  33024. {
  33025. name: "Normal",
  33026. height: math.unit(50, "meters"),
  33027. default: true
  33028. },
  33029. {
  33030. name: "Macro",
  33031. height: math.unit(500, "meters")
  33032. },
  33033. ]
  33034. ))
  33035. characterMakers.push(() => makeCharacter(
  33036. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33037. {
  33038. front: {
  33039. height: math.unit(6 + 6 / 12, "feet"),
  33040. name: "Front",
  33041. image: {
  33042. source: "./media/characters/khardesh/front.svg",
  33043. extra: 1788/1596,
  33044. bottom: 66/1854
  33045. }
  33046. },
  33047. back: {
  33048. height: math.unit(6 + 6 / 12, "feet"),
  33049. name: "Back",
  33050. image: {
  33051. source: "./media/characters/khardesh/back.svg",
  33052. extra: 1781/1584,
  33053. bottom: 68/1849
  33054. }
  33055. },
  33056. },
  33057. [
  33058. {
  33059. name: "Normal",
  33060. height: math.unit(6 + 6 / 12, "feet"),
  33061. default: true
  33062. },
  33063. {
  33064. name: "Normal+",
  33065. height: math.unit(4, "meters")
  33066. },
  33067. {
  33068. name: "Macro",
  33069. height: math.unit(50, "meters")
  33070. },
  33071. {
  33072. name: "Macro+",
  33073. height: math.unit(100, "meters")
  33074. },
  33075. {
  33076. name: "Megamacro",
  33077. height: math.unit(20, "km")
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33083. {
  33084. front: {
  33085. height: math.unit(6, "feet"),
  33086. weight: math.unit(150, "lb"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/kosho/front.svg",
  33090. extra: 1847 / 1847,
  33091. bottom: 86 / 1933
  33092. }
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Second-stage micro",
  33098. height: math.unit(0.5, "inches")
  33099. },
  33100. {
  33101. name: "First-stage micro",
  33102. height: math.unit(6, "inches")
  33103. },
  33104. {
  33105. name: "Normal",
  33106. height: math.unit(6, "feet"),
  33107. default: true
  33108. },
  33109. {
  33110. name: "First-stage macro",
  33111. height: math.unit(72, "feet")
  33112. },
  33113. {
  33114. name: "Second-stage macro",
  33115. height: math.unit(864, "feet")
  33116. },
  33117. ]
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33121. {
  33122. normal: {
  33123. height: math.unit(4 + 6 / 12, "feet"),
  33124. name: "Normal",
  33125. image: {
  33126. source: "./media/characters/hydra/normal.svg",
  33127. extra: 2833 / 2634,
  33128. bottom: 68 / 2901
  33129. }
  33130. },
  33131. smol: {
  33132. height: math.unit(0.705, "inches"),
  33133. name: "Smol",
  33134. image: {
  33135. source: "./media/characters/hydra/smol.svg",
  33136. extra: 2715 / 2540,
  33137. bottom: 0 / 2715
  33138. }
  33139. },
  33140. },
  33141. [
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(4 + 6 / 12, "feet"),
  33145. default: true
  33146. }
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33151. {
  33152. front: {
  33153. height: math.unit(0.6, "cm"),
  33154. name: "Front",
  33155. image: {
  33156. source: "./media/characters/daz/front.svg",
  33157. extra: 1682 / 1164,
  33158. bottom: 42 / 1724
  33159. }
  33160. },
  33161. },
  33162. [
  33163. {
  33164. name: "Normal",
  33165. height: math.unit(0.6, "cm"),
  33166. default: true
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(6, "feet"),
  33175. weight: math.unit(235, "lb"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/theo-pangolin/front.svg",
  33179. extra: 1996 / 1969,
  33180. bottom: 115 / 2111
  33181. }
  33182. },
  33183. back: {
  33184. height: math.unit(6, "feet"),
  33185. weight: math.unit(235, "lb"),
  33186. name: "Back",
  33187. image: {
  33188. source: "./media/characters/theo-pangolin/back.svg",
  33189. extra: 1979 / 1979,
  33190. bottom: 40 / 2019
  33191. }
  33192. },
  33193. feral: {
  33194. height: math.unit(2, "feet"),
  33195. weight: math.unit(30, "lb"),
  33196. name: "Feral",
  33197. image: {
  33198. source: "./media/characters/theo-pangolin/feral.svg",
  33199. extra: 803 / 791,
  33200. bottom: 181 / 984
  33201. }
  33202. },
  33203. footFive: {
  33204. height: math.unit(1.43, "feet"),
  33205. name: "Foot (Five Toes)",
  33206. image: {
  33207. source: "./media/characters/theo-pangolin/foot-five.svg"
  33208. }
  33209. },
  33210. footFour: {
  33211. height: math.unit(1.43, "feet"),
  33212. name: "Foot (Four Toes)",
  33213. image: {
  33214. source: "./media/characters/theo-pangolin/foot-four.svg"
  33215. }
  33216. },
  33217. handFour: {
  33218. height: math.unit(0.81, "feet"),
  33219. name: "Hand (Four Fingers)",
  33220. image: {
  33221. source: "./media/characters/theo-pangolin/hand-four.svg"
  33222. }
  33223. },
  33224. handThree: {
  33225. height: math.unit(0.81, "feet"),
  33226. name: "Hand (Three Fingers)",
  33227. image: {
  33228. source: "./media/characters/theo-pangolin/hand-three.svg"
  33229. }
  33230. },
  33231. headFront: {
  33232. height: math.unit(1.37, "feet"),
  33233. name: "Head (Front)",
  33234. image: {
  33235. source: "./media/characters/theo-pangolin/head-front.svg"
  33236. }
  33237. },
  33238. headSide: {
  33239. height: math.unit(1.43, "feet"),
  33240. name: "Head (Side)",
  33241. image: {
  33242. source: "./media/characters/theo-pangolin/head-side.svg"
  33243. }
  33244. },
  33245. tongue: {
  33246. height: math.unit(2.29, "feet"),
  33247. name: "Tongue",
  33248. image: {
  33249. source: "./media/characters/theo-pangolin/tongue.svg"
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(6, "feet")
  33257. },
  33258. {
  33259. name: "Macro",
  33260. height: math.unit(400, "feet"),
  33261. default: true
  33262. },
  33263. ]
  33264. ))
  33265. characterMakers.push(() => makeCharacter(
  33266. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33267. {
  33268. front: {
  33269. height: math.unit(6, "inches"),
  33270. weight: math.unit(0.036, "kg"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/renée/front.svg",
  33274. extra: 900 / 886,
  33275. bottom: 8 / 908
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Nano",
  33282. height: math.unit(1, "nm")
  33283. },
  33284. {
  33285. name: "Micro",
  33286. height: math.unit(1, "mm")
  33287. },
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(6, "inches")
  33291. },
  33292. {
  33293. name: "Macro",
  33294. height: math.unit(2000, "feet"),
  33295. default: true
  33296. },
  33297. {
  33298. name: "Megamacro",
  33299. height: math.unit(2, "km")
  33300. },
  33301. {
  33302. name: "Gigamacro",
  33303. height: math.unit(2000, "km")
  33304. },
  33305. {
  33306. name: "Teramacro",
  33307. height: math.unit(250000, "km")
  33308. },
  33309. ]
  33310. ))
  33311. characterMakers.push(() => makeCharacter(
  33312. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33313. {
  33314. front: {
  33315. height: math.unit(4, "meters"),
  33316. weight: math.unit(150, "kg"),
  33317. name: "Front",
  33318. image: {
  33319. source: "./media/characters/caledvwlch/front.svg",
  33320. extra: 1757/1537,
  33321. bottom: 31/1788
  33322. }
  33323. },
  33324. side: {
  33325. height: math.unit(4, "meters"),
  33326. weight: math.unit(150, "kg"),
  33327. name: "Side",
  33328. image: {
  33329. source: "./media/characters/caledvwlch/side.svg",
  33330. extra: 1605 / 1536,
  33331. bottom: 31 / 1636
  33332. }
  33333. },
  33334. back: {
  33335. height: math.unit(4, "meters"),
  33336. weight: math.unit(150, "kg"),
  33337. name: "Back",
  33338. image: {
  33339. source: "./media/characters/caledvwlch/back.svg",
  33340. extra: 1635 / 1565,
  33341. bottom: 27 / 1662
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "\"Incognito\"",
  33348. height: math.unit(4, "meters")
  33349. },
  33350. {
  33351. name: "Small rampage",
  33352. height: math.unit(600, "meters")
  33353. },
  33354. {
  33355. name: "Mega",
  33356. height: math.unit(30, "km")
  33357. },
  33358. {
  33359. name: "Home-size",
  33360. height: math.unit(50, "km"),
  33361. default: true
  33362. },
  33363. {
  33364. name: "Giga",
  33365. height: math.unit(300, "km")
  33366. },
  33367. {
  33368. name: "Lounging",
  33369. height: math.unit(11000, "km")
  33370. },
  33371. {
  33372. name: "Planet snacking",
  33373. height: math.unit(2000000, "km")
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33379. {
  33380. front: {
  33381. height: math.unit(6, "feet"),
  33382. weight: math.unit(215, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/sapphire-svell/front.svg",
  33386. extra: 495 / 455,
  33387. bottom: 20 / 515
  33388. }
  33389. },
  33390. back: {
  33391. height: math.unit(6, "feet"),
  33392. weight: math.unit(216, "lb"),
  33393. name: "Back",
  33394. image: {
  33395. source: "./media/characters/sapphire-svell/back.svg",
  33396. extra: 497 / 477,
  33397. bottom: 7 / 504
  33398. }
  33399. },
  33400. maw: {
  33401. height: math.unit(1.57, "feet"),
  33402. name: "Maw",
  33403. image: {
  33404. source: "./media/characters/sapphire-svell/maw.svg"
  33405. }
  33406. },
  33407. foot: {
  33408. height: math.unit(1.07, "feet"),
  33409. name: "Foot",
  33410. image: {
  33411. source: "./media/characters/sapphire-svell/foot.svg"
  33412. }
  33413. },
  33414. toering: {
  33415. height: math.unit(1.7, "inch"),
  33416. name: "Toering",
  33417. image: {
  33418. source: "./media/characters/sapphire-svell/toering.svg"
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(300, "feet"),
  33426. default: true
  33427. },
  33428. {
  33429. name: "Augmented",
  33430. height: math.unit(1250, "feet")
  33431. },
  33432. {
  33433. name: "Unleashed",
  33434. height: math.unit(3000, "feet")
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33440. {
  33441. side: {
  33442. height: math.unit(2 + 3 / 12, "feet"),
  33443. weight: math.unit(110, "lb"),
  33444. name: "Side",
  33445. image: {
  33446. source: "./media/characters/glitch-flux/side.svg",
  33447. extra: 997 / 805,
  33448. bottom: 20 / 1017
  33449. }
  33450. },
  33451. },
  33452. [
  33453. {
  33454. name: "Normal",
  33455. height: math.unit(2 + 3 / 12, "feet"),
  33456. default: true
  33457. },
  33458. ]
  33459. ))
  33460. characterMakers.push(() => makeCharacter(
  33461. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33462. {
  33463. front: {
  33464. height: math.unit(4, "meters"),
  33465. name: "Front",
  33466. image: {
  33467. source: "./media/characters/mid/front.svg",
  33468. extra: 507 / 476,
  33469. bottom: 17 / 524
  33470. }
  33471. },
  33472. back: {
  33473. height: math.unit(4, "meters"),
  33474. name: "Back",
  33475. image: {
  33476. source: "./media/characters/mid/back.svg",
  33477. extra: 519 / 487,
  33478. bottom: 7 / 526
  33479. }
  33480. },
  33481. stuck: {
  33482. height: math.unit(2.2, "meters"),
  33483. name: "Stuck",
  33484. image: {
  33485. source: "./media/characters/mid/stuck.svg",
  33486. extra: 1951 / 1869,
  33487. bottom: 88 / 2039
  33488. }
  33489. }
  33490. },
  33491. [
  33492. {
  33493. name: "Normal",
  33494. height: math.unit(4, "meters"),
  33495. default: true
  33496. },
  33497. {
  33498. name: "Big",
  33499. height: math.unit(10, "meters")
  33500. },
  33501. {
  33502. name: "Macro",
  33503. height: math.unit(800, "meters")
  33504. },
  33505. {
  33506. name: "Megamacro",
  33507. height: math.unit(100, "km")
  33508. },
  33509. {
  33510. name: "Overgrown",
  33511. height: math.unit(1, "parsec")
  33512. },
  33513. ]
  33514. ))
  33515. characterMakers.push(() => makeCharacter(
  33516. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33517. {
  33518. front: {
  33519. height: math.unit(2.5, "meters"),
  33520. weight: math.unit(225, "kg"),
  33521. name: "Front",
  33522. image: {
  33523. source: "./media/characters/iris/front.svg",
  33524. extra: 3348 / 3251,
  33525. bottom: 205 / 3553
  33526. }
  33527. },
  33528. maw: {
  33529. height: math.unit(0.56, "meter"),
  33530. name: "Maw",
  33531. image: {
  33532. source: "./media/characters/iris/maw.svg"
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Mewter cat",
  33539. height: math.unit(1.2, "meters")
  33540. },
  33541. {
  33542. name: "Normal",
  33543. height: math.unit(2.5, "meters"),
  33544. default: true
  33545. },
  33546. {
  33547. name: "Minimacro",
  33548. height: math.unit(18, "feet")
  33549. },
  33550. {
  33551. name: "Macro",
  33552. height: math.unit(140, "feet")
  33553. },
  33554. {
  33555. name: "Macro+",
  33556. height: math.unit(180, "meters")
  33557. },
  33558. {
  33559. name: "Megamacro",
  33560. height: math.unit(2746, "meters")
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(6, "feet"),
  33569. weight: math.unit(135, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/axel/front.svg",
  33573. extra: 908 / 908,
  33574. bottom: 58 / 966
  33575. }
  33576. },
  33577. side: {
  33578. height: math.unit(6, "feet"),
  33579. weight: math.unit(135, "lb"),
  33580. name: "Side",
  33581. image: {
  33582. source: "./media/characters/axel/side.svg",
  33583. extra: 958 / 958,
  33584. bottom: 11 / 969
  33585. }
  33586. },
  33587. back: {
  33588. height: math.unit(6, "feet"),
  33589. weight: math.unit(135, "lb"),
  33590. name: "Back",
  33591. image: {
  33592. source: "./media/characters/axel/back.svg",
  33593. extra: 887 / 887,
  33594. bottom: 34 / 921
  33595. }
  33596. },
  33597. head: {
  33598. height: math.unit(1.07, "feet"),
  33599. name: "Head",
  33600. image: {
  33601. source: "./media/characters/axel/head.svg"
  33602. }
  33603. },
  33604. beak: {
  33605. height: math.unit(1.4, "feet"),
  33606. name: "Beak",
  33607. image: {
  33608. source: "./media/characters/axel/beak.svg"
  33609. }
  33610. },
  33611. beakSide: {
  33612. height: math.unit(1.4, "feet"),
  33613. name: "Beak Side",
  33614. image: {
  33615. source: "./media/characters/axel/beak-side.svg"
  33616. }
  33617. },
  33618. sheath: {
  33619. height: math.unit(0.5, "feet"),
  33620. name: "Sheath",
  33621. image: {
  33622. source: "./media/characters/axel/sheath.svg"
  33623. }
  33624. },
  33625. dick: {
  33626. height: math.unit(0.98, "feet"),
  33627. name: "Dick",
  33628. image: {
  33629. source: "./media/characters/axel/dick.svg"
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Macro",
  33636. height: math.unit(68, "meters"),
  33637. default: true
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(3.5, "meters"),
  33646. weight: math.unit(1200, "kg"),
  33647. name: "Front",
  33648. image: {
  33649. source: "./media/characters/joanna/front.svg",
  33650. extra: 1596 / 1488,
  33651. bottom: 29 / 1625
  33652. }
  33653. },
  33654. back: {
  33655. height: math.unit(3.5, "meters"),
  33656. weight: math.unit(1200, "kg"),
  33657. name: "Back",
  33658. image: {
  33659. source: "./media/characters/joanna/back.svg",
  33660. extra: 1594 / 1495,
  33661. bottom: 26 / 1620
  33662. }
  33663. },
  33664. frontShorts: {
  33665. height: math.unit(3.5, "meters"),
  33666. weight: math.unit(1200, "kg"),
  33667. name: "Front (Shorts)",
  33668. image: {
  33669. source: "./media/characters/joanna/front-shorts.svg",
  33670. extra: 1596 / 1488,
  33671. bottom: 29 / 1625
  33672. }
  33673. },
  33674. frontBiker: {
  33675. height: math.unit(3.5, "meters"),
  33676. weight: math.unit(1200, "kg"),
  33677. name: "Front (Biker)",
  33678. image: {
  33679. source: "./media/characters/joanna/front-biker.svg",
  33680. extra: 1596 / 1488,
  33681. bottom: 29 / 1625
  33682. }
  33683. },
  33684. backBiker: {
  33685. height: math.unit(3.5, "meters"),
  33686. weight: math.unit(1200, "kg"),
  33687. name: "Back (Biker)",
  33688. image: {
  33689. source: "./media/characters/joanna/back-biker.svg",
  33690. extra: 1594 / 1495,
  33691. bottom: 88 / 1682
  33692. }
  33693. },
  33694. bikeLeft: {
  33695. height: math.unit(2.4, "meters"),
  33696. weight: math.unit(1600, "kg"),
  33697. name: "Bike (Left)",
  33698. image: {
  33699. source: "./media/characters/joanna/bike-left.svg",
  33700. extra: 720 / 720,
  33701. bottom: 8 / 728
  33702. }
  33703. },
  33704. bikeRight: {
  33705. height: math.unit(2.4, "meters"),
  33706. weight: math.unit(1600, "kg"),
  33707. name: "Bike (Right)",
  33708. image: {
  33709. source: "./media/characters/joanna/bike-right.svg",
  33710. extra: 720 / 720,
  33711. bottom: 8 / 728
  33712. }
  33713. },
  33714. },
  33715. [
  33716. {
  33717. name: "Incognito",
  33718. height: math.unit(3.5, "meters")
  33719. },
  33720. {
  33721. name: "Casual Big",
  33722. height: math.unit(200, "meters")
  33723. },
  33724. {
  33725. name: "Macro",
  33726. height: math.unit(600, "meters")
  33727. },
  33728. {
  33729. name: "Original",
  33730. height: math.unit(20, "km"),
  33731. default: true
  33732. },
  33733. {
  33734. name: "Giga",
  33735. height: math.unit(400, "km")
  33736. },
  33737. {
  33738. name: "Lounging",
  33739. height: math.unit(1500, "km")
  33740. },
  33741. {
  33742. name: "Planetary",
  33743. height: math.unit(200000, "km")
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33749. {
  33750. front: {
  33751. height: math.unit(6, "feet"),
  33752. weight: math.unit(150, "lb"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/hugo-sigil/front.svg",
  33756. extra: 522 / 500,
  33757. bottom: 2 / 524
  33758. }
  33759. },
  33760. back: {
  33761. height: math.unit(6, "feet"),
  33762. weight: math.unit(150, "lb"),
  33763. name: "Back",
  33764. image: {
  33765. source: "./media/characters/hugo-sigil/back.svg",
  33766. extra: 519 / 495,
  33767. bottom: 5 / 524
  33768. }
  33769. },
  33770. maw: {
  33771. height: math.unit(1.4, "feet"),
  33772. weight: math.unit(150, "lb"),
  33773. name: "Maw",
  33774. image: {
  33775. source: "./media/characters/hugo-sigil/maw.svg"
  33776. }
  33777. },
  33778. feet: {
  33779. height: math.unit(1.56, "feet"),
  33780. weight: math.unit(150, "lb"),
  33781. name: "Feet",
  33782. image: {
  33783. source: "./media/characters/hugo-sigil/feet.svg",
  33784. extra: 177 / 177,
  33785. bottom: 12 / 189
  33786. }
  33787. },
  33788. },
  33789. [
  33790. {
  33791. name: "Normal",
  33792. height: math.unit(6, "feet")
  33793. },
  33794. {
  33795. name: "Macro",
  33796. height: math.unit(200, "feet"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(6, "feet"),
  33806. weight: math.unit(150, "lb"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/peri/front.svg",
  33810. extra: 2354 / 2233,
  33811. bottom: 49 / 2403
  33812. }
  33813. },
  33814. },
  33815. [
  33816. {
  33817. name: "Really Small",
  33818. height: math.unit(1, "nm")
  33819. },
  33820. {
  33821. name: "Micro",
  33822. height: math.unit(4, "inches")
  33823. },
  33824. {
  33825. name: "Normal",
  33826. height: math.unit(7, "inches"),
  33827. default: true
  33828. },
  33829. {
  33830. name: "Macro",
  33831. height: math.unit(400, "feet")
  33832. },
  33833. {
  33834. name: "Megamacro",
  33835. height: math.unit(100, "miles")
  33836. },
  33837. ]
  33838. ))
  33839. characterMakers.push(() => makeCharacter(
  33840. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33841. {
  33842. frontSlim: {
  33843. height: math.unit(7, "feet"),
  33844. name: "Front (Slim)",
  33845. image: {
  33846. source: "./media/characters/issilora/front-slim.svg",
  33847. extra: 529 / 449,
  33848. bottom: 53 / 582
  33849. }
  33850. },
  33851. sideSlim: {
  33852. height: math.unit(7, "feet"),
  33853. name: "Side (Slim)",
  33854. image: {
  33855. source: "./media/characters/issilora/side-slim.svg",
  33856. extra: 570 / 480,
  33857. bottom: 30 / 600
  33858. }
  33859. },
  33860. backSlim: {
  33861. height: math.unit(7, "feet"),
  33862. name: "Back (Slim)",
  33863. image: {
  33864. source: "./media/characters/issilora/back-slim.svg",
  33865. extra: 537 / 455,
  33866. bottom: 46 / 583
  33867. }
  33868. },
  33869. frontBuff: {
  33870. height: math.unit(7, "feet"),
  33871. name: "Front (Buff)",
  33872. image: {
  33873. source: "./media/characters/issilora/front-buff.svg",
  33874. extra: 2310 / 2035,
  33875. bottom: 335 / 2645
  33876. }
  33877. },
  33878. head: {
  33879. height: math.unit(1.94, "feet"),
  33880. name: "Head",
  33881. image: {
  33882. source: "./media/characters/issilora/head.svg"
  33883. }
  33884. },
  33885. },
  33886. [
  33887. {
  33888. name: "Minimum",
  33889. height: math.unit(7, "feet")
  33890. },
  33891. {
  33892. name: "Comfortable",
  33893. height: math.unit(17, "feet")
  33894. },
  33895. {
  33896. name: "Fun Size",
  33897. height: math.unit(47, "feet")
  33898. },
  33899. {
  33900. name: "Natural Macro",
  33901. height: math.unit(137, "feet"),
  33902. default: true
  33903. },
  33904. {
  33905. name: "Maximum Kaiju",
  33906. height: math.unit(397, "feet")
  33907. },
  33908. ]
  33909. ))
  33910. characterMakers.push(() => makeCharacter(
  33911. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33912. {
  33913. front: {
  33914. height: math.unit(50 + 9/12, "feet"),
  33915. weight: math.unit(32.8, "tons"),
  33916. name: "Front",
  33917. image: {
  33918. source: "./media/characters/irb'iiritaahn/front.svg",
  33919. extra: 1878/1826,
  33920. bottom: 326/2204
  33921. }
  33922. },
  33923. back: {
  33924. height: math.unit(50 + 9/12, "feet"),
  33925. weight: math.unit(32.8, "tons"),
  33926. name: "Back",
  33927. image: {
  33928. source: "./media/characters/irb'iiritaahn/back.svg",
  33929. extra: 2052/2018,
  33930. bottom: 152/2204
  33931. }
  33932. },
  33933. head: {
  33934. height: math.unit(12.86, "feet"),
  33935. name: "Head",
  33936. image: {
  33937. source: "./media/characters/irb'iiritaahn/head.svg"
  33938. }
  33939. },
  33940. maw: {
  33941. height: math.unit(9.66, "feet"),
  33942. name: "Maw",
  33943. image: {
  33944. source: "./media/characters/irb'iiritaahn/maw.svg"
  33945. }
  33946. },
  33947. frontDick: {
  33948. height: math.unit(8.78461, "feet"),
  33949. name: "Front Dick",
  33950. image: {
  33951. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33952. }
  33953. },
  33954. rearDick: {
  33955. height: math.unit(8.78461, "feet"),
  33956. name: "Rear Dick",
  33957. image: {
  33958. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33959. }
  33960. },
  33961. rearDickUnfolded: {
  33962. height: math.unit(8.78, "feet"),
  33963. name: "Rear Dick (Unfolded)",
  33964. image: {
  33965. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33966. }
  33967. },
  33968. wings: {
  33969. height: math.unit(43, "feet"),
  33970. name: "Wings",
  33971. image: {
  33972. source: "./media/characters/irb'iiritaahn/wings.svg"
  33973. }
  33974. },
  33975. },
  33976. [
  33977. {
  33978. name: "Macro",
  33979. height: math.unit(50 + 9/12, "feet"),
  33980. default: true
  33981. },
  33982. ]
  33983. ))
  33984. characterMakers.push(() => makeCharacter(
  33985. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33986. {
  33987. front: {
  33988. height: math.unit(205, "cm"),
  33989. weight: math.unit(102, "kg"),
  33990. name: "Front",
  33991. image: {
  33992. source: "./media/characters/irbisgreif/front.svg",
  33993. extra: 785/706,
  33994. bottom: 13/798
  33995. }
  33996. },
  33997. back: {
  33998. height: math.unit(205, "cm"),
  33999. weight: math.unit(102, "kg"),
  34000. name: "Back",
  34001. image: {
  34002. source: "./media/characters/irbisgreif/back.svg",
  34003. extra: 713/701,
  34004. bottom: 26/739
  34005. }
  34006. },
  34007. frontDressed: {
  34008. height: math.unit(216, "cm"),
  34009. weight: math.unit(102, "kg"),
  34010. name: "Front (Dressed)",
  34011. image: {
  34012. source: "./media/characters/irbisgreif/front-dressed.svg",
  34013. extra: 902/776,
  34014. bottom: 14/916
  34015. }
  34016. },
  34017. sideDressed: {
  34018. height: math.unit(195, "cm"),
  34019. weight: math.unit(102, "kg"),
  34020. name: "Side (Dressed)",
  34021. image: {
  34022. source: "./media/characters/irbisgreif/side-dressed.svg",
  34023. extra: 788/688,
  34024. bottom: 21/809
  34025. }
  34026. },
  34027. backDressed: {
  34028. height: math.unit(216, "cm"),
  34029. weight: math.unit(102, "kg"),
  34030. name: "Back (Dressed)",
  34031. image: {
  34032. source: "./media/characters/irbisgreif/back-dressed.svg",
  34033. extra: 901/783,
  34034. bottom: 10/911
  34035. }
  34036. },
  34037. dick: {
  34038. height: math.unit(0.49, "feet"),
  34039. name: "Dick",
  34040. image: {
  34041. source: "./media/characters/irbisgreif/dick.svg"
  34042. }
  34043. },
  34044. wingTop: {
  34045. height: math.unit(1.93 , "feet"),
  34046. name: "Wing (Top)",
  34047. image: {
  34048. source: "./media/characters/irbisgreif/wing-top.svg"
  34049. }
  34050. },
  34051. wingBottom: {
  34052. height: math.unit(1.93 , "feet"),
  34053. name: "Wing (Bottom)",
  34054. image: {
  34055. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34056. }
  34057. },
  34058. },
  34059. [
  34060. {
  34061. name: "Normal",
  34062. height: math.unit(216, "cm"),
  34063. default: true
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34069. {
  34070. front: {
  34071. height: math.unit(6, "feet"),
  34072. weight: math.unit(150, "lb"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/pride/front.svg",
  34076. extra: 1299/1230,
  34077. bottom: 18/1317
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Normal",
  34084. height: math.unit(7, "feet")
  34085. },
  34086. {
  34087. name: "Mini-macro",
  34088. height: math.unit(11, "feet")
  34089. },
  34090. {
  34091. name: "Macro",
  34092. height: math.unit(15, "meters"),
  34093. default: true
  34094. },
  34095. {
  34096. name: "Macro+",
  34097. height: math.unit(40, "meters")
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34103. {
  34104. front: {
  34105. height: math.unit(4 + 2 / 12, "feet"),
  34106. weight: math.unit(95, "lb"),
  34107. name: "Front",
  34108. image: {
  34109. source: "./media/characters/vaelophis-nyx/front.svg",
  34110. extra: 2532/2330,
  34111. bottom: 0/2532
  34112. }
  34113. },
  34114. back: {
  34115. height: math.unit(4 + 2 / 12, "feet"),
  34116. weight: math.unit(95, "lb"),
  34117. name: "Back",
  34118. image: {
  34119. source: "./media/characters/vaelophis-nyx/back.svg",
  34120. extra: 2484/2361,
  34121. bottom: 0/2484
  34122. }
  34123. },
  34124. feralSide: {
  34125. height: math.unit(2 + 1/12, "feet"),
  34126. weight: math.unit(20, "lb"),
  34127. name: "Feral (Side)",
  34128. image: {
  34129. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34130. extra: 1721/1581,
  34131. bottom: 70/1791
  34132. }
  34133. },
  34134. feralLazing: {
  34135. height: math.unit(1.08, "feet"),
  34136. weight: math.unit(20, "lb"),
  34137. name: "Feral (Lazing)",
  34138. image: {
  34139. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34140. extra: 822/822,
  34141. bottom: 248/1070
  34142. }
  34143. },
  34144. ear: {
  34145. height: math.unit(0.416, "feet"),
  34146. name: "Ear",
  34147. image: {
  34148. source: "./media/characters/vaelophis-nyx/ear.svg"
  34149. }
  34150. },
  34151. eye: {
  34152. height: math.unit(0.0748, "feet"),
  34153. name: "Eye",
  34154. image: {
  34155. source: "./media/characters/vaelophis-nyx/eye.svg"
  34156. }
  34157. },
  34158. mouth: {
  34159. height: math.unit(0.378, "feet"),
  34160. name: "Mouth",
  34161. image: {
  34162. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34163. }
  34164. },
  34165. spade: {
  34166. height: math.unit(0.55, "feet"),
  34167. name: "Spade",
  34168. image: {
  34169. source: "./media/characters/vaelophis-nyx/spade.svg"
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(4 + 2/12, "feet"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34183. {
  34184. front: {
  34185. height: math.unit(7, "feet"),
  34186. weight: math.unit(231, "lb"),
  34187. name: "Front",
  34188. image: {
  34189. source: "./media/characters/flux/front.svg",
  34190. extra: 919/871,
  34191. bottom: 0/919
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(7, "feet"),
  34196. weight: math.unit(231, "lb"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/flux/back.svg",
  34200. extra: 1040/992,
  34201. bottom: 0/1040
  34202. }
  34203. },
  34204. frontDressed: {
  34205. height: math.unit(7, "feet"),
  34206. weight: math.unit(231, "lb"),
  34207. name: "Front (Dressed)",
  34208. image: {
  34209. source: "./media/characters/flux/front-dressed.svg",
  34210. extra: 919/871,
  34211. bottom: 0/919
  34212. }
  34213. },
  34214. feralSide: {
  34215. height: math.unit(5, "feet"),
  34216. weight: math.unit(150, "lb"),
  34217. name: "Feral (Side)",
  34218. image: {
  34219. source: "./media/characters/flux/feral-side.svg",
  34220. extra: 598/528,
  34221. bottom: 28/626
  34222. }
  34223. },
  34224. head: {
  34225. height: math.unit(1.585, "feet"),
  34226. name: "Head",
  34227. image: {
  34228. source: "./media/characters/flux/head.svg"
  34229. }
  34230. },
  34231. headSide: {
  34232. height: math.unit(1.74, "feet"),
  34233. name: "Head (Side)",
  34234. image: {
  34235. source: "./media/characters/flux/head-side.svg"
  34236. }
  34237. },
  34238. headSideFire: {
  34239. height: math.unit(1.76, "feet"),
  34240. name: "Head (Side, Fire)",
  34241. image: {
  34242. source: "./media/characters/flux/head-side-fire.svg"
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(7, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(9, "feet"),
  34259. weight: math.unit(1012, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/ulfra-lupae/front.svg",
  34263. extra: 1083/1011,
  34264. bottom: 67/1150
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Micro",
  34271. height: math.unit(6, "inches")
  34272. },
  34273. {
  34274. name: "Socializing",
  34275. height: math.unit(6 + 5/12, "feet")
  34276. },
  34277. {
  34278. name: "Normal",
  34279. height: math.unit(9, "feet"),
  34280. default: true
  34281. },
  34282. {
  34283. name: "Macro",
  34284. height: math.unit(150, "feet")
  34285. },
  34286. ]
  34287. ))
  34288. characterMakers.push(() => makeCharacter(
  34289. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34290. {
  34291. front: {
  34292. height: math.unit(5 + 2/12, "feet"),
  34293. weight: math.unit(120, "lb"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/timber/front.svg",
  34297. extra: 2814/2705,
  34298. bottom: 181/2995
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(5 + 2/12, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(9, "feet"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/nicki/front.svg",
  34318. extra: 1240/990,
  34319. bottom: 45/1285
  34320. },
  34321. form: "anthro",
  34322. default: true
  34323. },
  34324. side: {
  34325. height: math.unit(9, "feet"),
  34326. name: "Side",
  34327. image: {
  34328. source: "./media/characters/nicki/side.svg",
  34329. extra: 1047/973,
  34330. bottom: 61/1108
  34331. },
  34332. form: "anthro"
  34333. },
  34334. back: {
  34335. height: math.unit(9, "feet"),
  34336. name: "Back",
  34337. image: {
  34338. source: "./media/characters/nicki/back.svg",
  34339. extra: 1006/965,
  34340. bottom: 39/1045
  34341. },
  34342. form: "anthro"
  34343. },
  34344. taur: {
  34345. height: math.unit(15, "feet"),
  34346. name: "Taur",
  34347. image: {
  34348. source: "./media/characters/nicki/taur.svg",
  34349. extra: 1592/1347,
  34350. bottom: 0/1592
  34351. },
  34352. form: "taur",
  34353. default: true
  34354. },
  34355. },
  34356. [
  34357. {
  34358. name: "Normal",
  34359. height: math.unit(9, "feet"),
  34360. form: "anthro",
  34361. default: true
  34362. },
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(15, "feet"),
  34366. form: "taur",
  34367. default: true
  34368. }
  34369. ],
  34370. {
  34371. "anthro": {
  34372. name: "Anthro",
  34373. default: true
  34374. },
  34375. "taur": {
  34376. name: "Taur"
  34377. }
  34378. }
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(7 + 10/12, "feet"),
  34385. weight: math.unit(3.5, "tons"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/lee/front.svg",
  34389. extra: 1773/1615,
  34390. bottom: 86/1859
  34391. }
  34392. },
  34393. hand: {
  34394. height: math.unit(1.78, "feet"),
  34395. name: "Hand",
  34396. image: {
  34397. source: "./media/characters/lee/hand.svg"
  34398. }
  34399. },
  34400. maw: {
  34401. height: math.unit(1.18, "feet"),
  34402. name: "Maw",
  34403. image: {
  34404. source: "./media/characters/lee/maw.svg"
  34405. }
  34406. },
  34407. },
  34408. [
  34409. {
  34410. name: "Normal",
  34411. height: math.unit(7 + 10/12, "feet"),
  34412. default: true
  34413. },
  34414. ]
  34415. ))
  34416. characterMakers.push(() => makeCharacter(
  34417. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34418. {
  34419. front: {
  34420. height: math.unit(9, "feet"),
  34421. name: "Front",
  34422. image: {
  34423. source: "./media/characters/guti/front.svg",
  34424. extra: 4551/4355,
  34425. bottom: 123/4674
  34426. }
  34427. },
  34428. tongue: {
  34429. height: math.unit(1, "feet"),
  34430. name: "Tongue",
  34431. image: {
  34432. source: "./media/characters/guti/tongue.svg"
  34433. }
  34434. },
  34435. paw: {
  34436. height: math.unit(1.18, "feet"),
  34437. name: "Paw",
  34438. image: {
  34439. source: "./media/characters/guti/paw.svg"
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Normal",
  34446. height: math.unit(9, "feet"),
  34447. default: true
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34453. {
  34454. side: {
  34455. height: math.unit(5, "meters"),
  34456. name: "Side",
  34457. image: {
  34458. source: "./media/characters/vesper/side.svg",
  34459. extra: 1605/1518,
  34460. bottom: 0/1605
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Small",
  34467. height: math.unit(5, "meters")
  34468. },
  34469. {
  34470. name: "Sage",
  34471. height: math.unit(100, "meters"),
  34472. default: true
  34473. },
  34474. {
  34475. name: "Fun Size",
  34476. height: math.unit(600, "meters")
  34477. },
  34478. {
  34479. name: "Goddess",
  34480. height: math.unit(20000, "km")
  34481. },
  34482. {
  34483. name: "Maximum",
  34484. height: math.unit(5, "galaxies")
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(6 + 3/12, "feet"),
  34493. weight: math.unit(190, "lb"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/gawain/front.svg",
  34497. extra: 2222/2139,
  34498. bottom: 90/2312
  34499. }
  34500. },
  34501. back: {
  34502. height: math.unit(6 + 3/12, "feet"),
  34503. weight: math.unit(190, "lb"),
  34504. name: "Back",
  34505. image: {
  34506. source: "./media/characters/gawain/back.svg",
  34507. extra: 2199/2111,
  34508. bottom: 73/2272
  34509. }
  34510. },
  34511. },
  34512. [
  34513. {
  34514. name: "Normal",
  34515. height: math.unit(6 + 3/12, "feet"),
  34516. default: true
  34517. },
  34518. ]
  34519. ))
  34520. characterMakers.push(() => makeCharacter(
  34521. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34522. {
  34523. side: {
  34524. height: math.unit(3.5, "meters"),
  34525. weight: math.unit(16000, "lb"),
  34526. name: "Side",
  34527. image: {
  34528. source: "./media/characters/dascalti/side.svg",
  34529. extra: 392/273,
  34530. bottom: 47/439
  34531. }
  34532. },
  34533. breath: {
  34534. height: math.unit(7.4, "feet"),
  34535. name: "Breath",
  34536. image: {
  34537. source: "./media/characters/dascalti/breath.svg"
  34538. }
  34539. },
  34540. fed: {
  34541. height: math.unit(3.6, "meters"),
  34542. weight: math.unit(16000, "lb"),
  34543. name: "Fed",
  34544. image: {
  34545. source: "./media/characters/dascalti/fed.svg",
  34546. extra: 1419/820,
  34547. bottom: 95/1514
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(3.5, "meters"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34561. {
  34562. front: {
  34563. height: math.unit(3 + 5/12, "feet"),
  34564. name: "Front",
  34565. image: {
  34566. source: "./media/characters/mauve/front.svg",
  34567. extra: 1126/1033,
  34568. bottom: 65/1191
  34569. }
  34570. },
  34571. side: {
  34572. height: math.unit(3 + 5/12, "feet"),
  34573. name: "Side",
  34574. image: {
  34575. source: "./media/characters/mauve/side.svg",
  34576. extra: 1089/1001,
  34577. bottom: 29/1118
  34578. }
  34579. },
  34580. back: {
  34581. height: math.unit(3 + 5/12, "feet"),
  34582. name: "Back",
  34583. image: {
  34584. source: "./media/characters/mauve/back.svg",
  34585. extra: 1173/1053,
  34586. bottom: 109/1282
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(3 + 5/12, "feet"),
  34594. default: true
  34595. },
  34596. ]
  34597. ))
  34598. characterMakers.push(() => makeCharacter(
  34599. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34600. {
  34601. front: {
  34602. height: math.unit(6 + 3/12, "feet"),
  34603. weight: math.unit(450, "lb"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/carlos/front.svg",
  34607. extra: 444/423,
  34608. bottom: 27/471
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(6 + 3/12, "feet"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34622. {
  34623. back: {
  34624. height: math.unit(5 + 10/12, "feet"),
  34625. weight: math.unit(200, "lb"),
  34626. name: "Back",
  34627. image: {
  34628. source: "./media/characters/jax/back.svg",
  34629. extra: 764/739,
  34630. bottom: 25/789
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(5 + 10/12, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(8, "feet"),
  34647. weight: math.unit(250, "lb"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/eikthynir/front.svg",
  34651. extra: 1332/1166,
  34652. bottom: 82/1414
  34653. }
  34654. },
  34655. back: {
  34656. height: math.unit(8, "feet"),
  34657. weight: math.unit(250, "lb"),
  34658. name: "Back",
  34659. image: {
  34660. source: "./media/characters/eikthynir/back.svg",
  34661. extra: 1342/1190,
  34662. bottom: 19/1361
  34663. }
  34664. },
  34665. dick: {
  34666. height: math.unit(2.35, "feet"),
  34667. name: "Dick",
  34668. image: {
  34669. source: "./media/characters/eikthynir/dick.svg"
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(8, "feet"),
  34677. default: true
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34683. {
  34684. front: {
  34685. height: math.unit(99, "meters"),
  34686. weight: math.unit(13000, "tons"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/zlmos/front.svg",
  34690. extra: 2202/1992,
  34691. bottom: 315/2517
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Macro",
  34698. height: math.unit(99, "meters"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(6 + 5/12, "feet"),
  34708. name: "Front",
  34709. image: {
  34710. source: "./media/characters/purri/front.svg",
  34711. extra: 1698/1610,
  34712. bottom: 32/1730
  34713. }
  34714. },
  34715. frontAlt: {
  34716. height: math.unit(6 + 5/12, "feet"),
  34717. name: "Front (Alt)",
  34718. image: {
  34719. source: "./media/characters/purri/front-alt.svg",
  34720. extra: 450/420,
  34721. bottom: 26/476
  34722. }
  34723. },
  34724. boots: {
  34725. height: math.unit(5.5, "feet"),
  34726. name: "Boots",
  34727. image: {
  34728. source: "./media/characters/purri/boots.svg",
  34729. extra: 905/853,
  34730. bottom: 18/923
  34731. },
  34732. extraAttributes: {
  34733. "shoeSize": {
  34734. name: "Shoe Size",
  34735. power: 1,
  34736. type: "length",
  34737. base: math.unit(12, "ShoeSizeMensUS")
  34738. },
  34739. "platformHeight": {
  34740. name: "Platform Height",
  34741. power: 1,
  34742. type: "length",
  34743. base: math.unit(2, "inches")
  34744. },
  34745. }
  34746. },
  34747. lying: {
  34748. height: math.unit(2, "feet"),
  34749. name: "Lying",
  34750. image: {
  34751. source: "./media/characters/purri/lying.svg",
  34752. extra: 940/843,
  34753. bottom: 146/1086
  34754. }
  34755. },
  34756. devious: {
  34757. height: math.unit(1.77, "feet"),
  34758. name: "Devious",
  34759. image: {
  34760. source: "./media/characters/purri/devious.svg",
  34761. extra: 1440/1155,
  34762. bottom: 147/1587
  34763. }
  34764. },
  34765. bean: {
  34766. height: math.unit(1.94, "feet"),
  34767. name: "Bean",
  34768. image: {
  34769. source: "./media/characters/purri/bean.svg"
  34770. }
  34771. },
  34772. },
  34773. [
  34774. {
  34775. name: "Micro",
  34776. height: math.unit(1, "mm")
  34777. },
  34778. {
  34779. name: "Normal",
  34780. height: math.unit(6 + 5/12, "feet"),
  34781. default: true
  34782. },
  34783. {
  34784. name: "Macro :3c",
  34785. height: math.unit(2, "miles")
  34786. },
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34791. {
  34792. front: {
  34793. height: math.unit(6 + 2/12, "feet"),
  34794. weight: math.unit(250, "lb"),
  34795. name: "Front",
  34796. image: {
  34797. source: "./media/characters/moonlight/front.svg",
  34798. extra: 1044/908,
  34799. bottom: 56/1100
  34800. }
  34801. },
  34802. feral: {
  34803. height: math.unit(3 + 1/12, "feet"),
  34804. weight: math.unit(50, "kg"),
  34805. name: "Feral",
  34806. image: {
  34807. source: "./media/characters/moonlight/feral.svg",
  34808. extra: 3705/2791,
  34809. bottom: 145/3850
  34810. }
  34811. },
  34812. paw: {
  34813. height: math.unit(1, "feet"),
  34814. name: "Paw",
  34815. image: {
  34816. source: "./media/characters/moonlight/paw.svg"
  34817. }
  34818. },
  34819. paws: {
  34820. height: math.unit(0.98, "feet"),
  34821. name: "Paws",
  34822. image: {
  34823. source: "./media/characters/moonlight/paws.svg",
  34824. extra: 939/939,
  34825. bottom: 50/989
  34826. }
  34827. },
  34828. mouth: {
  34829. height: math.unit(0.48, "feet"),
  34830. name: "Mouth",
  34831. image: {
  34832. source: "./media/characters/moonlight/mouth.svg"
  34833. }
  34834. },
  34835. dick: {
  34836. height: math.unit(1.46, "feet"),
  34837. name: "Dick",
  34838. image: {
  34839. source: "./media/characters/moonlight/dick.svg"
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(6 + 2/12, "feet"),
  34847. default: true
  34848. },
  34849. {
  34850. name: "Macro",
  34851. height: math.unit(300, "feet")
  34852. },
  34853. {
  34854. name: "Macro+",
  34855. height: math.unit(1, "mile")
  34856. },
  34857. {
  34858. name: "Mt. Moon",
  34859. height: math.unit(5, "miles")
  34860. },
  34861. {
  34862. name: "Megamacro",
  34863. height: math.unit(15, "miles")
  34864. },
  34865. ]
  34866. ))
  34867. characterMakers.push(() => makeCharacter(
  34868. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34869. {
  34870. back: {
  34871. height: math.unit(6, "feet"),
  34872. weight: math.unit(150, "lb"),
  34873. name: "Back",
  34874. image: {
  34875. source: "./media/characters/sylen/back.svg",
  34876. extra: 1335/1273,
  34877. bottom: 107/1442
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(5 + 5/12, "feet")
  34885. },
  34886. {
  34887. name: "Megamacro",
  34888. height: math.unit(3, "miles"),
  34889. default: true
  34890. },
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34895. {
  34896. front: {
  34897. height: math.unit(6, "feet"),
  34898. weight: math.unit(190, "lb"),
  34899. name: "Front",
  34900. image: {
  34901. source: "./media/characters/huttser/front.svg",
  34902. extra: 1152/1058,
  34903. bottom: 23/1175
  34904. }
  34905. },
  34906. side: {
  34907. height: math.unit(6, "feet"),
  34908. weight: math.unit(190, "lb"),
  34909. name: "Side",
  34910. image: {
  34911. source: "./media/characters/huttser/side.svg",
  34912. extra: 1174/1065,
  34913. bottom: 18/1192
  34914. }
  34915. },
  34916. back: {
  34917. height: math.unit(6, "feet"),
  34918. weight: math.unit(190, "lb"),
  34919. name: "Back",
  34920. image: {
  34921. source: "./media/characters/huttser/back.svg",
  34922. extra: 1158/1056,
  34923. bottom: 12/1170
  34924. }
  34925. },
  34926. },
  34927. [
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34932. {
  34933. side: {
  34934. height: math.unit(12 + 9/12, "feet"),
  34935. weight: math.unit(15000, "lb"),
  34936. name: "Side",
  34937. image: {
  34938. source: "./media/characters/faan/side.svg",
  34939. extra: 2747/2697,
  34940. bottom: 0/2747
  34941. }
  34942. },
  34943. front: {
  34944. height: math.unit(12 + 9/12, "feet"),
  34945. weight: math.unit(15000, "lb"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/faan/front.svg",
  34949. extra: 607/571,
  34950. bottom: 24/631
  34951. }
  34952. },
  34953. head: {
  34954. height: math.unit(2.85, "feet"),
  34955. name: "Head",
  34956. image: {
  34957. source: "./media/characters/faan/head.svg"
  34958. }
  34959. },
  34960. headAlt: {
  34961. height: math.unit(3.13, "feet"),
  34962. name: "Head (Alt)",
  34963. image: {
  34964. source: "./media/characters/faan/head-alt.svg"
  34965. }
  34966. },
  34967. },
  34968. [
  34969. {
  34970. name: "Normal",
  34971. height: math.unit(12 + 9/12, "feet"),
  34972. default: true
  34973. },
  34974. ]
  34975. ))
  34976. characterMakers.push(() => makeCharacter(
  34977. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34978. {
  34979. front: {
  34980. height: math.unit(6, "feet"),
  34981. weight: math.unit(300, "lb"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/tanio/front.svg",
  34985. extra: 711/673,
  34986. bottom: 25/736
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Normal",
  34993. height: math.unit(6, "feet"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(3, "inches"),
  35003. name: "Front",
  35004. image: {
  35005. source: "./media/characters/noboru/front.svg",
  35006. extra: 1039/932,
  35007. bottom: 18/1057
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Micro",
  35014. height: math.unit(3, "inches"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35021. {
  35022. front: {
  35023. height: math.unit(1.85, "meters"),
  35024. weight: math.unit(80, "kg"),
  35025. name: "Front",
  35026. image: {
  35027. source: "./media/characters/daniel-barrett/front.svg",
  35028. extra: 355/337,
  35029. bottom: 9/364
  35030. }
  35031. },
  35032. },
  35033. [
  35034. {
  35035. name: "Pico",
  35036. height: math.unit(0.0433, "mm")
  35037. },
  35038. {
  35039. name: "Nano",
  35040. height: math.unit(1.5, "mm")
  35041. },
  35042. {
  35043. name: "Micro",
  35044. height: math.unit(5.3, "cm"),
  35045. default: true
  35046. },
  35047. {
  35048. name: "Normal",
  35049. height: math.unit(1.85, "meters")
  35050. },
  35051. {
  35052. name: "Macro",
  35053. height: math.unit(64.7, "meters")
  35054. },
  35055. {
  35056. name: "Megamacro",
  35057. height: math.unit(2.26, "km")
  35058. },
  35059. {
  35060. name: "Gigamacro",
  35061. height: math.unit(79, "km")
  35062. },
  35063. {
  35064. name: "Teramacro",
  35065. height: math.unit(2765, "km")
  35066. },
  35067. {
  35068. name: "Petamacro",
  35069. height: math.unit(96678, "km")
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35075. {
  35076. front: {
  35077. height: math.unit(30, "meters"),
  35078. weight: math.unit(400, "tons"),
  35079. name: "Front",
  35080. image: {
  35081. source: "./media/characters/zeel/front.svg",
  35082. extra: 2599/2599,
  35083. bottom: 226/2825
  35084. }
  35085. },
  35086. },
  35087. [
  35088. {
  35089. name: "Macro",
  35090. height: math.unit(30, "meters"),
  35091. default: true
  35092. },
  35093. ]
  35094. ))
  35095. characterMakers.push(() => makeCharacter(
  35096. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35097. {
  35098. front: {
  35099. height: math.unit(6 + 7/12, "feet"),
  35100. weight: math.unit(210, "lb"),
  35101. name: "Front",
  35102. image: {
  35103. source: "./media/characters/tarn/front.svg",
  35104. extra: 3517/3220,
  35105. bottom: 91/3608
  35106. }
  35107. },
  35108. back: {
  35109. height: math.unit(6 + 7/12, "feet"),
  35110. weight: math.unit(210, "lb"),
  35111. name: "Back",
  35112. image: {
  35113. source: "./media/characters/tarn/back.svg",
  35114. extra: 3566/3241,
  35115. bottom: 34/3600
  35116. }
  35117. },
  35118. dick: {
  35119. height: math.unit(1.65, "feet"),
  35120. name: "Dick",
  35121. image: {
  35122. source: "./media/characters/tarn/dick.svg"
  35123. }
  35124. },
  35125. paw: {
  35126. height: math.unit(1.80, "feet"),
  35127. name: "Paw",
  35128. image: {
  35129. source: "./media/characters/tarn/paw.svg"
  35130. }
  35131. },
  35132. tongue: {
  35133. height: math.unit(0.97, "feet"),
  35134. name: "Tongue",
  35135. image: {
  35136. source: "./media/characters/tarn/tongue.svg"
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Micro",
  35143. height: math.unit(4, "inches")
  35144. },
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(6 + 7/12, "feet"),
  35148. default: true
  35149. },
  35150. {
  35151. name: "Macro",
  35152. height: math.unit(300, "feet")
  35153. },
  35154. ]
  35155. ))
  35156. characterMakers.push(() => makeCharacter(
  35157. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35158. {
  35159. front: {
  35160. height: math.unit(5 + 7/12, "feet"),
  35161. weight: math.unit(80, "kg"),
  35162. name: "Front",
  35163. image: {
  35164. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35165. extra: 3023/2865,
  35166. bottom: 33/3056
  35167. }
  35168. },
  35169. back: {
  35170. height: math.unit(5 + 7/12, "feet"),
  35171. weight: math.unit(80, "kg"),
  35172. name: "Back",
  35173. image: {
  35174. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35175. extra: 3020/2886,
  35176. bottom: 30/3050
  35177. }
  35178. },
  35179. dick: {
  35180. height: math.unit(0.98, "feet"),
  35181. name: "Dick",
  35182. image: {
  35183. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35184. }
  35185. },
  35186. anatomy: {
  35187. height: math.unit(2.86, "feet"),
  35188. name: "Anatomy",
  35189. image: {
  35190. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Really Small",
  35197. height: math.unit(2, "inches")
  35198. },
  35199. {
  35200. name: "Micro",
  35201. height: math.unit(5.583, "inches")
  35202. },
  35203. {
  35204. name: "Normal",
  35205. height: math.unit(5 + 7/12, "feet"),
  35206. default: true
  35207. },
  35208. {
  35209. name: "Macro",
  35210. height: math.unit(67, "feet")
  35211. },
  35212. {
  35213. name: "Megamacro",
  35214. height: math.unit(134, "feet")
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35220. {
  35221. front: {
  35222. height: math.unit(9, "feet"),
  35223. weight: math.unit(120, "lb"),
  35224. name: "Front",
  35225. image: {
  35226. source: "./media/characters/sally/front.svg",
  35227. extra: 1506/1349,
  35228. bottom: 66/1572
  35229. }
  35230. },
  35231. },
  35232. [
  35233. {
  35234. name: "Normal",
  35235. height: math.unit(9, "feet"),
  35236. default: true
  35237. },
  35238. ]
  35239. ))
  35240. characterMakers.push(() => makeCharacter(
  35241. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35242. {
  35243. front: {
  35244. height: math.unit(8, "feet"),
  35245. weight: math.unit(900, "lb"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/owen/front.svg",
  35249. extra: 1761/1657,
  35250. bottom: 74/1835
  35251. }
  35252. },
  35253. side: {
  35254. height: math.unit(8, "feet"),
  35255. weight: math.unit(900, "lb"),
  35256. name: "Side",
  35257. image: {
  35258. source: "./media/characters/owen/side.svg",
  35259. extra: 1797/1734,
  35260. bottom: 30/1827
  35261. }
  35262. },
  35263. back: {
  35264. height: math.unit(8, "feet"),
  35265. weight: math.unit(900, "lb"),
  35266. name: "Back",
  35267. image: {
  35268. source: "./media/characters/owen/back.svg",
  35269. extra: 1796/1706,
  35270. bottom: 59/1855
  35271. }
  35272. },
  35273. maw: {
  35274. height: math.unit(1.76, "feet"),
  35275. name: "Maw",
  35276. image: {
  35277. source: "./media/characters/owen/maw.svg"
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(8, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35291. {
  35292. front: {
  35293. height: math.unit(4, "feet"),
  35294. weight: math.unit(400, "lb"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/ryth/front.svg",
  35298. extra: 1920/1748,
  35299. bottom: 42/1962
  35300. }
  35301. },
  35302. back: {
  35303. height: math.unit(4, "feet"),
  35304. weight: math.unit(400, "lb"),
  35305. name: "Back",
  35306. image: {
  35307. source: "./media/characters/ryth/back.svg",
  35308. extra: 1897/1690,
  35309. bottom: 89/1986
  35310. }
  35311. },
  35312. mouth: {
  35313. height: math.unit(1.39, "feet"),
  35314. name: "Mouth",
  35315. image: {
  35316. source: "./media/characters/ryth/mouth.svg"
  35317. }
  35318. },
  35319. tailmaw: {
  35320. height: math.unit(1.23, "feet"),
  35321. name: "Tailmaw",
  35322. image: {
  35323. source: "./media/characters/ryth/tailmaw.svg"
  35324. }
  35325. },
  35326. goia: {
  35327. height: math.unit(4, "meters"),
  35328. weight: math.unit(10800, "lb"),
  35329. name: "Goia",
  35330. image: {
  35331. source: "./media/characters/ryth/goia.svg",
  35332. extra: 745/640,
  35333. bottom: 107/852
  35334. }
  35335. },
  35336. goiaFront: {
  35337. height: math.unit(4, "meters"),
  35338. weight: math.unit(10800, "lb"),
  35339. name: "Goia (Front)",
  35340. image: {
  35341. source: "./media/characters/ryth/goia-front.svg",
  35342. extra: 750/586,
  35343. bottom: 114/864
  35344. }
  35345. },
  35346. goiaMaw: {
  35347. height: math.unit(5.55, "feet"),
  35348. name: "Goia Maw",
  35349. image: {
  35350. source: "./media/characters/ryth/goia-maw.svg"
  35351. }
  35352. },
  35353. goiaForepaw: {
  35354. height: math.unit(3.5, "feet"),
  35355. name: "Goia Forepaw",
  35356. image: {
  35357. source: "./media/characters/ryth/goia-forepaw.svg"
  35358. }
  35359. },
  35360. goiaHindpaw: {
  35361. height: math.unit(5.55, "feet"),
  35362. name: "Goia Hindpaw",
  35363. image: {
  35364. source: "./media/characters/ryth/goia-hindpaw.svg"
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Normal",
  35371. height: math.unit(4, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(7, "feet"),
  35381. weight: math.unit(180, "lb"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/necrolance/front.svg",
  35385. extra: 1062/947,
  35386. bottom: 41/1103
  35387. }
  35388. },
  35389. back: {
  35390. height: math.unit(7, "feet"),
  35391. weight: math.unit(180, "lb"),
  35392. name: "Back",
  35393. image: {
  35394. source: "./media/characters/necrolance/back.svg",
  35395. extra: 1045/984,
  35396. bottom: 14/1059
  35397. }
  35398. },
  35399. wing: {
  35400. height: math.unit(2.67, "feet"),
  35401. name: "Wing",
  35402. image: {
  35403. source: "./media/characters/necrolance/wing.svg"
  35404. }
  35405. },
  35406. },
  35407. [
  35408. {
  35409. name: "Normal",
  35410. height: math.unit(7, "feet"),
  35411. default: true
  35412. },
  35413. ]
  35414. ))
  35415. characterMakers.push(() => makeCharacter(
  35416. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35417. {
  35418. front: {
  35419. height: math.unit(76, "meters"),
  35420. weight: math.unit(30000, "tons"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/tyler/front.svg",
  35424. extra: 1640/1640,
  35425. bottom: 114/1754
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Macro",
  35432. height: math.unit(76, "meters"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(4 + 11/12, "feet"),
  35442. weight: math.unit(132, "lb"),
  35443. name: "Front",
  35444. image: {
  35445. source: "./media/characters/icey/front.svg",
  35446. extra: 2750/2550,
  35447. bottom: 33/2783
  35448. }
  35449. },
  35450. back: {
  35451. height: math.unit(4 + 11/12, "feet"),
  35452. weight: math.unit(132, "lb"),
  35453. name: "Back",
  35454. image: {
  35455. source: "./media/characters/icey/back.svg",
  35456. extra: 2624/2481,
  35457. bottom: 35/2659
  35458. }
  35459. },
  35460. },
  35461. [
  35462. {
  35463. name: "Normal",
  35464. height: math.unit(4 + 11/12, "feet"),
  35465. default: true
  35466. },
  35467. ]
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35471. {
  35472. front: {
  35473. height: math.unit(100, "feet"),
  35474. weight: math.unit(0, "lb"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/smile/front.svg",
  35478. extra: 2983/2912,
  35479. bottom: 162/3145
  35480. }
  35481. },
  35482. back: {
  35483. height: math.unit(100, "feet"),
  35484. weight: math.unit(0, "lb"),
  35485. name: "Back",
  35486. image: {
  35487. source: "./media/characters/smile/back.svg",
  35488. extra: 3143/3031,
  35489. bottom: 91/3234
  35490. }
  35491. },
  35492. head: {
  35493. height: math.unit(26.3, "feet"),
  35494. weight: math.unit(0, "lb"),
  35495. name: "Head",
  35496. image: {
  35497. source: "./media/characters/smile/head.svg"
  35498. }
  35499. },
  35500. collar: {
  35501. height: math.unit(5.3, "feet"),
  35502. weight: math.unit(0, "lb"),
  35503. name: "Collar",
  35504. image: {
  35505. source: "./media/characters/smile/collar.svg"
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Macro",
  35512. height: math.unit(100, "feet"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35519. {
  35520. dragon: {
  35521. height: math.unit(26, "feet"),
  35522. weight: math.unit(36, "tons"),
  35523. name: "Dragon",
  35524. image: {
  35525. source: "./media/characters/arimphae/dragon.svg",
  35526. extra: 1574/983,
  35527. bottom: 357/1931
  35528. }
  35529. },
  35530. drake: {
  35531. height: math.unit(9, "feet"),
  35532. weight: math.unit(1.5, "tons"),
  35533. name: "Drake",
  35534. image: {
  35535. source: "./media/characters/arimphae/drake.svg",
  35536. extra: 1120/925,
  35537. bottom: 435/1555
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Small",
  35544. height: math.unit(26*5/9, "feet")
  35545. },
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(26, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(8 + 9/12, "feet"),
  35558. name: "Front",
  35559. image: {
  35560. source: "./media/characters/xander/front.svg",
  35561. extra: 1237/974,
  35562. bottom: 94/1331
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(8 + 9/12, "feet"),
  35570. default: true
  35571. },
  35572. {
  35573. name: "Gaze Grabber",
  35574. height: math.unit(13 + 8/12, "feet")
  35575. },
  35576. {
  35577. name: "Jaw Dropper",
  35578. height: math.unit(27, "feet")
  35579. },
  35580. {
  35581. name: "Show Stopper",
  35582. height: math.unit(136, "feet")
  35583. },
  35584. {
  35585. name: "Superstar",
  35586. height: math.unit(1.9e6, "miles")
  35587. },
  35588. ]
  35589. ))
  35590. characterMakers.push(() => makeCharacter(
  35591. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35592. {
  35593. side: {
  35594. height: math.unit(2100, "feet"),
  35595. name: "Side",
  35596. image: {
  35597. source: "./media/characters/osiris/side.svg",
  35598. extra: 1105/939,
  35599. bottom: 167/1272
  35600. }
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Macro",
  35606. height: math.unit(2100, "feet"),
  35607. default: true
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35613. {
  35614. front: {
  35615. height: math.unit(6 + 8/12, "feet"),
  35616. weight: math.unit(225, "lb"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/rhys-londe/front.svg",
  35620. extra: 2258/2141,
  35621. bottom: 188/2446
  35622. }
  35623. },
  35624. back: {
  35625. height: math.unit(6 + 8/12, "feet"),
  35626. weight: math.unit(225, "lb"),
  35627. name: "Back",
  35628. image: {
  35629. source: "./media/characters/rhys-londe/back.svg",
  35630. extra: 2237/2137,
  35631. bottom: 63/2300
  35632. }
  35633. },
  35634. frontNsfw: {
  35635. height: math.unit(6 + 8/12, "feet"),
  35636. weight: math.unit(225, "lb"),
  35637. name: "Front (NSFW)",
  35638. image: {
  35639. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35640. extra: 2258/2141,
  35641. bottom: 188/2446
  35642. }
  35643. },
  35644. backNsfw: {
  35645. height: math.unit(6 + 8/12, "feet"),
  35646. weight: math.unit(225, "lb"),
  35647. name: "Back (NSFW)",
  35648. image: {
  35649. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35650. extra: 2237/2137,
  35651. bottom: 63/2300
  35652. }
  35653. },
  35654. dick: {
  35655. height: math.unit(30, "inches"),
  35656. name: "Dick",
  35657. image: {
  35658. source: "./media/characters/rhys-londe/dick.svg"
  35659. }
  35660. },
  35661. maw: {
  35662. height: math.unit(1.6, "feet"),
  35663. name: "Maw",
  35664. image: {
  35665. source: "./media/characters/rhys-londe/maw.svg"
  35666. }
  35667. },
  35668. },
  35669. [
  35670. {
  35671. name: "Normal",
  35672. height: math.unit(6 + 8/12, "feet"),
  35673. default: true
  35674. },
  35675. ]
  35676. ))
  35677. characterMakers.push(() => makeCharacter(
  35678. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35679. {
  35680. front: {
  35681. height: math.unit(3 + 10/12, "feet"),
  35682. weight: math.unit(90, "lb"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/taivas-ensim/front.svg",
  35686. extra: 1327/1216,
  35687. bottom: 96/1423
  35688. }
  35689. },
  35690. back: {
  35691. height: math.unit(3 + 10/12, "feet"),
  35692. weight: math.unit(90, "lb"),
  35693. name: "Back",
  35694. image: {
  35695. source: "./media/characters/taivas-ensim/back.svg",
  35696. extra: 1355/1247,
  35697. bottom: 11/1366
  35698. }
  35699. },
  35700. frontNsfw: {
  35701. height: math.unit(3 + 10/12, "feet"),
  35702. weight: math.unit(90, "lb"),
  35703. name: "Front (NSFW)",
  35704. image: {
  35705. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35706. extra: 1327/1216,
  35707. bottom: 96/1423
  35708. }
  35709. },
  35710. backNsfw: {
  35711. height: math.unit(3 + 10/12, "feet"),
  35712. weight: math.unit(90, "lb"),
  35713. name: "Back (NSFW)",
  35714. image: {
  35715. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35716. extra: 1355/1247,
  35717. bottom: 11/1366
  35718. }
  35719. },
  35720. },
  35721. [
  35722. {
  35723. name: "Normal",
  35724. height: math.unit(3 + 10/12, "feet"),
  35725. default: true
  35726. },
  35727. ]
  35728. ))
  35729. characterMakers.push(() => makeCharacter(
  35730. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35731. {
  35732. front: {
  35733. height: math.unit(9 + 6/12, "feet"),
  35734. weight: math.unit(940, "lb"),
  35735. name: "Front",
  35736. image: {
  35737. source: "./media/characters/byliss/front.svg",
  35738. extra: 1327/1290,
  35739. bottom: 82/1409
  35740. }
  35741. },
  35742. back: {
  35743. height: math.unit(9 + 6/12, "feet"),
  35744. weight: math.unit(940, "lb"),
  35745. name: "Back",
  35746. image: {
  35747. source: "./media/characters/byliss/back.svg",
  35748. extra: 1376/1349,
  35749. bottom: 9/1385
  35750. }
  35751. },
  35752. frontNsfw: {
  35753. height: math.unit(9 + 6/12, "feet"),
  35754. weight: math.unit(940, "lb"),
  35755. name: "Front (NSFW)",
  35756. image: {
  35757. source: "./media/characters/byliss/front-nsfw.svg",
  35758. extra: 1327/1290,
  35759. bottom: 82/1409
  35760. }
  35761. },
  35762. backNsfw: {
  35763. height: math.unit(9 + 6/12, "feet"),
  35764. weight: math.unit(940, "lb"),
  35765. name: "Back (NSFW)",
  35766. image: {
  35767. source: "./media/characters/byliss/back-nsfw.svg",
  35768. extra: 1376/1349,
  35769. bottom: 9/1385
  35770. }
  35771. },
  35772. },
  35773. [
  35774. {
  35775. name: "Normal",
  35776. height: math.unit(9 + 6/12, "feet"),
  35777. default: true
  35778. },
  35779. ]
  35780. ))
  35781. characterMakers.push(() => makeCharacter(
  35782. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35783. {
  35784. front: {
  35785. height: math.unit(5 + 2/12, "feet"),
  35786. weight: math.unit(200, "lb"),
  35787. name: "Front",
  35788. image: {
  35789. source: "./media/characters/noraly/front.svg",
  35790. extra: 4985/4773,
  35791. bottom: 150/5135
  35792. }
  35793. },
  35794. full: {
  35795. height: math.unit(5 + 2/12, "feet"),
  35796. weight: math.unit(164, "lb"),
  35797. name: "Full",
  35798. image: {
  35799. source: "./media/characters/noraly/full.svg",
  35800. extra: 1114/1059,
  35801. bottom: 35/1149
  35802. }
  35803. },
  35804. fuller: {
  35805. height: math.unit(5 + 2/12, "feet"),
  35806. weight: math.unit(230, "lb"),
  35807. name: "Fuller",
  35808. image: {
  35809. source: "./media/characters/noraly/fuller.svg",
  35810. extra: 1114/1059,
  35811. bottom: 35/1149
  35812. }
  35813. },
  35814. fullest: {
  35815. height: math.unit(5 + 2/12, "feet"),
  35816. weight: math.unit(300, "lb"),
  35817. name: "Fullest",
  35818. image: {
  35819. source: "./media/characters/noraly/fullest.svg",
  35820. extra: 1114/1059,
  35821. bottom: 35/1149
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(5 + 2/12, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35835. {
  35836. front: {
  35837. height: math.unit(5 + 2/12, "feet"),
  35838. weight: math.unit(210, "lb"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/pera/front.svg",
  35842. extra: 1560/1531,
  35843. bottom: 165/1725
  35844. }
  35845. },
  35846. back: {
  35847. height: math.unit(5 + 2/12, "feet"),
  35848. weight: math.unit(210, "lb"),
  35849. name: "Back",
  35850. image: {
  35851. source: "./media/characters/pera/back.svg",
  35852. extra: 1523/1493,
  35853. bottom: 152/1675
  35854. }
  35855. },
  35856. dick: {
  35857. height: math.unit(2.4, "feet"),
  35858. name: "Dick",
  35859. image: {
  35860. source: "./media/characters/pera/dick.svg"
  35861. }
  35862. },
  35863. },
  35864. [
  35865. {
  35866. name: "Normal",
  35867. height: math.unit(5 + 2/12, "feet"),
  35868. default: true
  35869. },
  35870. ]
  35871. ))
  35872. characterMakers.push(() => makeCharacter(
  35873. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35874. {
  35875. front: {
  35876. height: math.unit(12, "feet"),
  35877. weight: math.unit(3200, "lb"),
  35878. name: "Front",
  35879. image: {
  35880. source: "./media/characters/julian/front.svg",
  35881. extra: 2962/2701,
  35882. bottom: 184/3146
  35883. }
  35884. },
  35885. maw: {
  35886. height: math.unit(5.35, "feet"),
  35887. name: "Maw",
  35888. image: {
  35889. source: "./media/characters/julian/maw.svg"
  35890. }
  35891. },
  35892. paw: {
  35893. height: math.unit(3.07, "feet"),
  35894. name: "Paw",
  35895. image: {
  35896. source: "./media/characters/julian/paw.svg"
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Default",
  35903. height: math.unit(12, "feet"),
  35904. default: true
  35905. },
  35906. {
  35907. name: "Big",
  35908. height: math.unit(50, "feet")
  35909. },
  35910. {
  35911. name: "Really Big",
  35912. height: math.unit(1, "mile")
  35913. },
  35914. {
  35915. name: "Extremely Big",
  35916. height: math.unit(100, "miles")
  35917. },
  35918. {
  35919. name: "Planet Hugger",
  35920. height: math.unit(200, "megameters")
  35921. },
  35922. {
  35923. name: "Unreasonably Big",
  35924. height: math.unit(1e300, "meters")
  35925. },
  35926. ]
  35927. ))
  35928. characterMakers.push(() => makeCharacter(
  35929. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35930. {
  35931. solgooleo: {
  35932. height: math.unit(4, "meters"),
  35933. weight: math.unit(6000*1.5, "kg"),
  35934. volume: math.unit(6000, "liters"),
  35935. name: "Solgooleo",
  35936. image: {
  35937. source: "./media/characters/pi/solgooleo.svg",
  35938. extra: 388/331,
  35939. bottom: 29/417
  35940. }
  35941. },
  35942. },
  35943. [
  35944. {
  35945. name: "Normal",
  35946. height: math.unit(4, "meters"),
  35947. default: true
  35948. },
  35949. ]
  35950. ))
  35951. characterMakers.push(() => makeCharacter(
  35952. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35953. {
  35954. front: {
  35955. height: math.unit(8, "feet"),
  35956. weight: math.unit(4, "tons"),
  35957. name: "Front",
  35958. image: {
  35959. source: "./media/characters/shaun/front.svg",
  35960. extra: 503/495,
  35961. bottom: 20/523
  35962. }
  35963. },
  35964. back: {
  35965. height: math.unit(8, "feet"),
  35966. weight: math.unit(4, "tons"),
  35967. name: "Back",
  35968. image: {
  35969. source: "./media/characters/shaun/back.svg",
  35970. extra: 487/480,
  35971. bottom: 20/507
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Lorg",
  35978. height: math.unit(8, "feet"),
  35979. default: true
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35985. {
  35986. frontAnthro: {
  35987. height: math.unit(7, "feet"),
  35988. name: "Front",
  35989. image: {
  35990. source: "./media/characters/sini/front-anthro.svg",
  35991. extra: 726/678,
  35992. bottom: 35/761
  35993. },
  35994. form: "anthro",
  35995. default: true
  35996. },
  35997. backAnthro: {
  35998. height: math.unit(7, "feet"),
  35999. name: "Back",
  36000. image: {
  36001. source: "./media/characters/sini/back-anthro.svg",
  36002. extra: 743/701,
  36003. bottom: 12/755
  36004. },
  36005. form: "anthro",
  36006. },
  36007. frontAnthroNsfw: {
  36008. height: math.unit(7, "feet"),
  36009. name: "Front (NSFW)",
  36010. image: {
  36011. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36012. extra: 726/678,
  36013. bottom: 35/761
  36014. },
  36015. form: "anthro"
  36016. },
  36017. backAnthroNsfw: {
  36018. height: math.unit(7, "feet"),
  36019. name: "Back (NSFW)",
  36020. image: {
  36021. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36022. extra: 743/701,
  36023. bottom: 12/755
  36024. },
  36025. form: "anthro",
  36026. },
  36027. mawAnthro: {
  36028. height: math.unit(2.14, "feet"),
  36029. name: "Maw",
  36030. image: {
  36031. source: "./media/characters/sini/maw-anthro.svg"
  36032. },
  36033. form: "anthro"
  36034. },
  36035. dick: {
  36036. height: math.unit(1.45, "feet"),
  36037. name: "Dick",
  36038. image: {
  36039. source: "./media/characters/sini/dick-anthro.svg"
  36040. },
  36041. form: "anthro"
  36042. },
  36043. feral: {
  36044. height: math.unit(16, "feet"),
  36045. name: "Feral",
  36046. image: {
  36047. source: "./media/characters/sini/feral.svg",
  36048. extra: 814/605,
  36049. bottom: 11/825
  36050. },
  36051. form: "feral",
  36052. default: true
  36053. },
  36054. feralNsfw: {
  36055. height: math.unit(16, "feet"),
  36056. name: "Feral (NSFW)",
  36057. image: {
  36058. source: "./media/characters/sini/feral-nsfw.svg",
  36059. extra: 814/605,
  36060. bottom: 11/825
  36061. },
  36062. form: "feral"
  36063. },
  36064. mawFeral: {
  36065. height: math.unit(5.66, "feet"),
  36066. name: "Maw",
  36067. image: {
  36068. source: "./media/characters/sini/maw-feral.svg"
  36069. },
  36070. form: "feral",
  36071. },
  36072. pawFeral: {
  36073. height: math.unit(5.17, "feet"),
  36074. name: "Paw",
  36075. image: {
  36076. source: "./media/characters/sini/paw-feral.svg"
  36077. },
  36078. form: "feral",
  36079. },
  36080. rumpFeral: {
  36081. height: math.unit(13.11, "feet"),
  36082. name: "Rump",
  36083. image: {
  36084. source: "./media/characters/sini/rump-feral.svg"
  36085. },
  36086. form: "feral",
  36087. },
  36088. dickFeral: {
  36089. height: math.unit(1, "feet"),
  36090. name: "Dick",
  36091. image: {
  36092. source: "./media/characters/sini/dick-feral.svg"
  36093. },
  36094. form: "feral",
  36095. },
  36096. eyeFeral: {
  36097. height: math.unit(1.23, "feet"),
  36098. name: "Eye",
  36099. image: {
  36100. source: "./media/characters/sini/eye-feral.svg"
  36101. },
  36102. form: "feral",
  36103. },
  36104. },
  36105. [
  36106. {
  36107. name: "Normal",
  36108. height: math.unit(7, "feet"),
  36109. default: true,
  36110. form: "anthro"
  36111. },
  36112. {
  36113. name: "Normal",
  36114. height: math.unit(16, "feet"),
  36115. default: true,
  36116. form: "feral"
  36117. },
  36118. ],
  36119. {
  36120. "anthro": {
  36121. name: "Anthro",
  36122. default: true
  36123. },
  36124. "feral": {
  36125. name: "Feral",
  36126. }
  36127. }
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36131. {
  36132. side: {
  36133. height: math.unit(47.2, "meters"),
  36134. weight: math.unit(10000, "tons"),
  36135. name: "Side",
  36136. image: {
  36137. source: "./media/characters/raylldo/side.svg",
  36138. extra: 2363/642,
  36139. bottom: 221/2584
  36140. }
  36141. },
  36142. top: {
  36143. height: math.unit(240, "meters"),
  36144. weight: math.unit(10000, "tons"),
  36145. name: "Top",
  36146. image: {
  36147. source: "./media/characters/raylldo/top.svg"
  36148. }
  36149. },
  36150. bottom: {
  36151. height: math.unit(240, "meters"),
  36152. weight: math.unit(10000, "tons"),
  36153. name: "Bottom",
  36154. image: {
  36155. source: "./media/characters/raylldo/bottom.svg"
  36156. }
  36157. },
  36158. head: {
  36159. height: math.unit(38.6, "meters"),
  36160. name: "Head",
  36161. image: {
  36162. source: "./media/characters/raylldo/head.svg",
  36163. extra: 1335/1112,
  36164. bottom: 0/1335
  36165. }
  36166. },
  36167. maw: {
  36168. height: math.unit(16.37, "meters"),
  36169. name: "Maw",
  36170. image: {
  36171. source: "./media/characters/raylldo/maw.svg",
  36172. extra: 883/660,
  36173. bottom: 0/883
  36174. },
  36175. extraAttributes: {
  36176. preyCapacity: {
  36177. name: "Capacity",
  36178. power: 3,
  36179. type: "volume",
  36180. base: math.unit(1000, "people")
  36181. },
  36182. tongueSize: {
  36183. name: "Tongue Size",
  36184. power: 2,
  36185. type: "area",
  36186. base: math.unit(21, "m^2")
  36187. }
  36188. }
  36189. },
  36190. forepaw: {
  36191. height: math.unit(18, "meters"),
  36192. name: "Forepaw",
  36193. image: {
  36194. source: "./media/characters/raylldo/forepaw.svg"
  36195. }
  36196. },
  36197. hindpaw: {
  36198. height: math.unit(23, "meters"),
  36199. name: "Hindpaw",
  36200. image: {
  36201. source: "./media/characters/raylldo/hindpaw.svg"
  36202. }
  36203. },
  36204. genitals: {
  36205. height: math.unit(42, "meters"),
  36206. name: "Genitals",
  36207. image: {
  36208. source: "./media/characters/raylldo/genitals.svg"
  36209. }
  36210. },
  36211. },
  36212. [
  36213. {
  36214. name: "Normal",
  36215. height: math.unit(47.2, "meters"),
  36216. default: true
  36217. },
  36218. ]
  36219. ))
  36220. characterMakers.push(() => makeCharacter(
  36221. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36222. {
  36223. anthroFront: {
  36224. height: math.unit(9, "feet"),
  36225. weight: math.unit(600, "lb"),
  36226. name: "Anthro (Front)",
  36227. image: {
  36228. source: "./media/characters/glint/anthro-front.svg",
  36229. extra: 1097/1018,
  36230. bottom: 28/1125
  36231. }
  36232. },
  36233. anthroBack: {
  36234. height: math.unit(9, "feet"),
  36235. weight: math.unit(600, "lb"),
  36236. name: "Anthro (Back)",
  36237. image: {
  36238. source: "./media/characters/glint/anthro-back.svg",
  36239. extra: 1154/997,
  36240. bottom: 36/1190
  36241. }
  36242. },
  36243. feral: {
  36244. height: math.unit(11, "feet"),
  36245. weight: math.unit(50000, "lb"),
  36246. name: "Feral",
  36247. image: {
  36248. source: "./media/characters/glint/feral.svg",
  36249. extra: 3035/1585,
  36250. bottom: 1169/4204
  36251. }
  36252. },
  36253. dickAnthro: {
  36254. height: math.unit(0.7, "meters"),
  36255. name: "Dick (Anthro)",
  36256. image: {
  36257. source: "./media/characters/glint/dick-anthro.svg"
  36258. }
  36259. },
  36260. dickFeral: {
  36261. height: math.unit(2.65, "meters"),
  36262. name: "Dick (Feral)",
  36263. image: {
  36264. source: "./media/characters/glint/dick-feral.svg"
  36265. }
  36266. },
  36267. slitHidden: {
  36268. height: math.unit(5.85, "meters"),
  36269. name: "Slit (Hidden)",
  36270. image: {
  36271. source: "./media/characters/glint/slit-hidden.svg"
  36272. }
  36273. },
  36274. slitErect: {
  36275. height: math.unit(5.85, "meters"),
  36276. name: "Slit (Erect)",
  36277. image: {
  36278. source: "./media/characters/glint/slit-erect.svg"
  36279. }
  36280. },
  36281. mawAnthro: {
  36282. height: math.unit(0.63, "meters"),
  36283. name: "Maw (Anthro)",
  36284. image: {
  36285. source: "./media/characters/glint/maw.svg"
  36286. }
  36287. },
  36288. mawFeral: {
  36289. height: math.unit(2.89, "meters"),
  36290. name: "Maw (Feral)",
  36291. image: {
  36292. source: "./media/characters/glint/maw.svg"
  36293. }
  36294. },
  36295. },
  36296. [
  36297. {
  36298. name: "Normal",
  36299. height: math.unit(9, "feet"),
  36300. default: true
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36306. {
  36307. side: {
  36308. height: math.unit(15, "feet"),
  36309. weight: math.unit(5000, "kg"),
  36310. name: "Side",
  36311. image: {
  36312. source: "./media/characters/kairne/side.svg",
  36313. extra: 979/811,
  36314. bottom: 13/992
  36315. }
  36316. },
  36317. front: {
  36318. height: math.unit(15, "feet"),
  36319. weight: math.unit(5000, "kg"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/kairne/front.svg",
  36323. extra: 908/814,
  36324. bottom: 26/934
  36325. }
  36326. },
  36327. sideNsfw: {
  36328. height: math.unit(15, "feet"),
  36329. weight: math.unit(5000, "kg"),
  36330. name: "Side (NSFW)",
  36331. image: {
  36332. source: "./media/characters/kairne/side-nsfw.svg",
  36333. extra: 979/811,
  36334. bottom: 13/992
  36335. }
  36336. },
  36337. frontNsfw: {
  36338. height: math.unit(15, "feet"),
  36339. weight: math.unit(5000, "kg"),
  36340. name: "Front (NSFW)",
  36341. image: {
  36342. source: "./media/characters/kairne/front-nsfw.svg",
  36343. extra: 908/814,
  36344. bottom: 26/934
  36345. }
  36346. },
  36347. dickCaged: {
  36348. height: math.unit(0.65, "meters"),
  36349. name: "Dick (Caged)",
  36350. image: {
  36351. source: "./media/characters/kairne/dick-caged.svg"
  36352. }
  36353. },
  36354. dick: {
  36355. height: math.unit(0.79, "meters"),
  36356. name: "Dick",
  36357. image: {
  36358. source: "./media/characters/kairne/dick.svg"
  36359. }
  36360. },
  36361. genitals: {
  36362. height: math.unit(1.29, "meters"),
  36363. name: "Genitals",
  36364. image: {
  36365. source: "./media/characters/kairne/genitals.svg"
  36366. }
  36367. },
  36368. maw: {
  36369. height: math.unit(1.73, "meters"),
  36370. name: "Maw",
  36371. image: {
  36372. source: "./media/characters/kairne/maw.svg"
  36373. }
  36374. },
  36375. },
  36376. [
  36377. {
  36378. name: "Normal",
  36379. height: math.unit(15, "feet"),
  36380. default: true
  36381. },
  36382. ]
  36383. ))
  36384. characterMakers.push(() => makeCharacter(
  36385. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36386. {
  36387. front: {
  36388. height: math.unit(5 + 8/12, "feet"),
  36389. weight: math.unit(139, "lb"),
  36390. name: "Front",
  36391. image: {
  36392. source: "./media/characters/biscuit-jackal/front.svg",
  36393. extra: 2106/1961,
  36394. bottom: 58/2164
  36395. }
  36396. },
  36397. back: {
  36398. height: math.unit(5 + 8/12, "feet"),
  36399. weight: math.unit(139, "lb"),
  36400. name: "Back",
  36401. image: {
  36402. source: "./media/characters/biscuit-jackal/back.svg",
  36403. extra: 2132/1976,
  36404. bottom: 57/2189
  36405. }
  36406. },
  36407. werejackal: {
  36408. height: math.unit(6 + 3/12, "feet"),
  36409. weight: math.unit(188, "lb"),
  36410. name: "Werejackal",
  36411. image: {
  36412. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36413. extra: 2373/2178,
  36414. bottom: 53/2426
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 8/12, "feet"),
  36422. default: true
  36423. },
  36424. ]
  36425. ))
  36426. characterMakers.push(() => makeCharacter(
  36427. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36428. {
  36429. front: {
  36430. height: math.unit(140, "cm"),
  36431. weight: math.unit(45, "kg"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/tayra-white/front.svg",
  36435. extra: 2229/2192,
  36436. bottom: 75/2304
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Normal",
  36443. height: math.unit(140, "cm"),
  36444. default: true
  36445. },
  36446. ]
  36447. ))
  36448. characterMakers.push(() => makeCharacter(
  36449. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36450. {
  36451. front: {
  36452. height: math.unit(4 + 5/12, "feet"),
  36453. name: "Front",
  36454. image: {
  36455. source: "./media/characters/scoop/front.svg",
  36456. extra: 1257/1136,
  36457. bottom: 69/1326
  36458. }
  36459. },
  36460. back: {
  36461. height: math.unit(4 + 5/12, "feet"),
  36462. name: "Back",
  36463. image: {
  36464. source: "./media/characters/scoop/back.svg",
  36465. extra: 1321/1152,
  36466. bottom: 32/1353
  36467. }
  36468. },
  36469. maw: {
  36470. height: math.unit(0.68, "feet"),
  36471. name: "Maw",
  36472. image: {
  36473. source: "./media/characters/scoop/maw.svg"
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Really Small",
  36480. height: math.unit(1, "mm")
  36481. },
  36482. {
  36483. name: "Micro",
  36484. height: math.unit(1, "inch")
  36485. },
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(4 + 5/12, "feet"),
  36489. default: true
  36490. },
  36491. {
  36492. name: "Macro",
  36493. height: math.unit(200, "feet")
  36494. },
  36495. {
  36496. name: "Megamacro",
  36497. height: math.unit(3240, "feet")
  36498. },
  36499. {
  36500. name: "Teramacro",
  36501. height: math.unit(2500, "miles")
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(15 + 7/12, "feet"),
  36510. weight: math.unit(1150, "tons"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/saphinara/front.svg",
  36514. extra: 1837/1643,
  36515. bottom: 84/1921
  36516. },
  36517. form: "normal",
  36518. default: true
  36519. },
  36520. side: {
  36521. height: math.unit(15 + 7/12, "feet"),
  36522. weight: math.unit(1150, "tons"),
  36523. name: "Side",
  36524. image: {
  36525. source: "./media/characters/saphinara/side.svg",
  36526. extra: 605/547,
  36527. bottom: 6/611
  36528. },
  36529. form: "normal"
  36530. },
  36531. back: {
  36532. height: math.unit(15 + 7/12, "feet"),
  36533. weight: math.unit(1150, "tons"),
  36534. name: "Back",
  36535. image: {
  36536. source: "./media/characters/saphinara/back.svg",
  36537. extra: 591/531,
  36538. bottom: 13/604
  36539. },
  36540. form: "normal"
  36541. },
  36542. frontTail: {
  36543. height: math.unit(15 + 7/12, "feet"),
  36544. weight: math.unit(1150, "tons"),
  36545. name: "Front (Full Tail)",
  36546. image: {
  36547. source: "./media/characters/saphinara/front-tail.svg",
  36548. extra: 2256/1630,
  36549. bottom: 261/2517
  36550. },
  36551. form: "normal"
  36552. },
  36553. insides: {
  36554. height: math.unit(11.92, "feet"),
  36555. name: "Insides",
  36556. image: {
  36557. source: "./media/characters/saphinara/insides.svg"
  36558. },
  36559. form: "normal"
  36560. },
  36561. head: {
  36562. height: math.unit(4.17, "feet"),
  36563. name: "Head",
  36564. image: {
  36565. source: "./media/characters/saphinara/head.svg"
  36566. },
  36567. form: "normal"
  36568. },
  36569. tongue: {
  36570. height: math.unit(4.60, "feet"),
  36571. name: "Tongue",
  36572. image: {
  36573. source: "./media/characters/saphinara/tongue.svg"
  36574. },
  36575. form: "normal"
  36576. },
  36577. headEnraged: {
  36578. height: math.unit(5.55, "feet"),
  36579. name: "Head (Enraged)",
  36580. image: {
  36581. source: "./media/characters/saphinara/head-enraged.svg"
  36582. },
  36583. form: "normal"
  36584. },
  36585. wings: {
  36586. height: math.unit(11.95, "feet"),
  36587. name: "Wings",
  36588. image: {
  36589. source: "./media/characters/saphinara/wings.svg"
  36590. },
  36591. form: "normal"
  36592. },
  36593. feathers: {
  36594. height: math.unit(8.92, "feet"),
  36595. name: "Feathers",
  36596. image: {
  36597. source: "./media/characters/saphinara/feathers.svg"
  36598. },
  36599. form: "normal"
  36600. },
  36601. shackles: {
  36602. height: math.unit(2, "feet"),
  36603. name: "Shackles",
  36604. image: {
  36605. source: "./media/characters/saphinara/shackles.svg"
  36606. },
  36607. form: "normal"
  36608. },
  36609. eyes: {
  36610. height: math.unit(1.331, "feet"),
  36611. name: "Eyes",
  36612. image: {
  36613. source: "./media/characters/saphinara/eyes.svg"
  36614. },
  36615. form: "normal"
  36616. },
  36617. eyesEnraged: {
  36618. height: math.unit(1.331, "feet"),
  36619. name: "Eyes (Enraged)",
  36620. image: {
  36621. source: "./media/characters/saphinara/eyes-enraged.svg"
  36622. },
  36623. form: "normal"
  36624. },
  36625. trueFormSide: {
  36626. height: math.unit(200, "feet"),
  36627. weight: math.unit(1e7, "tons"),
  36628. name: "Side",
  36629. image: {
  36630. source: "./media/characters/saphinara/true-form-side.svg",
  36631. extra: 1399/770,
  36632. bottom: 97/1496
  36633. },
  36634. form: "true-form",
  36635. default: true
  36636. },
  36637. trueFormMaw: {
  36638. height: math.unit(71.5, "feet"),
  36639. name: "Maw",
  36640. image: {
  36641. source: "./media/characters/saphinara/true-form-maw.svg",
  36642. extra: 2302/1453,
  36643. bottom: 0/2302
  36644. },
  36645. form: "true-form"
  36646. },
  36647. meowberusSide: {
  36648. height: math.unit(75, "feet"),
  36649. weight: math.unit(180000, "kg"),
  36650. preyCapacity: math.unit(50000, "people"),
  36651. name: "Side",
  36652. image: {
  36653. source: "./media/characters/saphinara/meowberus-side.svg",
  36654. extra: 1400/711,
  36655. bottom: 126/1526
  36656. },
  36657. form: "meowberus",
  36658. extraAttributes: {
  36659. "pawArea": {
  36660. name: "Paw Size",
  36661. power: 2,
  36662. type: "area",
  36663. base: math.unit(35, "m^2")
  36664. }
  36665. }
  36666. },
  36667. },
  36668. [
  36669. {
  36670. name: "Normal",
  36671. height: math.unit(15 + 7/12, "feet"),
  36672. default: true,
  36673. form: "normal"
  36674. },
  36675. {
  36676. name: "Angry",
  36677. height: math.unit(30 + 6/12, "feet"),
  36678. form: "normal"
  36679. },
  36680. {
  36681. name: "Enraged",
  36682. height: math.unit(102 + 1/12, "feet"),
  36683. form: "normal"
  36684. },
  36685. {
  36686. name: "True",
  36687. height: math.unit(200, "feet"),
  36688. default: true,
  36689. form: "true-form"
  36690. },
  36691. {
  36692. name: "Normal",
  36693. height: math.unit(75, "feet"),
  36694. default: true,
  36695. form: "meowberus"
  36696. },
  36697. ],
  36698. {
  36699. "normal": {
  36700. name: "Normal",
  36701. default: true
  36702. },
  36703. "true-form": {
  36704. name: "True Form"
  36705. },
  36706. "meowberus": {
  36707. name: "Meowberus",
  36708. },
  36709. }
  36710. ))
  36711. characterMakers.push(() => makeCharacter(
  36712. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36713. {
  36714. front: {
  36715. height: math.unit(6 + 8/12, "feet"),
  36716. weight: math.unit(300, "lb"),
  36717. name: "Front",
  36718. image: {
  36719. source: "./media/characters/jrain/front.svg",
  36720. extra: 3039/2865,
  36721. bottom: 399/3438
  36722. }
  36723. },
  36724. back: {
  36725. height: math.unit(6 + 8/12, "feet"),
  36726. weight: math.unit(300, "lb"),
  36727. name: "Back",
  36728. image: {
  36729. source: "./media/characters/jrain/back.svg",
  36730. extra: 3089/2938,
  36731. bottom: 172/3261
  36732. }
  36733. },
  36734. head: {
  36735. height: math.unit(2.14, "feet"),
  36736. name: "Head",
  36737. image: {
  36738. source: "./media/characters/jrain/head.svg"
  36739. }
  36740. },
  36741. maw: {
  36742. height: math.unit(1.77, "feet"),
  36743. name: "Maw",
  36744. image: {
  36745. source: "./media/characters/jrain/maw.svg"
  36746. }
  36747. },
  36748. leftHand: {
  36749. height: math.unit(1.1, "feet"),
  36750. name: "Left Hand",
  36751. image: {
  36752. source: "./media/characters/jrain/left-hand.svg"
  36753. }
  36754. },
  36755. rightHand: {
  36756. height: math.unit(1.1, "feet"),
  36757. name: "Right Hand",
  36758. image: {
  36759. source: "./media/characters/jrain/right-hand.svg"
  36760. }
  36761. },
  36762. eye: {
  36763. height: math.unit(0.35, "feet"),
  36764. name: "Eye",
  36765. image: {
  36766. source: "./media/characters/jrain/eye.svg"
  36767. }
  36768. },
  36769. },
  36770. [
  36771. {
  36772. name: "Normal",
  36773. height: math.unit(6 + 8/12, "feet"),
  36774. default: true
  36775. },
  36776. {
  36777. name: "Casually Large",
  36778. height: math.unit(25, "feet")
  36779. },
  36780. {
  36781. name: "Giant",
  36782. height: math.unit(100, "feet")
  36783. },
  36784. {
  36785. name: "Kaiju",
  36786. height: math.unit(300, "feet")
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36792. {
  36793. dragon: {
  36794. height: math.unit(5, "meters"),
  36795. name: "Dragon",
  36796. image: {
  36797. source: "./media/characters/sabrina/dragon.svg",
  36798. extra: 3670 / 2365,
  36799. bottom: 333 / 4003
  36800. }
  36801. },
  36802. gryphon: {
  36803. height: math.unit(3, "meters"),
  36804. name: "Gryphon",
  36805. image: {
  36806. source: "./media/characters/sabrina/gryphon.svg",
  36807. extra: 1576 / 945,
  36808. bottom: 71 / 1647
  36809. }
  36810. },
  36811. snake: {
  36812. height: math.unit(12, "meters"),
  36813. name: "Snake",
  36814. image: {
  36815. source: "./media/characters/sabrina/snake.svg",
  36816. extra: 1758 / 1320,
  36817. bottom: 186 / 1944
  36818. }
  36819. },
  36820. collar: {
  36821. height: math.unit(1.86, "meters"),
  36822. name: "Collar",
  36823. image: {
  36824. source: "./media/characters/sabrina/collar.svg"
  36825. }
  36826. },
  36827. eye: {
  36828. height: math.unit(0.53, "meters"),
  36829. name: "Eye",
  36830. image: {
  36831. source: "./media/characters/sabrina/eye.svg"
  36832. }
  36833. },
  36834. foot: {
  36835. height: math.unit(1.86, "meters"),
  36836. name: "Foot",
  36837. image: {
  36838. source: "./media/characters/sabrina/foot.svg"
  36839. }
  36840. },
  36841. hand: {
  36842. height: math.unit(1.32, "meters"),
  36843. name: "Hand",
  36844. image: {
  36845. source: "./media/characters/sabrina/hand.svg"
  36846. }
  36847. },
  36848. head: {
  36849. height: math.unit(2.44, "meters"),
  36850. name: "Head",
  36851. image: {
  36852. source: "./media/characters/sabrina/head.svg"
  36853. }
  36854. },
  36855. headAngry: {
  36856. height: math.unit(2.44, "meters"),
  36857. name: "Head (Angry))",
  36858. image: {
  36859. source: "./media/characters/sabrina/head-angry.svg"
  36860. }
  36861. },
  36862. maw: {
  36863. height: math.unit(1.65, "meters"),
  36864. name: "Maw",
  36865. image: {
  36866. source: "./media/characters/sabrina/maw.svg"
  36867. }
  36868. },
  36869. spikes: {
  36870. height: math.unit(1.69, "meters"),
  36871. name: "Spikes",
  36872. image: {
  36873. source: "./media/characters/sabrina/spikes.svg"
  36874. }
  36875. },
  36876. stomach: {
  36877. height: math.unit(1.15, "meters"),
  36878. name: "Stomach",
  36879. image: {
  36880. source: "./media/characters/sabrina/stomach.svg"
  36881. }
  36882. },
  36883. tongue: {
  36884. height: math.unit(1.27, "meters"),
  36885. name: "Tongue",
  36886. image: {
  36887. source: "./media/characters/sabrina/tongue.svg"
  36888. }
  36889. },
  36890. wingDorsal: {
  36891. height: math.unit(4.85, "meters"),
  36892. name: "Wing (Dorsal)",
  36893. image: {
  36894. source: "./media/characters/sabrina/wing-dorsal.svg"
  36895. }
  36896. },
  36897. wingVentral: {
  36898. height: math.unit(4.85, "meters"),
  36899. name: "Wing (Ventral)",
  36900. image: {
  36901. source: "./media/characters/sabrina/wing-ventral.svg"
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(5, "meters"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36915. {
  36916. frontMaid: {
  36917. height: math.unit(5 + 5/12, "feet"),
  36918. weight: math.unit(130, "lb"),
  36919. name: "Front (Maid)",
  36920. image: {
  36921. source: "./media/characters/midnight-tales/front-maid.svg",
  36922. extra: 489/454,
  36923. bottom: 61/550
  36924. }
  36925. },
  36926. frontFormal: {
  36927. height: math.unit(5 + 5/12, "feet"),
  36928. weight: math.unit(130, "lb"),
  36929. name: "Front (Formal)",
  36930. image: {
  36931. source: "./media/characters/midnight-tales/front-formal.svg",
  36932. extra: 489/454,
  36933. bottom: 61/550
  36934. }
  36935. },
  36936. back: {
  36937. height: math.unit(5 + 5/12, "feet"),
  36938. weight: math.unit(130, "lb"),
  36939. name: "Back",
  36940. image: {
  36941. source: "./media/characters/midnight-tales/back.svg",
  36942. extra: 498/456,
  36943. bottom: 33/531
  36944. }
  36945. },
  36946. frontBeast: {
  36947. height: math.unit(40, "feet"),
  36948. weight: math.unit(64000, "lb"),
  36949. name: "Front (Beast)",
  36950. image: {
  36951. source: "./media/characters/midnight-tales/front-beast.svg",
  36952. extra: 927/860,
  36953. bottom: 53/980
  36954. }
  36955. },
  36956. backBeast: {
  36957. height: math.unit(40, "feet"),
  36958. weight: math.unit(64000, "lb"),
  36959. name: "Back (Beast)",
  36960. image: {
  36961. source: "./media/characters/midnight-tales/back-beast.svg",
  36962. extra: 929/855,
  36963. bottom: 16/945
  36964. }
  36965. },
  36966. footBeast: {
  36967. height: math.unit(6.7, "feet"),
  36968. name: "Foot (Beast)",
  36969. image: {
  36970. source: "./media/characters/midnight-tales/foot-beast.svg"
  36971. }
  36972. },
  36973. headBeast: {
  36974. height: math.unit(8, "feet"),
  36975. name: "Head (Beast)",
  36976. image: {
  36977. source: "./media/characters/midnight-tales/head-beast.svg"
  36978. }
  36979. },
  36980. },
  36981. [
  36982. {
  36983. name: "Normal",
  36984. height: math.unit(5 + 5 / 12, "feet"),
  36985. default: true
  36986. },
  36987. {
  36988. name: "Macro",
  36989. height: math.unit(25, "feet")
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36995. {
  36996. front: {
  36997. height: math.unit(6 + 2/12, "feet"),
  36998. weight: math.unit(115, "kg"),
  36999. preyCapacity: math.unit(3, "people"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/argon/front.svg",
  37003. extra: 2009/1935,
  37004. bottom: 118/2127
  37005. },
  37006. extraAttributes: {
  37007. "tailLength": {
  37008. name: "Tail Length",
  37009. power: 1,
  37010. type: "length",
  37011. base: math.unit(6, "feet")
  37012. },
  37013. "tailWeight": {
  37014. name: "Tail Weight",
  37015. power: 3,
  37016. type: "mass",
  37017. base: math.unit(40, "kg")
  37018. },
  37019. }
  37020. },
  37021. back: {
  37022. height: math.unit(6 + 2/12, "feet"),
  37023. weight: math.unit(115, "kg"),
  37024. preyCapacity: math.unit(3, "people"),
  37025. name: "Back",
  37026. image: {
  37027. source: "./media/characters/argon/back.svg",
  37028. extra: 2047/1992,
  37029. bottom: 20/2067
  37030. },
  37031. extraAttributes: {
  37032. "tailLength": {
  37033. name: "Tail Length",
  37034. power: 1,
  37035. type: "length",
  37036. base: math.unit(6, "feet")
  37037. },
  37038. "tailWeight": {
  37039. name: "Tail Weight",
  37040. power: 3,
  37041. type: "mass",
  37042. base: math.unit(40, "kg")
  37043. },
  37044. }
  37045. },
  37046. frontDressed: {
  37047. height: math.unit(6 + 2/12, "feet"),
  37048. weight: math.unit(115, "kg"),
  37049. preyCapacity: math.unit(3, "people"),
  37050. name: "Front (Dressed)",
  37051. image: {
  37052. source: "./media/characters/argon/front-dressed.svg",
  37053. extra: 2009/1935,
  37054. bottom: 118/2127
  37055. },
  37056. extraAttributes: {
  37057. "tailLength": {
  37058. name: "Tail Length",
  37059. power: 1,
  37060. type: "length",
  37061. base: math.unit(6, "feet")
  37062. },
  37063. "tailWeight": {
  37064. name: "Tail Weight",
  37065. power: 3,
  37066. type: "mass",
  37067. base: math.unit(40, "kg")
  37068. },
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Minimum",
  37075. height: math.unit(2 + 8/12, "feet")
  37076. },
  37077. {
  37078. name: "Normal",
  37079. height: math.unit(6 + 2/12, "feet"),
  37080. default: true
  37081. },
  37082. {
  37083. name: "Maximum",
  37084. height: math.unit(20, "feet")
  37085. },
  37086. ]
  37087. ))
  37088. characterMakers.push(() => makeCharacter(
  37089. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37090. {
  37091. front: {
  37092. height: math.unit(8 + 6/12, "feet"),
  37093. weight: math.unit(1150, "lb"),
  37094. name: "Front",
  37095. image: {
  37096. source: "./media/characters/kichi/front.svg",
  37097. extra: 1267/1164,
  37098. bottom: 61/1328
  37099. }
  37100. },
  37101. back: {
  37102. height: math.unit(8 + 6/12, "feet"),
  37103. weight: math.unit(1150, "lb"),
  37104. name: "Back",
  37105. image: {
  37106. source: "./media/characters/kichi/back.svg",
  37107. extra: 1273/1166,
  37108. bottom: 33/1306
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(8 + 6/12, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(6, "feet"),
  37125. weight: math.unit(210, "lb"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/manetel-greyscale/front.svg",
  37129. extra: 483/444,
  37130. bottom: 22/505
  37131. },
  37132. extraAttributes: {
  37133. "tailLength": {
  37134. name: "Tail Length",
  37135. power: 1,
  37136. type: "length",
  37137. base: math.unit(6.5, "feet")
  37138. },
  37139. }
  37140. },
  37141. side: {
  37142. height: math.unit(6, "feet"),
  37143. weight: math.unit(210, "lb"),
  37144. name: "Side",
  37145. image: {
  37146. source: "./media/characters/manetel-greyscale/side.svg",
  37147. extra: 478/426,
  37148. bottom: 20/498
  37149. },
  37150. extraAttributes: {
  37151. "tailLength": {
  37152. name: "Tail Length",
  37153. power: 1,
  37154. type: "length",
  37155. base: math.unit(6.5, "feet")
  37156. },
  37157. }
  37158. },
  37159. back: {
  37160. height: math.unit(6, "feet"),
  37161. weight: math.unit(210, "lb"),
  37162. name: "Back",
  37163. image: {
  37164. source: "./media/characters/manetel-greyscale/back.svg",
  37165. extra: 482/445,
  37166. bottom: 12/494
  37167. },
  37168. extraAttributes: {
  37169. "tailLength": {
  37170. name: "Tail Length",
  37171. power: 1,
  37172. type: "length",
  37173. base: math.unit(6.5, "feet")
  37174. },
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Micro",
  37181. height: math.unit(2, "inches")
  37182. },
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(6, "feet"),
  37186. default: true
  37187. },
  37188. {
  37189. name: "Macro",
  37190. height: math.unit(117, "feet")
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37196. {
  37197. side: {
  37198. height: math.unit(5 + 1/12, "feet"),
  37199. weight: math.unit(418, "lb"),
  37200. name: "Side",
  37201. image: {
  37202. source: "./media/characters/softpurr/side.svg",
  37203. extra: 1993/1945,
  37204. bottom: 134/2127
  37205. }
  37206. },
  37207. front: {
  37208. height: math.unit(5 + 1/12, "feet"),
  37209. weight: math.unit(418, "lb"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/softpurr/front.svg",
  37213. extra: 1950/1856,
  37214. bottom: 174/2124
  37215. }
  37216. },
  37217. paw: {
  37218. height: math.unit(1, "feet"),
  37219. name: "Paw",
  37220. image: {
  37221. source: "./media/characters/softpurr/paw.svg"
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Normal",
  37228. height: math.unit(5 + 1/12, "feet"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(300, "meters"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/anahita/front.svg",
  37241. extra: 609/576,
  37242. bottom: 51/660
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Macro",
  37249. height: math.unit(300, "meters"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(4 + 10/12, "feet"),
  37259. weight: math.unit(160, "lb"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/chip-mouse/front.svg",
  37263. extra: 3528/3408,
  37264. bottom: 0/3528
  37265. }
  37266. },
  37267. frontNsfw: {
  37268. height: math.unit(4 + 10/12, "feet"),
  37269. weight: math.unit(160, "lb"),
  37270. name: "Front (NSFW)",
  37271. image: {
  37272. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37273. extra: 3528/3408,
  37274. bottom: 0/3528
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Normal",
  37281. height: math.unit(4 + 10/12, "feet"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37288. {
  37289. side: {
  37290. height: math.unit(10, "feet"),
  37291. weight: math.unit(14000, "lb"),
  37292. name: "Side",
  37293. image: {
  37294. source: "./media/characters/kremm/side.svg",
  37295. extra: 1390/1053,
  37296. bottom: 90/1480
  37297. }
  37298. },
  37299. gut: {
  37300. height: math.unit(5.8, "feet"),
  37301. name: "Gut",
  37302. image: {
  37303. source: "./media/characters/kremm/gut.svg"
  37304. }
  37305. },
  37306. ass: {
  37307. height: math.unit(6.1, "feet"),
  37308. name: "Ass",
  37309. image: {
  37310. source: "./media/characters/kremm/ass.svg"
  37311. }
  37312. },
  37313. jaws: {
  37314. height: math.unit(2.2, "feet"),
  37315. name: "Jaws",
  37316. image: {
  37317. source: "./media/characters/kremm/jaws.svg"
  37318. }
  37319. },
  37320. dick: {
  37321. height: math.unit(4.26, "feet"),
  37322. name: "Dick",
  37323. image: {
  37324. source: "./media/characters/kremm/dick.svg"
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Normal",
  37331. height: math.unit(10, "feet"),
  37332. default: true
  37333. },
  37334. ]
  37335. ))
  37336. characterMakers.push(() => makeCharacter(
  37337. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37338. {
  37339. front: {
  37340. height: math.unit(30, "stories"),
  37341. name: "Front",
  37342. image: {
  37343. source: "./media/characters/kai/front.svg",
  37344. extra: 1892/1718,
  37345. bottom: 162/2054
  37346. }
  37347. },
  37348. },
  37349. [
  37350. {
  37351. name: "Macro",
  37352. height: math.unit(30, "stories"),
  37353. default: true
  37354. },
  37355. ]
  37356. ))
  37357. characterMakers.push(() => makeCharacter(
  37358. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37359. {
  37360. front: {
  37361. height: math.unit(6 + 4/12, "feet"),
  37362. weight: math.unit(145, "lb"),
  37363. name: "Front",
  37364. image: {
  37365. source: "./media/characters/sykes/front.svg",
  37366. extra: 1321 / 1187,
  37367. bottom: 66 / 1387
  37368. }
  37369. },
  37370. back: {
  37371. height: math.unit(6 + 4/12, "feet"),
  37372. weight: math.unit(145, "lb"),
  37373. name: "Back",
  37374. image: {
  37375. source: "./media/characters/sykes/back.svg",
  37376. extra: 1326/1181,
  37377. bottom: 31/1357
  37378. }
  37379. },
  37380. traditionalOutfit: {
  37381. height: math.unit(6 + 4/12, "feet"),
  37382. weight: math.unit(145, "lb"),
  37383. name: "Traditional Outfit",
  37384. image: {
  37385. source: "./media/characters/sykes/traditional-outfit.svg",
  37386. extra: 1321 / 1187,
  37387. bottom: 66 / 1387
  37388. }
  37389. },
  37390. adventureOutfit: {
  37391. height: math.unit(6 + 4/12, "feet"),
  37392. weight: math.unit(145, "lb"),
  37393. name: "Adventure Outfit",
  37394. image: {
  37395. source: "./media/characters/sykes/adventure-outfit.svg",
  37396. extra: 1321 / 1187,
  37397. bottom: 66 / 1387
  37398. }
  37399. },
  37400. handLeft: {
  37401. height: math.unit(0.9, "feet"),
  37402. name: "Hand (Left)",
  37403. image: {
  37404. source: "./media/characters/sykes/hand-left.svg"
  37405. }
  37406. },
  37407. handRight: {
  37408. height: math.unit(0.839, "feet"),
  37409. name: "Hand (Right)",
  37410. image: {
  37411. source: "./media/characters/sykes/hand-right.svg"
  37412. }
  37413. },
  37414. leftFoot: {
  37415. height: math.unit(1.2, "feet"),
  37416. name: "Foot (Left)",
  37417. image: {
  37418. source: "./media/characters/sykes/foot-left.svg"
  37419. }
  37420. },
  37421. rightFoot: {
  37422. height: math.unit(1.2, "feet"),
  37423. name: "Foot (Right)",
  37424. image: {
  37425. source: "./media/characters/sykes/foot-right.svg"
  37426. }
  37427. },
  37428. maw: {
  37429. height: math.unit(1.93, "feet"),
  37430. name: "Maw",
  37431. image: {
  37432. source: "./media/characters/sykes/maw.svg"
  37433. }
  37434. },
  37435. teeth: {
  37436. height: math.unit(0.51, "feet"),
  37437. name: "Teeth",
  37438. image: {
  37439. source: "./media/characters/sykes/teeth.svg"
  37440. }
  37441. },
  37442. tongue: {
  37443. height: math.unit(2.13, "feet"),
  37444. name: "Tongue",
  37445. image: {
  37446. source: "./media/characters/sykes/tongue.svg"
  37447. }
  37448. },
  37449. uvula: {
  37450. height: math.unit(0.16, "feet"),
  37451. name: "Uvula",
  37452. image: {
  37453. source: "./media/characters/sykes/uvula.svg"
  37454. }
  37455. },
  37456. collar: {
  37457. height: math.unit(0.287, "feet"),
  37458. name: "Collar",
  37459. image: {
  37460. source: "./media/characters/sykes/collar.svg"
  37461. }
  37462. },
  37463. tail: {
  37464. height: math.unit(3.8, "feet"),
  37465. name: "Tail",
  37466. image: {
  37467. source: "./media/characters/sykes/tail.svg"
  37468. }
  37469. },
  37470. },
  37471. [
  37472. {
  37473. name: "Shrunken",
  37474. height: math.unit(5, "inches")
  37475. },
  37476. {
  37477. name: "Normal",
  37478. height: math.unit(6 + 4 / 12, "feet"),
  37479. default: true
  37480. },
  37481. {
  37482. name: "Big",
  37483. height: math.unit(15, "feet")
  37484. },
  37485. ]
  37486. ))
  37487. characterMakers.push(() => makeCharacter(
  37488. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37489. {
  37490. front: {
  37491. height: math.unit(5 + 8/12, "feet"),
  37492. weight: math.unit(190, "lb"),
  37493. name: "Front",
  37494. image: {
  37495. source: "./media/characters/oven-otter/front.svg",
  37496. extra: 1809/1740,
  37497. bottom: 181/1990
  37498. }
  37499. },
  37500. back: {
  37501. height: math.unit(5 + 8/12, "feet"),
  37502. weight: math.unit(190, "lb"),
  37503. name: "Back",
  37504. image: {
  37505. source: "./media/characters/oven-otter/back.svg",
  37506. extra: 1709/1635,
  37507. bottom: 118/1827
  37508. }
  37509. },
  37510. hand: {
  37511. height: math.unit(1.07, "feet"),
  37512. name: "Hand",
  37513. image: {
  37514. source: "./media/characters/oven-otter/hand.svg"
  37515. }
  37516. },
  37517. beans: {
  37518. height: math.unit(1.74, "feet"),
  37519. name: "Beans",
  37520. image: {
  37521. source: "./media/characters/oven-otter/beans.svg"
  37522. }
  37523. },
  37524. },
  37525. [
  37526. {
  37527. name: "Micro",
  37528. height: math.unit(0.5, "inches")
  37529. },
  37530. {
  37531. name: "Normal",
  37532. height: math.unit(5 + 8/12, "feet"),
  37533. default: true
  37534. },
  37535. {
  37536. name: "Macro",
  37537. height: math.unit(250, "feet")
  37538. },
  37539. {
  37540. name: "Really High",
  37541. height: math.unit(420, "feet")
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(5, "meters"),
  37550. weight: math.unit(292000000000000, "kg"),
  37551. name: "Front",
  37552. image: {
  37553. source: "./media/characters/devourer/front.svg",
  37554. extra: 1800/1733,
  37555. bottom: 211/2011
  37556. }
  37557. },
  37558. maw: {
  37559. height: math.unit(1.1, "meter"),
  37560. name: "Maw",
  37561. image: {
  37562. source: "./media/characters/devourer/maw.svg"
  37563. }
  37564. },
  37565. },
  37566. [
  37567. {
  37568. name: "Small",
  37569. height: math.unit(3, "meters")
  37570. },
  37571. {
  37572. name: "Large",
  37573. height: math.unit(5, "meters"),
  37574. default: true
  37575. },
  37576. {
  37577. name: "Macro",
  37578. height: math.unit(20, "meters")
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37584. {
  37585. front: {
  37586. height: math.unit(6, "feet"),
  37587. weight: math.unit(400, "lb"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/ellarby/front.svg",
  37591. extra: 1909/1763,
  37592. bottom: 80/1989
  37593. }
  37594. },
  37595. back: {
  37596. height: math.unit(6, "feet"),
  37597. weight: math.unit(400, "lb"),
  37598. name: "Back",
  37599. image: {
  37600. source: "./media/characters/ellarby/back.svg",
  37601. extra: 1914/1784,
  37602. bottom: 172/2086
  37603. }
  37604. },
  37605. },
  37606. [
  37607. {
  37608. name: "Mischief",
  37609. height: math.unit(18, "inches")
  37610. },
  37611. {
  37612. name: "Trouble",
  37613. height: math.unit(12, "feet")
  37614. },
  37615. {
  37616. name: "Havoc",
  37617. height: math.unit(200, "feet"),
  37618. default: true
  37619. },
  37620. {
  37621. name: "Pandemonium",
  37622. height: math.unit(1, "mile")
  37623. },
  37624. {
  37625. name: "Catastrophe",
  37626. height: math.unit(100, "miles")
  37627. },
  37628. ]
  37629. ))
  37630. characterMakers.push(() => makeCharacter(
  37631. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37632. {
  37633. front: {
  37634. height: math.unit(4.7, "meters"),
  37635. weight: math.unit(6500, "kg"),
  37636. name: "Front",
  37637. image: {
  37638. source: "./media/characters/vex/front.svg",
  37639. extra: 1288/1140,
  37640. bottom: 100/1388
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(4.7, "meters"),
  37648. default: true
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37654. {
  37655. normal: {
  37656. height: math.unit(6, "feet"),
  37657. weight: math.unit(350, "lb"),
  37658. name: "Normal",
  37659. image: {
  37660. source: "./media/characters/teshy/normal.svg",
  37661. extra: 1795/1735,
  37662. bottom: 16/1811
  37663. }
  37664. },
  37665. monsterFront: {
  37666. height: math.unit(12, "feet"),
  37667. weight: math.unit(4700, "lb"),
  37668. name: "Monster (Front)",
  37669. image: {
  37670. source: "./media/characters/teshy/monster-front.svg",
  37671. extra: 2042/2034,
  37672. bottom: 128/2170
  37673. }
  37674. },
  37675. monsterSide: {
  37676. height: math.unit(12, "feet"),
  37677. weight: math.unit(4700, "lb"),
  37678. name: "Monster (Side)",
  37679. image: {
  37680. source: "./media/characters/teshy/monster-side.svg",
  37681. extra: 2067/2056,
  37682. bottom: 70/2137
  37683. }
  37684. },
  37685. monsterBack: {
  37686. height: math.unit(12, "feet"),
  37687. weight: math.unit(4700, "lb"),
  37688. name: "Monster (Back)",
  37689. image: {
  37690. source: "./media/characters/teshy/monster-back.svg",
  37691. extra: 1921/1914,
  37692. bottom: 171/2092
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(6, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(6, "feet"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/ramey/front.svg",
  37712. extra: 790/787,
  37713. bottom: 27/817
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Normal",
  37720. height: math.unit(6, "feet"),
  37721. default: true
  37722. },
  37723. ]
  37724. ))
  37725. characterMakers.push(() => makeCharacter(
  37726. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37727. {
  37728. front: {
  37729. height: math.unit(5 + 5/12, "feet"),
  37730. weight: math.unit(120, "lb"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/phirae/front.svg",
  37734. extra: 2491/2436,
  37735. bottom: 38/2529
  37736. }
  37737. },
  37738. },
  37739. [
  37740. {
  37741. name: "Normal",
  37742. height: math.unit(5 + 5/12, "feet"),
  37743. default: true
  37744. },
  37745. ]
  37746. ))
  37747. characterMakers.push(() => makeCharacter(
  37748. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37749. {
  37750. front: {
  37751. height: math.unit(5 + 3/12, "feet"),
  37752. name: "Front",
  37753. image: {
  37754. source: "./media/characters/stagglas/front.svg",
  37755. extra: 962/882,
  37756. bottom: 53/1015
  37757. }
  37758. },
  37759. feral: {
  37760. height: math.unit(335, "cm"),
  37761. name: "Feral",
  37762. image: {
  37763. source: "./media/characters/stagglas/feral.svg",
  37764. extra: 1732/1090,
  37765. bottom: 48/1780
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(5 + 3/12, "feet"),
  37773. default: true
  37774. },
  37775. ]
  37776. ))
  37777. characterMakers.push(() => makeCharacter(
  37778. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37779. {
  37780. front: {
  37781. height: math.unit(5 + 4/12, "feet"),
  37782. weight: math.unit(145, "lb"),
  37783. name: "Front",
  37784. image: {
  37785. source: "./media/characters/starra/front.svg",
  37786. extra: 1790/1691,
  37787. bottom: 91/1881
  37788. }
  37789. },
  37790. },
  37791. [
  37792. {
  37793. name: "Normal",
  37794. height: math.unit(5 + 4/12, "feet"),
  37795. default: true
  37796. },
  37797. ]
  37798. ))
  37799. characterMakers.push(() => makeCharacter(
  37800. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37801. {
  37802. front: {
  37803. height: math.unit(3.5, "meters"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37807. extra: 1248/972,
  37808. bottom: 38/1286
  37809. }
  37810. },
  37811. },
  37812. [
  37813. {
  37814. name: "Normal",
  37815. height: math.unit(3.5, "meters"),
  37816. default: true
  37817. },
  37818. ]
  37819. ))
  37820. characterMakers.push(() => makeCharacter(
  37821. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37822. {
  37823. side: {
  37824. height: math.unit(8 + 2/12, "feet"),
  37825. weight: math.unit(1240, "lb"),
  37826. name: "Side",
  37827. image: {
  37828. source: "./media/characters/mika-valentine/side.svg",
  37829. extra: 2670/2501,
  37830. bottom: 250/2920
  37831. }
  37832. },
  37833. },
  37834. [
  37835. {
  37836. name: "Normal",
  37837. height: math.unit(8 + 2/12, "feet"),
  37838. default: true
  37839. },
  37840. ]
  37841. ))
  37842. characterMakers.push(() => makeCharacter(
  37843. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37844. {
  37845. front: {
  37846. height: math.unit(7 + 2/12, "feet"),
  37847. name: "Front",
  37848. image: {
  37849. source: "./media/characters/xoltol/front.svg",
  37850. extra: 2212/2124,
  37851. bottom: 84/2296
  37852. }
  37853. },
  37854. side: {
  37855. height: math.unit(7 + 2/12, "feet"),
  37856. name: "Side",
  37857. image: {
  37858. source: "./media/characters/xoltol/side.svg",
  37859. extra: 2273/2197,
  37860. bottom: 26/2299
  37861. }
  37862. },
  37863. hand: {
  37864. height: math.unit(2.5, "feet"),
  37865. name: "Hand",
  37866. image: {
  37867. source: "./media/characters/xoltol/hand.svg"
  37868. }
  37869. },
  37870. },
  37871. [
  37872. {
  37873. name: "Small-ish",
  37874. height: math.unit(5 + 11/12, "feet")
  37875. },
  37876. {
  37877. name: "Normal",
  37878. height: math.unit(7 + 2/12, "feet")
  37879. },
  37880. {
  37881. name: "\"Macro\"",
  37882. height: math.unit(14 + 9/12, "feet"),
  37883. default: true
  37884. },
  37885. {
  37886. name: "Alternate Height",
  37887. height: math.unit(20, "feet")
  37888. },
  37889. {
  37890. name: "Actually Macro",
  37891. height: math.unit(100, "feet")
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(5 + 2/12, "feet"),
  37900. weight: math.unit(75, "kg"),
  37901. name: "Front",
  37902. image: {
  37903. source: "./media/characters/kotetsu-redwood/front.svg",
  37904. extra: 1053/942,
  37905. bottom: 60/1113
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Normal",
  37912. height: math.unit(5 + 2/12, "feet"),
  37913. default: true
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(2.4, "meters"),
  37922. weight: math.unit(125, "kg"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/lilith/front.svg",
  37926. extra: 1590/1513,
  37927. bottom: 203/1793
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Humanoid",
  37934. height: math.unit(2.4, "meters")
  37935. },
  37936. {
  37937. name: "Normal",
  37938. height: math.unit(6, "meters"),
  37939. default: true
  37940. },
  37941. {
  37942. name: "Largest",
  37943. height: math.unit(55, "meters")
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(8 + 4/12, "feet"),
  37952. weight: math.unit(535, "lb"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/beh'kah-bolger/front.svg",
  37956. extra: 1660/1603,
  37957. bottom: 37/1697
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(8 + 4/12, "feet"),
  37965. default: true
  37966. },
  37967. {
  37968. name: "Kaiju",
  37969. height: math.unit(250, "feet")
  37970. },
  37971. {
  37972. name: "Still Growing",
  37973. height: math.unit(10, "miles")
  37974. },
  37975. {
  37976. name: "Continental",
  37977. height: math.unit(5000, "miles")
  37978. },
  37979. {
  37980. name: "Final Form",
  37981. height: math.unit(2500000, "miles")
  37982. },
  37983. ]
  37984. ))
  37985. characterMakers.push(() => makeCharacter(
  37986. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37987. {
  37988. front: {
  37989. height: math.unit(7 + 2/12, "feet"),
  37990. weight: math.unit(230, "kg"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/tatyana-milewska/front.svg",
  37994. extra: 1199/1150,
  37995. bottom: 86/1285
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(7 + 2/12, "feet"),
  38003. default: true
  38004. },
  38005. {
  38006. name: "Big",
  38007. height: math.unit(12, "feet")
  38008. },
  38009. {
  38010. name: "Minimacro",
  38011. height: math.unit(20, "feet")
  38012. },
  38013. {
  38014. name: "Macro",
  38015. height: math.unit(120, "feet")
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(7 + 8/12, "feet"),
  38024. weight: math.unit(152, "kg"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/helen-arri/front.svg",
  38028. extra: 440/423,
  38029. bottom: 14/454
  38030. }
  38031. },
  38032. back: {
  38033. height: math.unit(7 + 8/12, "feet"),
  38034. weight: math.unit(152, "kg"),
  38035. name: "Back",
  38036. image: {
  38037. source: "./media/characters/helen-arri/back.svg",
  38038. extra: 443/426,
  38039. bottom: 8/451
  38040. }
  38041. },
  38042. },
  38043. [
  38044. {
  38045. name: "Normal",
  38046. height: math.unit(7 + 8/12, "feet"),
  38047. default: true
  38048. },
  38049. {
  38050. name: "Big",
  38051. height: math.unit(14, "feet")
  38052. },
  38053. {
  38054. name: "Minimacro",
  38055. height: math.unit(24, "feet")
  38056. },
  38057. {
  38058. name: "Macro",
  38059. height: math.unit(140, "feet")
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38065. {
  38066. front: {
  38067. height: math.unit(6, "meters"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/ehanu-rehu/front.svg",
  38071. extra: 1800/1800,
  38072. bottom: 59/1859
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(6, "meters"),
  38080. default: true
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(7 + 3/12, "feet"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/renholder/front.svg",
  38092. extra: 3096/2960,
  38093. bottom: 250/3346
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal Bat",
  38100. height: math.unit(7 + 3/12, "feet"),
  38101. default: true
  38102. },
  38103. {
  38104. name: "Slightly Tall Bat",
  38105. height: math.unit(100, "feet")
  38106. },
  38107. {
  38108. name: "Big Bat",
  38109. height: math.unit(1000, "feet")
  38110. },
  38111. {
  38112. name: "City-Sized Bat",
  38113. height: math.unit(200000, "feet")
  38114. },
  38115. {
  38116. name: "Bigger Bat",
  38117. height: math.unit(10000, "miles")
  38118. },
  38119. {
  38120. name: "Solar Sized Bat",
  38121. height: math.unit(100, "AU")
  38122. },
  38123. {
  38124. name: "Galactic Bat",
  38125. height: math.unit(200000, "lightyears")
  38126. },
  38127. {
  38128. name: "Universally Known Bat",
  38129. height: math.unit(1, "universe")
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(6 + 11/12, "feet"),
  38138. weight: math.unit(250, "lb"),
  38139. name: "Front",
  38140. image: {
  38141. source: "./media/characters/cookiecat/front.svg",
  38142. extra: 893/827,
  38143. bottom: 14/907
  38144. }
  38145. },
  38146. },
  38147. [
  38148. {
  38149. name: "Micro",
  38150. height: math.unit(3, "inches")
  38151. },
  38152. {
  38153. name: "Normal",
  38154. height: math.unit(6 + 11/12, "feet"),
  38155. default: true
  38156. },
  38157. {
  38158. name: "Macro",
  38159. height: math.unit(100, "feet")
  38160. },
  38161. {
  38162. name: "Macro+",
  38163. height: math.unit(404, "feet")
  38164. },
  38165. {
  38166. name: "Megamacro",
  38167. height: math.unit(165, "miles")
  38168. },
  38169. {
  38170. name: "Planetary",
  38171. height: math.unit(4600, "miles")
  38172. },
  38173. ]
  38174. ))
  38175. characterMakers.push(() => makeCharacter(
  38176. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38177. {
  38178. front: {
  38179. height: math.unit(10 + 3/12, "feet"),
  38180. weight: math.unit(1500, "lb"),
  38181. name: "Front",
  38182. image: {
  38183. source: "./media/characters/tux-kusanagi/front.svg",
  38184. extra: 944/840,
  38185. bottom: 39/983
  38186. }
  38187. },
  38188. back: {
  38189. height: math.unit(10 + 3/12, "feet"),
  38190. weight: math.unit(1500, "lb"),
  38191. name: "Back",
  38192. image: {
  38193. source: "./media/characters/tux-kusanagi/back.svg",
  38194. extra: 941/842,
  38195. bottom: 28/969
  38196. }
  38197. },
  38198. rump: {
  38199. height: math.unit(5.25, "feet"),
  38200. name: "Rump",
  38201. image: {
  38202. source: "./media/characters/tux-kusanagi/rump.svg"
  38203. }
  38204. },
  38205. beak: {
  38206. height: math.unit(1.54, "feet"),
  38207. name: "Beak",
  38208. image: {
  38209. source: "./media/characters/tux-kusanagi/beak.svg"
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(10 + 3/12, "feet"),
  38217. default: true
  38218. },
  38219. ]
  38220. ))
  38221. characterMakers.push(() => makeCharacter(
  38222. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38223. {
  38224. front: {
  38225. height: math.unit(58, "feet"),
  38226. weight: math.unit(200, "tons"),
  38227. name: "Front",
  38228. image: {
  38229. source: "./media/characters/uzarmazari/front.svg",
  38230. extra: 1575/1455,
  38231. bottom: 152/1727
  38232. }
  38233. },
  38234. back: {
  38235. height: math.unit(58, "feet"),
  38236. weight: math.unit(200, "tons"),
  38237. name: "Back",
  38238. image: {
  38239. source: "./media/characters/uzarmazari/back.svg",
  38240. extra: 1585/1510,
  38241. bottom: 157/1742
  38242. }
  38243. },
  38244. head: {
  38245. height: math.unit(26, "feet"),
  38246. name: "Head",
  38247. image: {
  38248. source: "./media/characters/uzarmazari/head.svg"
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Normal",
  38255. height: math.unit(58, "feet"),
  38256. default: true
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38262. {
  38263. side: {
  38264. height: math.unit(15, "feet"),
  38265. name: "Side",
  38266. image: {
  38267. source: "./media/characters/akitu/side.svg",
  38268. extra: 1421/1321,
  38269. bottom: 157/1578
  38270. }
  38271. },
  38272. front: {
  38273. height: math.unit(15, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/akitu/front.svg",
  38277. extra: 1435/1326,
  38278. bottom: 232/1667
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(15, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(10 + 8/12, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/azalie-croixland/front.svg",
  38298. extra: 1972/1856,
  38299. bottom: 31/2003
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Original Height",
  38306. height: math.unit(5 + 4/12, "feet")
  38307. },
  38308. {
  38309. name: "Normal Height",
  38310. height: math.unit(10 + 8/12, "feet"),
  38311. default: true
  38312. },
  38313. ]
  38314. ))
  38315. characterMakers.push(() => makeCharacter(
  38316. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38317. {
  38318. side: {
  38319. height: math.unit(7 + 1/12, "feet"),
  38320. weight: math.unit(245, "lb"),
  38321. name: "Side",
  38322. image: {
  38323. source: "./media/characters/kavus-kazian/side.svg",
  38324. extra: 349/342,
  38325. bottom: 15/364
  38326. }
  38327. },
  38328. },
  38329. [
  38330. {
  38331. name: "Normal",
  38332. height: math.unit(7 + 1/12, "feet"),
  38333. default: true
  38334. },
  38335. ]
  38336. ))
  38337. characterMakers.push(() => makeCharacter(
  38338. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38339. {
  38340. normalFront: {
  38341. height: math.unit(5 + 11/12, "feet"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/moonlight-rose/normal-front.svg",
  38345. extra: 1980/1825,
  38346. bottom: 18/1998
  38347. },
  38348. form: "normal",
  38349. default: true
  38350. },
  38351. normalBack: {
  38352. height: math.unit(5 + 11/12, "feet"),
  38353. name: "Back",
  38354. image: {
  38355. source: "./media/characters/moonlight-rose/normal-back.svg",
  38356. extra: 2010/1839,
  38357. bottom: 10/2020
  38358. },
  38359. form: "normal"
  38360. },
  38361. demonFront: {
  38362. height: math.unit(1.5, "earths"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/moonlight-rose/demon.svg",
  38366. extra: 1400/1294,
  38367. bottom: 45/1445
  38368. },
  38369. form: "demon",
  38370. default: true
  38371. },
  38372. terraFront: {
  38373. height: math.unit(1.5, "earths"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/moonlight-rose/terra.svg"
  38377. },
  38378. form: "terra",
  38379. default: true
  38380. },
  38381. jupiterFront: {
  38382. height: math.unit(69911*2, "km"),
  38383. name: "Front",
  38384. image: {
  38385. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38386. extra: 1367/1286,
  38387. bottom: 55/1422
  38388. },
  38389. form: "jupiter",
  38390. default: true
  38391. },
  38392. neptuneFront: {
  38393. height: math.unit(24622*2, "feet"),
  38394. name: "Front",
  38395. image: {
  38396. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38397. extra: 1851/1712,
  38398. bottom: 0/1851
  38399. },
  38400. form: "neptune",
  38401. default: true
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "\"Natural\" Height",
  38407. height: math.unit(5 + 11/12, "feet"),
  38408. form: "normal"
  38409. },
  38410. {
  38411. name: "Smallest comfortable size",
  38412. height: math.unit(40, "meters"),
  38413. form: "normal"
  38414. },
  38415. {
  38416. name: "Common size",
  38417. height: math.unit(50, "km"),
  38418. form: "normal",
  38419. default: true
  38420. },
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(1.5, "earths"),
  38424. form: "demon",
  38425. default: true
  38426. },
  38427. {
  38428. name: "Universal",
  38429. height: math.unit(15, "universes"),
  38430. form: "demon"
  38431. },
  38432. {
  38433. name: "Earth",
  38434. height: math.unit(1.5, "earths"),
  38435. form: "terra",
  38436. default: true
  38437. },
  38438. {
  38439. name: "Super Earth",
  38440. height: math.unit(67.5, "earths"),
  38441. form: "terra"
  38442. },
  38443. {
  38444. name: "Doesn't fit in a solar system...",
  38445. height: math.unit(1, "galaxy"),
  38446. form: "terra"
  38447. },
  38448. {
  38449. name: "Saturn",
  38450. height: math.unit(58232*2, "km"),
  38451. form: "jupiter"
  38452. },
  38453. {
  38454. name: "Jupiter",
  38455. height: math.unit(69911*2, "km"),
  38456. form: "jupiter",
  38457. default: true
  38458. },
  38459. {
  38460. name: "HD 100546 b",
  38461. height: math.unit(482938, "km"),
  38462. form: "jupiter"
  38463. },
  38464. {
  38465. name: "Enceladus",
  38466. height: math.unit(513*2, "km"),
  38467. form: "neptune"
  38468. },
  38469. {
  38470. name: "Europe",
  38471. height: math.unit(1560*2, "km"),
  38472. form: "neptune"
  38473. },
  38474. {
  38475. name: "Neptune",
  38476. height: math.unit(24622*2, "km"),
  38477. form: "neptune",
  38478. default: true
  38479. },
  38480. {
  38481. name: "CoRoT-9b",
  38482. height: math.unit(75067*2, "km"),
  38483. form: "neptune"
  38484. },
  38485. ],
  38486. {
  38487. "normal": {
  38488. name: "Normal",
  38489. default: true
  38490. },
  38491. "demon": {
  38492. name: "Demon"
  38493. },
  38494. "terra": {
  38495. name: "Terra"
  38496. },
  38497. "jupiter": {
  38498. name: "Jupiter"
  38499. },
  38500. "neptune": {
  38501. name: "Neptune"
  38502. }
  38503. }
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(16, "feet"),
  38510. weight: math.unit(610, "kg"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/huckle/front.svg",
  38514. extra: 1731/1625,
  38515. bottom: 33/1764
  38516. }
  38517. },
  38518. back: {
  38519. height: math.unit(16, "feet"),
  38520. weight: math.unit(610, "kg"),
  38521. name: "Back",
  38522. image: {
  38523. source: "./media/characters/huckle/back.svg",
  38524. extra: 1738/1651,
  38525. bottom: 37/1775
  38526. }
  38527. },
  38528. laughing: {
  38529. height: math.unit(3.75, "feet"),
  38530. name: "Laughing",
  38531. image: {
  38532. source: "./media/characters/huckle/laughing.svg"
  38533. }
  38534. },
  38535. angry: {
  38536. height: math.unit(4.15, "feet"),
  38537. name: "Angry",
  38538. image: {
  38539. source: "./media/characters/huckle/angry.svg"
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(16, "feet"),
  38547. default: true
  38548. },
  38549. {
  38550. name: "Mini Macro",
  38551. height: math.unit(463, "feet")
  38552. },
  38553. {
  38554. name: "Macro",
  38555. height: math.unit(1680, "meters")
  38556. },
  38557. {
  38558. name: "Mega Macro",
  38559. height: math.unit(175, "km")
  38560. },
  38561. {
  38562. name: "Terra Macro",
  38563. height: math.unit(32, "gigameters")
  38564. },
  38565. {
  38566. name: "Multiverse+",
  38567. height: math.unit(2.56e23, "yottameters")
  38568. },
  38569. ]
  38570. ))
  38571. characterMakers.push(() => makeCharacter(
  38572. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38573. {
  38574. front: {
  38575. height: math.unit(6 + 9/12, "feet"),
  38576. weight: math.unit(280, "lb"),
  38577. name: "Front",
  38578. image: {
  38579. source: "./media/characters/candy/front.svg",
  38580. extra: 234/217,
  38581. bottom: 11/245
  38582. }
  38583. },
  38584. },
  38585. [
  38586. {
  38587. name: "Really Small",
  38588. height: math.unit(0.1, "nm")
  38589. },
  38590. {
  38591. name: "Micro",
  38592. height: math.unit(2, "inches")
  38593. },
  38594. {
  38595. name: "Normal",
  38596. height: math.unit(6 + 9/12, "feet"),
  38597. default: true
  38598. },
  38599. {
  38600. name: "Small Macro",
  38601. height: math.unit(69, "feet")
  38602. },
  38603. {
  38604. name: "Macro",
  38605. height: math.unit(160, "feet")
  38606. },
  38607. {
  38608. name: "Megamacro",
  38609. height: math.unit(22000, "miles")
  38610. },
  38611. {
  38612. name: "Gigamacro",
  38613. height: math.unit(50000, "miles")
  38614. },
  38615. ]
  38616. ))
  38617. characterMakers.push(() => makeCharacter(
  38618. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38619. {
  38620. front: {
  38621. height: math.unit(4, "feet"),
  38622. weight: math.unit(90, "lb"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/joey-mcdonald/front.svg",
  38626. extra: 1059/852,
  38627. bottom: 33/1092
  38628. }
  38629. },
  38630. back: {
  38631. height: math.unit(4, "feet"),
  38632. weight: math.unit(90, "lb"),
  38633. name: "Back",
  38634. image: {
  38635. source: "./media/characters/joey-mcdonald/back.svg",
  38636. extra: 1077/879,
  38637. bottom: 5/1082
  38638. }
  38639. },
  38640. frontKobold: {
  38641. height: math.unit(4, "feet"),
  38642. weight: math.unit(100, "lb"),
  38643. name: "Front (Kobold)",
  38644. image: {
  38645. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38646. extra: 1480/1367,
  38647. bottom: 0/1480
  38648. }
  38649. },
  38650. backKobold: {
  38651. height: math.unit(4, "feet"),
  38652. weight: math.unit(100, "lb"),
  38653. name: "Back (Kobold)",
  38654. image: {
  38655. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38656. extra: 1449/1361,
  38657. bottom: 0/1449
  38658. }
  38659. },
  38660. },
  38661. [
  38662. {
  38663. name: "Normal",
  38664. height: math.unit(4, "feet"),
  38665. default: true
  38666. },
  38667. ]
  38668. ))
  38669. characterMakers.push(() => makeCharacter(
  38670. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38671. {
  38672. front: {
  38673. height: math.unit(12 + 6/12, "feet"),
  38674. name: "Front",
  38675. image: {
  38676. source: "./media/characters/kass-lockheed/front.svg",
  38677. extra: 354/343,
  38678. bottom: 9/363
  38679. }
  38680. },
  38681. back: {
  38682. height: math.unit(12 + 6/12, "feet"),
  38683. name: "Back",
  38684. image: {
  38685. source: "./media/characters/kass-lockheed/back.svg",
  38686. extra: 364/352,
  38687. bottom: 3/367
  38688. }
  38689. },
  38690. dick: {
  38691. height: math.unit(3.12, "feet"),
  38692. name: "Dick",
  38693. image: {
  38694. source: "./media/characters/kass-lockheed/dick.svg"
  38695. }
  38696. },
  38697. head: {
  38698. height: math.unit(2.6, "feet"),
  38699. name: "Head",
  38700. image: {
  38701. source: "./media/characters/kass-lockheed/head.svg"
  38702. }
  38703. },
  38704. bleh: {
  38705. height: math.unit(2.85, "feet"),
  38706. name: "Bleh",
  38707. image: {
  38708. source: "./media/characters/kass-lockheed/bleh.svg"
  38709. }
  38710. },
  38711. smug: {
  38712. height: math.unit(2.85, "feet"),
  38713. name: "Smug",
  38714. image: {
  38715. source: "./media/characters/kass-lockheed/smug.svg"
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(12 + 6/12, "feet"),
  38723. default: true
  38724. },
  38725. ]
  38726. ))
  38727. characterMakers.push(() => makeCharacter(
  38728. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38729. {
  38730. front: {
  38731. height: math.unit(6 + 2/12, "feet"),
  38732. name: "Front",
  38733. image: {
  38734. source: "./media/characters/taylor/front.svg",
  38735. extra: 639/495,
  38736. bottom: 12/651
  38737. }
  38738. },
  38739. },
  38740. [
  38741. {
  38742. name: "Normal",
  38743. height: math.unit(6 + 2/12, "feet"),
  38744. default: true
  38745. },
  38746. {
  38747. name: "Big",
  38748. height: math.unit(15, "feet")
  38749. },
  38750. {
  38751. name: "Lorg",
  38752. height: math.unit(80, "feet")
  38753. },
  38754. {
  38755. name: "Too Lorg",
  38756. height: math.unit(120, "feet")
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(15, "feet"),
  38765. name: "Front",
  38766. image: {
  38767. source: "./media/characters/kaizer/front.svg",
  38768. extra: 1612/1436,
  38769. bottom: 43/1655
  38770. }
  38771. },
  38772. },
  38773. [
  38774. {
  38775. name: "Normal",
  38776. height: math.unit(15, "feet"),
  38777. default: true
  38778. },
  38779. ]
  38780. ))
  38781. characterMakers.push(() => makeCharacter(
  38782. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38783. {
  38784. front: {
  38785. height: math.unit(2, "feet"),
  38786. weight: math.unit(30, "lb"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/sandy/front.svg",
  38790. extra: 1439/1307,
  38791. bottom: 194/1633
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Normal",
  38798. height: math.unit(2, "feet"),
  38799. default: true
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38805. {
  38806. front: {
  38807. height: math.unit(3, "feet"),
  38808. name: "Front",
  38809. image: {
  38810. source: "./media/characters/mellvi/front.svg",
  38811. extra: 1831/1630,
  38812. bottom: 58/1889
  38813. }
  38814. },
  38815. },
  38816. [
  38817. {
  38818. name: "Normal",
  38819. height: math.unit(3, "feet"),
  38820. default: true
  38821. },
  38822. ]
  38823. ))
  38824. characterMakers.push(() => makeCharacter(
  38825. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38826. {
  38827. front: {
  38828. height: math.unit(5 + 11/12, "feet"),
  38829. weight: math.unit(200, "lb"),
  38830. name: "Front",
  38831. image: {
  38832. source: "./media/characters/shirou/front.svg",
  38833. extra: 2491/2383,
  38834. bottom: 189/2680
  38835. }
  38836. },
  38837. back: {
  38838. height: math.unit(5 + 11/12, "feet"),
  38839. weight: math.unit(200, "lb"),
  38840. name: "Back",
  38841. image: {
  38842. source: "./media/characters/shirou/back.svg",
  38843. extra: 2554/2450,
  38844. bottom: 76/2630
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(5 + 11/12, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(6 + 3/12, "feet"),
  38861. weight: math.unit(177, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/noryu/front.svg",
  38865. extra: 973/885,
  38866. bottom: 10/983
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(6 + 3/12, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(5 + 6/12, "feet"),
  38883. weight: math.unit(170, "lb"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/mevolas-rubenido/front.svg",
  38887. extra: 2109/1901,
  38888. bottom: 96/2205
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(5 + 6/12, "feet"),
  38896. default: true
  38897. },
  38898. ]
  38899. ))
  38900. characterMakers.push(() => makeCharacter(
  38901. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38902. {
  38903. front: {
  38904. height: math.unit(100, "feet"),
  38905. name: "Front",
  38906. image: {
  38907. source: "./media/characters/dee/front.svg",
  38908. extra: 2153/2036,
  38909. bottom: 59/2212
  38910. }
  38911. },
  38912. back: {
  38913. height: math.unit(100, "feet"),
  38914. name: "Back",
  38915. image: {
  38916. source: "./media/characters/dee/back.svg",
  38917. extra: 2183/2058,
  38918. bottom: 75/2258
  38919. }
  38920. },
  38921. foot: {
  38922. height: math.unit(19.43, "feet"),
  38923. name: "Foot",
  38924. image: {
  38925. source: "./media/characters/dee/foot.svg"
  38926. }
  38927. },
  38928. hoof: {
  38929. height: math.unit(20.6, "feet"),
  38930. name: "Hoof",
  38931. image: {
  38932. source: "./media/characters/dee/hoof.svg"
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Macro",
  38939. height: math.unit(100, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(5 + 6/12, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/teh/front.svg",
  38952. extra: 1002/847,
  38953. bottom: 62/1064
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(5 + 6/12, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38967. {
  38968. side: {
  38969. height: math.unit(6 + 1/12, "feet"),
  38970. weight: math.unit(204, "lb"),
  38971. name: "Side",
  38972. image: {
  38973. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38974. extra: 974/775,
  38975. bottom: 169/1143
  38976. }
  38977. },
  38978. sitting: {
  38979. height: math.unit(6 + 2/12, "feet"),
  38980. weight: math.unit(204, "lb"),
  38981. name: "Sitting",
  38982. image: {
  38983. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38984. extra: 1175/964,
  38985. bottom: 378/1553
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(6 + 1/12, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(6, "inches"),
  39002. name: "Front",
  39003. image: {
  39004. source: "./media/characters/tululi/front.svg",
  39005. extra: 1997/1876,
  39006. bottom: 20/2017
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(6, "inches"),
  39014. default: true
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39020. {
  39021. front: {
  39022. height: math.unit(4 + 1/12, "feet"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/star/front.svg",
  39026. extra: 1493/1189,
  39027. bottom: 48/1541
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Normal",
  39034. height: math.unit(4 + 1/12, "feet"),
  39035. default: true
  39036. },
  39037. ]
  39038. ))
  39039. characterMakers.push(() => makeCharacter(
  39040. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39041. {
  39042. front: {
  39043. height: math.unit(6 + 3/12, "feet"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/comet/front.svg",
  39047. extra: 1681/1462,
  39048. bottom: 26/1707
  39049. }
  39050. },
  39051. },
  39052. [
  39053. {
  39054. name: "Normal",
  39055. height: math.unit(6 + 3/12, "feet"),
  39056. default: true
  39057. },
  39058. ]
  39059. ))
  39060. characterMakers.push(() => makeCharacter(
  39061. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39062. {
  39063. front: {
  39064. height: math.unit(950, "feet"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/vortex/front.svg",
  39068. extra: 1497/1434,
  39069. bottom: 56/1553
  39070. }
  39071. },
  39072. maw: {
  39073. height: math.unit(285, "feet"),
  39074. name: "Maw",
  39075. image: {
  39076. source: "./media/characters/vortex/maw.svg"
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Macro",
  39083. height: math.unit(950, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(600, "feet"),
  39093. weight: math.unit(0.02, "grams"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/doodle/front.svg",
  39097. extra: 1578/1413,
  39098. bottom: 37/1615
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Macro",
  39105. height: math.unit(600, "feet"),
  39106. default: true
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(6 + 6/12, "feet"),
  39115. name: "Front",
  39116. image: {
  39117. source: "./media/characters/jai/front.svg",
  39118. extra: 1645/1534,
  39119. bottom: 115/1760
  39120. }
  39121. },
  39122. },
  39123. [
  39124. {
  39125. name: "Normal",
  39126. height: math.unit(6 + 6/12, "feet"),
  39127. default: true
  39128. },
  39129. ]
  39130. ))
  39131. characterMakers.push(() => makeCharacter(
  39132. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39133. {
  39134. front: {
  39135. height: math.unit(6 + 8/12, "feet"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/pixel/front.svg",
  39139. extra: 1900/1735,
  39140. bottom: 63/1963
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(6 + 8/12, "feet"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39154. {
  39155. back: {
  39156. height: math.unit(4 + 1/12, "feet"),
  39157. weight: math.unit(75, "lb"),
  39158. name: "Back",
  39159. image: {
  39160. source: "./media/characters/rhett/back.svg",
  39161. extra: 930/878,
  39162. bottom: 25/955
  39163. }
  39164. },
  39165. front: {
  39166. height: math.unit(4 + 1/12, "feet"),
  39167. weight: math.unit(75, "lb"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/rhett/front.svg",
  39171. extra: 1682/1586,
  39172. bottom: 92/1774
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Micro",
  39179. height: math.unit(8, "inches")
  39180. },
  39181. {
  39182. name: "Tiny",
  39183. height: math.unit(2, "feet")
  39184. },
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(4 + 1/12, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(3 + 3/12, "feet"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/penny/front.svg",
  39200. extra: 1406/1311,
  39201. bottom: 26/1432
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Normal",
  39208. height: math.unit(3 + 3/12, "feet"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(4 + 11/12, "feet"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/monty/front.svg",
  39221. extra: 1479/1209,
  39222. bottom: 0/1479
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(4 + 11/12, "feet"),
  39230. default: true
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39236. {
  39237. front: {
  39238. height: math.unit(8 + 4/12, "feet"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/sterling/front.svg",
  39242. extra: 1420/1236,
  39243. bottom: 27/1447
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(8 + 4/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(15, "feet"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/marble/front.svg",
  39263. extra: 973/937,
  39264. bottom: 32/1005
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(15, "feet"),
  39272. default: true
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39278. {
  39279. front: {
  39280. height: math.unit(3, "inches"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/powder/front.svg",
  39284. extra: 1504/1334,
  39285. bottom: 518/2022
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(3, "inches"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(4 + 5/12, "feet"),
  39302. name: "Front",
  39303. image: {
  39304. source: "./media/characters/joey-raccoon/front.svg",
  39305. extra: 1273/1197,
  39306. bottom: 0/1273
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(4 + 5/12, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39320. {
  39321. front: {
  39322. height: math.unit(8 + 4/12, "feet"),
  39323. name: "Front",
  39324. image: {
  39325. source: "./media/characters/vick/front.svg",
  39326. extra: 2187/2118,
  39327. bottom: 47/2234
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Normal",
  39334. height: math.unit(8 + 4/12, "feet"),
  39335. default: true
  39336. },
  39337. ]
  39338. ))
  39339. characterMakers.push(() => makeCharacter(
  39340. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39341. {
  39342. front: {
  39343. height: math.unit(5 + 5/12, "feet"),
  39344. name: "Front",
  39345. image: {
  39346. source: "./media/characters/mitsy/front.svg",
  39347. extra: 1842/1695,
  39348. bottom: 0/1842
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(5 + 5/12, "feet"),
  39356. default: true
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(6 + 3/12, "feet"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/silvy/front.svg",
  39368. extra: 1995/1836,
  39369. bottom: 225/2220
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Normal",
  39376. height: math.unit(6 + 3/12, "feet"),
  39377. default: true
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39383. {
  39384. front: {
  39385. height: math.unit(3 + 8/12, "feet"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/rodney/front.svg",
  39389. extra: 1956/1747,
  39390. bottom: 31/1987
  39391. }
  39392. },
  39393. frontDressed: {
  39394. height: math.unit(2.9, "feet"),
  39395. name: "Front (Dressed)",
  39396. image: {
  39397. source: "./media/characters/rodney/front-dressed.svg",
  39398. extra: 1382/1241,
  39399. bottom: 385/1767
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(3 + 8/12, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39413. {
  39414. front: {
  39415. height: math.unit(5 + 9/12, "feet"),
  39416. weight: math.unit(194, "lbs"),
  39417. name: "Front",
  39418. image: {
  39419. source: "./media/characters/zakail-sudekai/front.svg",
  39420. extra: 2696/2533,
  39421. bottom: 248/2944
  39422. }
  39423. },
  39424. maw: {
  39425. height: math.unit(1.35, "feet"),
  39426. name: "Maw",
  39427. image: {
  39428. source: "./media/characters/zakail-sudekai/maw.svg"
  39429. }
  39430. },
  39431. },
  39432. [
  39433. {
  39434. name: "Normal",
  39435. height: math.unit(5 + 9/12, "feet"),
  39436. default: true
  39437. },
  39438. ]
  39439. ))
  39440. characterMakers.push(() => makeCharacter(
  39441. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39442. {
  39443. front: {
  39444. height: math.unit(8 + 4/12, "feet"),
  39445. weight: math.unit(1200, "lb"),
  39446. name: "Front",
  39447. image: {
  39448. source: "./media/characters/eleanor/front.svg",
  39449. extra: 1226/1192,
  39450. bottom: 52/1278
  39451. }
  39452. },
  39453. back: {
  39454. height: math.unit(8 + 4/12, "feet"),
  39455. weight: math.unit(1200, "lb"),
  39456. name: "Back",
  39457. image: {
  39458. source: "./media/characters/eleanor/back.svg",
  39459. extra: 1242/1184,
  39460. bottom: 60/1302
  39461. }
  39462. },
  39463. head: {
  39464. height: math.unit(2.62, "feet"),
  39465. name: "Head",
  39466. image: {
  39467. source: "./media/characters/eleanor/head.svg"
  39468. }
  39469. },
  39470. },
  39471. [
  39472. {
  39473. name: "Normal",
  39474. height: math.unit(8 + 4/12, "feet"),
  39475. default: true
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(8 + 4/12, "feet"),
  39484. weight: math.unit(750, "lb"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/tanya/front.svg",
  39488. extra: 1749/1615,
  39489. bottom: 33/1782
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(8 + 4/12, "feet"),
  39497. default: true
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(5, "feet"),
  39506. weight: math.unit(225, "lb"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/cindy/front.svg",
  39510. extra: 1320/1250,
  39511. bottom: 42/1362
  39512. }
  39513. },
  39514. frontDressed: {
  39515. height: math.unit(5, "feet"),
  39516. weight: math.unit(225, "lb"),
  39517. name: "Front (Dressed)",
  39518. image: {
  39519. source: "./media/characters/cindy/front-dressed.svg",
  39520. extra: 1320/1250,
  39521. bottom: 42/1362
  39522. }
  39523. },
  39524. back: {
  39525. height: math.unit(5, "feet"),
  39526. weight: math.unit(225, "lb"),
  39527. name: "Back",
  39528. image: {
  39529. source: "./media/characters/cindy/back.svg",
  39530. extra: 1384/1346,
  39531. bottom: 14/1398
  39532. }
  39533. },
  39534. },
  39535. [
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(5, "feet"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(6 + 9/12, "feet"),
  39548. weight: math.unit(440, "lb"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/wilbur-owen/front.svg",
  39552. extra: 1575/1448,
  39553. bottom: 72/1647
  39554. }
  39555. },
  39556. back: {
  39557. height: math.unit(6 + 9/12, "feet"),
  39558. weight: math.unit(440, "lb"),
  39559. name: "Back",
  39560. image: {
  39561. source: "./media/characters/wilbur-owen/back.svg",
  39562. extra: 1578/1445,
  39563. bottom: 36/1614
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(6 + 9/12, "feet"),
  39571. default: true
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(6 + 5/12, "feet"),
  39580. weight: math.unit(650, "lb"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/keegan/front.svg",
  39584. extra: 2387/2198,
  39585. bottom: 33/2420
  39586. }
  39587. },
  39588. side: {
  39589. height: math.unit(6 + 5/12, "feet"),
  39590. weight: math.unit(650, "lb"),
  39591. name: "Side",
  39592. image: {
  39593. source: "./media/characters/keegan/side.svg",
  39594. extra: 2390/2202,
  39595. bottom: 47/2437
  39596. }
  39597. },
  39598. back: {
  39599. height: math.unit(6 + 5/12, "feet"),
  39600. weight: math.unit(650, "lb"),
  39601. name: "Back",
  39602. image: {
  39603. source: "./media/characters/keegan/back.svg",
  39604. extra: 2418/2268,
  39605. bottom: 15/2433
  39606. }
  39607. },
  39608. frontSfw: {
  39609. height: math.unit(6 + 5/12, "feet"),
  39610. weight: math.unit(650, "lb"),
  39611. name: "Front (SFW)",
  39612. image: {
  39613. source: "./media/characters/keegan/front-sfw.svg",
  39614. extra: 2387/2198,
  39615. bottom: 33/2420
  39616. }
  39617. },
  39618. beans: {
  39619. height: math.unit(1.85, "feet"),
  39620. name: "Beans",
  39621. image: {
  39622. source: "./media/characters/keegan/beans.svg"
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(6 + 5/12, "feet"),
  39630. default: true
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(9, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/colton/front.svg",
  39642. extra: 1589/1326,
  39643. bottom: 139/1728
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(9, "feet"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(2 + 9/12, "feet"),
  39660. name: "Front",
  39661. image: {
  39662. source: "./media/characters/bora/front.svg",
  39663. extra: 1265/1250,
  39664. bottom: 24/1289
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Normal",
  39671. height: math.unit(2 + 9/12, "feet"),
  39672. default: true
  39673. },
  39674. ]
  39675. ))
  39676. characterMakers.push(() => makeCharacter(
  39677. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39678. {
  39679. front: {
  39680. height: math.unit(8, "feet"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/myu-myu/front.svg",
  39684. extra: 1949/1857,
  39685. bottom: 90/2039
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(8, "feet"),
  39693. default: true
  39694. },
  39695. {
  39696. name: "Big",
  39697. height: math.unit(15, "feet")
  39698. },
  39699. {
  39700. name: "BIG",
  39701. height: math.unit(25, "feet")
  39702. },
  39703. ]
  39704. ))
  39705. characterMakers.push(() => makeCharacter(
  39706. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39707. {
  39708. side: {
  39709. height: math.unit(7 + 5/12, "feet"),
  39710. weight: math.unit(2800, "lb"),
  39711. name: "Side",
  39712. image: {
  39713. source: "./media/characters/haloren/side.svg",
  39714. extra: 1793/409,
  39715. bottom: 59/1852
  39716. }
  39717. },
  39718. frontPaw: {
  39719. height: math.unit(2.36, "feet"),
  39720. name: "Front paw",
  39721. image: {
  39722. source: "./media/characters/haloren/front-paw.svg"
  39723. }
  39724. },
  39725. hindPaw: {
  39726. height: math.unit(3.18, "feet"),
  39727. name: "Hind paw",
  39728. image: {
  39729. source: "./media/characters/haloren/hind-paw.svg"
  39730. }
  39731. },
  39732. maw: {
  39733. height: math.unit(5.05, "feet"),
  39734. name: "Maw",
  39735. image: {
  39736. source: "./media/characters/haloren/maw.svg"
  39737. }
  39738. },
  39739. dick: {
  39740. height: math.unit(2.90, "feet"),
  39741. name: "Dick",
  39742. image: {
  39743. source: "./media/characters/haloren/dick.svg"
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Normal",
  39750. height: math.unit(7 + 5/12, "feet"),
  39751. default: true
  39752. },
  39753. {
  39754. name: "Enhanced",
  39755. height: math.unit(14 + 3/12, "feet")
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(171, "cm"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/kimmy/front.svg",
  39767. extra: 1491/1435,
  39768. bottom: 53/1544
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Small",
  39775. height: math.unit(9, "cm")
  39776. },
  39777. {
  39778. name: "Normal",
  39779. height: math.unit(171, "cm"),
  39780. default: true
  39781. },
  39782. ]
  39783. ))
  39784. characterMakers.push(() => makeCharacter(
  39785. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39786. {
  39787. front: {
  39788. height: math.unit(8, "feet"),
  39789. weight: math.unit(300, "lb"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/galeboomer/front.svg",
  39793. extra: 4651/4415,
  39794. bottom: 162/4813
  39795. }
  39796. },
  39797. back: {
  39798. height: math.unit(8, "feet"),
  39799. weight: math.unit(300, "lb"),
  39800. name: "Back",
  39801. image: {
  39802. source: "./media/characters/galeboomer/back.svg",
  39803. extra: 4544/4314,
  39804. bottom: 16/4560
  39805. }
  39806. },
  39807. frontAlt: {
  39808. height: math.unit(8, "feet"),
  39809. weight: math.unit(300, "lb"),
  39810. name: "Front (Alt)",
  39811. image: {
  39812. source: "./media/characters/galeboomer/front-alt.svg",
  39813. extra: 4458/4228,
  39814. bottom: 68/4526
  39815. }
  39816. },
  39817. maw: {
  39818. height: math.unit(1.2, "feet"),
  39819. name: "Maw",
  39820. image: {
  39821. source: "./media/characters/galeboomer/maw.svg"
  39822. }
  39823. },
  39824. },
  39825. [
  39826. {
  39827. name: "Normal",
  39828. height: math.unit(8, "feet"),
  39829. default: true
  39830. },
  39831. ]
  39832. ))
  39833. characterMakers.push(() => makeCharacter(
  39834. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39835. {
  39836. front: {
  39837. height: math.unit(5 + 9/12, "feet"),
  39838. weight: math.unit(120, "lb"),
  39839. name: "Front",
  39840. image: {
  39841. source: "./media/characters/chyr/front.svg",
  39842. extra: 1323/1254,
  39843. bottom: 63/1386
  39844. }
  39845. },
  39846. back: {
  39847. height: math.unit(5 + 9/12, "feet"),
  39848. weight: math.unit(120, "lb"),
  39849. name: "Back",
  39850. image: {
  39851. source: "./media/characters/chyr/back.svg",
  39852. extra: 1323/1252,
  39853. bottom: 48/1371
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Normal",
  39860. height: math.unit(5 + 9/12, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(7, "feet"),
  39870. weight: math.unit(310, "lb"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/solarus/front.svg",
  39874. extra: 2415/2021,
  39875. bottom: 103/2518
  39876. }
  39877. },
  39878. back: {
  39879. height: math.unit(7, "feet"),
  39880. weight: math.unit(310, "lb"),
  39881. name: "Back",
  39882. image: {
  39883. source: "./media/characters/solarus/back.svg",
  39884. extra: 2463/2089,
  39885. bottom: 79/2542
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(7, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(16, "feet"),
  39902. name: "Front",
  39903. image: {
  39904. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39905. extra: 1844/1780,
  39906. bottom: 58/1902
  39907. }
  39908. },
  39909. winterCoat: {
  39910. height: math.unit(16, "feet"),
  39911. name: "Winter Coat",
  39912. image: {
  39913. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39914. extra: 1807/1775,
  39915. bottom: 69/1876
  39916. }
  39917. },
  39918. },
  39919. [
  39920. {
  39921. name: "Normal",
  39922. height: math.unit(16, "feet"),
  39923. default: true
  39924. },
  39925. {
  39926. name: "Chicago Size",
  39927. height: math.unit(560, "feet")
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(11 + 6/12, "feet"),
  39936. weight: math.unit(1366, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/lexor/front.svg",
  39940. extra: 1560/1481,
  39941. bottom: 211/1771
  39942. }
  39943. },
  39944. back: {
  39945. height: math.unit(11 + 6/12, "feet"),
  39946. weight: math.unit(1366, "lb"),
  39947. name: "Back",
  39948. image: {
  39949. source: "./media/characters/lexor/back.svg",
  39950. extra: 1614/1533,
  39951. bottom: 76/1690
  39952. }
  39953. },
  39954. maw: {
  39955. height: math.unit(3, "feet"),
  39956. name: "Maw",
  39957. image: {
  39958. source: "./media/characters/lexor/maw.svg"
  39959. }
  39960. },
  39961. dick: {
  39962. height: math.unit(2.59, "feet"),
  39963. name: "Dick",
  39964. image: {
  39965. source: "./media/characters/lexor/dick.svg"
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(11 + 6/12, "feet"),
  39973. default: true
  39974. },
  39975. ]
  39976. ))
  39977. characterMakers.push(() => makeCharacter(
  39978. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39979. {
  39980. front: {
  39981. height: math.unit(5 + 8/12, "feet"),
  39982. name: "Front",
  39983. image: {
  39984. source: "./media/characters/magnum/front.svg",
  39985. extra: 942/855,
  39986. bottom: 26/968
  39987. }
  39988. },
  39989. },
  39990. [
  39991. {
  39992. name: "Normal",
  39993. height: math.unit(5 + 8/12, "feet"),
  39994. default: true
  39995. },
  39996. ]
  39997. ))
  39998. characterMakers.push(() => makeCharacter(
  39999. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40000. {
  40001. front: {
  40002. height: math.unit(18 + 4/12, "feet"),
  40003. weight: math.unit(1500, "kg"),
  40004. name: "Front",
  40005. image: {
  40006. source: "./media/characters/solas-sharpsman/front.svg",
  40007. extra: 1698/1589,
  40008. bottom: 0/1698
  40009. }
  40010. },
  40011. },
  40012. [
  40013. {
  40014. name: "Normal",
  40015. height: math.unit(18 + 4/12, "feet"),
  40016. default: true
  40017. },
  40018. ]
  40019. ))
  40020. characterMakers.push(() => makeCharacter(
  40021. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40022. {
  40023. front: {
  40024. height: math.unit(5 + 5/12, "feet"),
  40025. weight: math.unit(180, "lb"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/october/front.svg",
  40029. extra: 1800/1650,
  40030. bottom: 0/1800
  40031. }
  40032. },
  40033. frontNsfw: {
  40034. height: math.unit(5 + 5/12, "feet"),
  40035. weight: math.unit(180, "lb"),
  40036. name: "Front (NSFW)",
  40037. image: {
  40038. source: "./media/characters/october/front-nsfw.svg",
  40039. extra: 1392/1307,
  40040. bottom: 42/1434
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(5 + 5/12, "feet"),
  40048. default: true
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40054. {
  40055. front: {
  40056. height: math.unit(8 + 6/12, "feet"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/essynkardi/front.svg",
  40060. extra: 1541/1457,
  40061. bottom: 47/1588
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(8 + 6/12, "feet"),
  40069. default: true
  40070. },
  40071. ]
  40072. ))
  40073. characterMakers.push(() => makeCharacter(
  40074. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40075. {
  40076. front: {
  40077. height: math.unit(6 + 6/12, "feet"),
  40078. weight: math.unit(7, "lb"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/icky/front.svg",
  40082. extra: 813/782,
  40083. bottom: 66/879
  40084. }
  40085. },
  40086. back: {
  40087. height: math.unit(6 + 6/12, "feet"),
  40088. weight: math.unit(7, "lb"),
  40089. name: "Back",
  40090. image: {
  40091. source: "./media/characters/icky/back.svg",
  40092. extra: 754/735,
  40093. bottom: 56/810
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(6 + 6/12, "feet"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(15, "feet"),
  40110. name: "Front",
  40111. image: {
  40112. source: "./media/characters/rojas/front.svg",
  40113. extra: 1462/1408,
  40114. bottom: 95/1557
  40115. }
  40116. },
  40117. back: {
  40118. height: math.unit(15, "feet"),
  40119. name: "Back",
  40120. image: {
  40121. source: "./media/characters/rojas/back.svg",
  40122. extra: 1023/954,
  40123. bottom: 28/1051
  40124. }
  40125. },
  40126. },
  40127. [
  40128. {
  40129. name: "Normal",
  40130. height: math.unit(15, "feet"),
  40131. default: true
  40132. },
  40133. ]
  40134. ))
  40135. characterMakers.push(() => makeCharacter(
  40136. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40137. {
  40138. frontHuman: {
  40139. height: math.unit(5 + 7/12, "feet"),
  40140. name: "Front (Human)",
  40141. image: {
  40142. source: "./media/characters/alek-dryagan/front-human.svg",
  40143. extra: 1687/1667,
  40144. bottom: 69/1756
  40145. }
  40146. },
  40147. backHuman: {
  40148. height: math.unit(5 + 7/12, "feet"),
  40149. name: "Back (Human)",
  40150. image: {
  40151. source: "./media/characters/alek-dryagan/back-human.svg",
  40152. extra: 1670/1649,
  40153. bottom: 65/1735
  40154. }
  40155. },
  40156. frontDemi: {
  40157. height: math.unit(65, "feet"),
  40158. name: "Front (Demi)",
  40159. image: {
  40160. source: "./media/characters/alek-dryagan/front-demi.svg",
  40161. extra: 1669/1642,
  40162. bottom: 49/1718
  40163. }
  40164. },
  40165. backDemi: {
  40166. height: math.unit(65, "feet"),
  40167. name: "Back (Demi)",
  40168. image: {
  40169. source: "./media/characters/alek-dryagan/back-demi.svg",
  40170. extra: 1658/1637,
  40171. bottom: 40/1698
  40172. }
  40173. },
  40174. mawHuman: {
  40175. height: math.unit(0.3, "feet"),
  40176. name: "Maw (Human)",
  40177. image: {
  40178. source: "./media/characters/alek-dryagan/maw-human.svg"
  40179. }
  40180. },
  40181. mawDemi: {
  40182. height: math.unit(3.8, "feet"),
  40183. name: "Maw (Demi)",
  40184. image: {
  40185. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40186. }
  40187. },
  40188. },
  40189. [
  40190. {
  40191. name: "Normal",
  40192. height: math.unit(5 + 7/12, "feet"),
  40193. default: true
  40194. },
  40195. ]
  40196. ))
  40197. characterMakers.push(() => makeCharacter(
  40198. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40199. {
  40200. frontHuman: {
  40201. height: math.unit(5 + 2/12, "feet"),
  40202. name: "Front (Human)",
  40203. image: {
  40204. source: "./media/characters/gen/front-human.svg",
  40205. extra: 1627/1538,
  40206. bottom: 71/1698
  40207. }
  40208. },
  40209. backHuman: {
  40210. height: math.unit(5 + 2/12, "feet"),
  40211. name: "Back (Human)",
  40212. image: {
  40213. source: "./media/characters/gen/back-human.svg",
  40214. extra: 1638/1548,
  40215. bottom: 69/1707
  40216. }
  40217. },
  40218. frontDemi: {
  40219. height: math.unit(5 + 2/12, "feet"),
  40220. name: "Front (Demi)",
  40221. image: {
  40222. source: "./media/characters/gen/front-demi.svg",
  40223. extra: 1627/1538,
  40224. bottom: 71/1698
  40225. }
  40226. },
  40227. backDemi: {
  40228. height: math.unit(5 + 2/12, "feet"),
  40229. name: "Back (Demi)",
  40230. image: {
  40231. source: "./media/characters/gen/back-demi.svg",
  40232. extra: 1638/1548,
  40233. bottom: 69/1707
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Normal",
  40240. height: math.unit(5 + 2/12, "feet"),
  40241. default: true
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40247. {
  40248. frontImp: {
  40249. height: math.unit(1 + 11/12, "feet"),
  40250. name: "Front (Imp)",
  40251. image: {
  40252. source: "./media/characters/max-kobold/front-imp.svg",
  40253. extra: 1238/1134,
  40254. bottom: 81/1319
  40255. }
  40256. },
  40257. backImp: {
  40258. height: math.unit(1 + 11/12, "feet"),
  40259. name: "Back (Imp)",
  40260. image: {
  40261. source: "./media/characters/max-kobold/back-imp.svg",
  40262. extra: 1334/1175,
  40263. bottom: 34/1368
  40264. }
  40265. },
  40266. frontDemi: {
  40267. height: math.unit(5 + 9/12, "feet"),
  40268. name: "Front (Demi)",
  40269. image: {
  40270. source: "./media/characters/max-kobold/front-demi.svg",
  40271. extra: 1715/1685,
  40272. bottom: 54/1769
  40273. }
  40274. },
  40275. backDemi: {
  40276. height: math.unit(5 + 9/12, "feet"),
  40277. name: "Back (Demi)",
  40278. image: {
  40279. source: "./media/characters/max-kobold/back-demi.svg",
  40280. extra: 1752/1729,
  40281. bottom: 41/1793
  40282. }
  40283. },
  40284. handImp: {
  40285. height: math.unit(0.45, "feet"),
  40286. name: "Hand (Imp)",
  40287. image: {
  40288. source: "./media/characters/max-kobold/hand.svg"
  40289. }
  40290. },
  40291. pawImp: {
  40292. height: math.unit(0.46, "feet"),
  40293. name: "Paw (Imp)",
  40294. image: {
  40295. source: "./media/characters/max-kobold/paw.svg"
  40296. }
  40297. },
  40298. handDemi: {
  40299. height: math.unit(0.80, "feet"),
  40300. name: "Hand (Demi)",
  40301. image: {
  40302. source: "./media/characters/max-kobold/hand.svg"
  40303. }
  40304. },
  40305. pawDemi: {
  40306. height: math.unit(1.1, "feet"),
  40307. name: "Paw (Demi)",
  40308. image: {
  40309. source: "./media/characters/max-kobold/paw.svg"
  40310. }
  40311. },
  40312. headImp: {
  40313. height: math.unit(1.33, "feet"),
  40314. name: "Head (Imp)",
  40315. image: {
  40316. source: "./media/characters/max-kobold/head-imp.svg"
  40317. }
  40318. },
  40319. mawImp: {
  40320. height: math.unit(0.75, "feet"),
  40321. name: "Maw (Imp)",
  40322. image: {
  40323. source: "./media/characters/max-kobold/maw-imp.svg"
  40324. }
  40325. },
  40326. mawDemi: {
  40327. height: math.unit(0.42, "feet"),
  40328. name: "Maw (Demi)",
  40329. image: {
  40330. source: "./media/characters/max-kobold/maw-demi.svg"
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Normal",
  40337. height: math.unit(1 + 11/12, "feet"),
  40338. default: true
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40344. {
  40345. front: {
  40346. height: math.unit(7 + 5/12, "feet"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/carbon/front.svg",
  40350. extra: 1754/1689,
  40351. bottom: 65/1819
  40352. }
  40353. },
  40354. back: {
  40355. height: math.unit(7 + 5/12, "feet"),
  40356. name: "Back",
  40357. image: {
  40358. source: "./media/characters/carbon/back.svg",
  40359. extra: 1762/1695,
  40360. bottom: 24/1786
  40361. }
  40362. },
  40363. frontGigantamax: {
  40364. height: math.unit(150, "feet"),
  40365. name: "Front (Gigantamax)",
  40366. image: {
  40367. source: "./media/characters/carbon/front-gigantamax.svg",
  40368. extra: 1826/1669,
  40369. bottom: 59/1885
  40370. }
  40371. },
  40372. backGigantamax: {
  40373. height: math.unit(150, "feet"),
  40374. name: "Back (Gigantamax)",
  40375. image: {
  40376. source: "./media/characters/carbon/back-gigantamax.svg",
  40377. extra: 1796/1653,
  40378. bottom: 53/1849
  40379. }
  40380. },
  40381. maw: {
  40382. height: math.unit(0.48, "feet"),
  40383. name: "Maw",
  40384. image: {
  40385. source: "./media/characters/carbon/maw.svg"
  40386. }
  40387. },
  40388. mawGigantamax: {
  40389. height: math.unit(7.5, "feet"),
  40390. name: "Maw (Gigantamax)",
  40391. image: {
  40392. source: "./media/characters/carbon/maw-gigantamax.svg"
  40393. }
  40394. },
  40395. },
  40396. [
  40397. {
  40398. name: "Normal",
  40399. height: math.unit(7 + 5/12, "feet"),
  40400. default: true
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(6, "feet"),
  40409. name: "Front",
  40410. image: {
  40411. source: "./media/characters/maverick/front.svg",
  40412. extra: 1672/1661,
  40413. bottom: 85/1757
  40414. }
  40415. },
  40416. back: {
  40417. height: math.unit(6, "feet"),
  40418. name: "Back",
  40419. image: {
  40420. source: "./media/characters/maverick/back.svg",
  40421. extra: 1642/1631,
  40422. bottom: 38/1680
  40423. }
  40424. },
  40425. },
  40426. [
  40427. {
  40428. name: "Normal",
  40429. height: math.unit(6, "feet"),
  40430. default: true
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40436. {
  40437. front: {
  40438. height: math.unit(15, "feet"),
  40439. weight: math.unit(615, "lb"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/grockle/front.svg",
  40443. extra: 1535/1427,
  40444. bottom: 56/1591
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Normal",
  40451. height: math.unit(15, "feet"),
  40452. default: true
  40453. },
  40454. {
  40455. name: "Large",
  40456. height: math.unit(150, "feet")
  40457. },
  40458. {
  40459. name: "Macro",
  40460. height: math.unit(1876, "feet")
  40461. },
  40462. {
  40463. name: "Mega Macro",
  40464. height: math.unit(121940, "feet")
  40465. },
  40466. {
  40467. name: "Giga Macro",
  40468. height: math.unit(750, "km")
  40469. },
  40470. {
  40471. name: "Tera Macro",
  40472. height: math.unit(750000, "km")
  40473. },
  40474. {
  40475. name: "Galactic",
  40476. height: math.unit(1.4e5, "km")
  40477. },
  40478. {
  40479. name: "Godlike",
  40480. height: math.unit(9.8e280, "galaxies")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(11, "meters"),
  40489. weight: math.unit(20, "tonnes"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/alistair/front.svg",
  40493. extra: 1265/1009,
  40494. bottom: 93/1358
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(11, "meters"),
  40502. default: true
  40503. },
  40504. ]
  40505. ))
  40506. characterMakers.push(() => makeCharacter(
  40507. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40508. {
  40509. front: {
  40510. height: math.unit(5 + 8/12, "feet"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/haruka/front.svg",
  40514. extra: 2012/1952,
  40515. bottom: 0/2012
  40516. }
  40517. },
  40518. },
  40519. [
  40520. {
  40521. name: "Normal",
  40522. height: math.unit(5 + 8/12, "feet"),
  40523. default: true
  40524. },
  40525. ]
  40526. ))
  40527. characterMakers.push(() => makeCharacter(
  40528. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40529. {
  40530. back: {
  40531. height: math.unit(9, "feet"),
  40532. name: "Back",
  40533. image: {
  40534. source: "./media/characters/vivian-sylveon/back.svg",
  40535. extra: 1853/1714,
  40536. bottom: 0/1853
  40537. }
  40538. },
  40539. hyper: {
  40540. height: math.unit(5.58, "feet"),
  40541. name: "Hyper",
  40542. preyCapacity: math.unit(2.80616218797, "m^3"),
  40543. image: {
  40544. source: "./media/characters/vivian-sylveon/hyper.svg",
  40545. extra: 999/676,
  40546. bottom: 697/1696
  40547. },
  40548. },
  40549. paw: {
  40550. height: math.unit(1.8, "feet"),
  40551. name: "Paw",
  40552. image: {
  40553. source: "./media/characters/vivian-sylveon/paw.svg"
  40554. }
  40555. },
  40556. danger: {
  40557. height: math.unit(7.5, "feet"),
  40558. name: "DANGER",
  40559. image: {
  40560. source: "./media/characters/vivian-sylveon/danger.svg"
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Normal",
  40567. height: math.unit(9, "feet"),
  40568. default: true
  40569. },
  40570. {
  40571. name: "Macro",
  40572. height: math.unit(500, "feet")
  40573. },
  40574. {
  40575. name: "Megamacro",
  40576. height: math.unit(600, "miles")
  40577. },
  40578. {
  40579. name: "Gigamacro",
  40580. height: math.unit(30000, "miles")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40586. {
  40587. anthro: {
  40588. height: math.unit(5 + 10/12, "feet"),
  40589. weight: math.unit(100, "lb"),
  40590. name: "Anthro",
  40591. image: {
  40592. source: "./media/characters/daiki/anthro.svg",
  40593. extra: 1115/1027,
  40594. bottom: 69/1184
  40595. }
  40596. },
  40597. feral: {
  40598. height: math.unit(200, "feet"),
  40599. name: "Feral",
  40600. image: {
  40601. source: "./media/characters/daiki/feral.svg",
  40602. extra: 1256/313,
  40603. bottom: 39/1295
  40604. }
  40605. },
  40606. feralHead: {
  40607. height: math.unit(171, "feet"),
  40608. name: "Feral Head",
  40609. image: {
  40610. source: "./media/characters/daiki/feral-head.svg"
  40611. }
  40612. },
  40613. manaDragon: {
  40614. height: math.unit(170, "meters"),
  40615. name: "Mana Dragon",
  40616. image: {
  40617. source: "./media/characters/daiki/mana-dragon.svg",
  40618. extra: 763/420,
  40619. bottom: 97/860
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Normal",
  40626. height: math.unit(5 + 10/12, "feet"),
  40627. default: true
  40628. },
  40629. ]
  40630. ))
  40631. characterMakers.push(() => makeCharacter(
  40632. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40633. {
  40634. fullyEquippedFront: {
  40635. height: math.unit(3 + 1/12, "feet"),
  40636. weight: math.unit(24, "lb"),
  40637. name: "Fully Equipped (Front)",
  40638. image: {
  40639. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40640. extra: 687/605,
  40641. bottom: 18/705
  40642. }
  40643. },
  40644. fullyEquippedBack: {
  40645. height: math.unit(3 + 1/12, "feet"),
  40646. weight: math.unit(24, "lb"),
  40647. name: "Fully Equipped (Back)",
  40648. image: {
  40649. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40650. extra: 689/590,
  40651. bottom: 18/707
  40652. }
  40653. },
  40654. dailyWear: {
  40655. height: math.unit(3 + 1/12, "feet"),
  40656. weight: math.unit(24, "lb"),
  40657. name: "Daily Wear",
  40658. image: {
  40659. source: "./media/characters/tea-spot/daily-wear.svg",
  40660. extra: 701/620,
  40661. bottom: 21/722
  40662. }
  40663. },
  40664. maidWork: {
  40665. height: math.unit(3 + 1/12, "feet"),
  40666. weight: math.unit(24, "lb"),
  40667. name: "Maid Work",
  40668. image: {
  40669. source: "./media/characters/tea-spot/maid-work.svg",
  40670. extra: 693/609,
  40671. bottom: 15/708
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Normal",
  40678. height: math.unit(3 + 1/12, "feet"),
  40679. default: true
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40685. {
  40686. front: {
  40687. height: math.unit(175, "cm"),
  40688. weight: math.unit(75, "kg"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/chee/front.svg",
  40692. extra: 1796/1740,
  40693. bottom: 40/1836
  40694. }
  40695. },
  40696. },
  40697. [
  40698. {
  40699. name: "Micro-Micro",
  40700. height: math.unit(1, "nm")
  40701. },
  40702. {
  40703. name: "Micro-erst",
  40704. height: math.unit(1, "micrometer")
  40705. },
  40706. {
  40707. name: "Micro-er",
  40708. height: math.unit(1, "cm")
  40709. },
  40710. {
  40711. name: "Normal",
  40712. height: math.unit(175, "cm"),
  40713. default: true
  40714. },
  40715. {
  40716. name: "Macro",
  40717. height: math.unit(100, "m")
  40718. },
  40719. {
  40720. name: "Macro-er",
  40721. height: math.unit(1, "km")
  40722. },
  40723. {
  40724. name: "Macro-erst",
  40725. height: math.unit(10, "km")
  40726. },
  40727. {
  40728. name: "Macro-Macro",
  40729. height: math.unit(100, "km")
  40730. },
  40731. ]
  40732. ))
  40733. characterMakers.push(() => makeCharacter(
  40734. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40735. {
  40736. front: {
  40737. height: math.unit(11 + 9/12, "feet"),
  40738. weight: math.unit(935, "lb"),
  40739. name: "Front",
  40740. image: {
  40741. source: "./media/characters/kingsley/front.svg",
  40742. extra: 1803/1674,
  40743. bottom: 127/1930
  40744. }
  40745. },
  40746. frontNude: {
  40747. height: math.unit(11 + 9/12, "feet"),
  40748. weight: math.unit(935, "lb"),
  40749. name: "Front (Nude)",
  40750. image: {
  40751. source: "./media/characters/kingsley/front-nude.svg",
  40752. extra: 1803/1674,
  40753. bottom: 127/1930
  40754. }
  40755. },
  40756. },
  40757. [
  40758. {
  40759. name: "Normal",
  40760. height: math.unit(11 + 9/12, "feet"),
  40761. default: true
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40767. {
  40768. side: {
  40769. height: math.unit(9, "feet"),
  40770. name: "Side",
  40771. image: {
  40772. source: "./media/characters/rymel/side.svg",
  40773. extra: 792/469,
  40774. bottom: 121/913
  40775. }
  40776. },
  40777. maw: {
  40778. height: math.unit(2.4, "meters"),
  40779. name: "Maw",
  40780. image: {
  40781. source: "./media/characters/rymel/maw.svg"
  40782. }
  40783. },
  40784. },
  40785. [
  40786. {
  40787. name: "House Drake",
  40788. height: math.unit(2, "feet")
  40789. },
  40790. {
  40791. name: "Reduced",
  40792. height: math.unit(4.5, "feet")
  40793. },
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(9, "feet"),
  40797. default: true
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40803. {
  40804. front: {
  40805. height: math.unit(1.74, "meters"),
  40806. weight: math.unit(55, "kg"),
  40807. name: "Front",
  40808. image: {
  40809. source: "./media/characters/rubus/front.svg",
  40810. extra: 1894/1742,
  40811. bottom: 44/1938
  40812. }
  40813. },
  40814. },
  40815. [
  40816. {
  40817. name: "Normal",
  40818. height: math.unit(1.74, "meters"),
  40819. default: true
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(5 + 2/12, "feet"),
  40828. weight: math.unit(112, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/cassie-kingston/front.svg",
  40832. extra: 1438/1390,
  40833. bottom: 47/1485
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(5 + 2/12, "feet"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Macro",
  40845. height: math.unit(128, "feet")
  40846. },
  40847. {
  40848. name: "Megamacro",
  40849. height: math.unit(2.56, "miles")
  40850. },
  40851. ]
  40852. ))
  40853. characterMakers.push(() => makeCharacter(
  40854. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40855. {
  40856. front: {
  40857. height: math.unit(7, "feet"),
  40858. name: "Front",
  40859. image: {
  40860. source: "./media/characters/fox/front.svg",
  40861. extra: 1798/1703,
  40862. bottom: 55/1853
  40863. }
  40864. },
  40865. back: {
  40866. height: math.unit(7, "feet"),
  40867. name: "Back",
  40868. image: {
  40869. source: "./media/characters/fox/back.svg",
  40870. extra: 1748/1649,
  40871. bottom: 32/1780
  40872. }
  40873. },
  40874. head: {
  40875. height: math.unit(1.95, "feet"),
  40876. name: "Head",
  40877. image: {
  40878. source: "./media/characters/fox/head.svg"
  40879. }
  40880. },
  40881. dick: {
  40882. height: math.unit(1.33, "feet"),
  40883. name: "Dick",
  40884. image: {
  40885. source: "./media/characters/fox/dick.svg"
  40886. }
  40887. },
  40888. foot: {
  40889. height: math.unit(1, "feet"),
  40890. name: "Foot",
  40891. image: {
  40892. source: "./media/characters/fox/foot.svg"
  40893. }
  40894. },
  40895. paw: {
  40896. height: math.unit(0.92, "feet"),
  40897. name: "Paw",
  40898. image: {
  40899. source: "./media/characters/fox/paw.svg"
  40900. }
  40901. },
  40902. },
  40903. [
  40904. {
  40905. name: "Small",
  40906. height: math.unit(3, "inches")
  40907. },
  40908. {
  40909. name: "\"Realistic\"",
  40910. height: math.unit(7, "feet")
  40911. },
  40912. {
  40913. name: "Normal",
  40914. height: math.unit(150, "feet"),
  40915. default: true
  40916. },
  40917. {
  40918. name: "BIG",
  40919. height: math.unit(1200, "feet")
  40920. },
  40921. {
  40922. name: "👀",
  40923. height: math.unit(5, "miles")
  40924. },
  40925. {
  40926. name: "👀👀👀",
  40927. height: math.unit(64, "miles")
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(625, "feet"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/asonja-rossa/front.svg",
  40939. extra: 1833/1686,
  40940. bottom: 24/1857
  40941. }
  40942. },
  40943. back: {
  40944. height: math.unit(625, "feet"),
  40945. name: "Back",
  40946. image: {
  40947. source: "./media/characters/asonja-rossa/back.svg",
  40948. extra: 1852/1753,
  40949. bottom: 26/1878
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Macro",
  40956. height: math.unit(625, "feet"),
  40957. default: true
  40958. },
  40959. ]
  40960. ))
  40961. characterMakers.push(() => makeCharacter(
  40962. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40963. {
  40964. side: {
  40965. height: math.unit(8, "feet"),
  40966. name: "Side",
  40967. image: {
  40968. source: "./media/characters/rezukii/side.svg",
  40969. extra: 979/542,
  40970. bottom: 87/1066
  40971. }
  40972. },
  40973. sitting: {
  40974. height: math.unit(14.6, "feet"),
  40975. name: "Sitting",
  40976. image: {
  40977. source: "./media/characters/rezukii/sitting.svg",
  40978. extra: 1023/813,
  40979. bottom: 45/1068
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Tiny",
  40986. height: math.unit(2, "feet")
  40987. },
  40988. {
  40989. name: "Smol",
  40990. height: math.unit(4, "feet")
  40991. },
  40992. {
  40993. name: "Normal",
  40994. height: math.unit(8, "feet"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Big",
  40999. height: math.unit(12, "feet")
  41000. },
  41001. {
  41002. name: "Macro",
  41003. height: math.unit(30, "feet")
  41004. },
  41005. ]
  41006. ))
  41007. characterMakers.push(() => makeCharacter(
  41008. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41009. {
  41010. front: {
  41011. height: math.unit(14, "feet"),
  41012. weight: math.unit(9.5, "tonnes"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/dawnheart/front.svg",
  41016. extra: 2792/2675,
  41017. bottom: 64/2856
  41018. }
  41019. },
  41020. },
  41021. [
  41022. {
  41023. name: "Normal",
  41024. height: math.unit(14, "feet"),
  41025. default: true
  41026. },
  41027. ]
  41028. ))
  41029. characterMakers.push(() => makeCharacter(
  41030. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41031. {
  41032. front: {
  41033. height: math.unit(1.7, "m"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/gladi/front.svg",
  41037. extra: 1460/1362,
  41038. bottom: 19/1479
  41039. }
  41040. },
  41041. back: {
  41042. height: math.unit(1.7, "m"),
  41043. name: "Back",
  41044. image: {
  41045. source: "./media/characters/gladi/back.svg",
  41046. extra: 1459/1357,
  41047. bottom: 12/1471
  41048. }
  41049. },
  41050. feral: {
  41051. height: math.unit(2.05, "m"),
  41052. name: "Feral",
  41053. image: {
  41054. source: "./media/characters/gladi/feral.svg",
  41055. extra: 821/557,
  41056. bottom: 91/912
  41057. }
  41058. },
  41059. },
  41060. [
  41061. {
  41062. name: "Shortest",
  41063. height: math.unit(70, "cm")
  41064. },
  41065. {
  41066. name: "Normal",
  41067. height: math.unit(1.7, "m")
  41068. },
  41069. {
  41070. name: "Macro",
  41071. height: math.unit(10, "m"),
  41072. default: true
  41073. },
  41074. {
  41075. name: "Tallest",
  41076. height: math.unit(200, "m")
  41077. },
  41078. ]
  41079. ))
  41080. characterMakers.push(() => makeCharacter(
  41081. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41082. {
  41083. front: {
  41084. height: math.unit(5 + 7/12, "feet"),
  41085. weight: math.unit(2, "tons"),
  41086. name: "Front",
  41087. image: {
  41088. source: "./media/characters/erdno/front.svg",
  41089. extra: 1234/1129,
  41090. bottom: 35/1269
  41091. }
  41092. },
  41093. angled: {
  41094. height: math.unit(5 + 7/12, "feet"),
  41095. weight: math.unit(2, "tons"),
  41096. name: "Angled",
  41097. image: {
  41098. source: "./media/characters/erdno/angled.svg",
  41099. extra: 1185/1139,
  41100. bottom: 36/1221
  41101. }
  41102. },
  41103. side: {
  41104. height: math.unit(5 + 7/12, "feet"),
  41105. weight: math.unit(2, "tons"),
  41106. name: "Side",
  41107. image: {
  41108. source: "./media/characters/erdno/side.svg",
  41109. extra: 1191/1144,
  41110. bottom: 40/1231
  41111. }
  41112. },
  41113. back: {
  41114. height: math.unit(5 + 7/12, "feet"),
  41115. weight: math.unit(2, "tons"),
  41116. name: "Back",
  41117. image: {
  41118. source: "./media/characters/erdno/back.svg",
  41119. extra: 1202/1146,
  41120. bottom: 17/1219
  41121. }
  41122. },
  41123. frontNsfw: {
  41124. height: math.unit(5 + 7/12, "feet"),
  41125. weight: math.unit(2, "tons"),
  41126. name: "Front (NSFW)",
  41127. image: {
  41128. source: "./media/characters/erdno/front-nsfw.svg",
  41129. extra: 1234/1129,
  41130. bottom: 35/1269
  41131. }
  41132. },
  41133. angledNsfw: {
  41134. height: math.unit(5 + 7/12, "feet"),
  41135. weight: math.unit(2, "tons"),
  41136. name: "Angled (NSFW)",
  41137. image: {
  41138. source: "./media/characters/erdno/angled-nsfw.svg",
  41139. extra: 1185/1139,
  41140. bottom: 36/1221
  41141. }
  41142. },
  41143. sideNsfw: {
  41144. height: math.unit(5 + 7/12, "feet"),
  41145. weight: math.unit(2, "tons"),
  41146. name: "Side (NSFW)",
  41147. image: {
  41148. source: "./media/characters/erdno/side-nsfw.svg",
  41149. extra: 1191/1144,
  41150. bottom: 40/1231
  41151. }
  41152. },
  41153. backNsfw: {
  41154. height: math.unit(5 + 7/12, "feet"),
  41155. weight: math.unit(2, "tons"),
  41156. name: "Back (NSFW)",
  41157. image: {
  41158. source: "./media/characters/erdno/back-nsfw.svg",
  41159. extra: 1202/1146,
  41160. bottom: 17/1219
  41161. }
  41162. },
  41163. frontHyper: {
  41164. height: math.unit(5 + 7/12, "feet"),
  41165. weight: math.unit(2, "tons"),
  41166. name: "Front (Hyper)",
  41167. image: {
  41168. source: "./media/characters/erdno/front-hyper.svg",
  41169. extra: 1298/1136,
  41170. bottom: 35/1333
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Normal",
  41177. height: math.unit(5 + 7/12, "feet"),
  41178. default: true
  41179. },
  41180. {
  41181. name: "Big",
  41182. height: math.unit(5.7, "meters")
  41183. },
  41184. {
  41185. name: "Macro",
  41186. height: math.unit(5.7, "kilometers")
  41187. },
  41188. {
  41189. name: "Megamacro",
  41190. height: math.unit(5.7, "earths")
  41191. },
  41192. ]
  41193. ))
  41194. characterMakers.push(() => makeCharacter(
  41195. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41196. {
  41197. front: {
  41198. height: math.unit(5 + 10/12, "feet"),
  41199. weight: math.unit(150, "lb"),
  41200. name: "Front",
  41201. image: {
  41202. source: "./media/characters/jamie/front.svg",
  41203. extra: 1908/1768,
  41204. bottom: 19/1927
  41205. }
  41206. },
  41207. },
  41208. [
  41209. {
  41210. name: "Minimum",
  41211. height: math.unit(2, "cm")
  41212. },
  41213. {
  41214. name: "Micro",
  41215. height: math.unit(3, "inches")
  41216. },
  41217. {
  41218. name: "Normal",
  41219. height: math.unit(5 + 10/12, "feet"),
  41220. default: true
  41221. },
  41222. {
  41223. name: "Macro",
  41224. height: math.unit(150, "feet")
  41225. },
  41226. {
  41227. name: "Megamacro",
  41228. height: math.unit(10000, "m")
  41229. },
  41230. ]
  41231. ))
  41232. characterMakers.push(() => makeCharacter(
  41233. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41234. {
  41235. front: {
  41236. height: math.unit(2, "meters"),
  41237. weight: math.unit(100, "kg"),
  41238. name: "Front",
  41239. image: {
  41240. source: "./media/characters/shiron/front.svg",
  41241. extra: 2103/1985,
  41242. bottom: 98/2201
  41243. }
  41244. },
  41245. back: {
  41246. height: math.unit(2, "meters"),
  41247. weight: math.unit(100, "kg"),
  41248. name: "Back",
  41249. image: {
  41250. source: "./media/characters/shiron/back.svg",
  41251. extra: 2110/2015,
  41252. bottom: 89/2199
  41253. }
  41254. },
  41255. hand: {
  41256. height: math.unit(0.96, "feet"),
  41257. name: "Hand",
  41258. image: {
  41259. source: "./media/characters/shiron/hand.svg"
  41260. }
  41261. },
  41262. foot: {
  41263. height: math.unit(1.464, "feet"),
  41264. name: "Foot",
  41265. image: {
  41266. source: "./media/characters/shiron/foot.svg"
  41267. }
  41268. },
  41269. },
  41270. [
  41271. {
  41272. name: "Normal",
  41273. height: math.unit(2, "meters")
  41274. },
  41275. {
  41276. name: "Macro",
  41277. height: math.unit(500, "meters"),
  41278. default: true
  41279. },
  41280. {
  41281. name: "Megamacro",
  41282. height: math.unit(20, "km")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(6, "feet"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/sam/front.svg",
  41294. extra: 849/826,
  41295. bottom: 19/868
  41296. }
  41297. },
  41298. },
  41299. [
  41300. {
  41301. name: "Normal",
  41302. height: math.unit(6, "feet"),
  41303. default: true
  41304. },
  41305. ]
  41306. ))
  41307. characterMakers.push(() => makeCharacter(
  41308. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41309. {
  41310. front: {
  41311. height: math.unit(8 + 4/12, "feet"),
  41312. weight: math.unit(122, "kg"),
  41313. name: "Front",
  41314. image: {
  41315. source: "./media/characters/namori-kurogawa/front.svg",
  41316. extra: 1894/1576,
  41317. bottom: 34/1928
  41318. }
  41319. },
  41320. },
  41321. [
  41322. {
  41323. name: "Normal",
  41324. height: math.unit(8 + 4/12, "feet"),
  41325. default: true
  41326. },
  41327. ]
  41328. ))
  41329. characterMakers.push(() => makeCharacter(
  41330. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41331. {
  41332. front: {
  41333. height: math.unit(9, "feet"),
  41334. weight: math.unit(621, "lb"),
  41335. name: "Front",
  41336. image: {
  41337. source: "./media/characters/unmru/front.svg",
  41338. extra: 1853/1747,
  41339. bottom: 73/1926
  41340. }
  41341. },
  41342. side: {
  41343. height: math.unit(9, "feet"),
  41344. weight: math.unit(621, "lb"),
  41345. name: "Side",
  41346. image: {
  41347. source: "./media/characters/unmru/side.svg",
  41348. extra: 1781/1671,
  41349. bottom: 127/1908
  41350. }
  41351. },
  41352. back: {
  41353. height: math.unit(9, "feet"),
  41354. weight: math.unit(621, "lb"),
  41355. name: "Back",
  41356. image: {
  41357. source: "./media/characters/unmru/back.svg",
  41358. extra: 1894/1765,
  41359. bottom: 75/1969
  41360. }
  41361. },
  41362. dick: {
  41363. height: math.unit(3, "feet"),
  41364. weight: math.unit(35, "lb"),
  41365. name: "Dick",
  41366. image: {
  41367. source: "./media/characters/unmru/dick.svg"
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(9, "feet")
  41375. },
  41376. {
  41377. name: "Natural",
  41378. height: math.unit(27, "feet"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Giant",
  41383. height: math.unit(90, "feet")
  41384. },
  41385. {
  41386. name: "Kaiju",
  41387. height: math.unit(270, "feet")
  41388. },
  41389. {
  41390. name: "Macro",
  41391. height: math.unit(900, "feet")
  41392. },
  41393. {
  41394. name: "Macro+",
  41395. height: math.unit(2700, "feet")
  41396. },
  41397. {
  41398. name: "Megamacro",
  41399. height: math.unit(9000, "feet")
  41400. },
  41401. {
  41402. name: "City-Crushing",
  41403. height: math.unit(27000, "feet")
  41404. },
  41405. {
  41406. name: "Mountain-Mashing",
  41407. height: math.unit(90000, "feet")
  41408. },
  41409. {
  41410. name: "Earth-Eclipsing",
  41411. height: math.unit(2.7e8, "feet")
  41412. },
  41413. {
  41414. name: "Sol-Swallowing",
  41415. height: math.unit(9e10, "feet")
  41416. },
  41417. {
  41418. name: "Majoris-Munching",
  41419. height: math.unit(2.7e13, "feet")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41425. {
  41426. front: {
  41427. height: math.unit(1, "inch"),
  41428. name: "Front",
  41429. image: {
  41430. source: "./media/characters/squeaks-mouse/front.svg",
  41431. extra: 352/308,
  41432. bottom: 25/377
  41433. }
  41434. },
  41435. },
  41436. [
  41437. {
  41438. name: "Micro",
  41439. height: math.unit(1, "inch"),
  41440. default: true
  41441. },
  41442. ]
  41443. ))
  41444. characterMakers.push(() => makeCharacter(
  41445. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41446. {
  41447. side: {
  41448. height: math.unit(35, "feet"),
  41449. name: "Side",
  41450. image: {
  41451. source: "./media/characters/sayko/side.svg",
  41452. extra: 1697/1021,
  41453. bottom: 82/1779
  41454. }
  41455. },
  41456. head: {
  41457. height: math.unit(16, "feet"),
  41458. name: "Head",
  41459. image: {
  41460. source: "./media/characters/sayko/head.svg"
  41461. }
  41462. },
  41463. forepaw: {
  41464. height: math.unit(7.85, "feet"),
  41465. name: "Forepaw",
  41466. image: {
  41467. source: "./media/characters/sayko/forepaw.svg"
  41468. }
  41469. },
  41470. hindpaw: {
  41471. height: math.unit(8.8, "feet"),
  41472. name: "Hindpaw",
  41473. image: {
  41474. source: "./media/characters/sayko/hindpaw.svg"
  41475. }
  41476. },
  41477. },
  41478. [
  41479. {
  41480. name: "Normal",
  41481. height: math.unit(35, "feet"),
  41482. default: true
  41483. },
  41484. {
  41485. name: "Colossus",
  41486. height: math.unit(100, "meters")
  41487. },
  41488. {
  41489. name: "\"Small\" Deity",
  41490. height: math.unit(1, "km")
  41491. },
  41492. {
  41493. name: "\"Large\" Deity",
  41494. height: math.unit(15, "km")
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41500. {
  41501. front: {
  41502. height: math.unit(6, "feet"),
  41503. weight: math.unit(250, "lb"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/mukiro/front.svg",
  41507. extra: 1368/1310,
  41508. bottom: 34/1402
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(6, "feet"),
  41516. default: true
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(12 + 4/12, "feet"),
  41525. name: "Front",
  41526. image: {
  41527. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41528. extra: 1346/1311,
  41529. bottom: 65/1411
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Base",
  41536. height: math.unit(12 + 4/12, "feet"),
  41537. default: true
  41538. },
  41539. {
  41540. name: "Macro",
  41541. height: math.unit(150, "feet")
  41542. },
  41543. {
  41544. name: "Mega",
  41545. height: math.unit(2, "miles")
  41546. },
  41547. {
  41548. name: "Demi God",
  41549. height: math.unit(4, "AU")
  41550. },
  41551. {
  41552. name: "God Size",
  41553. height: math.unit(1, "universe")
  41554. },
  41555. ]
  41556. ))
  41557. characterMakers.push(() => makeCharacter(
  41558. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41559. {
  41560. front: {
  41561. height: math.unit(3 + 3/12, "feet"),
  41562. weight: math.unit(88, "lb"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/trey/front.svg",
  41566. extra: 1815/1509,
  41567. bottom: 60/1875
  41568. }
  41569. },
  41570. },
  41571. [
  41572. {
  41573. name: "Normal",
  41574. height: math.unit(3 + 3/12, "feet"),
  41575. default: true
  41576. },
  41577. ]
  41578. ))
  41579. characterMakers.push(() => makeCharacter(
  41580. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41581. {
  41582. front: {
  41583. height: math.unit(4, "meters"),
  41584. name: "Front",
  41585. image: {
  41586. source: "./media/characters/adelonda/front.svg",
  41587. extra: 1077/982,
  41588. bottom: 39/1116
  41589. }
  41590. },
  41591. back: {
  41592. height: math.unit(4, "meters"),
  41593. name: "Back",
  41594. image: {
  41595. source: "./media/characters/adelonda/back.svg",
  41596. extra: 1105/1003,
  41597. bottom: 25/1130
  41598. }
  41599. },
  41600. feral: {
  41601. height: math.unit(40/1.5, "meters"),
  41602. name: "Feral",
  41603. image: {
  41604. source: "./media/characters/adelonda/feral.svg",
  41605. extra: 597/271,
  41606. bottom: 387/984
  41607. }
  41608. },
  41609. },
  41610. [
  41611. {
  41612. name: "Normal",
  41613. height: math.unit(4, "meters"),
  41614. default: true
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41620. {
  41621. front: {
  41622. height: math.unit(8 + 4/12, "feet"),
  41623. weight: math.unit(670, "lb"),
  41624. name: "Front",
  41625. image: {
  41626. source: "./media/characters/acadiel/front.svg",
  41627. extra: 1901/1595,
  41628. bottom: 142/2043
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(8 + 4/12, "feet"),
  41636. default: true
  41637. },
  41638. {
  41639. name: "Macro",
  41640. height: math.unit(200, "feet")
  41641. },
  41642. ]
  41643. ))
  41644. characterMakers.push(() => makeCharacter(
  41645. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41646. {
  41647. front: {
  41648. height: math.unit(6 + 2/12, "feet"),
  41649. weight: math.unit(185, "lb"),
  41650. name: "Front",
  41651. image: {
  41652. source: "./media/characters/kayne-ein/front.svg",
  41653. extra: 1780/1560,
  41654. bottom: 81/1861
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Normal",
  41661. height: math.unit(6 + 2/12, "feet"),
  41662. default: true
  41663. },
  41664. {
  41665. name: "Transformation Stage",
  41666. height: math.unit(15, "feet")
  41667. },
  41668. {
  41669. name: "Macro",
  41670. height: math.unit(150, "feet")
  41671. },
  41672. {
  41673. name: "Earth's Shadow",
  41674. height: math.unit(6200, "miles")
  41675. },
  41676. {
  41677. name: "Universal Demon",
  41678. height: math.unit(28e9, "parsecs")
  41679. },
  41680. {
  41681. name: "Multiverse God",
  41682. height: math.unit(3, "multiverses")
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41688. {
  41689. front: {
  41690. height: math.unit(5 + 5/12, "feet"),
  41691. name: "Front",
  41692. image: {
  41693. source: "./media/characters/fawn/front.svg",
  41694. extra: 1873/1731,
  41695. bottom: 95/1968
  41696. }
  41697. },
  41698. back: {
  41699. height: math.unit(5 + 5/12, "feet"),
  41700. name: "Back",
  41701. image: {
  41702. source: "./media/characters/fawn/back.svg",
  41703. extra: 1813/1700,
  41704. bottom: 14/1827
  41705. }
  41706. },
  41707. hoof: {
  41708. height: math.unit(1.45, "feet"),
  41709. name: "Hoof",
  41710. image: {
  41711. source: "./media/characters/fawn/hoof.svg"
  41712. }
  41713. },
  41714. },
  41715. [
  41716. {
  41717. name: "Normal",
  41718. height: math.unit(5 + 5/12, "feet"),
  41719. default: true
  41720. },
  41721. ]
  41722. ))
  41723. characterMakers.push(() => makeCharacter(
  41724. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41725. {
  41726. front: {
  41727. height: math.unit(2 + 5/12, "feet"),
  41728. name: "Front",
  41729. image: {
  41730. source: "./media/characters/orion/front.svg",
  41731. extra: 1366/1304,
  41732. bottom: 43/1409
  41733. }
  41734. },
  41735. paw: {
  41736. height: math.unit(0.52, "feet"),
  41737. name: "Paw",
  41738. image: {
  41739. source: "./media/characters/orion/paw.svg"
  41740. }
  41741. },
  41742. },
  41743. [
  41744. {
  41745. name: "Normal",
  41746. height: math.unit(2 + 5/12, "feet"),
  41747. default: true
  41748. },
  41749. ]
  41750. ))
  41751. characterMakers.push(() => makeCharacter(
  41752. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41753. {
  41754. front: {
  41755. height: math.unit(5 + 10/12, "feet"),
  41756. name: "Front",
  41757. image: {
  41758. source: "./media/characters/vera/front.svg",
  41759. extra: 1680/1575,
  41760. bottom: 49/1729
  41761. }
  41762. },
  41763. back: {
  41764. height: math.unit(5 + 10/12, "feet"),
  41765. name: "Back",
  41766. image: {
  41767. source: "./media/characters/vera/back.svg",
  41768. extra: 1700/1588,
  41769. bottom: 18/1718
  41770. }
  41771. },
  41772. arcanine: {
  41773. height: math.unit(6 + 8/12, "feet"),
  41774. name: "Arcanine",
  41775. image: {
  41776. source: "./media/characters/vera/arcanine.svg",
  41777. extra: 1590/1511,
  41778. bottom: 71/1661
  41779. }
  41780. },
  41781. maw: {
  41782. height: math.unit(0.82, "feet"),
  41783. name: "Maw",
  41784. image: {
  41785. source: "./media/characters/vera/maw.svg"
  41786. }
  41787. },
  41788. mawArcanine: {
  41789. height: math.unit(0.97, "feet"),
  41790. name: "Maw (Arcanine)",
  41791. image: {
  41792. source: "./media/characters/vera/maw-arcanine.svg"
  41793. }
  41794. },
  41795. paw: {
  41796. height: math.unit(0.75, "feet"),
  41797. name: "Paw",
  41798. image: {
  41799. source: "./media/characters/vera/paw.svg"
  41800. }
  41801. },
  41802. pawprint: {
  41803. height: math.unit(0.52, "feet"),
  41804. name: "Pawprint",
  41805. image: {
  41806. source: "./media/characters/vera/pawprint.svg"
  41807. }
  41808. },
  41809. },
  41810. [
  41811. {
  41812. name: "Normal",
  41813. height: math.unit(5 + 10/12, "feet"),
  41814. default: true
  41815. },
  41816. {
  41817. name: "Macro",
  41818. height: math.unit(75, "feet")
  41819. },
  41820. ]
  41821. ))
  41822. characterMakers.push(() => makeCharacter(
  41823. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41824. {
  41825. front: {
  41826. height: math.unit(4, "feet"),
  41827. weight: math.unit(40, "lb"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/orvan-rabbit/front.svg",
  41831. extra: 1896/1642,
  41832. bottom: 29/1925
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Normal",
  41839. height: math.unit(4, "feet"),
  41840. default: true
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(6, "feet"),
  41849. weight: math.unit(168, "lb"),
  41850. name: "Front",
  41851. image: {
  41852. source: "./media/characters/lisa/front.svg",
  41853. extra: 2065/1867,
  41854. bottom: 46/2111
  41855. }
  41856. },
  41857. back: {
  41858. height: math.unit(6, "feet"),
  41859. weight: math.unit(168, "lb"),
  41860. name: "Back",
  41861. image: {
  41862. source: "./media/characters/lisa/back.svg",
  41863. extra: 1982/1838,
  41864. bottom: 29/2011
  41865. }
  41866. },
  41867. maw: {
  41868. height: math.unit(0.81, "feet"),
  41869. name: "Maw",
  41870. image: {
  41871. source: "./media/characters/lisa/maw.svg"
  41872. }
  41873. },
  41874. paw: {
  41875. height: math.unit(0.9, "feet"),
  41876. name: "Paw",
  41877. image: {
  41878. source: "./media/characters/lisa/paw.svg"
  41879. }
  41880. },
  41881. caribousune: {
  41882. height: math.unit(7 + 2/12, "feet"),
  41883. weight: math.unit(268, "lb"),
  41884. name: "Caribousune",
  41885. image: {
  41886. source: "./media/characters/lisa/caribousune.svg",
  41887. extra: 1843/1633,
  41888. bottom: 29/1872
  41889. }
  41890. },
  41891. frontCaribousune: {
  41892. height: math.unit(7 + 2/12, "feet"),
  41893. weight: math.unit(268, "lb"),
  41894. name: "Front (Caribousune)",
  41895. image: {
  41896. source: "./media/characters/lisa/front-caribousune.svg",
  41897. extra: 1818/1638,
  41898. bottom: 52/1870
  41899. }
  41900. },
  41901. sideCaribousune: {
  41902. height: math.unit(7 + 2/12, "feet"),
  41903. weight: math.unit(268, "lb"),
  41904. name: "Side (Caribousune)",
  41905. image: {
  41906. source: "./media/characters/lisa/side-caribousune.svg",
  41907. extra: 1851/1635,
  41908. bottom: 16/1867
  41909. }
  41910. },
  41911. backCaribousune: {
  41912. height: math.unit(7 + 2/12, "feet"),
  41913. weight: math.unit(268, "lb"),
  41914. name: "Back (Caribousune)",
  41915. image: {
  41916. source: "./media/characters/lisa/back-caribousune.svg",
  41917. extra: 1801/1604,
  41918. bottom: 44/1845
  41919. }
  41920. },
  41921. caribou: {
  41922. height: math.unit(7 + 2/12, "feet"),
  41923. weight: math.unit(268, "lb"),
  41924. name: "Caribou",
  41925. image: {
  41926. source: "./media/characters/lisa/caribou.svg",
  41927. extra: 1843/1633,
  41928. bottom: 29/1872
  41929. }
  41930. },
  41931. frontCaribou: {
  41932. height: math.unit(7 + 2/12, "feet"),
  41933. weight: math.unit(268, "lb"),
  41934. name: "Front (Caribou)",
  41935. image: {
  41936. source: "./media/characters/lisa/front-caribou.svg",
  41937. extra: 1818/1638,
  41938. bottom: 52/1870
  41939. }
  41940. },
  41941. sideCaribou: {
  41942. height: math.unit(7 + 2/12, "feet"),
  41943. weight: math.unit(268, "lb"),
  41944. name: "Side (Caribou)",
  41945. image: {
  41946. source: "./media/characters/lisa/side-caribou.svg",
  41947. extra: 1851/1635,
  41948. bottom: 16/1867
  41949. }
  41950. },
  41951. backCaribou: {
  41952. height: math.unit(7 + 2/12, "feet"),
  41953. weight: math.unit(268, "lb"),
  41954. name: "Back (Caribou)",
  41955. image: {
  41956. source: "./media/characters/lisa/back-caribou.svg",
  41957. extra: 1801/1604,
  41958. bottom: 44/1845
  41959. }
  41960. },
  41961. mawCaribou: {
  41962. height: math.unit(1.45, "feet"),
  41963. name: "Maw (Caribou)",
  41964. image: {
  41965. source: "./media/characters/lisa/maw-caribou.svg"
  41966. }
  41967. },
  41968. mawCaribousune: {
  41969. height: math.unit(1.45, "feet"),
  41970. name: "Maw (Caribousune)",
  41971. image: {
  41972. source: "./media/characters/lisa/maw-caribousune.svg"
  41973. }
  41974. },
  41975. pawCaribousune: {
  41976. height: math.unit(1.61, "feet"),
  41977. name: "Paw (Caribou)",
  41978. image: {
  41979. source: "./media/characters/lisa/paw-caribousune.svg"
  41980. }
  41981. },
  41982. },
  41983. [
  41984. {
  41985. name: "Normal",
  41986. height: math.unit(6, "feet")
  41987. },
  41988. {
  41989. name: "God Size",
  41990. height: math.unit(72, "feet"),
  41991. default: true
  41992. },
  41993. {
  41994. name: "Towering",
  41995. height: math.unit(288, "feet")
  41996. },
  41997. {
  41998. name: "City Size",
  41999. height: math.unit(48384, "feet")
  42000. },
  42001. {
  42002. name: "Continental",
  42003. height: math.unit(4200, "miles")
  42004. },
  42005. {
  42006. name: "Planet Eater",
  42007. height: math.unit(42, "earths")
  42008. },
  42009. {
  42010. name: "Star Swallower",
  42011. height: math.unit(42, "solarradii")
  42012. },
  42013. {
  42014. name: "System Swallower",
  42015. height: math.unit(84000, "AU")
  42016. },
  42017. {
  42018. name: "Galaxy Gobbler",
  42019. height: math.unit(42, "galaxies")
  42020. },
  42021. {
  42022. name: "Universe Devourer",
  42023. height: math.unit(42, "universes")
  42024. },
  42025. {
  42026. name: "Multiverse Muncher",
  42027. height: math.unit(42, "multiverses")
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(36, "feet"),
  42036. name: "Front",
  42037. image: {
  42038. source: "./media/characters/shadow-rat/front.svg",
  42039. extra: 1845/1758,
  42040. bottom: 83/1928
  42041. }
  42042. },
  42043. },
  42044. [
  42045. {
  42046. name: "Macro",
  42047. height: math.unit(36, "feet"),
  42048. default: true
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42054. {
  42055. side: {
  42056. height: math.unit(8, "feet"),
  42057. weight: math.unit(2630, "lb"),
  42058. name: "Side",
  42059. image: {
  42060. source: "./media/characters/torallia/side.svg",
  42061. extra: 2164/2021,
  42062. bottom: 371/2535
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Mortal Interaction",
  42069. height: math.unit(8, "feet")
  42070. },
  42071. {
  42072. name: "Natural",
  42073. height: math.unit(24, "feet"),
  42074. default: true
  42075. },
  42076. {
  42077. name: "Giant",
  42078. height: math.unit(80, "feet")
  42079. },
  42080. {
  42081. name: "Kaiju",
  42082. height: math.unit(240, "feet")
  42083. },
  42084. {
  42085. name: "Macro",
  42086. height: math.unit(800, "feet")
  42087. },
  42088. {
  42089. name: "Macro+",
  42090. height: math.unit(2400, "feet")
  42091. },
  42092. {
  42093. name: "Macro++",
  42094. height: math.unit(8000, "feet")
  42095. },
  42096. {
  42097. name: "City-Crushing",
  42098. height: math.unit(24000, "feet")
  42099. },
  42100. {
  42101. name: "Mountain-Mashing",
  42102. height: math.unit(80000, "feet")
  42103. },
  42104. {
  42105. name: "District Demolisher",
  42106. height: math.unit(240000, "feet")
  42107. },
  42108. {
  42109. name: "Tri-County Terror",
  42110. height: math.unit(800000, "feet")
  42111. },
  42112. {
  42113. name: "State Smasher",
  42114. height: math.unit(2.4e6, "feet")
  42115. },
  42116. {
  42117. name: "Nation Nemesis",
  42118. height: math.unit(8e6, "feet")
  42119. },
  42120. {
  42121. name: "Continent Cracker",
  42122. height: math.unit(2.4e7, "feet")
  42123. },
  42124. {
  42125. name: "Planet-Pillaging",
  42126. height: math.unit(8e7, "feet")
  42127. },
  42128. {
  42129. name: "Earth-Eclipsing",
  42130. height: math.unit(2.4e8, "feet")
  42131. },
  42132. {
  42133. name: "Jovian-Jostling",
  42134. height: math.unit(8e8, "feet")
  42135. },
  42136. {
  42137. name: "Gas Giant Gulper",
  42138. height: math.unit(2.4e9, "feet")
  42139. },
  42140. {
  42141. name: "Astral Annihilator",
  42142. height: math.unit(8e9, "feet")
  42143. },
  42144. {
  42145. name: "Celestial Conqueror",
  42146. height: math.unit(2.4e10, "feet")
  42147. },
  42148. {
  42149. name: "Sol-Swallowing",
  42150. height: math.unit(8e10, "feet")
  42151. },
  42152. {
  42153. name: "Hunter of the Heavens",
  42154. height: math.unit(2.4e13, "feet")
  42155. },
  42156. ]
  42157. ))
  42158. characterMakers.push(() => makeCharacter(
  42159. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42160. {
  42161. front: {
  42162. height: math.unit(10, "feet"),
  42163. weight: math.unit(844, "kilograms"),
  42164. name: "Front",
  42165. image: {
  42166. source: "./media/characters/rebecca-pawlson/front.svg",
  42167. extra: 1196/1099,
  42168. bottom: 81/1277
  42169. },
  42170. extraAttributes: {
  42171. "pawSize": {
  42172. name: "Paw Size",
  42173. power: 2,
  42174. type: "area",
  42175. base: math.unit(0.2 * 0.375, "meters^2")
  42176. },
  42177. "handSize": {
  42178. name: "Hand Size",
  42179. power: 2,
  42180. type: "area",
  42181. base: math.unit(0.2 * 0.35, "meters^2")
  42182. },
  42183. "breastDiameter": {
  42184. name: "Breast Diameter",
  42185. power: 1,
  42186. type: "length",
  42187. base: math.unit(0.5, "meters")
  42188. },
  42189. "breastVolume": {
  42190. name: "Breast Volume",
  42191. power: 3,
  42192. type: "volume",
  42193. base: math.unit(0.065, "m^3")
  42194. },
  42195. "breastMass": {
  42196. name: "Breast Mass",
  42197. power: 3,
  42198. type: "mass",
  42199. base: math.unit(65, "kg")
  42200. },
  42201. "nippleDiameter": {
  42202. name: "Nipple Diameter",
  42203. power: 1,
  42204. type: "length",
  42205. base: math.unit(0.1, "meters")
  42206. },
  42207. }
  42208. },
  42209. back: {
  42210. height: math.unit(10, "feet"),
  42211. weight: math.unit(844, "kilograms"),
  42212. name: "Back",
  42213. image: {
  42214. source: "./media/characters/rebecca-pawlson/back.svg",
  42215. extra: 879/776,
  42216. bottom: 43/922
  42217. },
  42218. extraAttributes: {
  42219. "pawSize": {
  42220. name: "Paw Size",
  42221. power: 2,
  42222. type: "area",
  42223. base: math.unit(0.2 * 0.375, "meters^2")
  42224. },
  42225. "handSize": {
  42226. name: "Hand Size",
  42227. power: 2,
  42228. type: "area",
  42229. base: math.unit(0.2 * 0.35, "meters^2")
  42230. },
  42231. "breastDiameter": {
  42232. name: "Breast Diameter",
  42233. power: 1,
  42234. type: "length",
  42235. base: math.unit(0.5, "meters")
  42236. },
  42237. "breastVolume": {
  42238. name: "Breast Volume",
  42239. power: 3,
  42240. type: "volume",
  42241. base: math.unit(0.065, "m^3")
  42242. },
  42243. "breastMass": {
  42244. name: "Breast Mass",
  42245. power: 3,
  42246. type: "mass",
  42247. base: math.unit(65, "kg")
  42248. },
  42249. "nippleDiameter": {
  42250. name: "Nipple Diameter",
  42251. power: 1,
  42252. type: "length",
  42253. base: math.unit(0.1, "meters")
  42254. },
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(6 + 8/12, "feet")
  42262. },
  42263. {
  42264. name: "Mini Macro",
  42265. height: math.unit(10, "feet"),
  42266. default: true
  42267. },
  42268. {
  42269. name: "Macro",
  42270. height: math.unit(100, "feet")
  42271. },
  42272. {
  42273. name: "Mega Macro",
  42274. height: math.unit(2500, "feet")
  42275. },
  42276. {
  42277. name: "Giga Macro",
  42278. height: math.unit(50, "miles")
  42279. },
  42280. ]
  42281. ))
  42282. characterMakers.push(() => makeCharacter(
  42283. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42284. {
  42285. front: {
  42286. height: math.unit(7 + 6/12, "feet"),
  42287. weight: math.unit(600, "lb"),
  42288. name: "Front",
  42289. image: {
  42290. source: "./media/characters/moxie-nova/front.svg",
  42291. extra: 1734/1652,
  42292. bottom: 41/1775
  42293. }
  42294. },
  42295. },
  42296. [
  42297. {
  42298. name: "Normal",
  42299. height: math.unit(7 + 6/12, "feet"),
  42300. default: true
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42306. {
  42307. goat: {
  42308. height: math.unit(4, "feet"),
  42309. weight: math.unit(180, "lb"),
  42310. name: "Goat",
  42311. image: {
  42312. source: "./media/characters/tiffany/goat.svg",
  42313. extra: 1845/1595,
  42314. bottom: 106/1951
  42315. }
  42316. },
  42317. front: {
  42318. height: math.unit(5, "feet"),
  42319. weight: math.unit(150, "lb"),
  42320. name: "Foxcoon",
  42321. image: {
  42322. source: "./media/characters/tiffany/foxcoon.svg",
  42323. extra: 1941/1845,
  42324. bottom: 58/1999
  42325. }
  42326. },
  42327. },
  42328. [
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(5, "feet"),
  42332. default: true
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42338. {
  42339. front: {
  42340. height: math.unit(8, "feet"),
  42341. weight: math.unit(300, "lb"),
  42342. name: "Front",
  42343. image: {
  42344. source: "./media/characters/raxinath/front.svg",
  42345. extra: 1407/1309,
  42346. bottom: 39/1446
  42347. }
  42348. },
  42349. back: {
  42350. height: math.unit(8, "feet"),
  42351. weight: math.unit(300, "lb"),
  42352. name: "Back",
  42353. image: {
  42354. source: "./media/characters/raxinath/back.svg",
  42355. extra: 1405/1315,
  42356. bottom: 9/1414
  42357. }
  42358. },
  42359. },
  42360. [
  42361. {
  42362. name: "Speck",
  42363. height: math.unit(0.5, "nm")
  42364. },
  42365. {
  42366. name: "Micro",
  42367. height: math.unit(3, "inches")
  42368. },
  42369. {
  42370. name: "Kobold",
  42371. height: math.unit(3, "feet")
  42372. },
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(8, "feet"),
  42376. default: true
  42377. },
  42378. {
  42379. name: "Giant",
  42380. height: math.unit(50, "feet")
  42381. },
  42382. {
  42383. name: "Macro",
  42384. height: math.unit(1000, "feet")
  42385. },
  42386. {
  42387. name: "Megamacro",
  42388. height: math.unit(1, "mile")
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(10, "feet"),
  42397. weight: math.unit(1442, "lb"),
  42398. name: "Front",
  42399. image: {
  42400. source: "./media/characters/mal-dragon/front.svg",
  42401. extra: 1515/1444,
  42402. bottom: 113/1628
  42403. }
  42404. },
  42405. back: {
  42406. height: math.unit(10, "feet"),
  42407. weight: math.unit(1442, "lb"),
  42408. name: "Back",
  42409. image: {
  42410. source: "./media/characters/mal-dragon/back.svg",
  42411. extra: 1527/1434,
  42412. bottom: 25/1552
  42413. }
  42414. },
  42415. },
  42416. [
  42417. {
  42418. name: "Mortal Interaction",
  42419. height: math.unit(10, "feet"),
  42420. default: true
  42421. },
  42422. {
  42423. name: "Large",
  42424. height: math.unit(30, "feet")
  42425. },
  42426. {
  42427. name: "Kaiju",
  42428. height: math.unit(300, "feet")
  42429. },
  42430. {
  42431. name: "Megamacro",
  42432. height: math.unit(10000, "feet")
  42433. },
  42434. {
  42435. name: "Continent Cracker",
  42436. height: math.unit(30000000, "feet")
  42437. },
  42438. {
  42439. name: "Sol-Swallowing",
  42440. height: math.unit(1e11, "feet")
  42441. },
  42442. {
  42443. name: "Light Universal",
  42444. height: math.unit(5, "universes")
  42445. },
  42446. {
  42447. name: "Universe Atoms",
  42448. height: math.unit(1.829e9, "universes")
  42449. },
  42450. {
  42451. name: "Light Multiversal",
  42452. height: math.unit(5, "multiverses")
  42453. },
  42454. {
  42455. name: "Multiverse Atoms",
  42456. height: math.unit(1.829e9, "multiverses")
  42457. },
  42458. {
  42459. name: "Fabric of Time",
  42460. height: math.unit(1e262, "multiverses")
  42461. },
  42462. ]
  42463. ))
  42464. characterMakers.push(() => makeCharacter(
  42465. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42466. {
  42467. front: {
  42468. height: math.unit(9, "feet"),
  42469. weight: math.unit(1050, "lb"),
  42470. name: "Front",
  42471. image: {
  42472. source: "./media/characters/tabitha/front.svg",
  42473. extra: 2083/1994,
  42474. bottom: 68/2151
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Baseline",
  42481. height: math.unit(9, "feet"),
  42482. default: true
  42483. },
  42484. {
  42485. name: "Giant",
  42486. height: math.unit(90, "feet")
  42487. },
  42488. {
  42489. name: "Macro",
  42490. height: math.unit(900, "feet")
  42491. },
  42492. {
  42493. name: "Megamacro",
  42494. height: math.unit(9000, "feet")
  42495. },
  42496. {
  42497. name: "City-Crushing",
  42498. height: math.unit(27000, "feet")
  42499. },
  42500. {
  42501. name: "Mountain-Mashing",
  42502. height: math.unit(90000, "feet")
  42503. },
  42504. {
  42505. name: "Nation Nemesis",
  42506. height: math.unit(9e6, "feet")
  42507. },
  42508. {
  42509. name: "Continent Cracker",
  42510. height: math.unit(27e6, "feet")
  42511. },
  42512. {
  42513. name: "Earth-Eclipsing",
  42514. height: math.unit(2.7e8, "feet")
  42515. },
  42516. {
  42517. name: "Gas Giant Gulper",
  42518. height: math.unit(2.7e9, "feet")
  42519. },
  42520. {
  42521. name: "Sol-Swallowing",
  42522. height: math.unit(9e10, "feet")
  42523. },
  42524. {
  42525. name: "Galaxy Gulper",
  42526. height: math.unit(9, "galaxies")
  42527. },
  42528. {
  42529. name: "Cosmos Churner",
  42530. height: math.unit(9, "universes")
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(160, "cm"),
  42539. weight: math.unit(55, "kg"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/tow/front.svg",
  42543. extra: 1751/1722,
  42544. bottom: 74/1825
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Norm",
  42551. height: math.unit(160, "cm")
  42552. },
  42553. {
  42554. name: "Casual",
  42555. height: math.unit(3200, "m"),
  42556. default: true
  42557. },
  42558. {
  42559. name: "Show-Off",
  42560. height: math.unit(160, "km")
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42566. {
  42567. front: {
  42568. height: math.unit(7 + 11/12, "feet"),
  42569. weight: math.unit(342.8, "lb"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/vivian-orca-dragon/front.svg",
  42573. extra: 1890/1865,
  42574. bottom: 28/1918
  42575. }
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Micro",
  42581. height: math.unit(5, "inches")
  42582. },
  42583. {
  42584. name: "Normal",
  42585. height: math.unit(7 + 11/12, "feet"),
  42586. default: true
  42587. },
  42588. {
  42589. name: "Macro",
  42590. height: math.unit(395 + 7/12, "feet")
  42591. },
  42592. ]
  42593. ))
  42594. characterMakers.push(() => makeCharacter(
  42595. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42596. {
  42597. side: {
  42598. height: math.unit(10, "feet"),
  42599. weight: math.unit(1442, "lb"),
  42600. name: "Side",
  42601. image: {
  42602. source: "./media/characters/lotherakon/side.svg",
  42603. extra: 1604/1497,
  42604. bottom: 89/1693
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Mortal Interaction",
  42611. height: math.unit(10, "feet")
  42612. },
  42613. {
  42614. name: "Large",
  42615. height: math.unit(30, "feet"),
  42616. default: true
  42617. },
  42618. {
  42619. name: "Giant",
  42620. height: math.unit(100, "feet")
  42621. },
  42622. {
  42623. name: "Kaiju",
  42624. height: math.unit(300, "feet")
  42625. },
  42626. {
  42627. name: "Macro",
  42628. height: math.unit(1000, "feet")
  42629. },
  42630. {
  42631. name: "Macro+",
  42632. height: math.unit(3000, "feet")
  42633. },
  42634. {
  42635. name: "Megamacro",
  42636. height: math.unit(10000, "feet")
  42637. },
  42638. {
  42639. name: "City-Crushing",
  42640. height: math.unit(30000, "feet")
  42641. },
  42642. {
  42643. name: "Continent Cracker",
  42644. height: math.unit(30e6, "feet")
  42645. },
  42646. {
  42647. name: "Earth Eclipsing",
  42648. height: math.unit(3e8, "feet")
  42649. },
  42650. {
  42651. name: "Gas Giant Gulper",
  42652. height: math.unit(3e9, "feet")
  42653. },
  42654. {
  42655. name: "Sol-Swallowing",
  42656. height: math.unit(1e11, "feet")
  42657. },
  42658. {
  42659. name: "System Swallower",
  42660. height: math.unit(3e14, "feet")
  42661. },
  42662. {
  42663. name: "Galaxy Gulper",
  42664. height: math.unit(10, "galaxies")
  42665. },
  42666. {
  42667. name: "Light Universal",
  42668. height: math.unit(5, "universes")
  42669. },
  42670. {
  42671. name: "Universe Palm",
  42672. height: math.unit(20, "universes")
  42673. },
  42674. {
  42675. name: "Light Multiversal",
  42676. height: math.unit(5, "multiverses")
  42677. },
  42678. {
  42679. name: "Multiverse Palm",
  42680. height: math.unit(20, "multiverses")
  42681. },
  42682. {
  42683. name: "Inferno Incarnate",
  42684. height: math.unit(1e7, "multiverses")
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(8, "feet"),
  42693. weight: math.unit(1200, "lb"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/malithee/front.svg",
  42697. extra: 1675/1640,
  42698. bottom: 162/1837
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Mortal Interaction",
  42705. height: math.unit(8, "feet"),
  42706. default: true
  42707. },
  42708. {
  42709. name: "Large",
  42710. height: math.unit(24, "feet")
  42711. },
  42712. {
  42713. name: "Kaiju",
  42714. height: math.unit(240, "feet")
  42715. },
  42716. {
  42717. name: "Megamacro",
  42718. height: math.unit(8000, "feet")
  42719. },
  42720. {
  42721. name: "Continent Cracker",
  42722. height: math.unit(24e6, "feet")
  42723. },
  42724. {
  42725. name: "Earth-Eclipsing",
  42726. height: math.unit(2.4e8, "feet")
  42727. },
  42728. {
  42729. name: "Sol-Swallowing",
  42730. height: math.unit(8e10, "feet")
  42731. },
  42732. {
  42733. name: "Galaxy Gulper",
  42734. height: math.unit(8, "galaxies")
  42735. },
  42736. {
  42737. name: "Light Universal",
  42738. height: math.unit(4, "universes")
  42739. },
  42740. {
  42741. name: "Universe Atoms",
  42742. height: math.unit(1.829e9, "universes")
  42743. },
  42744. {
  42745. name: "Light Multiversal",
  42746. height: math.unit(4, "multiverses")
  42747. },
  42748. {
  42749. name: "Multiverse Atoms",
  42750. height: math.unit(1.829e9, "multiverses")
  42751. },
  42752. {
  42753. name: "Nigh-Omnipresence",
  42754. height: math.unit(8e261, "multiverses")
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(10, "feet"),
  42763. weight: math.unit(1500, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/miles-thestia/front.svg",
  42767. extra: 1812/1727,
  42768. bottom: 86/1898
  42769. }
  42770. },
  42771. back: {
  42772. height: math.unit(10, "feet"),
  42773. weight: math.unit(1500, "lb"),
  42774. name: "Back",
  42775. image: {
  42776. source: "./media/characters/miles-thestia/back.svg",
  42777. extra: 1799/1690,
  42778. bottom: 47/1846
  42779. }
  42780. },
  42781. frontNsfw: {
  42782. height: math.unit(10, "feet"),
  42783. weight: math.unit(1500, "lb"),
  42784. name: "Front (NSFW)",
  42785. image: {
  42786. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42787. extra: 1812/1727,
  42788. bottom: 86/1898
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Mini-Macro",
  42795. height: math.unit(10, "feet"),
  42796. default: true
  42797. },
  42798. ]
  42799. ))
  42800. characterMakers.push(() => makeCharacter(
  42801. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42802. {
  42803. front: {
  42804. height: math.unit(25, "feet"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/titan-s-wulf/front.svg",
  42808. extra: 1560/1484,
  42809. bottom: 76/1636
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Smallest",
  42816. height: math.unit(25, "feet"),
  42817. default: true
  42818. },
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(200, "feet")
  42822. },
  42823. {
  42824. name: "Macro",
  42825. height: math.unit(200000, "feet")
  42826. },
  42827. {
  42828. name: "Multiversal Original",
  42829. height: math.unit(10000, "multiverses")
  42830. },
  42831. ]
  42832. ))
  42833. characterMakers.push(() => makeCharacter(
  42834. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42835. {
  42836. front: {
  42837. height: math.unit(8, "feet"),
  42838. weight: math.unit(553, "lb"),
  42839. name: "Front",
  42840. image: {
  42841. source: "./media/characters/tawendeh/front.svg",
  42842. extra: 2365/2268,
  42843. bottom: 83/2448
  42844. }
  42845. },
  42846. frontClothed: {
  42847. height: math.unit(8, "feet"),
  42848. weight: math.unit(553, "lb"),
  42849. name: "Front (Clothed)",
  42850. image: {
  42851. source: "./media/characters/tawendeh/front-clothed.svg",
  42852. extra: 2365/2268,
  42853. bottom: 83/2448
  42854. }
  42855. },
  42856. back: {
  42857. height: math.unit(8, "feet"),
  42858. weight: math.unit(553, "lb"),
  42859. name: "Back",
  42860. image: {
  42861. source: "./media/characters/tawendeh/back.svg",
  42862. extra: 2397/2294,
  42863. bottom: 42/2439
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Mortal Interaction",
  42870. height: math.unit(8, "feet"),
  42871. default: true
  42872. },
  42873. {
  42874. name: "Giant",
  42875. height: math.unit(80, "feet")
  42876. },
  42877. {
  42878. name: "Macro",
  42879. height: math.unit(800, "feet")
  42880. },
  42881. {
  42882. name: "Megamacro",
  42883. height: math.unit(8000, "feet")
  42884. },
  42885. {
  42886. name: "City-Crushing",
  42887. height: math.unit(24000, "feet")
  42888. },
  42889. {
  42890. name: "Mountain-Mashing",
  42891. height: math.unit(80000, "feet")
  42892. },
  42893. {
  42894. name: "Nation Nemesis",
  42895. height: math.unit(8e6, "feet")
  42896. },
  42897. {
  42898. name: "Continent Cracker",
  42899. height: math.unit(24e6, "feet")
  42900. },
  42901. {
  42902. name: "Earth-Eclipsing",
  42903. height: math.unit(2.4e8, "feet")
  42904. },
  42905. {
  42906. name: "Gas Giant Gulper",
  42907. height: math.unit(2.4e9, "feet")
  42908. },
  42909. {
  42910. name: "Sol-Swallowing",
  42911. height: math.unit(8e10, "feet")
  42912. },
  42913. {
  42914. name: "Galaxy Gulper",
  42915. height: math.unit(8, "galaxies")
  42916. },
  42917. {
  42918. name: "Cosmos Churner",
  42919. height: math.unit(8, "universes")
  42920. },
  42921. {
  42922. name: "Omnipotent Otter",
  42923. height: math.unit(80, "universes")
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42929. {
  42930. front: {
  42931. height: math.unit(2.6, "meters"),
  42932. weight: math.unit(900, "kg"),
  42933. name: "Front",
  42934. image: {
  42935. source: "./media/characters/neesha/front.svg",
  42936. extra: 1803/1653,
  42937. bottom: 128/1931
  42938. }
  42939. },
  42940. },
  42941. [
  42942. {
  42943. name: "Normal",
  42944. height: math.unit(2.6, "meters"),
  42945. default: true
  42946. },
  42947. {
  42948. name: "Macro",
  42949. height: math.unit(50, "meters")
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(5, "feet"),
  42958. weight: math.unit(185, "lb"),
  42959. name: "Front",
  42960. image: {
  42961. source: "./media/characters/kyera/front.svg",
  42962. extra: 1875/1790,
  42963. bottom: 96/1971
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Normal",
  42970. height: math.unit(5, "feet"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(7 + 6/12, "feet"),
  42980. weight: math.unit(540, "lb"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/yuko/front.svg",
  42984. extra: 1282/1222,
  42985. bottom: 101/1383
  42986. }
  42987. },
  42988. frontClothed: {
  42989. height: math.unit(7 + 6/12, "feet"),
  42990. weight: math.unit(540, "lb"),
  42991. name: "Front (Clothed)",
  42992. image: {
  42993. source: "./media/characters/yuko/front-clothed.svg",
  42994. extra: 1282/1222,
  42995. bottom: 101/1383
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(7 + 6/12, "feet"),
  43003. default: true
  43004. },
  43005. {
  43006. name: "Macro",
  43007. height: math.unit(26 + 9/12, "feet")
  43008. },
  43009. {
  43010. name: "Megamacro",
  43011. height: math.unit(300, "feet")
  43012. },
  43013. {
  43014. name: "Gigamacro",
  43015. height: math.unit(5000, "feet")
  43016. },
  43017. {
  43018. name: "Planetary",
  43019. height: math.unit(10000, "miles")
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43025. {
  43026. front: {
  43027. height: math.unit(8 + 2/12, "feet"),
  43028. weight: math.unit(600, "lb"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/deam-nitrel/front.svg",
  43032. extra: 1308/1234,
  43033. bottom: 125/1433
  43034. }
  43035. },
  43036. },
  43037. [
  43038. {
  43039. name: "Normal",
  43040. height: math.unit(8 + 2/12, "feet"),
  43041. default: true
  43042. },
  43043. ]
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43047. {
  43048. front: {
  43049. height: math.unit(6.1, "feet"),
  43050. weight: math.unit(180, "lb"),
  43051. name: "Front",
  43052. image: {
  43053. source: "./media/characters/skyress/front.svg",
  43054. extra: 1045/915,
  43055. bottom: 28/1073
  43056. }
  43057. },
  43058. maw: {
  43059. height: math.unit(1, "feet"),
  43060. name: "Maw",
  43061. image: {
  43062. source: "./media/characters/skyress/maw.svg"
  43063. }
  43064. },
  43065. },
  43066. [
  43067. {
  43068. name: "Normal",
  43069. height: math.unit(6.1, "feet"),
  43070. default: true
  43071. },
  43072. {
  43073. name: "Macro",
  43074. height: math.unit(200, "feet")
  43075. },
  43076. ]
  43077. ))
  43078. characterMakers.push(() => makeCharacter(
  43079. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43080. {
  43081. front: {
  43082. height: math.unit(4 + 2/12, "feet"),
  43083. weight: math.unit(40, "kg"),
  43084. name: "Front",
  43085. image: {
  43086. source: "./media/characters/amethyst-jones/front.svg",
  43087. extra: 1220/1150,
  43088. bottom: 101/1321
  43089. }
  43090. },
  43091. },
  43092. [
  43093. {
  43094. name: "Normal",
  43095. height: math.unit(4 + 2/12, "feet"),
  43096. default: true
  43097. },
  43098. ]
  43099. ))
  43100. characterMakers.push(() => makeCharacter(
  43101. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43102. {
  43103. front: {
  43104. height: math.unit(1.7, "m"),
  43105. weight: math.unit(135, "lb"),
  43106. name: "Front",
  43107. image: {
  43108. source: "./media/characters/jade/front.svg",
  43109. extra: 1818/1767,
  43110. bottom: 32/1850
  43111. }
  43112. },
  43113. back: {
  43114. height: math.unit(1.7, "m"),
  43115. weight: math.unit(135, "lb"),
  43116. name: "Back",
  43117. image: {
  43118. source: "./media/characters/jade/back.svg",
  43119. extra: 1869/1809,
  43120. bottom: 35/1904
  43121. }
  43122. },
  43123. hand: {
  43124. height: math.unit(0.24, "m"),
  43125. name: "Hand",
  43126. image: {
  43127. source: "./media/characters/jade/hand.svg"
  43128. }
  43129. },
  43130. foot: {
  43131. height: math.unit(0.263, "m"),
  43132. name: "Foot",
  43133. image: {
  43134. source: "./media/characters/jade/foot.svg"
  43135. }
  43136. },
  43137. dick: {
  43138. height: math.unit(0.47, "m"),
  43139. name: "Dick",
  43140. image: {
  43141. source: "./media/characters/jade/dick.svg"
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Micro",
  43148. height: math.unit(22, "cm")
  43149. },
  43150. {
  43151. name: "Normal",
  43152. height: math.unit(1.7, "m"),
  43153. default: true
  43154. },
  43155. {
  43156. name: "Macro",
  43157. height: math.unit(152, "m")
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(100, "miles"),
  43166. weight: math.unit(20000, "tons"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/cookie/front.svg",
  43170. extra: 1125/1070,
  43171. bottom: 30/1155
  43172. }
  43173. },
  43174. },
  43175. [
  43176. {
  43177. name: "Big",
  43178. height: math.unit(50, "feet")
  43179. },
  43180. {
  43181. name: "Macro",
  43182. height: math.unit(100, "miles"),
  43183. default: true
  43184. },
  43185. {
  43186. name: "Megamacro",
  43187. height: math.unit(90000, "miles")
  43188. },
  43189. ]
  43190. ))
  43191. characterMakers.push(() => makeCharacter(
  43192. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43193. {
  43194. front: {
  43195. height: math.unit(6, "feet"),
  43196. weight: math.unit(145, "lb"),
  43197. name: "Front",
  43198. image: {
  43199. source: "./media/characters/farzian/front.svg",
  43200. extra: 1902/1693,
  43201. bottom: 108/2010
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Macro",
  43208. height: math.unit(500, "feet"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(3 + 6/12, "feet"),
  43218. weight: math.unit(50, "lb"),
  43219. name: "Front",
  43220. image: {
  43221. source: "./media/characters/kimberly-tilson/front.svg",
  43222. extra: 1400/1322,
  43223. bottom: 36/1436
  43224. }
  43225. },
  43226. back: {
  43227. height: math.unit(3 + 6/12, "feet"),
  43228. weight: math.unit(50, "lb"),
  43229. name: "Back",
  43230. image: {
  43231. source: "./media/characters/kimberly-tilson/back.svg",
  43232. extra: 1370/1307,
  43233. bottom: 20/1390
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Normal",
  43240. height: math.unit(3 + 6/12, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(350, "meters"),
  43250. weight: math.unit(7.57059e+8, "lb"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/harthos/front.svg",
  43254. extra: 455/446,
  43255. bottom: 15/470
  43256. },
  43257. form: "peacekeeper",
  43258. default: true
  43259. },
  43260. allusus_front: {
  43261. height: math.unit(270, "meters"),
  43262. weight: math.unit(3.47550e+8, "lb"),
  43263. name: "Front",
  43264. image: {
  43265. source: "./media/characters/harthos/allusus-front.svg",
  43266. extra: 455/446,
  43267. bottom: 15/470
  43268. },
  43269. form: "allusus",
  43270. },
  43271. },
  43272. [
  43273. {
  43274. name: "Macro",
  43275. height: math.unit(350, "meters"),
  43276. default: true,
  43277. form: "peacekeeper"
  43278. },
  43279. {
  43280. name: "Macro",
  43281. height: math.unit(270, "meters"),
  43282. default: true,
  43283. form: "allusus"
  43284. },
  43285. ],
  43286. {
  43287. "peacekeeper": {
  43288. name: "Peacekeeper",
  43289. default: true
  43290. },
  43291. "allusus": {
  43292. name: "Allusus",
  43293. },
  43294. }
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43298. {
  43299. front: {
  43300. height: math.unit(15, "feet"),
  43301. name: "Front",
  43302. image: {
  43303. source: "./media/characters/hypatia/front.svg",
  43304. extra: 1653/1591,
  43305. bottom: 79/1732
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(15, "feet")
  43313. },
  43314. {
  43315. name: "Small",
  43316. height: math.unit(300, "feet")
  43317. },
  43318. {
  43319. name: "Macro",
  43320. height: math.unit(2500, "feet"),
  43321. default: true
  43322. },
  43323. {
  43324. name: "Mega Macro",
  43325. height: math.unit(1500, "miles")
  43326. },
  43327. {
  43328. name: "Giga Macro",
  43329. height: math.unit(1.5e6, "miles")
  43330. },
  43331. ]
  43332. ))
  43333. characterMakers.push(() => makeCharacter(
  43334. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43335. {
  43336. front: {
  43337. height: math.unit(6, "feet"),
  43338. weight: math.unit(200, "lb"),
  43339. name: "Front",
  43340. image: {
  43341. source: "./media/characters/wulver/front.svg",
  43342. extra: 1724/1632,
  43343. bottom: 130/1854
  43344. }
  43345. },
  43346. frontNsfw: {
  43347. height: math.unit(6, "feet"),
  43348. weight: math.unit(200, "lb"),
  43349. name: "Front (NSFW)",
  43350. image: {
  43351. source: "./media/characters/wulver/front-nsfw.svg",
  43352. extra: 1724/1632,
  43353. bottom: 130/1854
  43354. }
  43355. },
  43356. },
  43357. [
  43358. {
  43359. name: "Human-Sized",
  43360. height: math.unit(6, "feet")
  43361. },
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(4, "meters"),
  43365. default: true
  43366. },
  43367. {
  43368. name: "Large",
  43369. height: math.unit(6, "m")
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(7, "feet"),
  43378. name: "Front",
  43379. image: {
  43380. source: "./media/characters/maru/front.svg",
  43381. extra: 1595/1570,
  43382. bottom: 0/1595
  43383. }
  43384. },
  43385. },
  43386. [
  43387. {
  43388. name: "Normal",
  43389. height: math.unit(7, "feet"),
  43390. default: true
  43391. },
  43392. {
  43393. name: "Macro",
  43394. height: math.unit(700, "feet")
  43395. },
  43396. {
  43397. name: "Mega Macro",
  43398. height: math.unit(25, "miles")
  43399. },
  43400. ]
  43401. ))
  43402. characterMakers.push(() => makeCharacter(
  43403. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43404. {
  43405. front: {
  43406. height: math.unit(6, "feet"),
  43407. weight: math.unit(170, "lb"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/xenon/front.svg",
  43411. extra: 1376/1305,
  43412. bottom: 56/1432
  43413. }
  43414. },
  43415. back: {
  43416. height: math.unit(6, "feet"),
  43417. weight: math.unit(170, "lb"),
  43418. name: "Back",
  43419. image: {
  43420. source: "./media/characters/xenon/back.svg",
  43421. extra: 1328/1259,
  43422. bottom: 95/1423
  43423. }
  43424. },
  43425. maw: {
  43426. height: math.unit(0.52, "feet"),
  43427. name: "Maw",
  43428. image: {
  43429. source: "./media/characters/xenon/maw.svg"
  43430. }
  43431. },
  43432. handLeft: {
  43433. height: math.unit(0.82 * 169 / 153, "feet"),
  43434. name: "Hand (Left)",
  43435. image: {
  43436. source: "./media/characters/xenon/hand-left.svg"
  43437. }
  43438. },
  43439. handRight: {
  43440. height: math.unit(0.82, "feet"),
  43441. name: "Hand (Right)",
  43442. image: {
  43443. source: "./media/characters/xenon/hand-right.svg"
  43444. }
  43445. },
  43446. footLeft: {
  43447. height: math.unit(1.13, "feet"),
  43448. name: "Foot (Left)",
  43449. image: {
  43450. source: "./media/characters/xenon/foot-left.svg"
  43451. }
  43452. },
  43453. footRight: {
  43454. height: math.unit(1.13 * 194 / 196, "feet"),
  43455. name: "Foot (Right)",
  43456. image: {
  43457. source: "./media/characters/xenon/foot-right.svg"
  43458. }
  43459. },
  43460. },
  43461. [
  43462. {
  43463. name: "Micro",
  43464. height: math.unit(0.8, "inches")
  43465. },
  43466. {
  43467. name: "Normal",
  43468. height: math.unit(6, "feet")
  43469. },
  43470. {
  43471. name: "Macro",
  43472. height: math.unit(50, "feet"),
  43473. default: true
  43474. },
  43475. {
  43476. name: "Macro+",
  43477. height: math.unit(250, "feet")
  43478. },
  43479. {
  43480. name: "Megamacro",
  43481. height: math.unit(1500, "feet")
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(7 + 5/12, "feet"),
  43490. name: "Front",
  43491. image: {
  43492. source: "./media/characters/zane/front.svg",
  43493. extra: 1260/1203,
  43494. bottom: 94/1354
  43495. }
  43496. },
  43497. back: {
  43498. height: math.unit(5.05, "feet"),
  43499. name: "Back",
  43500. image: {
  43501. source: "./media/characters/zane/back.svg",
  43502. extra: 893/829,
  43503. bottom: 30/923
  43504. }
  43505. },
  43506. werewolf: {
  43507. height: math.unit(11, "feet"),
  43508. name: "Werewolf",
  43509. image: {
  43510. source: "./media/characters/zane/werewolf.svg",
  43511. extra: 1383/1323,
  43512. bottom: 89/1472
  43513. }
  43514. },
  43515. foot: {
  43516. height: math.unit(1.46, "feet"),
  43517. name: "Foot",
  43518. image: {
  43519. source: "./media/characters/zane/foot.svg"
  43520. }
  43521. },
  43522. footFront: {
  43523. height: math.unit(0.784, "feet"),
  43524. name: "Foot (Front)",
  43525. image: {
  43526. source: "./media/characters/zane/foot-front.svg"
  43527. }
  43528. },
  43529. dick: {
  43530. height: math.unit(1.95, "feet"),
  43531. name: "Dick",
  43532. image: {
  43533. source: "./media/characters/zane/dick.svg"
  43534. }
  43535. },
  43536. dickWerewolf: {
  43537. height: math.unit(3.77, "feet"),
  43538. name: "Dick (Werewolf)",
  43539. image: {
  43540. source: "./media/characters/zane/dick.svg"
  43541. }
  43542. },
  43543. },
  43544. [
  43545. {
  43546. name: "Normal",
  43547. height: math.unit(7 + 5/12, "feet"),
  43548. default: true
  43549. },
  43550. ]
  43551. ))
  43552. characterMakers.push(() => makeCharacter(
  43553. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43554. {
  43555. front: {
  43556. height: math.unit(6 + 2/12, "feet"),
  43557. weight: math.unit(284, "lb"),
  43558. name: "Front",
  43559. image: {
  43560. source: "./media/characters/benni-desparque/front.svg",
  43561. extra: 878/729,
  43562. bottom: 58/936
  43563. }
  43564. },
  43565. back: {
  43566. height: math.unit(6 + 2/12, "feet"),
  43567. weight: math.unit(284, "lb"),
  43568. name: "Back",
  43569. image: {
  43570. source: "./media/characters/benni-desparque/back.svg",
  43571. extra: 901/756,
  43572. bottom: 51/952
  43573. }
  43574. },
  43575. dressed: {
  43576. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43577. weight: math.unit(284, "lb"),
  43578. name: "Dressed",
  43579. image: {
  43580. source: "./media/characters/benni-desparque/dressed.svg",
  43581. extra: 1514/1276,
  43582. bottom: 65/1579
  43583. }
  43584. },
  43585. hand: {
  43586. height: math.unit(1.28, "feet"),
  43587. name: "Hand",
  43588. image: {
  43589. source: "./media/characters/benni-desparque/hand.svg"
  43590. }
  43591. },
  43592. foot: {
  43593. height: math.unit(1.53, "feet"),
  43594. name: "Foot",
  43595. image: {
  43596. source: "./media/characters/benni-desparque/foot.svg"
  43597. }
  43598. },
  43599. aiControlUnit: {
  43600. height: math.unit(0.175, "feet"),
  43601. name: "AI Control Unit",
  43602. image: {
  43603. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43604. }
  43605. },
  43606. },
  43607. [
  43608. {
  43609. name: "Civilian",
  43610. height: math.unit(6 + 2/12, "feet")
  43611. },
  43612. {
  43613. name: "Normal",
  43614. height: math.unit(98, "feet"),
  43615. default: true
  43616. },
  43617. {
  43618. name: "Kaiju Fighter",
  43619. height: math.unit(268, "feet")
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43625. {
  43626. front: {
  43627. height: math.unit(5, "feet"),
  43628. weight: math.unit(105, "lb"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/maxine/front.svg",
  43632. extra: 1386/1250,
  43633. bottom: 71/1457
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Normal",
  43640. height: math.unit(5, "feet"),
  43641. default: true
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43647. {
  43648. front: {
  43649. height: math.unit(11 + 7/12, "feet"),
  43650. weight: math.unit(9576, "lb"),
  43651. name: "Front",
  43652. image: {
  43653. source: "./media/characters/scaly/front.svg",
  43654. extra: 888/867,
  43655. bottom: 36/924
  43656. }
  43657. },
  43658. },
  43659. [
  43660. {
  43661. name: "Normal",
  43662. height: math.unit(11 + 7/12, "feet"),
  43663. default: true
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43669. {
  43670. front: {
  43671. height: math.unit(6 + 3/12, "feet"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/saelria/front.svg",
  43675. extra: 1243/1138,
  43676. bottom: 46/1289
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Micro",
  43683. height: math.unit(6, "inches"),
  43684. },
  43685. {
  43686. name: "Normal",
  43687. height: math.unit(6 + 3/12, "feet"),
  43688. default: true
  43689. },
  43690. {
  43691. name: "Macro",
  43692. height: math.unit(25, "feet")
  43693. },
  43694. ]
  43695. ))
  43696. characterMakers.push(() => makeCharacter(
  43697. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43698. {
  43699. front: {
  43700. height: math.unit(80, "meters"),
  43701. weight: math.unit(7000, "tonnes"),
  43702. name: "Front",
  43703. image: {
  43704. source: "./media/characters/tef/front.svg",
  43705. extra: 2036/1991,
  43706. bottom: 54/2090
  43707. }
  43708. },
  43709. back: {
  43710. height: math.unit(80, "meters"),
  43711. weight: math.unit(7000, "tonnes"),
  43712. name: "Back",
  43713. image: {
  43714. source: "./media/characters/tef/back.svg",
  43715. extra: 2036/1991,
  43716. bottom: 54/2090
  43717. }
  43718. },
  43719. },
  43720. [
  43721. {
  43722. name: "Macro",
  43723. height: math.unit(80, "meters"),
  43724. default: true
  43725. },
  43726. ]
  43727. ))
  43728. characterMakers.push(() => makeCharacter(
  43729. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43730. {
  43731. front: {
  43732. height: math.unit(13, "feet"),
  43733. weight: math.unit(6, "tons"),
  43734. name: "Front",
  43735. image: {
  43736. source: "./media/characters/rover/front.svg",
  43737. extra: 1233/1156,
  43738. bottom: 50/1283
  43739. }
  43740. },
  43741. back: {
  43742. height: math.unit(13, "feet"),
  43743. weight: math.unit(6, "tons"),
  43744. name: "Back",
  43745. image: {
  43746. source: "./media/characters/rover/back.svg",
  43747. extra: 1327/1258,
  43748. bottom: 39/1366
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(13, "feet"),
  43756. default: true
  43757. },
  43758. {
  43759. name: "Macro",
  43760. height: math.unit(1300, "feet")
  43761. },
  43762. {
  43763. name: "Megamacro",
  43764. height: math.unit(1300, "miles")
  43765. },
  43766. {
  43767. name: "Gigamacro",
  43768. height: math.unit(1300000, "miles")
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43774. {
  43775. front: {
  43776. height: math.unit(10, "feet"),
  43777. weight: math.unit(500, "lb"),
  43778. name: "Front",
  43779. image: {
  43780. source: "./media/characters/ariz/front.svg",
  43781. extra: 461/450,
  43782. bottom: 16/477
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "MiniMacro",
  43789. height: math.unit(10, "feet"),
  43790. default: true
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43796. {
  43797. front: {
  43798. height: math.unit(6, "feet"),
  43799. weight: math.unit(140, "lb"),
  43800. name: "Front",
  43801. image: {
  43802. source: "./media/characters/sigrun/front.svg",
  43803. extra: 1418/1359,
  43804. bottom: 27/1445
  43805. }
  43806. },
  43807. },
  43808. [
  43809. {
  43810. name: "Macro",
  43811. height: math.unit(35, "feet"),
  43812. default: true
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(6, "feet"),
  43821. weight: math.unit(150, "lb"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/numin/front.svg",
  43825. extra: 1433/1388,
  43826. bottom: 12/1445
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Macro",
  43833. height: math.unit(21.5, "km"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(6, "feet"),
  43843. weight: math.unit(463, "lb"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/melwa/front.svg",
  43847. extra: 1307/1248,
  43848. bottom: 93/1400
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Macro",
  43855. height: math.unit(50, "meters"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(325, "feet"),
  43865. name: "Front",
  43866. image: {
  43867. source: "./media/characters/zorkaiju/front.svg",
  43868. extra: 1955/1814,
  43869. bottom: 40/1995
  43870. }
  43871. },
  43872. frontExtended: {
  43873. height: math.unit(325, "feet"),
  43874. name: "Front (Extended)",
  43875. image: {
  43876. source: "./media/characters/zorkaiju/front-extended.svg",
  43877. extra: 1955/1814,
  43878. bottom: 40/1995
  43879. }
  43880. },
  43881. side: {
  43882. height: math.unit(325, "feet"),
  43883. name: "Side",
  43884. image: {
  43885. source: "./media/characters/zorkaiju/side.svg",
  43886. extra: 1495/1396,
  43887. bottom: 17/1512
  43888. }
  43889. },
  43890. sideExtended: {
  43891. height: math.unit(325, "feet"),
  43892. name: "Side (Extended)",
  43893. image: {
  43894. source: "./media/characters/zorkaiju/side-extended.svg",
  43895. extra: 1495/1396,
  43896. bottom: 17/1512
  43897. }
  43898. },
  43899. back: {
  43900. height: math.unit(325, "feet"),
  43901. name: "Back",
  43902. image: {
  43903. source: "./media/characters/zorkaiju/back.svg",
  43904. extra: 1959/1821,
  43905. bottom: 31/1990
  43906. }
  43907. },
  43908. backExtended: {
  43909. height: math.unit(325, "feet"),
  43910. name: "Back (Extended)",
  43911. image: {
  43912. source: "./media/characters/zorkaiju/back-extended.svg",
  43913. extra: 1959/1821,
  43914. bottom: 31/1990
  43915. }
  43916. },
  43917. hand: {
  43918. height: math.unit(58.4, "feet"),
  43919. name: "Hand",
  43920. image: {
  43921. source: "./media/characters/zorkaiju/hand.svg"
  43922. }
  43923. },
  43924. handExtended: {
  43925. height: math.unit(61.4, "feet"),
  43926. name: "Hand (Extended)",
  43927. image: {
  43928. source: "./media/characters/zorkaiju/hand-extended.svg"
  43929. }
  43930. },
  43931. foot: {
  43932. height: math.unit(95, "feet"),
  43933. name: "Foot",
  43934. image: {
  43935. source: "./media/characters/zorkaiju/foot.svg"
  43936. }
  43937. },
  43938. leftArm: {
  43939. height: math.unit(59, "feet"),
  43940. name: "Left Arm",
  43941. image: {
  43942. source: "./media/characters/zorkaiju/left-arm.svg"
  43943. }
  43944. },
  43945. rightArm: {
  43946. height: math.unit(59, "feet"),
  43947. name: "Right Arm",
  43948. image: {
  43949. source: "./media/characters/zorkaiju/right-arm.svg"
  43950. }
  43951. },
  43952. leftArmExtended: {
  43953. height: math.unit(59 * 1.033546, "feet"),
  43954. name: "Left Arm (Extended)",
  43955. image: {
  43956. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43957. }
  43958. },
  43959. rightArmExtended: {
  43960. height: math.unit(59 * 1.0496, "feet"),
  43961. name: "Right Arm (Extended)",
  43962. image: {
  43963. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43964. }
  43965. },
  43966. tail: {
  43967. height: math.unit(104, "feet"),
  43968. name: "Tail",
  43969. image: {
  43970. source: "./media/characters/zorkaiju/tail.svg"
  43971. }
  43972. },
  43973. tailExtended: {
  43974. height: math.unit(104, "feet"),
  43975. name: "Tail (Extended)",
  43976. image: {
  43977. source: "./media/characters/zorkaiju/tail-extended.svg"
  43978. }
  43979. },
  43980. tailBottom: {
  43981. height: math.unit(104, "feet"),
  43982. name: "Tail Bottom",
  43983. image: {
  43984. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43985. }
  43986. },
  43987. crystal: {
  43988. height: math.unit(27.54, "feet"),
  43989. name: "Crystal",
  43990. image: {
  43991. source: "./media/characters/zorkaiju/crystal.svg"
  43992. }
  43993. },
  43994. },
  43995. [
  43996. {
  43997. name: "Kaiju",
  43998. height: math.unit(325, "feet"),
  43999. default: true
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44005. {
  44006. front: {
  44007. height: math.unit(6 + 1/12, "feet"),
  44008. weight: math.unit(115, "lb"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/bailey-belfry/front.svg",
  44012. extra: 1240/1121,
  44013. bottom: 101/1341
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(6 + 1/12, "feet"),
  44021. default: true
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44027. {
  44028. side: {
  44029. height: math.unit(4, "meters"),
  44030. weight: math.unit(250, "kg"),
  44031. name: "Side",
  44032. image: {
  44033. source: "./media/characters/blacky/side.svg",
  44034. extra: 1027/919,
  44035. bottom: 43/1070
  44036. }
  44037. },
  44038. maw: {
  44039. height: math.unit(1, "meters"),
  44040. name: "Maw",
  44041. image: {
  44042. source: "./media/characters/blacky/maw.svg"
  44043. }
  44044. },
  44045. paw: {
  44046. height: math.unit(1, "meters"),
  44047. name: "Paw",
  44048. image: {
  44049. source: "./media/characters/blacky/paw.svg"
  44050. }
  44051. },
  44052. },
  44053. [
  44054. {
  44055. name: "Normal",
  44056. height: math.unit(4, "meters"),
  44057. default: true
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44063. {
  44064. front: {
  44065. height: math.unit(170, "cm"),
  44066. weight: math.unit(66, "kg"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/thux-ei/front.svg",
  44070. extra: 1109/1011,
  44071. bottom: 8/1117
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(170, "cm"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(5, "feet"),
  44088. weight: math.unit(120, "lb"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/roxanne-voltaire/front.svg",
  44092. extra: 1901/1779,
  44093. bottom: 53/1954
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(5, "feet"),
  44101. default: true
  44102. },
  44103. {
  44104. name: "Giant",
  44105. height: math.unit(50, "feet")
  44106. },
  44107. {
  44108. name: "Titan",
  44109. height: math.unit(500, "feet")
  44110. },
  44111. {
  44112. name: "Macro",
  44113. height: math.unit(5000, "feet")
  44114. },
  44115. {
  44116. name: "Megamacro",
  44117. height: math.unit(50000, "feet")
  44118. },
  44119. {
  44120. name: "Gigamacro",
  44121. height: math.unit(500000, "feet")
  44122. },
  44123. {
  44124. name: "Teramacro",
  44125. height: math.unit(5e6, "feet")
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(6 + 2/12, "feet"),
  44134. name: "Front",
  44135. image: {
  44136. source: "./media/characters/squeaks/front.svg",
  44137. extra: 1823/1768,
  44138. bottom: 138/1961
  44139. }
  44140. },
  44141. },
  44142. [
  44143. {
  44144. name: "Micro",
  44145. height: math.unit(0.5, "inches")
  44146. },
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(6 + 2/12, "feet"),
  44150. default: true
  44151. },
  44152. {
  44153. name: "Macro",
  44154. height: math.unit(600, "feet")
  44155. },
  44156. ]
  44157. ))
  44158. characterMakers.push(() => makeCharacter(
  44159. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44160. {
  44161. front: {
  44162. height: math.unit(1.72, "meters"),
  44163. name: "Front",
  44164. image: {
  44165. source: "./media/characters/archinger/front.svg",
  44166. extra: 1861/1675,
  44167. bottom: 125/1986
  44168. }
  44169. },
  44170. back: {
  44171. height: math.unit(1.72, "meters"),
  44172. name: "Back",
  44173. image: {
  44174. source: "./media/characters/archinger/back.svg",
  44175. extra: 1844/1701,
  44176. bottom: 104/1948
  44177. }
  44178. },
  44179. cock: {
  44180. height: math.unit(0.59, "feet"),
  44181. name: "Cock",
  44182. image: {
  44183. source: "./media/characters/archinger/cock.svg"
  44184. }
  44185. },
  44186. },
  44187. [
  44188. {
  44189. name: "Normal",
  44190. height: math.unit(1.72, "meters"),
  44191. default: true
  44192. },
  44193. {
  44194. name: "Macro",
  44195. height: math.unit(84, "meters")
  44196. },
  44197. {
  44198. name: "Macro+",
  44199. height: math.unit(112, "meters")
  44200. },
  44201. {
  44202. name: "Macro++",
  44203. height: math.unit(960, "meters")
  44204. },
  44205. {
  44206. name: "Macro+++",
  44207. height: math.unit(4, "km")
  44208. },
  44209. {
  44210. name: "Macro++++",
  44211. height: math.unit(48, "km")
  44212. },
  44213. {
  44214. name: "Macro+++++",
  44215. height: math.unit(4500, "km")
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44221. {
  44222. front: {
  44223. height: math.unit(5 + 5/12, "feet"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/alsnapz/front.svg",
  44227. extra: 1157/1065,
  44228. bottom: 42/1199
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(5 + 5/12, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44242. {
  44243. side: {
  44244. height: math.unit(3.2, "earths"),
  44245. name: "Side",
  44246. image: {
  44247. source: "./media/characters/mag/side.svg",
  44248. extra: 1331/1008,
  44249. bottom: 52/1383
  44250. }
  44251. },
  44252. wing: {
  44253. height: math.unit(1.94, "earths"),
  44254. name: "Wing",
  44255. image: {
  44256. source: "./media/characters/mag/wing.svg"
  44257. }
  44258. },
  44259. dick: {
  44260. height: math.unit(1.8, "earths"),
  44261. name: "Dick",
  44262. image: {
  44263. source: "./media/characters/mag/dick.svg"
  44264. }
  44265. },
  44266. ass: {
  44267. height: math.unit(1.33, "earths"),
  44268. name: "Ass",
  44269. image: {
  44270. source: "./media/characters/mag/ass.svg"
  44271. }
  44272. },
  44273. head: {
  44274. height: math.unit(1.1, "earths"),
  44275. name: "Head",
  44276. image: {
  44277. source: "./media/characters/mag/head.svg"
  44278. }
  44279. },
  44280. maw: {
  44281. height: math.unit(1.62, "earths"),
  44282. name: "Maw",
  44283. image: {
  44284. source: "./media/characters/mag/maw.svg"
  44285. }
  44286. },
  44287. },
  44288. [
  44289. {
  44290. name: "Small",
  44291. height: math.unit(162, "feet")
  44292. },
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(3.2, "earths"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44302. {
  44303. front: {
  44304. height: math.unit(512, "feet"),
  44305. weight: math.unit(63509, "tonnes"),
  44306. name: "Front",
  44307. image: {
  44308. source: "./media/characters/vorrel-harroc/front.svg",
  44309. extra: 1075/1063,
  44310. bottom: 62/1137
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Normal",
  44317. height: math.unit(10, "feet")
  44318. },
  44319. {
  44320. name: "Macro",
  44321. height: math.unit(512, "feet"),
  44322. default: true
  44323. },
  44324. {
  44325. name: "Megamacro",
  44326. height: math.unit(256, "miles")
  44327. },
  44328. {
  44329. name: "Gigamacro",
  44330. height: math.unit(4096, "miles")
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44336. {
  44337. side: {
  44338. height: math.unit(50, "feet"),
  44339. name: "Side",
  44340. image: {
  44341. source: "./media/characters/froimar/side.svg",
  44342. extra: 855/638,
  44343. bottom: 99/954
  44344. }
  44345. },
  44346. },
  44347. [
  44348. {
  44349. name: "Macro",
  44350. height: math.unit(50, "feet"),
  44351. default: true
  44352. },
  44353. ]
  44354. ))
  44355. characterMakers.push(() => makeCharacter(
  44356. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44357. {
  44358. front: {
  44359. height: math.unit(210, "miles"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/timothy/front.svg",
  44363. extra: 1007/943,
  44364. bottom: 62/1069
  44365. }
  44366. },
  44367. frontSkirt: {
  44368. height: math.unit(210, "miles"),
  44369. name: "Front (Skirt)",
  44370. image: {
  44371. source: "./media/characters/timothy/front-skirt.svg",
  44372. extra: 1007/943,
  44373. bottom: 62/1069
  44374. }
  44375. },
  44376. frontCoat: {
  44377. height: math.unit(210, "miles"),
  44378. name: "Front (Coat)",
  44379. image: {
  44380. source: "./media/characters/timothy/front-coat.svg",
  44381. extra: 1007/943,
  44382. bottom: 62/1069
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Macro",
  44389. height: math.unit(210, "miles"),
  44390. default: true
  44391. },
  44392. {
  44393. name: "Megamacro",
  44394. height: math.unit(210000, "miles")
  44395. },
  44396. ]
  44397. ))
  44398. characterMakers.push(() => makeCharacter(
  44399. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44400. {
  44401. front: {
  44402. height: math.unit(188, "feet"),
  44403. name: "Front",
  44404. image: {
  44405. source: "./media/characters/pyotr/front.svg",
  44406. extra: 1912/1826,
  44407. bottom: 18/1930
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Macro",
  44414. height: math.unit(188, "feet"),
  44415. default: true
  44416. },
  44417. {
  44418. name: "Megamacro",
  44419. height: math.unit(8, "miles")
  44420. },
  44421. ]
  44422. ))
  44423. characterMakers.push(() => makeCharacter(
  44424. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44425. {
  44426. side: {
  44427. height: math.unit(10, "feet"),
  44428. weight: math.unit(4500, "lb"),
  44429. name: "Side",
  44430. image: {
  44431. source: "./media/characters/ackart/side.svg",
  44432. extra: 1776/1668,
  44433. bottom: 116/1892
  44434. }
  44435. },
  44436. },
  44437. [
  44438. {
  44439. name: "Normal",
  44440. height: math.unit(10, "feet"),
  44441. default: true
  44442. },
  44443. ]
  44444. ))
  44445. characterMakers.push(() => makeCharacter(
  44446. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44447. {
  44448. side: {
  44449. height: math.unit(21, "feet"),
  44450. name: "Side",
  44451. image: {
  44452. source: "./media/characters/nolow/side.svg",
  44453. extra: 1484/1434,
  44454. bottom: 85/1569
  44455. }
  44456. },
  44457. sideErect: {
  44458. height: math.unit(21, "feet"),
  44459. name: "Side (Erect)",
  44460. image: {
  44461. source: "./media/characters/nolow/side-erect.svg",
  44462. extra: 1484/1434,
  44463. bottom: 85/1569
  44464. }
  44465. },
  44466. },
  44467. [
  44468. {
  44469. name: "Regular",
  44470. height: math.unit(12, "feet")
  44471. },
  44472. {
  44473. name: "Big Chee",
  44474. height: math.unit(21, "feet"),
  44475. default: true
  44476. },
  44477. ]
  44478. ))
  44479. characterMakers.push(() => makeCharacter(
  44480. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44481. {
  44482. front: {
  44483. height: math.unit(7, "feet"),
  44484. weight: math.unit(250, "lb"),
  44485. name: "Front",
  44486. image: {
  44487. source: "./media/characters/nines/front.svg",
  44488. extra: 1741/1607,
  44489. bottom: 41/1782
  44490. }
  44491. },
  44492. side: {
  44493. height: math.unit(7, "feet"),
  44494. weight: math.unit(250, "lb"),
  44495. name: "Side",
  44496. image: {
  44497. source: "./media/characters/nines/side.svg",
  44498. extra: 1854/1735,
  44499. bottom: 93/1947
  44500. }
  44501. },
  44502. back: {
  44503. height: math.unit(7, "feet"),
  44504. weight: math.unit(250, "lb"),
  44505. name: "Back",
  44506. image: {
  44507. source: "./media/characters/nines/back.svg",
  44508. extra: 1748/1615,
  44509. bottom: 20/1768
  44510. }
  44511. },
  44512. },
  44513. [
  44514. {
  44515. name: "Megamacro",
  44516. height: math.unit(99, "km"),
  44517. default: true
  44518. },
  44519. ]
  44520. ))
  44521. characterMakers.push(() => makeCharacter(
  44522. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44523. {
  44524. front: {
  44525. height: math.unit(5 + 10/12, "feet"),
  44526. weight: math.unit(210, "lb"),
  44527. name: "Front",
  44528. image: {
  44529. source: "./media/characters/zenith/front.svg",
  44530. extra: 1531/1452,
  44531. bottom: 198/1729
  44532. }
  44533. },
  44534. back: {
  44535. height: math.unit(5 + 10/12, "feet"),
  44536. weight: math.unit(210, "lb"),
  44537. name: "Back",
  44538. image: {
  44539. source: "./media/characters/zenith/back.svg",
  44540. extra: 1571/1487,
  44541. bottom: 75/1646
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Normal",
  44548. height: math.unit(5 + 10/12, "feet"),
  44549. default: true
  44550. }
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(4, "feet"),
  44558. weight: math.unit(60, "lb"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/jasper/front.svg",
  44562. extra: 1450/1379,
  44563. bottom: 19/1469
  44564. }
  44565. },
  44566. },
  44567. [
  44568. {
  44569. name: "Normal",
  44570. height: math.unit(4, "feet"),
  44571. default: true
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44577. {
  44578. front: {
  44579. height: math.unit(6 + 5/12, "feet"),
  44580. weight: math.unit(290, "lb"),
  44581. name: "Front",
  44582. image: {
  44583. source: "./media/characters/tiberius-thyben/front.svg",
  44584. extra: 757/739,
  44585. bottom: 39/796
  44586. }
  44587. },
  44588. },
  44589. [
  44590. {
  44591. name: "Micro",
  44592. height: math.unit(1.5, "inches")
  44593. },
  44594. {
  44595. name: "Normal",
  44596. height: math.unit(6 + 5/12, "feet"),
  44597. default: true
  44598. },
  44599. {
  44600. name: "Macro",
  44601. height: math.unit(300, "feet")
  44602. },
  44603. ]
  44604. ))
  44605. characterMakers.push(() => makeCharacter(
  44606. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44607. {
  44608. front: {
  44609. height: math.unit(5 + 6/12, "feet"),
  44610. weight: math.unit(60, "kg"),
  44611. name: "Front",
  44612. image: {
  44613. source: "./media/characters/sabre/front.svg",
  44614. extra: 738/671,
  44615. bottom: 27/765
  44616. }
  44617. },
  44618. },
  44619. [
  44620. {
  44621. name: "Teeny",
  44622. height: math.unit(2, "inches")
  44623. },
  44624. {
  44625. name: "Smol",
  44626. height: math.unit(8, "inches")
  44627. },
  44628. {
  44629. name: "Normal",
  44630. height: math.unit(5 + 6/12, "feet"),
  44631. default: true
  44632. },
  44633. {
  44634. name: "Mini-Macro",
  44635. height: math.unit(15, "feet")
  44636. },
  44637. {
  44638. name: "Macro",
  44639. height: math.unit(50, "feet")
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44645. {
  44646. front: {
  44647. height: math.unit(6 + 4/12, "feet"),
  44648. weight: math.unit(170, "lb"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/charlie/front.svg",
  44652. extra: 1348/1228,
  44653. bottom: 15/1363
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Macro",
  44660. height: math.unit(1700, "meters"),
  44661. default: true
  44662. },
  44663. {
  44664. name: "MegaMacro",
  44665. height: math.unit(20400, "meters")
  44666. },
  44667. ]
  44668. ))
  44669. characterMakers.push(() => makeCharacter(
  44670. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44671. {
  44672. front: {
  44673. height: math.unit(1.96, "meters"),
  44674. weight: math.unit(220, "lb"),
  44675. name: "Front",
  44676. image: {
  44677. source: "./media/characters/susan-grant/front.svg",
  44678. extra: 482/478,
  44679. bottom: 7/489
  44680. }
  44681. },
  44682. },
  44683. [
  44684. {
  44685. name: "Normal",
  44686. height: math.unit(1.96, "meters"),
  44687. default: true
  44688. },
  44689. {
  44690. name: "Macro",
  44691. height: math.unit(76.2, "meters")
  44692. },
  44693. {
  44694. name: "MegaMacro",
  44695. height: math.unit(305, "meters")
  44696. },
  44697. {
  44698. name: "GigaMacro",
  44699. height: math.unit(1220, "meters")
  44700. },
  44701. {
  44702. name: "SuperMacro",
  44703. height: math.unit(4878, "meters")
  44704. },
  44705. ]
  44706. ))
  44707. characterMakers.push(() => makeCharacter(
  44708. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44709. {
  44710. front: {
  44711. height: math.unit(5 + 4/12, "feet"),
  44712. weight: math.unit(110, "lb"),
  44713. name: "Front",
  44714. image: {
  44715. source: "./media/characters/axel-isanov/front.svg",
  44716. extra: 1096/1065,
  44717. bottom: 13/1109
  44718. }
  44719. },
  44720. },
  44721. [
  44722. {
  44723. name: "Normal",
  44724. height: math.unit(5 + 4/12, "feet"),
  44725. default: true
  44726. },
  44727. ]
  44728. ))
  44729. characterMakers.push(() => makeCharacter(
  44730. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44731. {
  44732. front: {
  44733. height: math.unit(9, "feet"),
  44734. weight: math.unit(467, "lb"),
  44735. name: "Front",
  44736. image: {
  44737. source: "./media/characters/necahual/front.svg",
  44738. extra: 920/873,
  44739. bottom: 26/946
  44740. }
  44741. },
  44742. back: {
  44743. height: math.unit(9, "feet"),
  44744. weight: math.unit(467, "lb"),
  44745. name: "Back",
  44746. image: {
  44747. source: "./media/characters/necahual/back.svg",
  44748. extra: 930/884,
  44749. bottom: 16/946
  44750. }
  44751. },
  44752. frontUnderwear: {
  44753. height: math.unit(9, "feet"),
  44754. weight: math.unit(467, "lb"),
  44755. name: "Front (Underwear)",
  44756. image: {
  44757. source: "./media/characters/necahual/front-underwear.svg",
  44758. extra: 920/873,
  44759. bottom: 26/946
  44760. }
  44761. },
  44762. frontDressed: {
  44763. height: math.unit(9, "feet"),
  44764. weight: math.unit(467, "lb"),
  44765. name: "Front (Dressed)",
  44766. image: {
  44767. source: "./media/characters/necahual/front-dressed.svg",
  44768. extra: 920/873,
  44769. bottom: 26/946
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Comprsesed",
  44776. height: math.unit(9, "feet")
  44777. },
  44778. {
  44779. name: "Natural",
  44780. height: math.unit(15, "feet"),
  44781. default: true
  44782. },
  44783. {
  44784. name: "Boosted",
  44785. height: math.unit(50, "feet")
  44786. },
  44787. {
  44788. name: "Boosted+",
  44789. height: math.unit(150, "feet")
  44790. },
  44791. {
  44792. name: "Max",
  44793. height: math.unit(500, "feet")
  44794. },
  44795. ]
  44796. ))
  44797. characterMakers.push(() => makeCharacter(
  44798. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44799. {
  44800. front: {
  44801. height: math.unit(22 + 1/12, "feet"),
  44802. weight: math.unit(3200, "lb"),
  44803. name: "Front",
  44804. image: {
  44805. source: "./media/characters/theo-acacia/front.svg",
  44806. extra: 1796/1741,
  44807. bottom: 83/1879
  44808. }
  44809. },
  44810. frontUnderwear: {
  44811. height: math.unit(22 + 1/12, "feet"),
  44812. weight: math.unit(3200, "lb"),
  44813. name: "Front (Underwear)",
  44814. image: {
  44815. source: "./media/characters/theo-acacia/front-underwear.svg",
  44816. extra: 1796/1741,
  44817. bottom: 83/1879
  44818. }
  44819. },
  44820. frontNude: {
  44821. height: math.unit(22 + 1/12, "feet"),
  44822. weight: math.unit(3200, "lb"),
  44823. name: "Front (Nude)",
  44824. image: {
  44825. source: "./media/characters/theo-acacia/front-nude.svg",
  44826. extra: 1796/1741,
  44827. bottom: 83/1879
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Normal",
  44834. height: math.unit(22 + 1/12, "feet"),
  44835. default: true
  44836. },
  44837. ]
  44838. ))
  44839. characterMakers.push(() => makeCharacter(
  44840. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44841. {
  44842. front: {
  44843. height: math.unit(20, "feet"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/astra/front.svg",
  44847. extra: 1850/1714,
  44848. bottom: 106/1956
  44849. }
  44850. },
  44851. frontUndressed: {
  44852. height: math.unit(20, "feet"),
  44853. name: "Front (Undressed)",
  44854. image: {
  44855. source: "./media/characters/astra/front-undressed.svg",
  44856. extra: 1926/1749,
  44857. bottom: 0/1926
  44858. }
  44859. },
  44860. hand: {
  44861. height: math.unit(1.53, "feet"),
  44862. name: "Hand",
  44863. image: {
  44864. source: "./media/characters/astra/hand.svg"
  44865. }
  44866. },
  44867. paw: {
  44868. height: math.unit(1.53, "feet"),
  44869. name: "Paw",
  44870. image: {
  44871. source: "./media/characters/astra/paw.svg"
  44872. }
  44873. },
  44874. },
  44875. [
  44876. {
  44877. name: "Smallest",
  44878. height: math.unit(20, "feet")
  44879. },
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(1e9, "miles"),
  44883. default: true
  44884. },
  44885. {
  44886. name: "Larger",
  44887. height: math.unit(5, "multiverses")
  44888. },
  44889. {
  44890. name: "Largest",
  44891. height: math.unit(1e9, "multiverses")
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44897. {
  44898. front: {
  44899. height: math.unit(8, "feet"),
  44900. name: "Front",
  44901. image: {
  44902. source: "./media/characters/breanna/front.svg",
  44903. extra: 1912/1632,
  44904. bottom: 33/1945
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Smallest",
  44911. height: math.unit(8, "feet")
  44912. },
  44913. {
  44914. name: "Normal",
  44915. height: math.unit(1, "mile"),
  44916. default: true
  44917. },
  44918. {
  44919. name: "Maximum",
  44920. height: math.unit(1500000000000, "lightyears")
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(5 + 11/12, "feet"),
  44929. weight: math.unit(155, "lb"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/cai/front.svg",
  44933. extra: 1823/1702,
  44934. bottom: 32/1855
  44935. }
  44936. },
  44937. back: {
  44938. height: math.unit(5 + 11/12, "feet"),
  44939. weight: math.unit(155, "lb"),
  44940. name: "Back",
  44941. image: {
  44942. source: "./media/characters/cai/back.svg",
  44943. extra: 1809/1708,
  44944. bottom: 31/1840
  44945. }
  44946. },
  44947. },
  44948. [
  44949. {
  44950. name: "Normal",
  44951. height: math.unit(5 + 11/12, "feet"),
  44952. default: true
  44953. },
  44954. {
  44955. name: "Big",
  44956. height: math.unit(15, "feet")
  44957. },
  44958. {
  44959. name: "Macro",
  44960. height: math.unit(200, "feet")
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44966. {
  44967. front: {
  44968. height: math.unit(5 + 6/12, "feet"),
  44969. weight: math.unit(160, "lb"),
  44970. name: "Front",
  44971. image: {
  44972. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44973. extra: 1227/1174,
  44974. bottom: 37/1264
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Macro",
  44981. height: math.unit(444, "meters"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(18 + 7/12, "feet"),
  44991. name: "Front",
  44992. image: {
  44993. source: "./media/characters/rex/front.svg",
  44994. extra: 1941/1807,
  44995. bottom: 66/2007
  44996. }
  44997. },
  44998. back: {
  44999. height: math.unit(18 + 7/12, "feet"),
  45000. name: "Back",
  45001. image: {
  45002. source: "./media/characters/rex/back.svg",
  45003. extra: 1937/1822,
  45004. bottom: 42/1979
  45005. }
  45006. },
  45007. boot: {
  45008. height: math.unit(3.45, "feet"),
  45009. name: "Boot",
  45010. image: {
  45011. source: "./media/characters/rex/boot.svg"
  45012. }
  45013. },
  45014. paw: {
  45015. height: math.unit(4.17, "feet"),
  45016. name: "Paw",
  45017. image: {
  45018. source: "./media/characters/rex/paw.svg"
  45019. }
  45020. },
  45021. head: {
  45022. height: math.unit(6.728, "feet"),
  45023. name: "Head",
  45024. image: {
  45025. source: "./media/characters/rex/head.svg"
  45026. }
  45027. },
  45028. },
  45029. [
  45030. {
  45031. name: "Nano",
  45032. height: math.unit(18 + 7/12, "feet")
  45033. },
  45034. {
  45035. name: "Micro",
  45036. height: math.unit(1.5, "megameters")
  45037. },
  45038. {
  45039. name: "Normal",
  45040. height: math.unit(440, "megameters"),
  45041. default: true
  45042. },
  45043. {
  45044. name: "Macro",
  45045. height: math.unit(2.5, "gigameters")
  45046. },
  45047. {
  45048. name: "Gigamacro",
  45049. height: math.unit(2, "galaxies")
  45050. },
  45051. ]
  45052. ))
  45053. characterMakers.push(() => makeCharacter(
  45054. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45055. {
  45056. side: {
  45057. height: math.unit(32, "feet"),
  45058. weight: math.unit(250000, "lb"),
  45059. name: "Side",
  45060. image: {
  45061. source: "./media/characters/silverwing/side.svg",
  45062. extra: 1100/1019,
  45063. bottom: 204/1304
  45064. }
  45065. },
  45066. },
  45067. [
  45068. {
  45069. name: "Normal",
  45070. height: math.unit(32, "feet"),
  45071. default: true
  45072. },
  45073. ]
  45074. ))
  45075. characterMakers.push(() => makeCharacter(
  45076. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45077. {
  45078. skunkFront: {
  45079. height: math.unit(4 + 6/12, "feet"),
  45080. weight: math.unit(120, "lb"),
  45081. name: "Front",
  45082. image: {
  45083. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45084. extra: 330/318,
  45085. bottom: 25/355
  45086. },
  45087. form: "skunk",
  45088. default: true
  45089. },
  45090. alolanUmbraichu_front: {
  45091. height: math.unit(2 + 6/12, "feet"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45095. extra: 389/350,
  45096. bottom: 33/422
  45097. },
  45098. form: "alolan-umbraichu",
  45099. default: true
  45100. },
  45101. },
  45102. [
  45103. {
  45104. name: "Normal",
  45105. height: math.unit(4 + 6/12, "feet"),
  45106. form: "skunk",
  45107. default: true
  45108. },
  45109. {
  45110. name: "Normal",
  45111. height: math.unit(2 + 6/12, "feet"),
  45112. form: "alolan-umbraichu",
  45113. default: true
  45114. },
  45115. ],
  45116. {
  45117. "skunk": {
  45118. name: "Skunk",
  45119. default: true
  45120. },
  45121. "alolan-umbraichu": {
  45122. name: "Alolan Umbraichu",
  45123. },
  45124. }
  45125. ))
  45126. characterMakers.push(() => makeCharacter(
  45127. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45128. {
  45129. front: {
  45130. height: math.unit(5 + 11/12, "feet"),
  45131. weight: math.unit(190, "lb"),
  45132. name: "Front",
  45133. image: {
  45134. source: "./media/characters/mizu/front.svg",
  45135. extra: 1988/1788,
  45136. bottom: 14/2002
  45137. }
  45138. },
  45139. },
  45140. [
  45141. {
  45142. name: "Normal",
  45143. height: math.unit(5 + 11/12, "feet"),
  45144. default: true
  45145. },
  45146. ]
  45147. ))
  45148. characterMakers.push(() => makeCharacter(
  45149. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45150. {
  45151. front: {
  45152. height: math.unit(1.7, "feet"),
  45153. weight: math.unit(50, "lb"),
  45154. name: "Front",
  45155. image: {
  45156. source: "./media/characters/dechroma/front.svg",
  45157. extra: 1095/859,
  45158. bottom: 64/1159
  45159. }
  45160. },
  45161. },
  45162. [
  45163. {
  45164. name: "Normal",
  45165. height: math.unit(1.7, "feet"),
  45166. default: true
  45167. },
  45168. ]
  45169. ))
  45170. characterMakers.push(() => makeCharacter(
  45171. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45172. {
  45173. side: {
  45174. height: math.unit(30, "feet"),
  45175. name: "Side",
  45176. image: {
  45177. source: "./media/characters/veluren-thanazel/side.svg",
  45178. extra: 1611/633,
  45179. bottom: 118/1729
  45180. }
  45181. },
  45182. front: {
  45183. height: math.unit(30, "feet"),
  45184. name: "Front",
  45185. image: {
  45186. source: "./media/characters/veluren-thanazel/front.svg",
  45187. extra: 1486/636,
  45188. bottom: 238/1724
  45189. }
  45190. },
  45191. head: {
  45192. height: math.unit(21.4, "feet"),
  45193. name: "Head",
  45194. image: {
  45195. source: "./media/characters/veluren-thanazel/head.svg"
  45196. }
  45197. },
  45198. genitals: {
  45199. height: math.unit(19.4, "feet"),
  45200. name: "Genitals",
  45201. image: {
  45202. source: "./media/characters/veluren-thanazel/genitals.svg"
  45203. }
  45204. },
  45205. },
  45206. [
  45207. {
  45208. name: "Social",
  45209. height: math.unit(6, "feet")
  45210. },
  45211. {
  45212. name: "Play",
  45213. height: math.unit(12, "feet")
  45214. },
  45215. {
  45216. name: "True",
  45217. height: math.unit(30, "feet"),
  45218. default: true
  45219. },
  45220. ]
  45221. ))
  45222. characterMakers.push(() => makeCharacter(
  45223. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45224. {
  45225. front: {
  45226. height: math.unit(7 + 6/12, "feet"),
  45227. weight: math.unit(500, "kg"),
  45228. name: "Front",
  45229. image: {
  45230. source: "./media/characters/arcturas/front.svg",
  45231. extra: 1700/1500,
  45232. bottom: 145/1845
  45233. }
  45234. },
  45235. },
  45236. [
  45237. {
  45238. name: "Normal",
  45239. height: math.unit(7 + 6/12, "feet"),
  45240. default: true
  45241. },
  45242. ]
  45243. ))
  45244. characterMakers.push(() => makeCharacter(
  45245. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45246. {
  45247. side: {
  45248. height: math.unit(6, "feet"),
  45249. weight: math.unit(2, "tons"),
  45250. name: "Side",
  45251. image: {
  45252. source: "./media/characters/vitaen/side.svg",
  45253. extra: 1157/617,
  45254. bottom: 122/1279
  45255. }
  45256. },
  45257. },
  45258. [
  45259. {
  45260. name: "Normal",
  45261. height: math.unit(6, "feet"),
  45262. default: true
  45263. },
  45264. ]
  45265. ))
  45266. characterMakers.push(() => makeCharacter(
  45267. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45268. {
  45269. front: {
  45270. height: math.unit(19, "feet"),
  45271. name: "Front",
  45272. image: {
  45273. source: "./media/characters/fia-dreamweaver/front.svg",
  45274. extra: 1630/1504,
  45275. bottom: 25/1655
  45276. }
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Normal",
  45282. height: math.unit(19, "feet"),
  45283. default: true
  45284. },
  45285. ]
  45286. ))
  45287. characterMakers.push(() => makeCharacter(
  45288. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45289. {
  45290. front: {
  45291. height: math.unit(5 + 4/12, "feet"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/artan/front.svg",
  45295. extra: 1618/1535,
  45296. bottom: 46/1664
  45297. }
  45298. },
  45299. back: {
  45300. height: math.unit(5 + 4/12, "feet"),
  45301. name: "Back",
  45302. image: {
  45303. source: "./media/characters/artan/back.svg",
  45304. extra: 1618/1543,
  45305. bottom: 31/1649
  45306. }
  45307. },
  45308. },
  45309. [
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(5 + 4/12, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45319. {
  45320. side: {
  45321. height: math.unit(182, "cm"),
  45322. weight: math.unit(1000, "lb"),
  45323. name: "Side",
  45324. image: {
  45325. source: "./media/characters/silver-dragon/side.svg",
  45326. extra: 710/287,
  45327. bottom: 88/798
  45328. }
  45329. },
  45330. },
  45331. [
  45332. {
  45333. name: "Normal",
  45334. height: math.unit(182, "cm"),
  45335. default: true
  45336. },
  45337. ]
  45338. ))
  45339. characterMakers.push(() => makeCharacter(
  45340. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45341. {
  45342. side: {
  45343. height: math.unit(6 + 6/12, "feet"),
  45344. weight: math.unit(1.5, "tons"),
  45345. name: "Side",
  45346. image: {
  45347. source: "./media/characters/zephyr/side.svg",
  45348. extra: 1436/603,
  45349. bottom: 105/1541
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(6 + 6/12, "feet"),
  45357. default: true
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45363. {
  45364. side: {
  45365. height: math.unit(1, "feet"),
  45366. name: "Side",
  45367. image: {
  45368. source: "./media/characters/vixye/side.svg",
  45369. extra: 632/541,
  45370. bottom: 0/632
  45371. }
  45372. },
  45373. },
  45374. [
  45375. {
  45376. name: "Normal",
  45377. height: math.unit(1, "feet"),
  45378. default: true
  45379. },
  45380. {
  45381. name: "True",
  45382. height: math.unit(1e15, "multiverses")
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(8 + 2/12, "feet"),
  45391. weight: math.unit(650, "lb"),
  45392. name: "Front",
  45393. image: {
  45394. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45395. extra: 1174/1137,
  45396. bottom: 82/1256
  45397. }
  45398. },
  45399. back: {
  45400. height: math.unit(8 + 2/12, "feet"),
  45401. weight: math.unit(650, "lb"),
  45402. name: "Back",
  45403. image: {
  45404. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45405. extra: 1204/1157,
  45406. bottom: 46/1250
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Wildform",
  45413. height: math.unit(8 + 2/12, "feet"),
  45414. default: true
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(18, "feet"),
  45423. name: "Front",
  45424. image: {
  45425. source: "./media/characters/cyphin/front.svg",
  45426. extra: 970/886,
  45427. bottom: 42/1012
  45428. }
  45429. },
  45430. back: {
  45431. height: math.unit(18, "feet"),
  45432. name: "Back",
  45433. image: {
  45434. source: "./media/characters/cyphin/back.svg",
  45435. extra: 1009/894,
  45436. bottom: 24/1033
  45437. }
  45438. },
  45439. head: {
  45440. height: math.unit(5.05, "feet"),
  45441. name: "Head",
  45442. image: {
  45443. source: "./media/characters/cyphin/head.svg"
  45444. }
  45445. },
  45446. tailbud: {
  45447. height: math.unit(5, "feet"),
  45448. name: "Tailbud",
  45449. image: {
  45450. source: "./media/characters/cyphin/tailbud.svg"
  45451. }
  45452. },
  45453. },
  45454. [
  45455. ]
  45456. ))
  45457. characterMakers.push(() => makeCharacter(
  45458. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45459. {
  45460. side: {
  45461. height: math.unit(10, "feet"),
  45462. weight: math.unit(6, "tons"),
  45463. name: "Side",
  45464. image: {
  45465. source: "./media/characters/raijin/side.svg",
  45466. extra: 1529/613,
  45467. bottom: 337/1866
  45468. }
  45469. },
  45470. },
  45471. [
  45472. {
  45473. name: "Normal",
  45474. height: math.unit(10, "feet"),
  45475. default: true
  45476. },
  45477. ]
  45478. ))
  45479. characterMakers.push(() => makeCharacter(
  45480. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45481. {
  45482. side: {
  45483. height: math.unit(9, "feet"),
  45484. name: "Side",
  45485. image: {
  45486. source: "./media/characters/nilghais/side.svg",
  45487. extra: 1047/744,
  45488. bottom: 91/1138
  45489. }
  45490. },
  45491. head: {
  45492. height: math.unit(3.14, "feet"),
  45493. name: "Head",
  45494. image: {
  45495. source: "./media/characters/nilghais/head.svg"
  45496. }
  45497. },
  45498. mouth: {
  45499. height: math.unit(4.6, "feet"),
  45500. name: "Mouth",
  45501. image: {
  45502. source: "./media/characters/nilghais/mouth.svg"
  45503. }
  45504. },
  45505. wings: {
  45506. height: math.unit(24, "feet"),
  45507. name: "Wings",
  45508. image: {
  45509. source: "./media/characters/nilghais/wings.svg"
  45510. }
  45511. },
  45512. ass: {
  45513. height: math.unit(6.12, "feet"),
  45514. name: "Ass",
  45515. image: {
  45516. source: "./media/characters/nilghais/ass.svg"
  45517. }
  45518. },
  45519. },
  45520. [
  45521. {
  45522. name: "Normal",
  45523. height: math.unit(9, "feet"),
  45524. default: true
  45525. },
  45526. ]
  45527. ))
  45528. characterMakers.push(() => makeCharacter(
  45529. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45530. {
  45531. regular: {
  45532. height: math.unit(16 + 2/12, "feet"),
  45533. weight: math.unit(2300, "lb"),
  45534. name: "Regular",
  45535. image: {
  45536. source: "./media/characters/zolgar/regular.svg",
  45537. extra: 1246/1004,
  45538. bottom: 124/1370
  45539. }
  45540. },
  45541. boxers: {
  45542. height: math.unit(16 + 2/12, "feet"),
  45543. weight: math.unit(2300, "lb"),
  45544. name: "Boxers",
  45545. image: {
  45546. source: "./media/characters/zolgar/boxers.svg",
  45547. extra: 1246/1004,
  45548. bottom: 124/1370
  45549. }
  45550. },
  45551. armored: {
  45552. height: math.unit(16 + 2/12, "feet"),
  45553. weight: math.unit(2300, "lb"),
  45554. name: "Armored",
  45555. image: {
  45556. source: "./media/characters/zolgar/armored.svg",
  45557. extra: 1246/1004,
  45558. bottom: 124/1370
  45559. }
  45560. },
  45561. goth: {
  45562. height: math.unit(16 + 2/12, "feet"),
  45563. weight: math.unit(2300, "lb"),
  45564. name: "Goth",
  45565. image: {
  45566. source: "./media/characters/zolgar/goth.svg",
  45567. extra: 1246/1004,
  45568. bottom: 124/1370
  45569. }
  45570. },
  45571. },
  45572. [
  45573. {
  45574. name: "Shrunken Down",
  45575. height: math.unit(9 + 2/12, "feet")
  45576. },
  45577. {
  45578. name: "Normal",
  45579. height: math.unit(16 + 2/12, "feet"),
  45580. default: true
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(6, "feet"),
  45589. weight: math.unit(168, "lb"),
  45590. name: "Front",
  45591. image: {
  45592. source: "./media/characters/luca/front.svg",
  45593. extra: 841/667,
  45594. bottom: 102/943
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Normal",
  45601. height: math.unit(6, "feet"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45608. {
  45609. side: {
  45610. height: math.unit(7 + 3/12, "feet"),
  45611. weight: math.unit(312, "lb"),
  45612. name: "Side",
  45613. image: {
  45614. source: "./media/characters/zezo/side.svg",
  45615. extra: 1192/1067,
  45616. bottom: 63/1255
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(7 + 3/12, "feet"),
  45624. default: true
  45625. },
  45626. ]
  45627. ))
  45628. characterMakers.push(() => makeCharacter(
  45629. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45630. {
  45631. front: {
  45632. height: math.unit(5 + 5/12, "feet"),
  45633. weight: math.unit(170, "lb"),
  45634. name: "Front",
  45635. image: {
  45636. source: "./media/characters/mayso/front.svg",
  45637. extra: 1215/1108,
  45638. bottom: 16/1231
  45639. }
  45640. },
  45641. },
  45642. [
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(5 + 5/12, "feet"),
  45646. default: true
  45647. },
  45648. ]
  45649. ))
  45650. characterMakers.push(() => makeCharacter(
  45651. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45652. {
  45653. front: {
  45654. height: math.unit(4 + 3/12, "feet"),
  45655. weight: math.unit(80, "lb"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/hess/front.svg",
  45659. extra: 1200/1123,
  45660. bottom: 16/1216
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Normal",
  45667. height: math.unit(4 + 3/12, "feet"),
  45668. default: true
  45669. },
  45670. ]
  45671. ))
  45672. characterMakers.push(() => makeCharacter(
  45673. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45674. {
  45675. front: {
  45676. height: math.unit(1.9, "meters"),
  45677. name: "Front",
  45678. image: {
  45679. source: "./media/characters/ashgar/front.svg",
  45680. extra: 1177/1146,
  45681. bottom: 99/1276
  45682. }
  45683. },
  45684. back: {
  45685. height: math.unit(1.9, "meters"),
  45686. name: "Back",
  45687. image: {
  45688. source: "./media/characters/ashgar/back.svg",
  45689. extra: 1201/1183,
  45690. bottom: 53/1254
  45691. }
  45692. },
  45693. feral: {
  45694. height: math.unit(1.4, "meters"),
  45695. name: "Feral",
  45696. image: {
  45697. source: "./media/characters/ashgar/feral.svg",
  45698. extra: 370/345,
  45699. bottom: 45/415
  45700. }
  45701. },
  45702. },
  45703. [
  45704. {
  45705. name: "Normal",
  45706. height: math.unit(1.9, "meters"),
  45707. default: true
  45708. },
  45709. ]
  45710. ))
  45711. characterMakers.push(() => makeCharacter(
  45712. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45713. {
  45714. regular: {
  45715. height: math.unit(6, "feet"),
  45716. weight: math.unit(220, "lb"),
  45717. name: "Regular",
  45718. image: {
  45719. source: "./media/characters/phillip/regular.svg",
  45720. extra: 1373/1277,
  45721. bottom: 75/1448
  45722. }
  45723. },
  45724. dressed: {
  45725. height: math.unit(6, "feet"),
  45726. weight: math.unit(220, "lb"),
  45727. name: "Dressed",
  45728. image: {
  45729. source: "./media/characters/phillip/dressed.svg",
  45730. extra: 1373/1277,
  45731. bottom: 75/1448
  45732. }
  45733. },
  45734. paw: {
  45735. height: math.unit(1.44, "feet"),
  45736. name: "Paw",
  45737. image: {
  45738. source: "./media/characters/phillip/paw.svg"
  45739. }
  45740. },
  45741. },
  45742. [
  45743. {
  45744. name: "Normal",
  45745. height: math.unit(6, "feet"),
  45746. default: true
  45747. },
  45748. ]
  45749. ))
  45750. characterMakers.push(() => makeCharacter(
  45751. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45752. {
  45753. side: {
  45754. height: math.unit(42, "feet"),
  45755. name: "Side",
  45756. image: {
  45757. source: "./media/characters/uvula/side.svg",
  45758. extra: 683/586,
  45759. bottom: 60/743
  45760. }
  45761. },
  45762. front: {
  45763. height: math.unit(42, "feet"),
  45764. name: "Front",
  45765. image: {
  45766. source: "./media/characters/uvula/front.svg",
  45767. extra: 705/613,
  45768. bottom: 54/759
  45769. }
  45770. },
  45771. maw: {
  45772. height: math.unit(23.5, "feet"),
  45773. name: "Maw",
  45774. image: {
  45775. source: "./media/characters/uvula/maw.svg"
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Original Size",
  45782. height: math.unit(14, "inches")
  45783. },
  45784. {
  45785. name: "Human Size",
  45786. height: math.unit(6, "feet")
  45787. },
  45788. {
  45789. name: "Big",
  45790. height: math.unit(42, "feet"),
  45791. default: true
  45792. },
  45793. {
  45794. name: "Bigger",
  45795. height: math.unit(100, "feet")
  45796. },
  45797. ]
  45798. ))
  45799. characterMakers.push(() => makeCharacter(
  45800. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45801. {
  45802. front: {
  45803. height: math.unit(5 + 11/12, "feet"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/lannah/front.svg",
  45807. extra: 1208/1113,
  45808. bottom: 97/1305
  45809. }
  45810. },
  45811. },
  45812. [
  45813. {
  45814. name: "Normal",
  45815. height: math.unit(5 + 11/12, "feet"),
  45816. default: true
  45817. },
  45818. ]
  45819. ))
  45820. characterMakers.push(() => makeCharacter(
  45821. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45822. {
  45823. front: {
  45824. height: math.unit(6 + 3/12, "feet"),
  45825. weight: math.unit(3.5, "tons"),
  45826. name: "Front",
  45827. image: {
  45828. source: "./media/characters/emberflame/front.svg",
  45829. extra: 1198/672,
  45830. bottom: 82/1280
  45831. }
  45832. },
  45833. side: {
  45834. height: math.unit(6 + 3/12, "feet"),
  45835. weight: math.unit(3.5, "tons"),
  45836. name: "Side",
  45837. image: {
  45838. source: "./media/characters/emberflame/side.svg",
  45839. extra: 938/527,
  45840. bottom: 56/994
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(6 + 3/12, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45854. {
  45855. side: {
  45856. height: math.unit(17.5, "feet"),
  45857. weight: math.unit(35, "tons"),
  45858. name: "Side",
  45859. image: {
  45860. source: "./media/characters/sophie-ambrose/side.svg",
  45861. extra: 1573/1242,
  45862. bottom: 71/1644
  45863. }
  45864. },
  45865. maw: {
  45866. height: math.unit(7.4, "feet"),
  45867. name: "Maw",
  45868. image: {
  45869. source: "./media/characters/sophie-ambrose/maw.svg"
  45870. }
  45871. },
  45872. },
  45873. [
  45874. {
  45875. name: "Normal",
  45876. height: math.unit(17.5, "feet"),
  45877. default: true
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45883. {
  45884. front: {
  45885. height: math.unit(280, "feet"),
  45886. weight: math.unit(550, "tons"),
  45887. name: "Front",
  45888. image: {
  45889. source: "./media/characters/king-mugi/front.svg",
  45890. extra: 1102/947,
  45891. bottom: 104/1206
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "King Mugi",
  45898. height: math.unit(280, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45905. {
  45906. female: {
  45907. height: math.unit(300, "meters"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/nova-fox/female.svg",
  45911. extra: 664/632,
  45912. bottom: 51/715
  45913. },
  45914. form: "female",
  45915. default: true
  45916. },
  45917. male: {
  45918. height: math.unit(300, "meters"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/nova-fox/male.svg",
  45922. extra: 663/631,
  45923. bottom: 30/693
  45924. },
  45925. form: "male",
  45926. default: true
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Macro",
  45932. height: math.unit(300, "meters"),
  45933. default: true,
  45934. allForms: true
  45935. },
  45936. ],
  45937. {
  45938. "female": {
  45939. name: "Female",
  45940. default: true
  45941. },
  45942. "male": {
  45943. name: "Male",
  45944. },
  45945. }
  45946. ))
  45947. characterMakers.push(() => makeCharacter(
  45948. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45949. {
  45950. front: {
  45951. height: math.unit(6 + 3/12, "feet"),
  45952. weight: math.unit(170, "lb"),
  45953. name: "Front",
  45954. image: {
  45955. source: "./media/characters/sam-bat/front.svg",
  45956. extra: 1601/1411,
  45957. bottom: 125/1726
  45958. }
  45959. },
  45960. back: {
  45961. height: math.unit(6 + 3/12, "feet"),
  45962. weight: math.unit(170, "lb"),
  45963. name: "Back",
  45964. image: {
  45965. source: "./media/characters/sam-bat/back.svg",
  45966. extra: 1577/1405,
  45967. bottom: 58/1635
  45968. }
  45969. },
  45970. },
  45971. [
  45972. {
  45973. name: "Normal",
  45974. height: math.unit(6 + 3/12, "feet"),
  45975. default: true
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45981. {
  45982. front: {
  45983. height: math.unit(59, "feet"),
  45984. weight: math.unit(40000, "lb"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/inari/front.svg",
  45988. extra: 1884/1350,
  45989. bottom: 95/1979
  45990. }
  45991. },
  45992. },
  45993. [
  45994. {
  45995. name: "Gigantamax",
  45996. height: math.unit(59, "feet"),
  45997. default: true
  45998. },
  45999. ]
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46003. {
  46004. front: {
  46005. height: math.unit(5 + 8/12, "feet"),
  46006. name: "Front",
  46007. image: {
  46008. source: "./media/characters/elizabeth/front.svg",
  46009. extra: 1395/1298,
  46010. bottom: 54/1449
  46011. }
  46012. },
  46013. mouth: {
  46014. height: math.unit(1.97, "feet"),
  46015. name: "Mouth",
  46016. image: {
  46017. source: "./media/characters/elizabeth/mouth.svg"
  46018. }
  46019. },
  46020. foot: {
  46021. height: math.unit(1.17, "feet"),
  46022. name: "Foot",
  46023. image: {
  46024. source: "./media/characters/elizabeth/foot.svg"
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(5 + 8/12, "feet"),
  46032. default: true
  46033. },
  46034. {
  46035. name: "Minimacro",
  46036. height: math.unit(18, "feet")
  46037. },
  46038. {
  46039. name: "Macro",
  46040. height: math.unit(180, "feet")
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46046. {
  46047. front: {
  46048. height: math.unit(5 + 2/12, "feet"),
  46049. name: "Front",
  46050. image: {
  46051. source: "./media/characters/october-gossamer/front.svg",
  46052. extra: 505/454,
  46053. bottom: 7/512
  46054. }
  46055. },
  46056. back: {
  46057. height: math.unit(5 + 2/12, "feet"),
  46058. name: "Back",
  46059. image: {
  46060. source: "./media/characters/october-gossamer/back.svg",
  46061. extra: 501/454,
  46062. bottom: 11/512
  46063. }
  46064. },
  46065. },
  46066. [
  46067. {
  46068. name: "Normal",
  46069. height: math.unit(5 + 2/12, "feet"),
  46070. default: true
  46071. },
  46072. ]
  46073. ))
  46074. characterMakers.push(() => makeCharacter(
  46075. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46076. {
  46077. front: {
  46078. height: math.unit(5, "feet"),
  46079. name: "Front",
  46080. image: {
  46081. source: "./media/characters/epiglottis/front.svg",
  46082. extra: 923/849,
  46083. bottom: 17/940
  46084. }
  46085. },
  46086. },
  46087. [
  46088. {
  46089. name: "Original Size",
  46090. height: math.unit(10, "inches")
  46091. },
  46092. {
  46093. name: "Human Size",
  46094. height: math.unit(5, "feet"),
  46095. default: true
  46096. },
  46097. {
  46098. name: "Big",
  46099. height: math.unit(25, "feet")
  46100. },
  46101. {
  46102. name: "Bigger",
  46103. height: math.unit(50, "feet")
  46104. },
  46105. {
  46106. name: "oh lawd",
  46107. height: math.unit(75, "feet")
  46108. },
  46109. ]
  46110. ))
  46111. characterMakers.push(() => makeCharacter(
  46112. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46113. {
  46114. front: {
  46115. height: math.unit(2 + 4/12, "feet"),
  46116. weight: math.unit(60, "lb"),
  46117. name: "Front",
  46118. image: {
  46119. source: "./media/characters/lerm/front.svg",
  46120. extra: 796/790,
  46121. bottom: 79/875
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Normal",
  46128. height: math.unit(2 + 4/12, "feet"),
  46129. default: true
  46130. },
  46131. ]
  46132. ))
  46133. characterMakers.push(() => makeCharacter(
  46134. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46135. {
  46136. front: {
  46137. height: math.unit(5.5, "feet"),
  46138. weight: math.unit(130, "lb"),
  46139. name: "Front",
  46140. image: {
  46141. source: "./media/characters/xena-nebadon/front.svg",
  46142. extra: 1828/1730,
  46143. bottom: 79/1907
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Tiny Puppy",
  46150. height: math.unit(3, "inches")
  46151. },
  46152. {
  46153. name: "Normal",
  46154. height: math.unit(5.5, "feet"),
  46155. default: true
  46156. },
  46157. {
  46158. name: "Lotta Lady",
  46159. height: math.unit(12, "feet")
  46160. },
  46161. {
  46162. name: "Pretty Big",
  46163. height: math.unit(100, "feet")
  46164. },
  46165. {
  46166. name: "Big",
  46167. height: math.unit(500, "feet")
  46168. },
  46169. {
  46170. name: "Skyscraper Toys",
  46171. height: math.unit(2500, "feet")
  46172. },
  46173. {
  46174. name: "Plane Catcher",
  46175. height: math.unit(8, "miles")
  46176. },
  46177. {
  46178. name: "Planet Toys",
  46179. height: math.unit(15, "earths")
  46180. },
  46181. {
  46182. name: "Stardust",
  46183. height: math.unit(0.25, "galaxies")
  46184. },
  46185. {
  46186. name: "Snacks",
  46187. height: math.unit(70, "universes")
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46193. {
  46194. front: {
  46195. height: math.unit(1.6, "meters"),
  46196. weight: math.unit(60, "kg"),
  46197. name: "Front",
  46198. image: {
  46199. source: "./media/characters/bounty/front.svg",
  46200. extra: 1426/1308,
  46201. bottom: 15/1441
  46202. }
  46203. },
  46204. back: {
  46205. height: math.unit(1.6, "meters"),
  46206. weight: math.unit(60, "kg"),
  46207. name: "Back",
  46208. image: {
  46209. source: "./media/characters/bounty/back.svg",
  46210. extra: 1417/1307,
  46211. bottom: 8/1425
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(1.6, "meters"),
  46219. default: true
  46220. },
  46221. {
  46222. name: "Macro",
  46223. height: math.unit(300, "meters")
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46229. {
  46230. front: {
  46231. height: math.unit(2 + 8/12, "feet"),
  46232. weight: math.unit(15, "lb"),
  46233. name: "Front",
  46234. image: {
  46235. source: "./media/characters/mochi/front.svg",
  46236. extra: 1022/852,
  46237. bottom: 435/1457
  46238. }
  46239. },
  46240. back: {
  46241. height: math.unit(2 + 8/12, "feet"),
  46242. weight: math.unit(15, "lb"),
  46243. name: "Back",
  46244. image: {
  46245. source: "./media/characters/mochi/back.svg",
  46246. extra: 1335/1119,
  46247. bottom: 39/1374
  46248. }
  46249. },
  46250. bird: {
  46251. height: math.unit(2 + 8/12, "feet"),
  46252. weight: math.unit(15, "lb"),
  46253. name: "Bird",
  46254. image: {
  46255. source: "./media/characters/mochi/bird.svg",
  46256. extra: 1251/1113,
  46257. bottom: 178/1429
  46258. }
  46259. },
  46260. kaiju: {
  46261. height: math.unit(154, "feet"),
  46262. weight: math.unit(1e7, "lb"),
  46263. name: "Kaiju",
  46264. image: {
  46265. source: "./media/characters/mochi/kaiju.svg",
  46266. extra: 460/324,
  46267. bottom: 40/500
  46268. }
  46269. },
  46270. head: {
  46271. height: math.unit(1.21, "feet"),
  46272. name: "Head",
  46273. image: {
  46274. source: "./media/characters/mochi/head.svg"
  46275. }
  46276. },
  46277. alternateTail: {
  46278. height: math.unit(2 + 8/12, "feet"),
  46279. weight: math.unit(45, "lb"),
  46280. name: "Alternate Tail",
  46281. image: {
  46282. source: "./media/characters/mochi/alternate-tail.svg",
  46283. extra: 139/76,
  46284. bottom: 45/184
  46285. }
  46286. },
  46287. },
  46288. [
  46289. {
  46290. name: "Micro",
  46291. height: math.unit(2, "inches")
  46292. },
  46293. {
  46294. name: "Normal",
  46295. height: math.unit(2 + 8/12, "feet"),
  46296. default: true
  46297. },
  46298. {
  46299. name: "Macro",
  46300. height: math.unit(106, "feet")
  46301. },
  46302. ]
  46303. ))
  46304. characterMakers.push(() => makeCharacter(
  46305. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46306. {
  46307. front: {
  46308. height: math.unit(5.67, "feet"),
  46309. weight: math.unit(135, "lb"),
  46310. name: "Front",
  46311. image: {
  46312. source: "./media/characters/sarel/front.svg",
  46313. extra: 865/788,
  46314. bottom: 97/962
  46315. }
  46316. },
  46317. back: {
  46318. height: math.unit(5.67, "feet"),
  46319. weight: math.unit(135, "lb"),
  46320. name: "Back",
  46321. image: {
  46322. source: "./media/characters/sarel/back.svg",
  46323. extra: 857/777,
  46324. bottom: 32/889
  46325. }
  46326. },
  46327. chozoan: {
  46328. height: math.unit(5.67, "feet"),
  46329. weight: math.unit(135, "lb"),
  46330. name: "Chozoan",
  46331. image: {
  46332. source: "./media/characters/sarel/chozoan.svg",
  46333. extra: 865/788,
  46334. bottom: 97/962
  46335. }
  46336. },
  46337. current: {
  46338. height: math.unit(5.67, "feet"),
  46339. weight: math.unit(135, "lb"),
  46340. name: "Current",
  46341. image: {
  46342. source: "./media/characters/sarel/current.svg",
  46343. extra: 865/788,
  46344. bottom: 97/962
  46345. }
  46346. },
  46347. head: {
  46348. height: math.unit(1.77, "feet"),
  46349. name: "Head",
  46350. image: {
  46351. source: "./media/characters/sarel/head.svg"
  46352. }
  46353. },
  46354. claws: {
  46355. height: math.unit(1.8, "feet"),
  46356. name: "Claws",
  46357. image: {
  46358. source: "./media/characters/sarel/claws.svg"
  46359. }
  46360. },
  46361. clawsAlt: {
  46362. height: math.unit(1.8, "feet"),
  46363. name: "Claws (Alt)",
  46364. image: {
  46365. source: "./media/characters/sarel/claws-alt.svg"
  46366. }
  46367. },
  46368. },
  46369. [
  46370. {
  46371. name: "Normal",
  46372. height: math.unit(5.67, "feet"),
  46373. default: true
  46374. },
  46375. ]
  46376. ))
  46377. characterMakers.push(() => makeCharacter(
  46378. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46379. {
  46380. front: {
  46381. height: math.unit(5500, "feet"),
  46382. name: "Front",
  46383. image: {
  46384. source: "./media/characters/alyonia/front.svg",
  46385. extra: 1200/1135,
  46386. bottom: 29/1229
  46387. }
  46388. },
  46389. back: {
  46390. height: math.unit(5500, "feet"),
  46391. name: "Back",
  46392. image: {
  46393. source: "./media/characters/alyonia/back.svg",
  46394. extra: 1205/1138,
  46395. bottom: 10/1215
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Small",
  46402. height: math.unit(10, "feet")
  46403. },
  46404. {
  46405. name: "Macro",
  46406. height: math.unit(500, "feet")
  46407. },
  46408. {
  46409. name: "Mega Macro",
  46410. height: math.unit(5500, "feet"),
  46411. default: true
  46412. },
  46413. {
  46414. name: "Mega Macro+",
  46415. height: math.unit(500000, "feet")
  46416. },
  46417. {
  46418. name: "Giga Macro",
  46419. height: math.unit(3000, "miles")
  46420. },
  46421. {
  46422. name: "Tera Macro",
  46423. height: math.unit(2.8e6, "miles")
  46424. },
  46425. {
  46426. name: "Galactic",
  46427. height: math.unit(120000, "lightyears")
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46433. {
  46434. werewolf: {
  46435. height: math.unit(8, "feet"),
  46436. weight: math.unit(425, "lb"),
  46437. name: "Werewolf",
  46438. image: {
  46439. source: "./media/characters/autumn/werewolf.svg",
  46440. extra: 2154/2031,
  46441. bottom: 160/2314
  46442. }
  46443. },
  46444. human: {
  46445. height: math.unit(5 + 8/12, "feet"),
  46446. weight: math.unit(150, "lb"),
  46447. name: "Human",
  46448. image: {
  46449. source: "./media/characters/autumn/human.svg",
  46450. extra: 1200/1149,
  46451. bottom: 30/1230
  46452. }
  46453. },
  46454. },
  46455. [
  46456. {
  46457. name: "Normal",
  46458. height: math.unit(8, "feet"),
  46459. default: true
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46465. {
  46466. front: {
  46467. height: math.unit(8 + 5/12, "feet"),
  46468. weight: math.unit(825, "lb"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/cobalt-charizard/front.svg",
  46472. extra: 1268/1155,
  46473. bottom: 122/1390
  46474. }
  46475. },
  46476. side: {
  46477. height: math.unit(8 + 5/12, "feet"),
  46478. weight: math.unit(825, "lb"),
  46479. name: "Side",
  46480. image: {
  46481. source: "./media/characters/cobalt-charizard/side.svg",
  46482. extra: 1348/1257,
  46483. bottom: 58/1406
  46484. }
  46485. },
  46486. gMax: {
  46487. height: math.unit(134 + 11/12, "feet"),
  46488. name: "G-Max",
  46489. image: {
  46490. source: "./media/characters/cobalt-charizard/g-max.svg",
  46491. extra: 1835/1541,
  46492. bottom: 151/1986
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(8 + 5/12, "feet"),
  46500. default: true
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46506. {
  46507. front: {
  46508. height: math.unit(6 + 3/12, "feet"),
  46509. weight: math.unit(210, "lb"),
  46510. name: "Front",
  46511. image: {
  46512. source: "./media/characters/stella/front.svg",
  46513. extra: 3549/3335,
  46514. bottom: 51/3600
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(6 + 3/12, "feet"),
  46522. default: true
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46528. {
  46529. front: {
  46530. height: math.unit(5, "feet"),
  46531. weight: math.unit(90, "lb"),
  46532. name: "Front",
  46533. image: {
  46534. source: "./media/characters/riley-bishop/front.svg",
  46535. extra: 1450/1428,
  46536. bottom: 152/1602
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(5, "feet"),
  46544. default: true
  46545. },
  46546. ]
  46547. ))
  46548. characterMakers.push(() => makeCharacter(
  46549. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46550. {
  46551. side: {
  46552. height: math.unit(8 + 2/12, "feet"),
  46553. weight: math.unit(500, "kg"),
  46554. name: "Side",
  46555. image: {
  46556. source: "./media/characters/theo-arcanine/side.svg",
  46557. extra: 1342/1074,
  46558. bottom: 111/1453
  46559. }
  46560. },
  46561. },
  46562. [
  46563. {
  46564. name: "Normal",
  46565. height: math.unit(8 + 2/12, "feet"),
  46566. default: true
  46567. },
  46568. ]
  46569. ))
  46570. characterMakers.push(() => makeCharacter(
  46571. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46572. {
  46573. front: {
  46574. height: math.unit(4, "feet"),
  46575. name: "Front",
  46576. image: {
  46577. source: "./media/characters/kali/front.svg",
  46578. extra: 1074/867,
  46579. bottom: 34/1108
  46580. }
  46581. },
  46582. back: {
  46583. height: math.unit(4, "feet"),
  46584. name: "Back",
  46585. image: {
  46586. source: "./media/characters/kali/back.svg",
  46587. extra: 1068/863,
  46588. bottom: 26/1094
  46589. }
  46590. },
  46591. frontAlt: {
  46592. height: math.unit(4, "feet"),
  46593. name: "Front (Alt)",
  46594. image: {
  46595. source: "./media/characters/kali/front-alt.svg",
  46596. extra: 1921/1357,
  46597. bottom: 70/1991
  46598. }
  46599. },
  46600. },
  46601. [
  46602. {
  46603. name: "Normal",
  46604. height: math.unit(4, "feet"),
  46605. default: true
  46606. },
  46607. {
  46608. name: "Big'vali",
  46609. height: math.unit(11, "feet")
  46610. },
  46611. {
  46612. name: "Macro",
  46613. height: math.unit(32, "meters")
  46614. },
  46615. {
  46616. name: "Macro+",
  46617. height: math.unit(150, "meters")
  46618. },
  46619. {
  46620. name: "Megamacro",
  46621. height: math.unit(7500, "meters")
  46622. },
  46623. {
  46624. name: "Megamacro+",
  46625. height: math.unit(80, "kilometers")
  46626. },
  46627. ]
  46628. ))
  46629. characterMakers.push(() => makeCharacter(
  46630. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46631. {
  46632. side: {
  46633. height: math.unit(5 + 11/12, "feet"),
  46634. weight: math.unit(236, "lb"),
  46635. name: "Side",
  46636. image: {
  46637. source: "./media/characters/gapp/side.svg",
  46638. extra: 775/340,
  46639. bottom: 58/833
  46640. }
  46641. },
  46642. mouth: {
  46643. height: math.unit(2.98, "feet"),
  46644. name: "Mouth",
  46645. image: {
  46646. source: "./media/characters/gapp/mouth.svg"
  46647. }
  46648. },
  46649. },
  46650. [
  46651. {
  46652. name: "Normal",
  46653. height: math.unit(5 + 1/12, "feet"),
  46654. default: true
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46660. {
  46661. front: {
  46662. height: math.unit(6, "feet"),
  46663. name: "Front",
  46664. image: {
  46665. source: "./media/characters/persephone/front.svg",
  46666. extra: 1895/1717,
  46667. bottom: 96/1991
  46668. }
  46669. },
  46670. back: {
  46671. height: math.unit(6, "feet"),
  46672. name: "Back",
  46673. image: {
  46674. source: "./media/characters/persephone/back.svg",
  46675. extra: 1868/1679,
  46676. bottom: 26/1894
  46677. }
  46678. },
  46679. casual: {
  46680. height: math.unit(6, "feet"),
  46681. name: "Casual",
  46682. image: {
  46683. source: "./media/characters/persephone/casual.svg",
  46684. extra: 1713/1541,
  46685. bottom: 76/1789
  46686. }
  46687. },
  46688. gaming: {
  46689. height: math.unit(3.55, "feet"),
  46690. name: "Gaming",
  46691. image: {
  46692. source: "./media/characters/persephone/gaming.svg",
  46693. extra: 1242/1038,
  46694. bottom: 66/1308
  46695. }
  46696. },
  46697. head: {
  46698. height: math.unit(2.15, "feet"),
  46699. name: "😐",
  46700. image: {
  46701. source: "./media/characters/persephone/head.svg"
  46702. }
  46703. },
  46704. talking: {
  46705. height: math.unit(2.5, "feet"),
  46706. name: "💬",
  46707. image: {
  46708. source: "./media/characters/persephone/talking.svg"
  46709. }
  46710. },
  46711. hmm: {
  46712. height: math.unit(2.28, "feet"),
  46713. name: "🤨",
  46714. image: {
  46715. source: "./media/characters/persephone/hmm.svg"
  46716. }
  46717. },
  46718. },
  46719. [
  46720. {
  46721. name: "Human Size",
  46722. height: math.unit(6, "feet")
  46723. },
  46724. {
  46725. name: "Big Steppy",
  46726. height: math.unit(600, "meters"),
  46727. default: true
  46728. },
  46729. {
  46730. name: "Galaxy Brain",
  46731. height: math.unit(1, "zettameter")
  46732. },
  46733. ]
  46734. ))
  46735. characterMakers.push(() => makeCharacter(
  46736. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46737. {
  46738. front: {
  46739. height: math.unit(1.85, "meters"),
  46740. name: "Front",
  46741. image: {
  46742. source: "./media/characters/riley-foxthing/front.svg",
  46743. extra: 1495/1354,
  46744. bottom: 122/1617
  46745. }
  46746. },
  46747. frontAlt: {
  46748. height: math.unit(1.85, "meters"),
  46749. name: "Front (Alt)",
  46750. image: {
  46751. source: "./media/characters/riley-foxthing/front-alt.svg",
  46752. extra: 1572/1389,
  46753. bottom: 116/1688
  46754. }
  46755. },
  46756. },
  46757. [
  46758. {
  46759. name: "Normal Sized",
  46760. height: math.unit(1.85, "meters"),
  46761. default: true
  46762. },
  46763. {
  46764. name: "Quite Sizable",
  46765. height: math.unit(5, "meters")
  46766. },
  46767. {
  46768. name: "Rather Large",
  46769. height: math.unit(20, "meters")
  46770. },
  46771. {
  46772. name: "Macro",
  46773. height: math.unit(450, "meters")
  46774. },
  46775. {
  46776. name: "Giga",
  46777. height: math.unit(5, "km")
  46778. },
  46779. ]
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(6, "feet"),
  46786. weight: math.unit(200, "lb"),
  46787. name: "Front",
  46788. image: {
  46789. source: "./media/characters/blizzard/front.svg",
  46790. extra: 1136/990,
  46791. bottom: 136/1272
  46792. }
  46793. },
  46794. back: {
  46795. height: math.unit(6, "feet"),
  46796. weight: math.unit(200, "lb"),
  46797. name: "Back",
  46798. image: {
  46799. source: "./media/characters/blizzard/back.svg",
  46800. extra: 1175/1034,
  46801. bottom: 97/1272
  46802. }
  46803. },
  46804. sitting: {
  46805. height: math.unit(3.725, "feet"),
  46806. weight: math.unit(200, "lb"),
  46807. name: "Sitting",
  46808. image: {
  46809. source: "./media/characters/blizzard/sitting.svg",
  46810. extra: 581/485,
  46811. bottom: 90/671
  46812. }
  46813. },
  46814. frontWizard: {
  46815. height: math.unit(7.9, "feet"),
  46816. weight: math.unit(200, "lb"),
  46817. name: "Front (Wizard)",
  46818. image: {
  46819. source: "./media/characters/blizzard/front-wizard.svg"
  46820. }
  46821. },
  46822. backWizard: {
  46823. height: math.unit(7.9, "feet"),
  46824. weight: math.unit(200, "lb"),
  46825. name: "Back (Wizard)",
  46826. image: {
  46827. source: "./media/characters/blizzard/back-wizard.svg"
  46828. }
  46829. },
  46830. frontNsfw: {
  46831. height: math.unit(6, "feet"),
  46832. weight: math.unit(200, "lb"),
  46833. name: "Front (NSFW)",
  46834. image: {
  46835. source: "./media/characters/blizzard/front-nsfw.svg",
  46836. extra: 1136/990,
  46837. bottom: 136/1272
  46838. }
  46839. },
  46840. backNsfw: {
  46841. height: math.unit(6, "feet"),
  46842. weight: math.unit(200, "lb"),
  46843. name: "Back (NSFW)",
  46844. image: {
  46845. source: "./media/characters/blizzard/back-nsfw.svg",
  46846. extra: 1175/1034,
  46847. bottom: 97/1272
  46848. }
  46849. },
  46850. sittingNsfw: {
  46851. height: math.unit(3.725, "feet"),
  46852. weight: math.unit(200, "lb"),
  46853. name: "Sitting (NSFW)",
  46854. image: {
  46855. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46856. extra: 581/485,
  46857. bottom: 90/671
  46858. }
  46859. },
  46860. wizardFrontNsfw: {
  46861. height: math.unit(7.9, "feet"),
  46862. weight: math.unit(200, "lb"),
  46863. name: "Wizard (Front, NSFW)",
  46864. image: {
  46865. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46866. }
  46867. },
  46868. },
  46869. [
  46870. {
  46871. name: "Normal",
  46872. height: math.unit(6, "feet"),
  46873. default: true
  46874. },
  46875. ]
  46876. ))
  46877. characterMakers.push(() => makeCharacter(
  46878. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46879. {
  46880. front: {
  46881. height: math.unit(5 + 2/12, "feet"),
  46882. name: "Front",
  46883. image: {
  46884. source: "./media/characters/lumi/front.svg",
  46885. extra: 1328/1268,
  46886. bottom: 103/1431
  46887. }
  46888. },
  46889. back: {
  46890. height: math.unit(5 + 2/12, "feet"),
  46891. name: "Back",
  46892. image: {
  46893. source: "./media/characters/lumi/back.svg",
  46894. extra: 1381/1327,
  46895. bottom: 43/1424
  46896. }
  46897. },
  46898. },
  46899. [
  46900. {
  46901. name: "Normal",
  46902. height: math.unit(5 + 2/12, "feet"),
  46903. default: true
  46904. },
  46905. ]
  46906. ))
  46907. characterMakers.push(() => makeCharacter(
  46908. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46909. {
  46910. front: {
  46911. height: math.unit(5 + 9/12, "feet"),
  46912. name: "Front",
  46913. image: {
  46914. source: "./media/characters/aliya-cotton/front.svg",
  46915. extra: 577/564,
  46916. bottom: 29/606
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Normal",
  46923. height: math.unit(5 + 9/12, "feet"),
  46924. default: true
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46930. {
  46931. front: {
  46932. height: math.unit(2.7, "meters"),
  46933. weight: math.unit(25000, "lb"),
  46934. name: "Front",
  46935. image: {
  46936. source: "./media/characters/noah-luxray/front.svg",
  46937. extra: 1644/825,
  46938. bottom: 339/1983
  46939. }
  46940. },
  46941. side: {
  46942. height: math.unit(2.97, "meters"),
  46943. weight: math.unit(25000, "lb"),
  46944. name: "Side",
  46945. image: {
  46946. source: "./media/characters/noah-luxray/side.svg",
  46947. extra: 1319/650,
  46948. bottom: 163/1482
  46949. }
  46950. },
  46951. dick: {
  46952. height: math.unit(7.4, "feet"),
  46953. weight: math.unit(2500, "lb"),
  46954. name: "Dick",
  46955. image: {
  46956. source: "./media/characters/noah-luxray/dick.svg"
  46957. }
  46958. },
  46959. dickAlt: {
  46960. height: math.unit(10.83, "feet"),
  46961. weight: math.unit(2500, "lb"),
  46962. name: "Dick (Alt)",
  46963. image: {
  46964. source: "./media/characters/noah-luxray/dick-alt.svg"
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "BIG",
  46971. height: math.unit(2.7, "meters"),
  46972. default: true
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46978. {
  46979. standing: {
  46980. height: math.unit(183, "cm"),
  46981. weight: math.unit(68, "kg"),
  46982. name: "Standing",
  46983. image: {
  46984. source: "./media/characters/arion/standing.svg",
  46985. extra: 1869/1807,
  46986. bottom: 93/1962
  46987. }
  46988. },
  46989. reclining: {
  46990. height: math.unit(70.5, "cm"),
  46991. weight: math.unit(68, "lb"),
  46992. name: "Reclining",
  46993. image: {
  46994. source: "./media/characters/arion/reclining.svg",
  46995. extra: 937/870,
  46996. bottom: 63/1000
  46997. }
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Colossus Size, Low",
  47003. height: math.unit(33, "meters"),
  47004. default: true
  47005. },
  47006. {
  47007. name: "Colossus Size, Mid",
  47008. height: math.unit(52, "meters")
  47009. },
  47010. {
  47011. name: "Colossus Size, High",
  47012. height: math.unit(60, "meters")
  47013. },
  47014. {
  47015. name: "Titan Size, Low",
  47016. height: math.unit(91, "meters"),
  47017. },
  47018. {
  47019. name: "Titan Size, Mid",
  47020. height: math.unit(122, "meters")
  47021. },
  47022. {
  47023. name: "Titan Size, High",
  47024. height: math.unit(162, "meters")
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47030. {
  47031. front: {
  47032. height: math.unit(53, "meters"),
  47033. name: "Front",
  47034. image: {
  47035. source: "./media/characters/stellar-marbey/front.svg",
  47036. extra: 1913/1805,
  47037. bottom: 92/2005
  47038. }
  47039. },
  47040. back: {
  47041. height: math.unit(53, "meters"),
  47042. name: "Back",
  47043. image: {
  47044. source: "./media/characters/stellar-marbey/back.svg",
  47045. extra: 1960/1851,
  47046. bottom: 28/1988
  47047. }
  47048. },
  47049. mouth: {
  47050. height: math.unit(3.5, "meters"),
  47051. name: "Mouth",
  47052. image: {
  47053. source: "./media/characters/stellar-marbey/mouth.svg"
  47054. }
  47055. },
  47056. },
  47057. [
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(53, "meters"),
  47061. default: true
  47062. },
  47063. ]
  47064. ))
  47065. characterMakers.push(() => makeCharacter(
  47066. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47067. {
  47068. front: {
  47069. height: math.unit(8 + 1/12, "feet"),
  47070. weight: math.unit(233, "lb"),
  47071. name: "Front",
  47072. image: {
  47073. source: "./media/characters/matsu/front.svg",
  47074. extra: 832/772,
  47075. bottom: 40/872
  47076. }
  47077. },
  47078. back: {
  47079. height: math.unit(8 + 1/12, "feet"),
  47080. weight: math.unit(233, "lb"),
  47081. name: "Back",
  47082. image: {
  47083. source: "./media/characters/matsu/back.svg",
  47084. extra: 839/780,
  47085. bottom: 47/886
  47086. }
  47087. },
  47088. },
  47089. [
  47090. {
  47091. name: "Normal",
  47092. height: math.unit(8 + 1/12, "feet"),
  47093. default: true
  47094. },
  47095. ]
  47096. ))
  47097. characterMakers.push(() => makeCharacter(
  47098. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47099. {
  47100. front: {
  47101. height: math.unit(4, "feet"),
  47102. weight: math.unit(148, "lb"),
  47103. name: "Front",
  47104. image: {
  47105. source: "./media/characters/thiz/front.svg",
  47106. extra: 1913/1748,
  47107. bottom: 62/1975
  47108. }
  47109. },
  47110. },
  47111. [
  47112. {
  47113. name: "Normal",
  47114. height: math.unit(4, "feet"),
  47115. default: true
  47116. },
  47117. ]
  47118. ))
  47119. characterMakers.push(() => makeCharacter(
  47120. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47121. {
  47122. front: {
  47123. height: math.unit(7 + 6/12, "feet"),
  47124. weight: math.unit(267, "lb"),
  47125. name: "Front",
  47126. image: {
  47127. source: "./media/characters/marcel/front.svg",
  47128. extra: 1221/1096,
  47129. bottom: 76/1297
  47130. }
  47131. },
  47132. },
  47133. [
  47134. {
  47135. name: "Normal",
  47136. height: math.unit(7 + 6/12, "feet"),
  47137. default: true
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47143. {
  47144. side: {
  47145. height: math.unit(42, "meters"),
  47146. name: "Side",
  47147. image: {
  47148. source: "./media/characters/flake/side.svg",
  47149. extra: 1525/1306,
  47150. bottom: 209/1734
  47151. }
  47152. },
  47153. },
  47154. [
  47155. {
  47156. name: "Normal",
  47157. height: math.unit(42, "meters"),
  47158. default: true
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47164. {
  47165. dressed: {
  47166. height: math.unit(6 + 4/12, "feet"),
  47167. weight: math.unit(520, "lb"),
  47168. name: "Dressed",
  47169. image: {
  47170. source: "./media/characters/someonne/dressed.svg",
  47171. extra: 1020/1010,
  47172. bottom: 178/1198
  47173. }
  47174. },
  47175. undressed: {
  47176. height: math.unit(6 + 4/12, "feet"),
  47177. weight: math.unit(520, "lb"),
  47178. name: "Undressed",
  47179. image: {
  47180. source: "./media/characters/someonne/undressed.svg",
  47181. extra: 1019/1014,
  47182. bottom: 169/1188
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(6 + 4/12, "feet"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47196. {
  47197. front: {
  47198. height: math.unit(3, "feet"),
  47199. weight: math.unit(30, "lb"),
  47200. name: "Front",
  47201. image: {
  47202. source: "./media/characters/till/front.svg",
  47203. extra: 892/823,
  47204. bottom: 55/947
  47205. }
  47206. },
  47207. },
  47208. [
  47209. {
  47210. name: "Normal",
  47211. height: math.unit(3, "feet"),
  47212. default: true
  47213. },
  47214. ]
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47218. {
  47219. front: {
  47220. height: math.unit(9 + 8/12, "feet"),
  47221. weight: math.unit(800, "lb"),
  47222. name: "Front",
  47223. image: {
  47224. source: "./media/characters/sydney-heki/front.svg",
  47225. extra: 1360/1300,
  47226. bottom: 22/1382
  47227. }
  47228. },
  47229. back: {
  47230. height: math.unit(9 + 8/12, "feet"),
  47231. weight: math.unit(800, "lb"),
  47232. name: "Back",
  47233. image: {
  47234. source: "./media/characters/sydney-heki/back.svg",
  47235. extra: 1356/1293,
  47236. bottom: 12/1368
  47237. }
  47238. },
  47239. frontDressed: {
  47240. height: math.unit(9 + 8/12, "feet"),
  47241. weight: math.unit(800, "lb"),
  47242. name: "Front (Dressed)",
  47243. image: {
  47244. source: "./media/characters/sydney-heki/front-dressed.svg",
  47245. extra: 1360/1300,
  47246. bottom: 22/1382
  47247. }
  47248. },
  47249. },
  47250. [
  47251. {
  47252. name: "Normal",
  47253. height: math.unit(9 + 8/12, "feet"),
  47254. default: true
  47255. },
  47256. {
  47257. name: "Macro",
  47258. height: math.unit(500, "feet")
  47259. },
  47260. {
  47261. name: "Megamacro",
  47262. height: math.unit(3.6, "miles")
  47263. },
  47264. ]
  47265. ))
  47266. characterMakers.push(() => makeCharacter(
  47267. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47268. {
  47269. front: {
  47270. height: math.unit(200, "cm"),
  47271. weight: math.unit(250, "lb"),
  47272. name: "Front",
  47273. image: {
  47274. source: "./media/characters/fowler-karlsson/front.svg",
  47275. extra: 897/845,
  47276. bottom: 123/1020
  47277. }
  47278. },
  47279. back: {
  47280. height: math.unit(200, "cm"),
  47281. weight: math.unit(250, "lb"),
  47282. name: "Back",
  47283. image: {
  47284. source: "./media/characters/fowler-karlsson/back.svg",
  47285. extra: 999/944,
  47286. bottom: 26/1025
  47287. }
  47288. },
  47289. dick: {
  47290. height: math.unit(1.92, "feet"),
  47291. weight: math.unit(150, "lb"),
  47292. name: "Dick",
  47293. image: {
  47294. source: "./media/characters/fowler-karlsson/dick.svg"
  47295. }
  47296. },
  47297. },
  47298. [
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(200, "cm"),
  47302. default: true
  47303. },
  47304. {
  47305. name: "Smaller Macro",
  47306. height: math.unit(90, "m")
  47307. },
  47308. {
  47309. name: "Macro",
  47310. height: math.unit(150, "m")
  47311. },
  47312. {
  47313. name: "Bigger Macro",
  47314. height: math.unit(300, "m")
  47315. },
  47316. ]
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47320. {
  47321. side: {
  47322. height: math.unit(8 + 2/12, "feet"),
  47323. weight: math.unit(1, "tonne"),
  47324. name: "Side",
  47325. image: {
  47326. source: "./media/characters/rylide/side.svg",
  47327. extra: 1318/1034,
  47328. bottom: 106/1424
  47329. }
  47330. },
  47331. sitting: {
  47332. height: math.unit(303, "cm"),
  47333. weight: math.unit(1, "tonne"),
  47334. name: "Sitting",
  47335. image: {
  47336. source: "./media/characters/rylide/sitting.svg",
  47337. extra: 1303/1103,
  47338. bottom: 36/1339
  47339. }
  47340. },
  47341. },
  47342. [
  47343. {
  47344. name: "Normal",
  47345. height: math.unit(8 + 2/12, "feet"),
  47346. default: true
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47352. {
  47353. front: {
  47354. height: math.unit(5 + 10/12, "feet"),
  47355. weight: math.unit(160, "lb"),
  47356. name: "Front",
  47357. image: {
  47358. source: "./media/characters/pudask/front.svg",
  47359. extra: 1616/1590,
  47360. bottom: 161/1777
  47361. }
  47362. },
  47363. },
  47364. [
  47365. {
  47366. name: "Ferret Height",
  47367. height: math.unit(2 + 5/12, "feet")
  47368. },
  47369. {
  47370. name: "Canon Height",
  47371. height: math.unit(5 + 10/12, "feet"),
  47372. default: true
  47373. },
  47374. ]
  47375. ))
  47376. characterMakers.push(() => makeCharacter(
  47377. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47378. {
  47379. front: {
  47380. height: math.unit(3 + 6/12, "feet"),
  47381. weight: math.unit(60, "lb"),
  47382. name: "Front",
  47383. image: {
  47384. source: "./media/characters/ramita/front.svg",
  47385. extra: 1402/1232,
  47386. bottom: 62/1464
  47387. }
  47388. },
  47389. dressed: {
  47390. height: math.unit(3 + 6/12, "feet"),
  47391. weight: math.unit(60, "lb"),
  47392. name: "Dressed",
  47393. image: {
  47394. source: "./media/characters/ramita/dressed.svg",
  47395. extra: 1534/1249,
  47396. bottom: 50/1584
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(3 + 6/12, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(8, "feet"),
  47413. name: "Front",
  47414. image: {
  47415. source: "./media/characters/ark/front.svg",
  47416. extra: 772/693,
  47417. bottom: 45/817
  47418. }
  47419. },
  47420. },
  47421. [
  47422. {
  47423. name: "Normal",
  47424. height: math.unit(8, "feet"),
  47425. default: true
  47426. },
  47427. ]
  47428. ))
  47429. characterMakers.push(() => makeCharacter(
  47430. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47431. {
  47432. front: {
  47433. height: math.unit(6, "feet"),
  47434. weight: math.unit(250, "lb"),
  47435. volume: math.unit(5/8, "gallons"),
  47436. name: "Front",
  47437. image: {
  47438. source: "./media/characters/ludwig-horn/front.svg",
  47439. extra: 1782/1635,
  47440. bottom: 96/1878
  47441. }
  47442. },
  47443. back: {
  47444. height: math.unit(6, "feet"),
  47445. weight: math.unit(250, "lb"),
  47446. volume: math.unit(5/8, "gallons"),
  47447. name: "Back",
  47448. image: {
  47449. source: "./media/characters/ludwig-horn/back.svg",
  47450. extra: 1874/1729,
  47451. bottom: 27/1901
  47452. }
  47453. },
  47454. dick: {
  47455. height: math.unit(1.05, "feet"),
  47456. weight: math.unit(15, "lb"),
  47457. volume: math.unit(5/8, "gallons"),
  47458. name: "Dick",
  47459. image: {
  47460. source: "./media/characters/ludwig-horn/dick.svg"
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Small",
  47467. height: math.unit(6, "feet")
  47468. },
  47469. {
  47470. name: "Typical",
  47471. height: math.unit(12, "feet"),
  47472. default: true
  47473. },
  47474. {
  47475. name: "Building",
  47476. height: math.unit(80, "feet")
  47477. },
  47478. {
  47479. name: "Town",
  47480. height: math.unit(800, "feet")
  47481. },
  47482. {
  47483. name: "Kingdom",
  47484. height: math.unit(80000, "feet")
  47485. },
  47486. {
  47487. name: "Planet",
  47488. height: math.unit(8000000, "feet")
  47489. },
  47490. {
  47491. name: "Universe",
  47492. height: math.unit(8000000000, "feet")
  47493. },
  47494. {
  47495. name: "Transcended",
  47496. height: math.unit(8e27, "feet")
  47497. },
  47498. ]
  47499. ))
  47500. characterMakers.push(() => makeCharacter(
  47501. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47502. {
  47503. front: {
  47504. height: math.unit(5, "feet"),
  47505. weight: math.unit(50, "kg"),
  47506. name: "Front",
  47507. image: {
  47508. source: "./media/characters/biot-avery/front.svg",
  47509. extra: 1295/1232,
  47510. bottom: 86/1381
  47511. }
  47512. },
  47513. },
  47514. [
  47515. {
  47516. name: "Normal",
  47517. height: math.unit(5, "feet"),
  47518. default: true
  47519. },
  47520. ]
  47521. ))
  47522. characterMakers.push(() => makeCharacter(
  47523. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47524. {
  47525. front: {
  47526. height: math.unit(6, "feet"),
  47527. name: "Front",
  47528. image: {
  47529. source: "./media/characters/kitsune-kiro/front.svg",
  47530. extra: 1270/1158,
  47531. bottom: 42/1312
  47532. }
  47533. },
  47534. frontAlt: {
  47535. height: math.unit(6, "feet"),
  47536. name: "Front (Alt)",
  47537. image: {
  47538. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47539. extra: 1130/1081,
  47540. bottom: 36/1166
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Smol",
  47547. height: math.unit(3, "feet")
  47548. },
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(6, "feet"),
  47552. default: true
  47553. },
  47554. ]
  47555. ))
  47556. characterMakers.push(() => makeCharacter(
  47557. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47558. {
  47559. front: {
  47560. height: math.unit(6, "feet"),
  47561. weight: math.unit(125, "lb"),
  47562. name: "Front",
  47563. image: {
  47564. source: "./media/characters/jack-thatcher/front.svg",
  47565. extra: 1474/1370,
  47566. bottom: 26/1500
  47567. }
  47568. },
  47569. back: {
  47570. height: math.unit(6, "feet"),
  47571. weight: math.unit(125, "lb"),
  47572. name: "Back",
  47573. image: {
  47574. source: "./media/characters/jack-thatcher/back.svg",
  47575. extra: 1489/1384,
  47576. bottom: 18/1507
  47577. }
  47578. },
  47579. },
  47580. [
  47581. {
  47582. name: "Normal",
  47583. height: math.unit(6, "feet"),
  47584. default: true
  47585. },
  47586. {
  47587. name: "Macro",
  47588. height: math.unit(75, "feet")
  47589. },
  47590. {
  47591. name: "Macro-er",
  47592. height: math.unit(250, "feet")
  47593. },
  47594. ]
  47595. ))
  47596. characterMakers.push(() => makeCharacter(
  47597. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47598. {
  47599. front: {
  47600. height: math.unit(7, "feet"),
  47601. weight: math.unit(110, "kg"),
  47602. name: "Front",
  47603. image: {
  47604. source: "./media/characters/max-hyper/front.svg",
  47605. extra: 1969/1881,
  47606. bottom: 49/2018
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Normal",
  47613. height: math.unit(7, "feet"),
  47614. default: true
  47615. },
  47616. ]
  47617. ))
  47618. characterMakers.push(() => makeCharacter(
  47619. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47620. {
  47621. front: {
  47622. height: math.unit(5 + 5/12, "feet"),
  47623. weight: math.unit(160, "lb"),
  47624. name: "Front",
  47625. image: {
  47626. source: "./media/characters/spook/front.svg",
  47627. extra: 794/791,
  47628. bottom: 54/848
  47629. }
  47630. },
  47631. back: {
  47632. height: math.unit(5 + 5/12, "feet"),
  47633. weight: math.unit(160, "lb"),
  47634. name: "Back",
  47635. image: {
  47636. source: "./media/characters/spook/back.svg",
  47637. extra: 812/798,
  47638. bottom: 32/844
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(5 + 5/12, "feet"),
  47646. default: true
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47652. {
  47653. front: {
  47654. height: math.unit(18, "feet"),
  47655. name: "Front",
  47656. image: {
  47657. source: "./media/characters/xeaduulix/front.svg",
  47658. extra: 1380/1166,
  47659. bottom: 110/1490
  47660. }
  47661. },
  47662. back: {
  47663. height: math.unit(18, "feet"),
  47664. name: "Back",
  47665. image: {
  47666. source: "./media/characters/xeaduulix/back.svg",
  47667. extra: 1592/1170,
  47668. bottom: 128/1720
  47669. }
  47670. },
  47671. frontNsfw: {
  47672. height: math.unit(18, "feet"),
  47673. name: "Front (NSFW)",
  47674. image: {
  47675. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47676. extra: 1380/1166,
  47677. bottom: 110/1490
  47678. }
  47679. },
  47680. backNsfw: {
  47681. height: math.unit(18, "feet"),
  47682. name: "Back (NSFW)",
  47683. image: {
  47684. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47685. extra: 1592/1170,
  47686. bottom: 128/1720
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Normal",
  47693. height: math.unit(18, "feet"),
  47694. default: true
  47695. },
  47696. ]
  47697. ))
  47698. characterMakers.push(() => makeCharacter(
  47699. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47700. {
  47701. spreadWings: {
  47702. height: math.unit(20, "feet"),
  47703. name: "Spread Wings",
  47704. image: {
  47705. source: "./media/characters/fledge/spread-wings.svg",
  47706. extra: 693/635,
  47707. bottom: 26/719
  47708. }
  47709. },
  47710. front: {
  47711. height: math.unit(20, "feet"),
  47712. name: "Front",
  47713. image: {
  47714. source: "./media/characters/fledge/front.svg",
  47715. extra: 684/637,
  47716. bottom: 18/702
  47717. }
  47718. },
  47719. frontAlt: {
  47720. height: math.unit(20, "feet"),
  47721. name: "Front (Alt)",
  47722. image: {
  47723. source: "./media/characters/fledge/front-alt.svg",
  47724. extra: 708/664,
  47725. bottom: 13/721
  47726. }
  47727. },
  47728. back: {
  47729. height: math.unit(20, "feet"),
  47730. name: "Back",
  47731. image: {
  47732. source: "./media/characters/fledge/back.svg",
  47733. extra: 718/634,
  47734. bottom: 22/740
  47735. }
  47736. },
  47737. head: {
  47738. height: math.unit(5.55, "feet"),
  47739. name: "Head",
  47740. image: {
  47741. source: "./media/characters/fledge/head.svg"
  47742. }
  47743. },
  47744. headAlt: {
  47745. height: math.unit(5.1, "feet"),
  47746. name: "Head (Alt)",
  47747. image: {
  47748. source: "./media/characters/fledge/head-alt.svg"
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Small",
  47755. height: math.unit(6 + 2/12, "feet")
  47756. },
  47757. {
  47758. name: "Big",
  47759. height: math.unit(20, "feet"),
  47760. default: true
  47761. },
  47762. {
  47763. name: "Giant",
  47764. height: math.unit(100, "feet")
  47765. },
  47766. {
  47767. name: "Macro",
  47768. height: math.unit(200, "feet")
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47774. {
  47775. front: {
  47776. height: math.unit(1, "meter"),
  47777. name: "Front",
  47778. image: {
  47779. source: "./media/characters/atlas-morenai/front.svg",
  47780. extra: 1275/1043,
  47781. bottom: 19/1294
  47782. }
  47783. },
  47784. back: {
  47785. height: math.unit(1, "meter"),
  47786. name: "Back",
  47787. image: {
  47788. source: "./media/characters/atlas-morenai/back.svg",
  47789. extra: 1141/1001,
  47790. bottom: 25/1166
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(1, "meter"),
  47798. default: true
  47799. },
  47800. {
  47801. name: "Magic-Infused",
  47802. height: math.unit(5, "meters")
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47808. {
  47809. front: {
  47810. height: math.unit(5, "meters"),
  47811. name: "Front",
  47812. image: {
  47813. source: "./media/characters/cintia/front.svg",
  47814. extra: 1312/1228,
  47815. bottom: 38/1350
  47816. }
  47817. },
  47818. back: {
  47819. height: math.unit(5, "meters"),
  47820. name: "Back",
  47821. image: {
  47822. source: "./media/characters/cintia/back.svg",
  47823. extra: 1260/1166,
  47824. bottom: 98/1358
  47825. }
  47826. },
  47827. frontDick: {
  47828. height: math.unit(5, "meters"),
  47829. name: "Front (Dick)",
  47830. image: {
  47831. source: "./media/characters/cintia/front-dick.svg",
  47832. extra: 1312/1228,
  47833. bottom: 38/1350
  47834. }
  47835. },
  47836. backDick: {
  47837. height: math.unit(5, "meters"),
  47838. name: "Back (Dick)",
  47839. image: {
  47840. source: "./media/characters/cintia/back-dick.svg",
  47841. extra: 1260/1166,
  47842. bottom: 98/1358
  47843. }
  47844. },
  47845. bust: {
  47846. height: math.unit(1.97, "meters"),
  47847. name: "Bust",
  47848. image: {
  47849. source: "./media/characters/cintia/bust.svg",
  47850. extra: 617/565,
  47851. bottom: 0/617
  47852. }
  47853. },
  47854. },
  47855. [
  47856. {
  47857. name: "Normal",
  47858. height: math.unit(5, "meters"),
  47859. default: true
  47860. },
  47861. ]
  47862. ))
  47863. characterMakers.push(() => makeCharacter(
  47864. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47865. {
  47866. side: {
  47867. height: math.unit(100, "feet"),
  47868. name: "Side",
  47869. image: {
  47870. source: "./media/characters/denora/side.svg",
  47871. extra: 875/803,
  47872. bottom: 9/884
  47873. }
  47874. },
  47875. },
  47876. [
  47877. {
  47878. name: "Standard",
  47879. height: math.unit(100, "feet"),
  47880. default: true
  47881. },
  47882. {
  47883. name: "Grand",
  47884. height: math.unit(1000, "feet")
  47885. },
  47886. {
  47887. name: "Conquering",
  47888. height: math.unit(10000, "feet")
  47889. },
  47890. ]
  47891. ))
  47892. characterMakers.push(() => makeCharacter(
  47893. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47894. {
  47895. front: {
  47896. height: math.unit(8 + 5/12, "feet"),
  47897. weight: math.unit(700, "lb"),
  47898. name: "Front",
  47899. image: {
  47900. source: "./media/characters/kiva/front.svg",
  47901. extra: 419/406,
  47902. bottom: 30/449
  47903. }
  47904. },
  47905. sideDressed: {
  47906. height: math.unit(8 + 5/12, "feet"),
  47907. weight: math.unit(700, "lb"),
  47908. name: "Side (Dressed)",
  47909. image: {
  47910. source: "./media/characters/kiva/side-dressed.svg",
  47911. extra: 1102/1055,
  47912. bottom: 60/1162
  47913. }
  47914. },
  47915. sideNude: {
  47916. height: math.unit(8 + 5/12, "feet"),
  47917. weight: math.unit(700, "lb"),
  47918. name: "Side (Nude)",
  47919. image: {
  47920. source: "./media/characters/kiva/side-nude.svg",
  47921. extra: 1102/1055,
  47922. bottom: 60/1162
  47923. }
  47924. },
  47925. },
  47926. [
  47927. {
  47928. name: "Base Height",
  47929. height: math.unit(8 + 5/12, "feet"),
  47930. default: true
  47931. },
  47932. {
  47933. name: "Macro",
  47934. height: math.unit(100, "feet")
  47935. },
  47936. {
  47937. name: "Max",
  47938. height: math.unit(3280, "feet")
  47939. },
  47940. ]
  47941. ))
  47942. characterMakers.push(() => makeCharacter(
  47943. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47944. {
  47945. front: {
  47946. height: math.unit(6 + 8/12, "feet"),
  47947. weight: math.unit(250, "lb"),
  47948. name: "Front",
  47949. image: {
  47950. source: "./media/characters/ztragon/front.svg",
  47951. extra: 1825/1684,
  47952. bottom: 98/1923
  47953. }
  47954. },
  47955. },
  47956. [
  47957. {
  47958. name: "Normal",
  47959. height: math.unit(6 + 8/12, "feet"),
  47960. default: true
  47961. },
  47962. {
  47963. name: "Macro",
  47964. height: math.unit(80, "feet")
  47965. },
  47966. ]
  47967. ))
  47968. characterMakers.push(() => makeCharacter(
  47969. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47970. {
  47971. front: {
  47972. height: math.unit(10.4, "feet"),
  47973. weight: math.unit(2, "tons"),
  47974. name: "Front",
  47975. image: {
  47976. source: "./media/characters/yesenia/front.svg",
  47977. extra: 1479/1474,
  47978. bottom: 233/1712
  47979. }
  47980. },
  47981. },
  47982. [
  47983. {
  47984. name: "Normal",
  47985. height: math.unit(10.4, "feet"),
  47986. default: true
  47987. },
  47988. ]
  47989. ))
  47990. characterMakers.push(() => makeCharacter(
  47991. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47992. {
  47993. normal: {
  47994. height: math.unit(6 + 1/12, "feet"),
  47995. weight: math.unit(180, "lb"),
  47996. name: "Normal",
  47997. image: {
  47998. source: "./media/characters/leanne-lycheborne/normal.svg",
  47999. extra: 1748/1660,
  48000. bottom: 98/1846
  48001. }
  48002. },
  48003. were: {
  48004. height: math.unit(12, "feet"),
  48005. weight: math.unit(1600, "lb"),
  48006. name: "Were",
  48007. image: {
  48008. source: "./media/characters/leanne-lycheborne/were.svg",
  48009. extra: 1485/1432,
  48010. bottom: 66/1551
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Normal",
  48017. height: math.unit(6 + 1/12, "feet"),
  48018. default: true
  48019. },
  48020. ]
  48021. ))
  48022. characterMakers.push(() => makeCharacter(
  48023. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48024. {
  48025. side: {
  48026. height: math.unit(13, "feet"),
  48027. name: "Side",
  48028. image: {
  48029. source: "./media/characters/kira-tyler/side.svg",
  48030. extra: 693/393,
  48031. bottom: 58/751
  48032. }
  48033. },
  48034. },
  48035. [
  48036. {
  48037. name: "Normal",
  48038. height: math.unit(13, "feet"),
  48039. default: true
  48040. },
  48041. ]
  48042. ))
  48043. characterMakers.push(() => makeCharacter(
  48044. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48045. {
  48046. front: {
  48047. height: math.unit(10.3, "feet"),
  48048. weight: math.unit(150, "lb"),
  48049. name: "Front",
  48050. image: {
  48051. source: "./media/characters/blaze/front.svg",
  48052. extra: 1378/1286,
  48053. bottom: 172/1550
  48054. }
  48055. },
  48056. },
  48057. [
  48058. {
  48059. name: "Normal",
  48060. height: math.unit(10.3, "feet"),
  48061. default: true
  48062. },
  48063. ]
  48064. ))
  48065. characterMakers.push(() => makeCharacter(
  48066. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48067. {
  48068. side: {
  48069. height: math.unit(2, "meters"),
  48070. weight: math.unit(400, "kg"),
  48071. name: "Side",
  48072. image: {
  48073. source: "./media/characters/anu/side.svg",
  48074. extra: 506/394,
  48075. bottom: 18/524
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Humanoid",
  48082. height: math.unit(2, "meters")
  48083. },
  48084. {
  48085. name: "Normal",
  48086. height: math.unit(5, "meters"),
  48087. default: true
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48093. {
  48094. front: {
  48095. height: math.unit(5 + 5/12, "feet"),
  48096. weight: math.unit(170, "lb"),
  48097. name: "Front",
  48098. image: {
  48099. source: "./media/characters/synx-the-lynx/front.svg",
  48100. extra: 1893/1745,
  48101. bottom: 17/1910
  48102. }
  48103. },
  48104. side: {
  48105. height: math.unit(5 + 5/12, "feet"),
  48106. weight: math.unit(170, "lb"),
  48107. name: "Side",
  48108. image: {
  48109. source: "./media/characters/synx-the-lynx/side.svg",
  48110. extra: 1884/1740,
  48111. bottom: 39/1923
  48112. }
  48113. },
  48114. back: {
  48115. height: math.unit(5 + 5/12, "feet"),
  48116. weight: math.unit(170, "lb"),
  48117. name: "Back",
  48118. image: {
  48119. source: "./media/characters/synx-the-lynx/back.svg",
  48120. extra: 1903/1755,
  48121. bottom: 14/1917
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(5 + 5/12, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48135. {
  48136. back: {
  48137. height: math.unit(15, "feet"),
  48138. name: "Back",
  48139. image: {
  48140. source: "./media/characters/nadezda-fex/back.svg",
  48141. extra: 1695/1481,
  48142. bottom: 25/1720
  48143. }
  48144. },
  48145. },
  48146. [
  48147. {
  48148. name: "Normal",
  48149. height: math.unit(15, "feet"),
  48150. default: true
  48151. },
  48152. {
  48153. name: "Macro",
  48154. height: math.unit(2.5, "miles")
  48155. },
  48156. {
  48157. name: "Goddess",
  48158. height: math.unit(2, "multiverses")
  48159. },
  48160. ]
  48161. ))
  48162. characterMakers.push(() => makeCharacter(
  48163. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48164. {
  48165. front: {
  48166. height: math.unit(216, "cm"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/lev/front.svg",
  48170. extra: 1728/1670,
  48171. bottom: 82/1810
  48172. }
  48173. },
  48174. back: {
  48175. height: math.unit(216, "cm"),
  48176. name: "Back",
  48177. image: {
  48178. source: "./media/characters/lev/back.svg",
  48179. extra: 1738/1675,
  48180. bottom: 24/1762
  48181. }
  48182. },
  48183. dressed: {
  48184. height: math.unit(216, "cm"),
  48185. name: "Dressed",
  48186. image: {
  48187. source: "./media/characters/lev/dressed.svg",
  48188. extra: 1397/1351,
  48189. bottom: 73/1470
  48190. }
  48191. },
  48192. head: {
  48193. height: math.unit(0.51, "meter"),
  48194. name: "Head",
  48195. image: {
  48196. source: "./media/characters/lev/head.svg"
  48197. }
  48198. },
  48199. },
  48200. [
  48201. {
  48202. name: "Normal",
  48203. height: math.unit(216, "cm"),
  48204. default: true
  48205. },
  48206. {
  48207. name: "Relatively Macro",
  48208. height: math.unit(80, "meters")
  48209. },
  48210. {
  48211. name: "Megamacro",
  48212. height: math.unit(21600, "meters")
  48213. },
  48214. {
  48215. name: "Megamacro+",
  48216. height: math.unit(64800, "meters")
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48222. {
  48223. front: {
  48224. height: math.unit(2, "meters"),
  48225. weight: math.unit(80, "kg"),
  48226. name: "Front",
  48227. image: {
  48228. source: "./media/characters/moka/front.svg",
  48229. extra: 1337/1255,
  48230. bottom: 58/1395
  48231. }
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Micro",
  48237. height: math.unit(15, "cm")
  48238. },
  48239. {
  48240. name: "Normal",
  48241. height: math.unit(2, "meters"),
  48242. default: true
  48243. },
  48244. {
  48245. name: "Macro",
  48246. height: math.unit(20, "meters"),
  48247. },
  48248. ]
  48249. ))
  48250. characterMakers.push(() => makeCharacter(
  48251. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48252. {
  48253. front: {
  48254. height: math.unit(9, "feet"),
  48255. weight: math.unit(240, "lb"),
  48256. name: "Front",
  48257. image: {
  48258. source: "./media/characters/kuzco/front.svg",
  48259. extra: 1593/1487,
  48260. bottom: 32/1625
  48261. }
  48262. },
  48263. side: {
  48264. height: math.unit(9, "feet"),
  48265. weight: math.unit(240, "lb"),
  48266. name: "Side",
  48267. image: {
  48268. source: "./media/characters/kuzco/side.svg",
  48269. extra: 1575/1485,
  48270. bottom: 30/1605
  48271. }
  48272. },
  48273. back: {
  48274. height: math.unit(9, "feet"),
  48275. weight: math.unit(240, "lb"),
  48276. name: "Back",
  48277. image: {
  48278. source: "./media/characters/kuzco/back.svg",
  48279. extra: 1603/1514,
  48280. bottom: 14/1617
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Normal",
  48287. height: math.unit(9, "feet"),
  48288. default: true
  48289. },
  48290. ]
  48291. ))
  48292. characterMakers.push(() => makeCharacter(
  48293. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48294. {
  48295. side: {
  48296. height: math.unit(2, "meters"),
  48297. weight: math.unit(300, "kg"),
  48298. name: "Side",
  48299. image: {
  48300. source: "./media/characters/ceruleus/side.svg",
  48301. extra: 1068/974,
  48302. bottom: 126/1194
  48303. }
  48304. },
  48305. maw: {
  48306. height: math.unit(0.8125, "meter"),
  48307. name: "Maw",
  48308. image: {
  48309. source: "./media/characters/ceruleus/maw.svg"
  48310. }
  48311. },
  48312. },
  48313. [
  48314. {
  48315. name: "Normal",
  48316. height: math.unit(16, "meters"),
  48317. default: true
  48318. },
  48319. ]
  48320. ))
  48321. characterMakers.push(() => makeCharacter(
  48322. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48323. {
  48324. front: {
  48325. height: math.unit(9, "feet"),
  48326. weight: math.unit(500, "kg"),
  48327. name: "Front",
  48328. image: {
  48329. source: "./media/characters/acouya/front.svg",
  48330. extra: 1660/1473,
  48331. bottom: 28/1688
  48332. }
  48333. },
  48334. },
  48335. [
  48336. {
  48337. name: "Normal",
  48338. height: math.unit(9, "feet"),
  48339. default: true
  48340. },
  48341. ]
  48342. ))
  48343. characterMakers.push(() => makeCharacter(
  48344. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48345. {
  48346. front: {
  48347. height: math.unit(5 + 6/12, "feet"),
  48348. weight: math.unit(195, "lb"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/vant/front.svg",
  48352. extra: 1396/1320,
  48353. bottom: 20/1416
  48354. }
  48355. },
  48356. back: {
  48357. height: math.unit(5 + 6/12, "feet"),
  48358. weight: math.unit(195, "lb"),
  48359. name: "Back",
  48360. image: {
  48361. source: "./media/characters/vant/back.svg",
  48362. extra: 1396/1320,
  48363. bottom: 20/1416
  48364. }
  48365. },
  48366. maw: {
  48367. height: math.unit(0.75, "feet"),
  48368. name: "Maw",
  48369. image: {
  48370. source: "./media/characters/vant/maw.svg"
  48371. }
  48372. },
  48373. paw: {
  48374. height: math.unit(1.07, "feet"),
  48375. name: "Paw",
  48376. image: {
  48377. source: "./media/characters/vant/paw.svg"
  48378. }
  48379. },
  48380. },
  48381. [
  48382. {
  48383. name: "Micro",
  48384. height: math.unit(0.25, "inches")
  48385. },
  48386. {
  48387. name: "Normal",
  48388. height: math.unit(5 + 6/12, "feet"),
  48389. default: true
  48390. },
  48391. {
  48392. name: "Macro",
  48393. height: math.unit(75, "feet")
  48394. },
  48395. ]
  48396. ))
  48397. characterMakers.push(() => makeCharacter(
  48398. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48399. {
  48400. front: {
  48401. height: math.unit(30, "meters"),
  48402. weight: math.unit(363, "tons"),
  48403. name: "Front",
  48404. image: {
  48405. source: "./media/characters/ahra/front.svg",
  48406. extra: 1914/1814,
  48407. bottom: 46/1960
  48408. }
  48409. },
  48410. },
  48411. [
  48412. {
  48413. name: "Macro",
  48414. height: math.unit(30, "meters"),
  48415. default: true
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48421. {
  48422. undressed: {
  48423. height: math.unit(2, "m"),
  48424. weight: math.unit(250, "kg"),
  48425. name: "Undressed",
  48426. image: {
  48427. source: "./media/characters/coriander/undressed.svg",
  48428. extra: 1757/1606,
  48429. bottom: 107/1864
  48430. }
  48431. },
  48432. dressed: {
  48433. height: math.unit(2, "m"),
  48434. weight: math.unit(250, "kg"),
  48435. name: "Dressed",
  48436. image: {
  48437. source: "./media/characters/coriander/dressed.svg",
  48438. extra: 1757/1606,
  48439. bottom: 107/1864
  48440. }
  48441. },
  48442. },
  48443. [
  48444. {
  48445. name: "Normal",
  48446. height: math.unit(4, "meters"),
  48447. default: true
  48448. },
  48449. {
  48450. name: "XL",
  48451. height: math.unit(6, "meters")
  48452. },
  48453. {
  48454. name: "XXL",
  48455. height: math.unit(8, "meters")
  48456. },
  48457. ]
  48458. ))
  48459. characterMakers.push(() => makeCharacter(
  48460. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48461. {
  48462. front: {
  48463. height: math.unit(6, "feet"),
  48464. name: "Front",
  48465. image: {
  48466. source: "./media/characters/syrinx/front.svg",
  48467. extra: 1557/1259,
  48468. bottom: 171/1728
  48469. }
  48470. },
  48471. },
  48472. [
  48473. {
  48474. name: "Normal",
  48475. height: math.unit(6 + 3/12, "feet"),
  48476. default: true
  48477. },
  48478. ]
  48479. ))
  48480. characterMakers.push(() => makeCharacter(
  48481. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48482. {
  48483. front: {
  48484. height: math.unit(11 + 6/12, "feet"),
  48485. weight: math.unit(1.5, "tons"),
  48486. name: "Front",
  48487. image: {
  48488. source: "./media/characters/bor/front.svg",
  48489. extra: 1189/1109,
  48490. bottom: 170/1359
  48491. }
  48492. },
  48493. },
  48494. [
  48495. {
  48496. name: "Normal",
  48497. height: math.unit(11 + 6/12, "feet"),
  48498. default: true
  48499. },
  48500. {
  48501. name: "Macro",
  48502. height: math.unit(32 + 9/12, "feet")
  48503. },
  48504. ]
  48505. ))
  48506. characterMakers.push(() => makeCharacter(
  48507. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48508. {
  48509. anthro: {
  48510. height: math.unit(9, "feet"),
  48511. weight: math.unit(2076, "lb"),
  48512. name: "Anthro",
  48513. image: {
  48514. source: "./media/characters/abacus/anthro.svg",
  48515. extra: 1540/1494,
  48516. bottom: 233/1773
  48517. }
  48518. },
  48519. pigeon: {
  48520. height: math.unit(1, "feet"),
  48521. name: "Pigeon",
  48522. image: {
  48523. source: "./media/characters/abacus/pigeon.svg",
  48524. extra: 528/525,
  48525. bottom: 46/574
  48526. }
  48527. },
  48528. },
  48529. [
  48530. {
  48531. name: "Normal",
  48532. height: math.unit(9, "feet"),
  48533. default: true
  48534. },
  48535. ]
  48536. ))
  48537. characterMakers.push(() => makeCharacter(
  48538. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48539. {
  48540. side: {
  48541. height: math.unit(6, "feet"),
  48542. name: "Side",
  48543. image: {
  48544. source: "./media/characters/delkhan/side.svg",
  48545. extra: 1884/1786,
  48546. bottom: 308/2192
  48547. }
  48548. },
  48549. head: {
  48550. height: math.unit(3.38, "feet"),
  48551. name: "Head",
  48552. image: {
  48553. source: "./media/characters/delkhan/head.svg"
  48554. }
  48555. },
  48556. },
  48557. [
  48558. {
  48559. name: "Normal",
  48560. height: math.unit(72, "feet"),
  48561. default: true
  48562. },
  48563. {
  48564. name: "Giant",
  48565. height: math.unit(172, "feet")
  48566. },
  48567. ]
  48568. ))
  48569. characterMakers.push(() => makeCharacter(
  48570. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48571. {
  48572. standing: {
  48573. height: math.unit(6, "feet"),
  48574. name: "Standing",
  48575. image: {
  48576. source: "./media/characters/euchidat/standing.svg",
  48577. extra: 1612/1553,
  48578. bottom: 116/1728
  48579. }
  48580. },
  48581. leaning: {
  48582. height: math.unit(6, "feet"),
  48583. name: "Leaning",
  48584. image: {
  48585. source: "./media/characters/euchidat/leaning.svg",
  48586. extra: 1719/1674,
  48587. bottom: 27/1746
  48588. }
  48589. },
  48590. },
  48591. [
  48592. {
  48593. name: "Normal",
  48594. height: math.unit(175, "feet"),
  48595. default: true
  48596. },
  48597. {
  48598. name: "Megamacro",
  48599. height: math.unit(190, "miles")
  48600. },
  48601. {
  48602. name: "Gigamacro",
  48603. height: math.unit(190000, "miles")
  48604. },
  48605. ]
  48606. ))
  48607. characterMakers.push(() => makeCharacter(
  48608. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48609. {
  48610. front: {
  48611. height: math.unit(6, "feet"),
  48612. weight: math.unit(150, "lb"),
  48613. name: "Front",
  48614. image: {
  48615. source: "./media/characters/rebecca-stack/front.svg",
  48616. extra: 1256/1201,
  48617. bottom: 18/1274
  48618. }
  48619. },
  48620. },
  48621. [
  48622. {
  48623. name: "Normal",
  48624. height: math.unit(5 + 8/12, "feet"),
  48625. default: true
  48626. },
  48627. {
  48628. name: "Demolitionist",
  48629. height: math.unit(200, "feet")
  48630. },
  48631. {
  48632. name: "Out of Control",
  48633. height: math.unit(2, "miles")
  48634. },
  48635. {
  48636. name: "Giga",
  48637. height: math.unit(7200, "miles")
  48638. },
  48639. ]
  48640. ))
  48641. characterMakers.push(() => makeCharacter(
  48642. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48643. {
  48644. front: {
  48645. height: math.unit(6, "feet"),
  48646. weight: math.unit(150, "lb"),
  48647. name: "Front",
  48648. image: {
  48649. source: "./media/characters/jenny-cartwright/front.svg",
  48650. extra: 1384/1376,
  48651. bottom: 58/1442
  48652. }
  48653. },
  48654. },
  48655. [
  48656. {
  48657. name: "Normal",
  48658. height: math.unit(6 + 7/12, "feet"),
  48659. default: true
  48660. },
  48661. {
  48662. name: "Librarian",
  48663. height: math.unit(55, "feet")
  48664. },
  48665. {
  48666. name: "Sightseer",
  48667. height: math.unit(50, "miles")
  48668. },
  48669. {
  48670. name: "Giga",
  48671. height: math.unit(30000, "miles")
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48677. {
  48678. nude: {
  48679. height: math.unit(8, "feet"),
  48680. weight: math.unit(225, "lb"),
  48681. name: "Nude",
  48682. image: {
  48683. source: "./media/characters/marvy/nude.svg",
  48684. extra: 1900/1683,
  48685. bottom: 89/1989
  48686. }
  48687. },
  48688. dressed: {
  48689. height: math.unit(8, "feet"),
  48690. weight: math.unit(225, "lb"),
  48691. name: "Dressed",
  48692. image: {
  48693. source: "./media/characters/marvy/dressed.svg",
  48694. extra: 1900/1683,
  48695. bottom: 89/1989
  48696. }
  48697. },
  48698. head: {
  48699. height: math.unit(2.85, "feet"),
  48700. name: "Head",
  48701. image: {
  48702. source: "./media/characters/marvy/head.svg"
  48703. }
  48704. },
  48705. },
  48706. [
  48707. {
  48708. name: "Normal",
  48709. height: math.unit(8, "feet"),
  48710. default: true
  48711. },
  48712. ]
  48713. ))
  48714. characterMakers.push(() => makeCharacter(
  48715. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48716. {
  48717. front: {
  48718. height: math.unit(8, "feet"),
  48719. weight: math.unit(250, "lb"),
  48720. name: "Front",
  48721. image: {
  48722. source: "./media/characters/leah/front.svg",
  48723. extra: 1257/1149,
  48724. bottom: 109/1366
  48725. }
  48726. },
  48727. },
  48728. [
  48729. {
  48730. name: "Normal",
  48731. height: math.unit(8, "feet"),
  48732. default: true
  48733. },
  48734. {
  48735. name: "Minimacro",
  48736. height: math.unit(40, "feet")
  48737. },
  48738. {
  48739. name: "Macro",
  48740. height: math.unit(124, "feet")
  48741. },
  48742. {
  48743. name: "Megamacro",
  48744. height: math.unit(850, "feet")
  48745. },
  48746. ]
  48747. ))
  48748. characterMakers.push(() => makeCharacter(
  48749. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48750. {
  48751. side: {
  48752. height: math.unit(13 + 6/12, "feet"),
  48753. weight: math.unit(3200, "lb"),
  48754. name: "Side",
  48755. image: {
  48756. source: "./media/characters/alvir/side.svg",
  48757. extra: 896/589,
  48758. bottom: 26/922
  48759. }
  48760. },
  48761. },
  48762. [
  48763. {
  48764. name: "Normal",
  48765. height: math.unit(13 + 6/12, "feet"),
  48766. default: true
  48767. },
  48768. ]
  48769. ))
  48770. characterMakers.push(() => makeCharacter(
  48771. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48772. {
  48773. front: {
  48774. height: math.unit(5 + 4/12, "feet"),
  48775. weight: math.unit(236, "lb"),
  48776. name: "Front",
  48777. image: {
  48778. source: "./media/characters/zaina-khalil/front.svg",
  48779. extra: 1533/1485,
  48780. bottom: 94/1627
  48781. }
  48782. },
  48783. side: {
  48784. height: math.unit(5 + 4/12, "feet"),
  48785. weight: math.unit(236, "lb"),
  48786. name: "Side",
  48787. image: {
  48788. source: "./media/characters/zaina-khalil/side.svg",
  48789. extra: 1537/1498,
  48790. bottom: 66/1603
  48791. }
  48792. },
  48793. back: {
  48794. height: math.unit(5 + 4/12, "feet"),
  48795. weight: math.unit(236, "lb"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/zaina-khalil/back.svg",
  48799. extra: 1546/1494,
  48800. bottom: 89/1635
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(5 + 4/12, "feet"),
  48808. default: true
  48809. },
  48810. ]
  48811. ))
  48812. characterMakers.push(() => makeCharacter(
  48813. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48814. {
  48815. side: {
  48816. height: math.unit(12, "feet"),
  48817. weight: math.unit(4000, "lb"),
  48818. name: "Side",
  48819. image: {
  48820. source: "./media/characters/terry/side.svg",
  48821. extra: 1518/1439,
  48822. bottom: 149/1667
  48823. }
  48824. },
  48825. },
  48826. [
  48827. {
  48828. name: "Normal",
  48829. height: math.unit(12, "feet"),
  48830. default: true
  48831. },
  48832. ]
  48833. ))
  48834. characterMakers.push(() => makeCharacter(
  48835. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48836. {
  48837. front: {
  48838. height: math.unit(12, "feet"),
  48839. weight: math.unit(1500, "lb"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/kahea/front.svg",
  48843. extra: 1722/1617,
  48844. bottom: 179/1901
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Normal",
  48851. height: math.unit(12, "feet"),
  48852. default: true
  48853. },
  48854. ]
  48855. ))
  48856. characterMakers.push(() => makeCharacter(
  48857. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48858. {
  48859. demonFront: {
  48860. height: math.unit(36, "feet"),
  48861. name: "Front",
  48862. image: {
  48863. source: "./media/characters/alex-xuria/demon-front.svg",
  48864. extra: 1705/1673,
  48865. bottom: 198/1903
  48866. },
  48867. form: "demon",
  48868. default: true
  48869. },
  48870. demonBack: {
  48871. height: math.unit(36, "feet"),
  48872. name: "Back",
  48873. image: {
  48874. source: "./media/characters/alex-xuria/demon-back.svg",
  48875. extra: 1725/1693,
  48876. bottom: 70/1795
  48877. },
  48878. form: "demon"
  48879. },
  48880. demonHead: {
  48881. height: math.unit(2.14, "meters"),
  48882. name: "Head",
  48883. image: {
  48884. source: "./media/characters/alex-xuria/demon-head.svg"
  48885. },
  48886. form: "demon"
  48887. },
  48888. demonHand: {
  48889. height: math.unit(1.61, "meters"),
  48890. name: "Hand",
  48891. image: {
  48892. source: "./media/characters/alex-xuria/demon-hand.svg"
  48893. },
  48894. form: "demon"
  48895. },
  48896. demonPaw: {
  48897. height: math.unit(1.35, "meters"),
  48898. name: "Paw",
  48899. image: {
  48900. source: "./media/characters/alex-xuria/demon-paw.svg"
  48901. },
  48902. form: "demon"
  48903. },
  48904. demonFoot: {
  48905. height: math.unit(2.2, "meters"),
  48906. name: "Foot",
  48907. image: {
  48908. source: "./media/characters/alex-xuria/demon-foot.svg"
  48909. },
  48910. form: "demon"
  48911. },
  48912. demonCock: {
  48913. height: math.unit(1.74, "meters"),
  48914. name: "Cock",
  48915. image: {
  48916. source: "./media/characters/alex-xuria/demon-cock.svg"
  48917. },
  48918. form: "demon"
  48919. },
  48920. demonTailClosed: {
  48921. height: math.unit(1.47, "meters"),
  48922. name: "Tail (Closed)",
  48923. image: {
  48924. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48925. },
  48926. form: "demon"
  48927. },
  48928. demonTailOpen: {
  48929. height: math.unit(2.85, "meters"),
  48930. name: "Tail (Open)",
  48931. image: {
  48932. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48933. },
  48934. form: "demon"
  48935. },
  48936. incubusFront: {
  48937. height: math.unit(12, "feet"),
  48938. name: "Front",
  48939. image: {
  48940. source: "./media/characters/alex-xuria/incubus-front.svg",
  48941. extra: 1754/1677,
  48942. bottom: 125/1879
  48943. },
  48944. form: "incubus",
  48945. default: true
  48946. },
  48947. incubusBack: {
  48948. height: math.unit(12, "feet"),
  48949. name: "Back",
  48950. image: {
  48951. source: "./media/characters/alex-xuria/incubus-back.svg",
  48952. extra: 1702/1647,
  48953. bottom: 30/1732
  48954. },
  48955. form: "incubus"
  48956. },
  48957. incubusHead: {
  48958. height: math.unit(3.45, "feet"),
  48959. name: "Head",
  48960. image: {
  48961. source: "./media/characters/alex-xuria/incubus-head.svg"
  48962. },
  48963. form: "incubus"
  48964. },
  48965. rabbitFront: {
  48966. height: math.unit(6, "feet"),
  48967. name: "Front",
  48968. image: {
  48969. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48970. extra: 1369/1349,
  48971. bottom: 45/1414
  48972. },
  48973. form: "rabbit",
  48974. default: true
  48975. },
  48976. rabbitSide: {
  48977. height: math.unit(6, "feet"),
  48978. name: "Side",
  48979. image: {
  48980. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48981. extra: 1370/1356,
  48982. bottom: 37/1407
  48983. },
  48984. form: "rabbit"
  48985. },
  48986. rabbitBack: {
  48987. height: math.unit(6, "feet"),
  48988. name: "Back",
  48989. image: {
  48990. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48991. extra: 1375/1358,
  48992. bottom: 43/1418
  48993. },
  48994. form: "rabbit"
  48995. },
  48996. },
  48997. [
  48998. {
  48999. name: "Normal",
  49000. height: math.unit(6, "feet"),
  49001. default: true,
  49002. form: "rabbit"
  49003. },
  49004. {
  49005. name: "Incubus",
  49006. height: math.unit(12, "feet"),
  49007. default: true,
  49008. form: "incubus"
  49009. },
  49010. {
  49011. name: "Demon",
  49012. height: math.unit(36, "feet"),
  49013. default: true,
  49014. form: "demon"
  49015. }
  49016. ],
  49017. {
  49018. "demon": {
  49019. name: "Demon",
  49020. default: true
  49021. },
  49022. "incubus": {
  49023. name: "Incubus",
  49024. },
  49025. "rabbit": {
  49026. name: "Rabbit"
  49027. }
  49028. }
  49029. ))
  49030. characterMakers.push(() => makeCharacter(
  49031. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49032. {
  49033. front: {
  49034. height: math.unit(7 + 5/12, "feet"),
  49035. weight: math.unit(510, "lb"),
  49036. name: "Front",
  49037. image: {
  49038. source: "./media/characters/syrup/front.svg",
  49039. extra: 932/916,
  49040. bottom: 26/958
  49041. }
  49042. },
  49043. },
  49044. [
  49045. {
  49046. name: "Normal",
  49047. height: math.unit(7 + 5/12, "feet"),
  49048. default: true
  49049. },
  49050. {
  49051. name: "Big",
  49052. height: math.unit(50, "feet")
  49053. },
  49054. {
  49055. name: "Macro",
  49056. height: math.unit(300, "feet")
  49057. },
  49058. {
  49059. name: "Megamacro",
  49060. height: math.unit(1, "mile")
  49061. },
  49062. ]
  49063. ))
  49064. characterMakers.push(() => makeCharacter(
  49065. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49066. {
  49067. front: {
  49068. height: math.unit(6 + 9/12, "feet"),
  49069. name: "Front",
  49070. image: {
  49071. source: "./media/characters/zeimne/front.svg",
  49072. extra: 1969/1806,
  49073. bottom: 53/2022
  49074. }
  49075. },
  49076. },
  49077. [
  49078. {
  49079. name: "Normal",
  49080. height: math.unit(6 + 9/12, "feet"),
  49081. default: true
  49082. },
  49083. {
  49084. name: "Giant",
  49085. height: math.unit(550, "feet")
  49086. },
  49087. {
  49088. name: "Mega",
  49089. height: math.unit(3, "miles")
  49090. },
  49091. {
  49092. name: "Giga",
  49093. height: math.unit(250, "miles")
  49094. },
  49095. {
  49096. name: "Tera",
  49097. height: math.unit(1, "AU")
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49103. {
  49104. front: {
  49105. height: math.unit(5 + 2/12, "feet"),
  49106. name: "Front",
  49107. image: {
  49108. source: "./media/characters/grar/front.svg",
  49109. extra: 1331/1119,
  49110. bottom: 60/1391
  49111. }
  49112. },
  49113. back: {
  49114. height: math.unit(5 + 2/12, "feet"),
  49115. name: "Back",
  49116. image: {
  49117. source: "./media/characters/grar/back.svg",
  49118. extra: 1385/1169,
  49119. bottom: 23/1408
  49120. }
  49121. },
  49122. },
  49123. [
  49124. {
  49125. name: "Normal",
  49126. height: math.unit(5 + 2/12, "feet"),
  49127. default: true
  49128. },
  49129. ]
  49130. ))
  49131. characterMakers.push(() => makeCharacter(
  49132. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49133. {
  49134. front: {
  49135. height: math.unit(13 + 7/12, "feet"),
  49136. weight: math.unit(2200, "lb"),
  49137. name: "Front",
  49138. image: {
  49139. source: "./media/characters/endraya/front.svg",
  49140. extra: 1289/1215,
  49141. bottom: 50/1339
  49142. }
  49143. },
  49144. nude: {
  49145. height: math.unit(13 + 7/12, "feet"),
  49146. weight: math.unit(2200, "lb"),
  49147. name: "Nude",
  49148. image: {
  49149. source: "./media/characters/endraya/nude.svg",
  49150. extra: 1247/1171,
  49151. bottom: 40/1287
  49152. }
  49153. },
  49154. head: {
  49155. height: math.unit(2.6, "feet"),
  49156. name: "Head",
  49157. image: {
  49158. source: "./media/characters/endraya/head.svg"
  49159. }
  49160. },
  49161. slit: {
  49162. height: math.unit(3.4, "feet"),
  49163. name: "Slit",
  49164. image: {
  49165. source: "./media/characters/endraya/slit.svg"
  49166. }
  49167. },
  49168. },
  49169. [
  49170. {
  49171. name: "Normal",
  49172. height: math.unit(13 + 7/12, "feet"),
  49173. default: true
  49174. },
  49175. {
  49176. name: "Macro",
  49177. height: math.unit(200, "feet")
  49178. },
  49179. ]
  49180. ))
  49181. characterMakers.push(() => makeCharacter(
  49182. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49183. {
  49184. front: {
  49185. height: math.unit(1.81, "meters"),
  49186. weight: math.unit(69, "kg"),
  49187. name: "Front",
  49188. image: {
  49189. source: "./media/characters/rodryana/front.svg",
  49190. extra: 2002/1921,
  49191. bottom: 53/2055
  49192. }
  49193. },
  49194. back: {
  49195. height: math.unit(1.81, "meters"),
  49196. weight: math.unit(69, "kg"),
  49197. name: "Back",
  49198. image: {
  49199. source: "./media/characters/rodryana/back.svg",
  49200. extra: 1993/1926,
  49201. bottom: 48/2041
  49202. }
  49203. },
  49204. maw: {
  49205. height: math.unit(0.19769417475, "meters"),
  49206. name: "Maw",
  49207. image: {
  49208. source: "./media/characters/rodryana/maw.svg"
  49209. }
  49210. },
  49211. slit: {
  49212. height: math.unit(0.31631067961, "meters"),
  49213. name: "Slit",
  49214. image: {
  49215. source: "./media/characters/rodryana/slit.svg"
  49216. }
  49217. },
  49218. },
  49219. [
  49220. {
  49221. name: "Normal",
  49222. height: math.unit(1.81, "meters")
  49223. },
  49224. {
  49225. name: "Mini Macro",
  49226. height: math.unit(181, "meters")
  49227. },
  49228. {
  49229. name: "Macro",
  49230. height: math.unit(452, "meters"),
  49231. default: true
  49232. },
  49233. {
  49234. name: "Mega Macro",
  49235. height: math.unit(1.375, "km")
  49236. },
  49237. {
  49238. name: "Giga Macro",
  49239. height: math.unit(13.575, "km")
  49240. },
  49241. ]
  49242. ))
  49243. characterMakers.push(() => makeCharacter(
  49244. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49245. {
  49246. front: {
  49247. height: math.unit(6, "feet"),
  49248. weight: math.unit(1000, "lb"),
  49249. name: "Front",
  49250. image: {
  49251. source: "./media/characters/asaya/front.svg",
  49252. extra: 1460/1200,
  49253. bottom: 71/1531
  49254. }
  49255. },
  49256. },
  49257. [
  49258. {
  49259. name: "Normal",
  49260. height: math.unit(8, "km"),
  49261. default: true
  49262. },
  49263. ]
  49264. ))
  49265. characterMakers.push(() => makeCharacter(
  49266. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49267. {
  49268. front: {
  49269. height: math.unit(3.5, "meters"),
  49270. name: "Front",
  49271. image: {
  49272. source: "./media/characters/sarzu-and-israz/front.svg",
  49273. extra: 1570/1558,
  49274. bottom: 150/1720
  49275. },
  49276. },
  49277. back: {
  49278. height: math.unit(3.5, "meters"),
  49279. name: "Back",
  49280. image: {
  49281. source: "./media/characters/sarzu-and-israz/back.svg",
  49282. extra: 1523/1509,
  49283. bottom: 132/1655
  49284. },
  49285. },
  49286. frontFemale: {
  49287. height: math.unit(3.5, "meters"),
  49288. name: "Front (Female)",
  49289. image: {
  49290. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49291. extra: 1570/1558,
  49292. bottom: 150/1720
  49293. },
  49294. },
  49295. frontHerm: {
  49296. height: math.unit(3.5, "meters"),
  49297. name: "Front (Herm)",
  49298. image: {
  49299. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49300. extra: 1570/1558,
  49301. bottom: 150/1720
  49302. },
  49303. },
  49304. },
  49305. [
  49306. {
  49307. name: "Normal",
  49308. height: math.unit(3.5, "meters"),
  49309. default: true,
  49310. },
  49311. {
  49312. name: "Macro",
  49313. height: math.unit(65.5, "meters"),
  49314. },
  49315. ],
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49319. {
  49320. front: {
  49321. height: math.unit(6, "feet"),
  49322. weight: math.unit(250, "lb"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/zenimma/front.svg",
  49326. extra: 1346/1320,
  49327. bottom: 58/1404
  49328. }
  49329. },
  49330. back: {
  49331. height: math.unit(6, "feet"),
  49332. weight: math.unit(250, "lb"),
  49333. name: "Back",
  49334. image: {
  49335. source: "./media/characters/zenimma/back.svg",
  49336. extra: 1324/1308,
  49337. bottom: 44/1368
  49338. }
  49339. },
  49340. dick: {
  49341. height: math.unit(1.44, "feet"),
  49342. name: "Dick",
  49343. image: {
  49344. source: "./media/characters/zenimma/dick.svg"
  49345. }
  49346. },
  49347. },
  49348. [
  49349. {
  49350. name: "Canon Height",
  49351. height: math.unit(66, "miles"),
  49352. default: true
  49353. },
  49354. ]
  49355. ))
  49356. characterMakers.push(() => makeCharacter(
  49357. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49358. {
  49359. nude: {
  49360. height: math.unit(6, "feet"),
  49361. weight: math.unit(150, "lb"),
  49362. name: "Nude",
  49363. image: {
  49364. source: "./media/characters/shavon/nude.svg",
  49365. extra: 1242/1096,
  49366. bottom: 98/1340
  49367. }
  49368. },
  49369. dressed: {
  49370. height: math.unit(6, "feet"),
  49371. weight: math.unit(150, "lb"),
  49372. name: "Dressed",
  49373. image: {
  49374. source: "./media/characters/shavon/dressed.svg",
  49375. extra: 1242/1096,
  49376. bottom: 98/1340
  49377. }
  49378. },
  49379. },
  49380. [
  49381. {
  49382. name: "Macro",
  49383. height: math.unit(255, "feet"),
  49384. default: true
  49385. },
  49386. ]
  49387. ))
  49388. characterMakers.push(() => makeCharacter(
  49389. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49390. {
  49391. front: {
  49392. height: math.unit(6, "feet"),
  49393. name: "Front",
  49394. image: {
  49395. source: "./media/characters/steph/front.svg",
  49396. extra: 1430/1330,
  49397. bottom: 54/1484
  49398. }
  49399. },
  49400. },
  49401. [
  49402. {
  49403. name: "Normal",
  49404. height: math.unit(6, "feet"),
  49405. default: true
  49406. },
  49407. ]
  49408. ))
  49409. characterMakers.push(() => makeCharacter(
  49410. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49411. {
  49412. front: {
  49413. height: math.unit(9, "feet"),
  49414. weight: math.unit(400, "lb"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/kil'aman/front.svg",
  49418. extra: 1210/1159,
  49419. bottom: 109/1319
  49420. }
  49421. },
  49422. head: {
  49423. height: math.unit(2.14, "feet"),
  49424. name: "Head",
  49425. image: {
  49426. source: "./media/characters/kil'aman/head.svg"
  49427. }
  49428. },
  49429. maw: {
  49430. height: math.unit(1.21, "feet"),
  49431. name: "Maw",
  49432. image: {
  49433. source: "./media/characters/kil'aman/maw.svg"
  49434. }
  49435. },
  49436. foot: {
  49437. height: math.unit(1.7, "feet"),
  49438. name: "Foot",
  49439. image: {
  49440. source: "./media/characters/kil'aman/foot.svg"
  49441. }
  49442. },
  49443. dick: {
  49444. height: math.unit(2.1, "feet"),
  49445. name: "Dick",
  49446. image: {
  49447. source: "./media/characters/kil'aman/dick.svg"
  49448. }
  49449. },
  49450. },
  49451. [
  49452. {
  49453. name: "Normal",
  49454. height: math.unit(9, "feet")
  49455. },
  49456. {
  49457. name: "Canon Height",
  49458. height: math.unit(10, "miles"),
  49459. default: true
  49460. },
  49461. {
  49462. name: "Maximum",
  49463. height: math.unit(6e9, "miles")
  49464. },
  49465. ]
  49466. ))
  49467. characterMakers.push(() => makeCharacter(
  49468. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49469. {
  49470. front: {
  49471. height: math.unit(90, "feet"),
  49472. weight: math.unit(675000, "lb"),
  49473. name: "Front",
  49474. image: {
  49475. source: "./media/characters/qadan/front.svg",
  49476. extra: 1012/1004,
  49477. bottom: 78/1090
  49478. }
  49479. },
  49480. back: {
  49481. height: math.unit(90, "feet"),
  49482. weight: math.unit(675000, "lb"),
  49483. name: "Back",
  49484. image: {
  49485. source: "./media/characters/qadan/back.svg",
  49486. extra: 1042/1031,
  49487. bottom: 55/1097
  49488. }
  49489. },
  49490. armored: {
  49491. height: math.unit(90, "feet"),
  49492. weight: math.unit(675000, "lb"),
  49493. name: "Armored",
  49494. image: {
  49495. source: "./media/characters/qadan/armored.svg",
  49496. extra: 1047/1037,
  49497. bottom: 48/1095
  49498. }
  49499. },
  49500. },
  49501. [
  49502. {
  49503. name: "Normal",
  49504. height: math.unit(90, "feet"),
  49505. default: true
  49506. },
  49507. ]
  49508. ))
  49509. characterMakers.push(() => makeCharacter(
  49510. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49511. {
  49512. front: {
  49513. height: math.unit(6, "feet"),
  49514. weight: math.unit(225, "lb"),
  49515. name: "Front",
  49516. image: {
  49517. source: "./media/characters/brooke/front.svg",
  49518. extra: 1050/1010,
  49519. bottom: 66/1116
  49520. }
  49521. },
  49522. back: {
  49523. height: math.unit(6, "feet"),
  49524. weight: math.unit(225, "lb"),
  49525. name: "Back",
  49526. image: {
  49527. source: "./media/characters/brooke/back.svg",
  49528. extra: 1053/1013,
  49529. bottom: 41/1094
  49530. }
  49531. },
  49532. dressed: {
  49533. height: math.unit(6, "feet"),
  49534. weight: math.unit(225, "lb"),
  49535. name: "Dressed",
  49536. image: {
  49537. source: "./media/characters/brooke/dressed.svg",
  49538. extra: 1050/1010,
  49539. bottom: 66/1116
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Canon Height",
  49546. height: math.unit(500, "miles"),
  49547. default: true
  49548. },
  49549. ]
  49550. ))
  49551. characterMakers.push(() => makeCharacter(
  49552. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49553. {
  49554. front: {
  49555. height: math.unit(6 + 2/12, "feet"),
  49556. weight: math.unit(210, "lb"),
  49557. name: "Front",
  49558. image: {
  49559. source: "./media/characters/wubs/front.svg",
  49560. extra: 1345/1325,
  49561. bottom: 70/1415
  49562. }
  49563. },
  49564. back: {
  49565. height: math.unit(6 + 2/12, "feet"),
  49566. weight: math.unit(210, "lb"),
  49567. name: "Back",
  49568. image: {
  49569. source: "./media/characters/wubs/back.svg",
  49570. extra: 1296/1275,
  49571. bottom: 58/1354
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(6 + 2/12, "feet"),
  49579. default: true
  49580. },
  49581. {
  49582. name: "Macro",
  49583. height: math.unit(1000, "feet")
  49584. },
  49585. {
  49586. name: "Megamacro",
  49587. height: math.unit(1, "mile")
  49588. },
  49589. ]
  49590. ))
  49591. characterMakers.push(() => makeCharacter(
  49592. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49593. {
  49594. front: {
  49595. height: math.unit(4, "feet"),
  49596. weight: math.unit(120, "lb"),
  49597. name: "Front",
  49598. image: {
  49599. source: "./media/characters/blue/front.svg",
  49600. extra: 1636/1525,
  49601. bottom: 43/1679
  49602. }
  49603. },
  49604. back: {
  49605. height: math.unit(4, "feet"),
  49606. weight: math.unit(120, "lb"),
  49607. name: "Back",
  49608. image: {
  49609. source: "./media/characters/blue/back.svg",
  49610. extra: 1660/1560,
  49611. bottom: 57/1717
  49612. }
  49613. },
  49614. paws: {
  49615. height: math.unit(0.826, "feet"),
  49616. name: "Paws",
  49617. image: {
  49618. source: "./media/characters/blue/paws.svg"
  49619. }
  49620. },
  49621. },
  49622. [
  49623. {
  49624. name: "Micro",
  49625. height: math.unit(3, "inches")
  49626. },
  49627. {
  49628. name: "Normal",
  49629. height: math.unit(4, "feet"),
  49630. default: true
  49631. },
  49632. {
  49633. name: "Femenine Form",
  49634. height: math.unit(14, "feet")
  49635. },
  49636. {
  49637. name: "Werebat Form",
  49638. height: math.unit(18, "feet")
  49639. },
  49640. ]
  49641. ))
  49642. characterMakers.push(() => makeCharacter(
  49643. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49644. {
  49645. female: {
  49646. height: math.unit(7 + 4/12, "feet"),
  49647. weight: math.unit(243, "lb"),
  49648. name: "Female",
  49649. image: {
  49650. source: "./media/characters/kaya/female.svg",
  49651. extra: 975/898,
  49652. bottom: 34/1009
  49653. }
  49654. },
  49655. herm: {
  49656. height: math.unit(7 + 4/12, "feet"),
  49657. weight: math.unit(243, "lb"),
  49658. name: "Herm",
  49659. image: {
  49660. source: "./media/characters/kaya/herm.svg",
  49661. extra: 975/898,
  49662. bottom: 34/1009
  49663. }
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Normal",
  49669. height: math.unit(7 + 4/12, "feet"),
  49670. default: true
  49671. },
  49672. ]
  49673. ))
  49674. characterMakers.push(() => makeCharacter(
  49675. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49676. {
  49677. female: {
  49678. height: math.unit(9 + 4/12, "feet"),
  49679. weight: math.unit(398, "lb"),
  49680. name: "Female",
  49681. image: {
  49682. source: "./media/characters/kassandra/female.svg",
  49683. extra: 908/839,
  49684. bottom: 61/969
  49685. }
  49686. },
  49687. intersex: {
  49688. height: math.unit(9 + 4/12, "feet"),
  49689. weight: math.unit(398, "lb"),
  49690. name: "Intersex",
  49691. image: {
  49692. source: "./media/characters/kassandra/intersex.svg",
  49693. extra: 908/839,
  49694. bottom: 61/969
  49695. }
  49696. },
  49697. },
  49698. [
  49699. {
  49700. name: "Normal",
  49701. height: math.unit(9 + 4/12, "feet"),
  49702. default: true
  49703. },
  49704. ]
  49705. ))
  49706. characterMakers.push(() => makeCharacter(
  49707. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49708. {
  49709. front: {
  49710. height: math.unit(3, "meters"),
  49711. name: "Front",
  49712. image: {
  49713. source: "./media/characters/amy/front.svg",
  49714. extra: 1380/1343,
  49715. bottom: 70/1450
  49716. }
  49717. },
  49718. back: {
  49719. height: math.unit(3, "meters"),
  49720. name: "Back",
  49721. image: {
  49722. source: "./media/characters/amy/back.svg",
  49723. extra: 1380/1347,
  49724. bottom: 66/1446
  49725. }
  49726. },
  49727. },
  49728. [
  49729. {
  49730. name: "Normal",
  49731. height: math.unit(3, "meters"),
  49732. default: true
  49733. },
  49734. ]
  49735. ))
  49736. characterMakers.push(() => makeCharacter(
  49737. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49738. {
  49739. side: {
  49740. height: math.unit(47, "cm"),
  49741. weight: math.unit(10.8, "kg"),
  49742. name: "Side",
  49743. image: {
  49744. source: "./media/characters/alphaschakal/side.svg",
  49745. extra: 1058/568,
  49746. bottom: 62/1120
  49747. }
  49748. },
  49749. back: {
  49750. height: math.unit(78, "cm"),
  49751. weight: math.unit(10.8, "kg"),
  49752. name: "Back",
  49753. image: {
  49754. source: "./media/characters/alphaschakal/back.svg",
  49755. extra: 1102/942,
  49756. bottom: 185/1287
  49757. }
  49758. },
  49759. head: {
  49760. height: math.unit(28, "cm"),
  49761. name: "Head",
  49762. image: {
  49763. source: "./media/characters/alphaschakal/head.svg",
  49764. extra: 696/508,
  49765. bottom: 0/696
  49766. }
  49767. },
  49768. paw: {
  49769. height: math.unit(16, "cm"),
  49770. name: "Paw",
  49771. image: {
  49772. source: "./media/characters/alphaschakal/paw.svg"
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Normal",
  49779. height: math.unit(47, "cm"),
  49780. default: true
  49781. },
  49782. {
  49783. name: "Macro",
  49784. height: math.unit(340, "cm")
  49785. },
  49786. ]
  49787. ))
  49788. characterMakers.push(() => makeCharacter(
  49789. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49790. {
  49791. front: {
  49792. height: math.unit(36, "earths"),
  49793. name: "Front",
  49794. image: {
  49795. source: "./media/characters/ecobyss/front.svg",
  49796. extra: 1282/1215,
  49797. bottom: 11/1293
  49798. }
  49799. },
  49800. back: {
  49801. height: math.unit(36, "earths"),
  49802. name: "Back",
  49803. image: {
  49804. source: "./media/characters/ecobyss/back.svg",
  49805. extra: 1291/1222,
  49806. bottom: 8/1299
  49807. }
  49808. },
  49809. },
  49810. [
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(36, "earths"),
  49814. default: true
  49815. },
  49816. ]
  49817. ))
  49818. characterMakers.push(() => makeCharacter(
  49819. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49820. {
  49821. front: {
  49822. height: math.unit(12, "feet"),
  49823. name: "Front",
  49824. image: {
  49825. source: "./media/characters/vasuk/front.svg",
  49826. extra: 1326/1207,
  49827. bottom: 64/1390
  49828. }
  49829. },
  49830. },
  49831. [
  49832. {
  49833. name: "Normal",
  49834. height: math.unit(12, "feet"),
  49835. default: true
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49841. {
  49842. side: {
  49843. height: math.unit(100, "feet"),
  49844. name: "Side",
  49845. image: {
  49846. source: "./media/characters/linneaus/side.svg",
  49847. extra: 987/807,
  49848. bottom: 47/1034
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Macro",
  49855. height: math.unit(100, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49862. {
  49863. front: {
  49864. height: math.unit(8, "feet"),
  49865. weight: math.unit(1200, "lb"),
  49866. name: "Front",
  49867. image: {
  49868. source: "./media/characters/nyterious-daligdig/front.svg",
  49869. extra: 1284/1094,
  49870. bottom: 84/1368
  49871. }
  49872. },
  49873. back: {
  49874. height: math.unit(8, "feet"),
  49875. weight: math.unit(1200, "lb"),
  49876. name: "Back",
  49877. image: {
  49878. source: "./media/characters/nyterious-daligdig/back.svg",
  49879. extra: 1301/1121,
  49880. bottom: 129/1430
  49881. }
  49882. },
  49883. mouth: {
  49884. height: math.unit(1.464, "feet"),
  49885. name: "Mouth",
  49886. image: {
  49887. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49888. }
  49889. },
  49890. },
  49891. [
  49892. {
  49893. name: "Small",
  49894. height: math.unit(8, "feet"),
  49895. default: true
  49896. },
  49897. {
  49898. name: "Normal",
  49899. height: math.unit(15, "feet")
  49900. },
  49901. {
  49902. name: "Macro",
  49903. height: math.unit(90, "feet")
  49904. },
  49905. ]
  49906. ))
  49907. characterMakers.push(() => makeCharacter(
  49908. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49909. {
  49910. front: {
  49911. height: math.unit(7 + 4/12, "feet"),
  49912. weight: math.unit(252, "lb"),
  49913. name: "Front",
  49914. image: {
  49915. source: "./media/characters/bandel/front.svg",
  49916. extra: 1946/1775,
  49917. bottom: 26/1972
  49918. }
  49919. },
  49920. back: {
  49921. height: math.unit(7 + 4/12, "feet"),
  49922. weight: math.unit(252, "lb"),
  49923. name: "Back",
  49924. image: {
  49925. source: "./media/characters/bandel/back.svg",
  49926. extra: 1940/1770,
  49927. bottom: 25/1965
  49928. }
  49929. },
  49930. maw: {
  49931. height: math.unit(2.15, "feet"),
  49932. name: "Maw",
  49933. image: {
  49934. source: "./media/characters/bandel/maw.svg"
  49935. }
  49936. },
  49937. stomach: {
  49938. height: math.unit(1.95, "feet"),
  49939. name: "Stomach",
  49940. image: {
  49941. source: "./media/characters/bandel/stomach.svg"
  49942. }
  49943. },
  49944. },
  49945. [
  49946. {
  49947. name: "Normal",
  49948. height: math.unit(7 + 4/12, "feet"),
  49949. default: true
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49955. {
  49956. front: {
  49957. height: math.unit(10 + 5/12, "feet"),
  49958. weight: math.unit(773.5, "kg"),
  49959. name: "Front",
  49960. image: {
  49961. source: "./media/characters/zed/front.svg",
  49962. extra: 987/941,
  49963. bottom: 52/1039
  49964. }
  49965. },
  49966. },
  49967. [
  49968. {
  49969. name: "Short",
  49970. height: math.unit(5 + 4/12, "feet")
  49971. },
  49972. {
  49973. name: "Average",
  49974. height: math.unit(10 + 5/12, "feet"),
  49975. default: true
  49976. },
  49977. {
  49978. name: "Mini-Macro",
  49979. height: math.unit(24 + 9/12, "feet")
  49980. },
  49981. {
  49982. name: "Macro",
  49983. height: math.unit(249, "feet")
  49984. },
  49985. {
  49986. name: "Mega-Macro",
  49987. height: math.unit(12490, "feet")
  49988. },
  49989. {
  49990. name: "Giga-Macro",
  49991. height: math.unit(24.9, "miles")
  49992. },
  49993. {
  49994. name: "Tera-Macro",
  49995. height: math.unit(24900, "miles")
  49996. },
  49997. {
  49998. name: "Cosmic Scale",
  49999. height: math.unit(38.9, "lightyears")
  50000. },
  50001. {
  50002. name: "Universal Scale",
  50003. height: math.unit(138e12, "lightyears")
  50004. },
  50005. ]
  50006. ))
  50007. characterMakers.push(() => makeCharacter(
  50008. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50009. {
  50010. front: {
  50011. height: math.unit(1561, "inches"),
  50012. name: "Front",
  50013. image: {
  50014. source: "./media/characters/ivan/front.svg",
  50015. extra: 1126/1071,
  50016. bottom: 26/1152
  50017. }
  50018. },
  50019. back: {
  50020. height: math.unit(1561, "inches"),
  50021. name: "Back",
  50022. image: {
  50023. source: "./media/characters/ivan/back.svg",
  50024. extra: 1134/1079,
  50025. bottom: 30/1164
  50026. }
  50027. },
  50028. },
  50029. [
  50030. {
  50031. name: "Normal",
  50032. height: math.unit(1561, "inches"),
  50033. default: true
  50034. },
  50035. ]
  50036. ))
  50037. characterMakers.push(() => makeCharacter(
  50038. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50039. {
  50040. front: {
  50041. height: math.unit(5 + 7/12, "feet"),
  50042. weight: math.unit(150, "lb"),
  50043. name: "Front",
  50044. image: {
  50045. source: "./media/characters/robin-arctic-hare/front.svg",
  50046. extra: 1148/974,
  50047. bottom: 20/1168
  50048. }
  50049. },
  50050. },
  50051. [
  50052. {
  50053. name: "Normal",
  50054. height: math.unit(5 + 7/12, "feet"),
  50055. default: true
  50056. },
  50057. ]
  50058. ))
  50059. characterMakers.push(() => makeCharacter(
  50060. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50061. {
  50062. side: {
  50063. height: math.unit(5, "feet"),
  50064. name: "Side",
  50065. image: {
  50066. source: "./media/characters/birch/side.svg",
  50067. extra: 985/796,
  50068. bottom: 111/1096
  50069. }
  50070. },
  50071. },
  50072. [
  50073. {
  50074. name: "Normal",
  50075. height: math.unit(5, "feet"),
  50076. default: true
  50077. },
  50078. ]
  50079. ))
  50080. characterMakers.push(() => makeCharacter(
  50081. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50082. {
  50083. front: {
  50084. height: math.unit(4, "feet"),
  50085. name: "Front",
  50086. image: {
  50087. source: "./media/characters/rasp/front.svg",
  50088. extra: 561/478,
  50089. bottom: 74/635
  50090. }
  50091. },
  50092. },
  50093. [
  50094. {
  50095. name: "Normal",
  50096. height: math.unit(4, "feet"),
  50097. default: true
  50098. },
  50099. ]
  50100. ))
  50101. characterMakers.push(() => makeCharacter(
  50102. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50103. {
  50104. front: {
  50105. height: math.unit(4 + 6/12, "feet"),
  50106. name: "Front",
  50107. image: {
  50108. source: "./media/characters/agatha/front.svg",
  50109. extra: 947/933,
  50110. bottom: 42/989
  50111. }
  50112. },
  50113. back: {
  50114. height: math.unit(4 + 6/12, "feet"),
  50115. name: "Back",
  50116. image: {
  50117. source: "./media/characters/agatha/back.svg",
  50118. extra: 935/922,
  50119. bottom: 48/983
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Normal",
  50126. height: math.unit(4 + 6 /12, "feet"),
  50127. default: true
  50128. },
  50129. {
  50130. name: "Max Size",
  50131. height: math.unit(500, "feet")
  50132. },
  50133. ]
  50134. ))
  50135. characterMakers.push(() => makeCharacter(
  50136. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50137. {
  50138. side: {
  50139. height: math.unit(30, "feet"),
  50140. name: "Side",
  50141. image: {
  50142. source: "./media/characters/roggy/side.svg",
  50143. extra: 909/643,
  50144. bottom: 63/972
  50145. }
  50146. },
  50147. lounging: {
  50148. height: math.unit(20, "feet"),
  50149. name: "Lounging",
  50150. image: {
  50151. source: "./media/characters/roggy/lounging.svg",
  50152. extra: 643/479,
  50153. bottom: 145/788
  50154. }
  50155. },
  50156. handpaw: {
  50157. height: math.unit(13.1, "feet"),
  50158. name: "Handpaw",
  50159. image: {
  50160. source: "./media/characters/roggy/handpaw.svg"
  50161. }
  50162. },
  50163. footpaw: {
  50164. height: math.unit(15.8, "feet"),
  50165. name: "Footpaw",
  50166. image: {
  50167. source: "./media/characters/roggy/footpaw.svg"
  50168. }
  50169. },
  50170. },
  50171. [
  50172. {
  50173. name: "Menacing",
  50174. height: math.unit(30, "feet"),
  50175. default: true
  50176. },
  50177. ]
  50178. ))
  50179. characterMakers.push(() => makeCharacter(
  50180. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50181. {
  50182. front: {
  50183. height: math.unit(5 + 7/12, "feet"),
  50184. weight: math.unit(135, "lb"),
  50185. name: "Front",
  50186. image: {
  50187. source: "./media/characters/naomi/front.svg",
  50188. extra: 1209/1154,
  50189. bottom: 129/1338
  50190. }
  50191. },
  50192. back: {
  50193. height: math.unit(5 + 7/12, "feet"),
  50194. weight: math.unit(135, "lb"),
  50195. name: "Back",
  50196. image: {
  50197. source: "./media/characters/naomi/back.svg",
  50198. extra: 1252/1190,
  50199. bottom: 23/1275
  50200. }
  50201. },
  50202. },
  50203. [
  50204. {
  50205. name: "Normal",
  50206. height: math.unit(5 + 7 /12, "feet"),
  50207. default: true
  50208. },
  50209. ]
  50210. ))
  50211. characterMakers.push(() => makeCharacter(
  50212. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50213. {
  50214. side: {
  50215. height: math.unit(35, "meters"),
  50216. name: "Side",
  50217. image: {
  50218. source: "./media/characters/kimpi/side.svg",
  50219. extra: 419/382,
  50220. bottom: 63/482
  50221. }
  50222. },
  50223. hand: {
  50224. height: math.unit(8.96, "meters"),
  50225. name: "Hand",
  50226. image: {
  50227. source: "./media/characters/kimpi/hand.svg"
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(35, "meters"),
  50235. default: true
  50236. },
  50237. ]
  50238. ))
  50239. characterMakers.push(() => makeCharacter(
  50240. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50241. {
  50242. front: {
  50243. height: math.unit(4 + 4/12, "feet"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/pepper-purrloin/front.svg",
  50247. extra: 1141/1024,
  50248. bottom: 21/1162
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(4 + 4/12, "feet"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(6 + 2/12, "feet"),
  50265. name: "Front",
  50266. image: {
  50267. source: "./media/characters/raphael/front.svg",
  50268. extra: 1101/962,
  50269. bottom: 59/1160
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(6 + 2/12, "feet"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50283. {
  50284. front: {
  50285. height: math.unit(6, "feet"),
  50286. weight: math.unit(150, "lb"),
  50287. name: "Front",
  50288. image: {
  50289. source: "./media/characters/victor-williams/front.svg",
  50290. extra: 1894/1825,
  50291. bottom: 67/1961
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Normal",
  50298. height: math.unit(6, "feet"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50305. {
  50306. front: {
  50307. height: math.unit(5 + 8/12, "feet"),
  50308. weight: math.unit(150, "lb"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/rachel/front.svg",
  50312. extra: 1902/1787,
  50313. bottom: 46/1948
  50314. }
  50315. },
  50316. },
  50317. [
  50318. {
  50319. name: "Base Height",
  50320. height: math.unit(5 + 8/12, "feet"),
  50321. default: true
  50322. },
  50323. {
  50324. name: "Macro",
  50325. height: math.unit(200, "feet")
  50326. },
  50327. {
  50328. name: "Mega Macro",
  50329. height: math.unit(1, "mile")
  50330. },
  50331. {
  50332. name: "Giga Macro",
  50333. height: math.unit(1500, "miles")
  50334. },
  50335. {
  50336. name: "Tera Macro",
  50337. height: math.unit(8000, "miles")
  50338. },
  50339. {
  50340. name: "Tera Macro+",
  50341. height: math.unit(2e5, "miles")
  50342. },
  50343. ]
  50344. ))
  50345. characterMakers.push(() => makeCharacter(
  50346. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50347. {
  50348. front: {
  50349. height: math.unit(6.5, "feet"),
  50350. name: "Front",
  50351. image: {
  50352. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50353. extra: 860/819,
  50354. bottom: 307/1167
  50355. }
  50356. },
  50357. back: {
  50358. height: math.unit(6.5, "feet"),
  50359. name: "Back",
  50360. image: {
  50361. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50362. extra: 880/837,
  50363. bottom: 395/1275
  50364. }
  50365. },
  50366. sleeping: {
  50367. height: math.unit(2.79, "feet"),
  50368. name: "Sleeping",
  50369. image: {
  50370. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50371. extra: 465/383,
  50372. bottom: 263/728
  50373. }
  50374. },
  50375. maw: {
  50376. height: math.unit(2.52, "feet"),
  50377. name: "Maw",
  50378. image: {
  50379. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50380. }
  50381. },
  50382. },
  50383. [
  50384. {
  50385. name: "Normal",
  50386. height: math.unit(6.5, "feet"),
  50387. default: true
  50388. },
  50389. ]
  50390. ))
  50391. characterMakers.push(() => makeCharacter(
  50392. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50393. {
  50394. front: {
  50395. height: math.unit(5, "feet"),
  50396. name: "Front",
  50397. image: {
  50398. source: "./media/characters/nova-nerium/front.svg",
  50399. extra: 1548/1392,
  50400. bottom: 374/1922
  50401. }
  50402. },
  50403. back: {
  50404. height: math.unit(5, "feet"),
  50405. name: "Back",
  50406. image: {
  50407. source: "./media/characters/nova-nerium/back.svg",
  50408. extra: 1658/1468,
  50409. bottom: 257/1915
  50410. }
  50411. },
  50412. },
  50413. [
  50414. {
  50415. name: "Normal",
  50416. height: math.unit(5, "feet"),
  50417. default: true
  50418. },
  50419. ]
  50420. ))
  50421. characterMakers.push(() => makeCharacter(
  50422. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50423. {
  50424. front: {
  50425. height: math.unit(5 + 4/12, "feet"),
  50426. name: "Front",
  50427. image: {
  50428. source: "./media/characters/ashe-pyriph/front.svg",
  50429. extra: 1935/1747,
  50430. bottom: 60/1995
  50431. }
  50432. },
  50433. },
  50434. [
  50435. {
  50436. name: "Normal",
  50437. height: math.unit(5 + 4/12, "feet"),
  50438. default: true
  50439. },
  50440. ]
  50441. ))
  50442. characterMakers.push(() => makeCharacter(
  50443. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50444. {
  50445. front: {
  50446. height: math.unit(8.7, "feet"),
  50447. name: "Front",
  50448. image: {
  50449. source: "./media/characters/flicker-wisp/front.svg",
  50450. extra: 1835/1613,
  50451. bottom: 449/2284
  50452. }
  50453. },
  50454. side: {
  50455. height: math.unit(8.7, "feet"),
  50456. name: "Side",
  50457. image: {
  50458. source: "./media/characters/flicker-wisp/side.svg",
  50459. extra: 1841/1642,
  50460. bottom: 336/2177
  50461. },
  50462. default: true
  50463. },
  50464. maw: {
  50465. height: math.unit(3.35, "feet"),
  50466. name: "Maw",
  50467. image: {
  50468. source: "./media/characters/flicker-wisp/maw.svg",
  50469. extra: 2338/1506,
  50470. bottom: 0/2338
  50471. }
  50472. },
  50473. ovipositor: {
  50474. height: math.unit(4.95, "feet"),
  50475. name: "Ovipositor",
  50476. image: {
  50477. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50478. }
  50479. },
  50480. egg: {
  50481. height: math.unit(0.385, "feet"),
  50482. weight: math.unit(2, "lb"),
  50483. name: "Egg",
  50484. image: {
  50485. source: "./media/characters/flicker-wisp/egg.svg"
  50486. }
  50487. },
  50488. },
  50489. [
  50490. {
  50491. name: "Normal",
  50492. height: math.unit(8.7, "feet"),
  50493. default: true
  50494. },
  50495. ]
  50496. ))
  50497. characterMakers.push(() => makeCharacter(
  50498. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50499. {
  50500. side: {
  50501. height: math.unit(11, "feet"),
  50502. name: "Side",
  50503. image: {
  50504. source: "./media/characters/faefnul/side.svg",
  50505. extra: 1100/1007,
  50506. bottom: 0/1100
  50507. }
  50508. },
  50509. },
  50510. [
  50511. {
  50512. name: "Normal",
  50513. height: math.unit(11, "feet"),
  50514. default: true
  50515. },
  50516. ]
  50517. ))
  50518. characterMakers.push(() => makeCharacter(
  50519. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50520. {
  50521. front: {
  50522. height: math.unit(6 + 2/12, "feet"),
  50523. name: "Front",
  50524. image: {
  50525. source: "./media/characters/shady/front.svg",
  50526. extra: 502/461,
  50527. bottom: 9/511
  50528. }
  50529. },
  50530. kneeling: {
  50531. height: math.unit(4.6, "feet"),
  50532. name: "Kneeling",
  50533. image: {
  50534. source: "./media/characters/shady/kneeling.svg",
  50535. extra: 1328/1219,
  50536. bottom: 117/1445
  50537. }
  50538. },
  50539. maw: {
  50540. height: math.unit(2, "feet"),
  50541. name: "Maw",
  50542. image: {
  50543. source: "./media/characters/shady/maw.svg"
  50544. }
  50545. },
  50546. },
  50547. [
  50548. {
  50549. name: "Nano",
  50550. height: math.unit(1, "mm")
  50551. },
  50552. {
  50553. name: "Micro",
  50554. height: math.unit(12, "mm")
  50555. },
  50556. {
  50557. name: "Tiny",
  50558. height: math.unit(3, "inches")
  50559. },
  50560. {
  50561. name: "Normal",
  50562. height: math.unit(6 + 2/12, "feet"),
  50563. default: true
  50564. },
  50565. {
  50566. name: "Big",
  50567. height: math.unit(15, "feet")
  50568. },
  50569. {
  50570. name: "Macro",
  50571. height: math.unit(150, "feet")
  50572. },
  50573. {
  50574. name: "Titanic",
  50575. height: math.unit(500, "feet")
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(12, "feet"),
  50584. name: "Front",
  50585. image: {
  50586. source: "./media/characters/fenrir/front.svg",
  50587. extra: 968/875,
  50588. bottom: 22/990
  50589. }
  50590. },
  50591. },
  50592. [
  50593. {
  50594. name: "Big",
  50595. height: math.unit(12, "feet"),
  50596. default: true
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50602. {
  50603. front: {
  50604. height: math.unit(5 + 4/12, "feet"),
  50605. name: "Front",
  50606. image: {
  50607. source: "./media/characters/makar/front.svg",
  50608. extra: 1181/1112,
  50609. bottom: 78/1259
  50610. }
  50611. },
  50612. },
  50613. [
  50614. {
  50615. name: "Normal",
  50616. height: math.unit(5 + 4/12, "feet"),
  50617. default: true
  50618. },
  50619. ]
  50620. ))
  50621. characterMakers.push(() => makeCharacter(
  50622. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50623. {
  50624. front: {
  50625. height: math.unit(5 + 7/12, "feet"),
  50626. name: "Front",
  50627. image: {
  50628. source: "./media/characters/callow/front.svg",
  50629. extra: 1482/1304,
  50630. bottom: 23/1505
  50631. }
  50632. },
  50633. back: {
  50634. height: math.unit(5 + 7/12, "feet"),
  50635. name: "Back",
  50636. image: {
  50637. source: "./media/characters/callow/back.svg",
  50638. extra: 1484/1296,
  50639. bottom: 25/1509
  50640. }
  50641. },
  50642. },
  50643. [
  50644. {
  50645. name: "Micro",
  50646. height: math.unit(3, "inches"),
  50647. default: true
  50648. },
  50649. {
  50650. name: "Normal",
  50651. height: math.unit(5 + 7/12, "feet")
  50652. },
  50653. ]
  50654. ))
  50655. characterMakers.push(() => makeCharacter(
  50656. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50657. {
  50658. front: {
  50659. height: math.unit(6 + 2/12, "feet"),
  50660. name: "Front",
  50661. image: {
  50662. source: "./media/characters/natel/front.svg",
  50663. extra: 1833/1692,
  50664. bottom: 166/1999
  50665. }
  50666. },
  50667. },
  50668. [
  50669. {
  50670. name: "Normal",
  50671. height: math.unit(6 + 2/12, "feet"),
  50672. default: true
  50673. },
  50674. ]
  50675. ))
  50676. characterMakers.push(() => makeCharacter(
  50677. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50678. {
  50679. front: {
  50680. height: math.unit(1.75, "meters"),
  50681. name: "Front",
  50682. image: {
  50683. source: "./media/characters/misu/front.svg",
  50684. extra: 1690/1558,
  50685. bottom: 234/1924
  50686. }
  50687. },
  50688. back: {
  50689. height: math.unit(1.75, "meters"),
  50690. name: "Back",
  50691. image: {
  50692. source: "./media/characters/misu/back.svg",
  50693. extra: 1762/1618,
  50694. bottom: 146/1908
  50695. }
  50696. },
  50697. frontNude: {
  50698. height: math.unit(1.75, "meters"),
  50699. name: "Front (Nude)",
  50700. image: {
  50701. source: "./media/characters/misu/front-nude.svg",
  50702. extra: 1690/1558,
  50703. bottom: 234/1924
  50704. }
  50705. },
  50706. backNude: {
  50707. height: math.unit(1.75, "meters"),
  50708. name: "Back (Nude)",
  50709. image: {
  50710. source: "./media/characters/misu/back-nude.svg",
  50711. extra: 1762/1618,
  50712. bottom: 146/1908
  50713. }
  50714. },
  50715. frontErect: {
  50716. height: math.unit(1.75, "meters"),
  50717. name: "Front (Erect)",
  50718. image: {
  50719. source: "./media/characters/misu/front-erect.svg",
  50720. extra: 1690/1558,
  50721. bottom: 234/1924
  50722. }
  50723. },
  50724. maw: {
  50725. height: math.unit(0.47, "meters"),
  50726. name: "Maw",
  50727. image: {
  50728. source: "./media/characters/misu/maw.svg"
  50729. }
  50730. },
  50731. head: {
  50732. height: math.unit(0.35, "meters"),
  50733. name: "Head",
  50734. image: {
  50735. source: "./media/characters/misu/head.svg"
  50736. }
  50737. },
  50738. rear: {
  50739. height: math.unit(0.47, "meters"),
  50740. name: "Rear",
  50741. image: {
  50742. source: "./media/characters/misu/rear.svg"
  50743. }
  50744. },
  50745. },
  50746. [
  50747. {
  50748. name: "Normal",
  50749. height: math.unit(1.75, "meters")
  50750. },
  50751. {
  50752. name: "Not good for the people",
  50753. height: math.unit(42, "meters")
  50754. },
  50755. {
  50756. name: "Not good for the neighborhood",
  50757. height: math.unit(135, "meters")
  50758. },
  50759. {
  50760. name: "Bit bigger problem",
  50761. height: math.unit(380, "meters"),
  50762. default: true
  50763. },
  50764. {
  50765. name: "Not good for the city",
  50766. height: math.unit(1.5, "km")
  50767. },
  50768. {
  50769. name: "Not good for the county",
  50770. height: math.unit(5.5, "km")
  50771. },
  50772. {
  50773. name: "Not good for the state",
  50774. height: math.unit(25, "km")
  50775. },
  50776. {
  50777. name: "Not good for the country",
  50778. height: math.unit(125, "km")
  50779. },
  50780. {
  50781. name: "Not good for the continent",
  50782. height: math.unit(2100, "km")
  50783. },
  50784. {
  50785. name: "Not good for the planet",
  50786. height: math.unit(35000, "km")
  50787. },
  50788. {
  50789. name: "Just no",
  50790. height: math.unit(8.5e18, "km")
  50791. },
  50792. ]
  50793. ))
  50794. characterMakers.push(() => makeCharacter(
  50795. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50796. {
  50797. front: {
  50798. height: math.unit(6.5, "feet"),
  50799. name: "Front",
  50800. image: {
  50801. source: "./media/characters/poppy/front.svg",
  50802. extra: 1878/1812,
  50803. bottom: 43/1921
  50804. }
  50805. },
  50806. feet: {
  50807. height: math.unit(1.06, "feet"),
  50808. name: "Feet",
  50809. image: {
  50810. source: "./media/characters/poppy/feet.svg",
  50811. extra: 1083/1083,
  50812. bottom: 87/1170
  50813. }
  50814. },
  50815. },
  50816. [
  50817. {
  50818. name: "Human",
  50819. height: math.unit(6.5, "feet")
  50820. },
  50821. {
  50822. name: "Default",
  50823. height: math.unit(300, "feet"),
  50824. default: true
  50825. },
  50826. {
  50827. name: "Huge",
  50828. height: math.unit(850, "feet")
  50829. },
  50830. {
  50831. name: "Mega",
  50832. height: math.unit(8000, "feet")
  50833. },
  50834. {
  50835. name: "Giga",
  50836. height: math.unit(300, "miles")
  50837. },
  50838. ]
  50839. ))
  50840. characterMakers.push(() => makeCharacter(
  50841. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50842. {
  50843. bipedal: {
  50844. height: math.unit(7, "feet"),
  50845. name: "Bipedal",
  50846. image: {
  50847. source: "./media/characters/zener/bipedal.svg",
  50848. extra: 874/805,
  50849. bottom: 109/983
  50850. }
  50851. },
  50852. quadrupedal: {
  50853. height: math.unit(4.64, "feet"),
  50854. name: "Quadrupedal",
  50855. image: {
  50856. source: "./media/characters/zener/quadrupedal.svg",
  50857. extra: 638/507,
  50858. bottom: 190/828
  50859. }
  50860. },
  50861. cock: {
  50862. height: math.unit(18, "inches"),
  50863. name: "Cock",
  50864. image: {
  50865. source: "./media/characters/zener/cock.svg"
  50866. }
  50867. },
  50868. },
  50869. [
  50870. {
  50871. name: "Normal",
  50872. height: math.unit(7, "feet"),
  50873. default: true
  50874. },
  50875. ]
  50876. ))
  50877. characterMakers.push(() => makeCharacter(
  50878. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50879. {
  50880. nude: {
  50881. height: math.unit(5 + 6/12, "feet"),
  50882. name: "Nude",
  50883. image: {
  50884. source: "./media/characters/charlie-dog/nude.svg",
  50885. extra: 768/734,
  50886. bottom: 26/794
  50887. }
  50888. },
  50889. dressed: {
  50890. height: math.unit(5 + 6/12, "feet"),
  50891. name: "Dressed",
  50892. image: {
  50893. source: "./media/characters/charlie-dog/dressed.svg",
  50894. extra: 768/734,
  50895. bottom: 26/794
  50896. }
  50897. },
  50898. },
  50899. [
  50900. {
  50901. name: "Normal",
  50902. height: math.unit(5 + 6/12, "feet"),
  50903. default: true
  50904. },
  50905. ]
  50906. ))
  50907. characterMakers.push(() => makeCharacter(
  50908. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50909. {
  50910. front: {
  50911. height: math.unit(6 + 4/12, "feet"),
  50912. name: "Front",
  50913. image: {
  50914. source: "./media/characters/ir'istrasz/front.svg",
  50915. extra: 1014/977,
  50916. bottom: 65/1079
  50917. }
  50918. },
  50919. back: {
  50920. height: math.unit(6 + 4/12, "feet"),
  50921. name: "Back",
  50922. image: {
  50923. source: "./media/characters/ir'istrasz/back.svg",
  50924. extra: 1024/992,
  50925. bottom: 34/1058
  50926. }
  50927. },
  50928. },
  50929. [
  50930. {
  50931. name: "Normal",
  50932. height: math.unit(6 + 4/12, "feet"),
  50933. default: true
  50934. },
  50935. ]
  50936. ))
  50937. characterMakers.push(() => makeCharacter(
  50938. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50939. {
  50940. front: {
  50941. height: math.unit(5 + 8/12, "feet"),
  50942. name: "Front",
  50943. image: {
  50944. source: "./media/characters/dee-ditto/front.svg",
  50945. extra: 1874/1785,
  50946. bottom: 68/1942
  50947. }
  50948. },
  50949. back: {
  50950. height: math.unit(5 + 8/12, "feet"),
  50951. name: "Back",
  50952. image: {
  50953. source: "./media/characters/dee-ditto/back.svg",
  50954. extra: 1870/1783,
  50955. bottom: 77/1947
  50956. }
  50957. },
  50958. },
  50959. [
  50960. {
  50961. name: "Normal",
  50962. height: math.unit(5 + 8/12, "feet"),
  50963. default: true
  50964. },
  50965. ]
  50966. ))
  50967. characterMakers.push(() => makeCharacter(
  50968. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50969. {
  50970. front: {
  50971. height: math.unit(7 + 6/12, "feet"),
  50972. name: "Front",
  50973. image: {
  50974. source: "./media/characters/fey/front.svg",
  50975. extra: 995/979,
  50976. bottom: 30/1025
  50977. }
  50978. },
  50979. back: {
  50980. height: math.unit(7 + 6/12, "feet"),
  50981. name: "Back",
  50982. image: {
  50983. source: "./media/characters/fey/back.svg",
  50984. extra: 1079/1008,
  50985. bottom: 5/1084
  50986. }
  50987. },
  50988. dressed: {
  50989. height: math.unit(7 + 6/12, "feet"),
  50990. name: "Dressed",
  50991. image: {
  50992. source: "./media/characters/fey/dressed.svg",
  50993. extra: 995/979,
  50994. bottom: 30/1025
  50995. }
  50996. },
  50997. },
  50998. [
  50999. {
  51000. name: "Normal",
  51001. height: math.unit(7 + 6/12, "feet"),
  51002. default: true
  51003. },
  51004. ]
  51005. ))
  51006. characterMakers.push(() => makeCharacter(
  51007. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51008. {
  51009. standing: {
  51010. height: math.unit(17, "feet"),
  51011. name: "Standing",
  51012. image: {
  51013. source: "./media/characters/aster/standing.svg",
  51014. extra: 1798/1598,
  51015. bottom: 117/1915
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(17, "feet"),
  51023. default: true
  51024. },
  51025. {
  51026. name: "Homewrecker",
  51027. height: math.unit(95, "feet")
  51028. },
  51029. {
  51030. name: "Planet Devourer",
  51031. height: math.unit(1008000, "miles")
  51032. },
  51033. ]
  51034. ))
  51035. characterMakers.push(() => makeCharacter(
  51036. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51037. {
  51038. front: {
  51039. height: math.unit(6 + 5/12, "feet"),
  51040. weight: math.unit(265, "lb"),
  51041. name: "Front",
  51042. image: {
  51043. source: "./media/characters/devon-childs/front.svg",
  51044. extra: 1795/1721,
  51045. bottom: 41/1836
  51046. }
  51047. },
  51048. side: {
  51049. height: math.unit(6 + 5/12, "feet"),
  51050. weight: math.unit(265, "lb"),
  51051. name: "Side",
  51052. image: {
  51053. source: "./media/characters/devon-childs/side.svg",
  51054. extra: 1812/1738,
  51055. bottom: 30/1842
  51056. }
  51057. },
  51058. back: {
  51059. height: math.unit(6 + 5/12, "feet"),
  51060. weight: math.unit(265, "lb"),
  51061. name: "Back",
  51062. image: {
  51063. source: "./media/characters/devon-childs/back.svg",
  51064. extra: 1808/1735,
  51065. bottom: 23/1831
  51066. }
  51067. },
  51068. hand: {
  51069. height: math.unit(1.464, "feet"),
  51070. name: "Hand",
  51071. image: {
  51072. source: "./media/characters/devon-childs/hand.svg"
  51073. }
  51074. },
  51075. foot: {
  51076. height: math.unit(1.6, "feet"),
  51077. name: "Foot",
  51078. image: {
  51079. source: "./media/characters/devon-childs/foot.svg"
  51080. }
  51081. },
  51082. },
  51083. [
  51084. {
  51085. name: "Micro",
  51086. height: math.unit(7, "cm")
  51087. },
  51088. {
  51089. name: "Normal",
  51090. height: math.unit(6 + 5/12, "feet"),
  51091. default: true
  51092. },
  51093. {
  51094. name: "Macro",
  51095. height: math.unit(154, "feet")
  51096. },
  51097. ]
  51098. ))
  51099. characterMakers.push(() => makeCharacter(
  51100. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51101. {
  51102. front: {
  51103. height: math.unit(6, "feet"),
  51104. weight: math.unit(180, "lb"),
  51105. name: "Front",
  51106. image: {
  51107. source: "./media/characters/lydemox-vir/front.svg",
  51108. extra: 1632/1435,
  51109. bottom: 58/1690
  51110. }
  51111. },
  51112. frontSFW: {
  51113. height: math.unit(6, "feet"),
  51114. weight: math.unit(180, "lb"),
  51115. name: "Front (SFW)",
  51116. image: {
  51117. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51118. extra: 1632/1435,
  51119. bottom: 58/1690
  51120. }
  51121. },
  51122. back: {
  51123. height: math.unit(6, "feet"),
  51124. weight: math.unit(180, "lb"),
  51125. name: "Back",
  51126. image: {
  51127. source: "./media/characters/lydemox-vir/back.svg",
  51128. extra: 1593/1408,
  51129. bottom: 31/1624
  51130. }
  51131. },
  51132. paw: {
  51133. height: math.unit(1.85, "feet"),
  51134. name: "Paw",
  51135. image: {
  51136. source: "./media/characters/lydemox-vir/paw.svg"
  51137. }
  51138. },
  51139. dick: {
  51140. height: math.unit(1.8, "feet"),
  51141. name: "Dick",
  51142. image: {
  51143. source: "./media/characters/lydemox-vir/dick.svg"
  51144. }
  51145. },
  51146. },
  51147. [
  51148. {
  51149. name: "Macro",
  51150. height: math.unit(100, "feet"),
  51151. default: true
  51152. },
  51153. {
  51154. name: "Teramacro",
  51155. height: math.unit(1, "earth")
  51156. },
  51157. {
  51158. name: "Planetary",
  51159. height: math.unit(20, "earths")
  51160. },
  51161. ]
  51162. ))
  51163. characterMakers.push(() => makeCharacter(
  51164. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51165. {
  51166. front: {
  51167. height: math.unit(15 + 8/12, "feet"),
  51168. weight: math.unit(1237, "kg"),
  51169. name: "Front",
  51170. image: {
  51171. source: "./media/characters/mia/front.svg",
  51172. extra: 1573/1446,
  51173. bottom: 58/1631
  51174. }
  51175. },
  51176. },
  51177. [
  51178. {
  51179. name: "Small",
  51180. height: math.unit(9 + 5/12, "feet")
  51181. },
  51182. {
  51183. name: "Normal",
  51184. height: math.unit(15 + 8/12, "feet"),
  51185. default: true
  51186. },
  51187. ]
  51188. ))
  51189. characterMakers.push(() => makeCharacter(
  51190. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51191. {
  51192. front: {
  51193. height: math.unit(10 + 6/12, "feet"),
  51194. weight: math.unit(1.3, "tons"),
  51195. name: "Front",
  51196. image: {
  51197. source: "./media/characters/mr-graves/front.svg",
  51198. extra: 1779/1695,
  51199. bottom: 198/1977
  51200. }
  51201. },
  51202. },
  51203. [
  51204. {
  51205. name: "Normal",
  51206. height: math.unit(10 + 6 /12, "feet"),
  51207. default: true
  51208. },
  51209. ]
  51210. ))
  51211. characterMakers.push(() => makeCharacter(
  51212. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51213. {
  51214. dressedFront: {
  51215. height: math.unit(5 + 8/12, "feet"),
  51216. weight: math.unit(125, "lb"),
  51217. name: "Dressed (Front)",
  51218. image: {
  51219. source: "./media/characters/jess/dressed-front.svg",
  51220. extra: 1176/1152,
  51221. bottom: 42/1218
  51222. }
  51223. },
  51224. dressedSide: {
  51225. height: math.unit(5 + 8/12, "feet"),
  51226. weight: math.unit(125, "lb"),
  51227. name: "Dressed (Side)",
  51228. image: {
  51229. source: "./media/characters/jess/dressed-side.svg",
  51230. extra: 1204/1190,
  51231. bottom: 6/1210
  51232. }
  51233. },
  51234. nudeFront: {
  51235. height: math.unit(5 + 8/12, "feet"),
  51236. weight: math.unit(125, "lb"),
  51237. name: "Nude (Front)",
  51238. image: {
  51239. source: "./media/characters/jess/nude-front.svg",
  51240. extra: 1176/1152,
  51241. bottom: 42/1218
  51242. }
  51243. },
  51244. nudeSide: {
  51245. height: math.unit(5 + 8/12, "feet"),
  51246. weight: math.unit(125, "lb"),
  51247. name: "Nude (Side)",
  51248. image: {
  51249. source: "./media/characters/jess/nude-side.svg",
  51250. extra: 1204/1190,
  51251. bottom: 6/1210
  51252. }
  51253. },
  51254. organsFront: {
  51255. height: math.unit(2.83799342105, "feet"),
  51256. name: "Organs (Front)",
  51257. image: {
  51258. source: "./media/characters/jess/organs-front.svg"
  51259. }
  51260. },
  51261. organsSide: {
  51262. height: math.unit(2.64225290474, "feet"),
  51263. name: "Organs (Side)",
  51264. image: {
  51265. source: "./media/characters/jess/organs-side.svg"
  51266. }
  51267. },
  51268. digestiveTractFront: {
  51269. height: math.unit(2.8106580871, "feet"),
  51270. name: "Digestive Tract (Front)",
  51271. image: {
  51272. source: "./media/characters/jess/digestive-tract-front.svg"
  51273. }
  51274. },
  51275. digestiveTractSide: {
  51276. height: math.unit(2.54365045014, "feet"),
  51277. name: "Digestive Tract (Side)",
  51278. image: {
  51279. source: "./media/characters/jess/digestive-tract-side.svg"
  51280. }
  51281. },
  51282. respiratorySystemFront: {
  51283. height: math.unit(1.11196233456, "feet"),
  51284. name: "Respiratory System (Front)",
  51285. image: {
  51286. source: "./media/characters/jess/respiratory-system-front.svg"
  51287. }
  51288. },
  51289. respiratorySystemSide: {
  51290. height: math.unit(0.89327966297, "feet"),
  51291. name: "Respiratory System (Side)",
  51292. image: {
  51293. source: "./media/characters/jess/respiratory-system-side.svg"
  51294. }
  51295. },
  51296. urinaryTractFront: {
  51297. height: math.unit(1.16126356186, "feet"),
  51298. name: "Urinary Tract (Front)",
  51299. image: {
  51300. source: "./media/characters/jess/urinary-tract-front.svg"
  51301. }
  51302. },
  51303. urinaryTractSide: {
  51304. height: math.unit(1.20910039627, "feet"),
  51305. name: "Urinary Tract (Side)",
  51306. image: {
  51307. source: "./media/characters/jess/urinary-tract-side.svg"
  51308. }
  51309. },
  51310. reproductiveOrgansFront: {
  51311. height: math.unit(0.48422591566, "feet"),
  51312. name: "Reproductive Organs (Front)",
  51313. image: {
  51314. source: "./media/characters/jess/reproductive-organs-front.svg"
  51315. }
  51316. },
  51317. reproductiveOrgansSide: {
  51318. height: math.unit(0.61553314481, "feet"),
  51319. name: "Reproductive Organs (Side)",
  51320. image: {
  51321. source: "./media/characters/jess/reproductive-organs-side.svg"
  51322. }
  51323. },
  51324. breastsFront: {
  51325. height: math.unit(0.47690395121, "feet"),
  51326. name: "Breasts (Front)",
  51327. image: {
  51328. source: "./media/characters/jess/breasts-front.svg"
  51329. }
  51330. },
  51331. breastsSide: {
  51332. height: math.unit(0.30556998307, "feet"),
  51333. name: "Breasts (Side)",
  51334. image: {
  51335. source: "./media/characters/jess/breasts-side.svg"
  51336. }
  51337. },
  51338. heartFront: {
  51339. height: math.unit(0.53011022622, "feet"),
  51340. name: "Heart (Front)",
  51341. image: {
  51342. source: "./media/characters/jess/heart-front.svg"
  51343. }
  51344. },
  51345. heartSide: {
  51346. height: math.unit(0.51790695213, "feet"),
  51347. name: "Heart (Side)",
  51348. image: {
  51349. source: "./media/characters/jess/heart-side.svg"
  51350. }
  51351. },
  51352. earsAndNoseFront: {
  51353. height: math.unit(0.29385483995, "feet"),
  51354. name: "Ears and Nose (Front)",
  51355. image: {
  51356. source: "./media/characters/jess/ears-and-nose-front.svg"
  51357. }
  51358. },
  51359. earsAndNoseSide: {
  51360. height: math.unit(0.18109658741, "feet"),
  51361. name: "Ears and Nose (Side)",
  51362. image: {
  51363. source: "./media/characters/jess/ears-and-nose-side.svg"
  51364. }
  51365. },
  51366. },
  51367. [
  51368. {
  51369. name: "Normal",
  51370. height: math.unit(5 + 8/12, "feet"),
  51371. default: true
  51372. },
  51373. ]
  51374. ))
  51375. characterMakers.push(() => makeCharacter(
  51376. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51377. {
  51378. front: {
  51379. height: math.unit(6, "feet"),
  51380. weight: math.unit(6.64467e-7, "grams"),
  51381. name: "Front",
  51382. image: {
  51383. source: "./media/characters/wimpering/front.svg",
  51384. extra: 597/587,
  51385. bottom: 34/631
  51386. }
  51387. },
  51388. },
  51389. [
  51390. {
  51391. name: "Micro",
  51392. height: math.unit(0.4, "mm"),
  51393. default: true
  51394. },
  51395. ]
  51396. ))
  51397. characterMakers.push(() => makeCharacter(
  51398. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51399. {
  51400. front: {
  51401. height: math.unit(5 + 2/12, "feet"),
  51402. weight: math.unit(110, "lb"),
  51403. name: "Front",
  51404. image: {
  51405. source: "./media/characters/keltre/front.svg",
  51406. extra: 1099/1057,
  51407. bottom: 22/1121
  51408. }
  51409. },
  51410. back: {
  51411. height: math.unit(5 + 2/12, "feet"),
  51412. weight: math.unit(110, "lb"),
  51413. name: "Back",
  51414. image: {
  51415. source: "./media/characters/keltre/back.svg",
  51416. extra: 1095/1053,
  51417. bottom: 17/1112
  51418. }
  51419. },
  51420. dressed: {
  51421. height: math.unit(5 + 2/12, "feet"),
  51422. weight: math.unit(110, "lb"),
  51423. name: "Dressed",
  51424. image: {
  51425. source: "./media/characters/keltre/dressed.svg",
  51426. extra: 1099/1057,
  51427. bottom: 22/1121
  51428. }
  51429. },
  51430. winter: {
  51431. height: math.unit(5 + 2/12, "feet"),
  51432. weight: math.unit(110, "lb"),
  51433. name: "Winter",
  51434. image: {
  51435. source: "./media/characters/keltre/winter.svg",
  51436. extra: 1099/1057,
  51437. bottom: 22/1121
  51438. }
  51439. },
  51440. head: {
  51441. height: math.unit(1.61 * 0.86, "feet"),
  51442. name: "Head",
  51443. image: {
  51444. source: "./media/characters/keltre/head.svg",
  51445. extra: 534/421,
  51446. bottom: 0/534
  51447. }
  51448. },
  51449. hand: {
  51450. height: math.unit(1.3 * 0.86, "feet"),
  51451. name: "Hand",
  51452. image: {
  51453. source: "./media/characters/keltre/hand.svg"
  51454. }
  51455. },
  51456. foot: {
  51457. height: math.unit(1.8 * 0.86, "feet"),
  51458. name: "Foot",
  51459. image: {
  51460. source: "./media/characters/keltre/foot.svg"
  51461. }
  51462. },
  51463. },
  51464. [
  51465. {
  51466. name: "Fine",
  51467. height: math.unit(1, "inch")
  51468. },
  51469. {
  51470. name: "Dimnutive",
  51471. height: math.unit(4, "inches")
  51472. },
  51473. {
  51474. name: "Tiny",
  51475. height: math.unit(1, "foot")
  51476. },
  51477. {
  51478. name: "Small",
  51479. height: math.unit(3, "feet")
  51480. },
  51481. {
  51482. name: "Normal",
  51483. height: math.unit(5 + 2/12, "feet"),
  51484. default: true
  51485. },
  51486. ]
  51487. ))
  51488. characterMakers.push(() => makeCharacter(
  51489. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51490. {
  51491. front: {
  51492. height: math.unit(6 + 2/12, "feet"),
  51493. name: "Front",
  51494. image: {
  51495. source: "./media/characters/nox/front.svg",
  51496. extra: 1917/1830,
  51497. bottom: 74/1991
  51498. }
  51499. },
  51500. back: {
  51501. height: math.unit(6 + 2/12, "feet"),
  51502. name: "Back",
  51503. image: {
  51504. source: "./media/characters/nox/back.svg",
  51505. extra: 1896/1815,
  51506. bottom: 21/1917
  51507. }
  51508. },
  51509. head: {
  51510. height: math.unit(1.1, "feet"),
  51511. name: "Head",
  51512. image: {
  51513. source: "./media/characters/nox/head.svg",
  51514. extra: 874/704,
  51515. bottom: 0/874
  51516. }
  51517. },
  51518. tattoo: {
  51519. height: math.unit(0.729, "feet"),
  51520. name: "Tattoo",
  51521. image: {
  51522. source: "./media/characters/nox/tattoo.svg"
  51523. }
  51524. },
  51525. },
  51526. [
  51527. {
  51528. name: "Normal",
  51529. height: math.unit(6 + 2/12, "feet")
  51530. },
  51531. {
  51532. name: "Gigamacro",
  51533. height: math.unit(2, "earths"),
  51534. default: true
  51535. },
  51536. {
  51537. name: "Cosmic",
  51538. height: math.unit(867, "yottameters")
  51539. },
  51540. ]
  51541. ))
  51542. characterMakers.push(() => makeCharacter(
  51543. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51544. {
  51545. front: {
  51546. height: math.unit(6, "feet"),
  51547. weight: math.unit(150, "lb"),
  51548. name: "Front",
  51549. image: {
  51550. source: "./media/characters/caspian/front.svg",
  51551. extra: 1443/1359,
  51552. bottom: 0/1443
  51553. }
  51554. },
  51555. back: {
  51556. height: math.unit(6, "feet"),
  51557. weight: math.unit(150, "lb"),
  51558. name: "Back",
  51559. image: {
  51560. source: "./media/characters/caspian/back.svg",
  51561. extra: 1379/1309,
  51562. bottom: 0/1379
  51563. }
  51564. },
  51565. head: {
  51566. height: math.unit(0.9, "feet"),
  51567. name: "Head",
  51568. image: {
  51569. source: "./media/characters/caspian/head.svg",
  51570. extra: 692/492,
  51571. bottom: 0/692
  51572. }
  51573. },
  51574. headAlt: {
  51575. height: math.unit(0.95, "feet"),
  51576. name: "Head (Alt)",
  51577. image: {
  51578. source: "./media/characters/caspian/head-alt.svg",
  51579. extra: 668/508,
  51580. bottom: 0/668
  51581. }
  51582. },
  51583. hand: {
  51584. height: math.unit(0.8, "feet"),
  51585. name: "Hand",
  51586. image: {
  51587. source: "./media/characters/caspian/hand.svg"
  51588. }
  51589. },
  51590. paw: {
  51591. height: math.unit(0.95, "feet"),
  51592. name: "Paw",
  51593. image: {
  51594. source: "./media/characters/caspian/paw.svg"
  51595. }
  51596. },
  51597. },
  51598. [
  51599. {
  51600. name: "Normal",
  51601. height: math.unit(162, "feet"),
  51602. default: true
  51603. },
  51604. ]
  51605. ))
  51606. characterMakers.push(() => makeCharacter(
  51607. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51608. {
  51609. front: {
  51610. height: math.unit(6, "feet"),
  51611. name: "Front",
  51612. image: {
  51613. source: "./media/characters/myra-aisling/front.svg",
  51614. extra: 1268/1166,
  51615. bottom: 73/1341
  51616. }
  51617. },
  51618. back: {
  51619. height: math.unit(6, "feet"),
  51620. name: "Back",
  51621. image: {
  51622. source: "./media/characters/myra-aisling/back.svg",
  51623. extra: 1249/1149,
  51624. bottom: 79/1328
  51625. }
  51626. },
  51627. dressed: {
  51628. height: math.unit(6, "feet"),
  51629. name: "Dressed",
  51630. image: {
  51631. source: "./media/characters/myra-aisling/dressed.svg",
  51632. extra: 1290/1189,
  51633. bottom: 47/1337
  51634. }
  51635. },
  51636. hand: {
  51637. height: math.unit(1.1, "feet"),
  51638. name: "Hand",
  51639. image: {
  51640. source: "./media/characters/myra-aisling/hand.svg"
  51641. }
  51642. },
  51643. paw: {
  51644. height: math.unit(1.23, "feet"),
  51645. name: "Paw",
  51646. image: {
  51647. source: "./media/characters/myra-aisling/paw.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(160, "feet"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51661. {
  51662. front: {
  51663. height: math.unit(6, "feet"),
  51664. name: "Front",
  51665. image: {
  51666. source: "./media/characters/tenley-sidero/front.svg",
  51667. extra: 1365/1276,
  51668. bottom: 47/1412
  51669. }
  51670. },
  51671. back: {
  51672. height: math.unit(6, "feet"),
  51673. name: "Back",
  51674. image: {
  51675. source: "./media/characters/tenley-sidero/back.svg",
  51676. extra: 1383/1283,
  51677. bottom: 35/1418
  51678. }
  51679. },
  51680. dressed: {
  51681. height: math.unit(6, "feet"),
  51682. name: "Dressed",
  51683. image: {
  51684. source: "./media/characters/tenley-sidero/dressed.svg",
  51685. extra: 1364/1275,
  51686. bottom: 42/1406
  51687. }
  51688. },
  51689. head: {
  51690. height: math.unit(1.47, "feet"),
  51691. name: "Head",
  51692. image: {
  51693. source: "./media/characters/tenley-sidero/head.svg",
  51694. extra: 610/490,
  51695. bottom: 0/610
  51696. }
  51697. },
  51698. },
  51699. [
  51700. {
  51701. name: "Normal",
  51702. height: math.unit(154, "feet"),
  51703. default: true
  51704. },
  51705. ]
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51709. {
  51710. front: {
  51711. height: math.unit(5, "inches"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/mallory/front.svg",
  51715. extra: 1919/1678,
  51716. bottom: 29/1948
  51717. }
  51718. },
  51719. hand: {
  51720. height: math.unit(0.73, "inches"),
  51721. name: "Hand",
  51722. image: {
  51723. source: "./media/characters/mallory/hand.svg"
  51724. }
  51725. },
  51726. paw: {
  51727. height: math.unit(0.68, "inches"),
  51728. name: "Paw",
  51729. image: {
  51730. source: "./media/characters/mallory/paw.svg"
  51731. }
  51732. },
  51733. },
  51734. [
  51735. {
  51736. name: "Small",
  51737. height: math.unit(5, "inches"),
  51738. default: true
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51744. {
  51745. naked: {
  51746. height: math.unit(6, "feet"),
  51747. name: "Naked",
  51748. image: {
  51749. source: "./media/characters/mab/naked.svg",
  51750. extra: 1855/1757,
  51751. bottom: 208/2063
  51752. }
  51753. },
  51754. outside: {
  51755. height: math.unit(6, "feet"),
  51756. name: "Outside",
  51757. image: {
  51758. source: "./media/characters/mab/outside.svg",
  51759. extra: 1855/1757,
  51760. bottom: 208/2063
  51761. }
  51762. },
  51763. party: {
  51764. height: math.unit(6, "feet"),
  51765. name: "Party",
  51766. image: {
  51767. source: "./media/characters/mab/party.svg",
  51768. extra: 1855/1757,
  51769. bottom: 208/2063
  51770. }
  51771. },
  51772. },
  51773. [
  51774. {
  51775. name: "Normal",
  51776. height: math.unit(165, "feet"),
  51777. default: true
  51778. },
  51779. ]
  51780. ))
  51781. characterMakers.push(() => makeCharacter(
  51782. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51783. {
  51784. feral: {
  51785. height: math.unit(12, "feet"),
  51786. weight: math.unit(20000, "lb"),
  51787. name: "Side",
  51788. image: {
  51789. source: "./media/characters/winter/feral.svg",
  51790. extra: 1286/943,
  51791. bottom: 112/1398
  51792. },
  51793. form: "feral",
  51794. default: true
  51795. },
  51796. feralNsfw: {
  51797. height: math.unit(12, "feet"),
  51798. weight: math.unit(20000, "lb"),
  51799. name: "Side (NSFW)",
  51800. image: {
  51801. source: "./media/characters/winter/feral-nsfw.svg",
  51802. extra: 1286/943,
  51803. bottom: 112/1398
  51804. },
  51805. form: "feral"
  51806. },
  51807. dick: {
  51808. height: math.unit(3.79, "feet"),
  51809. name: "Dick",
  51810. image: {
  51811. source: "./media/characters/winter/dick.svg"
  51812. },
  51813. form: "feral"
  51814. },
  51815. anthro: {
  51816. height: math.unit(12, "feet"),
  51817. weight: math.unit(10, "tons"),
  51818. name: "Anthro",
  51819. image: {
  51820. source: "./media/characters/winter/anthro.svg",
  51821. extra: 1701/1553,
  51822. bottom: 64/1765
  51823. },
  51824. form: "anthro",
  51825. default: true
  51826. },
  51827. },
  51828. [
  51829. {
  51830. name: "Big",
  51831. height: math.unit(12, "feet"),
  51832. default: true,
  51833. form: "feral"
  51834. },
  51835. {
  51836. name: "Big",
  51837. height: math.unit(12, "feet"),
  51838. default: true,
  51839. form: "anthro"
  51840. },
  51841. ],
  51842. {
  51843. "feral": {
  51844. name: "Feral",
  51845. default: true
  51846. },
  51847. "anthro": {
  51848. name: "Anthro"
  51849. }
  51850. }
  51851. ))
  51852. characterMakers.push(() => makeCharacter(
  51853. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51854. {
  51855. front: {
  51856. height: math.unit(4.1, "inches"),
  51857. name: "Front",
  51858. image: {
  51859. source: "./media/characters/alto/front.svg",
  51860. extra: 736/627,
  51861. bottom: 90/826
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Normal",
  51868. height: math.unit(4.1, "inches"),
  51869. default: true
  51870. },
  51871. ]
  51872. ))
  51873. characterMakers.push(() => makeCharacter(
  51874. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51875. {
  51876. sitting: {
  51877. height: math.unit(3, "feet"),
  51878. name: "Sitting",
  51879. image: {
  51880. source: "./media/characters/ratstrid-v/sitting.svg",
  51881. extra: 355/310,
  51882. bottom: 136/491
  51883. }
  51884. },
  51885. },
  51886. [
  51887. {
  51888. name: "Normal",
  51889. height: math.unit(3, "feet"),
  51890. default: true
  51891. },
  51892. ]
  51893. ))
  51894. characterMakers.push(() => makeCharacter(
  51895. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51896. {
  51897. back: {
  51898. height: math.unit(6, "feet"),
  51899. weight: math.unit(450, "lb"),
  51900. name: "Back",
  51901. image: {
  51902. source: "./media/characters/siz/back.svg",
  51903. extra: 1449/1274,
  51904. bottom: 13/1462
  51905. }
  51906. },
  51907. },
  51908. [
  51909. {
  51910. name: "Smallest",
  51911. height: math.unit(18 + 3/12, "feet")
  51912. },
  51913. {
  51914. name: "Modest",
  51915. height: math.unit(56 + 8/12, "feet"),
  51916. default: true
  51917. },
  51918. {
  51919. name: "Largest",
  51920. height: math.unit(3590, "feet")
  51921. },
  51922. ]
  51923. ))
  51924. characterMakers.push(() => makeCharacter(
  51925. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51926. {
  51927. front: {
  51928. height: math.unit(5 + 9/12, "feet"),
  51929. weight: math.unit(150, "lb"),
  51930. name: "Front",
  51931. image: {
  51932. source: "./media/characters/ven/front.svg",
  51933. extra: 1372/1320,
  51934. bottom: 73/1445
  51935. }
  51936. },
  51937. side: {
  51938. height: math.unit(5 + 9/12, "feet"),
  51939. weight: math.unit(1150, "lb"),
  51940. name: "Side",
  51941. image: {
  51942. source: "./media/characters/ven/side.svg",
  51943. extra: 1119/1070,
  51944. bottom: 42/1161
  51945. },
  51946. default: true
  51947. },
  51948. },
  51949. [
  51950. {
  51951. name: "Normal",
  51952. height: math.unit(5 + 9/12, "feet"),
  51953. default: true
  51954. },
  51955. ]
  51956. ))
  51957. characterMakers.push(() => makeCharacter(
  51958. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51959. {
  51960. front: {
  51961. height: math.unit(12, "feet"),
  51962. weight: math.unit(1000, "kg"),
  51963. name: "Front",
  51964. image: {
  51965. source: "./media/characters/maple/front.svg",
  51966. extra: 1193/1081,
  51967. bottom: 22/1215
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Compressed",
  51974. height: math.unit(7, "feet")
  51975. },
  51976. {
  51977. name: "Normal",
  51978. height: math.unit(12, "feet"),
  51979. default: true
  51980. },
  51981. ]
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51985. {
  51986. front: {
  51987. height: math.unit(9, "feet"),
  51988. weight: math.unit(1500, "lb"),
  51989. name: "Front",
  51990. image: {
  51991. source: "./media/characters/nora/front.svg",
  51992. extra: 1348/1286,
  51993. bottom: 218/1566
  51994. }
  51995. },
  51996. erect: {
  51997. height: math.unit(9, "feet"),
  51998. weight: math.unit(11500, "lb"),
  51999. name: "Erect",
  52000. image: {
  52001. source: "./media/characters/nora/erect.svg",
  52002. extra: 1488/1433,
  52003. bottom: 133/1621
  52004. }
  52005. },
  52006. },
  52007. [
  52008. {
  52009. name: "Normal",
  52010. height: math.unit(9, "feet"),
  52011. default: true
  52012. },
  52013. ]
  52014. ))
  52015. characterMakers.push(() => makeCharacter(
  52016. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52017. {
  52018. front: {
  52019. height: math.unit(25, "feet"),
  52020. weight: math.unit(27500, "lb"),
  52021. name: "Front",
  52022. image: {
  52023. source: "./media/characters/north-caudin/front.svg",
  52024. extra: 1184/1082,
  52025. bottom: 23/1207
  52026. }
  52027. },
  52028. },
  52029. [
  52030. {
  52031. name: "Compressed",
  52032. height: math.unit(10, "feet")
  52033. },
  52034. {
  52035. name: "Normal",
  52036. height: math.unit(25, "feet"),
  52037. default: true
  52038. },
  52039. ]
  52040. ))
  52041. characterMakers.push(() => makeCharacter(
  52042. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52043. {
  52044. front: {
  52045. height: math.unit(9, "feet"),
  52046. weight: math.unit(1250, "lb"),
  52047. name: "Front",
  52048. image: {
  52049. source: "./media/characters/merrian/front.svg",
  52050. extra: 2393/2304,
  52051. bottom: 40/2433
  52052. }
  52053. },
  52054. },
  52055. [
  52056. {
  52057. name: "Normal",
  52058. height: math.unit(9, "feet"),
  52059. default: true
  52060. },
  52061. ]
  52062. ))
  52063. characterMakers.push(() => makeCharacter(
  52064. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52065. {
  52066. front: {
  52067. height: math.unit(9, "feet"),
  52068. weight: math.unit(1000, "lb"),
  52069. name: "Front",
  52070. image: {
  52071. source: "./media/characters/hazel/front.svg",
  52072. extra: 2351/2298,
  52073. bottom: 38/2389
  52074. }
  52075. },
  52076. },
  52077. [
  52078. {
  52079. name: "Normal",
  52080. height: math.unit(9, "feet"),
  52081. default: true
  52082. },
  52083. ]
  52084. ))
  52085. characterMakers.push(() => makeCharacter(
  52086. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52087. {
  52088. front: {
  52089. height: math.unit(13, "feet"),
  52090. weight: math.unit(3200, "lb"),
  52091. name: "Front",
  52092. image: {
  52093. source: "./media/characters/emma/front.svg",
  52094. extra: 2263/2029,
  52095. bottom: 68/2331
  52096. }
  52097. },
  52098. },
  52099. [
  52100. {
  52101. name: "Normal",
  52102. height: math.unit(13, "feet"),
  52103. default: true
  52104. },
  52105. ]
  52106. ))
  52107. characterMakers.push(() => makeCharacter(
  52108. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52109. {
  52110. front: {
  52111. height: math.unit(11 + 9/12, "feet"),
  52112. weight: math.unit(2500, "lb"),
  52113. name: "Front",
  52114. image: {
  52115. source: "./media/characters/ilumina/front.svg",
  52116. extra: 2248/2209,
  52117. bottom: 164/2412
  52118. }
  52119. },
  52120. },
  52121. [
  52122. {
  52123. name: "Normal",
  52124. height: math.unit(11 + 9/12, "feet"),
  52125. default: true
  52126. },
  52127. ]
  52128. ))
  52129. characterMakers.push(() => makeCharacter(
  52130. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52131. {
  52132. front: {
  52133. height: math.unit(8 + 10/12, "feet"),
  52134. weight: math.unit(1350, "lb"),
  52135. name: "Front",
  52136. image: {
  52137. source: "./media/characters/moonshine/front.svg",
  52138. extra: 2395/2288,
  52139. bottom: 40/2435
  52140. }
  52141. },
  52142. },
  52143. [
  52144. {
  52145. name: "Normal",
  52146. height: math.unit(8 + 10/12, "feet"),
  52147. default: true
  52148. },
  52149. ]
  52150. ))
  52151. characterMakers.push(() => makeCharacter(
  52152. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52153. {
  52154. front: {
  52155. height: math.unit(14, "feet"),
  52156. weight: math.unit(3400, "lb"),
  52157. name: "Front",
  52158. image: {
  52159. source: "./media/characters/aletia/front.svg",
  52160. extra: 1185/1052,
  52161. bottom: 21/1206
  52162. }
  52163. },
  52164. },
  52165. [
  52166. {
  52167. name: "Compressed",
  52168. height: math.unit(8, "feet")
  52169. },
  52170. {
  52171. name: "Normal",
  52172. height: math.unit(14, "feet"),
  52173. default: true
  52174. },
  52175. ]
  52176. ))
  52177. characterMakers.push(() => makeCharacter(
  52178. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52179. {
  52180. front: {
  52181. height: math.unit(17, "feet"),
  52182. weight: math.unit(6500, "lb"),
  52183. name: "Front",
  52184. image: {
  52185. source: "./media/characters/deidra/front.svg",
  52186. extra: 1201/1081,
  52187. bottom: 16/1217
  52188. }
  52189. },
  52190. },
  52191. [
  52192. {
  52193. name: "Compressed",
  52194. height: math.unit(9 + 6/12, "feet")
  52195. },
  52196. {
  52197. name: "Normal",
  52198. height: math.unit(17, "feet"),
  52199. default: true
  52200. },
  52201. ]
  52202. ))
  52203. characterMakers.push(() => makeCharacter(
  52204. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52205. {
  52206. front: {
  52207. height: math.unit(7 + 4/12, "feet"),
  52208. weight: math.unit(280, "lb"),
  52209. name: "Front",
  52210. image: {
  52211. source: "./media/characters/freki-yrmori/front.svg",
  52212. extra: 1286/1182,
  52213. bottom: 29/1315
  52214. }
  52215. },
  52216. maw: {
  52217. height: math.unit(0.9, "feet"),
  52218. name: "Maw",
  52219. image: {
  52220. source: "./media/characters/freki-yrmori/maw.svg"
  52221. }
  52222. },
  52223. },
  52224. [
  52225. {
  52226. name: "Normal",
  52227. height: math.unit(7 + 4/12, "feet"),
  52228. default: true
  52229. },
  52230. {
  52231. name: "Macro",
  52232. height: math.unit(38.5, "meters")
  52233. },
  52234. ]
  52235. ))
  52236. characterMakers.push(() => makeCharacter(
  52237. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52238. {
  52239. side: {
  52240. height: math.unit(47.2, "meters"),
  52241. weight: math.unit(10000, "tons"),
  52242. name: "Side",
  52243. image: {
  52244. source: "./media/characters/aetherios/side.svg",
  52245. extra: 2363/642,
  52246. bottom: 221/2584
  52247. }
  52248. },
  52249. top: {
  52250. height: math.unit(240, "meters"),
  52251. weight: math.unit(10000, "tons"),
  52252. name: "Top",
  52253. image: {
  52254. source: "./media/characters/aetherios/top.svg"
  52255. }
  52256. },
  52257. bottom: {
  52258. height: math.unit(240, "meters"),
  52259. weight: math.unit(10000, "tons"),
  52260. name: "Bottom",
  52261. image: {
  52262. source: "./media/characters/aetherios/bottom.svg"
  52263. }
  52264. },
  52265. head: {
  52266. height: math.unit(38.6, "meters"),
  52267. name: "Head",
  52268. image: {
  52269. source: "./media/characters/aetherios/head.svg",
  52270. extra: 1335/1112,
  52271. bottom: 0/1335
  52272. }
  52273. },
  52274. front: {
  52275. height: math.unit(29, "meters"),
  52276. name: "Front",
  52277. image: {
  52278. source: "./media/characters/aetherios/front.svg",
  52279. extra: 1266/953,
  52280. bottom: 158/1424
  52281. }
  52282. },
  52283. maw: {
  52284. height: math.unit(16.37, "meters"),
  52285. name: "Maw",
  52286. image: {
  52287. source: "./media/characters/aetherios/maw.svg",
  52288. extra: 748/637,
  52289. bottom: 0/748
  52290. },
  52291. extraAttributes: {
  52292. preyCapacity: {
  52293. name: "Capacity",
  52294. power: 3,
  52295. type: "volume",
  52296. base: math.unit(1000, "people")
  52297. },
  52298. tongueSize: {
  52299. name: "Tongue Size",
  52300. power: 2,
  52301. type: "area",
  52302. base: math.unit(21, "m^2")
  52303. }
  52304. }
  52305. },
  52306. forepaw: {
  52307. height: math.unit(18, "meters"),
  52308. name: "Forepaw",
  52309. image: {
  52310. source: "./media/characters/aetherios/forepaw.svg"
  52311. }
  52312. },
  52313. hindpaw: {
  52314. height: math.unit(23, "meters"),
  52315. name: "Hindpaw",
  52316. image: {
  52317. source: "./media/characters/aetherios/hindpaw.svg"
  52318. }
  52319. },
  52320. genitals: {
  52321. height: math.unit(42, "meters"),
  52322. name: "Genitals",
  52323. image: {
  52324. source: "./media/characters/aetherios/genitals.svg"
  52325. }
  52326. },
  52327. },
  52328. [
  52329. {
  52330. name: "Normal",
  52331. height: math.unit(47.2, "meters"),
  52332. default: true
  52333. },
  52334. {
  52335. name: "Macro",
  52336. height: math.unit(160, "meters")
  52337. },
  52338. {
  52339. name: "Mega",
  52340. height: math.unit(1.87, "km")
  52341. },
  52342. {
  52343. name: "Giga",
  52344. height: math.unit(40000, "km")
  52345. },
  52346. {
  52347. name: "Stellar",
  52348. height: math.unit(158000000, "km")
  52349. },
  52350. {
  52351. name: "Cosmic",
  52352. height: math.unit(9.46e12, "km")
  52353. },
  52354. ]
  52355. ))
  52356. characterMakers.push(() => makeCharacter(
  52357. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52358. {
  52359. front: {
  52360. height: math.unit(5 + 4/12, "feet"),
  52361. weight: math.unit(80, "lb"),
  52362. name: "Front",
  52363. image: {
  52364. source: "./media/characters/mizu-gieeg/front.svg",
  52365. extra: 850/709,
  52366. bottom: 52/902
  52367. }
  52368. },
  52369. back: {
  52370. height: math.unit(5 + 4/12, "feet"),
  52371. weight: math.unit(80, "lb"),
  52372. name: "Back",
  52373. image: {
  52374. source: "./media/characters/mizu-gieeg/back.svg",
  52375. extra: 882/745,
  52376. bottom: 25/907
  52377. }
  52378. },
  52379. },
  52380. [
  52381. {
  52382. name: "Normal",
  52383. height: math.unit(5 + 4/12, "feet"),
  52384. default: true
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(6, "feet"),
  52393. name: "Front",
  52394. image: {
  52395. source: "./media/characters/roselle-st-papier/front.svg",
  52396. extra: 1430/1280,
  52397. bottom: 37/1467
  52398. }
  52399. },
  52400. back: {
  52401. height: math.unit(6, "feet"),
  52402. name: "Back",
  52403. image: {
  52404. source: "./media/characters/roselle-st-papier/back.svg",
  52405. extra: 1491/1296,
  52406. bottom: 23/1514
  52407. }
  52408. },
  52409. ear: {
  52410. height: math.unit(1.26, "feet"),
  52411. name: "Ear",
  52412. image: {
  52413. source: "./media/characters/roselle-st-papier/ear.svg"
  52414. }
  52415. },
  52416. },
  52417. [
  52418. {
  52419. name: "Normal",
  52420. height: math.unit(150, "feet"),
  52421. default: true
  52422. },
  52423. ]
  52424. ))
  52425. characterMakers.push(() => makeCharacter(
  52426. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52427. {
  52428. front: {
  52429. height: math.unit(1, "inches"),
  52430. name: "Front",
  52431. image: {
  52432. source: "./media/characters/valargent/front.svg",
  52433. extra: 1825/1694,
  52434. bottom: 62/1887
  52435. }
  52436. },
  52437. back: {
  52438. height: math.unit(1, "inches"),
  52439. name: "Back",
  52440. image: {
  52441. source: "./media/characters/valargent/back.svg",
  52442. extra: 1775/1682,
  52443. bottom: 88/1863
  52444. }
  52445. },
  52446. },
  52447. [
  52448. {
  52449. name: "Micro",
  52450. height: math.unit(1, "inch"),
  52451. default: true
  52452. },
  52453. ]
  52454. ))
  52455. characterMakers.push(() => makeCharacter(
  52456. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52457. {
  52458. front: {
  52459. height: math.unit(3.4, "meters"),
  52460. name: "Front",
  52461. image: {
  52462. source: "./media/characters/zarina/front.svg",
  52463. extra: 1733/1425,
  52464. bottom: 93/1826
  52465. }
  52466. },
  52467. squatting: {
  52468. height: math.unit(2.14, "meters"),
  52469. name: "Squatting",
  52470. image: {
  52471. source: "./media/characters/zarina/squatting.svg",
  52472. extra: 1073/788,
  52473. bottom: 63/1136
  52474. }
  52475. },
  52476. back: {
  52477. height: math.unit(2.14, "meters"),
  52478. name: "Back",
  52479. image: {
  52480. source: "./media/characters/zarina/back.svg",
  52481. extra: 1128/885,
  52482. bottom: 0/1128
  52483. }
  52484. },
  52485. },
  52486. [
  52487. {
  52488. name: "Normal",
  52489. height: math.unit(3.4, "meters"),
  52490. default: true
  52491. },
  52492. {
  52493. name: "Big",
  52494. height: math.unit(5, "meters")
  52495. },
  52496. {
  52497. name: "Macro",
  52498. height: math.unit(110, "meters")
  52499. },
  52500. ]
  52501. ))
  52502. characterMakers.push(() => makeCharacter(
  52503. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52504. {
  52505. front: {
  52506. height: math.unit(7, "feet"),
  52507. name: "Front",
  52508. image: {
  52509. source: "./media/characters/ventus-astro-fox/front.svg",
  52510. extra: 1792/1623,
  52511. bottom: 28/1820
  52512. }
  52513. },
  52514. back: {
  52515. height: math.unit(7, "feet"),
  52516. name: "Back",
  52517. image: {
  52518. source: "./media/characters/ventus-astro-fox/back.svg",
  52519. extra: 1789/1620,
  52520. bottom: 31/1820
  52521. }
  52522. },
  52523. outfit: {
  52524. height: math.unit(7, "feet"),
  52525. name: "Outfit",
  52526. image: {
  52527. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52528. extra: 1054/925,
  52529. bottom: 15/1069
  52530. }
  52531. },
  52532. head: {
  52533. height: math.unit(1.12, "feet"),
  52534. name: "Head",
  52535. image: {
  52536. source: "./media/characters/ventus-astro-fox/head.svg",
  52537. extra: 866/504,
  52538. bottom: 0/866
  52539. }
  52540. },
  52541. hand: {
  52542. height: math.unit(1, "feet"),
  52543. name: "Hand",
  52544. image: {
  52545. source: "./media/characters/ventus-astro-fox/hand.svg"
  52546. }
  52547. },
  52548. paw: {
  52549. height: math.unit(1.5, "feet"),
  52550. name: "Paw",
  52551. image: {
  52552. source: "./media/characters/ventus-astro-fox/paw.svg"
  52553. }
  52554. },
  52555. },
  52556. [
  52557. {
  52558. name: "Normal",
  52559. height: math.unit(7, "feet"),
  52560. default: true
  52561. },
  52562. {
  52563. name: "Macro",
  52564. height: math.unit(200, "feet")
  52565. },
  52566. {
  52567. name: "Cosmic",
  52568. height: math.unit(3, "universes")
  52569. },
  52570. ]
  52571. ))
  52572. characterMakers.push(() => makeCharacter(
  52573. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52574. {
  52575. front: {
  52576. height: math.unit(3, "meters"),
  52577. weight: math.unit(7000, "lb"),
  52578. name: "Front",
  52579. image: {
  52580. source: "./media/characters/core-t/front.svg",
  52581. extra: 5729/4941,
  52582. bottom: 1129/6858
  52583. }
  52584. },
  52585. },
  52586. [
  52587. {
  52588. name: "Big",
  52589. height: math.unit(3, "meters"),
  52590. default: true
  52591. },
  52592. ]
  52593. ))
  52594. characterMakers.push(() => makeCharacter(
  52595. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52596. {
  52597. normal: {
  52598. height: math.unit(6 + 6/12, "feet"),
  52599. weight: math.unit(275, "lb"),
  52600. name: "Front",
  52601. image: {
  52602. source: "./media/characters/cadbunny/normal.svg",
  52603. extra: 1129/947,
  52604. bottom: 93/1222
  52605. },
  52606. default: true,
  52607. form: "normal"
  52608. },
  52609. gigantamax: {
  52610. height: math.unit(26, "feet"),
  52611. weight: math.unit(16000, "lb"),
  52612. name: "Front",
  52613. image: {
  52614. source: "./media/characters/cadbunny/gigantamax.svg",
  52615. extra: 1133/944,
  52616. bottom: 90/1223
  52617. },
  52618. default: true,
  52619. form: "gigantamax"
  52620. },
  52621. },
  52622. [
  52623. {
  52624. name: "Normal",
  52625. height: math.unit(6 + 6/12, "feet"),
  52626. default: true,
  52627. form: "normal"
  52628. },
  52629. {
  52630. name: "Small",
  52631. height: math.unit(26, "feet"),
  52632. default: true,
  52633. form: "gigantamax"
  52634. },
  52635. {
  52636. name: "Large",
  52637. height: math.unit(78, "feet"),
  52638. form: "gigantamax"
  52639. },
  52640. ],
  52641. {
  52642. "normal": {
  52643. name: "Normal",
  52644. default: true
  52645. },
  52646. "gigantamax": {
  52647. name: "Gigantamax"
  52648. }
  52649. }
  52650. ))
  52651. characterMakers.push(() => makeCharacter(
  52652. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52653. {
  52654. anthroFront: {
  52655. height: math.unit(8, "feet"),
  52656. weight: math.unit(300, "lb"),
  52657. name: "Front",
  52658. image: {
  52659. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52660. extra: 1272/1176,
  52661. bottom: 53/1325
  52662. },
  52663. form: "anthro",
  52664. default: true
  52665. },
  52666. feralSide: {
  52667. height: math.unit(4, "feet"),
  52668. weight: math.unit(250, "lb"),
  52669. name: "Side",
  52670. image: {
  52671. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52672. extra: 731/621,
  52673. bottom: 0/731
  52674. },
  52675. form: "feral",
  52676. default: true
  52677. },
  52678. },
  52679. [
  52680. {
  52681. name: "Regular",
  52682. height: math.unit(8, "feet"),
  52683. form: "anthro"
  52684. },
  52685. {
  52686. name: "Macro",
  52687. height: math.unit(250, "feet"),
  52688. form: "anthro",
  52689. default: true
  52690. },
  52691. {
  52692. name: "Regular",
  52693. height: math.unit(4, "feet"),
  52694. form: "feral"
  52695. },
  52696. {
  52697. name: "Macro",
  52698. height: math.unit(125, "feet"),
  52699. form: "feral",
  52700. default: true
  52701. },
  52702. ],
  52703. {
  52704. "anthro": {
  52705. name: "Anthro",
  52706. default: true
  52707. },
  52708. "feral": {
  52709. name: "Feral",
  52710. },
  52711. }
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52715. {
  52716. front: {
  52717. height: math.unit(11 + 10/12, "feet"),
  52718. weight: math.unit(1587, "kg"),
  52719. name: "Front",
  52720. image: {
  52721. source: "./media/characters/maple-javira-dragon/front.svg",
  52722. extra: 1136/744,
  52723. bottom: 73/1209
  52724. }
  52725. },
  52726. side: {
  52727. height: math.unit(11 + 10/12, "feet"),
  52728. weight: math.unit(1587, "kg"),
  52729. name: "Side",
  52730. image: {
  52731. source: "./media/characters/maple-javira-dragon/side.svg",
  52732. extra: 712/505,
  52733. bottom: 17/729
  52734. }
  52735. },
  52736. head: {
  52737. height: math.unit(8.05, "feet"),
  52738. name: "Head",
  52739. image: {
  52740. source: "./media/characters/maple-javira-dragon/head.svg",
  52741. extra: 1420/1344,
  52742. bottom: 0/1420
  52743. }
  52744. },
  52745. },
  52746. [
  52747. {
  52748. name: "Normal",
  52749. height: math.unit(11 + 10/12, "feet"),
  52750. default: true
  52751. },
  52752. ]
  52753. ))
  52754. characterMakers.push(() => makeCharacter(
  52755. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52756. {
  52757. front: {
  52758. height: math.unit(117, "cm"),
  52759. weight: math.unit(50, "kg"),
  52760. name: "Front",
  52761. image: {
  52762. source: "./media/characters/sonia-wyverntail/front.svg",
  52763. extra: 708/592,
  52764. bottom: 25/733
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Normal",
  52771. height: math.unit(117, "cm"),
  52772. default: true
  52773. },
  52774. ]
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(6 + 5/12, "feet"),
  52781. name: "Front",
  52782. image: {
  52783. source: "./media/characters/micah/front.svg",
  52784. extra: 1758/1546,
  52785. bottom: 214/1972
  52786. }
  52787. },
  52788. },
  52789. [
  52790. {
  52791. name: "Normal",
  52792. height: math.unit(6 + 5/12, "feet"),
  52793. default: true
  52794. },
  52795. ]
  52796. ))
  52797. characterMakers.push(() => makeCharacter(
  52798. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52799. {
  52800. front: {
  52801. height: math.unit(1.75, "meters"),
  52802. weight: math.unit(100, "kg"),
  52803. name: "Front",
  52804. image: {
  52805. source: "./media/characters/zarya/front.svg",
  52806. extra: 741/735,
  52807. bottom: 44/785
  52808. },
  52809. extraAttributes: {
  52810. "tailLength": {
  52811. name: "Tail Length",
  52812. power: 1,
  52813. type: "length",
  52814. base: math.unit(180, "cm")
  52815. },
  52816. "pawLength": {
  52817. name: "Paw Length",
  52818. power: 1,
  52819. type: "length",
  52820. base: math.unit(31, "cm")
  52821. },
  52822. }
  52823. },
  52824. side: {
  52825. height: math.unit(1.75, "meters"),
  52826. weight: math.unit(100, "kg"),
  52827. name: "Side",
  52828. image: {
  52829. source: "./media/characters/zarya/side.svg",
  52830. extra: 776/770,
  52831. bottom: 17/793
  52832. },
  52833. extraAttributes: {
  52834. "tailLength": {
  52835. name: "Tail Length",
  52836. power: 1,
  52837. type: "length",
  52838. base: math.unit(180, "cm")
  52839. },
  52840. "pawLength": {
  52841. name: "Paw Length",
  52842. power: 1,
  52843. type: "length",
  52844. base: math.unit(31, "cm")
  52845. },
  52846. }
  52847. },
  52848. back: {
  52849. height: math.unit(1.75, "meters"),
  52850. weight: math.unit(100, "kg"),
  52851. name: "Back",
  52852. image: {
  52853. source: "./media/characters/zarya/back.svg",
  52854. extra: 741/735,
  52855. bottom: 44/785
  52856. },
  52857. extraAttributes: {
  52858. "tailLength": {
  52859. name: "Tail Length",
  52860. power: 1,
  52861. type: "length",
  52862. base: math.unit(180, "cm")
  52863. },
  52864. "pawLength": {
  52865. name: "Paw Length",
  52866. power: 1,
  52867. type: "length",
  52868. base: math.unit(31, "cm")
  52869. },
  52870. }
  52871. },
  52872. frontNoTail: {
  52873. height: math.unit(1.75, "meters"),
  52874. weight: math.unit(100, "kg"),
  52875. name: "Front (No Tail)",
  52876. image: {
  52877. source: "./media/characters/zarya/front-no-tail.svg",
  52878. extra: 741/735,
  52879. bottom: 44/785
  52880. },
  52881. extraAttributes: {
  52882. "tailLength": {
  52883. name: "Tail Length",
  52884. power: 1,
  52885. type: "length",
  52886. base: math.unit(180, "cm")
  52887. },
  52888. "pawLength": {
  52889. name: "Paw Length",
  52890. power: 1,
  52891. type: "length",
  52892. base: math.unit(31, "cm")
  52893. },
  52894. }
  52895. },
  52896. dressed: {
  52897. height: math.unit(1.75, "meters"),
  52898. weight: math.unit(100, "kg"),
  52899. name: "Dressed",
  52900. image: {
  52901. source: "./media/characters/zarya/dressed.svg",
  52902. extra: 683/672,
  52903. bottom: 79/762
  52904. },
  52905. extraAttributes: {
  52906. "tailLength": {
  52907. name: "Tail Length",
  52908. power: 1,
  52909. type: "length",
  52910. base: math.unit(180, "cm")
  52911. },
  52912. "pawLength": {
  52913. name: "Paw Length",
  52914. power: 1,
  52915. type: "length",
  52916. base: math.unit(31, "cm")
  52917. },
  52918. }
  52919. },
  52920. },
  52921. [
  52922. {
  52923. name: "Micro",
  52924. height: math.unit(5, "cm")
  52925. },
  52926. {
  52927. name: "Normal",
  52928. height: math.unit(1.75, "meters"),
  52929. default: true
  52930. },
  52931. {
  52932. name: "Macro",
  52933. height: math.unit(122, "meters")
  52934. },
  52935. ]
  52936. ))
  52937. characterMakers.push(() => makeCharacter(
  52938. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52939. {
  52940. front: {
  52941. height: math.unit(7.5, "feet"),
  52942. name: "Front",
  52943. image: {
  52944. source: "./media/characters/sven-hatisson/front.svg",
  52945. extra: 917/857,
  52946. bottom: 42/959
  52947. }
  52948. },
  52949. back: {
  52950. height: math.unit(7.5, "feet"),
  52951. name: "Back",
  52952. image: {
  52953. source: "./media/characters/sven-hatisson/back.svg",
  52954. extra: 903/856,
  52955. bottom: 15/918
  52956. }
  52957. },
  52958. },
  52959. [
  52960. {
  52961. name: "Base Height",
  52962. height: math.unit(7.5, "feet")
  52963. },
  52964. {
  52965. name: "Usual Height",
  52966. height: math.unit(13.5, "feet"),
  52967. default: true
  52968. },
  52969. {
  52970. name: "Smaller Macro",
  52971. height: math.unit(85, "feet")
  52972. },
  52973. {
  52974. name: "Moderate Macro",
  52975. height: math.unit(320, "feet")
  52976. },
  52977. {
  52978. name: "Large Macro",
  52979. height: math.unit(1000, "feet")
  52980. },
  52981. {
  52982. name: "Largest Size",
  52983. height: math.unit(2, "miles")
  52984. },
  52985. ]
  52986. ))
  52987. characterMakers.push(() => makeCharacter(
  52988. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52989. {
  52990. side: {
  52991. height: math.unit(1.8, "meters"),
  52992. weight: math.unit(275, "kg"),
  52993. name: "Side",
  52994. image: {
  52995. source: "./media/characters/terra/side.svg",
  52996. extra: 1273/1147,
  52997. bottom: 0/1273
  52998. }
  52999. },
  53000. },
  53001. [
  53002. {
  53003. name: "Normal",
  53004. height: math.unit(16.2, "meters"),
  53005. default: true
  53006. },
  53007. ]
  53008. ))
  53009. characterMakers.push(() => makeCharacter(
  53010. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53011. {
  53012. borzoiFront: {
  53013. height: math.unit(6 + 9/12, "feet"),
  53014. name: "Front",
  53015. image: {
  53016. source: "./media/characters/rae/borzoi-front.svg",
  53017. extra: 1161/1098,
  53018. bottom: 31/1192
  53019. },
  53020. form: "borzoi",
  53021. default: true
  53022. },
  53023. werewolfFront: {
  53024. height: math.unit(8 + 7/12, "feet"),
  53025. name: "Front",
  53026. image: {
  53027. source: "./media/characters/rae/werewolf-front.svg",
  53028. extra: 1411/1334,
  53029. bottom: 127/1538
  53030. },
  53031. form: "werewolf",
  53032. default: true
  53033. },
  53034. },
  53035. [
  53036. {
  53037. name: "Normal",
  53038. height: math.unit(6 + 9/12, "feet"),
  53039. default: true,
  53040. form: "borzoi"
  53041. },
  53042. {
  53043. name: "Normal",
  53044. height: math.unit(8 + 7/12, "feet"),
  53045. default: true,
  53046. form: "werewolf"
  53047. },
  53048. ],
  53049. {
  53050. "borzoi": {
  53051. name: "Borzoi",
  53052. default: true
  53053. },
  53054. "werewolf": {
  53055. name: "Werewolf",
  53056. },
  53057. }
  53058. ))
  53059. characterMakers.push(() => makeCharacter(
  53060. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53061. {
  53062. front: {
  53063. height: math.unit(8 + 7/12, "feet"),
  53064. weight: math.unit(482, "lb"),
  53065. name: "Front",
  53066. image: {
  53067. source: "./media/characters/kit/front.svg",
  53068. extra: 1247/1103,
  53069. bottom: 41/1288
  53070. }
  53071. },
  53072. back: {
  53073. height: math.unit(8 + 7/12, "feet"),
  53074. weight: math.unit(482, "lb"),
  53075. name: "Back",
  53076. image: {
  53077. source: "./media/characters/kit/back.svg",
  53078. extra: 1252/1123,
  53079. bottom: 21/1273
  53080. }
  53081. },
  53082. paw: {
  53083. height: math.unit(1.46, "feet"),
  53084. name: "Paw",
  53085. image: {
  53086. source: "./media/characters/kit/paw.svg"
  53087. }
  53088. },
  53089. },
  53090. [
  53091. {
  53092. name: "Normal",
  53093. height: math.unit(2.61, "meters"),
  53094. default: true
  53095. },
  53096. {
  53097. name: "\"Tall\"",
  53098. height: math.unit(8.21, "meters")
  53099. },
  53100. {
  53101. name: "Tall",
  53102. height: math.unit(19.6, "meters")
  53103. },
  53104. {
  53105. name: "Very Tall",
  53106. height: math.unit(57.91, "meters")
  53107. },
  53108. {
  53109. name: "Semi-Macro",
  53110. height: math.unit(138.64, "meters")
  53111. },
  53112. {
  53113. name: "Macro",
  53114. height: math.unit(831.99, "meters")
  53115. },
  53116. {
  53117. name: "EX-Macro",
  53118. height: math.unit(96451121, "meters")
  53119. },
  53120. {
  53121. name: "S1-Omnipotent",
  53122. height: math.unit(4.42074e+9, "meters")
  53123. },
  53124. {
  53125. name: "S2-Omnipotent",
  53126. height: math.unit(9.42074e+17, "meters")
  53127. },
  53128. {
  53129. name: "Omnipotent",
  53130. height: math.unit(4.23112e+24, "meters")
  53131. },
  53132. {
  53133. name: "Hypergod",
  53134. height: math.unit(5.05176e+27, "meters")
  53135. },
  53136. {
  53137. name: "Hypergod-EX",
  53138. height: math.unit(9.45532e+49, "meters")
  53139. },
  53140. {
  53141. name: "Hypergod-SP",
  53142. height: math.unit(9.45532e+195, "meters")
  53143. },
  53144. ]
  53145. ))
  53146. characterMakers.push(() => makeCharacter(
  53147. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53148. {
  53149. side: {
  53150. height: math.unit(0.6, "meters"),
  53151. weight: math.unit(24, "kg"),
  53152. name: "Side",
  53153. image: {
  53154. source: "./media/characters/celeste/side.svg",
  53155. extra: 810/517,
  53156. bottom: 53/863
  53157. }
  53158. },
  53159. },
  53160. [
  53161. {
  53162. name: "Velociraptor",
  53163. height: math.unit(0.6, "meters"),
  53164. default: true
  53165. },
  53166. {
  53167. name: "Utahraptor",
  53168. height: math.unit(1.8, "meters")
  53169. },
  53170. {
  53171. name: "Gallimimus",
  53172. height: math.unit(4.0, "meters")
  53173. },
  53174. {
  53175. name: "Large",
  53176. height: math.unit(20, "meters")
  53177. },
  53178. {
  53179. name: "Planetary",
  53180. height: math.unit(50, "megameters")
  53181. },
  53182. {
  53183. name: "Stellar",
  53184. height: math.unit(1.5, "gigameters")
  53185. },
  53186. {
  53187. name: "Galactic",
  53188. height: math.unit(100, "exameters")
  53189. },
  53190. ]
  53191. ))
  53192. characterMakers.push(() => makeCharacter(
  53193. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53194. {
  53195. front: {
  53196. height: math.unit(6, "feet"),
  53197. weight: math.unit(210, "lb"),
  53198. name: "Front",
  53199. image: {
  53200. source: "./media/characters/glacia/front.svg",
  53201. extra: 958/901,
  53202. bottom: 45/1003
  53203. }
  53204. },
  53205. },
  53206. [
  53207. {
  53208. name: "Macro",
  53209. height: math.unit(1000, "meters"),
  53210. default: true
  53211. },
  53212. ]
  53213. ))
  53214. characterMakers.push(() => makeCharacter(
  53215. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53216. {
  53217. front: {
  53218. height: math.unit(4, "meters"),
  53219. name: "Front",
  53220. image: {
  53221. source: "./media/characters/giri/front.svg",
  53222. extra: 966/894,
  53223. bottom: 21/987
  53224. }
  53225. },
  53226. },
  53227. [
  53228. {
  53229. name: "Normal",
  53230. height: math.unit(4, "meters"),
  53231. default: true
  53232. },
  53233. ]
  53234. ))
  53235. characterMakers.push(() => makeCharacter(
  53236. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53237. {
  53238. back: {
  53239. height: math.unit(4, "feet"),
  53240. weight: math.unit(37, "lb"),
  53241. name: "Back",
  53242. image: {
  53243. source: "./media/characters/tin/back.svg",
  53244. extra: 845/780,
  53245. bottom: 28/873
  53246. }
  53247. },
  53248. },
  53249. [
  53250. {
  53251. name: "Normal",
  53252. height: math.unit(4, "feet"),
  53253. default: true
  53254. },
  53255. ]
  53256. ))
  53257. characterMakers.push(() => makeCharacter(
  53258. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53259. {
  53260. front: {
  53261. height: math.unit(25, "feet"),
  53262. name: "Front",
  53263. image: {
  53264. source: "./media/characters/cadenza-vivace/front.svg",
  53265. extra: 1842/1578,
  53266. bottom: 30/1872
  53267. }
  53268. },
  53269. },
  53270. [
  53271. {
  53272. name: "Macro",
  53273. height: math.unit(25, "feet"),
  53274. default: true
  53275. },
  53276. ]
  53277. ))
  53278. characterMakers.push(() => makeCharacter(
  53279. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53280. {
  53281. front: {
  53282. height: math.unit(10, "feet"),
  53283. weight: math.unit(625, "kg"),
  53284. name: "Front",
  53285. image: {
  53286. source: "./media/characters/zain/front.svg",
  53287. extra: 1682/1498,
  53288. bottom: 223/1905
  53289. }
  53290. },
  53291. back: {
  53292. height: math.unit(10, "feet"),
  53293. weight: math.unit(625, "kg"),
  53294. name: "Back",
  53295. image: {
  53296. source: "./media/characters/zain/back.svg",
  53297. extra: 1814/1657,
  53298. bottom: 152/1966
  53299. }
  53300. },
  53301. head: {
  53302. height: math.unit(10, "feet"),
  53303. weight: math.unit(625, "kg"),
  53304. name: "Head",
  53305. image: {
  53306. source: "./media/characters/zain/head.svg",
  53307. extra: 1059/762,
  53308. bottom: 0/1059
  53309. }
  53310. },
  53311. },
  53312. [
  53313. {
  53314. name: "Normal",
  53315. height: math.unit(10, "feet"),
  53316. default: true
  53317. },
  53318. ]
  53319. ))
  53320. characterMakers.push(() => makeCharacter(
  53321. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53322. {
  53323. front: {
  53324. height: math.unit(6 + 5/12, "feet"),
  53325. weight: math.unit(750, "lb"),
  53326. name: "Front",
  53327. image: {
  53328. source: "./media/characters/ruchex/front.svg",
  53329. extra: 877/820,
  53330. bottom: 17/894
  53331. },
  53332. extraAttributes: {
  53333. "width": {
  53334. name: "Width",
  53335. power: 1,
  53336. type: "length",
  53337. base: math.unit(4.757, "feet")
  53338. },
  53339. }
  53340. },
  53341. },
  53342. [
  53343. {
  53344. name: "Normal",
  53345. height: math.unit(6 + 5/12, "feet"),
  53346. default: true
  53347. },
  53348. ]
  53349. ))
  53350. characterMakers.push(() => makeCharacter(
  53351. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53352. {
  53353. dressedFront: {
  53354. height: math.unit(191, "cm"),
  53355. weight: math.unit(80, "kg"),
  53356. name: "Front",
  53357. image: {
  53358. source: "./media/characters/buster/dressed-front.svg",
  53359. extra: 1022/973,
  53360. bottom: 69/1091
  53361. }
  53362. },
  53363. dressedBack: {
  53364. height: math.unit(191, "cm"),
  53365. weight: math.unit(80, "kg"),
  53366. name: "Back",
  53367. image: {
  53368. source: "./media/characters/buster/dressed-back.svg",
  53369. extra: 1018/970,
  53370. bottom: 55/1073
  53371. }
  53372. },
  53373. nudeFront: {
  53374. height: math.unit(191, "cm"),
  53375. weight: math.unit(80, "kg"),
  53376. name: "Front (Nude)",
  53377. image: {
  53378. source: "./media/characters/buster/nude-front.svg",
  53379. extra: 1022/973,
  53380. bottom: 69/1091
  53381. }
  53382. },
  53383. nudeBack: {
  53384. height: math.unit(191, "cm"),
  53385. weight: math.unit(80, "kg"),
  53386. name: "Back (Nude)",
  53387. image: {
  53388. source: "./media/characters/buster/nude-back.svg",
  53389. extra: 1018/970,
  53390. bottom: 55/1073
  53391. }
  53392. },
  53393. dick: {
  53394. height: math.unit(2.59, "feet"),
  53395. name: "Dick",
  53396. image: {
  53397. source: "./media/characters/buster/dick.svg"
  53398. }
  53399. },
  53400. ass: {
  53401. height: math.unit(1.2, "feet"),
  53402. name: "Ass",
  53403. image: {
  53404. source: "./media/characters/buster/ass.svg"
  53405. }
  53406. },
  53407. },
  53408. [
  53409. {
  53410. name: "Normal",
  53411. height: math.unit(191, "cm"),
  53412. default: true
  53413. },
  53414. ]
  53415. ))
  53416. characterMakers.push(() => makeCharacter(
  53417. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53418. {
  53419. side: {
  53420. height: math.unit(8.1, "feet"),
  53421. weight: math.unit(3500, "lb"),
  53422. name: "Side",
  53423. image: {
  53424. source: "./media/characters/sonya/side.svg",
  53425. extra: 1730/1317,
  53426. bottom: 86/1816
  53427. }
  53428. },
  53429. },
  53430. [
  53431. {
  53432. name: "Normal",
  53433. height: math.unit(8.1, "feet"),
  53434. default: true
  53435. },
  53436. ]
  53437. ))
  53438. characterMakers.push(() => makeCharacter(
  53439. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53440. {
  53441. front: {
  53442. height: math.unit(6, "feet"),
  53443. weight: math.unit(150, "lb"),
  53444. name: "Front",
  53445. image: {
  53446. source: "./media/characters/cadence-andrysiak/front.svg",
  53447. extra: 1164/1121,
  53448. bottom: 60/1224
  53449. }
  53450. },
  53451. back: {
  53452. height: math.unit(6, "feet"),
  53453. weight: math.unit(150, "lb"),
  53454. name: "Back",
  53455. image: {
  53456. source: "./media/characters/cadence-andrysiak/back.svg",
  53457. extra: 1200/1165,
  53458. bottom: 9/1209
  53459. }
  53460. },
  53461. dressed: {
  53462. height: math.unit(6, "feet"),
  53463. weight: math.unit(150, "lb"),
  53464. name: "Dressed",
  53465. image: {
  53466. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53467. extra: 1164/1121,
  53468. bottom: 60/1224
  53469. }
  53470. },
  53471. },
  53472. [
  53473. {
  53474. name: "Micro",
  53475. height: math.unit(1, "mm")
  53476. },
  53477. {
  53478. name: "Normal",
  53479. height: math.unit(6, "feet"),
  53480. default: true
  53481. },
  53482. ]
  53483. ))
  53484. characterMakers.push(() => makeCharacter(
  53485. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53486. {
  53487. front: {
  53488. height: math.unit(60, "inches"),
  53489. weight: math.unit(16, "lb"),
  53490. preyCapacity: math.unit(80, "liters"),
  53491. name: "Front",
  53492. image: {
  53493. source: "./media/characters/penny-lynx/front.svg",
  53494. extra: 1959/1769,
  53495. bottom: 49/2008
  53496. }
  53497. },
  53498. },
  53499. [
  53500. {
  53501. name: "Nokia",
  53502. height: math.unit(2, "inches")
  53503. },
  53504. {
  53505. name: "Desktop",
  53506. height: math.unit(24, "inches")
  53507. },
  53508. {
  53509. name: "TV",
  53510. height: math.unit(60, "inches")
  53511. },
  53512. {
  53513. name: "Jumbotron",
  53514. height: math.unit(12, "feet")
  53515. },
  53516. {
  53517. name: "Billboard",
  53518. height: math.unit(48, "feet"),
  53519. default: true
  53520. },
  53521. {
  53522. name: "IMAX",
  53523. height: math.unit(96, "feet")
  53524. },
  53525. {
  53526. name: "SINGULARITY",
  53527. height: math.unit(864938, "miles")
  53528. },
  53529. ]
  53530. ))
  53531. characterMakers.push(() => makeCharacter(
  53532. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53533. {
  53534. front: {
  53535. height: math.unit(5 + 4/12, "feet"),
  53536. weight: math.unit(230, "lb"),
  53537. name: "Front",
  53538. image: {
  53539. source: "./media/characters/sukebe/front.svg",
  53540. extra: 2130/2038,
  53541. bottom: 90/2220
  53542. }
  53543. },
  53544. back: {
  53545. height: math.unit(3.48, "feet"),
  53546. weight: math.unit(230, "lb"),
  53547. name: "Back",
  53548. image: {
  53549. source: "./media/characters/sukebe/back.svg",
  53550. extra: 1670/1604,
  53551. bottom: 0/1670
  53552. }
  53553. },
  53554. },
  53555. [
  53556. {
  53557. name: "Normal",
  53558. height: math.unit(5 + 4/12, "feet"),
  53559. default: true
  53560. },
  53561. ]
  53562. ))
  53563. characterMakers.push(() => makeCharacter(
  53564. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53565. {
  53566. front: {
  53567. height: math.unit(6, "feet"),
  53568. name: "Front",
  53569. image: {
  53570. source: "./media/characters/nylla/front.svg",
  53571. extra: 1868/1699,
  53572. bottom: 97/1965
  53573. }
  53574. },
  53575. back: {
  53576. height: math.unit(6, "feet"),
  53577. name: "Back",
  53578. image: {
  53579. source: "./media/characters/nylla/back.svg",
  53580. extra: 1889/1712,
  53581. bottom: 93/1982
  53582. }
  53583. },
  53584. frontNsfw: {
  53585. height: math.unit(6, "feet"),
  53586. name: "Front (NSFW)",
  53587. image: {
  53588. source: "./media/characters/nylla/front-nsfw.svg",
  53589. extra: 1868/1699,
  53590. bottom: 97/1965
  53591. },
  53592. extraAttributes: {
  53593. "dickLength": {
  53594. name: "Dick Length",
  53595. power: 1,
  53596. type: "length",
  53597. base: math.unit(1.4, "feet")
  53598. },
  53599. "cumVolume": {
  53600. name: "Cum Volume",
  53601. power: 3,
  53602. type: "volume",
  53603. base: math.unit(100, "mL")
  53604. },
  53605. }
  53606. },
  53607. backNsfw: {
  53608. height: math.unit(6, "feet"),
  53609. name: "Back (NSFW)",
  53610. image: {
  53611. source: "./media/characters/nylla/back-nsfw.svg",
  53612. extra: 1889/1712,
  53613. bottom: 93/1982
  53614. }
  53615. },
  53616. maw: {
  53617. height: math.unit(2.10, "feet"),
  53618. name: "Maw",
  53619. image: {
  53620. source: "./media/characters/nylla/maw.svg"
  53621. }
  53622. },
  53623. paws: {
  53624. height: math.unit(2.06, "feet"),
  53625. name: "Paws",
  53626. image: {
  53627. source: "./media/characters/nylla/paws.svg"
  53628. }
  53629. },
  53630. muzzle: {
  53631. height: math.unit(0.61, "feet"),
  53632. name: "Muzzle",
  53633. image: {
  53634. source: "./media/characters/nylla/muzzle.svg"
  53635. }
  53636. },
  53637. sheath: {
  53638. height: math.unit(1.305, "feet"),
  53639. name: "Sheath",
  53640. image: {
  53641. source: "./media/characters/nylla/sheath.svg"
  53642. }
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Micro",
  53648. height: math.unit(7.5, "inches")
  53649. },
  53650. {
  53651. name: "Normal",
  53652. height: math.unit(7, "feet"),
  53653. default: true
  53654. },
  53655. {
  53656. name: "Macro",
  53657. height: math.unit(60, "feet")
  53658. },
  53659. {
  53660. name: "Mega",
  53661. height: math.unit(200, "feet")
  53662. },
  53663. ]
  53664. ))
  53665. characterMakers.push(() => makeCharacter(
  53666. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53667. {
  53668. front: {
  53669. height: math.unit(10, "feet"),
  53670. weight: math.unit(2300, "lb"),
  53671. name: "Front",
  53672. image: {
  53673. source: "./media/characters/hunt3r/front.svg",
  53674. extra: 1909/1742,
  53675. bottom: 46/1955
  53676. }
  53677. },
  53678. },
  53679. [
  53680. {
  53681. name: "Normal",
  53682. height: math.unit(10, "feet"),
  53683. default: true
  53684. },
  53685. ]
  53686. ))
  53687. characterMakers.push(() => makeCharacter(
  53688. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53689. {
  53690. dressed: {
  53691. height: math.unit(11, "feet"),
  53692. weight: math.unit(18500, "lb"),
  53693. preyCapacity: math.unit(9, "people"),
  53694. name: "Dressed",
  53695. image: {
  53696. source: "./media/characters/cylphis/dressed.svg",
  53697. extra: 1028/1003,
  53698. bottom: 75/1103
  53699. },
  53700. },
  53701. undressed: {
  53702. height: math.unit(11, "feet"),
  53703. weight: math.unit(18500, "lb"),
  53704. preyCapacity: math.unit(9, "people"),
  53705. name: "Undressed",
  53706. image: {
  53707. source: "./media/characters/cylphis/undressed.svg",
  53708. extra: 1028/1003,
  53709. bottom: 75/1103
  53710. }
  53711. },
  53712. full: {
  53713. height: math.unit(11, "feet"),
  53714. weight: math.unit(18500 + 150*9, "lb"),
  53715. preyCapacity: math.unit(9, "people"),
  53716. name: "Full",
  53717. image: {
  53718. source: "./media/characters/cylphis/full.svg",
  53719. extra: 1028/1003,
  53720. bottom: 75/1103
  53721. }
  53722. },
  53723. },
  53724. [
  53725. {
  53726. name: "Small",
  53727. height: math.unit(8, "feet")
  53728. },
  53729. {
  53730. name: "Normal",
  53731. height: math.unit(11, "feet"),
  53732. default: true
  53733. },
  53734. ]
  53735. ))
  53736. characterMakers.push(() => makeCharacter(
  53737. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53738. {
  53739. front: {
  53740. height: math.unit(2 + 7/12, "feet"),
  53741. name: "Front",
  53742. image: {
  53743. source: "./media/characters/orishan/front.svg",
  53744. extra: 1058/1023,
  53745. bottom: 23/1081
  53746. }
  53747. },
  53748. back: {
  53749. height: math.unit(2 + 7/12, "feet"),
  53750. name: "Back",
  53751. image: {
  53752. source: "./media/characters/orishan/back.svg",
  53753. extra: 1058/1023,
  53754. bottom: 23/1081
  53755. }
  53756. },
  53757. },
  53758. [
  53759. {
  53760. name: "Micro",
  53761. height: math.unit(2, "cm")
  53762. },
  53763. {
  53764. name: "Normal",
  53765. height: math.unit(2 + 7/12, "feet"),
  53766. default: true
  53767. },
  53768. ]
  53769. ))
  53770. characterMakers.push(() => makeCharacter(
  53771. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53772. {
  53773. front: {
  53774. height: math.unit(3, "meters"),
  53775. weight: math.unit(508, "kg"),
  53776. name: "Front",
  53777. image: {
  53778. source: "./media/characters/seranis/front.svg",
  53779. extra: 1478/1454,
  53780. bottom: 41/1519
  53781. }
  53782. },
  53783. },
  53784. [
  53785. {
  53786. name: "Normal",
  53787. height: math.unit(3, "meters"),
  53788. default: true
  53789. },
  53790. {
  53791. name: "Macro",
  53792. height: math.unit(108, "meters")
  53793. },
  53794. {
  53795. name: "Megamacro",
  53796. height: math.unit(1250, "meters")
  53797. },
  53798. ]
  53799. ))
  53800. characterMakers.push(() => makeCharacter(
  53801. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53802. {
  53803. undressed: {
  53804. height: math.unit(5 + 3/12, "feet"),
  53805. name: "Undressed",
  53806. image: {
  53807. source: "./media/characters/ankou/undressed.svg",
  53808. extra: 1301/1213,
  53809. bottom: 87/1388
  53810. }
  53811. },
  53812. dressed: {
  53813. height: math.unit(5 + 3/12, "feet"),
  53814. name: "Dressed",
  53815. image: {
  53816. source: "./media/characters/ankou/dressed.svg",
  53817. extra: 1301/1213,
  53818. bottom: 87/1388
  53819. }
  53820. },
  53821. head: {
  53822. height: math.unit(1.61, "feet"),
  53823. name: "Head",
  53824. image: {
  53825. source: "./media/characters/ankou/head.svg"
  53826. }
  53827. },
  53828. },
  53829. [
  53830. {
  53831. name: "Normal",
  53832. height: math.unit(5 + 3/12, "feet"),
  53833. default: true
  53834. },
  53835. ]
  53836. ))
  53837. characterMakers.push(() => makeCharacter(
  53838. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53839. {
  53840. side: {
  53841. height: math.unit(6 + 3/12, "feet"),
  53842. weight: math.unit(200, "kg"),
  53843. name: "Side",
  53844. image: {
  53845. source: "./media/characters/juniper-skunktaur/side.svg",
  53846. extra: 1574/1229,
  53847. bottom: 38/1612
  53848. }
  53849. },
  53850. front: {
  53851. height: math.unit(6 + 3/12, "feet"),
  53852. weight: math.unit(200, "kg"),
  53853. name: "Front",
  53854. image: {
  53855. source: "./media/characters/juniper-skunktaur/front.svg",
  53856. extra: 1337/1278,
  53857. bottom: 22/1359
  53858. }
  53859. },
  53860. back: {
  53861. height: math.unit(6 + 3/12, "feet"),
  53862. weight: math.unit(200, "kg"),
  53863. name: "Back",
  53864. image: {
  53865. source: "./media/characters/juniper-skunktaur/back.svg",
  53866. extra: 1618/1273,
  53867. bottom: 13/1631
  53868. }
  53869. },
  53870. top: {
  53871. height: math.unit(2.62, "feet"),
  53872. weight: math.unit(200, "kg"),
  53873. name: "Top",
  53874. image: {
  53875. source: "./media/characters/juniper-skunktaur/top.svg"
  53876. }
  53877. },
  53878. },
  53879. [
  53880. {
  53881. name: "Normal",
  53882. height: math.unit(6 + 3/12, "feet"),
  53883. default: true
  53884. },
  53885. ]
  53886. ))
  53887. characterMakers.push(() => makeCharacter(
  53888. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53889. {
  53890. front: {
  53891. height: math.unit(20.5, "feet"),
  53892. name: "Front",
  53893. image: {
  53894. source: "./media/characters/rei/front.svg",
  53895. extra: 1349/1195,
  53896. bottom: 31/1380
  53897. }
  53898. },
  53899. back: {
  53900. height: math.unit(20.5, "feet"),
  53901. name: "Back",
  53902. image: {
  53903. source: "./media/characters/rei/back.svg",
  53904. extra: 1358/1204,
  53905. bottom: 22/1380
  53906. }
  53907. },
  53908. pawsDigi: {
  53909. height: math.unit(3.45, "feet"),
  53910. name: "Paws (Digi)",
  53911. image: {
  53912. source: "./media/characters/rei/paws-digi.svg"
  53913. }
  53914. },
  53915. pawsPlanti: {
  53916. height: math.unit(3.45, "feet"),
  53917. name: "Paws (Planti)",
  53918. image: {
  53919. source: "./media/characters/rei/paws-planti.svg"
  53920. }
  53921. },
  53922. },
  53923. [
  53924. {
  53925. name: "Normal",
  53926. height: math.unit(20.5, "feet"),
  53927. default: true
  53928. },
  53929. ]
  53930. ))
  53931. characterMakers.push(() => makeCharacter(
  53932. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53933. {
  53934. front: {
  53935. height: math.unit(5 + 11/12, "feet"),
  53936. name: "Front",
  53937. image: {
  53938. source: "./media/characters/carina/front.svg",
  53939. extra: 1720/1449,
  53940. bottom: 14/1734
  53941. }
  53942. },
  53943. back: {
  53944. height: math.unit(5 + 11/12, "feet"),
  53945. name: "Back",
  53946. image: {
  53947. source: "./media/characters/carina/back.svg",
  53948. extra: 1493/1445,
  53949. bottom: 17/1510
  53950. }
  53951. },
  53952. paw: {
  53953. height: math.unit(0.92, "feet"),
  53954. name: "Paw",
  53955. image: {
  53956. source: "./media/characters/carina/paw.svg"
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(5 + 11/12, "feet"),
  53964. default: true
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53970. {
  53971. normal_front: {
  53972. height: math.unit(4.88, "meters"),
  53973. name: "Front",
  53974. image: {
  53975. source: "./media/characters/maya/normal-front.svg",
  53976. extra: 1222/1145,
  53977. bottom: 57/1279
  53978. },
  53979. form: "normal",
  53980. default: true
  53981. },
  53982. monstrous_front: {
  53983. height: math.unit(10, "meters"),
  53984. name: "Front",
  53985. image: {
  53986. source: "./media/characters/maya/monstrous-front.svg",
  53987. extra: 1523/1109,
  53988. bottom: 113/1636
  53989. },
  53990. form: "monstrous",
  53991. extraAttributes: {
  53992. "swallowSize": {
  53993. name: "Tailmaw Bite Size",
  53994. power: 3,
  53995. type: "volume",
  53996. base: math.unit(43000, "liters")
  53997. },
  53998. }
  53999. },
  54000. taur_front: {
  54001. height: math.unit(10, "meters"),
  54002. name: "Front",
  54003. image: {
  54004. source: "./media/characters/maya/taur-front.svg",
  54005. extra: 743/506,
  54006. bottom: 101/844
  54007. },
  54008. form: "taur",
  54009. },
  54010. },
  54011. [
  54012. {
  54013. name: "Normal",
  54014. height: math.unit(4.88, "meters"),
  54015. default: true,
  54016. form: "normal"
  54017. },
  54018. {
  54019. name: "Macro",
  54020. height: math.unit(38.1, "meters"),
  54021. form: "normal"
  54022. },
  54023. {
  54024. name: "Macro+",
  54025. height: math.unit(152.4, "meters"),
  54026. form: "normal"
  54027. },
  54028. {
  54029. name: "Macro++",
  54030. height: math.unit(16.09, "km"),
  54031. form: "normal"
  54032. },
  54033. {
  54034. name: "Mega-macro",
  54035. height: math.unit(700, "megameters"),
  54036. form: "normal"
  54037. },
  54038. {
  54039. name: "Satiated",
  54040. height: math.unit(10, "meters"),
  54041. default: true,
  54042. form: "monstrous"
  54043. },
  54044. {
  54045. name: "Hungry",
  54046. height: math.unit(75, "meters"),
  54047. form: "monstrous"
  54048. },
  54049. {
  54050. name: "Ravenous",
  54051. height: math.unit(500, "meters"),
  54052. form: "monstrous"
  54053. },
  54054. {
  54055. name: "\"Normal\"",
  54056. height: math.unit(10, "meters"),
  54057. form: "taur"
  54058. },
  54059. {
  54060. name: "Macro",
  54061. height: math.unit(50, "meters"),
  54062. form: "taur"
  54063. },
  54064. ],
  54065. {
  54066. "normal": {
  54067. name: "Normal",
  54068. default: true
  54069. },
  54070. "monstrous": {
  54071. name: "Monstrous",
  54072. },
  54073. "taur": {
  54074. name: "Taur",
  54075. },
  54076. }
  54077. ))
  54078. characterMakers.push(() => makeCharacter(
  54079. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54080. {
  54081. front: {
  54082. height: math.unit(6 + 2/12, "feet"),
  54083. weight: math.unit(500, "lb"),
  54084. preyCapacity: math.unit(4, "people"),
  54085. name: "Front",
  54086. image: {
  54087. source: "./media/characters/yepir/front.svg"
  54088. }
  54089. },
  54090. side: {
  54091. height: math.unit(6 + 2/12, "feet"),
  54092. weight: math.unit(500, "lb"),
  54093. preyCapacity: math.unit(4, "people"),
  54094. name: "Side",
  54095. image: {
  54096. source: "./media/characters/yepir/side.svg"
  54097. }
  54098. },
  54099. paw: {
  54100. height: math.unit(1.05, "feet"),
  54101. name: "Paw",
  54102. image: {
  54103. source: "./media/characters/yepir/paw.svg"
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(6 + 2/12, "feet"),
  54111. default: true
  54112. },
  54113. ]
  54114. ))
  54115. characterMakers.push(() => makeCharacter(
  54116. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54117. {
  54118. front: {
  54119. height: math.unit(5 + 4/12, "feet"),
  54120. name: "Front",
  54121. image: {
  54122. source: "./media/characters/russec/front.svg",
  54123. extra: 1926/1626,
  54124. bottom: 72/1998
  54125. }
  54126. },
  54127. back: {
  54128. height: math.unit(5 + 4/12, "feet"),
  54129. name: "Back",
  54130. image: {
  54131. source: "./media/characters/russec/back.svg",
  54132. extra: 1910/1591,
  54133. bottom: 48/1958
  54134. }
  54135. },
  54136. },
  54137. [
  54138. {
  54139. name: "Small",
  54140. height: math.unit(5 + 4/12, "feet")
  54141. },
  54142. {
  54143. name: "Normal",
  54144. height: math.unit(72, "feet"),
  54145. default: true
  54146. },
  54147. ]
  54148. ))
  54149. characterMakers.push(() => makeCharacter(
  54150. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54151. {
  54152. side: {
  54153. height: math.unit(12, "feet"),
  54154. name: "Side",
  54155. image: {
  54156. source: "./media/characters/cianus/side.svg",
  54157. extra: 808/526,
  54158. bottom: 61/869
  54159. }
  54160. },
  54161. },
  54162. [
  54163. {
  54164. name: "Normal",
  54165. height: math.unit(12, "feet"),
  54166. default: true
  54167. },
  54168. ]
  54169. ))
  54170. characterMakers.push(() => makeCharacter(
  54171. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54172. {
  54173. front: {
  54174. height: math.unit(9 + 6/12, "feet"),
  54175. weight: math.unit(300, "lb"),
  54176. name: "Front",
  54177. image: {
  54178. source: "./media/characters/ahab/front.svg",
  54179. extra: 1897/1868,
  54180. bottom: 121/2018
  54181. }
  54182. },
  54183. frontNsfw: {
  54184. height: math.unit(9 + 6/12, "feet"),
  54185. weight: math.unit(300, "lb"),
  54186. name: "Front (NSFW)",
  54187. image: {
  54188. source: "./media/characters/ahab/front-nsfw.svg",
  54189. extra: 1897/1868,
  54190. bottom: 121/2018
  54191. }
  54192. },
  54193. },
  54194. [
  54195. {
  54196. name: "Normal",
  54197. height: math.unit(9 + 6/12, "feet")
  54198. },
  54199. {
  54200. name: "Macro",
  54201. height: math.unit(657, "feet"),
  54202. default: true
  54203. },
  54204. ]
  54205. ))
  54206. characterMakers.push(() => makeCharacter(
  54207. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54208. {
  54209. front: {
  54210. height: math.unit(2.69, "meters"),
  54211. weight: math.unit(132, "kg"),
  54212. name: "Front",
  54213. image: {
  54214. source: "./media/characters/aarkus/front.svg",
  54215. extra: 1400/1231,
  54216. bottom: 34/1434
  54217. }
  54218. },
  54219. back: {
  54220. height: math.unit(2.69, "meters"),
  54221. weight: math.unit(132, "kg"),
  54222. name: "Back",
  54223. image: {
  54224. source: "./media/characters/aarkus/back.svg",
  54225. extra: 1381/1218,
  54226. bottom: 30/1411
  54227. }
  54228. },
  54229. frontNsfw: {
  54230. height: math.unit(2.69, "meters"),
  54231. weight: math.unit(132, "kg"),
  54232. name: "Front (NSFW)",
  54233. image: {
  54234. source: "./media/characters/aarkus/front-nsfw.svg",
  54235. extra: 1400/1231,
  54236. bottom: 34/1434
  54237. }
  54238. },
  54239. foot: {
  54240. height: math.unit(1.45, "feet"),
  54241. name: "Foot",
  54242. image: {
  54243. source: "./media/characters/aarkus/foot.svg"
  54244. }
  54245. },
  54246. head: {
  54247. height: math.unit(2.85, "feet"),
  54248. name: "Head",
  54249. image: {
  54250. source: "./media/characters/aarkus/head.svg"
  54251. }
  54252. },
  54253. headAlt: {
  54254. height: math.unit(3.07, "feet"),
  54255. name: "Head (Alt)",
  54256. image: {
  54257. source: "./media/characters/aarkus/head-alt.svg"
  54258. }
  54259. },
  54260. mouth: {
  54261. height: math.unit(1.25, "feet"),
  54262. name: "Mouth",
  54263. image: {
  54264. source: "./media/characters/aarkus/mouth.svg"
  54265. }
  54266. },
  54267. dick: {
  54268. height: math.unit(1.77, "feet"),
  54269. name: "Dick",
  54270. image: {
  54271. source: "./media/characters/aarkus/dick.svg"
  54272. }
  54273. },
  54274. },
  54275. [
  54276. {
  54277. name: "Normal",
  54278. height: math.unit(2.69, "meters"),
  54279. default: true
  54280. },
  54281. {
  54282. name: "Macro",
  54283. height: math.unit(269, "meters")
  54284. },
  54285. {
  54286. name: "Macro+",
  54287. height: math.unit(672.5, "meters")
  54288. },
  54289. {
  54290. name: "Megamacro",
  54291. height: math.unit(2.017, "km")
  54292. },
  54293. ]
  54294. ))
  54295. characterMakers.push(() => makeCharacter(
  54296. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54297. {
  54298. front: {
  54299. height: math.unit(23.47, "cm"),
  54300. weight: math.unit(600, "grams"),
  54301. name: "Front",
  54302. image: {
  54303. source: "./media/characters/diode/front.svg",
  54304. extra: 1778/1396,
  54305. bottom: 95/1873
  54306. }
  54307. },
  54308. side: {
  54309. height: math.unit(23.47, "cm"),
  54310. weight: math.unit(600, "grams"),
  54311. name: "Side",
  54312. image: {
  54313. source: "./media/characters/diode/side.svg",
  54314. extra: 1831/1404,
  54315. bottom: 86/1917
  54316. }
  54317. },
  54318. wings: {
  54319. height: math.unit(0.683, "feet"),
  54320. name: "Wings",
  54321. image: {
  54322. source: "./media/characters/diode/wings.svg"
  54323. }
  54324. },
  54325. },
  54326. [
  54327. {
  54328. name: "Normal",
  54329. height: math.unit(23.47, "cm"),
  54330. default: true
  54331. },
  54332. ]
  54333. ))
  54334. characterMakers.push(() => makeCharacter(
  54335. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54336. {
  54337. front: {
  54338. height: math.unit(6 + 3/12, "feet"),
  54339. weight: math.unit(250, "lb"),
  54340. name: "Front",
  54341. image: {
  54342. source: "./media/characters/reika/front.svg",
  54343. extra: 1120/1078,
  54344. bottom: 86/1206
  54345. }
  54346. },
  54347. },
  54348. [
  54349. {
  54350. name: "Normal",
  54351. height: math.unit(6 + 3/12, "feet"),
  54352. default: true
  54353. },
  54354. ]
  54355. ))
  54356. characterMakers.push(() => makeCharacter(
  54357. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54358. {
  54359. front: {
  54360. height: math.unit(16 + 8/12, "feet"),
  54361. weight: math.unit(9000, "lb"),
  54362. name: "Front",
  54363. image: {
  54364. source: "./media/characters/lokuto-takama/front.svg",
  54365. extra: 1774/1632,
  54366. bottom: 147/1921
  54367. },
  54368. extraAttributes: {
  54369. "bustWidth": {
  54370. name: "Bust Width",
  54371. power: 1,
  54372. type: "length",
  54373. base: math.unit(2.4, "meters")
  54374. },
  54375. "breastWeight": {
  54376. name: "Breast Weight",
  54377. power: 3,
  54378. type: "mass",
  54379. base: math.unit(1000, "kg")
  54380. },
  54381. }
  54382. },
  54383. },
  54384. [
  54385. {
  54386. name: "Normal",
  54387. height: math.unit(16 + 8/12, "feet"),
  54388. default: true
  54389. },
  54390. ]
  54391. ))
  54392. characterMakers.push(() => makeCharacter(
  54393. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54394. {
  54395. front: {
  54396. height: math.unit(10, "cm"),
  54397. weight: math.unit(850, "grams"),
  54398. name: "Front",
  54399. image: {
  54400. source: "./media/characters/owak-bone/front.svg",
  54401. extra: 1965/1801,
  54402. bottom: 31/1996
  54403. }
  54404. },
  54405. },
  54406. [
  54407. {
  54408. name: "Normal",
  54409. height: math.unit(10, "cm"),
  54410. default: true
  54411. },
  54412. ]
  54413. ))
  54414. characterMakers.push(() => makeCharacter(
  54415. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54416. {
  54417. front: {
  54418. height: math.unit(2 + 6/12, "feet"),
  54419. weight: math.unit(9, "lb"),
  54420. name: "Front",
  54421. image: {
  54422. source: "./media/characters/muffin/front.svg",
  54423. extra: 1220/1195,
  54424. bottom: 84/1304
  54425. }
  54426. },
  54427. },
  54428. [
  54429. {
  54430. name: "Normal",
  54431. height: math.unit(2 + 6/12, "feet"),
  54432. default: true
  54433. },
  54434. ]
  54435. ))
  54436. characterMakers.push(() => makeCharacter(
  54437. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54438. {
  54439. front: {
  54440. height: math.unit(7, "feet"),
  54441. name: "Front",
  54442. image: {
  54443. source: "./media/characters/chimera/front.svg",
  54444. extra: 1752/1614,
  54445. bottom: 68/1820
  54446. }
  54447. },
  54448. },
  54449. [
  54450. {
  54451. name: "Normal",
  54452. height: math.unit(7, "feet")
  54453. },
  54454. {
  54455. name: "Gigamacro",
  54456. height: math.unit(2.9, "gigameters"),
  54457. default: true
  54458. },
  54459. {
  54460. name: "Universal",
  54461. height: math.unit(1.56e26, "yottameters")
  54462. },
  54463. ]
  54464. ))
  54465. characterMakers.push(() => makeCharacter(
  54466. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54467. {
  54468. front: {
  54469. height: math.unit(3, "feet"),
  54470. weight: math.unit(20, "lb"),
  54471. name: "Front",
  54472. image: {
  54473. source: "./media/characters/kit-fennec-fox/front.svg",
  54474. extra: 1027/932,
  54475. bottom: 16/1043
  54476. }
  54477. },
  54478. back: {
  54479. height: math.unit(3, "feet"),
  54480. weight: math.unit(20, "lb"),
  54481. name: "Back",
  54482. image: {
  54483. source: "./media/characters/kit-fennec-fox/back.svg",
  54484. extra: 1027/932,
  54485. bottom: 16/1043
  54486. }
  54487. },
  54488. },
  54489. [
  54490. {
  54491. name: "Normal",
  54492. height: math.unit(3, "feet"),
  54493. default: true
  54494. },
  54495. ]
  54496. ))
  54497. characterMakers.push(() => makeCharacter(
  54498. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54499. {
  54500. front: {
  54501. height: math.unit(167, "cm"),
  54502. name: "Front",
  54503. image: {
  54504. source: "./media/characters/blue-otter/front.svg",
  54505. extra: 1951/1920,
  54506. bottom: 31/1982
  54507. }
  54508. },
  54509. },
  54510. [
  54511. {
  54512. name: "Otter-Sized",
  54513. height: math.unit(100, "cm")
  54514. },
  54515. {
  54516. name: "Normal",
  54517. height: math.unit(167, "cm"),
  54518. default: true
  54519. },
  54520. ]
  54521. ))
  54522. characterMakers.push(() => makeCharacter(
  54523. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54524. {
  54525. front: {
  54526. height: math.unit(4 + 4/12, "feet"),
  54527. name: "Front",
  54528. image: {
  54529. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54530. extra: 1072/1067,
  54531. bottom: 117/1189
  54532. }
  54533. },
  54534. back: {
  54535. height: math.unit(4 + 4/12, "feet"),
  54536. name: "Back",
  54537. image: {
  54538. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54539. extra: 1135/1129,
  54540. bottom: 57/1192
  54541. }
  54542. },
  54543. head: {
  54544. height: math.unit(1.77, "feet"),
  54545. name: "Head",
  54546. image: {
  54547. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54548. }
  54549. },
  54550. },
  54551. [
  54552. {
  54553. name: "Normal",
  54554. height: math.unit(4 + 4/12, "feet"),
  54555. default: true
  54556. },
  54557. ]
  54558. ))
  54559. characterMakers.push(() => makeCharacter(
  54560. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54561. {
  54562. front: {
  54563. height: math.unit(2, "inches"),
  54564. name: "Front",
  54565. image: {
  54566. source: "./media/characters/carley-hartford/front.svg",
  54567. extra: 1035/988,
  54568. bottom: 23/1058
  54569. }
  54570. },
  54571. back: {
  54572. height: math.unit(2, "inches"),
  54573. name: "Back",
  54574. image: {
  54575. source: "./media/characters/carley-hartford/back.svg",
  54576. extra: 1035/988,
  54577. bottom: 23/1058
  54578. }
  54579. },
  54580. dressed: {
  54581. height: math.unit(2, "inches"),
  54582. name: "Dressed",
  54583. image: {
  54584. source: "./media/characters/carley-hartford/dressed.svg",
  54585. extra: 651/620,
  54586. bottom: 0/651
  54587. }
  54588. },
  54589. },
  54590. [
  54591. {
  54592. name: "Micro",
  54593. height: math.unit(2, "inches"),
  54594. default: true
  54595. },
  54596. {
  54597. name: "Macro",
  54598. height: math.unit(6 + 3/12, "feet")
  54599. },
  54600. ]
  54601. ))
  54602. characterMakers.push(() => makeCharacter(
  54603. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54604. {
  54605. front: {
  54606. height: math.unit(2 + 3/12, "feet"),
  54607. weight: math.unit(15 + 7/16, "lb"),
  54608. name: "Front",
  54609. image: {
  54610. source: "./media/characters/duke/front.svg",
  54611. extra: 910/815,
  54612. bottom: 30/940
  54613. }
  54614. },
  54615. },
  54616. [
  54617. {
  54618. name: "Normal",
  54619. height: math.unit(2 + 3/12, "feet"),
  54620. default: true
  54621. },
  54622. ]
  54623. ))
  54624. characterMakers.push(() => makeCharacter(
  54625. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54626. {
  54627. front: {
  54628. height: math.unit(5 + 4/12, "feet"),
  54629. weight: math.unit(156, "lb"),
  54630. name: "Front",
  54631. image: {
  54632. source: "./media/characters/dein/front.svg",
  54633. extra: 855/815,
  54634. bottom: 48/903
  54635. }
  54636. },
  54637. side: {
  54638. height: math.unit(5 + 4/12, "feet"),
  54639. weight: math.unit(156, "lb"),
  54640. name: "side",
  54641. image: {
  54642. source: "./media/characters/dein/side.svg",
  54643. extra: 846/803,
  54644. bottom: 25/871
  54645. }
  54646. },
  54647. maw: {
  54648. height: math.unit(1.45, "feet"),
  54649. name: "Maw",
  54650. image: {
  54651. source: "./media/characters/dein/maw.svg"
  54652. }
  54653. },
  54654. },
  54655. [
  54656. {
  54657. name: "Ferret Sized",
  54658. height: math.unit(2 + 5/12, "feet")
  54659. },
  54660. {
  54661. name: "Normal",
  54662. height: math.unit(5 + 4/12, "feet"),
  54663. default: true
  54664. },
  54665. ]
  54666. ))
  54667. characterMakers.push(() => makeCharacter(
  54668. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54669. {
  54670. front: {
  54671. height: math.unit(84 + 8/12, "feet"),
  54672. weight: math.unit(942180, "lb"),
  54673. name: "Front",
  54674. image: {
  54675. source: "./media/characters/daurine-arima/front.svg",
  54676. extra: 1989/1782,
  54677. bottom: 37/2026
  54678. }
  54679. },
  54680. side: {
  54681. height: math.unit(84 + 8/12, "feet"),
  54682. weight: math.unit(942180, "lb"),
  54683. name: "Side",
  54684. image: {
  54685. source: "./media/characters/daurine-arima/side.svg",
  54686. extra: 1997/1790,
  54687. bottom: 21/2018
  54688. }
  54689. },
  54690. back: {
  54691. height: math.unit(84 + 8/12, "feet"),
  54692. weight: math.unit(942180, "lb"),
  54693. name: "Back",
  54694. image: {
  54695. source: "./media/characters/daurine-arima/back.svg",
  54696. extra: 1992/1800,
  54697. bottom: 12/2004
  54698. }
  54699. },
  54700. head: {
  54701. height: math.unit(15.5, "feet"),
  54702. name: "Head",
  54703. image: {
  54704. source: "./media/characters/daurine-arima/head.svg"
  54705. }
  54706. },
  54707. headAlt: {
  54708. height: math.unit(19.19, "feet"),
  54709. name: "Head (Alt)",
  54710. image: {
  54711. source: "./media/characters/daurine-arima/head-alt.svg"
  54712. }
  54713. },
  54714. },
  54715. [
  54716. {
  54717. name: "Minimum height",
  54718. height: math.unit(8 + 10/12, "feet")
  54719. },
  54720. {
  54721. name: "Comfort height",
  54722. height: math.unit(19 + 6 /12, "feet")
  54723. },
  54724. {
  54725. name: "\"Normal\" height",
  54726. height: math.unit(28 + 10/12, "feet")
  54727. },
  54728. {
  54729. name: "Base height",
  54730. height: math.unit(84 + 8/12, "feet"),
  54731. default: true
  54732. },
  54733. {
  54734. name: "Mini-macro",
  54735. height: math.unit(2360, "feet")
  54736. },
  54737. {
  54738. name: "Macro",
  54739. height: math.unit(10, "miles")
  54740. },
  54741. {
  54742. name: "Goddess",
  54743. height: math.unit(9.99e40, "yottameters")
  54744. },
  54745. ]
  54746. ))
  54747. characterMakers.push(() => makeCharacter(
  54748. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54749. {
  54750. front: {
  54751. height: math.unit(2.3, "meters"),
  54752. name: "Front",
  54753. image: {
  54754. source: "./media/characters/cilenomon/front.svg",
  54755. extra: 1963/1778,
  54756. bottom: 54/2017
  54757. }
  54758. },
  54759. },
  54760. [
  54761. {
  54762. name: "Normal",
  54763. height: math.unit(2.3, "meters"),
  54764. default: true
  54765. },
  54766. {
  54767. name: "Big",
  54768. height: math.unit(5, "meters")
  54769. },
  54770. {
  54771. name: "Macro",
  54772. height: math.unit(30, "meters")
  54773. },
  54774. {
  54775. name: "True",
  54776. height: math.unit(1, "universe")
  54777. },
  54778. ]
  54779. ))
  54780. characterMakers.push(() => makeCharacter(
  54781. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54782. {
  54783. front: {
  54784. height: math.unit(5, "feet"),
  54785. name: "Front",
  54786. image: {
  54787. source: "./media/characters/sen-mink/front.svg",
  54788. extra: 1727/1675,
  54789. bottom: 35/1762
  54790. }
  54791. },
  54792. },
  54793. [
  54794. {
  54795. name: "Normal",
  54796. height: math.unit(5, "feet"),
  54797. default: true
  54798. },
  54799. ]
  54800. ))
  54801. characterMakers.push(() => makeCharacter(
  54802. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54803. {
  54804. front: {
  54805. height: math.unit(5.42999, "feet"),
  54806. weight: math.unit(100, "lb"),
  54807. name: "Front",
  54808. image: {
  54809. source: "./media/characters/ophois/front.svg",
  54810. extra: 1429/1286,
  54811. bottom: 60/1489
  54812. }
  54813. },
  54814. },
  54815. [
  54816. {
  54817. name: "Normal",
  54818. height: math.unit(5.42999, "feet"),
  54819. default: true
  54820. },
  54821. ]
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54825. {
  54826. front: {
  54827. height: math.unit(2, "meters"),
  54828. name: "Front",
  54829. image: {
  54830. source: "./media/characters/riley/front.svg",
  54831. extra: 1779/1754,
  54832. bottom: 139/1918
  54833. }
  54834. },
  54835. },
  54836. [
  54837. {
  54838. name: "Normal",
  54839. height: math.unit(2, "meters"),
  54840. default: true
  54841. },
  54842. ]
  54843. ))
  54844. characterMakers.push(() => makeCharacter(
  54845. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54846. {
  54847. front: {
  54848. height: math.unit(6 + 2/12, "feet"),
  54849. weight: math.unit(195, "lb"),
  54850. preyCapacity: math.unit(6, "people"),
  54851. name: "Front",
  54852. image: {
  54853. source: "./media/characters/shuken-flash/front.svg",
  54854. extra: 1905/1739,
  54855. bottom: 65/1970
  54856. }
  54857. },
  54858. back: {
  54859. height: math.unit(6 + 2/12, "feet"),
  54860. weight: math.unit(195, "lb"),
  54861. preyCapacity: math.unit(6, "people"),
  54862. name: "Back",
  54863. image: {
  54864. source: "./media/characters/shuken-flash/back.svg",
  54865. extra: 1912/1751,
  54866. bottom: 13/1925
  54867. }
  54868. },
  54869. },
  54870. [
  54871. {
  54872. name: "Normal",
  54873. height: math.unit(6 + 2/12, "feet"),
  54874. default: true
  54875. },
  54876. ]
  54877. ))
  54878. characterMakers.push(() => makeCharacter(
  54879. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54880. {
  54881. front: {
  54882. height: math.unit(5 + 9/12, "feet"),
  54883. weight: math.unit(150, "lb"),
  54884. name: "Front",
  54885. image: {
  54886. source: "./media/characters/plat/front.svg",
  54887. extra: 1816/1703,
  54888. bottom: 43/1859
  54889. }
  54890. },
  54891. side: {
  54892. height: math.unit(5 + 9/12, "feet"),
  54893. weight: math.unit(300, "lb"),
  54894. name: "Side",
  54895. image: {
  54896. source: "./media/characters/plat/side.svg",
  54897. extra: 1824/1699,
  54898. bottom: 18/1842
  54899. }
  54900. },
  54901. },
  54902. [
  54903. {
  54904. name: "Normal",
  54905. height: math.unit(5 + 9/12, "feet"),
  54906. default: true
  54907. },
  54908. ]
  54909. ))
  54910. characterMakers.push(() => makeCharacter(
  54911. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54912. {
  54913. front: {
  54914. height: math.unit(9, "feet"),
  54915. weight: math.unit(1800, "lb"),
  54916. name: "Front",
  54917. image: {
  54918. source: "./media/characters/elaine/front.svg",
  54919. extra: 1833/1354,
  54920. bottom: 25/1858
  54921. }
  54922. },
  54923. back: {
  54924. height: math.unit(8.8, "feet"),
  54925. weight: math.unit(1800, "lb"),
  54926. name: "Back",
  54927. image: {
  54928. source: "./media/characters/elaine/back.svg",
  54929. extra: 1641/1233,
  54930. bottom: 53/1694
  54931. }
  54932. },
  54933. },
  54934. [
  54935. {
  54936. name: "Normal",
  54937. height: math.unit(9, "feet"),
  54938. default: true
  54939. },
  54940. ]
  54941. ))
  54942. characterMakers.push(() => makeCharacter(
  54943. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54944. {
  54945. front: {
  54946. height: math.unit(17 + 9/12, "feet"),
  54947. weight: math.unit(8000, "lb"),
  54948. name: "Front",
  54949. image: {
  54950. source: "./media/characters/vera-raven/front.svg",
  54951. extra: 1457/1412,
  54952. bottom: 121/1578
  54953. }
  54954. },
  54955. side: {
  54956. height: math.unit(17 + 9/12, "feet"),
  54957. weight: math.unit(8000, "lb"),
  54958. name: "Side",
  54959. image: {
  54960. source: "./media/characters/vera-raven/side.svg",
  54961. extra: 1510/1464,
  54962. bottom: 54/1564
  54963. }
  54964. },
  54965. },
  54966. [
  54967. {
  54968. name: "Normal",
  54969. height: math.unit(17 + 9/12, "feet"),
  54970. default: true
  54971. },
  54972. ]
  54973. ))
  54974. characterMakers.push(() => makeCharacter(
  54975. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54976. {
  54977. dressed: {
  54978. height: math.unit(6 + 9/12, "feet"),
  54979. name: "Dressed",
  54980. image: {
  54981. source: "./media/characters/nakisha/dressed.svg",
  54982. extra: 1909/1757,
  54983. bottom: 48/1957
  54984. }
  54985. },
  54986. nude: {
  54987. height: math.unit(6 + 9/12, "feet"),
  54988. name: "Nude",
  54989. image: {
  54990. source: "./media/characters/nakisha/nude.svg",
  54991. extra: 1917/1765,
  54992. bottom: 34/1951
  54993. }
  54994. },
  54995. },
  54996. [
  54997. {
  54998. name: "Normal",
  54999. height: math.unit(6 + 9/12, "feet"),
  55000. default: true
  55001. },
  55002. ]
  55003. ))
  55004. characterMakers.push(() => makeCharacter(
  55005. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55006. {
  55007. front: {
  55008. height: math.unit(87, "meters"),
  55009. name: "Front",
  55010. image: {
  55011. source: "./media/characters/serafin/front.svg",
  55012. extra: 1919/1776,
  55013. bottom: 65/1984
  55014. }
  55015. },
  55016. },
  55017. [
  55018. {
  55019. name: "Normal",
  55020. height: math.unit(87, "meters"),
  55021. default: true
  55022. },
  55023. ]
  55024. ))
  55025. characterMakers.push(() => makeCharacter(
  55026. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55027. {
  55028. front: {
  55029. height: math.unit(6, "feet"),
  55030. weight: math.unit(200, "lb"),
  55031. name: "Front",
  55032. image: {
  55033. source: "./media/characters/poptart/front.svg",
  55034. extra: 615/583,
  55035. bottom: 23/638
  55036. }
  55037. },
  55038. back: {
  55039. height: math.unit(6, "feet"),
  55040. weight: math.unit(200, "lb"),
  55041. name: "Back",
  55042. image: {
  55043. source: "./media/characters/poptart/back.svg",
  55044. extra: 617/584,
  55045. bottom: 22/639
  55046. }
  55047. },
  55048. frontNsfw: {
  55049. height: math.unit(6, "feet"),
  55050. weight: math.unit(200, "lb"),
  55051. name: "Front (NSFW)",
  55052. image: {
  55053. source: "./media/characters/poptart/front-nsfw.svg",
  55054. extra: 615/583,
  55055. bottom: 23/638
  55056. }
  55057. },
  55058. backNsfw: {
  55059. height: math.unit(6, "feet"),
  55060. weight: math.unit(200, "lb"),
  55061. name: "Back (NSFW)",
  55062. image: {
  55063. source: "./media/characters/poptart/back-nsfw.svg",
  55064. extra: 617/584,
  55065. bottom: 22/639
  55066. }
  55067. },
  55068. hand: {
  55069. height: math.unit(1.14, "feet"),
  55070. name: "Hand",
  55071. image: {
  55072. source: "./media/characters/poptart/hand.svg"
  55073. }
  55074. },
  55075. foot: {
  55076. height: math.unit(1.5, "feet"),
  55077. name: "Foot",
  55078. image: {
  55079. source: "./media/characters/poptart/foot.svg"
  55080. }
  55081. },
  55082. },
  55083. [
  55084. {
  55085. name: "Normal",
  55086. height: math.unit(6, "feet"),
  55087. default: true
  55088. },
  55089. {
  55090. name: "Grande",
  55091. height: math.unit(350, "feet")
  55092. },
  55093. {
  55094. name: "Massif",
  55095. height: math.unit(967, "feet")
  55096. },
  55097. ]
  55098. ))
  55099. characterMakers.push(() => makeCharacter(
  55100. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55101. {
  55102. hyenaSide: {
  55103. height: math.unit(120, "cm"),
  55104. weight: math.unit(120, "lb"),
  55105. name: "Side",
  55106. image: {
  55107. source: "./media/characters/trance/hyena-side.svg",
  55108. extra: 998/904,
  55109. bottom: 76/1074
  55110. }
  55111. },
  55112. },
  55113. [
  55114. {
  55115. name: "Normal",
  55116. height: math.unit(120, "cm"),
  55117. default: true
  55118. },
  55119. {
  55120. name: "Dire",
  55121. height: math.unit(230, "cm")
  55122. },
  55123. {
  55124. name: "Macro",
  55125. height: math.unit(37, "feet")
  55126. },
  55127. ]
  55128. ))
  55129. characterMakers.push(() => makeCharacter(
  55130. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55131. {
  55132. front: {
  55133. height: math.unit(6 + 3/12, "feet"),
  55134. name: "Front",
  55135. image: {
  55136. source: "./media/characters/michael-berretta/front.svg",
  55137. extra: 515/494,
  55138. bottom: 20/535
  55139. }
  55140. },
  55141. back: {
  55142. height: math.unit(6 + 3/12, "feet"),
  55143. name: "Back",
  55144. image: {
  55145. source: "./media/characters/michael-berretta/back.svg",
  55146. extra: 520/497,
  55147. bottom: 21/541
  55148. }
  55149. },
  55150. frontNsfw: {
  55151. height: math.unit(6 + 3/12, "feet"),
  55152. name: "Front (NSFW)",
  55153. image: {
  55154. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55155. extra: 515/494,
  55156. bottom: 20/535
  55157. }
  55158. },
  55159. dick: {
  55160. height: math.unit(1, "feet"),
  55161. name: "Dick",
  55162. image: {
  55163. source: "./media/characters/michael-berretta/dick.svg"
  55164. }
  55165. },
  55166. },
  55167. [
  55168. {
  55169. name: "Normal",
  55170. height: math.unit(6 + 3/12, "feet"),
  55171. default: true
  55172. },
  55173. {
  55174. name: "Big",
  55175. height: math.unit(12, "feet")
  55176. },
  55177. {
  55178. name: "Macro",
  55179. height: math.unit(187.5, "feet")
  55180. },
  55181. ]
  55182. ))
  55183. characterMakers.push(() => makeCharacter(
  55184. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55185. {
  55186. front: {
  55187. height: math.unit(9 + 9/12, "feet"),
  55188. weight: math.unit(1244, "lb"),
  55189. name: "Front",
  55190. image: {
  55191. source: "./media/characters/stella-edgecomb/front.svg",
  55192. extra: 1835/1706,
  55193. bottom: 49/1884
  55194. }
  55195. },
  55196. pen: {
  55197. height: math.unit(0.95, "feet"),
  55198. name: "Pen",
  55199. image: {
  55200. source: "./media/characters/stella-edgecomb/pen.svg"
  55201. }
  55202. },
  55203. },
  55204. [
  55205. {
  55206. name: "Cozy Bear",
  55207. height: math.unit(0.5, "inches")
  55208. },
  55209. {
  55210. name: "Normal",
  55211. height: math.unit(9 + 9/12, "feet"),
  55212. default: true
  55213. },
  55214. {
  55215. name: "Giga Bear",
  55216. height: math.unit(1, "mile")
  55217. },
  55218. {
  55219. name: "Great Bear",
  55220. height: math.unit(53, "miles")
  55221. },
  55222. {
  55223. name: "Goddess Bear",
  55224. height: math.unit(40000, "miles")
  55225. },
  55226. {
  55227. name: "Sun Bear",
  55228. height: math.unit(900000, "miles")
  55229. },
  55230. ]
  55231. ))
  55232. characterMakers.push(() => makeCharacter(
  55233. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55234. {
  55235. anthroFront: {
  55236. height: math.unit(556, "cm"),
  55237. weight: math.unit(2650, "kg"),
  55238. preyCapacity: math.unit(3, "people"),
  55239. name: "Front",
  55240. image: {
  55241. source: "./media/characters/ash´iika/front.svg",
  55242. extra: 710/673,
  55243. bottom: 15/725
  55244. },
  55245. form: "anthro",
  55246. default: true
  55247. },
  55248. anthroSide: {
  55249. height: math.unit(556, "cm"),
  55250. weight: math.unit(2650, "kg"),
  55251. preyCapacity: math.unit(3, "people"),
  55252. name: "Side",
  55253. image: {
  55254. source: "./media/characters/ash´iika/side.svg",
  55255. extra: 696/676,
  55256. bottom: 13/709
  55257. },
  55258. form: "anthro"
  55259. },
  55260. anthroDressed: {
  55261. height: math.unit(556, "cm"),
  55262. weight: math.unit(2650, "kg"),
  55263. preyCapacity: math.unit(3, "people"),
  55264. name: "Dressed",
  55265. image: {
  55266. source: "./media/characters/ash´iika/dressed.svg",
  55267. extra: 710/673,
  55268. bottom: 15/725
  55269. },
  55270. form: "anthro"
  55271. },
  55272. anthroHead: {
  55273. height: math.unit(3.5, "feet"),
  55274. name: "Head",
  55275. image: {
  55276. source: "./media/characters/ash´iika/head.svg",
  55277. extra: 348/291,
  55278. bottom: 45/393
  55279. },
  55280. form: "anthro"
  55281. },
  55282. feralSide: {
  55283. height: math.unit(870, "cm"),
  55284. weight: math.unit(17500, "kg"),
  55285. preyCapacity: math.unit(15, "people"),
  55286. name: "Side",
  55287. image: {
  55288. source: "./media/characters/ash´iika/feral.svg",
  55289. extra: 595/199,
  55290. bottom: 7/602
  55291. },
  55292. form: "feral",
  55293. default: true,
  55294. },
  55295. },
  55296. [
  55297. {
  55298. name: "Normal",
  55299. height: math.unit(556, "cm"),
  55300. default: true,
  55301. form: "anthro"
  55302. },
  55303. {
  55304. name: "Macro",
  55305. height: math.unit(88, "meters"),
  55306. form: "anthro"
  55307. },
  55308. {
  55309. name: "Normal",
  55310. height: math.unit(870, "cm"),
  55311. default: true,
  55312. form: "feral"
  55313. },
  55314. {
  55315. name: "Large",
  55316. height: math.unit(25, "meters"),
  55317. form: "feral"
  55318. },
  55319. ],
  55320. {
  55321. "anthro": {
  55322. name: "Anthro",
  55323. default: true
  55324. },
  55325. "feral": {
  55326. name: "Feral",
  55327. },
  55328. }
  55329. ))
  55330. characterMakers.push(() => makeCharacter(
  55331. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55332. {
  55333. front: {
  55334. height: math.unit(10, "feet"),
  55335. weight: math.unit(800, "lb"),
  55336. name: "Front",
  55337. image: {
  55338. source: "./media/characters/yen/front.svg",
  55339. extra: 443/411,
  55340. bottom: 6/449
  55341. }
  55342. },
  55343. sleeping: {
  55344. height: math.unit(10, "feet"),
  55345. weight: math.unit(800, "lb"),
  55346. name: "Sleeping",
  55347. image: {
  55348. source: "./media/characters/yen/sleeping.svg",
  55349. extra: 470/422,
  55350. bottom: 0/470
  55351. }
  55352. },
  55353. head: {
  55354. height: math.unit(2.2, "feet"),
  55355. name: "Head",
  55356. image: {
  55357. source: "./media/characters/yen/head.svg"
  55358. }
  55359. },
  55360. headAlt: {
  55361. height: math.unit(2.1, "feet"),
  55362. name: "Head (Alt)",
  55363. image: {
  55364. source: "./media/characters/yen/head-alt.svg"
  55365. }
  55366. },
  55367. },
  55368. [
  55369. {
  55370. name: "Normal",
  55371. height: math.unit(10, "feet"),
  55372. default: true
  55373. },
  55374. ]
  55375. ))
  55376. characterMakers.push(() => makeCharacter(
  55377. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55378. {
  55379. front: {
  55380. height: math.unit(12, "feet"),
  55381. name: "Front",
  55382. image: {
  55383. source: "./media/characters/citra/front.svg",
  55384. extra: 1950/1710,
  55385. bottom: 47/1997
  55386. }
  55387. },
  55388. },
  55389. [
  55390. {
  55391. name: "Normal",
  55392. height: math.unit(12, "feet"),
  55393. default: true
  55394. },
  55395. ]
  55396. ))
  55397. characterMakers.push(() => makeCharacter(
  55398. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55399. {
  55400. side: {
  55401. height: math.unit(7 + 10/12, "feet"),
  55402. name: "Side",
  55403. image: {
  55404. source: "./media/characters/sholstim/side.svg",
  55405. extra: 786/682,
  55406. bottom: 40/826
  55407. }
  55408. },
  55409. },
  55410. [
  55411. {
  55412. name: "Normal",
  55413. height: math.unit(7 + 10/12, "feet"),
  55414. default: true
  55415. },
  55416. ]
  55417. ))
  55418. characterMakers.push(() => makeCharacter(
  55419. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55420. {
  55421. front: {
  55422. height: math.unit(3.10, "meters"),
  55423. name: "Front",
  55424. image: {
  55425. source: "./media/characters/aggyn/front.svg",
  55426. extra: 1188/963,
  55427. bottom: 24/1212
  55428. }
  55429. },
  55430. },
  55431. [
  55432. {
  55433. name: "Normal",
  55434. height: math.unit(3.10, "meters"),
  55435. default: true
  55436. },
  55437. ]
  55438. ))
  55439. characterMakers.push(() => makeCharacter(
  55440. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55441. {
  55442. front: {
  55443. height: math.unit(7 + 5/12, "feet"),
  55444. weight: math.unit(687, "lb"),
  55445. name: "Front",
  55446. image: {
  55447. source: "./media/characters/alsandair-hergenroether/front.svg",
  55448. extra: 1251/1186,
  55449. bottom: 75/1326
  55450. }
  55451. },
  55452. back: {
  55453. height: math.unit(7 + 5/12, "feet"),
  55454. weight: math.unit(687, "lb"),
  55455. name: "Back",
  55456. image: {
  55457. source: "./media/characters/alsandair-hergenroether/back.svg",
  55458. extra: 1290/1229,
  55459. bottom: 17/1307
  55460. }
  55461. },
  55462. },
  55463. [
  55464. {
  55465. name: "Max Compression",
  55466. height: math.unit(7 + 5/12, "feet"),
  55467. default: true
  55468. },
  55469. {
  55470. name: "\"Normal\"",
  55471. height: math.unit(2, "universes")
  55472. },
  55473. ]
  55474. ))
  55475. characterMakers.push(() => makeCharacter(
  55476. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55477. {
  55478. front: {
  55479. height: math.unit(4 + 1/12, "feet"),
  55480. weight: math.unit(92, "lb"),
  55481. name: "Front",
  55482. image: {
  55483. source: "./media/characters/ie/front.svg",
  55484. extra: 1585/1352,
  55485. bottom: 91/1676
  55486. }
  55487. },
  55488. },
  55489. [
  55490. {
  55491. name: "Normal",
  55492. height: math.unit(4 + 1/12, "feet"),
  55493. default: true
  55494. },
  55495. ]
  55496. ))
  55497. characterMakers.push(() => makeCharacter(
  55498. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55499. {
  55500. anthro: {
  55501. height: math.unit(6, "feet"),
  55502. weight: math.unit(150, "lb"),
  55503. name: "Front",
  55504. image: {
  55505. source: "./media/characters/willow/anthro.svg",
  55506. extra: 1073/986,
  55507. bottom: 34/1107
  55508. },
  55509. form: "anthro",
  55510. default: true
  55511. },
  55512. taur: {
  55513. height: math.unit(6, "feet"),
  55514. weight: math.unit(150, "lb"),
  55515. name: "Side",
  55516. image: {
  55517. source: "./media/characters/willow/taur.svg",
  55518. extra: 647/512,
  55519. bottom: 136/783
  55520. },
  55521. form: "taur",
  55522. default: true
  55523. },
  55524. },
  55525. [
  55526. {
  55527. name: "Humanoid",
  55528. height: math.unit(2.7, "meters"),
  55529. form: "anthro"
  55530. },
  55531. {
  55532. name: "Normal",
  55533. height: math.unit(9, "meters"),
  55534. form: "anthro",
  55535. default: true
  55536. },
  55537. {
  55538. name: "Humanoid",
  55539. height: math.unit(2.1, "meters"),
  55540. form: "taur"
  55541. },
  55542. {
  55543. name: "Normal",
  55544. height: math.unit(7, "meters"),
  55545. form: "taur",
  55546. default: true
  55547. },
  55548. ],
  55549. {
  55550. "anthro": {
  55551. name: "Anthro",
  55552. default: true
  55553. },
  55554. "taur": {
  55555. name: "Taur",
  55556. },
  55557. }
  55558. ))
  55559. characterMakers.push(() => makeCharacter(
  55560. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55561. {
  55562. front: {
  55563. height: math.unit(2 + 5/12, "feet"),
  55564. name: "Front",
  55565. image: {
  55566. source: "./media/characters/kyan/front.svg",
  55567. extra: 460/334,
  55568. bottom: 23/483
  55569. },
  55570. extraAttributes: {
  55571. "toeLength": {
  55572. name: "Toe Length",
  55573. power: 1,
  55574. type: "length",
  55575. base: math.unit(7, "cm")
  55576. },
  55577. "toeclawLength": {
  55578. name: "Toeclaw Length",
  55579. power: 1,
  55580. type: "length",
  55581. base: math.unit(4.7, "cm")
  55582. },
  55583. "earHeight": {
  55584. name: "Ear Height",
  55585. power: 1,
  55586. type: "length",
  55587. base: math.unit(14.1, "cm")
  55588. },
  55589. }
  55590. },
  55591. paws: {
  55592. height: math.unit(0.45, "feet"),
  55593. name: "Paws",
  55594. image: {
  55595. source: "./media/characters/kyan/paws.svg",
  55596. extra: 581/581,
  55597. bottom: 114/695
  55598. }
  55599. },
  55600. },
  55601. [
  55602. {
  55603. name: "Normal",
  55604. height: math.unit(2 + 5/12, "feet"),
  55605. default: true
  55606. },
  55607. ]
  55608. ))
  55609. characterMakers.push(() => makeCharacter(
  55610. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55611. {
  55612. front: {
  55613. height: math.unit(2 + 2/3, "feet"),
  55614. name: "Front",
  55615. image: {
  55616. source: "./media/characters/xazzon/front.svg",
  55617. extra: 1109/984,
  55618. bottom: 42/1151
  55619. }
  55620. },
  55621. back: {
  55622. height: math.unit(2 + 2/3, "feet"),
  55623. name: "Back",
  55624. image: {
  55625. source: "./media/characters/xazzon/back.svg",
  55626. extra: 1095/971,
  55627. bottom: 23/1118
  55628. }
  55629. },
  55630. },
  55631. [
  55632. {
  55633. name: "Normal",
  55634. height: math.unit(2 + 2/3, "feet"),
  55635. default: true
  55636. },
  55637. ]
  55638. ))
  55639. characterMakers.push(() => makeCharacter(
  55640. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55641. {
  55642. front: {
  55643. height: math.unit(8, "feet"),
  55644. weight: math.unit(300, "lb"),
  55645. name: "Front",
  55646. image: {
  55647. source: "./media/characters/khyla-shadowsong/front.svg",
  55648. extra: 861/798,
  55649. bottom: 32/893
  55650. }
  55651. },
  55652. side: {
  55653. height: math.unit(8, "feet"),
  55654. weight: math.unit(300, "lb"),
  55655. name: "Side",
  55656. image: {
  55657. source: "./media/characters/khyla-shadowsong/side.svg",
  55658. extra: 790/750,
  55659. bottom: 87/877
  55660. }
  55661. },
  55662. back: {
  55663. height: math.unit(8, "feet"),
  55664. weight: math.unit(300, "lb"),
  55665. name: "Back",
  55666. image: {
  55667. source: "./media/characters/khyla-shadowsong/back.svg",
  55668. extra: 855/808,
  55669. bottom: 14/869
  55670. }
  55671. },
  55672. head: {
  55673. height: math.unit(2.7, "feet"),
  55674. name: "Head",
  55675. image: {
  55676. source: "./media/characters/khyla-shadowsong/head.svg"
  55677. }
  55678. },
  55679. },
  55680. [
  55681. {
  55682. name: "Micro",
  55683. height: math.unit(6, "inches")
  55684. },
  55685. {
  55686. name: "Normal",
  55687. height: math.unit(8, "feet"),
  55688. default: true
  55689. },
  55690. ]
  55691. ))
  55692. characterMakers.push(() => makeCharacter(
  55693. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55694. {
  55695. hyperFront: {
  55696. height: math.unit(9 + 4/12, "feet"),
  55697. weight: math.unit(2000, "lb"),
  55698. name: "Front",
  55699. image: {
  55700. source: "./media/characters/tiden/hyper-front.svg",
  55701. extra: 400/382,
  55702. bottom: 6/406
  55703. },
  55704. form: "hyper",
  55705. },
  55706. regularFront: {
  55707. height: math.unit(7 + 10/12, "feet"),
  55708. weight: math.unit(470, "lb"),
  55709. name: "Front",
  55710. image: {
  55711. source: "./media/characters/tiden/regular-front.svg",
  55712. extra: 468/442,
  55713. bottom: 6/474
  55714. },
  55715. form: "regular",
  55716. },
  55717. },
  55718. [
  55719. {
  55720. name: "Normal",
  55721. height: math.unit(9 + 4/12, "feet"),
  55722. default: true,
  55723. form: "hyper"
  55724. },
  55725. {
  55726. name: "Normal",
  55727. height: math.unit(7 + 10/12, "feet"),
  55728. default: true,
  55729. form: "regular"
  55730. },
  55731. ],
  55732. {
  55733. "hyper": {
  55734. name: "Hyper",
  55735. default: true
  55736. },
  55737. "regular": {
  55738. name: "Regular",
  55739. },
  55740. }
  55741. ))
  55742. characterMakers.push(() => makeCharacter(
  55743. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55744. {
  55745. side: {
  55746. height: math.unit(6, "feet"),
  55747. weight: math.unit(150, "lb"),
  55748. name: "Side",
  55749. image: {
  55750. source: "./media/characters/jason-crowe/side.svg",
  55751. extra: 1771/766,
  55752. bottom: 219/1990
  55753. }
  55754. },
  55755. },
  55756. [
  55757. {
  55758. name: "Pocket Gryphon",
  55759. height: math.unit(6, "cm")
  55760. },
  55761. {
  55762. name: "Raven",
  55763. height: math.unit(60, "cm")
  55764. },
  55765. {
  55766. name: "Normal",
  55767. height: math.unit(1, "meter"),
  55768. default: true
  55769. },
  55770. ]
  55771. ))
  55772. characterMakers.push(() => makeCharacter(
  55773. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55774. {
  55775. front: {
  55776. height: math.unit(9 + 6/12, "feet"),
  55777. weight: math.unit(1100, "lb"),
  55778. name: "Front",
  55779. image: {
  55780. source: "./media/characters/django/front.svg",
  55781. extra: 1231/1136,
  55782. bottom: 34/1265
  55783. }
  55784. },
  55785. side: {
  55786. height: math.unit(9 + 6/12, "feet"),
  55787. weight: math.unit(1100, "lb"),
  55788. name: "Side",
  55789. image: {
  55790. source: "./media/characters/django/side.svg",
  55791. extra: 1267/1174,
  55792. bottom: 9/1276
  55793. }
  55794. },
  55795. },
  55796. [
  55797. {
  55798. name: "Normal",
  55799. height: math.unit(9 + 6/12, "feet"),
  55800. default: true
  55801. },
  55802. {
  55803. name: "Macro 1",
  55804. height: math.unit(50, "feet")
  55805. },
  55806. {
  55807. name: "Macro 2",
  55808. height: math.unit(500, "feet")
  55809. },
  55810. {
  55811. name: "Mega Macro",
  55812. height: math.unit(5300, "feet")
  55813. },
  55814. ]
  55815. ))
  55816. characterMakers.push(() => makeCharacter(
  55817. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55818. {
  55819. frontSfw: {
  55820. height: math.unit(120, "cm"),
  55821. weight: math.unit(15, "kg"),
  55822. name: "Front (SFW)",
  55823. image: {
  55824. source: "./media/characters/eri/front-sfw.svg",
  55825. extra: 1014/939,
  55826. bottom: 37/1051
  55827. },
  55828. form: "moth",
  55829. },
  55830. frontNsfw: {
  55831. height: math.unit(120, "cm"),
  55832. weight: math.unit(15, "kg"),
  55833. name: "Front (NSFW)",
  55834. image: {
  55835. source: "./media/characters/eri/front-nsfw.svg",
  55836. extra: 1014/939,
  55837. bottom: 37/1051
  55838. },
  55839. form: "moth",
  55840. default: true
  55841. },
  55842. egg: {
  55843. height: math.unit(10, "cm"),
  55844. name: "Egg",
  55845. image: {
  55846. source: "./media/characters/eri/egg.svg"
  55847. },
  55848. form: "egg",
  55849. default: true
  55850. },
  55851. },
  55852. [
  55853. {
  55854. name: "Normal",
  55855. height: math.unit(120, "cm"),
  55856. default: true,
  55857. form: "moth"
  55858. },
  55859. {
  55860. name: "Normal",
  55861. height: math.unit(10, "cm"),
  55862. default: true,
  55863. form: "egg"
  55864. },
  55865. ],
  55866. {
  55867. "moth": {
  55868. name: "Moth",
  55869. default: true
  55870. },
  55871. "egg": {
  55872. name: "Egg",
  55873. },
  55874. }
  55875. ))
  55876. characterMakers.push(() => makeCharacter(
  55877. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55878. {
  55879. front: {
  55880. height: math.unit(200, "feet"),
  55881. name: "Front",
  55882. image: {
  55883. source: "./media/characters/bishop-dowser/front.svg",
  55884. extra: 933/868,
  55885. bottom: 106/1039
  55886. }
  55887. },
  55888. },
  55889. [
  55890. {
  55891. name: "Giant",
  55892. height: math.unit(200, "feet"),
  55893. default: true
  55894. },
  55895. ]
  55896. ))
  55897. characterMakers.push(() => makeCharacter(
  55898. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55899. {
  55900. front: {
  55901. height: math.unit(2, "meters"),
  55902. preyCapacity: math.unit(3, "people"),
  55903. name: "Front",
  55904. image: {
  55905. source: "./media/characters/fryra/front.svg",
  55906. extra: 1025/948,
  55907. bottom: 30/1055
  55908. },
  55909. extraAttributes: {
  55910. "breastVolume": {
  55911. name: "Breast Volume",
  55912. power: 3,
  55913. type: "volume",
  55914. base: math.unit(8, "liters")
  55915. },
  55916. }
  55917. },
  55918. back: {
  55919. height: math.unit(2, "meters"),
  55920. preyCapacity: math.unit(3, "people"),
  55921. name: "Back",
  55922. image: {
  55923. source: "./media/characters/fryra/back.svg",
  55924. extra: 993/938,
  55925. bottom: 38/1031
  55926. },
  55927. extraAttributes: {
  55928. "breastVolume": {
  55929. name: "Breast Volume",
  55930. power: 3,
  55931. type: "volume",
  55932. base: math.unit(8, "liters")
  55933. },
  55934. }
  55935. },
  55936. head: {
  55937. height: math.unit(1.33, "feet"),
  55938. name: "Head",
  55939. image: {
  55940. source: "./media/characters/fryra/head.svg"
  55941. }
  55942. },
  55943. maw: {
  55944. height: math.unit(0.56, "feet"),
  55945. name: "Maw",
  55946. image: {
  55947. source: "./media/characters/fryra/maw.svg"
  55948. }
  55949. },
  55950. },
  55951. [
  55952. {
  55953. name: "Micro",
  55954. height: math.unit(5, "cm")
  55955. },
  55956. {
  55957. name: "Normal",
  55958. height: math.unit(2, "meters"),
  55959. default: true
  55960. },
  55961. {
  55962. name: "Small Macro",
  55963. height: math.unit(8, "meters")
  55964. },
  55965. {
  55966. name: "Macro",
  55967. height: math.unit(50, "meters")
  55968. },
  55969. {
  55970. name: "Megamacro",
  55971. height: math.unit(1, "km")
  55972. },
  55973. {
  55974. name: "Planetary",
  55975. height: math.unit(300000, "km")
  55976. },
  55977. {
  55978. name: "Universal",
  55979. height: math.unit(250, "lightyears")
  55980. },
  55981. {
  55982. name: "Fabric of Reality",
  55983. height: math.unit(1000, "multiverses")
  55984. },
  55985. ]
  55986. ))
  55987. characterMakers.push(() => makeCharacter(
  55988. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55989. {
  55990. frontDressed: {
  55991. height: math.unit(6 + 2/12, "feet"),
  55992. name: "Front (Dressed)",
  55993. image: {
  55994. source: "./media/characters/fiera/front-dressed.svg",
  55995. extra: 1883/1793,
  55996. bottom: 70/1953
  55997. }
  55998. },
  55999. backDressed: {
  56000. height: math.unit(6 + 2/12, "feet"),
  56001. name: "Back (Dressed)",
  56002. image: {
  56003. source: "./media/characters/fiera/back-dressed.svg",
  56004. extra: 1847/1780,
  56005. bottom: 70/1917
  56006. }
  56007. },
  56008. frontNude: {
  56009. height: math.unit(6 + 2/12, "feet"),
  56010. name: "Front (Nude)",
  56011. image: {
  56012. source: "./media/characters/fiera/front-nude.svg",
  56013. extra: 1875/1785,
  56014. bottom: 66/1941
  56015. }
  56016. },
  56017. backNude: {
  56018. height: math.unit(6 + 2/12, "feet"),
  56019. name: "Back (Nude)",
  56020. image: {
  56021. source: "./media/characters/fiera/back-nude.svg",
  56022. extra: 1855/1788,
  56023. bottom: 44/1899
  56024. }
  56025. },
  56026. maw: {
  56027. height: math.unit(1.3, "feet"),
  56028. name: "Maw",
  56029. image: {
  56030. source: "./media/characters/fiera/maw.svg"
  56031. }
  56032. },
  56033. paw: {
  56034. height: math.unit(1, "feet"),
  56035. name: "Paw",
  56036. image: {
  56037. source: "./media/characters/fiera/paw.svg"
  56038. }
  56039. },
  56040. shoe: {
  56041. height: math.unit(1.05, "feet"),
  56042. name: "Shoe",
  56043. image: {
  56044. source: "./media/characters/fiera/shoe.svg"
  56045. }
  56046. },
  56047. },
  56048. [
  56049. {
  56050. name: "Normal",
  56051. height: math.unit(6 + 2/12, "feet"),
  56052. default: true
  56053. },
  56054. {
  56055. name: "Size Difference",
  56056. height: math.unit(13, "feet")
  56057. },
  56058. {
  56059. name: "Macro",
  56060. height: math.unit(60, "feet")
  56061. },
  56062. {
  56063. name: "Mega Macro",
  56064. height: math.unit(200, "feet")
  56065. },
  56066. ]
  56067. ))
  56068. characterMakers.push(() => makeCharacter(
  56069. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56070. {
  56071. back: {
  56072. height: math.unit(6, "feet"),
  56073. name: "Back",
  56074. image: {
  56075. source: "./media/characters/flare/back.svg",
  56076. extra: 1883/1765,
  56077. bottom: 32/1915
  56078. }
  56079. },
  56080. },
  56081. [
  56082. {
  56083. name: "Normal",
  56084. height: math.unit(6 + 2/12, "feet"),
  56085. default: true
  56086. },
  56087. {
  56088. name: "Size Difference",
  56089. height: math.unit(13, "feet")
  56090. },
  56091. {
  56092. name: "Macro",
  56093. height: math.unit(60, "feet")
  56094. },
  56095. {
  56096. name: "Macro 2",
  56097. height: math.unit(100, "feet")
  56098. },
  56099. {
  56100. name: "Mega Macro",
  56101. height: math.unit(200, "feet")
  56102. },
  56103. ]
  56104. ))
  56105. characterMakers.push(() => makeCharacter(
  56106. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56107. {
  56108. front: {
  56109. height: math.unit(2.2, "m"),
  56110. weight: math.unit(300, "kg"),
  56111. name: "Front",
  56112. image: {
  56113. source: "./media/characters/hanna/front.svg",
  56114. extra: 1696/1502,
  56115. bottom: 206/1902
  56116. }
  56117. },
  56118. },
  56119. [
  56120. {
  56121. name: "Humanoid",
  56122. height: math.unit(2.2, "meters")
  56123. },
  56124. {
  56125. name: "Normal",
  56126. height: math.unit(4.8, "meters"),
  56127. default: true
  56128. },
  56129. ]
  56130. ))
  56131. characterMakers.push(() => makeCharacter(
  56132. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56133. {
  56134. front: {
  56135. height: math.unit(2.8, "meters"),
  56136. name: "Front",
  56137. image: {
  56138. source: "./media/characters/argo/front.svg",
  56139. extra: 731/518,
  56140. bottom: 84/815
  56141. }
  56142. },
  56143. },
  56144. [
  56145. {
  56146. name: "Normal",
  56147. height: math.unit(3, "meters"),
  56148. default: true
  56149. },
  56150. ]
  56151. ))
  56152. characterMakers.push(() => makeCharacter(
  56153. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56154. {
  56155. side: {
  56156. height: math.unit(3.8, "meters"),
  56157. name: "Side",
  56158. image: {
  56159. source: "./media/characters/sybil/side.svg",
  56160. extra: 382/361,
  56161. bottom: 25/407
  56162. }
  56163. },
  56164. },
  56165. [
  56166. {
  56167. name: "Normal",
  56168. height: math.unit(3.8, "meters"),
  56169. default: true
  56170. },
  56171. ]
  56172. ))
  56173. characterMakers.push(() => makeCharacter(
  56174. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56175. {
  56176. side: {
  56177. height: math.unit(6, "meters"),
  56178. name: "Side",
  56179. image: {
  56180. source: "./media/characters/plum/side.svg",
  56181. extra: 858/755,
  56182. bottom: 45/903
  56183. },
  56184. form: "taur",
  56185. default: true
  56186. },
  56187. back: {
  56188. height: math.unit(6.3, "meters"),
  56189. name: "Back",
  56190. image: {
  56191. source: "./media/characters/plum/back.svg",
  56192. extra: 887/813,
  56193. bottom: 32/919
  56194. },
  56195. form: "taur",
  56196. },
  56197. feral: {
  56198. height: math.unit(5.5, "meter"),
  56199. name: "Front",
  56200. image: {
  56201. source: "./media/characters/plum/feral.svg",
  56202. extra: 568/403,
  56203. bottom: 51/619
  56204. },
  56205. form: "feral",
  56206. default: true
  56207. },
  56208. head: {
  56209. height: math.unit(1.46, "meter"),
  56210. name: "Head",
  56211. image: {
  56212. source: "./media/characters/plum/head.svg"
  56213. },
  56214. form: "taur"
  56215. },
  56216. tailTop: {
  56217. height: math.unit(5.6, "meter"),
  56218. name: "Tail (Top)",
  56219. image: {
  56220. source: "./media/characters/plum/tail-top.svg"
  56221. },
  56222. form: "taur",
  56223. },
  56224. tailBottom: {
  56225. height: math.unit(5.6, "meter"),
  56226. name: "Tail (Bottom)",
  56227. image: {
  56228. source: "./media/characters/plum/tail-bottom.svg"
  56229. },
  56230. form: "taur",
  56231. },
  56232. feralHead: {
  56233. height: math.unit(2.56549521, "meter"),
  56234. name: "Head",
  56235. image: {
  56236. source: "./media/characters/plum/head.svg"
  56237. },
  56238. form: "feral"
  56239. },
  56240. feralTailTop: {
  56241. height: math.unit(5.44728435, "meter"),
  56242. name: "Tail (Top)",
  56243. image: {
  56244. source: "./media/characters/plum/tail-top.svg"
  56245. },
  56246. form: "feral",
  56247. },
  56248. feralTailBottom: {
  56249. height: math.unit(5.44728435, "meter"),
  56250. name: "Tail (Bottom)",
  56251. image: {
  56252. source: "./media/characters/plum/tail-bottom.svg"
  56253. },
  56254. form: "feral",
  56255. },
  56256. },
  56257. [
  56258. {
  56259. name: "Normal",
  56260. height: math.unit(6, "meters"),
  56261. default: true,
  56262. form: "taur"
  56263. },
  56264. {
  56265. name: "Normal",
  56266. height: math.unit(5.5, "meters"),
  56267. default: true,
  56268. form: "feral"
  56269. },
  56270. ],
  56271. {
  56272. "taur": {
  56273. name: "Taur",
  56274. default: true
  56275. },
  56276. "feral": {
  56277. name: "Feral",
  56278. },
  56279. }
  56280. ))
  56281. characterMakers.push(() => makeCharacter(
  56282. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56283. {
  56284. front: {
  56285. height: math.unit(6, "feet"),
  56286. weight: math.unit(115, "lb"),
  56287. name: "Front",
  56288. image: {
  56289. source: "./media/characters/celeste-kitsune/front.svg",
  56290. extra: 393/366,
  56291. bottom: 7/400
  56292. }
  56293. },
  56294. side: {
  56295. height: math.unit(6, "feet"),
  56296. weight: math.unit(115, "lb"),
  56297. name: "Side",
  56298. image: {
  56299. source: "./media/characters/celeste-kitsune/side.svg",
  56300. extra: 818/765,
  56301. bottom: 40/858
  56302. }
  56303. },
  56304. },
  56305. [
  56306. {
  56307. name: "Megamacro",
  56308. height: math.unit(1500, "miles"),
  56309. default: true
  56310. },
  56311. ]
  56312. ))
  56313. characterMakers.push(() => makeCharacter(
  56314. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56315. {
  56316. front: {
  56317. height: math.unit(8, "meters"),
  56318. name: "Front",
  56319. image: {
  56320. source: "./media/characters/io/front.svg",
  56321. extra: 865/722,
  56322. bottom: 58/923
  56323. }
  56324. },
  56325. back: {
  56326. height: math.unit(8, "meters"),
  56327. name: "Back",
  56328. image: {
  56329. source: "./media/characters/io/back.svg",
  56330. extra: 920/776,
  56331. bottom: 42/962
  56332. }
  56333. },
  56334. head: {
  56335. height: math.unit(5.09, "meters"),
  56336. name: "Head",
  56337. image: {
  56338. source: "./media/characters/io/head.svg"
  56339. }
  56340. },
  56341. hand: {
  56342. height: math.unit(1.6, "meters"),
  56343. name: "Hand",
  56344. image: {
  56345. source: "./media/characters/io/hand.svg"
  56346. }
  56347. },
  56348. foot: {
  56349. height: math.unit(2.4, "meters"),
  56350. name: "Foot",
  56351. image: {
  56352. source: "./media/characters/io/foot.svg"
  56353. }
  56354. },
  56355. },
  56356. [
  56357. {
  56358. name: "Normal",
  56359. height: math.unit(8, "meters"),
  56360. default: true
  56361. },
  56362. ]
  56363. ))
  56364. characterMakers.push(() => makeCharacter(
  56365. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56366. {
  56367. side: {
  56368. height: math.unit(6 + 3/12, "feet"),
  56369. weight: math.unit(225, "lb"),
  56370. name: "Side",
  56371. image: {
  56372. source: "./media/characters/silas/side.svg",
  56373. extra: 703/653,
  56374. bottom: 23/726
  56375. },
  56376. extraAttributes: {
  56377. "pawLength": {
  56378. name: "Paw Length",
  56379. power: 1,
  56380. type: "length",
  56381. base: math.unit(12, "inches")
  56382. },
  56383. "pawWidth": {
  56384. name: "Paw Width",
  56385. power: 1,
  56386. type: "length",
  56387. base: math.unit(4.5, "inches")
  56388. },
  56389. "pawArea": {
  56390. name: "Paw Area",
  56391. power: 2,
  56392. type: "area",
  56393. base: math.unit(12 * 4.5, "inches^2")
  56394. },
  56395. }
  56396. },
  56397. },
  56398. [
  56399. {
  56400. name: "Normal",
  56401. height: math.unit(6 + 3/12, "feet"),
  56402. default: true
  56403. },
  56404. ]
  56405. ))
  56406. characterMakers.push(() => makeCharacter(
  56407. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56408. {
  56409. back: {
  56410. height: math.unit(1.6, "meters"),
  56411. weight: math.unit(150, "lb"),
  56412. name: "Back",
  56413. image: {
  56414. source: "./media/characters/zari/back.svg",
  56415. extra: 424/411,
  56416. bottom: 32/456
  56417. },
  56418. extraAttributes: {
  56419. "bladderCapacity": {
  56420. name: "Bladder Size",
  56421. power: 3,
  56422. type: "volume",
  56423. base: math.unit(500, "mL")
  56424. },
  56425. "bladderFlow": {
  56426. name: "Flow Rate",
  56427. power: 3,
  56428. type: "volume",
  56429. base: math.unit(25, "mL")
  56430. },
  56431. }
  56432. },
  56433. },
  56434. [
  56435. {
  56436. name: "Normal",
  56437. height: math.unit(1.6, "meters"),
  56438. default: true
  56439. },
  56440. ]
  56441. ))
  56442. characterMakers.push(() => makeCharacter(
  56443. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56444. {
  56445. front: {
  56446. height: math.unit(25, "feet"),
  56447. weight: math.unit(5, "tons"),
  56448. name: "Front",
  56449. image: {
  56450. source: "./media/characters/charlie-human/front.svg",
  56451. extra: 1870/1740,
  56452. bottom: 102/1972
  56453. },
  56454. extraAttributes: {
  56455. "dickLength": {
  56456. name: "Dick Length",
  56457. power: 1,
  56458. type: "length",
  56459. base: math.unit(9, "feet")
  56460. },
  56461. }
  56462. },
  56463. back: {
  56464. height: math.unit(25, "feet"),
  56465. weight: math.unit(5, "tons"),
  56466. name: "Back",
  56467. image: {
  56468. source: "./media/characters/charlie-human/back.svg",
  56469. extra: 1858/1733,
  56470. bottom: 105/1963
  56471. },
  56472. extraAttributes: {
  56473. "dickLength": {
  56474. name: "Dick Length",
  56475. power: 1,
  56476. type: "length",
  56477. base: math.unit(9, "feet")
  56478. },
  56479. }
  56480. },
  56481. },
  56482. [
  56483. {
  56484. name: "\"Normal\"",
  56485. height: math.unit(6 + 4/12, "feet")
  56486. },
  56487. {
  56488. name: "Big",
  56489. height: math.unit(25, "feet"),
  56490. default: true
  56491. },
  56492. ]
  56493. ))
  56494. characterMakers.push(() => makeCharacter(
  56495. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56496. {
  56497. front: {
  56498. height: math.unit(6 + 4/12, "feet"),
  56499. weight: math.unit(320, "lb"),
  56500. name: "Front",
  56501. image: {
  56502. source: "./media/characters/ookitsu/front.svg",
  56503. extra: 1160/976,
  56504. bottom: 38/1198
  56505. }
  56506. },
  56507. frontNsfw: {
  56508. height: math.unit(6 + 4/12, "feet"),
  56509. weight: math.unit(320, "lb"),
  56510. name: "Front (NSFW)",
  56511. image: {
  56512. source: "./media/characters/ookitsu/front-nsfw.svg",
  56513. extra: 1160/976,
  56514. bottom: 38/1198
  56515. }
  56516. },
  56517. back: {
  56518. height: math.unit(6 + 4/12, "feet"),
  56519. weight: math.unit(320, "lb"),
  56520. name: "Back",
  56521. image: {
  56522. source: "./media/characters/ookitsu/back.svg",
  56523. extra: 1030/975,
  56524. bottom: 70/1100
  56525. }
  56526. },
  56527. head: {
  56528. height: math.unit(1.79, "feet"),
  56529. name: "Head",
  56530. image: {
  56531. source: "./media/characters/ookitsu/head.svg"
  56532. }
  56533. },
  56534. hand: {
  56535. height: math.unit(0.92, "feet"),
  56536. name: "Hand",
  56537. image: {
  56538. source: "./media/characters/ookitsu/hand.svg"
  56539. }
  56540. },
  56541. tails: {
  56542. height: math.unit(3.3, "feet"),
  56543. name: "Tails",
  56544. image: {
  56545. source: "./media/characters/ookitsu/tails.svg"
  56546. }
  56547. },
  56548. dick: {
  56549. height: math.unit(1.10833, "feet"),
  56550. name: "Dick",
  56551. image: {
  56552. source: "./media/characters/ookitsu/dick.svg"
  56553. }
  56554. },
  56555. },
  56556. [
  56557. {
  56558. name: "Normal",
  56559. height: math.unit(6 + 4/12, "feet"),
  56560. default: true
  56561. },
  56562. {
  56563. name: "Macro",
  56564. height: math.unit(30, "feet")
  56565. },
  56566. ]
  56567. ))
  56568. characterMakers.push(() => makeCharacter(
  56569. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56570. {
  56571. anthroFront: {
  56572. height: math.unit(6, "feet"),
  56573. weight: math.unit(250, "lb"),
  56574. name: "Front",
  56575. image: {
  56576. source: "./media/characters/jhusky/anthro-front.svg",
  56577. extra: 474/439,
  56578. bottom: 7/481
  56579. },
  56580. form: "anthro",
  56581. default: true
  56582. },
  56583. taurSideSfw: {
  56584. height: math.unit(6 + 4/12, "feet"),
  56585. weight: math.unit(500, "lb"),
  56586. name: "Side (SFW)",
  56587. image: {
  56588. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56589. extra: 1741/1629,
  56590. bottom: 196/1937
  56591. },
  56592. form: "taur",
  56593. default: true
  56594. },
  56595. taurSideNsfw: {
  56596. height: math.unit(6 + 4/12, "feet"),
  56597. weight: math.unit(500, "lb"),
  56598. name: "Taur (NSFW)",
  56599. image: {
  56600. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56601. extra: 1741/1629,
  56602. bottom: 196/1937
  56603. },
  56604. form: "taur",
  56605. },
  56606. },
  56607. [
  56608. {
  56609. name: "Huge",
  56610. height: math.unit(500, "feet"),
  56611. form: "anthro"
  56612. },
  56613. {
  56614. name: "Macro",
  56615. height: math.unit(1000, "feet"),
  56616. default: true,
  56617. form: "anthro"
  56618. },
  56619. {
  56620. name: "Megamacro",
  56621. height: math.unit(10000, "feet"),
  56622. form: "anthro"
  56623. },
  56624. {
  56625. name: "Huge",
  56626. height: math.unit(528, "feet"),
  56627. form: "taur"
  56628. },
  56629. {
  56630. name: "Macro",
  56631. height: math.unit(1056, "feet"),
  56632. default: true,
  56633. form: "taur"
  56634. },
  56635. {
  56636. name: "Megamacro",
  56637. height: math.unit(10556, "feet"),
  56638. form: "taur"
  56639. },
  56640. ],
  56641. {
  56642. "anthro": {
  56643. name: "Anthro",
  56644. default: true
  56645. },
  56646. "taur": {
  56647. name: "Taur",
  56648. },
  56649. }
  56650. ))
  56651. characterMakers.push(() => makeCharacter(
  56652. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56653. {
  56654. front: {
  56655. height: math.unit(8, "feet"),
  56656. weight: math.unit(500, "lb"),
  56657. name: "Front",
  56658. image: {
  56659. source: "./media/characters/armail/front.svg",
  56660. extra: 1753/1669,
  56661. bottom: 155/1908
  56662. }
  56663. },
  56664. back: {
  56665. height: math.unit(8, "feet"),
  56666. weight: math.unit(500, "lb"),
  56667. name: "Back",
  56668. image: {
  56669. source: "./media/characters/armail/back.svg",
  56670. extra: 1872/1803,
  56671. bottom: 63/1935
  56672. }
  56673. },
  56674. },
  56675. [
  56676. {
  56677. name: "Micro",
  56678. height: math.unit(0.25, "feet")
  56679. },
  56680. {
  56681. name: "Normal",
  56682. height: math.unit(8, "feet"),
  56683. default: true
  56684. },
  56685. {
  56686. name: "Mini-macro",
  56687. height: math.unit(30, "feet")
  56688. },
  56689. {
  56690. name: "Macro",
  56691. height: math.unit(400, "feet")
  56692. },
  56693. {
  56694. name: "Mega-macro",
  56695. height: math.unit(6000, "feet")
  56696. },
  56697. ]
  56698. ))
  56699. characterMakers.push(() => makeCharacter(
  56700. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56701. {
  56702. front: {
  56703. height: math.unit(6 + 7/12, "feet"),
  56704. weight: math.unit(210, "lb"),
  56705. name: "Front",
  56706. image: {
  56707. source: "./media/characters/wilfred-t-buxton/front.svg",
  56708. extra: 1068/882,
  56709. bottom: 28/1096
  56710. }
  56711. },
  56712. },
  56713. [
  56714. {
  56715. name: "Normal",
  56716. height: math.unit(6 + 7/12, "feet"),
  56717. default: true
  56718. },
  56719. ]
  56720. ))
  56721. characterMakers.push(() => makeCharacter(
  56722. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56723. {
  56724. front: {
  56725. height: math.unit(5 + 2/12, "feet"),
  56726. weight: math.unit(120, "lb"),
  56727. name: "Front",
  56728. image: {
  56729. source: "./media/characters/leighton-marrow/front.svg",
  56730. extra: 441/409,
  56731. bottom: 37/478
  56732. }
  56733. },
  56734. },
  56735. [
  56736. {
  56737. name: "Normal",
  56738. height: math.unit(5 + 2/12, "feet"),
  56739. default: true
  56740. },
  56741. ]
  56742. ))
  56743. characterMakers.push(() => makeCharacter(
  56744. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56745. {
  56746. front: {
  56747. height: math.unit(4, "meters"),
  56748. weight: math.unit(1200, "kg"),
  56749. name: "Front",
  56750. image: {
  56751. source: "./media/characters/licos/front.svg",
  56752. extra: 1727/1604,
  56753. bottom: 101/1828
  56754. },
  56755. form: "anthro",
  56756. default: true
  56757. },
  56758. taur_side: {
  56759. height: math.unit(20, "meters"),
  56760. weight: math.unit(1100000, "kg"),
  56761. name: "Side",
  56762. image: {
  56763. source: "./media/characters/licos/taur.svg",
  56764. extra: 1158/1091,
  56765. bottom: 80/1238
  56766. },
  56767. form: "taur",
  56768. default: true
  56769. },
  56770. },
  56771. [
  56772. {
  56773. name: "Normal",
  56774. height: math.unit(4, "meters"),
  56775. default: true,
  56776. form: "anthro"
  56777. },
  56778. {
  56779. name: "Normal",
  56780. height: math.unit(20, "meters"),
  56781. default: true,
  56782. form: "taur"
  56783. },
  56784. ],
  56785. {
  56786. "anthro": {
  56787. name: "Anthro",
  56788. default: true
  56789. },
  56790. "taur": {
  56791. name: "Taur",
  56792. },
  56793. }
  56794. ))
  56795. characterMakers.push(() => makeCharacter(
  56796. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56797. {
  56798. front: {
  56799. height: math.unit(10 + 3/12, "feet"),
  56800. name: "Front",
  56801. image: {
  56802. source: "./media/characters/theo-monkey/front.svg",
  56803. extra: 1735/1658,
  56804. bottom: 73/1808
  56805. }
  56806. },
  56807. back: {
  56808. height: math.unit(10 + 3/12, "feet"),
  56809. name: "Back",
  56810. image: {
  56811. source: "./media/characters/theo-monkey/back.svg",
  56812. extra: 1742/1664,
  56813. bottom: 33/1775
  56814. }
  56815. },
  56816. head: {
  56817. height: math.unit(2.29, "feet"),
  56818. name: "Head",
  56819. image: {
  56820. source: "./media/characters/theo-monkey/head.svg"
  56821. }
  56822. },
  56823. handPalm: {
  56824. height: math.unit(1.73, "feet"),
  56825. name: "Hand (Palm)",
  56826. image: {
  56827. source: "./media/characters/theo-monkey/hand-palm.svg"
  56828. }
  56829. },
  56830. handBack: {
  56831. height: math.unit(1.63, "feet"),
  56832. name: "Hand (Back)",
  56833. image: {
  56834. source: "./media/characters/theo-monkey/hand-back.svg"
  56835. }
  56836. },
  56837. footSole: {
  56838. height: math.unit(2.15, "feet"),
  56839. name: "Foot (Sole)",
  56840. image: {
  56841. source: "./media/characters/theo-monkey/foot-sole.svg"
  56842. }
  56843. },
  56844. footSide: {
  56845. height: math.unit(1.6, "feet"),
  56846. name: "Foot (Side)",
  56847. image: {
  56848. source: "./media/characters/theo-monkey/foot-side.svg"
  56849. }
  56850. },
  56851. },
  56852. [
  56853. {
  56854. name: "Normal",
  56855. height: math.unit(10 + 3/12, "feet"),
  56856. default: true
  56857. },
  56858. ]
  56859. ))
  56860. characterMakers.push(() => makeCharacter(
  56861. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56862. {
  56863. front: {
  56864. height: math.unit(11, "feet"),
  56865. weight: math.unit(3000, "lb"),
  56866. preyCapacity: math.unit(10, "people"),
  56867. name: "Front",
  56868. image: {
  56869. source: "./media/characters/brook/front.svg",
  56870. extra: 909/835,
  56871. bottom: 108/1017
  56872. }
  56873. },
  56874. back: {
  56875. height: math.unit(11, "feet"),
  56876. weight: math.unit(3000, "lb"),
  56877. preyCapacity: math.unit(10, "people"),
  56878. name: "Back",
  56879. image: {
  56880. source: "./media/characters/brook/back.svg",
  56881. extra: 976/916,
  56882. bottom: 34/1010
  56883. }
  56884. },
  56885. backAlt: {
  56886. height: math.unit(11, "feet"),
  56887. weight: math.unit(3000, "lb"),
  56888. preyCapacity: math.unit(10, "people"),
  56889. name: "Back (Alt)",
  56890. image: {
  56891. source: "./media/characters/brook/back-alt.svg",
  56892. extra: 1283/1213,
  56893. bottom: 35/1318
  56894. }
  56895. },
  56896. bust: {
  56897. height: math.unit(9.0859030837, "feet"),
  56898. weight: math.unit(3000, "lb"),
  56899. preyCapacity: math.unit(10, "people"),
  56900. name: "Bust",
  56901. image: {
  56902. source: "./media/characters/brook/bust.svg",
  56903. extra: 2043/1923,
  56904. bottom: 0/2043
  56905. }
  56906. },
  56907. },
  56908. [
  56909. {
  56910. name: "Small",
  56911. height: math.unit(11, "feet"),
  56912. default: true
  56913. },
  56914. {
  56915. name: "Towering",
  56916. height: math.unit(5, "km")
  56917. },
  56918. {
  56919. name: "Enormous",
  56920. height: math.unit(25, "earths")
  56921. },
  56922. ]
  56923. ))
  56924. characterMakers.push(() => makeCharacter(
  56925. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56926. {
  56927. front: {
  56928. height: math.unit(4, "feet"),
  56929. weight: math.unit(150, "lb"),
  56930. name: "Front",
  56931. image: {
  56932. source: "./media/characters/squishi/front.svg",
  56933. extra: 1428/1271,
  56934. bottom: 30/1458
  56935. },
  56936. extraAttributes: {
  56937. "pawSize": {
  56938. name: "Paw Size",
  56939. power: 1,
  56940. type: "length",
  56941. base: math.unit(14, "ShoeSizeMensUS"),
  56942. defaultUnit: "ShoeSizeMensUS"
  56943. },
  56944. }
  56945. },
  56946. side: {
  56947. height: math.unit(4, "feet"),
  56948. weight: math.unit(150, "lb"),
  56949. name: "Side",
  56950. image: {
  56951. source: "./media/characters/squishi/side.svg",
  56952. extra: 1428/1271,
  56953. bottom: 30/1458
  56954. },
  56955. extraAttributes: {
  56956. "pawSize": {
  56957. name: "Paw Size",
  56958. power: 1,
  56959. type: "length",
  56960. base: math.unit(14, "ShoeSizeMensUS"),
  56961. defaultUnit: "ShoeSizeMensUS"
  56962. },
  56963. }
  56964. },
  56965. back: {
  56966. height: math.unit(4, "feet"),
  56967. weight: math.unit(150, "lb"),
  56968. name: "Back",
  56969. image: {
  56970. source: "./media/characters/squishi/back.svg",
  56971. extra: 1428/1271,
  56972. bottom: 30/1458
  56973. },
  56974. extraAttributes: {
  56975. "pawSize": {
  56976. name: "Paw Size",
  56977. power: 1,
  56978. type: "length",
  56979. base: math.unit(14, "ShoeSizeMensUS"),
  56980. defaultUnit: "ShoeSizeMensUS"
  56981. },
  56982. }
  56983. },
  56984. },
  56985. [
  56986. {
  56987. name: "Normal",
  56988. height: math.unit(4, "feet"),
  56989. default: true
  56990. },
  56991. ]
  56992. ))
  56993. characterMakers.push(() => makeCharacter(
  56994. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56995. {
  56996. front: {
  56997. height: math.unit(7 + 8/12, "feet"),
  56998. weight: math.unit(333, "lb"),
  56999. name: "Front",
  57000. image: {
  57001. source: "./media/characters/vincent-vasroc/front.svg",
  57002. extra: 1962/1860,
  57003. bottom: 41/2003
  57004. }
  57005. },
  57006. back: {
  57007. height: math.unit(7 + 8/12, "feet"),
  57008. weight: math.unit(333, "lb"),
  57009. name: "Back",
  57010. image: {
  57011. source: "./media/characters/vincent-vasroc/back.svg",
  57012. extra: 1952/1815,
  57013. bottom: 33/1985
  57014. }
  57015. },
  57016. paw: {
  57017. height: math.unit(1.24, "feet"),
  57018. name: "Paw",
  57019. image: {
  57020. source: "./media/characters/vincent-vasroc/paw.svg"
  57021. }
  57022. },
  57023. ear: {
  57024. height: math.unit(0.75, "feet"),
  57025. name: "Ear",
  57026. image: {
  57027. source: "./media/characters/vincent-vasroc/ear.svg"
  57028. }
  57029. },
  57030. },
  57031. [
  57032. {
  57033. name: "Nano",
  57034. height: math.unit(92, "micrometers")
  57035. },
  57036. {
  57037. name: "Normal",
  57038. height: math.unit(7 + 8/12, "feet"),
  57039. default: true
  57040. },
  57041. ]
  57042. ))
  57043. characterMakers.push(() => makeCharacter(
  57044. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57045. {
  57046. frontNsfw: {
  57047. height: math.unit(40, "feet"),
  57048. weight: math.unit(58, "tons"),
  57049. name: "Front (NSFW)",
  57050. image: {
  57051. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57052. extra: 1265/965,
  57053. bottom: 155/1420
  57054. }
  57055. },
  57056. frontSfw: {
  57057. height: math.unit(40, "feet"),
  57058. weight: math.unit(58, "tons"),
  57059. name: "Front (SFW)",
  57060. image: {
  57061. source: "./media/characters/ru-kahn/front-sfw.svg",
  57062. extra: 1265/965,
  57063. bottom: 80/1345
  57064. }
  57065. },
  57066. },
  57067. [
  57068. {
  57069. name: "Small",
  57070. height: math.unit(4, "feet")
  57071. },
  57072. {
  57073. name: "Normal",
  57074. height: math.unit(40, "feet"),
  57075. default: true
  57076. },
  57077. {
  57078. name: "Macro",
  57079. height: math.unit(400, "feet")
  57080. },
  57081. ]
  57082. ))
  57083. characterMakers.push(() => makeCharacter(
  57084. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57085. {
  57086. frontNude: {
  57087. height: math.unit(6 + 5/12, "feet"),
  57088. name: "Front (Nude)",
  57089. image: {
  57090. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57091. extra: 1369/1366,
  57092. bottom: 68/1437
  57093. }
  57094. },
  57095. frontDressed: {
  57096. height: math.unit(6 + 5/12, "feet"),
  57097. name: "Front (Dressed)",
  57098. image: {
  57099. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57100. extra: 1369/1366,
  57101. bottom: 68/1437
  57102. }
  57103. },
  57104. },
  57105. [
  57106. {
  57107. name: "Normal",
  57108. height: math.unit(6 + 5/12, "feet"),
  57109. default: true
  57110. },
  57111. {
  57112. name: "Maximum",
  57113. height: math.unit(1930, "feet")
  57114. },
  57115. ]
  57116. ))
  57117. characterMakers.push(() => makeCharacter(
  57118. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57119. {
  57120. front: {
  57121. height: math.unit(5 + 6/12, "feet"),
  57122. name: "Front",
  57123. image: {
  57124. source: "./media/characters/kaja/front.svg",
  57125. extra: 1874/1514,
  57126. bottom: 117/1991
  57127. }
  57128. },
  57129. },
  57130. [
  57131. {
  57132. name: "Normal",
  57133. height: math.unit(5 + 6/12, "feet"),
  57134. default: true
  57135. },
  57136. ]
  57137. ))
  57138. characterMakers.push(() => makeCharacter(
  57139. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57140. {
  57141. front: {
  57142. height: math.unit(5 + 9/12, "feet"),
  57143. weight: math.unit(200, "lb"),
  57144. name: "Front",
  57145. image: {
  57146. source: "./media/characters/mark-smith/front.svg",
  57147. extra: 1004/943,
  57148. bottom: 58/1062
  57149. }
  57150. },
  57151. back: {
  57152. height: math.unit(5 + 9/12, "feet"),
  57153. weight: math.unit(200, "lb"),
  57154. name: "Back",
  57155. image: {
  57156. source: "./media/characters/mark-smith/back.svg",
  57157. extra: 1023/953,
  57158. bottom: 24/1047
  57159. }
  57160. },
  57161. head: {
  57162. height: math.unit(1.82, "feet"),
  57163. name: "Head",
  57164. image: {
  57165. source: "./media/characters/mark-smith/head.svg"
  57166. }
  57167. },
  57168. hand: {
  57169. height: math.unit(1.4, "feet"),
  57170. name: "Hand",
  57171. image: {
  57172. source: "./media/characters/mark-smith/hand.svg"
  57173. }
  57174. },
  57175. paw: {
  57176. height: math.unit(1.69, "feet"),
  57177. name: "Paw",
  57178. image: {
  57179. source: "./media/characters/mark-smith/paw.svg"
  57180. }
  57181. },
  57182. },
  57183. [
  57184. {
  57185. name: "Micro",
  57186. height: math.unit(0.25, "inches")
  57187. },
  57188. {
  57189. name: "Normal",
  57190. height: math.unit(5 + 9/12, "feet"),
  57191. default: true
  57192. },
  57193. {
  57194. name: "Macro",
  57195. height: math.unit(500, "feet")
  57196. },
  57197. ]
  57198. ))
  57199. characterMakers.push(() => makeCharacter(
  57200. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57201. {
  57202. frontNude: {
  57203. height: math.unit(6, "feet"),
  57204. name: "Front (Nude)",
  57205. image: {
  57206. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57207. extra: 1384/1321,
  57208. bottom: 57/1441
  57209. }
  57210. },
  57211. frontDressed: {
  57212. height: math.unit(6, "feet"),
  57213. name: "Front (Dressed)",
  57214. image: {
  57215. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57216. extra: 1384/1321,
  57217. bottom: 57/1441
  57218. }
  57219. },
  57220. },
  57221. [
  57222. {
  57223. name: "Normal",
  57224. height: math.unit(6, "feet"),
  57225. default: true
  57226. },
  57227. {
  57228. name: "Maximum",
  57229. height: math.unit(1776, "feet")
  57230. },
  57231. ]
  57232. ))
  57233. characterMakers.push(() => makeCharacter(
  57234. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57235. {
  57236. front: {
  57237. height: math.unit(2 + 4/12, "feet"),
  57238. weight: math.unit(350, "lb"),
  57239. name: "Front",
  57240. image: {
  57241. source: "./media/characters/devos/front.svg",
  57242. extra: 958/852,
  57243. bottom: 143/1101
  57244. }
  57245. },
  57246. },
  57247. [
  57248. {
  57249. name: "Base",
  57250. height: math.unit(2 + 4/12, "feet"),
  57251. default: true
  57252. },
  57253. ]
  57254. ))
  57255. characterMakers.push(() => makeCharacter(
  57256. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57257. {
  57258. front: {
  57259. height: math.unit(9 + 2/12, "feet"),
  57260. name: "Front",
  57261. image: {
  57262. source: "./media/characters/hiveheart/front.svg",
  57263. extra: 394/364,
  57264. bottom: 65/459
  57265. }
  57266. },
  57267. back: {
  57268. height: math.unit(9 + 2/12, "feet"),
  57269. name: "Back",
  57270. image: {
  57271. source: "./media/characters/hiveheart/back.svg",
  57272. extra: 374/357,
  57273. bottom: 63/437
  57274. }
  57275. },
  57276. },
  57277. [
  57278. {
  57279. name: "Base",
  57280. height: math.unit(9 + 2/12, "feet"),
  57281. default: true
  57282. },
  57283. ]
  57284. ))
  57285. characterMakers.push(() => makeCharacter(
  57286. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57287. {
  57288. front: {
  57289. height: math.unit(2.5, "inches"),
  57290. weight: math.unit(0.6, "oz"),
  57291. name: "Front",
  57292. image: {
  57293. source: "./media/characters/bryn/front.svg",
  57294. extra: 1484/1119,
  57295. bottom: 66/1550
  57296. }
  57297. },
  57298. back: {
  57299. height: math.unit(2.5, "inches"),
  57300. weight: math.unit(0.6, "oz"),
  57301. name: "Back",
  57302. image: {
  57303. source: "./media/characters/bryn/back.svg",
  57304. extra: 1472/1170,
  57305. bottom: 32/1504
  57306. }
  57307. },
  57308. wings: {
  57309. height: math.unit(2.5, "inches"),
  57310. weight: math.unit(0.6, "oz"),
  57311. name: "Wings",
  57312. image: {
  57313. source: "./media/characters/bryn/wings.svg",
  57314. extra: 567/448,
  57315. bottom: 10/577
  57316. }
  57317. },
  57318. dressed: {
  57319. height: math.unit(2.5, "inches"),
  57320. weight: math.unit(0.6, "oz"),
  57321. name: "Dressed",
  57322. image: {
  57323. source: "./media/characters/bryn/dressed.svg",
  57324. extra: 719/589,
  57325. bottom: 54/773
  57326. }
  57327. },
  57328. head: {
  57329. height: math.unit(1.75, "inches"),
  57330. name: "Head",
  57331. image: {
  57332. source: "./media/characters/bryn/head.svg"
  57333. }
  57334. },
  57335. foot: {
  57336. height: math.unit(0.4, "inches"),
  57337. name: "Foot",
  57338. image: {
  57339. source: "./media/characters/bryn/foot.svg"
  57340. }
  57341. },
  57342. },
  57343. [
  57344. {
  57345. name: "Normal",
  57346. height: math.unit(2.5, "inches"),
  57347. default: true
  57348. },
  57349. ]
  57350. ))
  57351. characterMakers.push(() => makeCharacter(
  57352. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57353. {
  57354. side: {
  57355. height: math.unit(7, "feet"),
  57356. weight: math.unit(657, "kg"),
  57357. name: "Side",
  57358. image: {
  57359. source: "./media/characters/delta/side.svg",
  57360. extra: 781/212,
  57361. bottom: 7/788
  57362. },
  57363. extraAttributes: {
  57364. "wingspan": {
  57365. name: "Wingspan",
  57366. power: 1,
  57367. type: "length",
  57368. base: math.unit(48, "feet")
  57369. },
  57370. "length": {
  57371. name: "Length",
  57372. power: 1,
  57373. type: "length",
  57374. base: math.unit(21, "feet")
  57375. },
  57376. "pawSize": {
  57377. name: "Paw Size",
  57378. power: 2,
  57379. type: "area",
  57380. base: math.unit(1.5*1.4, "feet^2")
  57381. },
  57382. }
  57383. },
  57384. },
  57385. [
  57386. {
  57387. name: "Normal",
  57388. height: math.unit(6, "feet"),
  57389. default: true
  57390. },
  57391. ]
  57392. ))
  57393. characterMakers.push(() => makeCharacter(
  57394. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57395. {
  57396. front: {
  57397. height: math.unit(6, "feet"),
  57398. name: "Front",
  57399. image: {
  57400. source: "./media/characters/pyrow/front.svg",
  57401. extra: 513/486,
  57402. bottom: 14/527
  57403. }
  57404. },
  57405. frontWing: {
  57406. height: math.unit(6, "feet"),
  57407. name: "Front (Wing)",
  57408. image: {
  57409. source: "./media/characters/pyrow/front-wing.svg",
  57410. extra: 539/383,
  57411. bottom: 20/559
  57412. }
  57413. },
  57414. back: {
  57415. height: math.unit(6, "feet"),
  57416. name: "Back",
  57417. image: {
  57418. source: "./media/characters/pyrow/back.svg",
  57419. extra: 500/473,
  57420. bottom: 9/509
  57421. }
  57422. },
  57423. },
  57424. [
  57425. {
  57426. name: "Normal",
  57427. height: math.unit(6, "feet"),
  57428. default: true
  57429. },
  57430. ]
  57431. ))
  57432. characterMakers.push(() => makeCharacter(
  57433. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57434. {
  57435. front: {
  57436. height: math.unit(5, "meters"),
  57437. weight: math.unit(3, "tonnes"),
  57438. name: "Front",
  57439. image: {
  57440. source: "./media/characters/velikan/front.svg",
  57441. extra: 867/744,
  57442. bottom: 71/938
  57443. },
  57444. extraAttributes: {
  57445. "shoeSize": {
  57446. name: "Shoe Size",
  57447. power: 1,
  57448. type: "length",
  57449. base: math.unit(135, "ShoeSizeUK"),
  57450. defaultUnit: "ShoeSizeUK"
  57451. },
  57452. }
  57453. },
  57454. },
  57455. [
  57456. {
  57457. name: "Normal",
  57458. height: math.unit(5, "meters"),
  57459. default: true
  57460. },
  57461. {
  57462. name: "Macro",
  57463. height: math.unit(1, "km")
  57464. },
  57465. {
  57466. name: "Mega Macro",
  57467. height: math.unit(100, "km")
  57468. },
  57469. {
  57470. name: "Giga Macro",
  57471. height: math.unit(2, "megameters")
  57472. },
  57473. {
  57474. name: "Planetary",
  57475. height: math.unit(22, "megameters")
  57476. },
  57477. {
  57478. name: "Solar",
  57479. height: math.unit(8, "gigameters")
  57480. },
  57481. {
  57482. name: "Cosmic",
  57483. height: math.unit(10, "zettameters")
  57484. },
  57485. {
  57486. name: "Omni",
  57487. height: math.unit(9e260, "multiverses")
  57488. },
  57489. ]
  57490. ))
  57491. characterMakers.push(() => makeCharacter(
  57492. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57493. {
  57494. front: {
  57495. height: math.unit(4 + 3/12, "feet"),
  57496. weight: math.unit(90, "lb"),
  57497. name: "Front",
  57498. image: {
  57499. source: "./media/characters/sabiki/front.svg",
  57500. extra: 1662/1423,
  57501. bottom: 65/1727
  57502. }
  57503. },
  57504. },
  57505. [
  57506. {
  57507. name: "Normal",
  57508. height: math.unit(4 + 3/12, "feet"),
  57509. default: true
  57510. },
  57511. ]
  57512. ))
  57513. characterMakers.push(() => makeCharacter(
  57514. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57515. {
  57516. frontSfw: {
  57517. height: math.unit(2, "mm"),
  57518. name: "Front (SFW)",
  57519. image: {
  57520. source: "./media/characters/carmel/front-sfw.svg",
  57521. extra: 1131/1006,
  57522. bottom: 66/1197
  57523. }
  57524. },
  57525. frontNsfw: {
  57526. height: math.unit(2, "mm"),
  57527. name: "Front (NSFW)",
  57528. image: {
  57529. source: "./media/characters/carmel/front-nsfw.svg",
  57530. extra: 1131/1006,
  57531. bottom: 66/1197
  57532. }
  57533. },
  57534. foot: {
  57535. height: math.unit(0.3, "mm"),
  57536. name: "Foot",
  57537. image: {
  57538. source: "./media/characters/carmel/foot.svg"
  57539. }
  57540. },
  57541. tongue: {
  57542. height: math.unit(0.71, "mm"),
  57543. name: "Tongue",
  57544. image: {
  57545. source: "./media/characters/carmel/tongue.svg"
  57546. }
  57547. },
  57548. dick: {
  57549. height: math.unit(0.085, "mm"),
  57550. name: "Dick",
  57551. image: {
  57552. source: "./media/characters/carmel/dick.svg"
  57553. }
  57554. },
  57555. },
  57556. [
  57557. {
  57558. name: "Micro",
  57559. height: math.unit(2, "mm"),
  57560. default: true
  57561. },
  57562. {
  57563. name: "Normal",
  57564. height: math.unit(4 + 8/12, "feet")
  57565. },
  57566. {
  57567. name: "Mega Macro",
  57568. height: math.unit(250, "feet")
  57569. },
  57570. {
  57571. name: "BIGGER",
  57572. height: math.unit(1000, "feet")
  57573. },
  57574. {
  57575. name: "BIGGEST",
  57576. height: math.unit(2, "miles")
  57577. },
  57578. ]
  57579. ))
  57580. characterMakers.push(() => makeCharacter(
  57581. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57582. {
  57583. front: {
  57584. height: math.unit(6.5, "feet"),
  57585. weight: math.unit(198, "lb"),
  57586. name: "Front",
  57587. image: {
  57588. source: "./media/characters/tamani/anthro.svg",
  57589. extra: 930/890,
  57590. bottom: 34/964
  57591. },
  57592. form: "anthro",
  57593. default: true
  57594. },
  57595. side: {
  57596. height: math.unit(6, "feet"),
  57597. weight: math.unit(198*2, "lb"),
  57598. name: "Side",
  57599. image: {
  57600. source: "./media/characters/tamani/feral.svg",
  57601. extra: 559/519,
  57602. bottom: 43/602
  57603. },
  57604. form: "feral"
  57605. },
  57606. },
  57607. [
  57608. {
  57609. name: "Normal",
  57610. height: math.unit(6.5, "feet"),
  57611. default: true,
  57612. form: "anthro"
  57613. },
  57614. {
  57615. name: "Normal",
  57616. height: math.unit(6, "feet"),
  57617. default: true,
  57618. form: "feral"
  57619. },
  57620. ],
  57621. {
  57622. "anthro": {
  57623. name: "Anthro",
  57624. default: true
  57625. },
  57626. "feral": {
  57627. name: "Feral",
  57628. },
  57629. }
  57630. ))
  57631. characterMakers.push(() => makeCharacter(
  57632. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57633. {
  57634. front: {
  57635. height: math.unit(4 + 1/12, "feet"),
  57636. weight: math.unit(114, "lb"),
  57637. name: "Front",
  57638. image: {
  57639. source: "./media/characters/dex/front.svg",
  57640. extra: 787/680,
  57641. bottom: 18/805
  57642. }
  57643. },
  57644. side: {
  57645. height: math.unit(4 + 1/12, "feet"),
  57646. weight: math.unit(114, "lb"),
  57647. name: "Side",
  57648. image: {
  57649. source: "./media/characters/dex/side.svg",
  57650. extra: 785/680,
  57651. bottom: 12/797
  57652. }
  57653. },
  57654. back: {
  57655. height: math.unit(4 + 1/12, "feet"),
  57656. weight: math.unit(114, "lb"),
  57657. name: "Back",
  57658. image: {
  57659. source: "./media/characters/dex/back.svg",
  57660. extra: 785/681,
  57661. bottom: 17/802
  57662. }
  57663. },
  57664. loungewear: {
  57665. height: math.unit(4 + 1/12, "feet"),
  57666. weight: math.unit(114, "lb"),
  57667. name: "Loungewear",
  57668. image: {
  57669. source: "./media/characters/dex/loungewear.svg",
  57670. extra: 787/680,
  57671. bottom: 18/805
  57672. }
  57673. },
  57674. workout: {
  57675. height: math.unit(4 + 1/12, "feet"),
  57676. weight: math.unit(114, "lb"),
  57677. name: "Workout",
  57678. image: {
  57679. source: "./media/characters/dex/workout.svg",
  57680. extra: 787/680,
  57681. bottom: 18/805
  57682. }
  57683. },
  57684. schoolUniform: {
  57685. height: math.unit(4 + 1/12, "feet"),
  57686. weight: math.unit(114, "lb"),
  57687. name: "School Uniform",
  57688. image: {
  57689. source: "./media/characters/dex/school-uniform.svg",
  57690. extra: 787/680,
  57691. bottom: 18/805
  57692. }
  57693. },
  57694. maw: {
  57695. height: math.unit(0.55, "feet"),
  57696. name: "Maw",
  57697. image: {
  57698. source: "./media/characters/dex/maw.svg"
  57699. }
  57700. },
  57701. paw: {
  57702. height: math.unit(0.87, "feet"),
  57703. name: "Paw",
  57704. image: {
  57705. source: "./media/characters/dex/paw.svg"
  57706. }
  57707. },
  57708. bust: {
  57709. height: math.unit(1.67, "feet"),
  57710. name: "Bust",
  57711. image: {
  57712. source: "./media/characters/dex/bust.svg"
  57713. }
  57714. },
  57715. },
  57716. [
  57717. {
  57718. name: "Normal",
  57719. height: math.unit(4 + 1/12, "feet"),
  57720. default: true
  57721. },
  57722. ]
  57723. ))
  57724. characterMakers.push(() => makeCharacter(
  57725. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57726. {
  57727. front: {
  57728. height: math.unit(4 + 3/12, "feet"),
  57729. weight: math.unit(60, "lb"),
  57730. name: "Front",
  57731. image: {
  57732. source: "./media/characters/silke/front.svg",
  57733. extra: 1334/1122,
  57734. bottom: 21/1355
  57735. }
  57736. },
  57737. back: {
  57738. height: math.unit(4 + 3/12, "feet"),
  57739. weight: math.unit(60, "lb"),
  57740. name: "Back",
  57741. image: {
  57742. source: "./media/characters/silke/back.svg",
  57743. extra: 1328/1092,
  57744. bottom: 16/1344
  57745. }
  57746. },
  57747. dressed: {
  57748. height: math.unit(4 + 3/12, "feet"),
  57749. weight: math.unit(60, "lb"),
  57750. name: "Dressed",
  57751. image: {
  57752. source: "./media/characters/silke/dressed.svg",
  57753. extra: 1334/1122,
  57754. bottom: 43/1377
  57755. }
  57756. },
  57757. },
  57758. [
  57759. {
  57760. name: "Normal",
  57761. height: math.unit(4 + 3/12, "feet"),
  57762. default: true
  57763. },
  57764. ]
  57765. ))
  57766. characterMakers.push(() => makeCharacter(
  57767. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57768. {
  57769. front: {
  57770. height: math.unit(1.58, "meters"),
  57771. weight: math.unit(47, "kg"),
  57772. name: "Front",
  57773. image: {
  57774. source: "./media/characters/wireshark/front.svg",
  57775. extra: 883/838,
  57776. bottom: 66/949
  57777. }
  57778. },
  57779. },
  57780. [
  57781. {
  57782. name: "Normal",
  57783. height: math.unit(1.58, "meters"),
  57784. default: true
  57785. },
  57786. ]
  57787. ))
  57788. characterMakers.push(() => makeCharacter(
  57789. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57790. {
  57791. front: {
  57792. height: math.unit(6, "meters"),
  57793. weight: math.unit(15000, "kg"),
  57794. name: "Front",
  57795. image: {
  57796. source: "./media/characters/gallagher/front.svg",
  57797. extra: 532/493,
  57798. bottom: 0/532
  57799. }
  57800. },
  57801. },
  57802. [
  57803. {
  57804. name: "Normal",
  57805. height: math.unit(6, "meters"),
  57806. default: true
  57807. },
  57808. ]
  57809. ))
  57810. characterMakers.push(() => makeCharacter(
  57811. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57812. {
  57813. front: {
  57814. height: math.unit(2.4, "meters"),
  57815. weight: math.unit(270, "kg"),
  57816. name: "Front",
  57817. image: {
  57818. source: "./media/characters/alice/front.svg",
  57819. extra: 950/900,
  57820. bottom: 36/986
  57821. }
  57822. },
  57823. side: {
  57824. height: math.unit(2.4, "meters"),
  57825. weight: math.unit(270, "kg"),
  57826. name: "Side",
  57827. image: {
  57828. source: "./media/characters/alice/side.svg",
  57829. extra: 921/876,
  57830. bottom: 19/940
  57831. }
  57832. },
  57833. dressed: {
  57834. height: math.unit(2.4, "meters"),
  57835. weight: math.unit(270, "kg"),
  57836. name: "Dressed",
  57837. image: {
  57838. source: "./media/characters/alice/dressed.svg",
  57839. extra: 905/850,
  57840. bottom: 81/986
  57841. }
  57842. },
  57843. fishnet: {
  57844. height: math.unit(2.4, "meters"),
  57845. weight: math.unit(270, "kg"),
  57846. name: "Fishnet",
  57847. image: {
  57848. source: "./media/characters/alice/fishnet.svg",
  57849. extra: 905/850,
  57850. bottom: 81/986
  57851. }
  57852. },
  57853. },
  57854. [
  57855. {
  57856. name: "Normal",
  57857. height: math.unit(2.4, "meters"),
  57858. default: true
  57859. },
  57860. ]
  57861. ))
  57862. characterMakers.push(() => makeCharacter(
  57863. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57864. {
  57865. front: {
  57866. height: math.unit(175.25, "feet"),
  57867. name: "Front",
  57868. image: {
  57869. source: "./media/characters/fio/front.svg",
  57870. extra: 1883/1591,
  57871. bottom: 34/1917
  57872. }
  57873. },
  57874. },
  57875. [
  57876. {
  57877. name: "Normal",
  57878. height: math.unit(175.25, "cm"),
  57879. default: true
  57880. },
  57881. ]
  57882. ))
  57883. characterMakers.push(() => makeCharacter(
  57884. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57885. {
  57886. side: {
  57887. height: math.unit(6, "meters"),
  57888. weight: math.unit(3400, "kg"),
  57889. preyCapacity: math.unit(1700, "liters"),
  57890. name: "Side",
  57891. image: {
  57892. source: "./media/characters/hass/side.svg",
  57893. extra: 1058/997,
  57894. bottom: 177/1235
  57895. }
  57896. },
  57897. feeding: {
  57898. height: math.unit(6*0.63, "meters"),
  57899. weight: math.unit(3400, "kg"),
  57900. preyCapacity: math.unit(1700, "liters"),
  57901. name: "Feeding",
  57902. image: {
  57903. source: "./media/characters/hass/feeding.svg",
  57904. extra: 689/579,
  57905. bottom: 146/835
  57906. }
  57907. },
  57908. guts: {
  57909. height: math.unit(6, "meters"),
  57910. weight: math.unit(3400, "kg"),
  57911. name: "Guts",
  57912. image: {
  57913. source: "./media/characters/hass/guts.svg",
  57914. extra: 1223/1198,
  57915. bottom: 182/1405
  57916. }
  57917. },
  57918. dickFront: {
  57919. height: math.unit(1.4, "meters"),
  57920. name: "Dick (Front)",
  57921. image: {
  57922. source: "./media/characters/hass/dick-front.svg"
  57923. }
  57924. },
  57925. dickSide: {
  57926. height: math.unit(1.3, "meters"),
  57927. name: "Dick (Side)",
  57928. image: {
  57929. source: "./media/characters/hass/dick-side.svg"
  57930. }
  57931. },
  57932. dickBack: {
  57933. height: math.unit(1.4, "meters"),
  57934. name: "Dick (Back)",
  57935. image: {
  57936. source: "./media/characters/hass/dick-back.svg"
  57937. }
  57938. },
  57939. },
  57940. [
  57941. {
  57942. name: "Normal",
  57943. height: math.unit(6, "meters"),
  57944. default: true
  57945. },
  57946. ]
  57947. ))
  57948. characterMakers.push(() => makeCharacter(
  57949. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57950. {
  57951. front: {
  57952. height: math.unit(4, "feet"),
  57953. weight: math.unit(60, "lb"),
  57954. name: "Front",
  57955. image: {
  57956. source: "./media/characters/hickory-finnegan/front.svg",
  57957. extra: 444/411,
  57958. bottom: 10/454
  57959. }
  57960. },
  57961. side: {
  57962. height: math.unit(4, "feet"),
  57963. weight: math.unit(60, "lb"),
  57964. name: "Side",
  57965. image: {
  57966. source: "./media/characters/hickory-finnegan/side.svg",
  57967. extra: 444/411,
  57968. bottom: 10/454
  57969. }
  57970. },
  57971. back: {
  57972. height: math.unit(4, "feet"),
  57973. weight: math.unit(60, "lb"),
  57974. name: "Back",
  57975. image: {
  57976. source: "./media/characters/hickory-finnegan/back.svg",
  57977. extra: 444/411,
  57978. bottom: 10/454
  57979. }
  57980. },
  57981. },
  57982. [
  57983. {
  57984. name: "Normal",
  57985. height: math.unit(4, "feet"),
  57986. default: true
  57987. },
  57988. ]
  57989. ))
  57990. characterMakers.push(() => makeCharacter(
  57991. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57992. {
  57993. snivy_front: {
  57994. height: math.unit(2, "feet"),
  57995. weight: math.unit(17.9, "lb"),
  57996. name: "Front",
  57997. image: {
  57998. source: "./media/characters/robin-phox/snivy-front.svg",
  57999. extra: 569/504,
  58000. bottom: 33/602
  58001. },
  58002. form: "snivy",
  58003. default: true
  58004. },
  58005. snivy_frontNsfw: {
  58006. height: math.unit(2, "feet"),
  58007. weight: math.unit(17.9, "lb"),
  58008. name: "Front (NSFW)",
  58009. image: {
  58010. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58011. extra: 569/504,
  58012. bottom: 33/602
  58013. },
  58014. form: "snivy",
  58015. },
  58016. snivy_back: {
  58017. height: math.unit(2, "feet"),
  58018. weight: math.unit(17.9, "lb"),
  58019. name: "Back",
  58020. image: {
  58021. source: "./media/characters/robin-phox/snivy-back.svg",
  58022. extra: 577/508,
  58023. bottom: 21/598
  58024. },
  58025. form: "snivy",
  58026. },
  58027. snivy_foot: {
  58028. height: math.unit(0.68, "feet"),
  58029. name: "Foot",
  58030. image: {
  58031. source: "./media/characters/robin-phox/snivy-foot.svg"
  58032. },
  58033. form: "snivy",
  58034. },
  58035. snivy_sole: {
  58036. height: math.unit(0.68, "feet"),
  58037. name: "Sole",
  58038. image: {
  58039. source: "./media/characters/robin-phox/snivy-sole.svg"
  58040. },
  58041. form: "snivy",
  58042. },
  58043. yoshi_front: {
  58044. height: math.unit(6, "feet"),
  58045. weight: math.unit(150, "lb"),
  58046. name: "Front",
  58047. image: {
  58048. source: "./media/characters/robin-phox/yoshi-front.svg",
  58049. extra: 890/792,
  58050. bottom: 29/919
  58051. },
  58052. form: "yoshi",
  58053. default: true
  58054. },
  58055. yoshi_frontNsfw: {
  58056. height: math.unit(6, "feet"),
  58057. weight: math.unit(150, "lb"),
  58058. name: "Front (NSFW)",
  58059. image: {
  58060. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58061. extra: 890/792,
  58062. bottom: 29/919
  58063. },
  58064. form: "yoshi",
  58065. },
  58066. yoshi_back: {
  58067. height: math.unit(6, "feet"),
  58068. weight: math.unit(150, "lb"),
  58069. name: "Back",
  58070. image: {
  58071. source: "./media/characters/robin-phox/yoshi-back.svg",
  58072. extra: 890/792,
  58073. bottom: 29/919
  58074. },
  58075. form: "yoshi",
  58076. },
  58077. yoshi_foot: {
  58078. height: math.unit(1.5, "feet"),
  58079. name: "Foot",
  58080. image: {
  58081. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58082. },
  58083. form: "yoshi",
  58084. },
  58085. delphox_front: {
  58086. height: math.unit(4 + 11/12, "feet"),
  58087. weight: math.unit(86, "lb"),
  58088. name: "Front",
  58089. image: {
  58090. source: "./media/characters/robin-phox/delphox-front.svg",
  58091. extra: 1266/1069,
  58092. bottom: 32/1298
  58093. },
  58094. form: "delphox",
  58095. default: true
  58096. },
  58097. delphox_frontNsfw: {
  58098. height: math.unit(4 + 11/12, "feet"),
  58099. weight: math.unit(86, "lb"),
  58100. name: "Front (NSFW)",
  58101. image: {
  58102. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58103. extra: 1266/1069,
  58104. bottom: 32/1298
  58105. },
  58106. form: "delphox",
  58107. },
  58108. delphox_back: {
  58109. height: math.unit(4 + 11/12, "feet"),
  58110. weight: math.unit(86, "lb"),
  58111. name: "Back",
  58112. image: {
  58113. source: "./media/characters/robin-phox/delphox-back.svg",
  58114. extra: 1269/1083,
  58115. bottom: 15/1284
  58116. },
  58117. form: "delphox",
  58118. },
  58119. mienshao_front: {
  58120. height: math.unit(4 + 7/12, "feet"),
  58121. weight: math.unit(78.3, "lb"),
  58122. name: "Front",
  58123. image: {
  58124. source: "./media/characters/robin-phox/mienshao-front.svg",
  58125. extra: 1052/970,
  58126. bottom: 108/1160
  58127. },
  58128. form: "mienshao",
  58129. default: true
  58130. },
  58131. mienshao_frontNsfw: {
  58132. height: math.unit(4 + 7/12, "feet"),
  58133. weight: math.unit(78.3, "lb"),
  58134. name: "Front (NSFW)",
  58135. image: {
  58136. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58137. extra: 1052/970,
  58138. bottom: 108/1160
  58139. },
  58140. form: "mienshao",
  58141. },
  58142. mienshao_back: {
  58143. height: math.unit(4 + 7/12, "feet"),
  58144. weight: math.unit(78.3, "lb"),
  58145. name: "Back",
  58146. image: {
  58147. source: "./media/characters/robin-phox/mienshao-back.svg",
  58148. extra: 1102/982,
  58149. bottom: 32/1134
  58150. },
  58151. form: "mienshao",
  58152. },
  58153. inteleon_front: {
  58154. height: math.unit(6 + 3/12, "feet"),
  58155. weight: math.unit(99.6, "lb"),
  58156. name: "Front",
  58157. image: {
  58158. source: "./media/characters/robin-phox/inteleon-front.svg",
  58159. extra: 910/799,
  58160. bottom: 76/986
  58161. },
  58162. form: "inteleon",
  58163. default: true
  58164. },
  58165. inteleon_frontNsfw: {
  58166. height: math.unit(6 + 3/12, "feet"),
  58167. weight: math.unit(99.6, "lb"),
  58168. name: "Front (NSFW)",
  58169. image: {
  58170. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58171. extra: 910/799,
  58172. bottom: 76/986
  58173. },
  58174. form: "inteleon",
  58175. },
  58176. inteleon_back: {
  58177. height: math.unit(6 + 3/12, "feet"),
  58178. weight: math.unit(99.6, "lb"),
  58179. name: "Back",
  58180. image: {
  58181. source: "./media/characters/robin-phox/inteleon-back.svg",
  58182. extra: 907/796,
  58183. bottom: 25/932
  58184. },
  58185. form: "inteleon",
  58186. },
  58187. reshiram_front: {
  58188. height: math.unit(10 + 6/12, "feet"),
  58189. weight: math.unit(727.5, "lb"),
  58190. name: "Front",
  58191. image: {
  58192. source: "./media/characters/robin-phox/reshiram-front.svg",
  58193. extra: 1198/940,
  58194. bottom: 123/1321
  58195. },
  58196. form: "reshiram",
  58197. },
  58198. reshiram_frontNsfw: {
  58199. height: math.unit(10 + 6/12, "feet"),
  58200. weight: math.unit(727.5, "lb"),
  58201. name: "Front (NSFW)",
  58202. image: {
  58203. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58204. extra: 1198/940,
  58205. bottom: 123/1321
  58206. },
  58207. form: "reshiram",
  58208. },
  58209. reshiram_back: {
  58210. height: math.unit(10 + 6/12, "feet"),
  58211. weight: math.unit(727.5, "lb"),
  58212. name: "Back",
  58213. image: {
  58214. source: "./media/characters/robin-phox/reshiram-back.svg",
  58215. extra: 1024/904,
  58216. bottom: 85/1109
  58217. },
  58218. form: "reshiram",
  58219. },
  58220. samurott_front: {
  58221. height: math.unit(8, "feet"),
  58222. weight: math.unit(208.6, "lb"),
  58223. name: "Front",
  58224. image: {
  58225. source: "./media/characters/robin-phox/samurott-front.svg",
  58226. extra: 1048/984,
  58227. bottom: 100/1148
  58228. },
  58229. form: "samurott",
  58230. },
  58231. samurott_frontNsfw: {
  58232. height: math.unit(8, "feet"),
  58233. weight: math.unit(208.6, "lb"),
  58234. name: "Front NSFW",
  58235. image: {
  58236. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58237. extra: 1048/984,
  58238. bottom: 100/1148
  58239. },
  58240. form: "samurott",
  58241. },
  58242. samurott_back: {
  58243. height: math.unit(8, "feet"),
  58244. weight: math.unit(208.6, "lb"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/robin-phox/samurott-back.svg",
  58248. extra: 1110/1042,
  58249. bottom: 12/1122
  58250. },
  58251. form: "samurott",
  58252. },
  58253. samurott_feral: {
  58254. height: math.unit(4 + 11/12, "feet"),
  58255. weight: math.unit(208.6, "lb"),
  58256. name: "Feral",
  58257. image: {
  58258. source: "./media/characters/robin-phox/samurott-feral.svg",
  58259. extra: 766/681,
  58260. bottom: 108/874
  58261. },
  58262. form: "samurott",
  58263. },
  58264. },
  58265. [
  58266. {
  58267. name: "Normal",
  58268. height: math.unit(2, "feet"),
  58269. default: true,
  58270. form: "snivy"
  58271. },
  58272. {
  58273. name: "Normal",
  58274. height: math.unit(6, "feet"),
  58275. default: true,
  58276. form: "yoshi"
  58277. },
  58278. {
  58279. name: "Normal",
  58280. height: math.unit(4 + 11/12, "feet"),
  58281. default: true,
  58282. form: "delphox"
  58283. },
  58284. {
  58285. name: "Normal",
  58286. height: math.unit(4 + 7/12, "feet"),
  58287. default: true,
  58288. form: "mienshao"
  58289. },
  58290. {
  58291. name: "Normal",
  58292. height: math.unit(6 + 3/12, "feet"),
  58293. default: true,
  58294. form: "inteleon"
  58295. },
  58296. {
  58297. name: "Normal",
  58298. height: math.unit(10 + 6/12, "feet"),
  58299. default: true,
  58300. form: "reshiram"
  58301. },
  58302. {
  58303. name: "Normal",
  58304. height: math.unit(8, "feet"),
  58305. default: true,
  58306. form: "samurott"
  58307. },
  58308. {
  58309. name: "Macro",
  58310. height: math.unit(500, "feet"),
  58311. allForms: true
  58312. },
  58313. {
  58314. name: "Mega Macro",
  58315. height: math.unit(10, "earths"),
  58316. allForms: true
  58317. },
  58318. {
  58319. name: "Giga Macro",
  58320. height: math.unit(1, "galaxy"),
  58321. allForms: true
  58322. },
  58323. {
  58324. name: "Godly Macro",
  58325. height: math.unit(1e10, "multiverses"),
  58326. allForms: true
  58327. },
  58328. ],
  58329. {
  58330. "snivy": {
  58331. name: "Snivy",
  58332. default: true
  58333. },
  58334. "yoshi": {
  58335. name: "Yoshi",
  58336. },
  58337. "delphox": {
  58338. name: "Delphox",
  58339. },
  58340. "mienshao": {
  58341. name: "Mienshao",
  58342. },
  58343. "inteleon": {
  58344. name: "Inteleon",
  58345. },
  58346. "reshiram": {
  58347. name: "Reshiram",
  58348. },
  58349. "samurott": {
  58350. name: "Samurott",
  58351. },
  58352. }
  58353. ))
  58354. characterMakers.push(() => makeCharacter(
  58355. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58356. {
  58357. front: {
  58358. height: math.unit(4, "feet"),
  58359. name: "Front",
  58360. image: {
  58361. source: "./media/characters/ash-leung/front.svg",
  58362. extra: 1916/1792,
  58363. bottom: 50/1966
  58364. }
  58365. },
  58366. },
  58367. [
  58368. {
  58369. name: "Atomic",
  58370. height: math.unit(1, "angstrom")
  58371. },
  58372. {
  58373. name: "Microscopic",
  58374. height: math.unit(4000, "angstroms")
  58375. },
  58376. {
  58377. name: "Speck",
  58378. height: math.unit(1, "mm")
  58379. },
  58380. {
  58381. name: "Small",
  58382. height: math.unit(1, "inch")
  58383. },
  58384. {
  58385. name: "Normal",
  58386. height: math.unit(4, "feet"),
  58387. default: true
  58388. },
  58389. ]
  58390. ))
  58391. characterMakers.push(() => makeCharacter(
  58392. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58393. {
  58394. frontDressed: {
  58395. height: math.unit(2.08, "meters"),
  58396. weight: math.unit(175, "lb"),
  58397. name: "Front (Dressed)",
  58398. image: {
  58399. source: "./media/characters/carie/front-dressed.svg",
  58400. extra: 456/417,
  58401. bottom: 7/463
  58402. }
  58403. },
  58404. backDressed: {
  58405. height: math.unit(2.08, "meters"),
  58406. weight: math.unit(175, "lb"),
  58407. name: "Back (Dressed)",
  58408. image: {
  58409. source: "./media/characters/carie/back-dressed.svg",
  58410. extra: 455/414,
  58411. bottom: 11/466
  58412. }
  58413. },
  58414. front: {
  58415. height: math.unit(2, "meters"),
  58416. weight: math.unit(175, "lb"),
  58417. name: "Front",
  58418. image: {
  58419. source: "./media/characters/carie/front.svg",
  58420. extra: 438/399,
  58421. bottom: 12/450
  58422. }
  58423. },
  58424. back: {
  58425. height: math.unit(2, "meters"),
  58426. weight: math.unit(175, "lb"),
  58427. name: "Back",
  58428. image: {
  58429. source: "./media/characters/carie/back.svg",
  58430. extra: 438/397,
  58431. bottom: 7/445
  58432. }
  58433. },
  58434. },
  58435. [
  58436. {
  58437. name: "Normal",
  58438. height: math.unit(2.08, "meters"),
  58439. default: true
  58440. },
  58441. {
  58442. name: "Macro",
  58443. height: math.unit(2.08e3, "meters")
  58444. },
  58445. {
  58446. name: "Mega Macro",
  58447. height: math.unit(2.08e6, "meters")
  58448. },
  58449. {
  58450. name: "Giga Macro",
  58451. height: math.unit(2.08e9, "meters")
  58452. },
  58453. {
  58454. name: "Tera Macro",
  58455. height: math.unit(2.08e12, "meters")
  58456. },
  58457. {
  58458. name: "Peta Macro",
  58459. height: math.unit(2.08e15, "meters")
  58460. },
  58461. {
  58462. name: "Exa Macro",
  58463. height: math.unit(2.08e18, "meters")
  58464. },
  58465. {
  58466. name: "Zetta Macro",
  58467. height: math.unit(2.08e21, "meters")
  58468. },
  58469. {
  58470. name: "Yotta Macro",
  58471. height: math.unit(2.08e24, "meters")
  58472. },
  58473. ]
  58474. ))
  58475. characterMakers.push(() => makeCharacter(
  58476. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58477. {
  58478. front: {
  58479. height: math.unit(5 + 2/12, "feet"),
  58480. weight: math.unit(120, "lb"),
  58481. name: "Front",
  58482. image: {
  58483. source: "./media/characters/sai-bree/front.svg",
  58484. extra: 1843/1702,
  58485. bottom: 91/1934
  58486. }
  58487. },
  58488. back: {
  58489. height: math.unit(5 + 2/12, "feet"),
  58490. weight: math.unit(120, "lb"),
  58491. name: "Back",
  58492. image: {
  58493. source: "./media/characters/sai-bree/back.svg",
  58494. extra: 1809/1637,
  58495. bottom: 56/1865
  58496. }
  58497. },
  58498. },
  58499. [
  58500. {
  58501. name: "Normal",
  58502. height: math.unit(5 + 2/12, "feet"),
  58503. default: true
  58504. },
  58505. {
  58506. name: "Macro",
  58507. height: math.unit(500, "feet")
  58508. },
  58509. ]
  58510. ))
  58511. characterMakers.push(() => makeCharacter(
  58512. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58513. {
  58514. side: {
  58515. height: math.unit(0.77, "meters"),
  58516. weight: math.unit(120, "lb"),
  58517. name: "Side",
  58518. image: {
  58519. source: "./media/characters/davwyn/side.svg",
  58520. extra: 1557/1225,
  58521. bottom: 131/1688
  58522. }
  58523. },
  58524. front: {
  58525. height: math.unit(0.835410, "meters"),
  58526. weight: math.unit(120, "lb"),
  58527. name: "Front",
  58528. image: {
  58529. source: "./media/characters/davwyn/front.svg",
  58530. extra: 870/843,
  58531. bottom: 175/1045
  58532. }
  58533. },
  58534. },
  58535. [
  58536. {
  58537. name: "Minidrake",
  58538. height: math.unit(0.77/4, "meters")
  58539. },
  58540. {
  58541. name: "Normal",
  58542. height: math.unit(0.77, "meters"),
  58543. default: true
  58544. },
  58545. ]
  58546. ))
  58547. characterMakers.push(() => makeCharacter(
  58548. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58549. {
  58550. front: {
  58551. height: math.unit(10 + 3/12, "feet"),
  58552. weight: math.unit(2857, "lb"),
  58553. name: "Front",
  58554. image: {
  58555. source: "./media/characters/balans/front.svg",
  58556. extra: 427/402,
  58557. bottom: 26/453
  58558. }
  58559. },
  58560. side: {
  58561. height: math.unit(10 + 3/12, "feet"),
  58562. weight: math.unit(2857, "lb"),
  58563. name: "Side",
  58564. image: {
  58565. source: "./media/characters/balans/side.svg",
  58566. extra: 397/371,
  58567. bottom: 17/414
  58568. }
  58569. },
  58570. back: {
  58571. height: math.unit(10 + 3/12, "feet"),
  58572. weight: math.unit(2857, "lb"),
  58573. name: "Back",
  58574. image: {
  58575. source: "./media/characters/balans/back.svg",
  58576. extra: 408/381,
  58577. bottom: 14/422
  58578. }
  58579. },
  58580. hand: {
  58581. height: math.unit(1.15, "feet"),
  58582. name: "Hand",
  58583. image: {
  58584. source: "./media/characters/balans/hand.svg"
  58585. }
  58586. },
  58587. footRest: {
  58588. height: math.unit(3.1, "feet"),
  58589. name: "Foot (Rest)",
  58590. image: {
  58591. source: "./media/characters/balans/foot-rest.svg"
  58592. }
  58593. },
  58594. footActive: {
  58595. height: math.unit(3.5, "feet"),
  58596. name: "Foot (Active)",
  58597. image: {
  58598. source: "./media/characters/balans/foot-active.svg"
  58599. }
  58600. },
  58601. },
  58602. [
  58603. {
  58604. name: "Normal",
  58605. height: math.unit(10 + 3/12, "feet"),
  58606. default: true
  58607. },
  58608. ]
  58609. ))
  58610. characterMakers.push(() => makeCharacter(
  58611. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58612. {
  58613. side: {
  58614. height: math.unit(9, "meters"),
  58615. weight: math.unit(114, "tonnes"),
  58616. name: "Side",
  58617. image: {
  58618. source: "./media/characters/eldkveikir/side.svg",
  58619. extra: 1927/338,
  58620. bottom: 42/1969
  58621. }
  58622. },
  58623. sitting: {
  58624. height: math.unit(13.4, "meters"),
  58625. weight: math.unit(114, "tonnes"),
  58626. name: "Sitting",
  58627. image: {
  58628. source: "./media/characters/eldkveikir/sitting.svg",
  58629. extra: 1108/963,
  58630. bottom: 610/1718
  58631. }
  58632. },
  58633. maw: {
  58634. height: math.unit(8.36, "meters"),
  58635. name: "Maw",
  58636. image: {
  58637. source: "./media/characters/eldkveikir/maw.svg"
  58638. }
  58639. },
  58640. hand: {
  58641. height: math.unit(4.84, "meters"),
  58642. name: "Hand",
  58643. image: {
  58644. source: "./media/characters/eldkveikir/hand.svg"
  58645. }
  58646. },
  58647. foot: {
  58648. height: math.unit(6.9, "meters"),
  58649. name: "Foot",
  58650. image: {
  58651. source: "./media/characters/eldkveikir/foot.svg"
  58652. }
  58653. },
  58654. genitals: {
  58655. height: math.unit(9.6, "meters"),
  58656. name: "Genitals",
  58657. image: {
  58658. source: "./media/characters/eldkveikir/genitals.svg"
  58659. }
  58660. },
  58661. },
  58662. [
  58663. {
  58664. name: "Normal",
  58665. height: math.unit(9, "meters"),
  58666. default: true
  58667. },
  58668. ]
  58669. ))
  58670. characterMakers.push(() => makeCharacter(
  58671. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58672. {
  58673. front: {
  58674. height: math.unit(14, "feet"),
  58675. weight: math.unit(4100, "lb"),
  58676. name: "Front",
  58677. image: {
  58678. source: "./media/characters/arrow/front.svg",
  58679. extra: 330/318,
  58680. bottom: 56/386
  58681. }
  58682. },
  58683. },
  58684. [
  58685. {
  58686. name: "Normal",
  58687. height: math.unit(14, "feet"),
  58688. default: true
  58689. },
  58690. {
  58691. name: "Minimacro",
  58692. height: math.unit(63, "feet")
  58693. },
  58694. {
  58695. name: "Macro",
  58696. height: math.unit(630, "feet")
  58697. },
  58698. {
  58699. name: "Megamacro",
  58700. height: math.unit(12600, "feet")
  58701. },
  58702. {
  58703. name: "Gigamacro",
  58704. height: math.unit(18000, "miles")
  58705. },
  58706. ]
  58707. ))
  58708. characterMakers.push(() => makeCharacter(
  58709. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58710. {
  58711. front: {
  58712. height: math.unit(10, "feet"),
  58713. weight: math.unit(2.4, "tons"),
  58714. name: "Front",
  58715. image: {
  58716. source: "./media/characters/3yk-k0-unit/front.svg",
  58717. extra: 573/561,
  58718. bottom: 33/606
  58719. }
  58720. },
  58721. back: {
  58722. height: math.unit(10, "feet"),
  58723. weight: math.unit(2.4, "tons"),
  58724. name: "Back",
  58725. image: {
  58726. source: "./media/characters/3yk-k0-unit/back.svg",
  58727. extra: 614/573,
  58728. bottom: 32/646
  58729. }
  58730. },
  58731. maw: {
  58732. height: math.unit(2.15, "feet"),
  58733. name: "Maw",
  58734. image: {
  58735. source: "./media/characters/3yk-k0-unit/maw.svg"
  58736. }
  58737. },
  58738. },
  58739. [
  58740. {
  58741. name: "Normal",
  58742. height: math.unit(10, "feet"),
  58743. default: true
  58744. },
  58745. ]
  58746. ))
  58747. characterMakers.push(() => makeCharacter(
  58748. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58749. {
  58750. front: {
  58751. height: math.unit(8 + 8/12, "feet"),
  58752. name: "Front",
  58753. image: {
  58754. source: "./media/characters/nemo/front.svg",
  58755. extra: 1308/1217,
  58756. bottom: 57/1365
  58757. }
  58758. },
  58759. },
  58760. [
  58761. {
  58762. name: "Normal",
  58763. height: math.unit(8 + 8/12, "feet"),
  58764. default: true
  58765. },
  58766. ]
  58767. ))
  58768. characterMakers.push(() => makeCharacter(
  58769. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58770. {
  58771. front: {
  58772. height: math.unit(8, "feet"),
  58773. weight: math.unit(760, "lb"),
  58774. name: "Front",
  58775. image: {
  58776. source: "./media/characters/rexx/front.svg",
  58777. extra: 786/750,
  58778. bottom: 17/803
  58779. },
  58780. extraAttributes: {
  58781. "pawLength": {
  58782. name: "Paw Length",
  58783. power: 1,
  58784. type: "length",
  58785. base: math.unit(27, "inches")
  58786. },
  58787. }
  58788. },
  58789. },
  58790. [
  58791. {
  58792. name: "Micro",
  58793. height: math.unit(2, "inches")
  58794. },
  58795. {
  58796. name: "Normal",
  58797. height: math.unit(8, "feet"),
  58798. default: true
  58799. },
  58800. {
  58801. name: "Macro",
  58802. height: math.unit(150, "feet")
  58803. },
  58804. ]
  58805. ))
  58806. characterMakers.push(() => makeCharacter(
  58807. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58808. {
  58809. front: {
  58810. height: math.unit(18, "feet"),
  58811. weight: math.unit(1975, "lb"),
  58812. name: "Front",
  58813. image: {
  58814. source: "./media/characters/draco/front.svg",
  58815. extra: 1325/1241,
  58816. bottom: 83/1408
  58817. }
  58818. },
  58819. back: {
  58820. height: math.unit(18, "feet"),
  58821. weight: math.unit(1975, "lb"),
  58822. name: "Back",
  58823. image: {
  58824. source: "./media/characters/draco/back.svg",
  58825. extra: 1332/1250,
  58826. bottom: 43/1375
  58827. }
  58828. },
  58829. dick: {
  58830. height: math.unit(7.5, "feet"),
  58831. name: "Dick",
  58832. image: {
  58833. source: "./media/characters/draco/dick.svg"
  58834. }
  58835. },
  58836. },
  58837. [
  58838. {
  58839. name: "Normal",
  58840. height: math.unit(18, "feet"),
  58841. default: true
  58842. },
  58843. ]
  58844. ))
  58845. characterMakers.push(() => makeCharacter(
  58846. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58847. {
  58848. front: {
  58849. height: math.unit(3.2, "meters"),
  58850. name: "Front",
  58851. image: {
  58852. source: "./media/characters/harriett/front.svg",
  58853. extra: 1966/1915,
  58854. bottom: 9/1975
  58855. }
  58856. },
  58857. },
  58858. [
  58859. {
  58860. name: "Normal",
  58861. height: math.unit(3.2, "meters"),
  58862. default: true
  58863. },
  58864. ]
  58865. ))
  58866. characterMakers.push(() => makeCharacter(
  58867. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58868. {
  58869. standing: {
  58870. height: math.unit(180, "cm"),
  58871. weight: math.unit(185, "lb"),
  58872. name: "Standing",
  58873. image: {
  58874. source: "./media/characters/serpentus/standing.svg",
  58875. extra: 882/878,
  58876. bottom: 16/898
  58877. }
  58878. },
  58879. sitting: {
  58880. height: math.unit(0.8, "meter"),
  58881. weight: math.unit(155, "lb"),
  58882. name: "Sitting",
  58883. image: {
  58884. source: "./media/characters/serpentus/sitting.svg",
  58885. extra: 293/290,
  58886. bottom: 140/433
  58887. }
  58888. },
  58889. },
  58890. [
  58891. {
  58892. name: "Normal",
  58893. height: math.unit(1.8, "meter"),
  58894. default: true
  58895. },
  58896. ]
  58897. ))
  58898. characterMakers.push(() => makeCharacter(
  58899. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58900. {
  58901. front: {
  58902. height: math.unit(5.7174385736, "feet"),
  58903. name: "Front",
  58904. image: {
  58905. source: "./media/characters/nova-polecat/front.svg",
  58906. extra: 1317/1216,
  58907. bottom: 92/1409
  58908. }
  58909. },
  58910. },
  58911. [
  58912. {
  58913. name: "Normal",
  58914. height: math.unit(5.7174385736, "feet"),
  58915. default: true
  58916. },
  58917. ]
  58918. ))
  58919. characterMakers.push(() => makeCharacter(
  58920. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58921. {
  58922. front: {
  58923. height: math.unit(5 + 4/12, "feet"),
  58924. weight: math.unit(250, "lb"),
  58925. name: "Front",
  58926. image: {
  58927. source: "./media/characters/mook/front.svg",
  58928. extra: 1088/1037,
  58929. bottom: 132/1220
  58930. }
  58931. },
  58932. back: {
  58933. height: math.unit(5 + 1/12, "feet"),
  58934. weight: math.unit(250, "lb"),
  58935. name: "Back",
  58936. image: {
  58937. source: "./media/characters/mook/back.svg",
  58938. extra: 1184/905,
  58939. bottom: 96/1280
  58940. }
  58941. },
  58942. head: {
  58943. height: math.unit(1.85, "feet"),
  58944. name: "Head",
  58945. image: {
  58946. source: "./media/characters/mook/head.svg"
  58947. }
  58948. },
  58949. hand: {
  58950. height: math.unit(1.9, "feet"),
  58951. name: "Hand",
  58952. image: {
  58953. source: "./media/characters/mook/hand.svg"
  58954. }
  58955. },
  58956. palm: {
  58957. height: math.unit(1.84, "feet"),
  58958. name: "Palm",
  58959. image: {
  58960. source: "./media/characters/mook/palm.svg"
  58961. }
  58962. },
  58963. foot: {
  58964. height: math.unit(1.44, "feet"),
  58965. name: "Foot",
  58966. image: {
  58967. source: "./media/characters/mook/foot.svg"
  58968. }
  58969. },
  58970. sole: {
  58971. height: math.unit(1.44, "feet"),
  58972. name: "Sole",
  58973. image: {
  58974. source: "./media/characters/mook/sole.svg"
  58975. }
  58976. },
  58977. },
  58978. [
  58979. {
  58980. name: "Normal",
  58981. height: math.unit(5 + 4/12, "feet"),
  58982. default: true
  58983. },
  58984. {
  58985. name: "Big",
  58986. height: math.unit(12, "feet")
  58987. },
  58988. ]
  58989. ))
  58990. characterMakers.push(() => makeCharacter(
  58991. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58992. {
  58993. front: {
  58994. height: math.unit(6 + 10/12, "feet"),
  58995. weight: math.unit(233, "lb"),
  58996. name: "Front",
  58997. image: {
  58998. source: "./media/characters/kayla/front.svg",
  58999. extra: 1850/1775,
  59000. bottom: 65/1915
  59001. }
  59002. },
  59003. },
  59004. [
  59005. {
  59006. name: "Normal",
  59007. height: math.unit(6 + 10/12, "feet"),
  59008. default: true
  59009. },
  59010. {
  59011. name: "Amazonian",
  59012. height: math.unit(12 + 5/12, "feet")
  59013. },
  59014. {
  59015. name: "Mini Giantess",
  59016. height: math.unit(26, "feet")
  59017. },
  59018. {
  59019. name: "Giantess",
  59020. height: math.unit(200, "feet")
  59021. },
  59022. {
  59023. name: "Mega Giantess",
  59024. height: math.unit(2500, "feet")
  59025. },
  59026. {
  59027. name: "City Sized",
  59028. height: math.unit(50, "miles")
  59029. },
  59030. {
  59031. name: "Country Sized",
  59032. height: math.unit(500, "miles")
  59033. },
  59034. {
  59035. name: "Continent Sized",
  59036. height: math.unit(2500, "miles")
  59037. },
  59038. {
  59039. name: "Planet Sized",
  59040. height: math.unit(10000, "miles")
  59041. },
  59042. {
  59043. name: "Star Sized",
  59044. height: math.unit(5e6, "miles")
  59045. },
  59046. {
  59047. name: "Solar System Sized",
  59048. height: math.unit(125, "AU")
  59049. },
  59050. {
  59051. name: "Galaxy Sized",
  59052. height: math.unit(300e3, "lightyears")
  59053. },
  59054. {
  59055. name: "Universe Sized",
  59056. height: math.unit(200e9, "lightyears")
  59057. },
  59058. {
  59059. name: "Multiverse Sized",
  59060. height: math.unit(20, "exauniverses")
  59061. },
  59062. {
  59063. name: "Mother of Existence",
  59064. height: math.unit(1e6, "yottauniverses")
  59065. },
  59066. ]
  59067. ))
  59068. characterMakers.push(() => makeCharacter(
  59069. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59070. {
  59071. side: {
  59072. height: math.unit(9.5, "meters"),
  59073. name: "Side",
  59074. image: {
  59075. source: "./media/characters/kulve-ragnarok/side.svg",
  59076. extra: 364/326,
  59077. bottom: 50/414
  59078. }
  59079. },
  59080. },
  59081. [
  59082. {
  59083. name: "Normal",
  59084. height: math.unit(9.5, "meters"),
  59085. default: true
  59086. },
  59087. ]
  59088. ))
  59089. characterMakers.push(() => makeCharacter(
  59090. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59091. {
  59092. front: {
  59093. height: math.unit(8 + 9/12, "feet"),
  59094. name: "Front",
  59095. image: {
  59096. source: "./media/characters/atlas-goat/front.svg",
  59097. extra: 1462/1323,
  59098. bottom: 12/1474
  59099. }
  59100. },
  59101. },
  59102. [
  59103. {
  59104. name: "Normal",
  59105. height: math.unit(8 + 9/12, "feet"),
  59106. default: true
  59107. },
  59108. {
  59109. name: "Skyline",
  59110. height: math.unit(845, "feet")
  59111. },
  59112. {
  59113. name: "Orbital",
  59114. height: math.unit(93000, "miles")
  59115. },
  59116. {
  59117. name: "Constellation",
  59118. height: math.unit(27000, "lightyears")
  59119. },
  59120. ]
  59121. ))
  59122. characterMakers.push(() => makeCharacter(
  59123. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59124. {
  59125. side: {
  59126. height: math.unit(1.8, "meters"),
  59127. weight: math.unit(120, "kg"),
  59128. name: "Side",
  59129. image: {
  59130. source: "./media/characters/xie-ling/side.svg",
  59131. extra: 646/574,
  59132. bottom: 44/690
  59133. }
  59134. },
  59135. },
  59136. [
  59137. {
  59138. name: "Tiny",
  59139. height: math.unit(1.80, "meters")
  59140. },
  59141. {
  59142. name: "Small",
  59143. height: math.unit(6, "meters")
  59144. },
  59145. {
  59146. name: "Medium",
  59147. height: math.unit(15, "meters")
  59148. },
  59149. {
  59150. name: "Normal",
  59151. height: math.unit(30, "meters"),
  59152. default: true
  59153. },
  59154. {
  59155. name: "Above Normal",
  59156. height: math.unit(60, "meters")
  59157. },
  59158. {
  59159. name: "Big",
  59160. height: math.unit(220, "meters")
  59161. },
  59162. {
  59163. name: "Giant",
  59164. height: math.unit(2.2, "km")
  59165. },
  59166. {
  59167. name: "Macro",
  59168. height: math.unit(25, "km")
  59169. },
  59170. {
  59171. name: "Mega Macro",
  59172. height: math.unit(350, "km")
  59173. },
  59174. {
  59175. name: "Mega Macro+",
  59176. height: math.unit(5000, "km")
  59177. },
  59178. {
  59179. name: "Goddess",
  59180. height: math.unit(3, "multiverses")
  59181. },
  59182. ]
  59183. ))
  59184. characterMakers.push(() => makeCharacter(
  59185. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59186. {
  59187. frontSfw: {
  59188. height: math.unit(5 + 11/12, "feet"),
  59189. weight: math.unit(210, "lb"),
  59190. name: "Front",
  59191. image: {
  59192. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59193. extra: 1928/1821,
  59194. bottom: 45/1973
  59195. }
  59196. },
  59197. backSfw: {
  59198. height: math.unit(5 + 11/12, "feet"),
  59199. weight: math.unit(210, "lb"),
  59200. name: "Back",
  59201. image: {
  59202. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59203. extra: 1920/1813,
  59204. bottom: 34/1954
  59205. }
  59206. },
  59207. frontNsfw: {
  59208. height: math.unit(5 + 11/12, "feet"),
  59209. weight: math.unit(210, "lb"),
  59210. name: "Front (NSFW)",
  59211. image: {
  59212. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59213. extra: 1928/1821,
  59214. bottom: 45/1973
  59215. }
  59216. },
  59217. backNsfw: {
  59218. height: math.unit(5 + 11/12, "feet"),
  59219. weight: math.unit(210, "lb"),
  59220. name: "Back (NSFW)",
  59221. image: {
  59222. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59223. extra: 1920/1813,
  59224. bottom: 34/1954
  59225. }
  59226. },
  59227. },
  59228. [
  59229. {
  59230. name: "Normal",
  59231. height: math.unit(5 + 11/12, "feet"),
  59232. default: true
  59233. },
  59234. {
  59235. name: "Goddess",
  59236. height: math.unit(20 + 3/12, "feet")
  59237. },
  59238. {
  59239. name: "Breaker of Man",
  59240. height: math.unit(329 + 9/12, "feet")
  59241. },
  59242. {
  59243. name: "Solar Justice",
  59244. height: math.unit(0.6, "solarradii")
  59245. },
  59246. {
  59247. name: "She Who Judges",
  59248. height: math.unit(1, "universe")
  59249. },
  59250. ]
  59251. ))
  59252. characterMakers.push(() => makeCharacter(
  59253. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59254. {
  59255. casual_front: {
  59256. height: math.unit(6 + 1/12, "feet"),
  59257. weight: math.unit(190, "lb"),
  59258. preyCapacity: math.unit(1, "people"),
  59259. name: "Front",
  59260. image: {
  59261. source: "./media/characters/managarmr/casual-front.svg",
  59262. extra: 411/381,
  59263. bottom: 15/426
  59264. },
  59265. extraAttributes: {
  59266. "pawSize": {
  59267. name: "Paw Size",
  59268. power: 1,
  59269. type: "length",
  59270. base: math.unit(0.2, "meters")
  59271. },
  59272. },
  59273. form: "casual",
  59274. },
  59275. casual_back: {
  59276. height: math.unit(6 + 1/12, "feet"),
  59277. weight: math.unit(190, "lb"),
  59278. preyCapacity: math.unit(1, "people"),
  59279. name: "Back",
  59280. image: {
  59281. source: "./media/characters/managarmr/casual-back.svg",
  59282. extra: 413/383,
  59283. bottom: 13/426
  59284. },
  59285. extraAttributes: {
  59286. "pawSize": {
  59287. name: "Paw Size",
  59288. power: 1,
  59289. type: "length",
  59290. base: math.unit(0.2, "meters")
  59291. },
  59292. },
  59293. form: "casual",
  59294. },
  59295. base_front: {
  59296. height: math.unit(7, "feet"),
  59297. weight: math.unit(210, "lb"),
  59298. preyCapacity: math.unit(2, "people"),
  59299. name: "Front",
  59300. image: {
  59301. source: "./media/characters/managarmr/base-front.svg",
  59302. extra: 580/485,
  59303. bottom: 32/612
  59304. },
  59305. extraAttributes: {
  59306. "wingspan": {
  59307. name: "Wingspan",
  59308. power: 1,
  59309. type: "length",
  59310. base: math.unit(4, "meters")
  59311. },
  59312. "pawSize": {
  59313. name: "Paw Size",
  59314. power: 1,
  59315. type: "length",
  59316. base: math.unit(0.2, "meters")
  59317. },
  59318. },
  59319. form: "base",
  59320. },
  59321. "true-divine_front": {
  59322. height: math.unit(40, "feet"),
  59323. weight: math.unit(39000, "lb"),
  59324. preyCapacity: math.unit(375, "people"),
  59325. name: "Front",
  59326. image: {
  59327. source: "./media/characters/managarmr/true-divine-front.svg",
  59328. extra: 725/573,
  59329. bottom: 120/845
  59330. },
  59331. extraAttributes: {
  59332. "wingspan": {
  59333. name: "Wingspan",
  59334. power: 1,
  59335. type: "length",
  59336. base: math.unit(20, "meters")
  59337. },
  59338. "pawSize": {
  59339. name: "Paw Size",
  59340. power: 1,
  59341. type: "length",
  59342. base: math.unit(1.5, "meters")
  59343. },
  59344. },
  59345. form: "true-divine",
  59346. },
  59347. },
  59348. [
  59349. {
  59350. name: "Normal",
  59351. height: math.unit(6 + 1/12, "feet"),
  59352. form: "casual",
  59353. default: true
  59354. },
  59355. {
  59356. name: "Normal",
  59357. height: math.unit(7, "feet"),
  59358. form: "base",
  59359. default: true
  59360. },
  59361. ],
  59362. {
  59363. "casual": {
  59364. name: "Casual",
  59365. default: true
  59366. },
  59367. "base": {
  59368. name: "Base",
  59369. },
  59370. "true-divine": {
  59371. name: "True Divine",
  59372. },
  59373. }
  59374. ))
  59375. characterMakers.push(() => makeCharacter(
  59376. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59377. {
  59378. front: {
  59379. height: math.unit(1.8, "meters"),
  59380. weight: math.unit(110, "kg"),
  59381. name: "Front",
  59382. image: {
  59383. source: "./media/characters/mystra/front.svg",
  59384. extra: 529/442,
  59385. bottom: 31/560
  59386. }
  59387. },
  59388. frontLewd: {
  59389. height: math.unit(1.8, "meters"),
  59390. weight: math.unit(110, "kg"),
  59391. name: "Front (Lewd)",
  59392. image: {
  59393. source: "./media/characters/mystra/front-lewd.svg",
  59394. extra: 529/442,
  59395. bottom: 31/560
  59396. }
  59397. },
  59398. head: {
  59399. height: math.unit(1.63, "feet"),
  59400. name: "Head",
  59401. image: {
  59402. source: "./media/characters/mystra/head.svg"
  59403. }
  59404. },
  59405. paw: {
  59406. height: math.unit(1.9, "feet"),
  59407. name: "Paw",
  59408. image: {
  59409. source: "./media/characters/mystra/paw.svg"
  59410. }
  59411. },
  59412. },
  59413. [
  59414. {
  59415. name: "Incognito",
  59416. height: math.unit(2.3, "meters")
  59417. },
  59418. {
  59419. name: "Small Macro",
  59420. height: math.unit(300, "meters")
  59421. },
  59422. {
  59423. name: "Small Mega",
  59424. height: math.unit(2, "km")
  59425. },
  59426. {
  59427. name: "Mega",
  59428. height: math.unit(30, "km")
  59429. },
  59430. {
  59431. name: "Small Giga",
  59432. height: math.unit(100, "km")
  59433. },
  59434. {
  59435. name: "Giga",
  59436. height: math.unit(1000, "km"),
  59437. default: true
  59438. },
  59439. {
  59440. name: "Continental",
  59441. height: math.unit(5000, "km")
  59442. },
  59443. {
  59444. name: "Terra",
  59445. height: math.unit(20000, "km")
  59446. },
  59447. {
  59448. name: "Solar",
  59449. height: math.unit(2e6, "km")
  59450. },
  59451. {
  59452. name: "Galactic",
  59453. height: math.unit(528502, "lightyears")
  59454. },
  59455. {
  59456. name: "Universal",
  59457. height: math.unit(20, "universes")
  59458. },
  59459. ]
  59460. ))
  59461. characterMakers.push(() => makeCharacter(
  59462. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59463. {
  59464. front: {
  59465. height: math.unit(2, "meters"),
  59466. weight: math.unit(140, "kg"),
  59467. name: "Front",
  59468. image: {
  59469. source: "./media/characters/caleb/front.svg",
  59470. extra: 873/817,
  59471. bottom: 47/920
  59472. }
  59473. },
  59474. back: {
  59475. height: math.unit(2, "meters"),
  59476. weight: math.unit(140, "kg"),
  59477. name: "Back",
  59478. image: {
  59479. source: "./media/characters/caleb/back.svg",
  59480. extra: 877/828,
  59481. bottom: 24/901
  59482. }
  59483. },
  59484. snakeTail: {
  59485. height: math.unit(1.44, "feet"),
  59486. name: "Snake Tail",
  59487. image: {
  59488. source: "./media/characters/caleb/snake-tail.svg"
  59489. }
  59490. },
  59491. dick: {
  59492. height: math.unit(2.6, "feet"),
  59493. name: "Dick",
  59494. image: {
  59495. source: "./media/characters/caleb/dick.svg"
  59496. }
  59497. },
  59498. },
  59499. [
  59500. {
  59501. name: "Incognito",
  59502. height: math.unit(3, "meters")
  59503. },
  59504. {
  59505. name: "Home Size",
  59506. height: math.unit(200, "meters"),
  59507. default: true
  59508. },
  59509. {
  59510. name: "Macro",
  59511. height: math.unit(500, "meters")
  59512. },
  59513. {
  59514. name: "Big Macro",
  59515. height: math.unit(5, "km")
  59516. },
  59517. {
  59518. name: "Giga",
  59519. height: math.unit(250, "km")
  59520. },
  59521. {
  59522. name: "Giga+",
  59523. height: math.unit(5000, "km")
  59524. },
  59525. {
  59526. name: "Small Terra",
  59527. height: math.unit(35e3, "km")
  59528. },
  59529. {
  59530. name: "Terra",
  59531. height: math.unit(2e6, "km")
  59532. },
  59533. {
  59534. name: "Terra+",
  59535. height: math.unit(1.5e6, "km")
  59536. },
  59537. ]
  59538. ))
  59539. characterMakers.push(() => makeCharacter(
  59540. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59541. {
  59542. front: {
  59543. height: math.unit(2, "meters"),
  59544. weight: math.unit(120, "kg"),
  59545. name: "Front",
  59546. image: {
  59547. source: "./media/characters/gilirian/front.svg",
  59548. extra: 805/737,
  59549. bottom: 13/818
  59550. }
  59551. },
  59552. side: {
  59553. height: math.unit(2, "meters"),
  59554. weight: math.unit(120, "kg"),
  59555. name: "Side",
  59556. image: {
  59557. source: "./media/characters/gilirian/side.svg",
  59558. extra: 810/746,
  59559. bottom: 6/816
  59560. }
  59561. },
  59562. back: {
  59563. height: math.unit(2, "meters"),
  59564. weight: math.unit(120, "kg"),
  59565. name: "Back",
  59566. image: {
  59567. source: "./media/characters/gilirian/back.svg",
  59568. extra: 815/745,
  59569. bottom: 15/830
  59570. }
  59571. },
  59572. frontNsfw: {
  59573. height: math.unit(2, "meters"),
  59574. weight: math.unit(120, "kg"),
  59575. name: "Front (NSFW)",
  59576. image: {
  59577. source: "./media/characters/gilirian/front-nsfw.svg",
  59578. extra: 805/737,
  59579. bottom: 13/818
  59580. }
  59581. },
  59582. sideNsfw: {
  59583. height: math.unit(2, "meters"),
  59584. weight: math.unit(120, "kg"),
  59585. name: "Side (NSFW)",
  59586. image: {
  59587. source: "./media/characters/gilirian/side-nsfw.svg",
  59588. extra: 810/746,
  59589. bottom: 6/816
  59590. }
  59591. },
  59592. },
  59593. [
  59594. {
  59595. name: "Incognito",
  59596. height: math.unit(2, "meters"),
  59597. default: true
  59598. },
  59599. {
  59600. name: "Macro",
  59601. height: math.unit(250, "meters")
  59602. },
  59603. {
  59604. name: "Big Macro",
  59605. height: math.unit(1500, "meters")
  59606. },
  59607. {
  59608. name: "Mega",
  59609. height: math.unit(40, "km")
  59610. },
  59611. {
  59612. name: "Giga",
  59613. height: math.unit(300, "km")
  59614. },
  59615. {
  59616. name: "Extra Giga",
  59617. height: math.unit(5000, "km")
  59618. },
  59619. {
  59620. name: "Small Terra",
  59621. height: math.unit(10e3, "km")
  59622. },
  59623. {
  59624. name: "Terra",
  59625. height: math.unit(3e5, "km")
  59626. },
  59627. {
  59628. name: "Galactic",
  59629. height: math.unit(369950, "lightyears")
  59630. },
  59631. ]
  59632. ))
  59633. characterMakers.push(() => makeCharacter(
  59634. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59635. {
  59636. front: {
  59637. height: math.unit(2.5, "meters"),
  59638. weight: math.unit(230, "lb"),
  59639. name: "Front",
  59640. image: {
  59641. source: "./media/characters/tarken/front.svg",
  59642. extra: 764/720,
  59643. bottom: 49/813
  59644. }
  59645. },
  59646. back: {
  59647. height: math.unit(2.5, "meters"),
  59648. weight: math.unit(230, "lb"),
  59649. name: "Back",
  59650. image: {
  59651. source: "./media/characters/tarken/back.svg",
  59652. extra: 756/720,
  59653. bottom: 35/791
  59654. }
  59655. },
  59656. frontNsfw: {
  59657. height: math.unit(2.5, "meters"),
  59658. weight: math.unit(230, "lb"),
  59659. name: "Front (NSFW)",
  59660. image: {
  59661. source: "./media/characters/tarken/front-nsfw.svg",
  59662. extra: 764/720,
  59663. bottom: 49/813
  59664. }
  59665. },
  59666. backNsfw: {
  59667. height: math.unit(2.5, "meters"),
  59668. weight: math.unit(230, "lb"),
  59669. name: "Back (NSFW)",
  59670. image: {
  59671. source: "./media/characters/tarken/back-nsfw.svg",
  59672. extra: 756/720,
  59673. bottom: 35/791
  59674. }
  59675. },
  59676. head: {
  59677. height: math.unit(2.22, "feet"),
  59678. name: "Head",
  59679. image: {
  59680. source: "./media/characters/tarken/head.svg"
  59681. }
  59682. },
  59683. tail: {
  59684. height: math.unit(5.25, "feet"),
  59685. name: "Tail",
  59686. image: {
  59687. source: "./media/characters/tarken/tail.svg"
  59688. }
  59689. },
  59690. dick: {
  59691. height: math.unit(1.95, "feet"),
  59692. name: "Dick",
  59693. image: {
  59694. source: "./media/characters/tarken/dick.svg"
  59695. }
  59696. },
  59697. hand: {
  59698. height: math.unit(1.78, "feet"),
  59699. name: "Hand",
  59700. image: {
  59701. source: "./media/characters/tarken/hand.svg"
  59702. }
  59703. },
  59704. beam: {
  59705. height: math.unit(1.5, "feet"),
  59706. name: "Beam",
  59707. image: {
  59708. source: "./media/characters/tarken/beam.svg"
  59709. }
  59710. },
  59711. },
  59712. [
  59713. {
  59714. name: "Original Size",
  59715. height: math.unit(2.5, "meters")
  59716. },
  59717. {
  59718. name: "Macro",
  59719. height: math.unit(150, "meters"),
  59720. default: true
  59721. },
  59722. {
  59723. name: "Macro+",
  59724. height: math.unit(300, "meters")
  59725. },
  59726. {
  59727. name: "Mega",
  59728. height: math.unit(2, "km")
  59729. },
  59730. {
  59731. name: "Mega+",
  59732. height: math.unit(35, "km")
  59733. },
  59734.  {
  59735. name: "Mega++",
  59736. height: math.unit(60, "km")
  59737. },
  59738. {
  59739. name: "Giga",
  59740. height: math.unit(200, "km")
  59741. },
  59742. {
  59743. name: "Giga+",
  59744. height: math.unit(2500, "km")
  59745. },
  59746. {
  59747. name: "Giga++",
  59748. height: math.unit(6600, "km")
  59749. },
  59750. {
  59751. name: "Terra",
  59752. height: math.unit(20000, "km")
  59753. },
  59754. {
  59755. name: "Terra+",
  59756. height: math.unit(300000, "km")
  59757. },
  59758. ]
  59759. ))
  59760. characterMakers.push(() => makeCharacter(
  59761. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59762. {
  59763. magpie_dressed: {
  59764. height: math.unit(1.7, "meters"),
  59765. weight: math.unit(70, "kg"),
  59766. name: "Dressed",
  59767. image: {
  59768. source: "./media/characters/otreus/magpie-dressed.svg",
  59769. extra: 691/672,
  59770. bottom: 116/807
  59771. },
  59772. form: "magpie",
  59773. default: true
  59774. },
  59775. magpie_nude: {
  59776. height: math.unit(1.7, "meters"),
  59777. weight: math.unit(70, "kg"),
  59778. name: "Nude",
  59779. image: {
  59780. source: "./media/characters/otreus/magpie-nude.svg",
  59781. extra: 691/672,
  59782. bottom: 116/807
  59783. },
  59784. form: "magpie",
  59785. },
  59786. magpie_dressedLewd: {
  59787. height: math.unit(1.7, "meters"),
  59788. weight: math.unit(70, "kg"),
  59789. name: "Dressed (Lewd)",
  59790. image: {
  59791. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59792. extra: 691/672,
  59793. bottom: 116/807
  59794. },
  59795. form: "magpie",
  59796. },
  59797. magpie_nudeLewd: {
  59798. height: math.unit(1.7, "meters"),
  59799. weight: math.unit(70, "kg"),
  59800. name: "Nude (Lewd)",
  59801. image: {
  59802. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59803. extra: 691/672,
  59804. bottom: 116/807
  59805. },
  59806. form: "magpie",
  59807. },
  59808. magpie_leftFoot: {
  59809. height: math.unit(1.58, "feet"),
  59810. name: "Left Foot",
  59811. image: {
  59812. source: "./media/characters/otreus/magpie-left-foot.svg"
  59813. },
  59814. form: "magpie",
  59815. },
  59816. magpie_rightFoot: {
  59817. height: math.unit(1.58, "feet"),
  59818. name: "Right Foot",
  59819. image: {
  59820. source: "./media/characters/otreus/magpie-right-foot.svg"
  59821. },
  59822. form: "magpie",
  59823. },
  59824. magpie_wingspan: {
  59825. height: math.unit(2, "meters"),
  59826. weight: math.unit(70, "kg"),
  59827. name: "Wingspan",
  59828. image: {
  59829. source: "./media/characters/otreus/magpie-wingspan.svg"
  59830. },
  59831. extraAttributes: {
  59832. "wingspan": {
  59833. name: "Wingspan",
  59834. power: 1,
  59835. type: "length",
  59836. base: math.unit(3.35, "meters")
  59837. },
  59838. },
  59839. form: "magpie",
  59840. },
  59841. hippogriff_dressed: {
  59842. height: math.unit(1.7, "meters"),
  59843. weight: math.unit(70, "kg"),
  59844. name: "Dressed",
  59845. image: {
  59846. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59847. extra: 710/689,
  59848. bottom: 67/777
  59849. },
  59850. form: "hippogriff",
  59851. default: true
  59852. },
  59853. hippogriff_nude: {
  59854. height: math.unit(1.7, "meters"),
  59855. weight: math.unit(70, "kg"),
  59856. name: "Nude",
  59857. image: {
  59858. source: "./media/characters/otreus/hippogriff-nude.svg",
  59859. extra: 710/689,
  59860. bottom: 67/777
  59861. },
  59862. form: "hippogriff",
  59863. },
  59864. hippogriff_dressedLewd: {
  59865. height: math.unit(1.7, "meters"),
  59866. weight: math.unit(70, "kg"),
  59867. name: "Dressed (Lewd)",
  59868. image: {
  59869. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59870. extra: 710/689,
  59871. bottom: 67/777
  59872. },
  59873. form: "hippogriff",
  59874. },
  59875. hippogriff_nudeLewd: {
  59876. height: math.unit(1.7, "meters"),
  59877. weight: math.unit(70, "kg"),
  59878. name: "Nude (Lewd)",
  59879. image: {
  59880. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59881. extra: 710/689,
  59882. bottom: 67/777
  59883. },
  59884. form: "hippogriff",
  59885. },
  59886. },
  59887. [
  59888. {
  59889. name: "Original Size",
  59890. height: math.unit(1.7, "meters"),
  59891. allForms: true
  59892. },
  59893. {
  59894. name: "Incognito Size",
  59895. height: math.unit(2, "meters"),
  59896. allForms: true
  59897. },
  59898. {
  59899. name: "Mega",
  59900. height: math.unit(2, "km"),
  59901. allForms: true
  59902. },
  59903. {
  59904. name: "Mega+",
  59905. height: math.unit(40, "km"),
  59906. allForms: true
  59907. },
  59908. {
  59909. name: "Giga",
  59910. height: math.unit(250, "km"),
  59911. allForms: true
  59912. },
  59913. {
  59914. name: "Giga+",
  59915. height: math.unit(3000, "km"),
  59916. allForms: true
  59917. },
  59918. {
  59919. name: "Terra",
  59920. height: math.unit(20000, "km"),
  59921. allForms: true
  59922. },
  59923. {
  59924. name: "Solar (Home Size)",
  59925. height: math.unit(3e6, "km"),
  59926. allForms: true,
  59927. default: true
  59928. },
  59929. ],
  59930. {
  59931. "magpie": {
  59932. name: "Magpie",
  59933. default: true
  59934. },
  59935. "hippogriff": {
  59936. name: "Hippogriff",
  59937. },
  59938. }
  59939. ))
  59940. characterMakers.push(() => makeCharacter(
  59941. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59942. {
  59943. frontDressed: {
  59944. height: math.unit(1.8, "meters"),
  59945. weight: math.unit(90, "kg"),
  59946. name: "Front (Dressed)",
  59947. image: {
  59948. source: "./media/characters/thalia/front-dressed.svg",
  59949. extra: 478/402,
  59950. bottom: 55/533
  59951. }
  59952. },
  59953. backDressed: {
  59954. height: math.unit(1.8, "meters"),
  59955. weight: math.unit(90, "kg"),
  59956. name: "Back (Dressed)",
  59957. image: {
  59958. source: "./media/characters/thalia/back-dressed.svg",
  59959. extra: 500/424,
  59960. bottom: 15/515
  59961. }
  59962. },
  59963. frontNude: {
  59964. height: math.unit(1.8, "meters"),
  59965. weight: math.unit(90, "kg"),
  59966. name: "Front (Nude)",
  59967. image: {
  59968. source: "./media/characters/thalia/front-nude.svg",
  59969. extra: 478/402,
  59970. bottom: 55/533
  59971. }
  59972. },
  59973. backNude: {
  59974. height: math.unit(1.8, "meters"),
  59975. weight: math.unit(90, "kg"),
  59976. name: "Back (Nude)",
  59977. image: {
  59978. source: "./media/characters/thalia/back-nude.svg",
  59979. extra: 500/424,
  59980. bottom: 15/515
  59981. }
  59982. },
  59983. },
  59984. [
  59985. {
  59986. name: "Incognito",
  59987. height: math.unit(3, "meters")
  59988. },
  59989. {
  59990. name: "Macro",
  59991. height: math.unit(500, "meters")
  59992. },
  59993. {
  59994. name: "Mega",
  59995. height: math.unit(5, "km")
  59996. },
  59997. {
  59998. name: "Mega+",
  59999. height: math.unit(30, "km")
  60000. },
  60001. {
  60002. name: "Giga",
  60003. height: math.unit(350, "km")
  60004. },
  60005. {
  60006. name: "Giga+",
  60007. height: math.unit(4000, "km")
  60008. },
  60009. {
  60010. name: "Terra",
  60011. height: math.unit(35000, "km")
  60012. },
  60013. {
  60014. name: "Original Size",
  60015. height: math.unit(130000, "km")
  60016. },
  60017. {
  60018. name: "Solar (Home Size)",
  60019. height: math.unit(4e6, "km"),
  60020. default: true
  60021. },
  60022. ]
  60023. ))
  60024. characterMakers.push(() => makeCharacter(
  60025. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60026. {
  60027. front: {
  60028. height: math.unit(1.8, "meters"),
  60029. weight: math.unit(95, "kg"),
  60030. name: "Front",
  60031. image: {
  60032. source: "./media/characters/shango/front.svg",
  60033. extra: 1925/1774,
  60034. bottom: 67/1992
  60035. }
  60036. },
  60037. back: {
  60038. height: math.unit(1.8, "meters"),
  60039. weight: math.unit(95, "kg"),
  60040. name: "Back",
  60041. image: {
  60042. source: "./media/characters/shango/back.svg",
  60043. extra: 1915/1766,
  60044. bottom: 52/1967
  60045. }
  60046. },
  60047. frontLewd: {
  60048. height: math.unit(1.8, "meters"),
  60049. weight: math.unit(95, "kg"),
  60050. name: "Front (Lewd)",
  60051. image: {
  60052. source: "./media/characters/shango/front-lewd.svg",
  60053. extra: 1925/1774,
  60054. bottom: 67/1992
  60055. }
  60056. },
  60057. backLewd: {
  60058. height: math.unit(1.8, "meters"),
  60059. weight: math.unit(95, "kg"),
  60060. name: "Back (Lewd)",
  60061. image: {
  60062. source: "./media/characters/shango/back-lewd.svg",
  60063. extra: 1915/1766,
  60064. bottom: 52/1967
  60065. }
  60066. },
  60067. maw: {
  60068. height: math.unit(1.64, "feet"),
  60069. name: "Maw",
  60070. image: {
  60071. source: "./media/characters/shango/maw.svg"
  60072. }
  60073. },
  60074. dick: {
  60075. height: math.unit(2.14, "feet"),
  60076. name: "Dick",
  60077. image: {
  60078. source: "./media/characters/shango/dick.svg"
  60079. }
  60080. },
  60081. },
  60082. [
  60083. {
  60084. name: "Incognito",
  60085. height: math.unit(1.8, "meters")
  60086. },
  60087. {
  60088. name: "Home Size",
  60089. height: math.unit(60, "meters"),
  60090. default: true
  60091. },
  60092. {
  60093. name: "Macro",
  60094. height: math.unit(450, "meters")
  60095. },
  60096. {
  60097. name: "Mega",
  60098. height: math.unit(6, "km")
  60099. },
  60100. {
  60101. name: "Mega+",
  60102. height: math.unit(35, "km")
  60103. },
  60104. {
  60105. name: "Giga",
  60106. height: math.unit(500, "km")
  60107. },
  60108. {
  60109. name: "Giga+",
  60110. height: math.unit(5000, "km")
  60111. },
  60112. {
  60113. name: "Terra",
  60114. height: math.unit(60000, "km")
  60115. },
  60116. {
  60117. name: "Terra+",
  60118. height: math.unit(400000, "km")
  60119. },
  60120. ]
  60121. ))
  60122. characterMakers.push(() => makeCharacter(
  60123. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60124. {
  60125. front: {
  60126. height: math.unit(2, "meters"),
  60127. weight: math.unit(95, "kg"),
  60128. name: "Front",
  60129. image: {
  60130. source: "./media/characters/osiris-gryphon/front.svg",
  60131. extra: 1508/1313,
  60132. bottom: 87/1595
  60133. }
  60134. },
  60135. back: {
  60136. height: math.unit(2, "meters"),
  60137. weight: math.unit(95, "kg"),
  60138. name: "Back",
  60139. image: {
  60140. source: "./media/characters/osiris-gryphon/back.svg",
  60141. extra: 1436/1309,
  60142. bottom: 64/1500
  60143. }
  60144. },
  60145. frontLewd: {
  60146. height: math.unit(2, "meters"),
  60147. weight: math.unit(95, "kg"),
  60148. name: "Front (Lewd)",
  60149. image: {
  60150. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60151. extra: 1508/1313,
  60152. bottom: 87/1595
  60153. }
  60154. },
  60155. wing: {
  60156. height: math.unit(6.3333, "feet"),
  60157. name: "Wing",
  60158. image: {
  60159. source: "./media/characters/osiris-gryphon/wing.svg"
  60160. }
  60161. },
  60162. },
  60163. [
  60164. {
  60165. name: "Incognito",
  60166. height: math.unit(2, "meters")
  60167. },
  60168. {
  60169. name: "Home Size",
  60170. height: math.unit(30, "meters"),
  60171. default: true
  60172. },
  60173. {
  60174. name: "Macro",
  60175. height: math.unit(100, "meters")
  60176. },
  60177. {
  60178. name: "Macro+",
  60179. height: math.unit(350, "meters")
  60180. },
  60181. {
  60182. name: "Mega",
  60183. height: math.unit(40, "km")
  60184. },
  60185. {
  60186. name: "Giga",
  60187. height: math.unit(300, "km")
  60188. },
  60189. {
  60190. name: "Giga+",
  60191. height: math.unit(2000, "km")
  60192. },
  60193. {
  60194. name: "Terra",
  60195. height: math.unit(30000, "km")
  60196. },
  60197. ]
  60198. ))
  60199. characterMakers.push(() => makeCharacter(
  60200. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60201. {
  60202. front: {
  60203. height: math.unit(2.5, "meters"),
  60204. weight: math.unit(200, "kg"),
  60205. name: "Front",
  60206. image: {
  60207. source: "./media/characters/atlas-dragon/front.svg",
  60208. extra: 745/462,
  60209. bottom: 36/781
  60210. }
  60211. },
  60212. back: {
  60213. height: math.unit(2.5, "meters"),
  60214. weight: math.unit(200, "kg"),
  60215. name: "Back",
  60216. image: {
  60217. source: "./media/characters/atlas-dragon/back.svg",
  60218. extra: 848/822,
  60219. bottom: 57/905
  60220. }
  60221. },
  60222. frontLewd: {
  60223. height: math.unit(2.5, "meters"),
  60224. weight: math.unit(200, "kg"),
  60225. name: "Front (Lewd)",
  60226. image: {
  60227. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60228. extra: 745/462,
  60229. bottom: 36/781
  60230. }
  60231. },
  60232. backLewd: {
  60233. height: math.unit(2.5, "meters"),
  60234. weight: math.unit(200, "kg"),
  60235. name: "Back (Lewd)",
  60236. image: {
  60237. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60238. extra: 848/822,
  60239. bottom: 57/905
  60240. }
  60241. },
  60242. },
  60243. [
  60244. {
  60245. name: "Incognito",
  60246. height: math.unit(2.5, "meters")
  60247. },
  60248. {
  60249. name: "Small Macro",
  60250. height: math.unit(50, "meters")
  60251. },
  60252. {
  60253. name: "Macro",
  60254. height: math.unit(350, "meters")
  60255. },
  60256. {
  60257. name: "Mega",
  60258. height: math.unit(5.5, "kilometers")
  60259. },
  60260. {
  60261. name: "Mega+",
  60262. height: math.unit(50, "km")
  60263. },
  60264. {
  60265. name: "Giga",
  60266. height: math.unit(350, "km")
  60267. },
  60268. {
  60269. name: "Giga+",
  60270. height: math.unit(2000, "km")
  60271. },
  60272. {
  60273. name: "Giga++",
  60274. height: math.unit(6500, "km")
  60275. },
  60276. {
  60277. name: "Terra",
  60278. height: math.unit(30000, "km")
  60279. },
  60280. {
  60281. name: "Terra+",
  60282. height: math.unit(250000, "km")
  60283. },
  60284. {
  60285. name: "True Size",
  60286. height: math.unit(100, "multiverses"),
  60287. default: true
  60288. },
  60289. ]
  60290. ))
  60291. characterMakers.push(() => makeCharacter(
  60292. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60293. {
  60294. front: {
  60295. height: math.unit(1.8, "m"),
  60296. weight: math.unit(120, "kg"),
  60297. name: "Front",
  60298. image: {
  60299. source: "./media/characters/chey/front.svg",
  60300. extra: 1359/1270,
  60301. bottom: 18/1377
  60302. }
  60303. },
  60304. arm: {
  60305. height: math.unit(2.05, "feet"),
  60306. name: "Arm",
  60307. image: {
  60308. source: "./media/characters/chey/arm.svg"
  60309. }
  60310. },
  60311. head: {
  60312. height: math.unit(1.89, "feet"),
  60313. name: "Head",
  60314. image: {
  60315. source: "./media/characters/chey/head.svg"
  60316. }
  60317. },
  60318. },
  60319. [
  60320. {
  60321. name: "Original Size",
  60322. height: math.unit(5, "cm")
  60323. },
  60324. {
  60325. name: "Incognito Size",
  60326. height: math.unit(2.4, "m")
  60327. },
  60328. {
  60329. name: "Home Size",
  60330. height: math.unit(200, "meters"),
  60331. default: true
  60332. },
  60333. {
  60334. name: "Mega",
  60335. height: math.unit(2, "km")
  60336. },
  60337. {
  60338. name: "Giga (Preferred Size)",
  60339. height: math.unit(2000, "km")
  60340. },
  60341. {
  60342. name: "Giga+",
  60343. height: math.unit(6000, "km")
  60344. },
  60345. {
  60346. name: "Terra",
  60347. height: math.unit(17000, "km")
  60348. },
  60349. {
  60350. name: "Terra+",
  60351. height: math.unit(75000, "km")
  60352. },
  60353. {
  60354. name: "Terra++",
  60355. height: math.unit(225000, "km")
  60356. },
  60357. ]
  60358. ))
  60359. characterMakers.push(() => makeCharacter(
  60360. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60361. {
  60362. side: {
  60363. height: math.unit(7.8, "meters"),
  60364. name: "Side",
  60365. image: {
  60366. source: "./media/characters/ragnarok/side.svg",
  60367. extra: 725/621,
  60368. bottom: 72/797
  60369. }
  60370. },
  60371. },
  60372. [
  60373. {
  60374. name: "Normal",
  60375. height: math.unit(7.8, "meters"),
  60376. default: true
  60377. },
  60378. ]
  60379. ))
  60380. characterMakers.push(() => makeCharacter(
  60381. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60382. {
  60383. hyena_front: {
  60384. height: math.unit(2.1, "meters"),
  60385. weight: math.unit(110, "kg"),
  60386. name: "Front",
  60387. image: {
  60388. source: "./media/characters/nima/hyena-front.svg",
  60389. extra: 1904/1796,
  60390. bottom: 67/1971
  60391. },
  60392. form: "hyena",
  60393. },
  60394. hyena_back: {
  60395. height: math.unit(2.1, "meters"),
  60396. weight: math.unit(110, "kg"),
  60397. name: "Back",
  60398. image: {
  60399. source: "./media/characters/nima/hyena-back.svg",
  60400. extra: 1964/1884,
  60401. bottom: 35/1999
  60402. },
  60403. form: "hyena",
  60404. },
  60405. shark_front: {
  60406. height: math.unit(1.95, "meters"),
  60407. weight: math.unit(110, "kg"),
  60408. name: "Front",
  60409. image: {
  60410. source: "./media/characters/nima/shark-front.svg",
  60411. extra: 2238/2013,
  60412. bottom: 0/223
  60413. },
  60414. form: "shark",
  60415. },
  60416. paw: {
  60417. height: math.unit(1, "feet"),
  60418. name: "Paw",
  60419. image: {
  60420. source: "./media/characters/nima/paw.svg"
  60421. }
  60422. },
  60423. circlet: {
  60424. height: math.unit(0.3, "feet"),
  60425. name: "Circlet",
  60426. image: {
  60427. source: "./media/characters/nima/circlet.svg"
  60428. }
  60429. },
  60430. necklace: {
  60431. height: math.unit(1.2, "feet"),
  60432. name: "Necklace",
  60433. image: {
  60434. source: "./media/characters/nima/necklace.svg"
  60435. }
  60436. },
  60437. bracelet: {
  60438. height: math.unit(0.51, "feet"),
  60439. name: "Bracelet",
  60440. image: {
  60441. source: "./media/characters/nima/bracelet.svg"
  60442. }
  60443. },
  60444. armband: {
  60445. height: math.unit(1.3, "feet"),
  60446. name: "Armband",
  60447. image: {
  60448. source: "./media/characters/nima/armband.svg"
  60449. }
  60450. },
  60451. },
  60452. [
  60453. {
  60454. name: "Incognito",
  60455. height: math.unit(2.1, "meters"),
  60456. allForms: true
  60457. },
  60458. {
  60459. name: "Small Macro",
  60460. height: math.unit(50, "meters"),
  60461. allForms: true
  60462. },
  60463. {
  60464. name: "Macro",
  60465. height: math.unit(200, "meters"),
  60466. allForms: true
  60467. },
  60468. {
  60469. name: "Mega",
  60470. height: math.unit(2.5, "km"),
  60471. allForms: true
  60472. },
  60473. {
  60474. name: "Mega+",
  60475. height: math.unit(30, "km"),
  60476. allForms: true
  60477. },
  60478. {
  60479. name: "Giga (Home Size)",
  60480. height: math.unit(400, "km"),
  60481. allForms: true,
  60482. default: true
  60483. },
  60484. {
  60485. name: "Giga+",
  60486. height: math.unit(2500, "km"),
  60487. allForms: true
  60488. },
  60489. {
  60490. name: "Giga++",
  60491. height: math.unit(8000, "km"),
  60492. allForms: true
  60493. },
  60494. {
  60495. name: "Terra",
  60496. height: math.unit(20000, "km"),
  60497. allForms: true
  60498. },
  60499. {
  60500. name: "Terra+",
  60501. height: math.unit(70000, "km"),
  60502. allForms: true
  60503. },
  60504. {
  60505. name: "Terra++",
  60506. height: math.unit(600000, "km"),
  60507. allForms: true
  60508. },
  60509. {
  60510. name: "Galactic",
  60511. height: math.unit(40, "galaxies"),
  60512. allForms: true
  60513. },
  60514. {
  60515. name: "Universal",
  60516. height: math.unit(40, "universes"),
  60517. allForms: true
  60518. },
  60519. ],
  60520. {
  60521. "hyena": {
  60522. name: "Hyena",
  60523. default: true
  60524. },
  60525. "shark": {
  60526. name: "Shark",
  60527. },
  60528. }
  60529. ))
  60530. characterMakers.push(() => makeCharacter(
  60531. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60532. {
  60533. anthro_front: {
  60534. height: math.unit(1.5, "meters"),
  60535. name: "Front",
  60536. image: {
  60537. source: "./media/characters/adelaide/anthro-front.svg",
  60538. extra: 860/783,
  60539. bottom: 60/920
  60540. },
  60541. form: "anthro",
  60542. default: true
  60543. },
  60544. hand: {
  60545. height: math.unit(0.65, "feet"),
  60546. name: "Hand",
  60547. image: {
  60548. source: "./media/characters/adelaide/hand.svg"
  60549. },
  60550. form: "anthro"
  60551. },
  60552. foot: {
  60553. height: math.unit(1.38 * 259 / 314, "feet"),
  60554. name: "Foot",
  60555. image: {
  60556. source: "./media/characters/adelaide/foot.svg",
  60557. extra: 259/259,
  60558. bottom: 55/314
  60559. },
  60560. form: "anthro"
  60561. },
  60562. feather: {
  60563. height: math.unit(0.85, "feet"),
  60564. name: "Feather",
  60565. image: {
  60566. source: "./media/characters/adelaide/feather.svg"
  60567. },
  60568. form: "anthro"
  60569. },
  60570. feral_side: {
  60571. height: math.unit(1, "meters"),
  60572. name: "Side",
  60573. image: {
  60574. source: "./media/characters/adelaide/feral-side.svg",
  60575. extra: 550/467,
  60576. bottom: 37/587
  60577. },
  60578. form: "feral",
  60579. default: true
  60580. },
  60581. feral_hand: {
  60582. height: math.unit(0.58, "feet"),
  60583. name: "Hand",
  60584. image: {
  60585. source: "./media/characters/adelaide/hand.svg"
  60586. },
  60587. form: "feral"
  60588. },
  60589. feral_foot: {
  60590. height: math.unit(1.2 * 259 / 314, "feet"),
  60591. name: "Foot",
  60592. image: {
  60593. source: "./media/characters/adelaide/foot.svg",
  60594. extra: 259/259,
  60595. bottom: 55/314
  60596. },
  60597. form: "feral"
  60598. },
  60599. feral_feather: {
  60600. height: math.unit(0.63, "feet"),
  60601. name: "Feather",
  60602. image: {
  60603. source: "./media/characters/adelaide/feather.svg"
  60604. },
  60605. form: "feral"
  60606. },
  60607. },
  60608. [
  60609. {
  60610. name: "Normal",
  60611. height: math.unit(1.5, "meters"),
  60612. form: "anthro",
  60613. default: true
  60614. },
  60615. {
  60616. name: "Normal",
  60617. height: math.unit(1, "meters"),
  60618. form: "feral",
  60619. default: true
  60620. },
  60621. ],
  60622. {
  60623. "anthro": {
  60624. name: "Anthro",
  60625. default: true
  60626. },
  60627. "feral": {
  60628. name: "Feral",
  60629. },
  60630. }
  60631. ))
  60632. characterMakers.push(() => makeCharacter(
  60633. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60634. {
  60635. front: {
  60636. height: math.unit(2.5, "meters"),
  60637. name: "Front",
  60638. image: {
  60639. source: "./media/characters/goa/front.svg",
  60640. extra: 1109/1013,
  60641. bottom: 150/1259
  60642. }
  60643. },
  60644. },
  60645. [
  60646. {
  60647. name: "Normal",
  60648. height: math.unit(2.5, "meters"),
  60649. default: true
  60650. },
  60651. ]
  60652. ))
  60653. characterMakers.push(() => makeCharacter(
  60654. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60655. {
  60656. front: {
  60657. height: math.unit(2, "meters"),
  60658. weight: math.unit(100, "kg"),
  60659. name: "Front",
  60660. image: {
  60661. source: "./media/characters/kiki-weavile/front.svg",
  60662. extra: 357/332,
  60663. bottom: 60/417
  60664. }
  60665. },
  60666. },
  60667. [
  60668. {
  60669. name: "Normal",
  60670. height: math.unit(2, "meters"),
  60671. default: true
  60672. },
  60673. ]
  60674. ))
  60675. characterMakers.push(() => makeCharacter(
  60676. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60677. {
  60678. side: {
  60679. height: math.unit(1.6, "meters"),
  60680. name: "Side",
  60681. image: {
  60682. source: "./media/characters/liza/side.svg",
  60683. extra: 943/915,
  60684. bottom: 72/1015
  60685. }
  60686. },
  60687. },
  60688. [
  60689. {
  60690. name: "Normal",
  60691. height: math.unit(1.6, "meters"),
  60692. default: true
  60693. },
  60694. ]
  60695. ))
  60696. characterMakers.push(() => makeCharacter(
  60697. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60698. {
  60699. side: {
  60700. height: math.unit(2.5, "meters"),
  60701. preyCapacity: math.unit(1, "people"),
  60702. name: "Side",
  60703. image: {
  60704. source: "./media/characters/persephone-sweetbreath/side.svg",
  60705. extra: 796/700,
  60706. bottom: 44/840
  60707. }
  60708. },
  60709. sideVore: {
  60710. height: math.unit(2.5, "meters"),
  60711. preyCapacity: math.unit(1, "people"),
  60712. name: "Side (Full)",
  60713. image: {
  60714. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60715. extra: 796/700,
  60716. bottom: 44/840
  60717. }
  60718. },
  60719. },
  60720. [
  60721. {
  60722. name: "Normal",
  60723. height: math.unit(2.5, "meters"),
  60724. default: true
  60725. },
  60726. ]
  60727. ))
  60728. characterMakers.push(() => makeCharacter(
  60729. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60730. {
  60731. front: {
  60732. height: math.unit(32, "meters"),
  60733. name: "Front",
  60734. image: {
  60735. source: "./media/characters/pierce/front.svg",
  60736. extra: 1695/1475,
  60737. bottom: 185/1880
  60738. }
  60739. },
  60740. side: {
  60741. height: math.unit(32, "meters"),
  60742. name: "Side",
  60743. image: {
  60744. source: "./media/characters/pierce/side.svg",
  60745. extra: 974/859,
  60746. bottom: 43/1017
  60747. }
  60748. },
  60749. frontWingless: {
  60750. height: math.unit(32, "meters"),
  60751. name: "Front (Wingless)",
  60752. image: {
  60753. source: "./media/characters/pierce/front-wingless.svg",
  60754. extra: 1695/1475,
  60755. bottom: 185/1880
  60756. }
  60757. },
  60758. sideWingless: {
  60759. height: math.unit(32, "meters"),
  60760. name: "Side (Wingless)",
  60761. image: {
  60762. source: "./media/characters/pierce/side-wingless.svg",
  60763. extra: 974/859,
  60764. bottom: 43/1017
  60765. }
  60766. },
  60767. maw: {
  60768. height: math.unit(19.3, "meters"),
  60769. name: "Maw",
  60770. image: {
  60771. source: "./media/characters/pierce/maw.svg"
  60772. }
  60773. },
  60774. },
  60775. [
  60776. {
  60777. name: "Small",
  60778. height: math.unit(8.5, "meters")
  60779. },
  60780. {
  60781. name: "Normal",
  60782. height: math.unit(32, "meters"),
  60783. default: true
  60784. },
  60785. ]
  60786. ))
  60787. characterMakers.push(() => makeCharacter(
  60788. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60789. {
  60790. front: {
  60791. height: math.unit(2.3, "meters"),
  60792. weight: math.unit(165, "kg"),
  60793. name: "Front",
  60794. image: {
  60795. source: "./media/characters/shira/front.svg",
  60796. extra: 924/919,
  60797. bottom: 17/941
  60798. },
  60799. form: "cobra",
  60800. default: true
  60801. },
  60802. back: {
  60803. height: math.unit(2.3, "meters"),
  60804. weight: math.unit(165, "kg"),
  60805. name: "Back",
  60806. image: {
  60807. source: "./media/characters/shira/back.svg",
  60808. extra: 928/922,
  60809. bottom: 18/946
  60810. },
  60811. form: "cobra"
  60812. },
  60813. frontLewd: {
  60814. height: math.unit(2.3, "meters"),
  60815. weight: math.unit(165, "kg"),
  60816. name: "Front (Lewd)",
  60817. image: {
  60818. source: "./media/characters/shira/front-lewd.svg",
  60819. extra: 924/919,
  60820. bottom: 17/941
  60821. },
  60822. form: "cobra"
  60823. },
  60824. backLewd: {
  60825. height: math.unit(2.3, "meters"),
  60826. weight: math.unit(165, "kg"),
  60827. name: "Back (Lewd)",
  60828. image: {
  60829. source: "./media/characters/shira/back-lewd.svg",
  60830. extra: 928/922,
  60831. bottom: 18/946
  60832. },
  60833. form: "cobra"
  60834. },
  60835. maw: {
  60836. height: math.unit(1.14, "feet"),
  60837. name: "Maw",
  60838. image: {
  60839. source: "./media/characters/shira/maw.svg"
  60840. },
  60841. form: "cobra"
  60842. },
  60843. magma_front: {
  60844. height: math.unit(2.3, "meters"),
  60845. weight: math.unit(165, "kg"),
  60846. name: "Front",
  60847. image: {
  60848. source: "./media/characters/shira/magma-front.svg",
  60849. extra: 1870/1693,
  60850. bottom: 24/1894
  60851. },
  60852. form: "magma",
  60853. },
  60854. magma_back: {
  60855. height: math.unit(2.3, "meters"),
  60856. weight: math.unit(165, "kg"),
  60857. name: "Back",
  60858. image: {
  60859. source: "./media/characters/shira/magma-back.svg",
  60860. extra: 1918/1756,
  60861. bottom: 46/1964
  60862. },
  60863. form: "magma",
  60864. },
  60865. },
  60866. [
  60867. {
  60868. name: "Incognito",
  60869. height: math.unit(2.3, "meters"),
  60870. allForms: true
  60871. },
  60872. {
  60873. name: "Home Size",
  60874. height: math.unit(150, "meters"),
  60875. default: true,
  60876. allForms: true
  60877. },
  60878. {
  60879. name: "Macro",
  60880. height: math.unit(2, "km"),
  60881. allForms: true
  60882. },
  60883. {
  60884. name: "Mega",
  60885. height: math.unit(30, "km"),
  60886. allForms: true
  60887. },
  60888. {
  60889. name: "Giga",
  60890. height: math.unit(450, "km"),
  60891. allForms: true
  60892. },
  60893. {
  60894. name: "Giga+",
  60895. height: math.unit(3000, "km"),
  60896. allForms: true
  60897. },
  60898. {
  60899. name: "Giga++",
  60900. height: math.unit(6000, "km"),
  60901. allForms: true
  60902. },
  60903. {
  60904. name: "Terra",
  60905. height: math.unit(80000, "km"),
  60906. allForms: true
  60907. },
  60908. {
  60909. name: "Terra+",
  60910. height: math.unit(350000, "km"),
  60911. allForms: true
  60912. },
  60913. {
  60914. name: "Solar",
  60915. height: math.unit(1e6, "km"),
  60916. allForms: true
  60917. },
  60918. ],
  60919. {
  60920. "cobra": {
  60921. name: "Cobra",
  60922. default: true
  60923. },
  60924. "magma": {
  60925. name: "Magma Dragon",
  60926. },
  60927. }
  60928. ))
  60929. characterMakers.push(() => makeCharacter(
  60930. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60931. {
  60932. front: {
  60933. height: math.unit(2, "meters"),
  60934. weight: math.unit(160, "kg"),
  60935. name: "Front",
  60936. image: {
  60937. source: "./media/characters/daxerios/front.svg",
  60938. extra: 1334/1277,
  60939. bottom: 45/1379
  60940. }
  60941. },
  60942. frontLewd: {
  60943. height: math.unit(2, "meters"),
  60944. weight: math.unit(160, "kg"),
  60945. name: "Front (Lewd)",
  60946. image: {
  60947. source: "./media/characters/daxerios/front-lewd.svg",
  60948. extra: 1334/1277,
  60949. bottom: 45/1379
  60950. }
  60951. },
  60952. dick: {
  60953. height: math.unit(2.35, "feet"),
  60954. name: "Dick",
  60955. image: {
  60956. source: "./media/characters/daxerios/dick.svg"
  60957. }
  60958. },
  60959. },
  60960. [
  60961. {
  60962. name: "\"Small\"",
  60963. height: math.unit(5, "meters")
  60964. },
  60965. {
  60966. name: "Original Size",
  60967. height: math.unit(500, "meters"),
  60968. default: true
  60969. },
  60970. {
  60971. name: "Mega",
  60972. height: math.unit(2, "km")
  60973. },
  60974. {
  60975. name: "Mega+",
  60976. height: math.unit(35, "km")
  60977. },
  60978. {
  60979. name: "Giga",
  60980. height: math.unit(250, "km")
  60981. },
  60982. {
  60983. name: "Giga+",
  60984. height: math.unit(3000, "km")
  60985. },
  60986. {
  60987. name: "Terra",
  60988. height: math.unit(25000, "km")
  60989. },
  60990. {
  60991. name: "Terra+",
  60992. height: math.unit(300000, "km")
  60993. },
  60994. {
  60995. name: "Solar",
  60996. height: math.unit(1e6, "km")
  60997. },
  60998. ]
  60999. ))
  61000. characterMakers.push(() => makeCharacter(
  61001. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61002. {
  61003. front: {
  61004. height: math.unit(8 + 4/12, "feet"),
  61005. weight: math.unit(464, "lb"),
  61006. name: "Front",
  61007. image: {
  61008. source: "./media/characters/caveat/front.svg",
  61009. extra: 1861/1678,
  61010. bottom: 40/1901
  61011. }
  61012. },
  61013. },
  61014. [
  61015. {
  61016. name: "Normal",
  61017. height: math.unit(8 + 4/12, "feet"),
  61018. default: true
  61019. },
  61020. ]
  61021. ))
  61022. characterMakers.push(() => makeCharacter(
  61023. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61024. {
  61025. front: {
  61026. height: math.unit(12, "feet"),
  61027. weight: math.unit(1800, "lb"),
  61028. name: "Front",
  61029. image: {
  61030. source: "./media/characters/centbair/front.svg",
  61031. extra: 781/663,
  61032. bottom: 25/806
  61033. }
  61034. },
  61035. frontNsfw: {
  61036. height: math.unit(12, "feet"),
  61037. weight: math.unit(1800, "lb"),
  61038. name: "Front (NSFW)",
  61039. image: {
  61040. source: "./media/characters/centbair/front-nsfw.svg",
  61041. extra: 781/663,
  61042. bottom: 25/806
  61043. }
  61044. },
  61045. back: {
  61046. height: math.unit(12, "feet"),
  61047. weight: math.unit(1800, "lb"),
  61048. name: "Back",
  61049. image: {
  61050. source: "./media/characters/centbair/back.svg",
  61051. extra: 808/761,
  61052. bottom: 19/827
  61053. }
  61054. },
  61055. dick: {
  61056. height: math.unit(6.5, "feet"),
  61057. name: "Dick",
  61058. image: {
  61059. source: "./media/characters/centbair/dick.svg"
  61060. }
  61061. },
  61062. slit: {
  61063. height: math.unit(3.25, "feet"),
  61064. name: "Slit",
  61065. image: {
  61066. source: "./media/characters/centbair/slit.svg"
  61067. }
  61068. },
  61069. },
  61070. [
  61071. {
  61072. name: "Normal",
  61073. height: math.unit(12, "feet"),
  61074. default: true
  61075. },
  61076. ]
  61077. ))
  61078. characterMakers.push(() => makeCharacter(
  61079. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61080. {
  61081. front: {
  61082. height: math.unit(5 + 7/12, "feet"),
  61083. name: "Front",
  61084. image: {
  61085. source: "./media/characters/andy/front.svg",
  61086. extra: 634/588,
  61087. bottom: 36/670
  61088. },
  61089. extraAttributes: {
  61090. "pawLength": {
  61091. name: "Paw Length",
  61092. power: 1,
  61093. type: "length",
  61094. base: math.unit(1, "feet")
  61095. },
  61096. }
  61097. },
  61098. side: {
  61099. height: math.unit(5 + 7/12, "feet"),
  61100. name: "Side",
  61101. image: {
  61102. source: "./media/characters/andy/side.svg",
  61103. extra: 641/596,
  61104. bottom: 34/675
  61105. },
  61106. extraAttributes: {
  61107. "pawLength": {
  61108. name: "Paw Length",
  61109. power: 1,
  61110. type: "length",
  61111. base: math.unit(1, "feet")
  61112. },
  61113. }
  61114. },
  61115. back: {
  61116. height: math.unit(5 + 7/12, "feet"),
  61117. name: "Back",
  61118. image: {
  61119. source: "./media/characters/andy/back.svg",
  61120. extra: 618/583,
  61121. bottom: 39/657
  61122. },
  61123. extraAttributes: {
  61124. "pawLength": {
  61125. name: "Paw Length",
  61126. power: 1,
  61127. type: "length",
  61128. base: math.unit(1, "feet")
  61129. },
  61130. }
  61131. },
  61132. paw: {
  61133. height: math.unit(1.13, "feet"),
  61134. name: "Paw",
  61135. image: {
  61136. source: "./media/characters/andy/paw.svg"
  61137. }
  61138. },
  61139. },
  61140. [
  61141. {
  61142. name: "Micro",
  61143. height: math.unit(4, "inches")
  61144. },
  61145. {
  61146. name: "Normal",
  61147. height: math.unit(5 + 7/12, "feet"),
  61148. default: true
  61149. },
  61150. {
  61151. name: "Macro",
  61152. height: math.unit(390.42, "feet")
  61153. },
  61154. ]
  61155. ))
  61156. characterMakers.push(() => makeCharacter(
  61157. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61158. {
  61159. front: {
  61160. height: math.unit(7, "feet"),
  61161. weight: math.unit(250, "lb"),
  61162. name: "Front",
  61163. image: {
  61164. source: "./media/characters/vix-titan/front.svg",
  61165. extra: 460/428,
  61166. bottom: 15/475
  61167. },
  61168. extraAttributes: {
  61169. "pawWidth": {
  61170. name: "Paw Width",
  61171. power: 1,
  61172. type: "length",
  61173. base: math.unit(0.75, "feet")
  61174. },
  61175. }
  61176. },
  61177. },
  61178. [
  61179. {
  61180. name: "Normal",
  61181. height: math.unit(7, "feet"),
  61182. default: true
  61183. },
  61184. {
  61185. name: "Giant",
  61186. height: math.unit(1500, "feet")
  61187. },
  61188. {
  61189. name: "Mega",
  61190. height: math.unit(10, "miles")
  61191. },
  61192. {
  61193. name: "Giga",
  61194. height: math.unit(150, "miles")
  61195. },
  61196. {
  61197. name: "Tera",
  61198. height: math.unit(144000, "miles")
  61199. },
  61200. ]
  61201. ))
  61202. characterMakers.push(() => makeCharacter(
  61203. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61204. {
  61205. front: {
  61206. height: math.unit(6 + 2/12, "feet"),
  61207. name: "Front",
  61208. image: {
  61209. source: "./media/characters/reiku/front.svg",
  61210. extra: 1910/1757,
  61211. bottom: 103/2013
  61212. },
  61213. extraAttributes: {
  61214. "thighThickness": {
  61215. name: "Thigh Thickness",
  61216. power: 1,
  61217. type: "length",
  61218. base: math.unit(1.12, "feet")
  61219. },
  61220. "assThickness": {
  61221. name: "Ass Thickness",
  61222. power: 1,
  61223. type: "length",
  61224. base: math.unit(1.12*2, "feet")
  61225. },
  61226. }
  61227. },
  61228. side: {
  61229. height: math.unit(6 + 2/12, "feet"),
  61230. name: "Side",
  61231. image: {
  61232. source: "./media/characters/reiku/side.svg",
  61233. extra: 1846/1748,
  61234. bottom: 99/1945
  61235. },
  61236. extraAttributes: {
  61237. "thighThickness": {
  61238. name: "Thigh Thickness",
  61239. power: 1,
  61240. type: "length",
  61241. base: math.unit(1.12, "feet")
  61242. },
  61243. "assThickness": {
  61244. name: "Ass Thickness",
  61245. power: 1,
  61246. type: "length",
  61247. base: math.unit(1.12*2, "feet")
  61248. },
  61249. }
  61250. },
  61251. back: {
  61252. height: math.unit(6 + 2/12, "feet"),
  61253. name: "Back",
  61254. image: {
  61255. source: "./media/characters/reiku/back.svg",
  61256. extra: 1941/1786,
  61257. bottom: 34/1975
  61258. },
  61259. extraAttributes: {
  61260. "thighThickness": {
  61261. name: "Thigh Thickness",
  61262. power: 1,
  61263. type: "length",
  61264. base: math.unit(1.12, "feet")
  61265. },
  61266. "assThickness": {
  61267. name: "Ass Thickness",
  61268. power: 1,
  61269. type: "length",
  61270. base: math.unit(1.12*2, "feet")
  61271. },
  61272. }
  61273. },
  61274. head: {
  61275. height: math.unit(1.8, "feet"),
  61276. name: "Head",
  61277. image: {
  61278. source: "./media/characters/reiku/head.svg"
  61279. }
  61280. },
  61281. tailTop: {
  61282. height: math.unit(8.4, "feet"),
  61283. name: "Tail (Top)",
  61284. image: {
  61285. source: "./media/characters/reiku/tail-top.svg"
  61286. }
  61287. },
  61288. tailBottom: {
  61289. height: math.unit(8.4, "feet"),
  61290. name: "Tail (Bottom)",
  61291. image: {
  61292. source: "./media/characters/reiku/tail-bottom.svg"
  61293. }
  61294. },
  61295. foot: {
  61296. height: math.unit(2.6, "feet"),
  61297. name: "Foot",
  61298. image: {
  61299. source: "./media/characters/reiku/foot.svg"
  61300. }
  61301. },
  61302. footCurled: {
  61303. height: math.unit(2.3, "feet"),
  61304. name: "Foot (Curled)",
  61305. image: {
  61306. source: "./media/characters/reiku/foot-curled.svg"
  61307. }
  61308. },
  61309. footSide: {
  61310. height: math.unit(1.26, "feet"),
  61311. name: "Foot (Side)",
  61312. image: {
  61313. source: "./media/characters/reiku/foot-side.svg"
  61314. }
  61315. },
  61316. },
  61317. [
  61318. {
  61319. name: "Normal",
  61320. height: math.unit(6 + 2/12, "feet"),
  61321. default: true
  61322. },
  61323. ]
  61324. ))
  61325. characterMakers.push(() => makeCharacter(
  61326. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61327. {
  61328. front: {
  61329. height: math.unit(7, "feet"),
  61330. weight: math.unit(500, "kg"),
  61331. name: "Front",
  61332. image: {
  61333. source: "./media/characters/cialda/front.svg",
  61334. extra: 912/745,
  61335. bottom: 55/967
  61336. }
  61337. },
  61338. },
  61339. [
  61340. {
  61341. name: "Normal",
  61342. height: math.unit(7, "feet"),
  61343. default: true
  61344. },
  61345. ]
  61346. ))
  61347. characterMakers.push(() => makeCharacter(
  61348. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61349. {
  61350. side: {
  61351. height: math.unit(6, "feet"),
  61352. weight: math.unit(600, "lb"),
  61353. preyCapacity: math.unit(25, "liters"),
  61354. name: "Side",
  61355. image: {
  61356. source: "./media/characters/darkkin/side.svg",
  61357. extra: 1597/1447,
  61358. bottom: 101/1698
  61359. }
  61360. },
  61361. },
  61362. [
  61363. {
  61364. name: "Canon Height",
  61365. height: math.unit(568, "feet"),
  61366. default: true
  61367. },
  61368. ]
  61369. ))
  61370. characterMakers.push(() => makeCharacter(
  61371. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61372. {
  61373. front: {
  61374. height: math.unit(6, "feet"),
  61375. weight: math.unit(1500, "lb"),
  61376. preyCapacity: math.unit(3, "people"),
  61377. name: "Front",
  61378. image: {
  61379. source: "./media/characters/livnia/front.svg",
  61380. extra: 934/932,
  61381. bottom: 83/1017
  61382. }
  61383. },
  61384. back: {
  61385. height: math.unit(6, "feet"),
  61386. weight: math.unit(1500, "lb"),
  61387. preyCapacity: math.unit(3, "people"),
  61388. name: "Back",
  61389. image: {
  61390. source: "./media/characters/livnia/back.svg",
  61391. extra: 916/915,
  61392. bottom: 58/974
  61393. }
  61394. },
  61395. head: {
  61396. height: math.unit(1.53, "feet"),
  61397. name: "Head",
  61398. image: {
  61399. source: "./media/characters/livnia/head.svg"
  61400. }
  61401. },
  61402. maw: {
  61403. height: math.unit(0.78, "feet"),
  61404. name: "Maw",
  61405. image: {
  61406. source: "./media/characters/livnia/maw.svg"
  61407. }
  61408. },
  61409. genitals: {
  61410. height: math.unit(0.35, "feet"),
  61411. name: "Genitals",
  61412. image: {
  61413. source: "./media/characters/livnia/genitals.svg"
  61414. }
  61415. },
  61416. },
  61417. [
  61418. {
  61419. name: "Normal",
  61420. height: math.unit(1000, "feet"),
  61421. default: true
  61422. },
  61423. ]
  61424. ))
  61425. characterMakers.push(() => makeCharacter(
  61426. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61427. {
  61428. front: {
  61429. height: math.unit(4, "feet"),
  61430. weight: math.unit(73, "lb"),
  61431. name: "Front",
  61432. image: {
  61433. source: "./media/characters/hayaku/front.svg",
  61434. extra: 1011/888,
  61435. bottom: 33/1044
  61436. }
  61437. },
  61438. back: {
  61439. height: math.unit(4, "feet"),
  61440. weight: math.unit(73, "lb"),
  61441. name: "Back",
  61442. image: {
  61443. source: "./media/characters/hayaku/back.svg",
  61444. extra: 1040/930,
  61445. bottom: 20/1060
  61446. }
  61447. },
  61448. },
  61449. [
  61450. {
  61451. name: "Normal",
  61452. height: math.unit(4, "feet"),
  61453. default: true
  61454. },
  61455. ]
  61456. ))
  61457. characterMakers.push(() => makeCharacter(
  61458. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61459. {
  61460. front: {
  61461. height: math.unit(6 + 7/12, "feet"),
  61462. weight: math.unit(300, "lb"),
  61463. name: "Front",
  61464. image: {
  61465. source: "./media/characters/athena-bryzant/front.svg",
  61466. extra: 870/835,
  61467. bottom: 33/903
  61468. }
  61469. },
  61470. back: {
  61471. height: math.unit(6 + 7/12, "feet"),
  61472. weight: math.unit(300, "lb"),
  61473. name: "Back",
  61474. image: {
  61475. source: "./media/characters/athena-bryzant/back.svg",
  61476. extra: 858/823,
  61477. bottom: 30/888
  61478. }
  61479. },
  61480. head: {
  61481. height: math.unit(2.38, "feet"),
  61482. name: "Head",
  61483. image: {
  61484. source: "./media/characters/athena-bryzant/head.svg"
  61485. }
  61486. },
  61487. wings: {
  61488. height: math.unit(2.85, "feet"),
  61489. name: "Wings",
  61490. image: {
  61491. source: "./media/characters/athena-bryzant/wings.svg"
  61492. }
  61493. },
  61494. },
  61495. [
  61496. {
  61497. name: "Normal",
  61498. height: math.unit(6 + 7/12, "feet"),
  61499. default: true
  61500. },
  61501. {
  61502. name: "Big",
  61503. height: math.unit(8, "feet")
  61504. },
  61505. {
  61506. name: "Very Big",
  61507. height: math.unit(11, "feet")
  61508. },
  61509. ]
  61510. ))
  61511. characterMakers.push(() => makeCharacter(
  61512. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61513. {
  61514. side: {
  61515. height: math.unit(3, "meters"),
  61516. weight: math.unit(7500, "kg"),
  61517. preyCapacity: math.unit(1e12, "people"),
  61518. name: "Side",
  61519. image: {
  61520. source: "./media/characters/zel-kesh/side.svg",
  61521. extra: 910/407,
  61522. bottom: 147/1057
  61523. }
  61524. },
  61525. },
  61526. [
  61527. {
  61528. name: "Normal",
  61529. height: math.unit(3, "meters"),
  61530. default: true
  61531. },
  61532. ]
  61533. ))
  61534. characterMakers.push(() => makeCharacter(
  61535. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61536. {
  61537. front: {
  61538. height: math.unit(2, "meters"),
  61539. weight: math.unit(95, "kg"),
  61540. name: "Front",
  61541. image: {
  61542. source: "./media/characters/kane-fox/front.svg",
  61543. extra: 945/888,
  61544. bottom: 27/972
  61545. }
  61546. },
  61547. back: {
  61548. height: math.unit(2, "meters"),
  61549. weight: math.unit(95, "kg"),
  61550. name: "Back",
  61551. image: {
  61552. source: "./media/characters/kane-fox/back.svg",
  61553. extra: 959/914,
  61554. bottom: 15/974
  61555. }
  61556. },
  61557. frontLewd: {
  61558. height: math.unit(2, "meters"),
  61559. weight: math.unit(95, "kg"),
  61560. name: "Front (Lewd)",
  61561. image: {
  61562. source: "./media/characters/kane-fox/front-lewd.svg",
  61563. extra: 945/888,
  61564. bottom: 27/972
  61565. }
  61566. },
  61567. },
  61568. [
  61569. {
  61570. name: "Home Size",
  61571. height: math.unit(2, "meters"),
  61572. default: true
  61573. },
  61574. {
  61575. name: "Macro",
  61576. height: math.unit(200, "meters")
  61577. },
  61578. {
  61579. name: "Small Mega",
  61580. height: math.unit(3, "km")
  61581. },
  61582. {
  61583. name: "Mega",
  61584. height: math.unit(50, "km")
  61585. },
  61586. {
  61587. name: "Giga",
  61588. height: math.unit(200, "km")
  61589. },
  61590. {
  61591. name: "Giga+",
  61592. height: math.unit(2500, "km")
  61593. },
  61594. {
  61595. name: "Terra",
  61596. height: math.unit(70000, "km")
  61597. },
  61598. {
  61599. name: "Terra+",
  61600. height: math.unit(150000, "km")
  61601. },
  61602. {
  61603. name: "Terra++",
  61604. height: math.unit(400000, "km")
  61605. },
  61606. ]
  61607. ))
  61608. characterMakers.push(() => makeCharacter(
  61609. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61610. {
  61611. otter_front: {
  61612. height: math.unit(1.8, "meters"),
  61613. weight: math.unit(90, "kg"),
  61614. name: "Front",
  61615. image: {
  61616. source: "./media/characters/ayranus/otter-front.svg",
  61617. extra: 468/452,
  61618. bottom: 43/511
  61619. },
  61620. form: "otter",
  61621. },
  61622. otter_frontLewd: {
  61623. height: math.unit(1.8, "meters"),
  61624. weight: math.unit(90, "kg"),
  61625. name: "Front (Lewd)",
  61626. image: {
  61627. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61628. extra: 468/452,
  61629. bottom: 43/511
  61630. },
  61631. form: "otter",
  61632. },
  61633. lionbat_front: {
  61634. height: math.unit(1.8, "meters"),
  61635. weight: math.unit(90, "kg"),
  61636. name: "Front (Lewd)",
  61637. image: {
  61638. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61639. extra: 797/740,
  61640. bottom: 78/875
  61641. },
  61642. form: "lionbat",
  61643. },
  61644. paw: {
  61645. height: math.unit(1.5, "feet"),
  61646. name: "Paw",
  61647. image: {
  61648. source: "./media/characters/ayranus/paw.svg"
  61649. },
  61650. },
  61651. },
  61652. [
  61653. {
  61654. name: "Incognito",
  61655. height: math.unit(1.8, "meters"),
  61656. allForms: true
  61657. },
  61658. {
  61659. name: "Macro",
  61660. height: math.unit(60, "meters"),
  61661. allForms: true
  61662. },
  61663. {
  61664. name: "Macro+",
  61665. height: math.unit(200, "meters"),
  61666. allForms: true
  61667. },
  61668. {
  61669. name: "Mega",
  61670. height: math.unit(35, "km"),
  61671. allForms: true
  61672. },
  61673. {
  61674. name: "Giga",
  61675. height: math.unit(220, "km"),
  61676. allForms: true
  61677. },
  61678. {
  61679. name: "Giga+",
  61680. height: math.unit(1500, "km"),
  61681. allForms: true
  61682. },
  61683. {
  61684. name: "Terra",
  61685. height: math.unit(13000, "km"),
  61686. allForms: true
  61687. },
  61688. {
  61689. name: "Terra+",
  61690. height: math.unit(500000, "km"),
  61691. allForms: true
  61692. },
  61693. {
  61694. name: "Galactic",
  61695. height: math.unit(486080, "parsecs"),
  61696. default: true,
  61697. allForms: true
  61698. },
  61699. ],
  61700. {
  61701. "otter": {
  61702. name: "Otter",
  61703. default: true
  61704. },
  61705. "lionbat": {
  61706. name: "Lionbat",
  61707. },
  61708. }
  61709. ))
  61710. characterMakers.push(() => makeCharacter(
  61711. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61712. {
  61713. front: {
  61714. height: math.unit(7 + 4/12, "feet"),
  61715. weight: math.unit(400, "lb"),
  61716. name: "Front",
  61717. image: {
  61718. source: "./media/characters/proxy/front.svg",
  61719. extra: 1605/1542,
  61720. bottom: 55/1660
  61721. }
  61722. },
  61723. side: {
  61724. height: math.unit(7 + 4/12, "feet"),
  61725. weight: math.unit(400, "lb"),
  61726. name: "Side",
  61727. image: {
  61728. source: "./media/characters/proxy/side.svg",
  61729. extra: 794/759,
  61730. bottom: 6/800
  61731. }
  61732. },
  61733. hand: {
  61734. height: math.unit(1.54, "feet"),
  61735. name: "Hand",
  61736. image: {
  61737. source: "./media/characters/proxy/hand.svg"
  61738. }
  61739. },
  61740. paw: {
  61741. height: math.unit(1.53, "feet"),
  61742. name: "Paw",
  61743. image: {
  61744. source: "./media/characters/proxy/paw.svg"
  61745. }
  61746. },
  61747. maw: {
  61748. height: math.unit(1.9, "feet"),
  61749. name: "Maw",
  61750. image: {
  61751. source: "./media/characters/proxy/maw.svg"
  61752. }
  61753. },
  61754. },
  61755. [
  61756. {
  61757. name: "Normal",
  61758. height: math.unit(7 + 4/12, "feet"),
  61759. default: true
  61760. },
  61761. ]
  61762. ))
  61763. characterMakers.push(() => makeCharacter(
  61764. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61765. {
  61766. front: {
  61767. height: math.unit(4, "meters"),
  61768. name: "Front",
  61769. image: {
  61770. source: "./media/characters/crocozilla/front.svg",
  61771. extra: 1790/1742,
  61772. bottom: 78/1868
  61773. }
  61774. },
  61775. },
  61776. [
  61777. {
  61778. name: "Normal",
  61779. height: math.unit(4, "meters"),
  61780. default: true
  61781. },
  61782. ]
  61783. ))
  61784. characterMakers.push(() => makeCharacter(
  61785. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61786. {
  61787. front: {
  61788. height: math.unit(1.8, "meters"),
  61789. weight: math.unit(120, "kg"),
  61790. name: "Front",
  61791. image: {
  61792. source: "./media/characters/kurz/front.svg",
  61793. extra: 1960/1824,
  61794. bottom: 41/2001
  61795. }
  61796. },
  61797. back: {
  61798. height: math.unit(1.8, "meters"),
  61799. weight: math.unit(120, "kg"),
  61800. name: "Back",
  61801. image: {
  61802. source: "./media/characters/kurz/back.svg",
  61803. extra: 1906/1787,
  61804. bottom: 60/1966
  61805. }
  61806. },
  61807. frontLewd: {
  61808. height: math.unit(1.8, "meters"),
  61809. weight: math.unit(120, "kg"),
  61810. name: "Front (Lewd)",
  61811. image: {
  61812. source: "./media/characters/kurz/front-lewd.svg",
  61813. extra: 1960/1824,
  61814. bottom: 41/2001
  61815. }
  61816. },
  61817. maw: {
  61818. height: math.unit(0.69, "meters"),
  61819. name: "Maw",
  61820. image: {
  61821. source: "./media/characters/kurz/maw.svg"
  61822. }
  61823. },
  61824. },
  61825. [
  61826. {
  61827. name: "Original Size",
  61828. height: math.unit(1.8, "meters")
  61829. },
  61830. {
  61831. name: "Incognito Size",
  61832. height: math.unit(2.4, "meters"),
  61833. default: true
  61834. },
  61835. {
  61836. name: "Macro",
  61837. height: math.unit(30, "meters")
  61838. },
  61839. {
  61840. name: "Macro+",
  61841. height: math.unit(250, "meters")
  61842. },
  61843. {
  61844. name: "Mega",
  61845. height: math.unit(2, "km")
  61846. },
  61847. {
  61848. name: "Mega+",
  61849. height: math.unit(35, "km")
  61850. },
  61851. {
  61852. name: "Mega++",
  61853. height: math.unit(75, "km")
  61854. },
  61855. {
  61856. name: "Giga",
  61857. height: math.unit(250, "km")
  61858. },
  61859. {
  61860. name: "Terra",
  61861. height: math.unit(15000, "km")
  61862. },
  61863. {
  61864. name: "Terra+",
  61865. height: math.unit(2250000, "km")
  61866. },
  61867. ]
  61868. ))
  61869. characterMakers.push(() => makeCharacter(
  61870. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61871. {
  61872. front: {
  61873. height: math.unit(16 + 3/12, "feet"),
  61874. weight: math.unit(3575, "lb"),
  61875. name: "Front",
  61876. image: {
  61877. source: "./media/characters/nikita/front.svg",
  61878. extra: 1064/955,
  61879. bottom: 47/1111
  61880. }
  61881. },
  61882. },
  61883. [
  61884. {
  61885. name: "Normal",
  61886. height: math.unit(16 + 3/12, "feet"),
  61887. default: true
  61888. },
  61889. {
  61890. name: "Big",
  61891. height: math.unit(21, "feet")
  61892. },
  61893. {
  61894. name: "Biggest",
  61895. height: math.unit(50, "feet")
  61896. },
  61897. ]
  61898. ))
  61899. characterMakers.push(() => makeCharacter(
  61900. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61901. {
  61902. front: {
  61903. height: math.unit(1.92, "m"),
  61904. weight: math.unit(76, "kg"),
  61905. name: "Front",
  61906. image: {
  61907. source: "./media/characters/kyara/front.svg",
  61908. extra: 1550/1438,
  61909. bottom: 139/1689
  61910. }
  61911. },
  61912. back: {
  61913. height: math.unit(1.92, "m"),
  61914. weight: math.unit(76, "kg"),
  61915. name: "Back",
  61916. image: {
  61917. source: "./media/characters/kyara/back.svg",
  61918. extra: 1523/1427,
  61919. bottom: 83/1606
  61920. }
  61921. },
  61922. head: {
  61923. height: math.unit(1.22, "feet"),
  61924. name: "Head",
  61925. image: {
  61926. source: "./media/characters/kyara/head.svg"
  61927. }
  61928. },
  61929. maw: {
  61930. height: math.unit(0.73, "feet"),
  61931. name: "Maw",
  61932. image: {
  61933. source: "./media/characters/kyara/maw.svg"
  61934. }
  61935. },
  61936. paws: {
  61937. height: math.unit(0.95, "feet"),
  61938. name: "Paws",
  61939. image: {
  61940. source: "./media/characters/kyara/paws.svg"
  61941. }
  61942. },
  61943. },
  61944. [
  61945. {
  61946. name: "Normal",
  61947. height: math.unit(1.92, "meters"),
  61948. default: true
  61949. },
  61950. {
  61951. name: "Mini Macro",
  61952. height: math.unit(192, "meters")
  61953. },
  61954. {
  61955. name: "Macro",
  61956. height: math.unit(480, "meters")
  61957. },
  61958. {
  61959. name: "Mega Macro",
  61960. height: math.unit(1440, "meters")
  61961. },
  61962. ]
  61963. ))
  61964. characterMakers.push(() => makeCharacter(
  61965. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61966. {
  61967. front: {
  61968. height: math.unit(6, "feet"),
  61969. weight: math.unit(160, "lbs"),
  61970. preyCapacity: math.unit(0.05, "people"),
  61971. name: "Front",
  61972. image: {
  61973. source: "./media/characters/layla-amari/front.svg",
  61974. extra: 1922/1723,
  61975. bottom: 90/2012
  61976. }
  61977. },
  61978. back: {
  61979. height: math.unit(6, "feet"),
  61980. weight: math.unit(160, "lbs"),
  61981. preyCapacity: math.unit(0.05, "people"),
  61982. name: "Back",
  61983. image: {
  61984. source: "./media/characters/layla-amari/back.svg",
  61985. extra: 1917/1718,
  61986. bottom: 50/1967
  61987. }
  61988. },
  61989. frontDressed: {
  61990. height: math.unit(6, "feet"),
  61991. weight: math.unit(160, "lbs"),
  61992. preyCapacity: math.unit(0.05, "people"),
  61993. name: "Front (Dressed)",
  61994. image: {
  61995. source: "./media/characters/layla-amari/front-dressed.svg",
  61996. extra: 1922/1723,
  61997. bottom: 90/2012
  61998. }
  61999. },
  62000. face: {
  62001. height: math.unit(0.93, "feet"),
  62002. name: "Face",
  62003. image: {
  62004. source: "./media/characters/layla-amari/face.svg"
  62005. }
  62006. },
  62007. hand: {
  62008. height: math.unit(0.66 , "feet"),
  62009. name: "Hand",
  62010. image: {
  62011. source: "./media/characters/layla-amari/hand.svg"
  62012. }
  62013. },
  62014. foot: {
  62015. height: math.unit(1, "feet"),
  62016. name: "Foot",
  62017. image: {
  62018. source: "./media/characters/layla-amari/foot.svg"
  62019. }
  62020. },
  62021. necklace: {
  62022. height: math.unit(0.32, "feet"),
  62023. name: "Necklace",
  62024. image: {
  62025. source: "./media/characters/layla-amari/necklace.svg"
  62026. }
  62027. },
  62028. nipple: {
  62029. height: math.unit(0.2, "feet"),
  62030. name: "Nipple",
  62031. image: {
  62032. source: "./media/characters/layla-amari/nipple.svg"
  62033. }
  62034. },
  62035. slit: {
  62036. height: math.unit(0.26, "feet"),
  62037. name: "Slit",
  62038. image: {
  62039. source: "./media/characters/layla-amari/slit.svg"
  62040. }
  62041. },
  62042. },
  62043. [
  62044. {
  62045. name: "Natural",
  62046. height: math.unit(825, "feet"),
  62047. default: true
  62048. },
  62049. {
  62050. name: "Enhanced",
  62051. height: math.unit(8250, "feet")
  62052. },
  62053. {
  62054. name: "Apparent Size",
  62055. height: math.unit(9.04363e+8, "meters")
  62056. },
  62057. ]
  62058. ))
  62059. characterMakers.push(() => makeCharacter(
  62060. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62061. {
  62062. front: {
  62063. height: math.unit(1.3, "meters"),
  62064. name: "Front",
  62065. image: {
  62066. source: "./media/characters/percy/front.svg",
  62067. extra: 1444/1289,
  62068. bottom: 54/1498
  62069. }
  62070. },
  62071. },
  62072. [
  62073. {
  62074. name: "Normal",
  62075. height: math.unit(1.3, "meters"),
  62076. default: true
  62077. },
  62078. ]
  62079. ))
  62080. characterMakers.push(() => makeCharacter(
  62081. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62082. {
  62083. side: {
  62084. height: math.unit(10, "meters"),
  62085. name: "Side",
  62086. image: {
  62087. source: "./media/characters/grev/side.svg",
  62088. extra: 653/266,
  62089. bottom: 77/730
  62090. }
  62091. },
  62092. head: {
  62093. height: math.unit(16.2, "m"),
  62094. name: "Head",
  62095. image: {
  62096. source: "./media/characters/grev/head.svg"
  62097. }
  62098. },
  62099. dick: {
  62100. height: math.unit(2.8135932034, "m"),
  62101. name: "Dick",
  62102. image: {
  62103. source: "./media/characters/grev/dick.svg"
  62104. }
  62105. },
  62106. },
  62107. [
  62108. {
  62109. name: "Friend-Sized",
  62110. height: math.unit(80, "cm")
  62111. },
  62112. {
  62113. name: "Normal",
  62114. height: math.unit(10, "meters"),
  62115. default: true
  62116. },
  62117. {
  62118. name: "Macro",
  62119. height: math.unit(200, "meters")
  62120. },
  62121. ]
  62122. ))
  62123. characterMakers.push(() => makeCharacter(
  62124. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62125. {
  62126. front: {
  62127. height: math.unit(19.75, "feet"),
  62128. weight: math.unit(20000, "lb"),
  62129. name: "Front",
  62130. image: {
  62131. source: "./media/characters/azuuca/front.svg",
  62132. extra: 1593/1511,
  62133. bottom: 55/1648
  62134. }
  62135. },
  62136. },
  62137. [
  62138. {
  62139. name: "Normal",
  62140. height: math.unit(19.75, "feet"),
  62141. default: true
  62142. },
  62143. ]
  62144. ))
  62145. characterMakers.push(() => makeCharacter(
  62146. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62147. {
  62148. front: {
  62149. height: math.unit(15, "feet"),
  62150. weight: math.unit(1500, "lb"),
  62151. name: "Front",
  62152. image: {
  62153. source: "./media/characters/valuria/front.svg",
  62154. extra: 1588/1486,
  62155. bottom: 31/1619
  62156. }
  62157. },
  62158. },
  62159. [
  62160. {
  62161. name: "Normal",
  62162. height: math.unit(15, "feet"),
  62163. default: true
  62164. },
  62165. {
  62166. name: "Small",
  62167. height: math.unit(500, "feet")
  62168. },
  62169. {
  62170. name: "Macro",
  62171. height: math.unit(4000, "feet")
  62172. },
  62173. {
  62174. name: "Mega Macro",
  62175. height: math.unit(2000, "miles")
  62176. },
  62177. {
  62178. name: "Giga Macro",
  62179. height: math.unit(3e6, "miles")
  62180. },
  62181. ]
  62182. ))
  62183. characterMakers.push(() => makeCharacter(
  62184. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62185. {
  62186. front: {
  62187. height: math.unit(3500, "solarradii"),
  62188. name: "Front",
  62189. image: {
  62190. source: "./media/characters/terigaia/front.svg",
  62191. extra: 1531/1451,
  62192. bottom: 98/1629
  62193. }
  62194. },
  62195. },
  62196. [
  62197. {
  62198. name: "Normal",
  62199. height: math.unit(3500, "solarradii"),
  62200. default: true
  62201. },
  62202. ]
  62203. ))
  62204. characterMakers.push(() => makeCharacter(
  62205. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62206. {
  62207. front: {
  62208. height: math.unit(9.34, "feet"),
  62209. weight: math.unit(600, "lb"),
  62210. name: "Front",
  62211. image: {
  62212. source: "./media/characters/blair-blaziken/front.svg",
  62213. extra: 1557/1462,
  62214. bottom: 55/1612
  62215. }
  62216. },
  62217. },
  62218. [
  62219. {
  62220. name: "Normal",
  62221. height: math.unit(9.34, "feet"),
  62222. default: true
  62223. },
  62224. ]
  62225. ))
  62226. characterMakers.push(() => makeCharacter(
  62227. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62228. {
  62229. pistrogre_front: {
  62230. height: math.unit(10, "feet"),
  62231. weight: math.unit(10, "tons"),
  62232. name: "Front",
  62233. image: {
  62234. source: "./media/characters/braxia/pistrogre-front.svg",
  62235. extra: 1531/1334,
  62236. bottom: 114/1645
  62237. },
  62238. form: "pistrogre",
  62239. default: true
  62240. },
  62241. human_front: {
  62242. height: math.unit(10, "feet"),
  62243. weight: math.unit(10, "tons"),
  62244. name: "Front",
  62245. image: {
  62246. source: "./media/characters/braxia/human-front.svg",
  62247. extra: 1574/1501,
  62248. bottom: 37/1611
  62249. },
  62250. form: "human",
  62251. default: true
  62252. },
  62253. },
  62254. [
  62255. {
  62256. name: "Normal",
  62257. height: math.unit(10, "feet"),
  62258. default: true,
  62259. allForms: true
  62260. },
  62261. {
  62262. name: "Macro",
  62263. height: math.unit(1000, "feet"),
  62264. allForms: true
  62265. },
  62266. {
  62267. name: "Mega Macro",
  62268. height: math.unit(100, "miles"),
  62269. allForms: true
  62270. },
  62271. {
  62272. name: "Cosmic",
  62273. height: math.unit(1000000, "lightyears"),
  62274. allForms: true
  62275. },
  62276. {
  62277. name: "ϐѮԆԬӁꭍϞԢ",
  62278. height: math.unit(1000, "multiverses"),
  62279. allForms: true
  62280. },
  62281. ],
  62282. {
  62283. "pistrogre": {
  62284. name: "Pistrogre",
  62285. default: true
  62286. },
  62287. "human": {
  62288. name: "Human",
  62289. },
  62290. }
  62291. ))
  62292. characterMakers.push(() => makeCharacter(
  62293. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62294. {
  62295. front: {
  62296. height: math.unit(6 + 1/12, "feet"),
  62297. weight: math.unit(280, "lb"),
  62298. name: "Front",
  62299. image: {
  62300. source: "./media/characters/kiriga-yato/front.svg",
  62301. extra: 445/394,
  62302. bottom: 11/456
  62303. }
  62304. },
  62305. },
  62306. [
  62307. {
  62308. name: "Descended",
  62309. height: math.unit(3, "feet")
  62310. },
  62311. {
  62312. name: "Average",
  62313. height: math.unit(6 + 1/12, "feet"),
  62314. default: true
  62315. },
  62316. {
  62317. name: "Ascended",
  62318. height: math.unit(9 + 2/12, "feet")
  62319. },
  62320. ]
  62321. ))
  62322. characterMakers.push(() => makeCharacter(
  62323. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62324. {
  62325. front: {
  62326. height: math.unit(6, "feet"),
  62327. weight: math.unit(150, "lb"),
  62328. name: "Front",
  62329. image: {
  62330. source: "./media/characters/kylie/front.svg",
  62331. extra: 1114/1046,
  62332. bottom: 65/1179
  62333. },
  62334. extraAttributes: {
  62335. "hoofSize": {
  62336. name: "Hoof Size",
  62337. power: 2,
  62338. type: "area",
  62339. base: math.unit(0.034, "m^2")
  62340. },
  62341. "footSize": {
  62342. name: "Foot Size",
  62343. power: 2,
  62344. type: "area",
  62345. base: math.unit(0.75, "m^2")
  62346. },
  62347. }
  62348. },
  62349. side: {
  62350. height: math.unit(6, "feet"),
  62351. weight: math.unit(150, "lb"),
  62352. name: "Side",
  62353. image: {
  62354. source: "./media/characters/kylie/side.svg",
  62355. extra: 1178/1110,
  62356. bottom: 21/1199
  62357. },
  62358. extraAttributes: {
  62359. "hoofSize": {
  62360. name: "Hoof Size",
  62361. power: 2,
  62362. type: "area",
  62363. base: math.unit(0.034, "m^2")
  62364. },
  62365. "footSize": {
  62366. name: "Foot Size",
  62367. power: 2,
  62368. type: "area",
  62369. base: math.unit(0.75, "m^2")
  62370. },
  62371. }
  62372. },
  62373. back: {
  62374. height: math.unit(6, "feet"),
  62375. weight: math.unit(150, "lb"),
  62376. name: "Back",
  62377. image: {
  62378. source: "./media/characters/kylie/back.svg",
  62379. extra: 1115/1047,
  62380. bottom: 66/1181
  62381. },
  62382. extraAttributes: {
  62383. "hoofSize": {
  62384. name: "Hoof Size",
  62385. power: 2,
  62386. type: "area",
  62387. base: math.unit(0.034, "m^2")
  62388. },
  62389. "footSize": {
  62390. name: "Foot Size",
  62391. power: 2,
  62392. type: "area",
  62393. base: math.unit(0.75, "m^2")
  62394. },
  62395. }
  62396. },
  62397. head: {
  62398. height: math.unit(1.85, "feet"),
  62399. name: "Head",
  62400. image: {
  62401. source: "./media/characters/kylie/head.svg"
  62402. }
  62403. },
  62404. },
  62405. [
  62406. {
  62407. name: "Normal",
  62408. height: math.unit(90, "meters"),
  62409. default: true
  62410. },
  62411. ]
  62412. ))
  62413. characterMakers.push(() => makeCharacter(
  62414. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62415. {
  62416. front: {
  62417. height: math.unit(245, "feet"),
  62418. weight: math.unit(400000, "lb"),
  62419. name: "Front",
  62420. image: {
  62421. source: "./media/characters/sabado/front.svg",
  62422. extra: 1309/1164,
  62423. bottom: 29/1338
  62424. }
  62425. },
  62426. },
  62427. [
  62428. {
  62429. name: "Normal",
  62430. height: math.unit(245, "feet"),
  62431. default: true
  62432. },
  62433. ]
  62434. ))
  62435. characterMakers.push(() => makeCharacter(
  62436. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62437. {
  62438. shark_front: {
  62439. height: math.unit(2, "meters"),
  62440. weight: math.unit(200, "kg"),
  62441. name: "Front",
  62442. image: {
  62443. source: "./media/characters/zechal/shark-front.svg",
  62444. extra: 969/925,
  62445. bottom: 74/1043
  62446. },
  62447. form: "shark",
  62448. },
  62449. shark_back: {
  62450. height: math.unit(2, "meters"),
  62451. weight: math.unit(200, "kg"),
  62452. name: "Back",
  62453. image: {
  62454. source: "./media/characters/zechal/shark-back.svg",
  62455. extra: 994/949,
  62456. bottom: 176/1170
  62457. },
  62458. form: "shark",
  62459. },
  62460. shark_frontLewd: {
  62461. height: math.unit(2, "meters"),
  62462. weight: math.unit(200, "kg"),
  62463. name: "Front (Lewd)",
  62464. image: {
  62465. source: "./media/characters/zechal/shark-front-lewd.svg",
  62466. extra: 969/925,
  62467. bottom: 74/1043
  62468. },
  62469. form: "shark",
  62470. },
  62471. shark_side: {
  62472. height: math.unit(1.56, "meters"),
  62473. weight: math.unit(200, "kg"),
  62474. name: "Side",
  62475. image: {
  62476. source: "./media/characters/zechal/shark-side.svg"
  62477. },
  62478. form: "shark",
  62479. },
  62480. dragon_front: {
  62481. height: math.unit(2, "meters"),
  62482. weight: math.unit(200, "kg"),
  62483. name: "Front",
  62484. image: {
  62485. source: "./media/characters/zechal/dragon-front.svg",
  62486. extra: 1041/925,
  62487. bottom: 74/1115
  62488. },
  62489. form: "dragon",
  62490. },
  62491. dragon_back: {
  62492. height: math.unit(2, "meters"),
  62493. weight: math.unit(200, "kg"),
  62494. name: "Back",
  62495. image: {
  62496. source: "./media/characters/zechal/dragon-back.svg",
  62497. extra: 1061/949,
  62498. bottom: 176/1237
  62499. },
  62500. form: "dragon",
  62501. },
  62502. dragon_frontLewd: {
  62503. height: math.unit(2, "meters"),
  62504. weight: math.unit(200, "kg"),
  62505. name: "Front (Lewd)",
  62506. image: {
  62507. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62508. extra: 1041/925,
  62509. bottom: 74/1115
  62510. },
  62511. form: "dragon",
  62512. },
  62513. dragon_side: {
  62514. height: math.unit(1.56, "meters"),
  62515. weight: math.unit(200, "kg"),
  62516. name: "Side",
  62517. image: {
  62518. source: "./media/characters/zechal/dragon-side.svg"
  62519. },
  62520. form: "dragon",
  62521. },
  62522. foot: {
  62523. height: math.unit(0.5, "meters"),
  62524. name: "Foot",
  62525. image: {
  62526. source: "./media/characters/zechal/foot.svg"
  62527. }
  62528. },
  62529. sheathFront: {
  62530. height: math.unit(0.45, "meters"),
  62531. name: "Sheath (Front)",
  62532. image: {
  62533. source: "./media/characters/zechal/sheath-front.svg"
  62534. }
  62535. },
  62536. sheathSide: {
  62537. height: math.unit(0.45, "meters"),
  62538. name: "Sheath (Side)",
  62539. image: {
  62540. source: "./media/characters/zechal/sheath-side.svg"
  62541. }
  62542. },
  62543. },
  62544. [
  62545. {
  62546. name: "Incognito",
  62547. height: math.unit(2, "meters"),
  62548. allForms: true
  62549. },
  62550. {
  62551. name: "Small Rampage",
  62552. height: math.unit(25, "meters"),
  62553. allForms: true
  62554. },
  62555. {
  62556. name: "Home Size",
  62557. height: math.unit(250, "meters"),
  62558. allForms: true,
  62559. default: true
  62560. },
  62561. {
  62562. name: "Macro+",
  62563. height: math.unit(700, "meters"),
  62564. allForms: true
  62565. },
  62566. {
  62567. name: "Small Mega",
  62568. height: math.unit(3, "km"),
  62569. allForms: true
  62570. },
  62571. {
  62572. name: "Mega",
  62573. height: math.unit(15, "km"),
  62574. allForms: true
  62575. },
  62576. {
  62577. name: "Giga",
  62578. height: math.unit(300, "km"),
  62579. allForms: true
  62580. },
  62581. {
  62582. name: "Giga+",
  62583. height: math.unit(1750, "km"),
  62584. allForms: true
  62585. },
  62586. {
  62587. name: "Continental",
  62588. height: math.unit(5000, "km"),
  62589. allForms: true
  62590. },
  62591. {
  62592. name: "Terra",
  62593. height: math.unit(20000, "km"),
  62594. allForms: true
  62595. },
  62596. {
  62597. name: "Terra+",
  62598. height: math.unit(300000, "km"),
  62599. allForms: true
  62600. },
  62601. {
  62602. name: "Solar",
  62603. height: math.unit(40000000, "km"),
  62604. allForms: true
  62605. },
  62606. {
  62607. name: "Galactic",
  62608. height: math.unit(810133, "parsecs"),
  62609. allForms: true
  62610. },
  62611. {
  62612. name: "Universal",
  62613. height: math.unit(25, "universes"),
  62614. allForms: true
  62615. },
  62616. ],
  62617. {
  62618. "shark": {
  62619. name: "Shark",
  62620. default: true
  62621. },
  62622. "dragon": {
  62623. name: "Dragon",
  62624. },
  62625. }
  62626. ))
  62627. characterMakers.push(() => makeCharacter(
  62628. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62629. {
  62630. front: {
  62631. height: math.unit(2.2, "meters"),
  62632. weight: math.unit(150, "kg"),
  62633. name: "Front",
  62634. image: {
  62635. source: "./media/characters/sergis/front.svg",
  62636. extra: 1314/1312,
  62637. bottom: 112/1426
  62638. }
  62639. },
  62640. back: {
  62641. height: math.unit(2.2, "meters"),
  62642. weight: math.unit(150, "kg"),
  62643. name: "Back",
  62644. image: {
  62645. source: "./media/characters/sergis/back.svg",
  62646. extra: 1335/1333,
  62647. bottom: 19/1354
  62648. }
  62649. },
  62650. frontLewd: {
  62651. height: math.unit(2.2, "meters"),
  62652. weight: math.unit(150, "kg"),
  62653. name: "Front (Lewd)",
  62654. image: {
  62655. source: "./media/characters/sergis/front-lewd.svg",
  62656. extra: 1314/1312,
  62657. bottom: 112/1426
  62658. }
  62659. },
  62660. frontDressed: {
  62661. height: math.unit(2.2, "meters"),
  62662. weight: math.unit(150, "kg"),
  62663. name: "Front (Dressed)",
  62664. image: {
  62665. source: "./media/characters/sergis/front-dressed.svg",
  62666. extra: 1330/1328,
  62667. bottom: 95/1425
  62668. }
  62669. },
  62670. frontDressedLewd: {
  62671. height: math.unit(2.2, "meters"),
  62672. weight: math.unit(150, "kg"),
  62673. name: "Front (Dressed, Lewd)",
  62674. image: {
  62675. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62676. extra: 1330/1328,
  62677. bottom: 95/1425
  62678. }
  62679. },
  62680. maw: {
  62681. height: math.unit(0.48, "meters"),
  62682. name: "Maw",
  62683. image: {
  62684. source: "./media/characters/sergis/maw.svg"
  62685. }
  62686. },
  62687. sheath: {
  62688. height: math.unit(0.38, "meters"),
  62689. name: "Sheath",
  62690. image: {
  62691. source: "./media/characters/sergis/sheath.svg"
  62692. }
  62693. },
  62694. },
  62695. [
  62696. {
  62697. name: "Incognito Size",
  62698. height: math.unit(2.2, "meters")
  62699. },
  62700. {
  62701. name: "Small Macro",
  62702. height: math.unit(40, "meters")
  62703. },
  62704. {
  62705. name: "Macro",
  62706. height: math.unit(150, "meters")
  62707. },
  62708. {
  62709. name: "Macro+",
  62710. height: math.unit(300, "meters")
  62711. },
  62712. {
  62713. name: "Mega",
  62714. height: math.unit(2.5, "km")
  62715. },
  62716. {
  62717. name: "Mega+",
  62718. height: math.unit(30, "km")
  62719. },
  62720. {
  62721. name: "Home Size",
  62722. height: math.unit(300, "km"),
  62723. default: true
  62724. },
  62725. {
  62726. name: "Giga+",
  62727. height: math.unit(1000, "km")
  62728. },
  62729. {
  62730. name: "Giga++",
  62731. height: math.unit(6000, "km")
  62732. },
  62733. {
  62734. name: "Terra",
  62735. height: math.unit(70000, "km")
  62736. },
  62737. {
  62738. name: "Terra+",
  62739. height: math.unit(200000, "km")
  62740. },
  62741. {
  62742. name: "Galactic",
  62743. height: math.unit(634200, "lightyears")
  62744. },
  62745. ]
  62746. ))
  62747. characterMakers.push(() => makeCharacter(
  62748. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62749. {
  62750. standard: {
  62751. height: math.unit(1 + 5/12, "feet"),
  62752. name: "Standard",
  62753. image: {
  62754. source: "./media/characters/spade/standard.svg",
  62755. extra: 1794/1703,
  62756. bottom: 115/1909
  62757. }
  62758. },
  62759. disguised: {
  62760. height: math.unit(1 + 5/12, "feet"),
  62761. name: "Disguised",
  62762. image: {
  62763. source: "./media/characters/spade/disguised.svg",
  62764. extra: 1794/1700,
  62765. bottom: 98/1892
  62766. }
  62767. },
  62768. },
  62769. [
  62770. {
  62771. name: "Normal",
  62772. height: math.unit(1 + 5/12, "feet"),
  62773. default: true
  62774. },
  62775. ]
  62776. ))
  62777. characterMakers.push(() => makeCharacter(
  62778. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62779. {
  62780. frontNsfw: {
  62781. height: math.unit(5, "meters"),
  62782. weight: math.unit(2000, "kg"),
  62783. preyCapacity: math.unit(5, "people"),
  62784. name: "Front (NSFW)",
  62785. image: {
  62786. source: "./media/characters/zeanlain/front-nsfw.svg",
  62787. extra: 1087/938,
  62788. bottom: 93/1180
  62789. },
  62790. extraAttributes: {
  62791. "wingspan": {
  62792. name: "Wingspan",
  62793. power: 1,
  62794. type: "length",
  62795. base: math.unit(10, "meters")
  62796. },
  62797. "footSize": {
  62798. name: "Foot Size",
  62799. power: 1,
  62800. type: "length",
  62801. base: math.unit(0.68, "meters")
  62802. },
  62803. "cockLength": {
  62804. name: "Cock Length",
  62805. power: 1,
  62806. type: "length",
  62807. base: math.unit(1.69, "meters")
  62808. },
  62809. "ballVolume": {
  62810. name: "Ball Volume",
  62811. power: 3,
  62812. type: "volume",
  62813. base: math.unit(0.028, "m^3")
  62814. },
  62815. }
  62816. },
  62817. front: {
  62818. height: math.unit(5, "meters"),
  62819. weight: math.unit(2000, "kg"),
  62820. preyCapacity: math.unit(3, "people"),
  62821. name: "Front",
  62822. image: {
  62823. source: "./media/characters/zeanlain/front.svg",
  62824. extra: 1087/938,
  62825. bottom: 93/1180
  62826. },
  62827. extraAttributes: {
  62828. "wingspan": {
  62829. name: "Wingspan",
  62830. power: 1,
  62831. type: "length",
  62832. base: math.unit(10, "meters")
  62833. },
  62834. "footSize": {
  62835. name: "Foot Size",
  62836. power: 1,
  62837. type: "length",
  62838. base: math.unit(0.68, "meters")
  62839. },
  62840. }
  62841. },
  62842. dick: {
  62843. height: math.unit(5.15, "feet"),
  62844. name: "Dick",
  62845. image: {
  62846. source: "./media/characters/zeanlain/dick.svg"
  62847. }
  62848. },
  62849. },
  62850. [
  62851. {
  62852. name: "Normal",
  62853. height: math.unit(5, "meters"),
  62854. default: true
  62855. },
  62856. ]
  62857. ))
  62858. characterMakers.push(() => makeCharacter(
  62859. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62860. {
  62861. front: {
  62862. height: math.unit(10, "meters"),
  62863. weight: math.unit(250000, "kg"),
  62864. name: "Front",
  62865. image: {
  62866. source: "./media/characters/airamis/front.svg",
  62867. extra: 865/835,
  62868. bottom: 13/878
  62869. }
  62870. },
  62871. },
  62872. [
  62873. {
  62874. name: "Normal",
  62875. height: math.unit(10, "meters"),
  62876. default: true
  62877. },
  62878. ]
  62879. ))
  62880. characterMakers.push(() => makeCharacter(
  62881. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62882. {
  62883. front: {
  62884. height: math.unit(3 + 3/12, "feet"),
  62885. weight: math.unit(75, "lb"),
  62886. name: "Front",
  62887. image: {
  62888. source: "./media/characters/corra-tourmaline/front.svg",
  62889. extra: 1037/864,
  62890. bottom: 39/1076
  62891. }
  62892. },
  62893. back: {
  62894. height: math.unit(3 + 3/12, "feet"),
  62895. weight: math.unit(75, "lb"),
  62896. name: "Back",
  62897. image: {
  62898. source: "./media/characters/corra-tourmaline/back.svg",
  62899. extra: 1022/849,
  62900. bottom: 26/1048
  62901. }
  62902. },
  62903. dressed: {
  62904. height: math.unit(3 + 3/12, "feet"),
  62905. weight: math.unit(75, "lb"),
  62906. name: "Dressed",
  62907. image: {
  62908. source: "./media/characters/corra-tourmaline/dressed.svg",
  62909. extra: 1037/864,
  62910. bottom: 39/1076
  62911. }
  62912. },
  62913. beans: {
  62914. height: math.unit(0.37, "feet"),
  62915. name: "Beans",
  62916. image: {
  62917. source: "./media/characters/corra-tourmaline/beans.svg"
  62918. }
  62919. },
  62920. },
  62921. [
  62922. {
  62923. name: "Normal",
  62924. height: math.unit(3 + 3/12, "feet"),
  62925. default: true
  62926. },
  62927. {
  62928. name: "Macro",
  62929. height: math.unit(32, "feet")
  62930. },
  62931. ]
  62932. ))
  62933. characterMakers.push(() => makeCharacter(
  62934. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62935. {
  62936. front: {
  62937. height: math.unit(6 + 2/12, "feet"),
  62938. weight: math.unit(203, "lb"),
  62939. name: "Front",
  62940. image: {
  62941. source: "./media/characters/maki-kawa/front.svg",
  62942. extra: 950/890,
  62943. bottom: 62/1012
  62944. }
  62945. },
  62946. back: {
  62947. height: math.unit(6 + 2/12, "feet"),
  62948. weight: math.unit(203, "lb"),
  62949. name: "Back",
  62950. image: {
  62951. source: "./media/characters/maki-kawa/back.svg",
  62952. extra: 953/878,
  62953. bottom: 49/1002
  62954. }
  62955. },
  62956. frontBarista: {
  62957. height: math.unit(6 + 2/12, "feet"),
  62958. weight: math.unit(203, "lb"),
  62959. name: "Front (Barista)",
  62960. image: {
  62961. source: "./media/characters/maki-kawa/front-barista.svg",
  62962. extra: 943/883,
  62963. bottom: 69/1012
  62964. }
  62965. },
  62966. backBarista: {
  62967. height: math.unit(6 + 2/12, "feet"),
  62968. weight: math.unit(203, "lb"),
  62969. name: "Back (Barista)",
  62970. image: {
  62971. source: "./media/characters/maki-kawa/back-barista.svg",
  62972. extra: 953/878,
  62973. bottom: 49/1002
  62974. }
  62975. },
  62976. frontWrestler: {
  62977. height: math.unit(6 + 2/12, "feet"),
  62978. weight: math.unit(203, "lb"),
  62979. name: "Front (Wrestler)",
  62980. image: {
  62981. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62982. extra: 950/890,
  62983. bottom: 62/1012
  62984. }
  62985. },
  62986. backWrestler: {
  62987. height: math.unit(6 + 2/12, "feet"),
  62988. weight: math.unit(203, "lb"),
  62989. name: "Back (Wrestler)",
  62990. image: {
  62991. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62992. extra: 953/878,
  62993. bottom: 49/1002
  62994. }
  62995. },
  62996. headFront: {
  62997. height: math.unit(1.64, "feet"),
  62998. name: "Head (Front)",
  62999. image: {
  63000. source: "./media/characters/maki-kawa/head-front.svg"
  63001. }
  63002. },
  63003. headSide: {
  63004. height: math.unit(1.59, "feet"),
  63005. name: "Head (Side)",
  63006. image: {
  63007. source: "./media/characters/maki-kawa/head-side.svg"
  63008. }
  63009. },
  63010. paw: {
  63011. height: math.unit(0.9, "feet"),
  63012. name: "Paw",
  63013. image: {
  63014. source: "./media/characters/maki-kawa/paw.svg"
  63015. }
  63016. },
  63017. },
  63018. [
  63019. {
  63020. name: "Normal",
  63021. height: math.unit(6 + 2/12, "feet"),
  63022. default: true
  63023. },
  63024. {
  63025. name: "Macro",
  63026. height: math.unit(617, "feet")
  63027. },
  63028. ]
  63029. ))
  63030. characterMakers.push(() => makeCharacter(
  63031. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63032. {
  63033. frontNsfw: {
  63034. height: math.unit(10, "feet"),
  63035. weight: math.unit(1500, "lb"),
  63036. name: "Front (NSFW)",
  63037. image: {
  63038. source: "./media/characters/lennox/front-nsfw.svg",
  63039. extra: 1623/1496,
  63040. bottom: 18/1641
  63041. },
  63042. extraAttributes: {
  63043. "cumVolume": {
  63044. name: "Cum Volume",
  63045. power: 3,
  63046. type: "volume",
  63047. base: math.unit(75, "liters")
  63048. },
  63049. }
  63050. },
  63051. backNsfw: {
  63052. height: math.unit(10, "feet"),
  63053. weight: math.unit(1500, "lb"),
  63054. name: "Back (NSFW)",
  63055. image: {
  63056. source: "./media/characters/lennox/back-nsfw.svg",
  63057. extra: 1641/1481,
  63058. bottom: 13/1654
  63059. },
  63060. extraAttributes: {
  63061. "cumVolume": {
  63062. name: "Cum Volume",
  63063. power: 3,
  63064. type: "volume",
  63065. base: math.unit(75, "liters")
  63066. },
  63067. }
  63068. },
  63069. frontSfw: {
  63070. height: math.unit(10, "feet"),
  63071. weight: math.unit(1500, "lb"),
  63072. name: "Front (SFW)",
  63073. image: {
  63074. source: "./media/characters/lennox/front-sfw.svg",
  63075. extra: 1623/1496,
  63076. bottom: 18/1641
  63077. }
  63078. },
  63079. backSfw: {
  63080. height: math.unit(10, "feet"),
  63081. weight: math.unit(1500, "lb"),
  63082. name: "Back (SFW)",
  63083. image: {
  63084. source: "./media/characters/lennox/back-sfw.svg",
  63085. extra: 1641/1481,
  63086. bottom: 13/1654
  63087. }
  63088. },
  63089. maw: {
  63090. height: math.unit(2.94, "feet"),
  63091. name: "Maw",
  63092. image: {
  63093. source: "./media/characters/lennox/maw.svg"
  63094. }
  63095. },
  63096. dick: {
  63097. height: math.unit(0.8323, "meters"),
  63098. weight: math.unit(0.07315728637*1000, "kg"),
  63099. name: "Dick",
  63100. image: {
  63101. source: "./media/characters/lennox/dick.svg"
  63102. },
  63103. extraAttributes: {
  63104. "thickness": {
  63105. name: "Thickness",
  63106. power: 1,
  63107. type: "length",
  63108. base: math.unit(0.330, "meters")
  63109. },
  63110. "length": {
  63111. name: "Length",
  63112. power: 1,
  63113. type: "length",
  63114. base: math.unit(0.8, "meters")
  63115. },
  63116. "cumVolume": {
  63117. name: "Cum Volume",
  63118. power: 3,
  63119. type: "volume",
  63120. base: math.unit(75, "liters")
  63121. },
  63122. }
  63123. },
  63124. },
  63125. [
  63126. {
  63127. name: "Micro",
  63128. height: math.unit(1, "inch")
  63129. },
  63130. {
  63131. name: "Normal",
  63132. height: math.unit(10, "feet"),
  63133. default: true
  63134. },
  63135. {
  63136. name: "Macro",
  63137. height: math.unit(200, "feet")
  63138. },
  63139. ]
  63140. ))
  63141. characterMakers.push(() => makeCharacter(
  63142. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63143. {
  63144. frontDressed: {
  63145. height: math.unit(15 + 7/12, "feet"),
  63146. weight: math.unit(5000, "lb"),
  63147. name: "Front (Dressed)",
  63148. image: {
  63149. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63150. extra: 1136/1023,
  63151. bottom: 51/1187
  63152. }
  63153. },
  63154. backDressed: {
  63155. height: math.unit(15 + 7/12, "feet"),
  63156. weight: math.unit(5000, "lb"),
  63157. name: "Back (Dressed)",
  63158. image: {
  63159. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63160. extra: 2359/2143,
  63161. bottom: 103/2462
  63162. }
  63163. },
  63164. front: {
  63165. height: math.unit(15 + 7/12, "feet"),
  63166. weight: math.unit(5000, "lb"),
  63167. name: "Front",
  63168. image: {
  63169. source: "./media/characters/vyse-iron-thunder/front.svg",
  63170. extra: 1136/1023,
  63171. bottom: 51/1187
  63172. }
  63173. },
  63174. hand: {
  63175. height: math.unit(2.36, "feet"),
  63176. name: "Hand",
  63177. image: {
  63178. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63179. }
  63180. },
  63181. foot: {
  63182. height: math.unit(1.72, "feet"),
  63183. name: "Foot",
  63184. image: {
  63185. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63186. }
  63187. },
  63188. mouth: {
  63189. height: math.unit(2, "feet"),
  63190. name: "Mouth",
  63191. image: {
  63192. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63193. }
  63194. },
  63195. eye: {
  63196. height: math.unit(0.58, "feet"),
  63197. name: "Eye",
  63198. image: {
  63199. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63200. }
  63201. },
  63202. },
  63203. [
  63204. {
  63205. name: "Normal",
  63206. height: math.unit(15 + 7/12, "feet"),
  63207. default: true
  63208. },
  63209. {
  63210. name: "Macro",
  63211. height: math.unit(157, "feet")
  63212. },
  63213. {
  63214. name: "Macro+",
  63215. height: math.unit(1570, "feet")
  63216. },
  63217. {
  63218. name: "Macro++",
  63219. height: math.unit(15700, "feet")
  63220. },
  63221. {
  63222. name: "Macro+++",
  63223. height: math.unit(157000, "feet")
  63224. },
  63225. {
  63226. name: "Macro++++",
  63227. height: math.unit(1570000, "feet")
  63228. },
  63229. ]
  63230. ))
  63231. characterMakers.push(() => makeCharacter(
  63232. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63233. {
  63234. side: {
  63235. height: math.unit(6, "feet"),
  63236. weight: math.unit(115, "lb"),
  63237. name: "Side",
  63238. image: {
  63239. source: "./media/characters/moonbeam/side.svg",
  63240. extra: 839/485,
  63241. bottom: 60/899
  63242. }
  63243. },
  63244. },
  63245. [
  63246. {
  63247. name: "Normal",
  63248. height: math.unit(6, "feet"),
  63249. default: true
  63250. },
  63251. ]
  63252. ))
  63253. characterMakers.push(() => makeCharacter(
  63254. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63255. {
  63256. front: {
  63257. height: math.unit(3500, "miles"),
  63258. weight: math.unit(1659, "petatonnes"),
  63259. name: "Front",
  63260. image: {
  63261. source: "./media/characters/baltica/front.svg",
  63262. extra: 429/428,
  63263. bottom: 41/470
  63264. }
  63265. },
  63266. back: {
  63267. height: math.unit(3500, "miles"),
  63268. weight: math.unit(1659, "petatonnes"),
  63269. name: "Back",
  63270. image: {
  63271. source: "./media/characters/baltica/back.svg",
  63272. extra: 452/451,
  63273. bottom: 8/460
  63274. }
  63275. },
  63276. },
  63277. [
  63278. {
  63279. name: "Gigamacro",
  63280. height: math.unit(3500, "miles"),
  63281. default: true
  63282. },
  63283. ]
  63284. ))
  63285. characterMakers.push(() => makeCharacter(
  63286. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63287. {
  63288. front: {
  63289. height: math.unit(6 + 10/12, "feet"),
  63290. weight: math.unit(200, "lb"),
  63291. name: "Front",
  63292. image: {
  63293. source: "./media/characters/shadow-wolf/front.svg",
  63294. extra: 1931/1760,
  63295. bottom: 88/2019
  63296. }
  63297. },
  63298. },
  63299. [
  63300. {
  63301. name: "Normal",
  63302. height: math.unit(6 + 10/12, "feet"),
  63303. default: true
  63304. },
  63305. ]
  63306. ))
  63307. characterMakers.push(() => makeCharacter(
  63308. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63309. {
  63310. front: {
  63311. height: math.unit(5 + 10/12, "feet"),
  63312. name: "Front",
  63313. image: {
  63314. source: "./media/characters/quincy-praying-mantis/front.svg",
  63315. extra: 1055/891,
  63316. bottom: 92/1147
  63317. }
  63318. },
  63319. soles: {
  63320. height: math.unit(0.85, "feet"),
  63321. name: "Soles",
  63322. image: {
  63323. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63324. extra: 429/324,
  63325. bottom: 89/518
  63326. },
  63327. extraAttributes: {
  63328. "shoeSize": {
  63329. name: "Shoe Size",
  63330. power: 1,
  63331. type: "length",
  63332. base: math.unit(23, "ShoeSizeMensUS"),
  63333. defaultUnit: "ShoeSizeMensUS"
  63334. },
  63335. }
  63336. },
  63337. foot: {
  63338. height: math.unit(0.72, "feet"),
  63339. name: "Foot",
  63340. image: {
  63341. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63342. extra: 349/349,
  63343. bottom: 76/425
  63344. }
  63345. },
  63346. },
  63347. [
  63348. {
  63349. name: "Normal",
  63350. height: math.unit(5 + 10/12, "feet"),
  63351. default: true
  63352. },
  63353. ]
  63354. ))
  63355. characterMakers.push(() => makeCharacter(
  63356. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63357. {
  63358. front: {
  63359. height: math.unit(6, "feet"),
  63360. name: "Front",
  63361. image: {
  63362. source: "./media/characters/christopher-redwood/front.svg",
  63363. extra: 1402/1341,
  63364. bottom: 23/1425
  63365. }
  63366. },
  63367. back: {
  63368. height: math.unit(6, "feet"),
  63369. name: "Back",
  63370. image: {
  63371. source: "./media/characters/christopher-redwood/back.svg",
  63372. extra: 1406/1345,
  63373. bottom: 36/1442
  63374. }
  63375. },
  63376. head: {
  63377. height: math.unit(1.685, "feet"),
  63378. name: "Head",
  63379. image: {
  63380. source: "./media/characters/christopher-redwood/head.svg"
  63381. }
  63382. },
  63383. },
  63384. [
  63385. {
  63386. name: "Normal",
  63387. height: math.unit(6, "feet"),
  63388. default: true
  63389. },
  63390. ]
  63391. ))
  63392. characterMakers.push(() => makeCharacter(
  63393. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63394. {
  63395. front: {
  63396. height: math.unit(1.9, "meters"),
  63397. weight: math.unit(140, "lb"),
  63398. name: "Front",
  63399. image: {
  63400. source: "./media/characters/kara-fox/front.svg",
  63401. extra: 766/711,
  63402. bottom: 41/807
  63403. }
  63404. },
  63405. back: {
  63406. height: math.unit(1.9, "meters"),
  63407. weight: math.unit(140, "lb"),
  63408. name: "Back",
  63409. image: {
  63410. source: "./media/characters/kara-fox/back.svg",
  63411. extra: 766/596,
  63412. bottom: 29/795
  63413. }
  63414. },
  63415. maw: {
  63416. height: math.unit(0.78, "feet"),
  63417. name: "Maw",
  63418. image: {
  63419. source: "./media/characters/kara-fox/maw.svg"
  63420. }
  63421. },
  63422. pawpads: {
  63423. height: math.unit(0.96, "feet"),
  63424. name: "Pawpads",
  63425. image: {
  63426. source: "./media/characters/kara-fox/pawpads.svg"
  63427. }
  63428. },
  63429. },
  63430. [
  63431. {
  63432. name: "Normal",
  63433. height: math.unit(1.9, "meters"),
  63434. default: true
  63435. },
  63436. {
  63437. name: "Giantess",
  63438. height: math.unit(80, "meters")
  63439. },
  63440. ]
  63441. ))
  63442. characterMakers.push(() => makeCharacter(
  63443. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63444. {
  63445. front: {
  63446. height: math.unit(12, "feet"),
  63447. name: "Front",
  63448. image: {
  63449. source: "./media/characters/naomi-espeon/front.svg",
  63450. extra: 892/797,
  63451. bottom: 5/897
  63452. }
  63453. },
  63454. back: {
  63455. height: math.unit(12, "feet"),
  63456. name: "Back",
  63457. image: {
  63458. source: "./media/characters/naomi-espeon/back.svg",
  63459. extra: 890/785,
  63460. bottom: 12/902
  63461. }
  63462. },
  63463. },
  63464. [
  63465. {
  63466. name: "Normal",
  63467. height: math.unit(12, "feet"),
  63468. default: true
  63469. },
  63470. ]
  63471. ))
  63472. characterMakers.push(() => makeCharacter(
  63473. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63474. {
  63475. anthro_front: {
  63476. height: math.unit(8, "feet"),
  63477. weight: math.unit(625, "lb"),
  63478. name: "Front",
  63479. image: {
  63480. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63481. extra: 638/574,
  63482. bottom: 73/711
  63483. },
  63484. form: "anthro",
  63485. default: true
  63486. },
  63487. anthro_back: {
  63488. height: math.unit(8, "feet"),
  63489. weight: math.unit(625, "lb"),
  63490. name: "Back",
  63491. image: {
  63492. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63493. extra: 674/614,
  63494. bottom: 7/681
  63495. },
  63496. form: "anthro",
  63497. },
  63498. taur_side: {
  63499. height: math.unit(16, "feet"),
  63500. weight: math.unit(4.5, "tons"),
  63501. name: "Side",
  63502. image: {
  63503. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63504. extra: 704/646,
  63505. bottom: 132/836
  63506. },
  63507. form: "taur",
  63508. default: true
  63509. },
  63510. },
  63511. [
  63512. {
  63513. name: "Normal",
  63514. height: math.unit(8, "feet"),
  63515. default: true,
  63516. form: "anthro"
  63517. },
  63518. {
  63519. name: "Normal",
  63520. height: math.unit(16, "feet"),
  63521. default: true,
  63522. form: "taur"
  63523. },
  63524. ],
  63525. {
  63526. "anthro": {
  63527. name: "Anthro",
  63528. default: true
  63529. },
  63530. "taur": {
  63531. name: "Taur",
  63532. },
  63533. }
  63534. ))
  63535. characterMakers.push(() => makeCharacter(
  63536. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63537. {
  63538. front: {
  63539. height: math.unit(190, "cm"),
  63540. weight: math.unit(110, "kg"),
  63541. name: "Front",
  63542. image: {
  63543. source: "./media/characters/amelie/front.svg",
  63544. extra: 530/442,
  63545. bottom: 35/565
  63546. }
  63547. },
  63548. },
  63549. [
  63550. {
  63551. name: "Normal",
  63552. height: math.unit(190, "cm"),
  63553. default: true
  63554. },
  63555. ]
  63556. ))
  63557. characterMakers.push(() => makeCharacter(
  63558. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63559. {
  63560. front: {
  63561. height: math.unit(21, "feet"),
  63562. weight: math.unit(30000, "lb"),
  63563. name: "Front",
  63564. image: {
  63565. source: "./media/characters/valence/front.svg",
  63566. extra: 1430/1306,
  63567. bottom: 51/1481
  63568. }
  63569. },
  63570. },
  63571. [
  63572. {
  63573. name: "Normal",
  63574. height: math.unit(21, "feet"),
  63575. default: true
  63576. },
  63577. ]
  63578. ))
  63579. characterMakers.push(() => makeCharacter(
  63580. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63581. {
  63582. front: {
  63583. height: math.unit(5 + 9/12, "feet"),
  63584. weight: math.unit(170, "lb"),
  63585. name: "Front",
  63586. image: {
  63587. source: "./media/characters/aurora-adkins/front.svg",
  63588. extra: 1141/1089,
  63589. bottom: 41/1182
  63590. }
  63591. },
  63592. },
  63593. [
  63594. {
  63595. name: "Tiny",
  63596. height: math.unit(7, "mm")
  63597. },
  63598. {
  63599. name: "Small",
  63600. height: math.unit(3.4, "inches")
  63601. },
  63602. {
  63603. name: "Normal",
  63604. height: math.unit(5 + 9/12, "feet"),
  63605. default: true
  63606. },
  63607. {
  63608. name: "Big",
  63609. height: math.unit(31, "feet")
  63610. },
  63611. {
  63612. name: "Giant",
  63613. height: math.unit(300, "feet")
  63614. },
  63615. ]
  63616. ))
  63617. characterMakers.push(() => makeCharacter(
  63618. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63619. {
  63620. front: {
  63621. height: math.unit(5 + 6/12, "feet"),
  63622. weight: math.unit(210, "lb"),
  63623. name: "Front",
  63624. image: {
  63625. source: "./media/characters/cyber/front.svg",
  63626. extra: 1968/1798,
  63627. bottom: 10/1978
  63628. },
  63629. extraAttributes: {
  63630. "shoeSize": {
  63631. name: "Shoe Size",
  63632. power: 1,
  63633. type: "length",
  63634. base: math.unit(30, "ShoeSizeMensUS")
  63635. },
  63636. }
  63637. },
  63638. },
  63639. [
  63640. {
  63641. name: "Normal",
  63642. height: math.unit(5 + 6/12, "feet"),
  63643. default: true
  63644. },
  63645. ]
  63646. ))
  63647. characterMakers.push(() => makeCharacter(
  63648. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63649. {
  63650. front: {
  63651. height: math.unit(6 + 6/12, "feet"),
  63652. weight: math.unit(140, "lb"),
  63653. name: "Front",
  63654. image: {
  63655. source: "./media/characters/sapphire-wairimea/front.svg",
  63656. extra: 475/458,
  63657. bottom: 14/489
  63658. }
  63659. },
  63660. },
  63661. [
  63662. {
  63663. name: "Normal",
  63664. height: math.unit(6 + 6/12, "feet")
  63665. },
  63666. {
  63667. name: "Macro",
  63668. height: math.unit(132, "feet"),
  63669. default: true
  63670. },
  63671. ]
  63672. ))
  63673. characterMakers.push(() => makeCharacter(
  63674. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63675. {
  63676. front: {
  63677. height: math.unit(1.6, "meters"),
  63678. weight: math.unit(100, "lb"),
  63679. name: "Front",
  63680. image: {
  63681. source: "./media/characters/cirkazi/front.svg",
  63682. extra: 489/477,
  63683. bottom: 0/489
  63684. }
  63685. },
  63686. },
  63687. [
  63688. {
  63689. name: "Normal",
  63690. height: math.unit(1.6, "meters")
  63691. },
  63692. {
  63693. name: "Macro",
  63694. height: math.unit(800, "feet"),
  63695. default: true
  63696. },
  63697. ]
  63698. ))
  63699. characterMakers.push(() => makeCharacter(
  63700. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63701. {
  63702. front: {
  63703. height: math.unit(5 + 10/12, "feet"),
  63704. weight: math.unit(145, "lb"),
  63705. name: "Front",
  63706. image: {
  63707. source: "./media/characters/corrin-cavelli/front.svg",
  63708. extra: 483/464,
  63709. bottom: 6/489
  63710. }
  63711. },
  63712. },
  63713. [
  63714. {
  63715. name: "Human",
  63716. height: math.unit(5 + 10/12, "feet")
  63717. },
  63718. {
  63719. name: "Giant",
  63720. height: math.unit(210, "feet"),
  63721. default: true
  63722. },
  63723. ]
  63724. ))
  63725. characterMakers.push(() => makeCharacter(
  63726. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63727. {
  63728. back: {
  63729. height: math.unit(5 + 6/12, "feet"),
  63730. weight: math.unit(115, "lb"),
  63731. name: "Back",
  63732. image: {
  63733. source: "./media/characters/lori-lopez/back.svg",
  63734. extra: 483/474,
  63735. bottom: 6/489
  63736. }
  63737. },
  63738. },
  63739. [
  63740. {
  63741. name: "Human",
  63742. height: math.unit(5 + 6/12, "feet")
  63743. },
  63744. {
  63745. name: "Macro",
  63746. height: math.unit(198, "feet"),
  63747. default: true
  63748. },
  63749. ]
  63750. ))
  63751. characterMakers.push(() => makeCharacter(
  63752. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63753. {
  63754. front: {
  63755. height: math.unit(6, "feet"),
  63756. weight: math.unit(220, "lb"),
  63757. name: "Front",
  63758. image: {
  63759. source: "./media/characters/sylvia-beauregard/front.svg",
  63760. extra: 483/479,
  63761. bottom: 6/489
  63762. }
  63763. },
  63764. },
  63765. [
  63766. {
  63767. name: "Macro",
  63768. height: math.unit(2071, "feet"),
  63769. default: true
  63770. },
  63771. ]
  63772. ))
  63773. characterMakers.push(() => makeCharacter(
  63774. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63775. {
  63776. back: {
  63777. height: math.unit(5 + 6/12, "feet"),
  63778. weight: math.unit(160, "lb"),
  63779. name: "Back",
  63780. image: {
  63781. source: "./media/characters/akiko-takahashi/back.svg",
  63782. extra: 459/454,
  63783. bottom: 27/486
  63784. }
  63785. },
  63786. },
  63787. [
  63788. {
  63789. name: "Human",
  63790. height: math.unit(5 + 6/12, "feet")
  63791. },
  63792. {
  63793. name: "Macro",
  63794. height: math.unit(198, "feet"),
  63795. default: true
  63796. },
  63797. {
  63798. name: "Megamacro",
  63799. height: math.unit(7128, "feet")
  63800. },
  63801. ]
  63802. ))
  63803. characterMakers.push(() => makeCharacter(
  63804. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63805. {
  63806. front: {
  63807. height: math.unit(6, "feet"),
  63808. weight: math.unit(140, "lb"),
  63809. name: "Front",
  63810. image: {
  63811. source: "./media/characters/velvet-garza/front.svg",
  63812. extra: 480/462,
  63813. bottom: 7/487
  63814. }
  63815. },
  63816. },
  63817. [
  63818. {
  63819. name: "Macro",
  63820. height: math.unit(37, "feet"),
  63821. default: true
  63822. },
  63823. ]
  63824. ))
  63825. characterMakers.push(() => makeCharacter(
  63826. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63827. {
  63828. front: {
  63829. height: math.unit(7 + 6/12, "feet"),
  63830. weight: math.unit(400, "lb"),
  63831. name: "Front",
  63832. image: {
  63833. source: "./media/characters/gaia/front.svg",
  63834. extra: 474/463,
  63835. bottom: 13/487
  63836. }
  63837. },
  63838. },
  63839. [
  63840. {
  63841. name: "MiniMacro",
  63842. height: math.unit(7 + 6/12, "feet")
  63843. },
  63844. {
  63845. name: "GigaMacro",
  63846. height: math.unit(14500, "feet"),
  63847. default: true
  63848. },
  63849. ]
  63850. ))
  63851. characterMakers.push(() => makeCharacter(
  63852. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63853. {
  63854. front: {
  63855. height: math.unit(6, "feet"),
  63856. weight: math.unit(150, "lb"),
  63857. name: "Front",
  63858. image: {
  63859. source: "./media/characters/tim/front.svg",
  63860. extra: 1878/1743,
  63861. bottom: 9/1887
  63862. }
  63863. },
  63864. frontDressed: {
  63865. height: math.unit(6, "feet"),
  63866. weight: math.unit(150, "lb"),
  63867. name: "Front (Dressed)",
  63868. image: {
  63869. source: "./media/characters/tim/front-dressed.svg",
  63870. extra: 1765/1485,
  63871. bottom: 48/1813
  63872. }
  63873. },
  63874. backDressed: {
  63875. height: math.unit(6, "feet"),
  63876. weight: math.unit(150, "lb"),
  63877. name: "Back (Dressed)",
  63878. image: {
  63879. source: "./media/characters/tim/back-dressed.svg",
  63880. extra: 1750/1465,
  63881. bottom: 25/1775
  63882. }
  63883. },
  63884. dick: {
  63885. height: math.unit(1.5, "feet"),
  63886. weight: math.unit(6, "lb"),
  63887. name: "Dick",
  63888. image: {
  63889. source: "./media/characters/tim/dick.svg"
  63890. }
  63891. },
  63892. hand: {
  63893. height: math.unit(0.522, "feet"),
  63894. name: "Hand",
  63895. image: {
  63896. source: "./media/characters/tim/hand.svg"
  63897. }
  63898. },
  63899. palm: {
  63900. height: math.unit(0.48, "feet"),
  63901. name: "Palm",
  63902. image: {
  63903. source: "./media/characters/tim/palm.svg"
  63904. }
  63905. },
  63906. paw: {
  63907. height: math.unit(0.9, "feet"),
  63908. name: "Paw",
  63909. image: {
  63910. source: "./media/characters/tim/paw.svg"
  63911. }
  63912. },
  63913. sole: {
  63914. height: math.unit(0.88, "feet"),
  63915. name: "Sole",
  63916. image: {
  63917. source: "./media/characters/tim/sole.svg"
  63918. }
  63919. },
  63920. },
  63921. [
  63922. {
  63923. name: "Macro",
  63924. height: math.unit(1000, "feet")
  63925. },
  63926. {
  63927. name: "Megamacro",
  63928. height: math.unit(10000, "feet"),
  63929. default: true
  63930. },
  63931. {
  63932. name: "Megamacro+",
  63933. height: math.unit(50000, "feet")
  63934. },
  63935. {
  63936. name: "Gigamacro",
  63937. height: math.unit(150000, "km")
  63938. },
  63939. ]
  63940. ))
  63941. characterMakers.push(() => makeCharacter(
  63942. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63943. {
  63944. front: {
  63945. height: math.unit(5 + 8/12, "feet"),
  63946. weight: math.unit(170, "lb"),
  63947. name: "Front",
  63948. image: {
  63949. source: "./media/characters/abel-delreoux/front.svg",
  63950. extra: 1615/1500,
  63951. bottom: 82/1697
  63952. }
  63953. },
  63954. back: {
  63955. height: math.unit(5 + 8/12, "feet"),
  63956. weight: math.unit(170, "lb"),
  63957. name: "Back",
  63958. image: {
  63959. source: "./media/characters/abel-delreoux/back.svg",
  63960. extra: 1644/1534,
  63961. bottom: 24/1668
  63962. }
  63963. },
  63964. casual: {
  63965. height: math.unit(5 + 8/12, "feet"),
  63966. weight: math.unit(170, "lb"),
  63967. name: "Casual",
  63968. image: {
  63969. source: "./media/characters/abel-delreoux/casual.svg",
  63970. extra: 1716/1598,
  63971. bottom: 29/1745
  63972. }
  63973. },
  63974. sleepy: {
  63975. height: math.unit(5 + 8/12, "feet"),
  63976. weight: math.unit(170, "lb"),
  63977. name: "Sleepy",
  63978. image: {
  63979. source: "./media/characters/abel-delreoux/sleepy.svg",
  63980. extra: 1649/1573,
  63981. bottom: 22/1671
  63982. }
  63983. },
  63984. fem: {
  63985. height: math.unit(5 + 8/12, "feet"),
  63986. weight: math.unit(170, "lb"),
  63987. name: "Fem",
  63988. image: {
  63989. source: "./media/characters/abel-delreoux/fem.svg",
  63990. extra: 1680/1564,
  63991. bottom: 17/1697
  63992. }
  63993. },
  63994. hand: {
  63995. height: math.unit(0.78, "feet"),
  63996. name: "Hand",
  63997. image: {
  63998. source: "./media/characters/abel-delreoux/hand.svg"
  63999. }
  64000. },
  64001. paw: {
  64002. height: math.unit(0.78, "feet"),
  64003. name: "Paw",
  64004. image: {
  64005. source: "./media/characters/abel-delreoux/paw.svg"
  64006. }
  64007. },
  64008. },
  64009. [
  64010. {
  64011. name: "Normal",
  64012. height: math.unit(5 + 8/12, "feet"),
  64013. default: true
  64014. },
  64015. ]
  64016. ))
  64017. characterMakers.push(() => makeCharacter(
  64018. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64019. {
  64020. front: {
  64021. height: math.unit(6, "feet"),
  64022. weight: math.unit(159, "lb"),
  64023. name: "Front",
  64024. image: {
  64025. source: "./media/characters/meus/front.svg",
  64026. extra: 938/843,
  64027. bottom: 37/975
  64028. }
  64029. },
  64030. back: {
  64031. height: math.unit(6, "feet"),
  64032. weight: math.unit(159, "lb"),
  64033. name: "Back",
  64034. image: {
  64035. source: "./media/characters/meus/back.svg",
  64036. extra: 967/873,
  64037. bottom: 12/979
  64038. }
  64039. },
  64040. },
  64041. [
  64042. {
  64043. name: "Micro",
  64044. height: math.unit(2, "inches")
  64045. },
  64046. {
  64047. name: "Mini",
  64048. height: math.unit(6, "inches")
  64049. },
  64050. {
  64051. name: "Normal",
  64052. height: math.unit(6, "feet"),
  64053. default: true
  64054. },
  64055. {
  64056. name: "Macro",
  64057. height: math.unit(84, "feet")
  64058. },
  64059. ]
  64060. ))
  64061. characterMakers.push(() => makeCharacter(
  64062. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64063. {
  64064. front: {
  64065. height: math.unit(60, "cm"),
  64066. weight: math.unit(18, "kg"),
  64067. name: "Front",
  64068. image: {
  64069. source: "./media/characters/yamato/front.svg",
  64070. extra: 733/688,
  64071. bottom: 29/762
  64072. }
  64073. },
  64074. },
  64075. [
  64076. {
  64077. name: "Micro",
  64078. height: math.unit(6, "cm")
  64079. },
  64080. {
  64081. name: "Normal",
  64082. height: math.unit(60, "cm"),
  64083. default: true
  64084. },
  64085. ]
  64086. ))
  64087. characterMakers.push(() => makeCharacter(
  64088. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64089. {
  64090. front: {
  64091. height: math.unit(9, "feet"),
  64092. weight: math.unit(518, "lb"),
  64093. name: "Front",
  64094. image: {
  64095. source: "./media/characters/barus/front.svg",
  64096. extra: 1877/1795,
  64097. bottom: 55/1932
  64098. }
  64099. },
  64100. },
  64101. [
  64102. {
  64103. name: "Base Height",
  64104. height: math.unit(9, "feet"),
  64105. default: true
  64106. },
  64107. {
  64108. name: "Large",
  64109. height: math.unit(18, "feet")
  64110. },
  64111. {
  64112. name: "Giant",
  64113. height: math.unit(100, "feet")
  64114. },
  64115. {
  64116. name: "Huge",
  64117. height: math.unit(500, "feet")
  64118. },
  64119. {
  64120. name: "Enormous",
  64121. height: math.unit(300, "meters")
  64122. },
  64123. {
  64124. name: "Deity Among Man",
  64125. height: math.unit(3000, "meters")
  64126. },
  64127. ]
  64128. ))
  64129. characterMakers.push(() => makeCharacter(
  64130. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64131. {
  64132. front: {
  64133. height: math.unit(1.7, "meters"),
  64134. name: "Front",
  64135. image: {
  64136. source: "./media/characters/yari/front.svg",
  64137. extra: 1210/1125,
  64138. bottom: 283/1493
  64139. }
  64140. },
  64141. back: {
  64142. height: math.unit(1.7, "meters"),
  64143. name: "Back",
  64144. image: {
  64145. source: "./media/characters/yari/back.svg",
  64146. extra: 1240/1195,
  64147. bottom: 180/1420
  64148. }
  64149. },
  64150. head: {
  64151. height: math.unit(1.26, "feet"),
  64152. name: "Head",
  64153. image: {
  64154. source: "./media/characters/yari/head.svg"
  64155. }
  64156. },
  64157. },
  64158. [
  64159. {
  64160. name: "Nano",
  64161. height: math.unit(0.5, "mm")
  64162. },
  64163. {
  64164. name: "Micro",
  64165. height: math.unit(3, "inches")
  64166. },
  64167. {
  64168. name: "Short",
  64169. height: math.unit(1.5, "meters")
  64170. },
  64171. {
  64172. name: "Norm",
  64173. height: math.unit(1.7, "meters"),
  64174. default: true
  64175. },
  64176. ]
  64177. ))
  64178. characterMakers.push(() => makeCharacter(
  64179. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64180. {
  64181. front: {
  64182. height: math.unit(5 + 2/12, "feet"),
  64183. weight: math.unit(110, "lb"),
  64184. name: "Front",
  64185. image: {
  64186. source: "./media/characters/salem/front.svg",
  64187. extra: 1895/1800,
  64188. bottom: 23/1918
  64189. }
  64190. },
  64191. back: {
  64192. height: math.unit(5 + 2/12, "feet"),
  64193. weight: math.unit(110, "lb"),
  64194. name: "Back",
  64195. image: {
  64196. source: "./media/characters/salem/back.svg",
  64197. extra: 1875/1802,
  64198. bottom: 20/1895
  64199. }
  64200. },
  64201. head: {
  64202. height: math.unit(1, "feet"),
  64203. name: "Head",
  64204. image: {
  64205. source: "./media/characters/salem/head.svg"
  64206. }
  64207. },
  64208. paw: {
  64209. height: math.unit(0.59, "feet"),
  64210. name: "Paw",
  64211. image: {
  64212. source: "./media/characters/salem/paw.svg"
  64213. }
  64214. },
  64215. beans: {
  64216. height: math.unit(0.66, "feet"),
  64217. name: "Beans",
  64218. image: {
  64219. source: "./media/characters/salem/beans.svg"
  64220. }
  64221. },
  64222. eye: {
  64223. height: math.unit(0.224, "feet"),
  64224. name: "Eye",
  64225. image: {
  64226. source: "./media/characters/salem/eye.svg"
  64227. }
  64228. },
  64229. semiferal: {
  64230. height: math.unit(2.3, "feet"),
  64231. name: "Semiferal",
  64232. image: {
  64233. source: "./media/characters/salem/semiferal.svg",
  64234. extra: 914/839,
  64235. bottom: 32/946
  64236. }
  64237. },
  64238. },
  64239. [
  64240. {
  64241. name: "Micro",
  64242. height: math.unit(4, "inches")
  64243. },
  64244. {
  64245. name: "Normal",
  64246. height: math.unit(5 + 2/12, "feet"),
  64247. default: true
  64248. },
  64249. {
  64250. name: "Macro",
  64251. height: math.unit(108, "feet")
  64252. },
  64253. {
  64254. name: "Macro+",
  64255. height: math.unit(1500, "feet")
  64256. },
  64257. ]
  64258. ))
  64259. characterMakers.push(() => makeCharacter(
  64260. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64261. {
  64262. front: {
  64263. height: math.unit(7 + 6/12, "feet"),
  64264. weight: math.unit(600, "kg"),
  64265. preyCapacity: math.unit(10, "people"),
  64266. name: "Front",
  64267. image: {
  64268. source: "./media/characters/kii/front.svg",
  64269. extra: 3296/3087,
  64270. bottom: 130/3426
  64271. }
  64272. },
  64273. },
  64274. [
  64275. {
  64276. name: "Normal",
  64277. height: math.unit(7 + 6/12, "feet"),
  64278. default: true
  64279. },
  64280. ]
  64281. ))
  64282. characterMakers.push(() => makeCharacter(
  64283. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64284. {
  64285. front: {
  64286. height: math.unit(2, "meters"),
  64287. weight: math.unit(200, "lb"),
  64288. name: "Front",
  64289. image: {
  64290. source: "./media/characters/taffy/front.svg",
  64291. extra: 1666/1618,
  64292. bottom: 157/1823
  64293. }
  64294. },
  64295. back: {
  64296. height: math.unit(2, "meters"),
  64297. weight: math.unit(200, "lb"),
  64298. name: "Back",
  64299. image: {
  64300. source: "./media/characters/taffy/back.svg",
  64301. extra: 1635/1583,
  64302. bottom: 153/1788
  64303. }
  64304. },
  64305. },
  64306. [
  64307. {
  64308. name: "Normal",
  64309. height: math.unit(2, "meters"),
  64310. default: true
  64311. },
  64312. ]
  64313. ))
  64314. characterMakers.push(() => makeCharacter(
  64315. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64316. {
  64317. front: {
  64318. height: math.unit(1.55, "meters"),
  64319. weight: math.unit(60, "kg"),
  64320. name: "Front",
  64321. image: {
  64322. source: "./media/characters/barley/front.svg",
  64323. extra: 1520/1340,
  64324. bottom: 47/1567
  64325. }
  64326. },
  64327. back: {
  64328. height: math.unit(1.55, "meters"),
  64329. weight: math.unit(60, "kg"),
  64330. name: "Back",
  64331. image: {
  64332. source: "./media/characters/barley/back.svg",
  64333. extra: 1543/1341,
  64334. bottom: 12/1555
  64335. }
  64336. },
  64337. feet: {
  64338. height: math.unit(2.18, "feet"),
  64339. name: "Feet",
  64340. image: {
  64341. source: "./media/characters/barley/feet.svg"
  64342. }
  64343. },
  64344. },
  64345. [
  64346. {
  64347. name: "Normal",
  64348. height: math.unit(1.55, "meters"),
  64349. default: true
  64350. },
  64351. ]
  64352. ))
  64353. characterMakers.push(() => makeCharacter(
  64354. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64355. {
  64356. dressed: {
  64357. height: math.unit(6, "feet"),
  64358. name: "Dressed",
  64359. image: {
  64360. source: "./media/characters/lydia-lopez/dressed.svg",
  64361. extra: 1319/1277,
  64362. bottom: 90/1409
  64363. }
  64364. },
  64365. nude: {
  64366. height: math.unit(6, "feet"),
  64367. name: "Nude",
  64368. image: {
  64369. source: "./media/characters/lydia-lopez/nude.svg",
  64370. extra: 1319/1277,
  64371. bottom: 90/1409
  64372. }
  64373. },
  64374. },
  64375. [
  64376. {
  64377. name: "Normal",
  64378. height: math.unit(6, "feet"),
  64379. default: true
  64380. },
  64381. {
  64382. name: "Maximum",
  64383. height: math.unit(2101, "feet")
  64384. },
  64385. ]
  64386. ))
  64387. characterMakers.push(() => makeCharacter(
  64388. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64389. {
  64390. front: {
  64391. height: math.unit(5 + 4/12, "feet"),
  64392. weight: math.unit(250, "lb"),
  64393. volume: math.unit(20, "gallons"),
  64394. name: "Front",
  64395. image: {
  64396. source: "./media/characters/kira-slime/front.svg",
  64397. extra: 442/403,
  64398. bottom: 18/460
  64399. }
  64400. },
  64401. frontNsfw: {
  64402. height: math.unit(5 + 4/12, "feet"),
  64403. weight: math.unit(250, "lb"),
  64404. volume: math.unit(20, "gallons"),
  64405. name: "Front (NSFW)",
  64406. image: {
  64407. source: "./media/characters/kira-slime/front-nsfw.svg",
  64408. extra: 442/403,
  64409. bottom: 18/460
  64410. }
  64411. },
  64412. },
  64413. [
  64414. {
  64415. name: "Droplet",
  64416. height: math.unit(0.0464452, "feet")
  64417. },
  64418. {
  64419. name: "Pint",
  64420. height: math.unit(0.9824, "feet")
  64421. },
  64422. {
  64423. name: "Bucket",
  64424. height: math.unit(2.83, "feet")
  64425. },
  64426. {
  64427. name: "Normal",
  64428. height: math.unit(5 + 4/12, "feet"),
  64429. default: true
  64430. },
  64431. {
  64432. name: "Tub",
  64433. height: math.unit(8.46614, "feet")
  64434. },
  64435. {
  64436. name: "Pool",
  64437. height: math.unit(31.1895, "feet")
  64438. },
  64439. {
  64440. name: "Pond",
  64441. height: math.unit(170.349, "feet")
  64442. },
  64443. {
  64444. name: "Lake",
  64445. height: math.unit(289334, "feet")
  64446. },
  64447. {
  64448. name: "Ocean",
  64449. height: math.unit(1.11940e+7, "feet")
  64450. },
  64451. ]
  64452. ))
  64453. characterMakers.push(() => makeCharacter(
  64454. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64455. {
  64456. front: {
  64457. height: math.unit(5 + 6/12, "feet"),
  64458. weight: math.unit(120, "lb"),
  64459. name: "Front",
  64460. image: {
  64461. source: "./media/characters/holiday/front.svg",
  64462. extra: 456/403,
  64463. bottom: 4/460
  64464. }
  64465. },
  64466. back: {
  64467. height: math.unit(5 + 6/12, "feet"),
  64468. weight: math.unit(120, "lb"),
  64469. name: "Back",
  64470. image: {
  64471. source: "./media/characters/holiday/back.svg",
  64472. extra: 450/404,
  64473. bottom: 12/462
  64474. }
  64475. },
  64476. head: {
  64477. height: math.unit(2.3, "feet"),
  64478. name: "Head",
  64479. image: {
  64480. source: "./media/characters/holiday/head.svg"
  64481. }
  64482. },
  64483. scifi_front: {
  64484. height: math.unit(145, "km"),
  64485. name: "Front",
  64486. image: {
  64487. source: "./media/characters/holiday/scifi-front.svg"
  64488. },
  64489. form: "scifi",
  64490. },
  64491. },
  64492. [
  64493. {
  64494. name: "Normal",
  64495. height: math.unit(5 + 6/12, "feet"),
  64496. default: true
  64497. },
  64498. {
  64499. name: "Macro",
  64500. height: math.unit(6574.25, "feet")
  64501. },
  64502. ]
  64503. ))
  64504. characterMakers.push(() => makeCharacter(
  64505. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64506. {
  64507. front: {
  64508. height: math.unit(6 + 2/12, "feet"),
  64509. weight: math.unit(200, "lb"),
  64510. name: "Front",
  64511. image: {
  64512. source: "./media/characters/camina/front.svg",
  64513. extra: 1048/985,
  64514. bottom: 30/1078
  64515. }
  64516. },
  64517. },
  64518. [
  64519. {
  64520. name: "Normal",
  64521. height: math.unit(6 + 2/12, "feet"),
  64522. default: true
  64523. },
  64524. ]
  64525. ))
  64526. characterMakers.push(() => makeCharacter(
  64527. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64528. {
  64529. front: {
  64530. height: math.unit(30, "cm"),
  64531. weight: math.unit(420, "grams"),
  64532. name: "Front",
  64533. image: {
  64534. source: "./media/characters/smuck/front.svg",
  64535. extra: 379/345,
  64536. bottom: 36/415
  64537. }
  64538. },
  64539. },
  64540. [
  64541. {
  64542. name: "Smuck-Sized",
  64543. height: math.unit(30, "cm"),
  64544. default: true
  64545. },
  64546. ]
  64547. ))
  64548. characterMakers.push(() => makeCharacter(
  64549. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64550. {
  64551. frontSfw: {
  64552. height: math.unit(10, "feet"),
  64553. weight: math.unit(1000, "kg"),
  64554. preyCapacity: math.unit(2, "people"),
  64555. name: "Front (SFW)",
  64556. image: {
  64557. source: "./media/characters/bylur/front-sfw.svg",
  64558. extra: 419/343,
  64559. bottom: 3/422
  64560. },
  64561. default: true
  64562. },
  64563. frontSheath: {
  64564. height: math.unit(10, "feet"),
  64565. weight: math.unit(1000, "kg"),
  64566. preyCapacity: math.unit(2, "people"),
  64567. name: "Front (Sheath)",
  64568. image: {
  64569. source: "./media/characters/bylur/front-sheath.svg",
  64570. extra: 419/343,
  64571. bottom: 3/422
  64572. }
  64573. },
  64574. frontErect: {
  64575. height: math.unit(10, "feet"),
  64576. weight: math.unit(1000, "kg"),
  64577. preyCapacity: math.unit(2, "people"),
  64578. name: "Front (Erect)",
  64579. image: {
  64580. source: "./media/characters/bylur/front-erect.svg",
  64581. extra: 419/343,
  64582. bottom: 3/422
  64583. }
  64584. },
  64585. back: {
  64586. height: math.unit(10, "feet"),
  64587. weight: math.unit(1000, "kg"),
  64588. preyCapacity: math.unit(2, "people"),
  64589. name: "Back",
  64590. image: {
  64591. source: "./media/characters/bylur/back.svg",
  64592. extra: 392/315,
  64593. bottom: 3/395
  64594. }
  64595. },
  64596. maw: {
  64597. height: math.unit(3.65, "feet"),
  64598. name: "Maw",
  64599. image: {
  64600. source: "./media/characters/bylur/maw.svg"
  64601. }
  64602. },
  64603. },
  64604. [
  64605. {
  64606. name: "Slightly Human Sized",
  64607. height: math.unit(10, "feet")
  64608. },
  64609. {
  64610. name: "Normal",
  64611. height: math.unit(35, "feet"),
  64612. default: true
  64613. },
  64614. {
  64615. name: "Macro",
  64616. height: math.unit(130, "feet")
  64617. },
  64618. ]
  64619. ))
  64620. characterMakers.push(() => makeCharacter(
  64621. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64622. {
  64623. frontNsfw: {
  64624. height: math.unit(6, "feet"),
  64625. weight: math.unit(250, "lb"),
  64626. preyCapacity: math.unit(0.05, "people"),
  64627. name: "Front (NSFW)",
  64628. image: {
  64629. source: "./media/characters/oarven/front-nsfw.svg",
  64630. extra: 1795/1783,
  64631. bottom: 142/1937
  64632. }
  64633. },
  64634. frontSfw: {
  64635. height: math.unit(6, "feet"),
  64636. weight: math.unit(250, "lb"),
  64637. preyCapacity: math.unit(0.05, "people"),
  64638. name: "Front (SFW)",
  64639. image: {
  64640. source: "./media/characters/oarven/front-sfw.svg",
  64641. extra: 1795/1783,
  64642. bottom: 142/1937
  64643. }
  64644. },
  64645. },
  64646. [
  64647. {
  64648. name: "Megamacro",
  64649. height: math.unit(5, "miles"),
  64650. default: true
  64651. },
  64652. {
  64653. name: "Maximum Height",
  64654. height: math.unit(5, "AUs")
  64655. },
  64656. ]
  64657. ))
  64658. characterMakers.push(() => makeCharacter(
  64659. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64660. {
  64661. side: {
  64662. height: math.unit(1065, "meters"),
  64663. weight: math.unit(1e12, "kg"),
  64664. volume: math.unit(3265000000, "m^3"),
  64665. name: "Side",
  64666. image: {
  64667. source: "./media/characters/solidarity/side.svg"
  64668. }
  64669. },
  64670. front: {
  64671. height: math.unit(1065, "meters"),
  64672. weight: math.unit(3265000000000, "kg"),
  64673. volume: math.unit(3265000000, "m^3"),
  64674. name: "Front",
  64675. image: {
  64676. source: "./media/characters/solidarity/front.svg"
  64677. }
  64678. },
  64679. top: {
  64680. height: math.unit(5823, "meters"),
  64681. weight: math.unit(3265000000000, "kg"),
  64682. volume: math.unit(3265000000, "m^3"),
  64683. name: "Top",
  64684. image: {
  64685. source: "./media/characters/solidarity/top.svg"
  64686. }
  64687. },
  64688. },
  64689. [
  64690. {
  64691. name: "Normal",
  64692. height: math.unit(1065, "meters"),
  64693. default: true
  64694. },
  64695. ]
  64696. ))
  64697. characterMakers.push(() => makeCharacter(
  64698. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64699. {
  64700. side: {
  64701. height: math.unit(18 + 4/12, "feet"),
  64702. weight: math.unit(13000, "kg"),
  64703. name: "Side",
  64704. image: {
  64705. source: "./media/characters/ani'szi/side.svg",
  64706. extra: 468/459,
  64707. bottom: 60/528
  64708. }
  64709. },
  64710. head: {
  64711. height: math.unit(4.8, "feet"),
  64712. name: "Head",
  64713. image: {
  64714. source: "./media/characters/ani'szi/head.svg"
  64715. }
  64716. },
  64717. jaws: {
  64718. height: math.unit(2.25, "feet"),
  64719. name: "Jaws",
  64720. image: {
  64721. source: "./media/characters/ani'szi/jaws.svg"
  64722. }
  64723. },
  64724. bust: {
  64725. height: math.unit(8.9, "feet"),
  64726. name: "Bust",
  64727. image: {
  64728. source: "./media/characters/ani'szi/bust.svg"
  64729. }
  64730. },
  64731. back: {
  64732. height: math.unit(13.53, "feet"),
  64733. name: "Back",
  64734. image: {
  64735. source: "./media/characters/ani'szi/back.svg"
  64736. }
  64737. },
  64738. eye: {
  64739. height: math.unit(0.44, "feet"),
  64740. name: "Eye",
  64741. image: {
  64742. source: "./media/characters/ani'szi/eye.svg"
  64743. }
  64744. },
  64745. },
  64746. [
  64747. {
  64748. name: "Normal",
  64749. height: math.unit(18 + 4/12, "feet"),
  64750. default: true
  64751. },
  64752. ]
  64753. ))
  64754. characterMakers.push(() => makeCharacter(
  64755. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64756. {
  64757. front: {
  64758. height: math.unit(7 + 6/12, "feet"),
  64759. weight: math.unit(300, "lb"),
  64760. name: "Front",
  64761. image: {
  64762. source: "./media/characters/rain/front.svg",
  64763. extra: 2955/2698,
  64764. bottom: 235/3190
  64765. }
  64766. },
  64767. dressed: {
  64768. height: math.unit(7 + 6/12, "feet"),
  64769. weight: math.unit(300, "lb"),
  64770. name: "Dressed",
  64771. image: {
  64772. source: "./media/characters/rain/dressed.svg",
  64773. extra: 2783/2572,
  64774. bottom: 430/3213
  64775. }
  64776. },
  64777. },
  64778. [
  64779. {
  64780. name: "Normal",
  64781. height: math.unit(7 + 6/12, "feet"),
  64782. default: true
  64783. },
  64784. {
  64785. name: "Macro",
  64786. height: math.unit(200, "feet")
  64787. },
  64788. {
  64789. name: "Macro+",
  64790. height: math.unit(500, "feet")
  64791. },
  64792. {
  64793. name: "Megamacro",
  64794. height: math.unit(5, "miles")
  64795. },
  64796. ]
  64797. ))
  64798. characterMakers.push(() => makeCharacter(
  64799. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64800. {
  64801. taur_side: {
  64802. height: math.unit(3, "meters"),
  64803. name: "Side",
  64804. image: {
  64805. source: "./media/characters/anise/taur-side.svg",
  64806. extra: 1833/926,
  64807. bottom: 134/1967
  64808. },
  64809. form: "taur",
  64810. default: true
  64811. },
  64812. feral_side: {
  64813. height: math.unit(3, "meters"),
  64814. name: "Side",
  64815. image: {
  64816. source: "./media/characters/anise/feral-side.svg",
  64817. extra: 681/349,
  64818. bottom: 26/707
  64819. },
  64820. form: "feral"
  64821. },
  64822. },
  64823. [
  64824. {
  64825. name: "Normal",
  64826. height: math.unit(3, "meters"),
  64827. default: true,
  64828. allForms: true
  64829. },
  64830. ],
  64831. {
  64832. "taur": {
  64833. name: "Taur",
  64834. default: true
  64835. },
  64836. "feral": {
  64837. name: "Feral",
  64838. },
  64839. }
  64840. ))
  64841. characterMakers.push(() => makeCharacter(
  64842. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64843. {
  64844. front: {
  64845. height: math.unit(1.9, "meters"),
  64846. weight: math.unit(75, "kg"),
  64847. name: "Front",
  64848. image: {
  64849. source: "./media/characters/sarina/front.svg",
  64850. extra: 1275/1200,
  64851. bottom: 49/1324
  64852. }
  64853. },
  64854. back: {
  64855. height: math.unit(1.9, "meters"),
  64856. weight: math.unit(75, "kg"),
  64857. name: "Back",
  64858. image: {
  64859. source: "./media/characters/sarina/back.svg",
  64860. extra: 1279/1209,
  64861. bottom: 14/1293
  64862. }
  64863. },
  64864. dressed: {
  64865. height: math.unit(1.9, "meters"),
  64866. weight: math.unit(75, "kg"),
  64867. name: "Dressed",
  64868. image: {
  64869. source: "./media/characters/sarina/dressed.svg",
  64870. extra: 1256/1187,
  64871. bottom: 56/1312
  64872. }
  64873. },
  64874. paw: {
  64875. height: math.unit(0.57, "feet"),
  64876. name: "Paw",
  64877. image: {
  64878. source: "./media/characters/sarina/paw.svg"
  64879. }
  64880. },
  64881. toering: {
  64882. height: math.unit(0.27, "feet"),
  64883. name: "Toering",
  64884. image: {
  64885. source: "./media/characters/sarina/toering.svg"
  64886. }
  64887. },
  64888. },
  64889. [
  64890. {
  64891. name: "Incognito",
  64892. height: math.unit(1.9, "meters")
  64893. },
  64894. {
  64895. name: "Home Size",
  64896. height: math.unit(160, "meters"),
  64897. default: true
  64898. },
  64899. {
  64900. name: "Mega",
  64901. height: math.unit(50, "km")
  64902. },
  64903. {
  64904. name: "Small Giga",
  64905. height: math.unit(250, "km")
  64906. },
  64907. {
  64908. name: "Giga (Preferred Size)",
  64909. height: math.unit(3000, "km")
  64910. },
  64911. {
  64912. name: "Terra",
  64913. height: math.unit(40000, "km")
  64914. },
  64915. {
  64916. name: "Terra+",
  64917. height: math.unit(400000, "km")
  64918. },
  64919. {
  64920. name: "Solar",
  64921. height: math.unit(35e6, "km")
  64922. },
  64923. {
  64924. name: "Galactic",
  64925. height: math.unit(648106, "parsecs")
  64926. },
  64927. {
  64928. name: "Universal",
  64929. height: math.unit(7, "universes")
  64930. },
  64931. {
  64932. name: "Universal+",
  64933. height: math.unit(30, "universes")
  64934. },
  64935. ]
  64936. ))
  64937. characterMakers.push(() => makeCharacter(
  64938. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64939. {
  64940. front: {
  64941. height: math.unit(5 + 6/12, "feet"),
  64942. name: "Front",
  64943. image: {
  64944. source: "./media/characters/sifray/front.svg",
  64945. extra: 722/691,
  64946. bottom: 64/786
  64947. }
  64948. },
  64949. },
  64950. [
  64951. {
  64952. name: "Normal",
  64953. height: math.unit(5 + 6/12, "feet"),
  64954. default: true
  64955. },
  64956. ]
  64957. ))
  64958. characterMakers.push(() => makeCharacter(
  64959. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64960. {
  64961. side: {
  64962. height: math.unit(2.64, "feet"),
  64963. weight: math.unit(100, "lb"),
  64964. preyCapacity: math.unit(3, "people"),
  64965. name: "Side",
  64966. image: {
  64967. source: "./media/characters/spots/side.svg",
  64968. extra: 1859/977,
  64969. bottom: 19/1878
  64970. },
  64971. extraAttributes: {
  64972. "preyPerMinute": {
  64973. name: "Prey Per Minute",
  64974. power: 3,
  64975. type: "volume",
  64976. base: math.unit(6, "people"),
  64977. defaultUnit: "people"
  64978. },
  64979. "preyPerDay": {
  64980. name: "Prey Per Day",
  64981. power: 3,
  64982. type: "volume",
  64983. base: math.unit(6 * 60 * 24, "people"),
  64984. defaultUnit: "people"
  64985. },
  64986. }
  64987. },
  64988. },
  64989. [
  64990. {
  64991. name: "Normal",
  64992. height: math.unit(2.64, "feet"),
  64993. default: true
  64994. },
  64995. ]
  64996. ))
  64997. characterMakers.push(() => makeCharacter(
  64998. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64999. {
  65000. front: {
  65001. height: math.unit(29 + 11/12, "feet"),
  65002. weight: math.unit(40, "tons"),
  65003. name: "Front",
  65004. image: {
  65005. source: "./media/characters/mona/front.svg",
  65006. extra: 1257/1116,
  65007. bottom: 34/1291
  65008. }
  65009. },
  65010. },
  65011. [
  65012. {
  65013. name: "Normal",
  65014. height: math.unit(29 + 11/12, "feet"),
  65015. default: true
  65016. },
  65017. ]
  65018. ))
  65019. characterMakers.push(() => makeCharacter(
  65020. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65021. {
  65022. front: {
  65023. height: math.unit(15, "feet"),
  65024. weight: math.unit(3000, "kg"),
  65025. preyCapacity: math.unit(5, "people"),
  65026. name: "Front",
  65027. image: {
  65028. source: "./media/characters/frostfire/front.svg",
  65029. extra: 675/558,
  65030. bottom: 73/748
  65031. }
  65032. },
  65033. side: {
  65034. height: math.unit(15, "feet"),
  65035. weight: math.unit(3000, "kg"),
  65036. preyCapacity: math.unit(5, "people"),
  65037. name: "Side",
  65038. image: {
  65039. source: "./media/characters/frostfire/side.svg",
  65040. extra: 687/585,
  65041. bottom: 50/737
  65042. }
  65043. },
  65044. back: {
  65045. height: math.unit(15, "feet"),
  65046. weight: math.unit(3000, "kg"),
  65047. preyCapacity: math.unit(5, "people"),
  65048. name: "Back",
  65049. image: {
  65050. source: "./media/characters/frostfire/back.svg",
  65051. extra: 707/607,
  65052. bottom: 16/723
  65053. }
  65054. },
  65055. head: {
  65056. height: math.unit(9.35, "feet"),
  65057. name: "Head",
  65058. image: {
  65059. source: "./media/characters/frostfire/head.svg"
  65060. }
  65061. },
  65062. maw: {
  65063. height: math.unit(3.32, "feet"),
  65064. name: "Maw",
  65065. image: {
  65066. source: "./media/characters/frostfire/maw.svg"
  65067. }
  65068. },
  65069. hand: {
  65070. height: math.unit(3.7, "feet"),
  65071. name: "Hand",
  65072. image: {
  65073. source: "./media/characters/frostfire/hand.svg"
  65074. }
  65075. },
  65076. paw: {
  65077. height: math.unit(5.8, "feet"),
  65078. name: "Paw",
  65079. image: {
  65080. source: "./media/characters/frostfire/paw.svg"
  65081. }
  65082. },
  65083. },
  65084. [
  65085. {
  65086. name: "Normal",
  65087. height: math.unit(15, "feet"),
  65088. default: true
  65089. },
  65090. ]
  65091. ))
  65092. characterMakers.push(() => makeCharacter(
  65093. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65094. {
  65095. front: {
  65096. height: math.unit(5 + 2/12, "feet"),
  65097. weight: math.unit(122, "lb"),
  65098. name: "Front",
  65099. image: {
  65100. source: "./media/characters/valeroo/front.svg",
  65101. extra: 1789/1534,
  65102. bottom: 66/1855
  65103. }
  65104. },
  65105. back: {
  65106. height: math.unit(5 + 2/12, "feet"),
  65107. weight: math.unit(122, "lb"),
  65108. name: "Back",
  65109. image: {
  65110. source: "./media/characters/valeroo/back.svg",
  65111. extra: 1848/1588,
  65112. bottom: 68/1916
  65113. }
  65114. },
  65115. head: {
  65116. height: math.unit(1.87, "feet"),
  65117. name: "Head",
  65118. image: {
  65119. source: "./media/characters/valeroo/head.svg"
  65120. }
  65121. },
  65122. hand: {
  65123. height: math.unit(0.82, "feet"),
  65124. name: "Hand",
  65125. image: {
  65126. source: "./media/characters/valeroo/hand.svg"
  65127. }
  65128. },
  65129. foot: {
  65130. height: math.unit(2.42, "feet"),
  65131. name: "Foot",
  65132. image: {
  65133. source: "./media/characters/valeroo/foot.svg"
  65134. }
  65135. },
  65136. },
  65137. [
  65138. {
  65139. name: "Normal",
  65140. height: math.unit(5 + 2/12, "feet"),
  65141. default: true
  65142. },
  65143. ]
  65144. ))
  65145. characterMakers.push(() => makeCharacter(
  65146. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65147. {
  65148. front: {
  65149. height: math.unit(11 + 3/12, "feet"),
  65150. name: "Front",
  65151. image: {
  65152. source: "./media/characters/corrin/front.svg",
  65153. extra: 665/597,
  65154. bottom: 74/739
  65155. }
  65156. },
  65157. },
  65158. [
  65159. {
  65160. name: "Standard",
  65161. height: math.unit(11 + 3/12, "feet"),
  65162. default: true
  65163. },
  65164. {
  65165. name: "The Boss",
  65166. height: math.unit(110, "feet")
  65167. },
  65168. {
  65169. name: "Shipbreaker",
  65170. height: math.unit(38, "km")
  65171. },
  65172. ]
  65173. ))
  65174. characterMakers.push(() => makeCharacter(
  65175. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65176. {
  65177. front: {
  65178. height: math.unit(10, "feet"),
  65179. weight: math.unit(1750, "lb"),
  65180. name: "Front",
  65181. image: {
  65182. source: "./media/characters/kiba-ulrich/front.svg",
  65183. extra: 1037/973,
  65184. bottom: 36/1073
  65185. }
  65186. },
  65187. },
  65188. [
  65189. {
  65190. name: "Normal",
  65191. height: math.unit(10, "feet"),
  65192. default: true
  65193. },
  65194. {
  65195. name: "Minimacro",
  65196. height: math.unit(20, "feet")
  65197. },
  65198. {
  65199. name: "Macro",
  65200. height: math.unit(200, "feet")
  65201. },
  65202. {
  65203. name: "Megamacro",
  65204. height: math.unit(22500, "feet")
  65205. },
  65206. {
  65207. name: "Gigamacro",
  65208. height: math.unit(2700, "miles")
  65209. },
  65210. {
  65211. name: "Teramacro",
  65212. height: math.unit(10000, "miles")
  65213. },
  65214. ]
  65215. ))
  65216. characterMakers.push(() => makeCharacter(
  65217. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65218. {
  65219. gryphon_front: {
  65220. height: math.unit(220, "cm"),
  65221. weight: math.unit(160, "kg"),
  65222. name: "Front",
  65223. image: {
  65224. source: "./media/characters/ceanoth/gryphon-front.svg",
  65225. extra: 616/552,
  65226. bottom: 33/649
  65227. },
  65228. form: "gryphon",
  65229. default: true
  65230. },
  65231. },
  65232. [
  65233. {
  65234. name: "Normal",
  65235. height: math.unit(220, "cm"),
  65236. form: "gryphon",
  65237. default: true
  65238. },
  65239. ],
  65240. {
  65241. "gryphon": {
  65242. name: "Grpyhon",
  65243. default: true
  65244. },
  65245. }
  65246. ))
  65247. characterMakers.push(() => makeCharacter(
  65248. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65249. {
  65250. dressed: {
  65251. height: math.unit(2.2 * 0.79, "meters"),
  65252. weight: math.unit(0.5, "tonnes"),
  65253. name: "Dressed",
  65254. image: {
  65255. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65256. extra: 665/315,
  65257. bottom: 106/771
  65258. },
  65259. extraAttributes: {
  65260. "bodyLength": {
  65261. name: "Body Length",
  65262. power: 1,
  65263. type: "length",
  65264. base: math.unit(2.5, "meters")
  65265. },
  65266. "tailLength": {
  65267. name: "Tail Length",
  65268. power: 1,
  65269. type: "length",
  65270. base: math.unit(4.5, "meters")
  65271. },
  65272. "wingspan": {
  65273. name: "Wingspan",
  65274. power: 1,
  65275. type: "length",
  65276. base: math.unit(6, "meters")
  65277. },
  65278. "taurStomachCapacity": {
  65279. name: "Taur Stomach Capacity",
  65280. power: 3,
  65281. type: "volume",
  65282. base: math.unit(4, "people"),
  65283. defaultUnit: "people"
  65284. },
  65285. "anthroStomachCapacity": {
  65286. name: "Anthro Stomach Capacity",
  65287. power: 3,
  65288. type: "volume",
  65289. base: math.unit(1, "people"),
  65290. defaultUnit: "people"
  65291. },
  65292. }
  65293. },
  65294. nude: {
  65295. height: math.unit(2.2 * 0.79, "meters"),
  65296. weight: math.unit(0.5, "tonnes"),
  65297. name: "Nude",
  65298. image: {
  65299. source: "./media/characters/vanadiya-athelya/nude.svg",
  65300. extra: 665/315,
  65301. bottom: 106/771
  65302. },
  65303. extraAttributes: {
  65304. "bodyLength": {
  65305. name: "Body Length",
  65306. power: 1,
  65307. type: "length",
  65308. base: math.unit(2.5, "meters")
  65309. },
  65310. "tailLength": {
  65311. name: "Tail Length",
  65312. power: 1,
  65313. type: "length",
  65314. base: math.unit(4.5, "meters")
  65315. },
  65316. "wingspan": {
  65317. name: "Wingspan",
  65318. power: 1,
  65319. type: "length",
  65320. base: math.unit(6, "meters")
  65321. },
  65322. "taurStomachCapacity": {
  65323. name: "Taur Stomach Capacity",
  65324. power: 3,
  65325. type: "volume",
  65326. base: math.unit(4, "people"),
  65327. defaultUnit: "people"
  65328. },
  65329. "anthroStomachCapacity": {
  65330. name: "Anthro Stomach Capacity",
  65331. power: 3,
  65332. type: "volume",
  65333. base: math.unit(1, "people"),
  65334. defaultUnit: "people"
  65335. },
  65336. }
  65337. },
  65338. },
  65339. [
  65340. {
  65341. name: "Handheld",
  65342. height: math.unit(0.79 * 0.06, "meters")
  65343. },
  65344. {
  65345. name: "Mini",
  65346. height: math.unit(0.79 * 0.7, "meters")
  65347. },
  65348. {
  65349. name: "Short",
  65350. height: math.unit(0.79 * 1.4, "meters")
  65351. },
  65352. {
  65353. name: "Imposing",
  65354. height: math.unit(0.79 * 2.2, "meters"),
  65355. default: true
  65356. },
  65357. {
  65358. name: "Big",
  65359. height: math.unit(0.79 * 3.8, "meters")
  65360. },
  65361. {
  65362. name: "Giant",
  65363. height: math.unit(0.79 * 6.7, "meters")
  65364. },
  65365. {
  65366. name: "Airliner",
  65367. height: math.unit(0.79 * 64, "meters")
  65368. },
  65369. {
  65370. name: "Skyscraper",
  65371. height: math.unit(0.79 * 220, "meters")
  65372. },
  65373. {
  65374. name: "Mountain",
  65375. height: math.unit(0.79 * 3.6, "km")
  65376. },
  65377. {
  65378. name: "Spacescraper",
  65379. height: math.unit(0.79 * 70, "km")
  65380. },
  65381. {
  65382. name: "Continental",
  65383. height: math.unit(0.79 * 1290, "km")
  65384. },
  65385. {
  65386. name: "Moon",
  65387. height: math.unit(0.79 * 32200, "km")
  65388. },
  65389. {
  65390. name: "Planetary",
  65391. height: math.unit(0.79 * 145000, "km")
  65392. },
  65393. {
  65394. name: "Stellar",
  65395. height: math.unit(0.79 * 19e6, "km")
  65396. },
  65397. {
  65398. name: "Solar",
  65399. height: math.unit(0.79 * 40, "AU")
  65400. },
  65401. {
  65402. name: "Intersteller",
  65403. height: math.unit(0.79 * 3, "lightyears")
  65404. },
  65405. {
  65406. name: "Star Cluster",
  65407. height: math.unit(0.79 * 80, "lightyears")
  65408. },
  65409. {
  65410. name: "Ecumenical",
  65411. height: math.unit(0.79 * 2e3, "lightyears")
  65412. },
  65413. {
  65414. name: "Galactic",
  65415. height: math.unit(0.79 * 175000, "lightyears")
  65416. },
  65417. {
  65418. name: "Galaxy Cluster",
  65419. height: math.unit(0.79 * 25e6, "lightyears")
  65420. },
  65421. ]
  65422. ))
  65423. characterMakers.push(() => makeCharacter(
  65424. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65425. {
  65426. front: {
  65427. height: math.unit(6 + 2/12, "feet"),
  65428. weight: math.unit(160, "lb"),
  65429. name: "Front",
  65430. image: {
  65431. source: "./media/characters/yana-amelin/front.svg",
  65432. extra: 1413/1295,
  65433. bottom: 42/1455
  65434. }
  65435. },
  65436. back: {
  65437. height: math.unit(6 + 2/12, "feet"),
  65438. weight: math.unit(160, "lb"),
  65439. name: "Back",
  65440. image: {
  65441. source: "./media/characters/yana-amelin/back.svg",
  65442. extra: 1424/1310,
  65443. bottom: 24/1448
  65444. }
  65445. },
  65446. paws: {
  65447. height: math.unit(1.48, "feet"),
  65448. name: "Paws",
  65449. image: {
  65450. source: "./media/characters/yana-amelin/paws.svg",
  65451. extra: 304/304,
  65452. bottom: 49/353
  65453. }
  65454. },
  65455. },
  65456. [
  65457. {
  65458. name: "Micro",
  65459. height: math.unit(4, "inches")
  65460. },
  65461. {
  65462. name: "Normal",
  65463. height: math.unit(6 + 2/12, "feet"),
  65464. default: true
  65465. },
  65466. {
  65467. name: "Minimacro",
  65468. height: math.unit(20, "feet")
  65469. },
  65470. {
  65471. name: "Macro",
  65472. height: math.unit(70, "feet")
  65473. },
  65474. ]
  65475. ))
  65476. characterMakers.push(() => makeCharacter(
  65477. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65478. {
  65479. frontNsfw: {
  65480. height: math.unit(2.48, "meters"),
  65481. weight: math.unit(112, "kg"),
  65482. name: "Front (NSFW)",
  65483. image: {
  65484. source: "./media/characters/titania/front-nsfw.svg",
  65485. extra: 1302/1232,
  65486. bottom: 90/1392
  65487. }
  65488. },
  65489. backNsfw: {
  65490. height: math.unit(2.48, "meters"),
  65491. weight: math.unit(112, "kg"),
  65492. name: "Back (NSFW)",
  65493. image: {
  65494. source: "./media/characters/titania/back-nsfw.svg",
  65495. extra: 1355/1288,
  65496. bottom: 18/1373
  65497. }
  65498. },
  65499. frontSfw: {
  65500. height: math.unit(2.48, "meters"),
  65501. weight: math.unit(112, "kg"),
  65502. name: "Front (SFW)",
  65503. image: {
  65504. source: "./media/characters/titania/front-sfw.svg",
  65505. extra: 1302/1232,
  65506. bottom: 90/1392
  65507. }
  65508. },
  65509. backSfw: {
  65510. height: math.unit(2.48, "meters"),
  65511. weight: math.unit(112, "kg"),
  65512. name: "Back (SFW)",
  65513. image: {
  65514. source: "./media/characters/titania/back-sfw.svg",
  65515. extra: 1355/1288,
  65516. bottom: 18/1373
  65517. }
  65518. },
  65519. head: {
  65520. height: math.unit(2.06, "feet"),
  65521. name: "Head",
  65522. image: {
  65523. source: "./media/characters/titania/head.svg"
  65524. }
  65525. },
  65526. maw: {
  65527. height: math.unit(0.8, "feet"),
  65528. name: "Maw",
  65529. image: {
  65530. source: "./media/characters/titania/maw.svg"
  65531. }
  65532. },
  65533. foot: {
  65534. height: math.unit(1.65, "feet"),
  65535. name: "Foot",
  65536. image: {
  65537. source: "./media/characters/titania/foot.svg"
  65538. }
  65539. },
  65540. nethers: {
  65541. height: math.unit(1.7, "feet"),
  65542. name: "Nethers",
  65543. image: {
  65544. source: "./media/characters/titania/nethers.svg"
  65545. }
  65546. },
  65547. },
  65548. [
  65549. {
  65550. name: "Normal",
  65551. height: math.unit(2.48, "meters"),
  65552. default: true
  65553. },
  65554. {
  65555. name: "Mini Macro",
  65556. height: math.unit(248, "meters")
  65557. },
  65558. {
  65559. name: "Macro",
  65560. height: math.unit(620, "meters")
  65561. },
  65562. {
  65563. name: "Mega Macro",
  65564. height: math.unit(1860, "meters")
  65565. },
  65566. ]
  65567. ))
  65568. characterMakers.push(() => makeCharacter(
  65569. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65570. {
  65571. front: {
  65572. height: math.unit(5 + 9/12, "feet"),
  65573. weight: math.unit(1500, "lb"),
  65574. name: "Front",
  65575. image: {
  65576. source: "./media/characters/tony-gray/front.svg",
  65577. extra: 700/575,
  65578. bottom: 71/771
  65579. }
  65580. },
  65581. },
  65582. [
  65583. {
  65584. name: "Normal",
  65585. height: math.unit(5 + 9/12, "feet"),
  65586. default: true
  65587. },
  65588. ]
  65589. ))
  65590. characterMakers.push(() => makeCharacter(
  65591. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65592. {
  65593. side: {
  65594. height: math.unit(8 + 2/12, "feet"),
  65595. name: "Side",
  65596. image: {
  65597. source: "./media/characters/kelby/side.svg",
  65598. extra: 804/578,
  65599. bottom: 70/874
  65600. },
  65601. form: "regular",
  65602. default: true
  65603. },
  65604. lounging: {
  65605. height: math.unit(12.41, "feet"),
  65606. name: "Lounging",
  65607. image: {
  65608. source: "./media/characters/kelby/lounging.svg"
  65609. },
  65610. form: "regular"
  65611. },
  65612. maw: {
  65613. height: math.unit(5, "feet"),
  65614. name: "Maw",
  65615. image: {
  65616. source: "./media/characters/kelby/maw.svg"
  65617. },
  65618. form: "regular"
  65619. },
  65620. dick: {
  65621. height: math.unit(2.4, "feet"),
  65622. name: "Dick",
  65623. image: {
  65624. source: "./media/characters/kelby/dick.svg"
  65625. },
  65626. form: "regular"
  65627. },
  65628. slit: {
  65629. height: math.unit(1.2, "feet"),
  65630. name: "Slit",
  65631. image: {
  65632. source: "./media/characters/kelby/slit.svg"
  65633. },
  65634. form: "regular"
  65635. },
  65636. chibi: {
  65637. height: math.unit(5, "feet"),
  65638. name: "Chibi",
  65639. image: {
  65640. source: "./media/characters/kelby/chibi.svg",
  65641. extra: 245/200,
  65642. bottom: 43/288
  65643. },
  65644. form: "chibi",
  65645. default: true
  65646. },
  65647. },
  65648. [
  65649. {
  65650. name: "Normal",
  65651. height: math.unit(8 + 2/12, "feet"),
  65652. default: true,
  65653. form: "regular"
  65654. },
  65655. {
  65656. name: "Normal",
  65657. height: math.unit(5, "feet"),
  65658. default: true,
  65659. form: "chibi"
  65660. },
  65661. ],
  65662. {
  65663. "regular": {
  65664. name: "Regular",
  65665. default: true
  65666. },
  65667. "chibi": {
  65668. name: "Chibi",
  65669. },
  65670. }
  65671. ))
  65672. characterMakers.push(() => makeCharacter(
  65673. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65674. {
  65675. front: {
  65676. height: math.unit(7 + 10/12, "feet"),
  65677. weight: math.unit(300, "lb"),
  65678. name: "Front",
  65679. image: {
  65680. source: "./media/characters/elisa-mitchell/front.svg",
  65681. extra: 2562/2355,
  65682. bottom: 62/2624
  65683. }
  65684. },
  65685. maw: {
  65686. height: math.unit(2.37, "feet"),
  65687. name: "Maw",
  65688. image: {
  65689. source: "./media/characters/elisa-mitchell/maw.svg"
  65690. }
  65691. },
  65692. },
  65693. [
  65694. {
  65695. name: "Normal",
  65696. height: math.unit(7 + 10/12, "feet"),
  65697. default: true
  65698. },
  65699. {
  65700. name: "Macro",
  65701. height: math.unit(1490, "feet"),
  65702. default: true
  65703. },
  65704. ]
  65705. ))
  65706. characterMakers.push(() => makeCharacter(
  65707. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65708. {
  65709. front: {
  65710. height: math.unit(122, "cm"),
  65711. weight: math.unit(40, "lb"),
  65712. name: "Front",
  65713. image: {
  65714. source: "./media/characters/camia-vertigo-zott/front.svg",
  65715. extra: 2112/1902,
  65716. bottom: 21/2133
  65717. }
  65718. },
  65719. },
  65720. [
  65721. {
  65722. name: "Base Height",
  65723. height: math.unit(122, "cm")
  65724. },
  65725. {
  65726. name: "Macro Height",
  65727. height: math.unit(345, "meters"),
  65728. default: true
  65729. },
  65730. ]
  65731. ))
  65732. characterMakers.push(() => makeCharacter(
  65733. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65734. {
  65735. front: {
  65736. height: math.unit(6 + 3/12, "feet"),
  65737. weight: math.unit(180, "lb"),
  65738. name: "Front",
  65739. image: {
  65740. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65741. extra: 2580/2457,
  65742. bottom: 131/2711
  65743. }
  65744. },
  65745. },
  65746. [
  65747. {
  65748. name: "Normal",
  65749. height: math.unit(6 + 3/12, "feet"),
  65750. default: true
  65751. },
  65752. ]
  65753. ))
  65754. characterMakers.push(() => makeCharacter(
  65755. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65756. {
  65757. front: {
  65758. height: math.unit(165, "cm"),
  65759. weight: math.unit(130, "lb"),
  65760. name: "Front",
  65761. image: {
  65762. source: "./media/characters/sleeka/front.svg",
  65763. extra: 1252/1200,
  65764. bottom: 46/1298
  65765. }
  65766. },
  65767. },
  65768. [
  65769. {
  65770. name: "Normal",
  65771. height: math.unit(165, "cm")
  65772. },
  65773. {
  65774. name: "Galactic",
  65775. height: math.unit(5.8e22, "meters"),
  65776. default: true
  65777. },
  65778. {
  65779. name: "Universal",
  65780. height: math.unit(1.02e29, "meters")
  65781. },
  65782. ]
  65783. ))
  65784. characterMakers.push(() => makeCharacter(
  65785. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65786. {
  65787. front: {
  65788. height: math.unit(5 + 11/12, "feet"),
  65789. weight: math.unit(145, "lb"),
  65790. name: "Front",
  65791. image: {
  65792. source: "./media/characters/emily-whitetail/front.svg",
  65793. extra: 2510/2280,
  65794. bottom: 128/2638
  65795. }
  65796. },
  65797. },
  65798. [
  65799. {
  65800. name: "Normal",
  65801. height: math.unit(5 + 11/12, "feet")
  65802. },
  65803. {
  65804. name: "Galactic",
  65805. height: math.unit(6.3e22, "meters"),
  65806. default: true
  65807. },
  65808. {
  65809. name: "Universal",
  65810. height: math.unit(1.12e29, "meters")
  65811. },
  65812. ]
  65813. ))
  65814. characterMakers.push(() => makeCharacter(
  65815. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65816. {
  65817. front: {
  65818. height: math.unit(5 + 4/12, "feet"),
  65819. weight: math.unit(110, "lb"),
  65820. name: "Front",
  65821. image: {
  65822. source: "./media/characters/buck-whitetail/front.svg",
  65823. extra: 2430/2186,
  65824. bottom: 125/2555
  65825. }
  65826. },
  65827. },
  65828. [
  65829. {
  65830. name: "Normal",
  65831. height: math.unit(5 + 4/12, "feet")
  65832. },
  65833. {
  65834. name: "Galactic",
  65835. height: math.unit(5.4e22, "meters"),
  65836. default: true
  65837. },
  65838. {
  65839. name: "Universal",
  65840. height: math.unit(9.6e28, "meters")
  65841. },
  65842. ]
  65843. ))
  65844. characterMakers.push(() => makeCharacter(
  65845. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65846. {
  65847. front: {
  65848. height: math.unit(5 + 3/12, "feet"),
  65849. name: "Front",
  65850. image: {
  65851. source: "./media/characters/zoey-frisk/front.svg",
  65852. extra: 2825/2646,
  65853. bottom: 57/2882
  65854. }
  65855. },
  65856. },
  65857. [
  65858. {
  65859. name: "Normal",
  65860. height: math.unit(5 + 3/12, "feet"),
  65861. default: true
  65862. },
  65863. {
  65864. name: "Macro",
  65865. height: math.unit(800, "feet")
  65866. },
  65867. ]
  65868. ))
  65869. characterMakers.push(() => makeCharacter(
  65870. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65871. {
  65872. front: {
  65873. height: math.unit(210, "cm"),
  65874. weight: math.unit(102, "kg"),
  65875. name: "Front",
  65876. image: {
  65877. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65878. extra: 831/790,
  65879. bottom: 19/850
  65880. }
  65881. },
  65882. },
  65883. [
  65884. {
  65885. name: "Micro",
  65886. height: math.unit(1, "mm")
  65887. },
  65888. {
  65889. name: "Small",
  65890. height: math.unit(1, "cm")
  65891. },
  65892. {
  65893. name: "Short",
  65894. height: math.unit(1, "foot")
  65895. },
  65896. {
  65897. name: "Normal",
  65898. height: math.unit(210, "cm"),
  65899. default: true
  65900. },
  65901. {
  65902. name: "Big",
  65903. height: math.unit(15, "feet")
  65904. },
  65905. {
  65906. name: "Macro",
  65907. height: math.unit(50, "feet")
  65908. },
  65909. ]
  65910. ))
  65911. characterMakers.push(() => makeCharacter(
  65912. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65913. {
  65914. front: {
  65915. height: math.unit(80, "feet"),
  65916. weight: math.unit(410000, "lb"),
  65917. name: "Front",
  65918. image: {
  65919. source: "./media/characters/trouble/front.svg",
  65920. extra: 780/723,
  65921. bottom: 11/791
  65922. },
  65923. extraAttributes: {
  65924. "pawArea": {
  65925. name: "Paw Area",
  65926. power: 2,
  65927. type: "area",
  65928. base: math.unit(49, "feet^2")
  65929. },
  65930. }
  65931. },
  65932. },
  65933. [
  65934. {
  65935. name: "Normal",
  65936. height: math.unit(80, "feet"),
  65937. default: true
  65938. },
  65939. ]
  65940. ))
  65941. characterMakers.push(() => makeCharacter(
  65942. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65943. {
  65944. front: {
  65945. height: math.unit(5 + 7/12, "feet"),
  65946. weight: math.unit(140, "lb"),
  65947. name: "Front",
  65948. image: {
  65949. source: "./media/characters/bastion-aralus/front.svg",
  65950. extra: 1122/1045,
  65951. bottom: 24/1146
  65952. }
  65953. },
  65954. back: {
  65955. height: math.unit(5 + 7/12, "feet"),
  65956. weight: math.unit(140, "lb"),
  65957. name: "Back",
  65958. image: {
  65959. source: "./media/characters/bastion-aralus/back.svg",
  65960. extra: 1158/1078,
  65961. bottom: 39/1197
  65962. }
  65963. },
  65964. dick: {
  65965. height: math.unit(1.16, "feet"),
  65966. name: "Dick",
  65967. image: {
  65968. source: "./media/characters/bastion-aralus/dick.svg"
  65969. }
  65970. },
  65971. },
  65972. [
  65973. {
  65974. name: "Micro",
  65975. height: math.unit(1, "mm")
  65976. },
  65977. {
  65978. name: "Normal",
  65979. height: math.unit(5 + 7/12, "feet"),
  65980. default: true
  65981. },
  65982. {
  65983. name: "Macro",
  65984. height: math.unit(57, "feet")
  65985. },
  65986. ]
  65987. ))
  65988. characterMakers.push(() => makeCharacter(
  65989. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65990. {
  65991. sona_front: {
  65992. height: math.unit(6, "feet"),
  65993. weight: math.unit(350, "lb"),
  65994. name: "Front",
  65995. image: {
  65996. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65997. extra: 1099/1005,
  65998. bottom: 22/1121
  65999. },
  66000. form: "sona",
  66001. default: true
  66002. },
  66003. sona_side: {
  66004. height: math.unit(6, "feet"),
  66005. weight: math.unit(350, "lb"),
  66006. name: "Side",
  66007. image: {
  66008. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66009. extra: 1075/1017,
  66010. bottom: 20/1095
  66011. },
  66012. form: "sona",
  66013. },
  66014. character_front: {
  66015. height: math.unit(6, "feet"),
  66016. weight: math.unit(300, "lb"),
  66017. name: "Front",
  66018. image: {
  66019. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66020. extra: 1099/1005,
  66021. bottom: 22/1121
  66022. },
  66023. form: "character",
  66024. default: true
  66025. },
  66026. character_side: {
  66027. height: math.unit(6, "feet"),
  66028. weight: math.unit(300, "lb"),
  66029. name: "Side",
  66030. image: {
  66031. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66032. extra: 1075/1017,
  66033. bottom: 20/1095
  66034. },
  66035. form: "character",
  66036. },
  66037. },
  66038. [
  66039. {
  66040. name: "Normal",
  66041. height: math.unit(500, "feet"),
  66042. default: true,
  66043. form: "sona"
  66044. },
  66045. {
  66046. name: "Normal",
  66047. height: math.unit(50, "feet"),
  66048. default: true,
  66049. form: "character"
  66050. },
  66051. ],
  66052. {
  66053. "sona": {
  66054. name: "Sona",
  66055. default: true
  66056. },
  66057. "character": {
  66058. name: "Character",
  66059. },
  66060. }
  66061. ))
  66062. characterMakers.push(() => makeCharacter(
  66063. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66064. {
  66065. front: {
  66066. height: math.unit(5 + 4/12, "feet"),
  66067. weight: math.unit(58, "kg"),
  66068. name: "Front",
  66069. image: {
  66070. source: "./media/characters/hood/front.svg",
  66071. extra: 1474/1309,
  66072. bottom: 0/1474
  66073. }
  66074. },
  66075. },
  66076. [
  66077. {
  66078. name: "Normal",
  66079. height: math.unit(5 + 4/12, "feet"),
  66080. default: true
  66081. },
  66082. ]
  66083. ))
  66084. characterMakers.push(() => makeCharacter(
  66085. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66086. {
  66087. front: {
  66088. height: math.unit(8 + 2/12, "feet"),
  66089. name: "Front",
  66090. image: {
  66091. source: "./media/characters/rena/front.svg",
  66092. extra: 1768/1632,
  66093. bottom: 57/1825
  66094. }
  66095. },
  66096. },
  66097. [
  66098. {
  66099. name: "Normal",
  66100. height: math.unit(8 + 2/12, "feet"),
  66101. default: true
  66102. },
  66103. ]
  66104. ))
  66105. characterMakers.push(() => makeCharacter(
  66106. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66107. {
  66108. front: {
  66109. height: math.unit(5 + 3/12, "feet"),
  66110. name: "Front",
  66111. image: {
  66112. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66113. extra: 1209/1159,
  66114. bottom: 33/1242
  66115. }
  66116. },
  66117. maw: {
  66118. height: math.unit(1.75, "feet"),
  66119. name: "Maw",
  66120. image: {
  66121. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66122. }
  66123. },
  66124. },
  66125. [
  66126. {
  66127. name: "Micro",
  66128. height: math.unit(3, "inches")
  66129. },
  66130. {
  66131. name: "Regular",
  66132. height: math.unit(5 + 3/12, "feet"),
  66133. default: true
  66134. },
  66135. {
  66136. name: "Imagined",
  66137. height: math.unit(90, "meters")
  66138. },
  66139. ]
  66140. ))
  66141. characterMakers.push(() => makeCharacter(
  66142. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66143. {
  66144. front: {
  66145. height: math.unit(11.75, "feet"),
  66146. weight: math.unit(4346, "lb"),
  66147. preyCapacity: math.unit(20, "people"),
  66148. name: "Front",
  66149. image: {
  66150. source: "./media/characters/suma-roo/front.svg",
  66151. extra: 1370/1365,
  66152. bottom: 164/1534
  66153. }
  66154. },
  66155. },
  66156. [
  66157. {
  66158. name: "Normal",
  66159. height: math.unit(11.75, "feet"),
  66160. default: true
  66161. },
  66162. ]
  66163. ))
  66164. characterMakers.push(() => makeCharacter(
  66165. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66166. {
  66167. front: {
  66168. height: math.unit(2.35, "meters"),
  66169. weight: math.unit(240, "kg"),
  66170. name: "Front",
  66171. image: {
  66172. source: "./media/characters/hymmanios/front.svg",
  66173. extra: 2032/1994,
  66174. bottom: 194/2226
  66175. }
  66176. },
  66177. },
  66178. [
  66179. {
  66180. name: "Normal",
  66181. height: math.unit(2.35, "meters"),
  66182. default: true
  66183. },
  66184. {
  66185. name: "Macro",
  66186. height: math.unit(75, "meters")
  66187. },
  66188. {
  66189. name: "Mega",
  66190. height: math.unit(1250, "meters")
  66191. },
  66192. {
  66193. name: "Giga",
  66194. height: math.unit(235000, "meters")
  66195. },
  66196. ]
  66197. ))
  66198. characterMakers.push(() => makeCharacter(
  66199. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66200. {
  66201. front: {
  66202. height: math.unit(134, "feet"),
  66203. weight: math.unit(932.635, "tons"),
  66204. name: "Front",
  66205. image: {
  66206. source: "./media/characters/azalea/front.svg",
  66207. extra: 703/687,
  66208. bottom: 75/778
  66209. }
  66210. },
  66211. },
  66212. [
  66213. {
  66214. name: "Normal",
  66215. height: math.unit(134, "feet"),
  66216. default: true
  66217. },
  66218. ]
  66219. ))
  66220. characterMakers.push(() => makeCharacter(
  66221. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66222. {
  66223. front: {
  66224. height: math.unit(6.4, "feet"),
  66225. weight: math.unit(167.5, "lb"),
  66226. name: "Front",
  66227. image: {
  66228. source: "./media/characters/lizzy/front.svg",
  66229. extra: 1916/1791,
  66230. bottom: 103/2019
  66231. }
  66232. },
  66233. back: {
  66234. height: math.unit(6.4, "feet"),
  66235. weight: math.unit(167.5, "lb"),
  66236. name: "Back",
  66237. image: {
  66238. source: "./media/characters/lizzy/back.svg",
  66239. extra: 1995/1856,
  66240. bottom: 11/2006
  66241. }
  66242. },
  66243. },
  66244. [
  66245. {
  66246. name: "Normal",
  66247. height: math.unit(6.4, "feet"),
  66248. default: true
  66249. },
  66250. ]
  66251. ))
  66252. characterMakers.push(() => makeCharacter(
  66253. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66254. {
  66255. front: {
  66256. height: math.unit(66, "inches"),
  66257. name: "Front",
  66258. image: {
  66259. source: "./media/characters/sasha/front.svg",
  66260. extra: 620/571,
  66261. bottom: 33/653
  66262. }
  66263. },
  66264. back: {
  66265. height: math.unit(66, "inches"),
  66266. name: "Back",
  66267. image: {
  66268. source: "./media/characters/sasha/back.svg",
  66269. extra: 615/564,
  66270. bottom: 38/653
  66271. }
  66272. },
  66273. },
  66274. [
  66275. {
  66276. name: "IRL",
  66277. height: math.unit(2, "inches")
  66278. },
  66279. {
  66280. name: "Normal",
  66281. height: math.unit(66, "inches"),
  66282. default: true
  66283. },
  66284. {
  66285. name: "Macro",
  66286. height: math.unit(400, "feet")
  66287. },
  66288. {
  66289. name: "Mega Macro",
  66290. height: math.unit(500000, "feet")
  66291. },
  66292. {
  66293. name: "Giga Macro",
  66294. height: math.unit(50000, "miles")
  66295. },
  66296. ]
  66297. ))
  66298. characterMakers.push(() => makeCharacter(
  66299. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66300. {
  66301. front: {
  66302. height: math.unit(52, "inches"),
  66303. name: "Front",
  66304. image: {
  66305. source: "./media/characters/autumn-avali/front.svg",
  66306. extra: 1031/908,
  66307. bottom: 38/1069
  66308. }
  66309. },
  66310. back: {
  66311. height: math.unit(52, "inches"),
  66312. name: "Back",
  66313. image: {
  66314. source: "./media/characters/autumn-avali/back.svg",
  66315. extra: 1047/923,
  66316. bottom: 11/1058
  66317. }
  66318. },
  66319. maw: {
  66320. height: math.unit(0.59, "feet"),
  66321. name: "Maw",
  66322. image: {
  66323. source: "./media/characters/autumn-avali/maw.svg"
  66324. }
  66325. },
  66326. },
  66327. [
  66328. {
  66329. name: "Normal",
  66330. height: math.unit(52, "inches"),
  66331. default: true
  66332. },
  66333. {
  66334. name: "Big'vali",
  66335. height: math.unit(3.5, "meters")
  66336. },
  66337. {
  66338. name: "Macro",
  66339. height: math.unit(35, "meters")
  66340. },
  66341. {
  66342. name: "Macro+",
  66343. height: math.unit(165, "meters")
  66344. },
  66345. {
  66346. name: "Megamacro",
  66347. height: math.unit(8250, "meters")
  66348. },
  66349. {
  66350. name: "Megamacro+",
  66351. height: math.unit(88000, "meters")
  66352. },
  66353. {
  66354. name: "Gigamacro",
  66355. height: math.unit(1.32, "megameters")
  66356. },
  66357. {
  66358. name: "Planet Cracker",
  66359. height: math.unit(77, "megameters")
  66360. },
  66361. ]
  66362. ))
  66363. characterMakers.push(() => makeCharacter(
  66364. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66365. {
  66366. front: {
  66367. height: math.unit(200, "feet"),
  66368. name: "Front",
  66369. image: {
  66370. source: "./media/characters/sophie/front.svg",
  66371. extra: 710/680,
  66372. bottom: 3/713
  66373. },
  66374. extraAttributes: {
  66375. "milkProduction": {
  66376. name: "Milk Production",
  66377. power: 3,
  66378. type: "volume",
  66379. base: math.unit(27000, "liters")
  66380. },
  66381. }
  66382. },
  66383. },
  66384. [
  66385. {
  66386. name: "Normal",
  66387. height: math.unit(200, "feet"),
  66388. default: true
  66389. },
  66390. ]
  66391. ))
  66392. characterMakers.push(() => makeCharacter(
  66393. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66394. {
  66395. front: {
  66396. height: math.unit(23, "feet"),
  66397. name: "Front",
  66398. image: {
  66399. source: "./media/characters/adelaide-spireborn/front.svg",
  66400. extra: 671/625,
  66401. bottom: 18/689
  66402. }
  66403. },
  66404. maw: {
  66405. height: math.unit(7.8, "feet"),
  66406. name: "Maw",
  66407. image: {
  66408. source: "./media/characters/adelaide-spireborn/maw.svg"
  66409. }
  66410. },
  66411. sword: {
  66412. height: math.unit(13.4, "feet"),
  66413. name: "Sword",
  66414. image: {
  66415. source: "./media/characters/adelaide-spireborn/sword.svg"
  66416. }
  66417. },
  66418. },
  66419. [
  66420. {
  66421. name: "Magically Induced",
  66422. height: math.unit(8.5, "feet")
  66423. },
  66424. {
  66425. name: "Normal",
  66426. height: math.unit(23, "feet"),
  66427. default: true
  66428. },
  66429. ]
  66430. ))
  66431. characterMakers.push(() => makeCharacter(
  66432. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66433. {
  66434. side: {
  66435. height: math.unit(8, "feet"),
  66436. name: "Side",
  66437. image: {
  66438. source: "./media/characters/artemus/side.svg",
  66439. extra: 800/397,
  66440. bottom: 83/883
  66441. }
  66442. },
  66443. front: {
  66444. height: math.unit(8, "feet"),
  66445. name: "Front",
  66446. image: {
  66447. source: "./media/characters/artemus/front.svg",
  66448. extra: 763/348,
  66449. bottom: 89/852
  66450. }
  66451. },
  66452. maw: {
  66453. height: math.unit(5.63, "feet"),
  66454. name: "Maw",
  66455. image: {
  66456. source: "./media/characters/artemus/maw.svg"
  66457. }
  66458. },
  66459. forepaw: {
  66460. height: math.unit(3.13, "feet"),
  66461. name: "Forepaw",
  66462. image: {
  66463. source: "./media/characters/artemus/forepaw.svg"
  66464. }
  66465. },
  66466. hindpaw: {
  66467. height: math.unit(4.85, "feet"),
  66468. name: "Hindpaw",
  66469. image: {
  66470. source: "./media/characters/artemus/hindpaw.svg"
  66471. }
  66472. },
  66473. },
  66474. [
  66475. {
  66476. name: "Normal",
  66477. height: math.unit(8, "feet"),
  66478. default: true
  66479. },
  66480. ]
  66481. ))
  66482. characterMakers.push(() => makeCharacter(
  66483. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66484. {
  66485. front: {
  66486. height: math.unit(4, "feet"),
  66487. name: "Front",
  66488. image: {
  66489. source: "./media/characters/flynn/front.svg",
  66490. extra: 427/404,
  66491. bottom: 14/441
  66492. },
  66493. extraAttributes: {
  66494. "tailLength": {
  66495. name: "Tail Length",
  66496. power: 1,
  66497. type: "length",
  66498. base: math.unit(2.7, "feet")
  66499. },
  66500. }
  66501. },
  66502. frontNsfw: {
  66503. height: math.unit(4, "feet"),
  66504. name: "Front NSFW",
  66505. image: {
  66506. source: "./media/characters/flynn/front-nsfw.svg",
  66507. extra: 427/404,
  66508. bottom: 14/441
  66509. },
  66510. extraAttributes: {
  66511. "tailLength": {
  66512. name: "Tail Length",
  66513. power: 1,
  66514. type: "length",
  66515. base: math.unit(2.7, "feet")
  66516. },
  66517. "dickLength": {
  66518. name: "Dick Length",
  66519. power: 1,
  66520. type: "length",
  66521. base: math.unit(0.7, "feet")
  66522. },
  66523. }
  66524. },
  66525. back: {
  66526. height: math.unit(4, "feet"),
  66527. name: "Back",
  66528. image: {
  66529. source: "./media/characters/flynn/back.svg",
  66530. extra: 420/400,
  66531. bottom: 12/432
  66532. },
  66533. extraAttributes: {
  66534. "tailLength": {
  66535. name: "Tail Length",
  66536. power: 1,
  66537. type: "length",
  66538. base: math.unit(2.7, "feet")
  66539. },
  66540. }
  66541. },
  66542. },
  66543. [
  66544. {
  66545. name: "Normal",
  66546. height: math.unit(4, "feet"),
  66547. default: true
  66548. },
  66549. ]
  66550. ))
  66551. characterMakers.push(() => makeCharacter(
  66552. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66553. {
  66554. frontSfw: {
  66555. height: math.unit(1.9, "meters"),
  66556. name: "Front (SFW)",
  66557. image: {
  66558. source: "./media/characters/orun/front-sfw.svg",
  66559. extra: 1684/1625,
  66560. bottom: 64/1748
  66561. }
  66562. },
  66563. frontNsfw: {
  66564. height: math.unit(1.9, "meters"),
  66565. name: "Front (NSFW)",
  66566. image: {
  66567. source: "./media/characters/orun/front-nsfw.svg",
  66568. extra: 1684/1625,
  66569. bottom: 64/1748
  66570. }
  66571. },
  66572. frontErect: {
  66573. height: math.unit(1.9, "meters"),
  66574. name: "Front (Erect)",
  66575. image: {
  66576. source: "./media/characters/orun/front-erect.svg",
  66577. extra: 1684/1625,
  66578. bottom: 64/1748
  66579. }
  66580. },
  66581. },
  66582. [
  66583. {
  66584. name: "Normal",
  66585. height: math.unit(1.9, "meters"),
  66586. default: true
  66587. },
  66588. {
  66589. name: "Giant",
  66590. height: math.unit(45, "meters")
  66591. },
  66592. {
  66593. name: "Bigger Giant",
  66594. height: math.unit(155, "meters")
  66595. },
  66596. {
  66597. name: "Macro",
  66598. height: math.unit(550, "meters")
  66599. },
  66600. {
  66601. name: "Bigger Macro",
  66602. height: math.unit(1050, "meters")
  66603. },
  66604. {
  66605. name: "Titan",
  66606. height: math.unit(5, "km")
  66607. },
  66608. {
  66609. name: "Bigger Titan",
  66610. height: math.unit(15, "km")
  66611. },
  66612. ]
  66613. ))
  66614. characterMakers.push(() => makeCharacter(
  66615. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66616. {
  66617. clothed: {
  66618. height: math.unit(5 + 6/12, "feet"),
  66619. name: "Clothed",
  66620. image: {
  66621. source: "./media/characters/catherine-busch/clothed.svg",
  66622. extra: 1330/1273,
  66623. bottom: 45/1375
  66624. }
  66625. },
  66626. nude: {
  66627. height: math.unit(5 + 6/12, "feet"),
  66628. name: "Nude",
  66629. image: {
  66630. source: "./media/characters/catherine-busch/nude.svg",
  66631. extra: 1330/1273,
  66632. bottom: 45/1375
  66633. }
  66634. },
  66635. },
  66636. [
  66637. {
  66638. name: "Normal",
  66639. height: math.unit(5 + 6/12, "feet"),
  66640. default: true
  66641. },
  66642. {
  66643. name: "Maximum",
  66644. height: math.unit(1644, "feet")
  66645. },
  66646. ]
  66647. ))
  66648. characterMakers.push(() => makeCharacter(
  66649. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66650. {
  66651. front: {
  66652. height: math.unit(5 + 4/12, "feet"),
  66653. weight: math.unit(160, "lb"),
  66654. name: "Front",
  66655. image: {
  66656. source: "./media/characters/carter/front.svg",
  66657. extra: 1007/940,
  66658. bottom: 37/1044
  66659. }
  66660. },
  66661. back: {
  66662. height: math.unit(5 + 4/12, "feet"),
  66663. weight: math.unit(160, "lb"),
  66664. name: "Back",
  66665. image: {
  66666. source: "./media/characters/carter/back.svg",
  66667. extra: 1010/941,
  66668. bottom: 25/1035
  66669. }
  66670. },
  66671. frontErect: {
  66672. height: math.unit(5 + 4/12, "feet"),
  66673. weight: math.unit(160, "lb"),
  66674. name: "Front (Erect)",
  66675. image: {
  66676. source: "./media/characters/carter/front-erect.svg",
  66677. extra: 1015/948,
  66678. bottom: 33/1048
  66679. }
  66680. },
  66681. },
  66682. [
  66683. {
  66684. name: "Normal",
  66685. height: math.unit(5 + 4/12, "feet"),
  66686. default: true
  66687. },
  66688. ]
  66689. ))
  66690. characterMakers.push(() => makeCharacter(
  66691. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66692. {
  66693. front: {
  66694. height: math.unit(90, "feet"),
  66695. name: "Front",
  66696. image: {
  66697. source: "./media/characters/yula/front.svg",
  66698. extra: 686/641,
  66699. bottom: 5/691
  66700. }
  66701. },
  66702. },
  66703. [
  66704. {
  66705. name: "Normal",
  66706. height: math.unit(90, "feet"),
  66707. default: true
  66708. },
  66709. ]
  66710. ))
  66711. characterMakers.push(() => makeCharacter(
  66712. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66713. {
  66714. front: {
  66715. height: math.unit(2.16, "meters"),
  66716. weight: math.unit(275, "kg"),
  66717. name: "Front",
  66718. image: {
  66719. source: "./media/characters/thomas-bakes/front.svg",
  66720. extra: 333/283,
  66721. bottom: 46/379
  66722. },
  66723. extraAttributes: {
  66724. "pawLength": {
  66725. name: "Paw Length",
  66726. power: 1,
  66727. type: "length",
  66728. base: math.unit(35, "cm")
  66729. },
  66730. "pawWidth": {
  66731. name: "Paw Width",
  66732. power: 1,
  66733. type: "length",
  66734. base: math.unit(30, "cm")
  66735. },
  66736. "handLength": {
  66737. name: "Hand Length",
  66738. power: 1,
  66739. type: "length",
  66740. base: math.unit(30, "cm")
  66741. },
  66742. "handWidth": {
  66743. name: "Hand Width",
  66744. power: 1,
  66745. type: "length",
  66746. base: math.unit(25, "cm")
  66747. },
  66748. "preyCapacity": {
  66749. name: "Prey Capacity",
  66750. power: 3,
  66751. type: "volume",
  66752. base: math.unit(40*20*20, "cm^3")
  66753. },
  66754. "swallowSize": {
  66755. name: "Swallow Size",
  66756. power: 1,
  66757. type: "length",
  66758. base: math.unit(13, "cm")
  66759. },
  66760. "energyIntake": {
  66761. name: "Food Intake",
  66762. power: 3,
  66763. type: "energy",
  66764. base: math.unit(3250, "kcal")
  66765. },
  66766. "wingspan": {
  66767. name: "Wingspan",
  66768. power: 1,
  66769. type: "length",
  66770. base: math.unit(3.7, "meters")
  66771. },
  66772. "wingWidth": {
  66773. name: "Wing Width",
  66774. power: 1,
  66775. type: "length",
  66776. base: math.unit(1.7, "meters")
  66777. },
  66778. }
  66779. },
  66780. },
  66781. [
  66782. {
  66783. name: "Normal",
  66784. height: math.unit(2.16, "meters"),
  66785. default: true
  66786. },
  66787. ]
  66788. ))
  66789. characterMakers.push(() => makeCharacter(
  66790. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66791. {
  66792. front: {
  66793. height: math.unit(8 + 6/12, "feet"),
  66794. weight: math.unit(600, "lb"),
  66795. name: "Front",
  66796. image: {
  66797. source: "./media/characters/rekka/front.svg",
  66798. extra: 1814/1672,
  66799. bottom: 92/1906
  66800. }
  66801. },
  66802. back: {
  66803. height: math.unit(8 + 6/12, "feet"),
  66804. weight: math.unit(600, "lb"),
  66805. name: "Back",
  66806. image: {
  66807. source: "./media/characters/rekka/back.svg",
  66808. extra: 1795/1682,
  66809. bottom: 86/1881
  66810. }
  66811. },
  66812. },
  66813. [
  66814. {
  66815. name: "Normal",
  66816. height: math.unit(8 + 6/12, "feet"),
  66817. default: true
  66818. },
  66819. {
  66820. name: "Category 1",
  66821. height: math.unit(30, "feet")
  66822. },
  66823. {
  66824. name: "Category 2",
  66825. height: math.unit(150, "feet")
  66826. },
  66827. {
  66828. name: "Category 3",
  66829. height: math.unit(300, "feet")
  66830. },
  66831. {
  66832. name: "Category 4",
  66833. height: math.unit(550, "feet")
  66834. },
  66835. ]
  66836. ))
  66837. characterMakers.push(() => makeCharacter(
  66838. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  66839. {
  66840. front: {
  66841. height: math.unit(5 + 8/12, "feet"),
  66842. weight: math.unit(180, "lb"),
  66843. name: "Front",
  66844. image: {
  66845. source: "./media/characters/zeke/front.svg",
  66846. extra: 452/417,
  66847. bottom: 21/473
  66848. }
  66849. },
  66850. back: {
  66851. height: math.unit(5 + 8/12, "feet"),
  66852. weight: math.unit(180, "lb"),
  66853. name: "Back",
  66854. image: {
  66855. source: "./media/characters/zeke/back.svg",
  66856. extra: 473/444,
  66857. bottom: 8/481
  66858. }
  66859. },
  66860. frontNsfw: {
  66861. height: math.unit(5 + 8/12, "feet"),
  66862. weight: math.unit(180, "lb"),
  66863. name: "Front (NSFW)",
  66864. image: {
  66865. source: "./media/characters/zeke/front-nsfw.svg",
  66866. extra: 452/417,
  66867. bottom: 21/473
  66868. }
  66869. },
  66870. backNsfw: {
  66871. height: math.unit(5 + 8/12, "feet"),
  66872. weight: math.unit(180, "lb"),
  66873. name: "Back (NSFW)",
  66874. image: {
  66875. source: "./media/characters/zeke/back-nsfw.svg",
  66876. extra: 473/444,
  66877. bottom: 8/481
  66878. }
  66879. },
  66880. frontErect: {
  66881. height: math.unit(5 + 8/12, "feet"),
  66882. weight: math.unit(180, "lb"),
  66883. name: "Front (Erect)",
  66884. image: {
  66885. source: "./media/characters/zeke/front-erect.svg",
  66886. extra: 452/417,
  66887. bottom: 21/473
  66888. }
  66889. },
  66890. },
  66891. [
  66892. {
  66893. name: "Normal",
  66894. height: math.unit(5 + 8/12, "feet"),
  66895. default: true
  66896. },
  66897. {
  66898. name: "Macro",
  66899. height: math.unit((5 + 8/12) * 54.6087, "feet")
  66900. },
  66901. {
  66902. name: "Macro+",
  66903. height: math.unit((5 + 8/12) * 121.92, "feet")
  66904. },
  66905. {
  66906. name: "Mega",
  66907. height: math.unit((5 + 8/12) * 796.67, "feet")
  66908. },
  66909. {
  66910. name: "Mega+",
  66911. height: math.unit((5 + 8/12) * 5086.6, "feet")
  66912. },
  66913. ]
  66914. ))
  66915. //characters
  66916. function makeCharacters() {
  66917. const results = [];
  66918. characterMakers.forEach(character => {
  66919. results.push(character());
  66920. });
  66921. return results;
  66922. }