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.
 
 
 

68289 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. },
  8282. [
  8283. {
  8284. name: "True Micro",
  8285. height: math.unit(9, "cm"),
  8286. form: "liom"
  8287. },
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(16, "cm"),
  8291. form: "liom"
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(1.85, "meters"),
  8296. default: true,
  8297. form: "liom"
  8298. },
  8299. {
  8300. name: "Mini-Macro",
  8301. height: math.unit(5, "meters"),
  8302. form: "liom"
  8303. },
  8304. {
  8305. name: "Macro",
  8306. height: math.unit(15, "meters"),
  8307. form: "liom"
  8308. },
  8309. {
  8310. name: "True Macro",
  8311. height: math.unit(40, "meters"),
  8312. form: "liom"
  8313. },
  8314. {
  8315. name: "City Scale",
  8316. height: math.unit(1, "km"),
  8317. form: "liom"
  8318. },
  8319. {
  8320. name: "Plushie",
  8321. height: math.unit(9, "cm"),
  8322. form: "plush",
  8323. default: true
  8324. },
  8325. {
  8326. name: "Fae",
  8327. height: math.unit(10, "cm"),
  8328. form: "fae",
  8329. default: true
  8330. },
  8331. ],
  8332. {
  8333. "liom": {
  8334. name: "Liom"
  8335. },
  8336. "plush": {
  8337. name: "Plush"
  8338. },
  8339. "fae": {
  8340. name: "Fae Fox",
  8341. default: true
  8342. }
  8343. }
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8347. {
  8348. front: {
  8349. height: math.unit(2, "meters"),
  8350. weight: math.unit(350, "lbs"),
  8351. name: "Front",
  8352. image: {
  8353. source: "./media/characters/regal/front.svg"
  8354. }
  8355. },
  8356. back: {
  8357. height: math.unit(2, "meters"),
  8358. weight: math.unit(350, "lbs"),
  8359. name: "Back",
  8360. image: {
  8361. source: "./media/characters/regal/back.svg"
  8362. }
  8363. },
  8364. },
  8365. [
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(350, "feet"),
  8369. default: true
  8370. }
  8371. ]
  8372. ))
  8373. characterMakers.push(() => makeCharacter(
  8374. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8375. {
  8376. standing: {
  8377. height: math.unit(4 + 11/12, "feet"),
  8378. weight: math.unit(100, "lb"),
  8379. name: "Standing",
  8380. image: {
  8381. source: "./media/characters/opal/standing.svg",
  8382. extra: 1588/1513,
  8383. bottom: 23/1611
  8384. }
  8385. },
  8386. sitting: {
  8387. height: math.unit(2.3, "feet"),
  8388. weight: math.unit(100, "lb"),
  8389. name: "Sitting",
  8390. image: {
  8391. source: "./media/characters/opal/sitting.svg",
  8392. extra: 1031/892,
  8393. bottom: 142/1173
  8394. }
  8395. },
  8396. hand: {
  8397. height: math.unit(0.59, "feet"),
  8398. name: "Hand",
  8399. image: {
  8400. source: "./media/characters/opal/hand.svg"
  8401. }
  8402. },
  8403. foot: {
  8404. height: math.unit(0.61, "feet"),
  8405. name: "Foot",
  8406. image: {
  8407. source: "./media/characters/opal/foot.svg"
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Small",
  8414. height: math.unit(4 + 11 / 12, "feet")
  8415. },
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(20, "feet"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(120, "feet")
  8424. },
  8425. {
  8426. name: "Megamacro",
  8427. height: math.unit(80, "miles")
  8428. },
  8429. {
  8430. name: "True Size",
  8431. height: math.unit(100000, "lightyears")
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8437. {
  8438. front: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(200, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/vector-wuff/front.svg"
  8444. }
  8445. }
  8446. },
  8447. [
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(2.8, "meters")
  8451. },
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(450, "meters"),
  8455. default: true
  8456. },
  8457. {
  8458. name: "Megamacro",
  8459. height: math.unit(15, "kilometers")
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(256, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/dannik/front.svg"
  8472. }
  8473. }
  8474. },
  8475. [
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(69.57, "meters"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(6, "feet"),
  8488. weight: math.unit(120, "lbs"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/azura-saharah/front.svg"
  8492. }
  8493. },
  8494. back: {
  8495. height: math.unit(6, "feet"),
  8496. weight: math.unit(120, "lbs"),
  8497. name: "Back",
  8498. image: {
  8499. source: "./media/characters/azura-saharah/back.svg"
  8500. }
  8501. },
  8502. },
  8503. [
  8504. {
  8505. name: "Macro",
  8506. height: math.unit(100, "feet"),
  8507. default: true
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8513. {
  8514. side: {
  8515. height: math.unit(5 + 4 / 12, "feet"),
  8516. weight: math.unit(163, "lbs"),
  8517. name: "Side",
  8518. image: {
  8519. source: "./media/characters/kennedy/side.svg"
  8520. }
  8521. }
  8522. },
  8523. [
  8524. {
  8525. name: "Standard Doggo",
  8526. height: math.unit(5 + 4 / 12, "feet")
  8527. },
  8528. {
  8529. name: "Big Doggo",
  8530. height: math.unit(25 + 3 / 12, "feet"),
  8531. default: true
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(5 + 5/12, "feet"),
  8540. weight: math.unit(100, "lbs"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/odios-de-lunar/front.svg",
  8544. extra: 1468/1323,
  8545. bottom: 22/1490
  8546. }
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(3, "inches")
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(5.5, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(100, "feet")
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8567. {
  8568. back: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(220, "lbs"),
  8571. name: "Back",
  8572. image: {
  8573. source: "./media/characters/mandake/back.svg"
  8574. }
  8575. }
  8576. },
  8577. [
  8578. {
  8579. name: "Normal",
  8580. height: math.unit(7, "feet"),
  8581. default: true
  8582. },
  8583. {
  8584. name: "Macro",
  8585. height: math.unit(78, "feet")
  8586. },
  8587. {
  8588. name: "Macro+",
  8589. height: math.unit(300, "meters")
  8590. },
  8591. {
  8592. name: "Macro++",
  8593. height: math.unit(2400, "feet")
  8594. },
  8595. {
  8596. name: "Megamacro",
  8597. height: math.unit(5167, "meters")
  8598. },
  8599. {
  8600. name: "Gigamacro",
  8601. height: math.unit(41769, "miles")
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lbs"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/yozey/front.svg"
  8614. }
  8615. },
  8616. frontAlt: {
  8617. height: math.unit(6, "feet"),
  8618. weight: math.unit(120, "lbs"),
  8619. name: "Front (Alt)",
  8620. image: {
  8621. source: "./media/characters/yozey/front-alt.svg"
  8622. }
  8623. },
  8624. side: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(120, "lbs"),
  8627. name: "Side",
  8628. image: {
  8629. source: "./media/characters/yozey/side.svg"
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Micro",
  8636. height: math.unit(3, "inches"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(6, "feet")
  8642. }
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(6, "feet"),
  8650. weight: math.unit(103, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/valeska-voss/front.svg"
  8654. }
  8655. }
  8656. },
  8657. [
  8658. {
  8659. name: "Mini-Sized Sub",
  8660. height: math.unit(3.1, "inches")
  8661. },
  8662. {
  8663. name: "Mid-Sized Sub",
  8664. height: math.unit(6.2, "inches")
  8665. },
  8666. {
  8667. name: "Full-Sized Sub",
  8668. height: math.unit(9.3, "inches")
  8669. },
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(5 + 2 / 12, "foot"),
  8673. default: true
  8674. },
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(160, "lbs"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/gene-zeta/front.svg",
  8686. extra: 3006 / 2826,
  8687. bottom: 182 / 3188
  8688. }
  8689. }
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(6, "inches")
  8695. },
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(5 + 11 / 12, "foot"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(140, "feet")
  8704. },
  8705. {
  8706. name: "Supercharged",
  8707. height: math.unit(2500, "feet")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(6, "feet"),
  8716. weight: math.unit(350, "lbs"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/razinox/front.svg",
  8720. extra: 1686 / 1548,
  8721. bottom: 28.2 / 1868
  8722. }
  8723. },
  8724. back: {
  8725. height: math.unit(6, "feet"),
  8726. weight: math.unit(350, "lbs"),
  8727. name: "Back",
  8728. image: {
  8729. source: "./media/characters/razinox/back.svg",
  8730. extra: 1660 / 1590,
  8731. bottom: 15 / 1665
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(10 + 8 / 12, "foot")
  8739. },
  8740. {
  8741. name: "Minimacro",
  8742. height: math.unit(15, "foot")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(60, "foot"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(5, "miles")
  8752. },
  8753. {
  8754. name: "Gigamacro",
  8755. height: math.unit(6000, "miles")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(150, "lbs"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/cobalt/front.svg"
  8768. }
  8769. }
  8770. },
  8771. [
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(8 + 1 / 12, "foot")
  8775. },
  8776. {
  8777. name: "Macro",
  8778. height: math.unit(111, "foot"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Supracosmic",
  8783. height: math.unit(1e42, "feet")
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(5, "inches"),
  8792. name: "Front",
  8793. image: {
  8794. source: "./media/characters/amanda/front.svg",
  8795. extra: 926/791,
  8796. bottom: 38/964
  8797. }
  8798. },
  8799. back: {
  8800. height: math.unit(5, "inches"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/amanda/back.svg",
  8804. extra: 909/805,
  8805. bottom: 43/952
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Micro",
  8812. height: math.unit(5, "inches"),
  8813. default: true
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(2.75, "meters"),
  8822. weight: math.unit(1200, "lb"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/teal/front.svg",
  8826. extra: 2463 / 2320,
  8827. bottom: 166 / 2629
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(2.75, "meters"),
  8832. weight: math.unit(1200, "lb"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/teal/back.svg",
  8836. extra: 2580 / 2489,
  8837. bottom: 151 / 2731
  8838. }
  8839. },
  8840. sitting: {
  8841. height: math.unit(1.9, "meters"),
  8842. weight: math.unit(1200, "lb"),
  8843. name: "Sitting",
  8844. image: {
  8845. source: "./media/characters/teal/sitting.svg",
  8846. extra: 623 / 590,
  8847. bottom: 121 / 744
  8848. }
  8849. },
  8850. standing: {
  8851. height: math.unit(2.75, "meters"),
  8852. weight: math.unit(1200, "lb"),
  8853. name: "Standing",
  8854. image: {
  8855. source: "./media/characters/teal/standing.svg",
  8856. extra: 923 / 893,
  8857. bottom: 60 / 983
  8858. }
  8859. },
  8860. stretching: {
  8861. height: math.unit(3.65, "meters"),
  8862. weight: math.unit(1200, "lb"),
  8863. name: "Stretching",
  8864. image: {
  8865. source: "./media/characters/teal/stretching.svg",
  8866. extra: 1276 / 1244,
  8867. bottom: 0 / 1276
  8868. }
  8869. },
  8870. legged: {
  8871. height: math.unit(1.3, "meters"),
  8872. weight: math.unit(100, "lb"),
  8873. name: "Legged",
  8874. image: {
  8875. source: "./media/characters/teal/legged.svg",
  8876. extra: 462 / 437,
  8877. bottom: 24 / 486
  8878. }
  8879. },
  8880. naga: {
  8881. height: math.unit(5.4, "meters"),
  8882. weight: math.unit(4000, "lb"),
  8883. name: "Naga",
  8884. image: {
  8885. source: "./media/characters/teal/naga.svg",
  8886. extra: 1902 / 1858,
  8887. bottom: 0 / 1902
  8888. }
  8889. },
  8890. hand: {
  8891. height: math.unit(0.52, "meters"),
  8892. name: "Hand",
  8893. image: {
  8894. source: "./media/characters/teal/hand.svg"
  8895. }
  8896. },
  8897. maw: {
  8898. height: math.unit(0.43, "meters"),
  8899. name: "Maw",
  8900. image: {
  8901. source: "./media/characters/teal/maw.svg"
  8902. }
  8903. },
  8904. slit: {
  8905. height: math.unit(0.25, "meters"),
  8906. name: "Slit",
  8907. image: {
  8908. source: "./media/characters/teal/slit.svg"
  8909. }
  8910. },
  8911. },
  8912. [
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(2.75, "meters"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(300, "feet")
  8921. },
  8922. {
  8923. name: "Macro+",
  8924. height: math.unit(2000, "feet")
  8925. },
  8926. ]
  8927. ))
  8928. characterMakers.push(() => makeCharacter(
  8929. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8930. {
  8931. frontCat: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(180, "lbs"),
  8934. name: "Front (Cat)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/front-cat.svg"
  8937. }
  8938. },
  8939. frontCatAlt: {
  8940. height: math.unit(6, "feet"),
  8941. weight: math.unit(180, "lbs"),
  8942. name: "Front (Alt, Cat)",
  8943. image: {
  8944. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8945. }
  8946. },
  8947. frontWerewolf: {
  8948. height: math.unit(6 * 1.2, "feet"),
  8949. weight: math.unit(225, "lbs"),
  8950. name: "Front (Werewolf)",
  8951. image: {
  8952. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8953. }
  8954. },
  8955. backWerewolf: {
  8956. height: math.unit(6 * 1.2, "feet"),
  8957. weight: math.unit(225, "lbs"),
  8958. name: "Back (Werewolf)",
  8959. image: {
  8960. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Nano",
  8967. height: math.unit(1, "micrometer")
  8968. },
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(1, "inch")
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(6, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(60, "feet")
  8981. }
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(6, "feet"),
  8989. weight: math.unit(165, "lbs"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/fluoresce/front.svg"
  8993. }
  8994. }
  8995. },
  8996. [
  8997. {
  8998. name: "Micro",
  8999. height: math.unit(6, "cm")
  9000. },
  9001. {
  9002. name: "Normal",
  9003. height: math.unit(5 + 7 / 12, "feet"),
  9004. default: true
  9005. },
  9006. {
  9007. name: "Macro",
  9008. height: math.unit(56, "feet")
  9009. },
  9010. {
  9011. name: "Megamacro",
  9012. height: math.unit(1.9, "miles")
  9013. },
  9014. ]
  9015. ))
  9016. characterMakers.push(() => makeCharacter(
  9017. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9018. {
  9019. front: {
  9020. height: math.unit(9 + 6 / 12, "feet"),
  9021. weight: math.unit(523, "lbs"),
  9022. name: "Side",
  9023. image: {
  9024. source: "./media/characters/aurora/side.svg",
  9025. extra: 474/393,
  9026. bottom: 5/479
  9027. }
  9028. }
  9029. },
  9030. [
  9031. {
  9032. name: "Normal",
  9033. height: math.unit(9 + 6 / 12, "feet")
  9034. },
  9035. {
  9036. name: "Macro",
  9037. height: math.unit(96, "feet"),
  9038. default: true
  9039. },
  9040. {
  9041. name: "Macro+",
  9042. height: math.unit(243, "feet")
  9043. },
  9044. ]
  9045. ))
  9046. characterMakers.push(() => makeCharacter(
  9047. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9048. {
  9049. front: {
  9050. height: math.unit(194, "cm"),
  9051. weight: math.unit(90, "kg"),
  9052. name: "Front",
  9053. image: {
  9054. source: "./media/characters/ranek/front.svg",
  9055. extra: 1862/1791,
  9056. bottom: 80/1942
  9057. }
  9058. },
  9059. back: {
  9060. height: math.unit(194, "cm"),
  9061. weight: math.unit(90, "kg"),
  9062. name: "Back",
  9063. image: {
  9064. source: "./media/characters/ranek/back.svg",
  9065. extra: 1853/1787,
  9066. bottom: 74/1927
  9067. }
  9068. },
  9069. feral: {
  9070. height: math.unit(30, "cm"),
  9071. weight: math.unit(1.6, "lbs"),
  9072. name: "Feral",
  9073. image: {
  9074. source: "./media/characters/ranek/feral.svg",
  9075. extra: 990/631,
  9076. bottom: 29/1019
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(194, "cm"),
  9084. default: true
  9085. },
  9086. {
  9087. name: "Macro",
  9088. height: math.unit(100, "meters")
  9089. },
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(5 + 6 / 12, "feet"),
  9097. weight: math.unit(153, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/andrew-cooper/front.svg"
  9101. }
  9102. },
  9103. },
  9104. [
  9105. {
  9106. name: "Nano",
  9107. height: math.unit(1, "mm")
  9108. },
  9109. {
  9110. name: "Micro",
  9111. height: math.unit(2, "inches")
  9112. },
  9113. {
  9114. name: "Normal",
  9115. height: math.unit(5 + 6 / 12, "feet"),
  9116. default: true
  9117. }
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(6, "feet"),
  9125. weight: math.unit(180, "lbs"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/akane-sato/front.svg",
  9129. extra: 1219 / 1140
  9130. }
  9131. },
  9132. back: {
  9133. height: math.unit(6, "feet"),
  9134. weight: math.unit(180, "lbs"),
  9135. name: "Back",
  9136. image: {
  9137. source: "./media/characters/akane-sato/back.svg",
  9138. extra: 1219 / 1170
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(2.5, "meters")
  9146. },
  9147. {
  9148. name: "Macro",
  9149. height: math.unit(250, "meters"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Megamacro",
  9154. height: math.unit(25, "km")
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9160. {
  9161. front: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(65, "kg"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/rook/front.svg",
  9167. extra: 960 / 950
  9168. }
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(8.8, "feet")
  9175. },
  9176. {
  9177. name: "Macro",
  9178. height: math.unit(88, "feet"),
  9179. default: true
  9180. },
  9181. {
  9182. name: "Megamacro",
  9183. height: math.unit(8, "miles")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(12 + 2 / 12, "feet"),
  9192. weight: math.unit(808, "lbs"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/prodigy/front.svg"
  9196. }
  9197. }
  9198. },
  9199. [
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(12 + 2 / 12, "feet"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(143, "feet")
  9208. },
  9209. {
  9210. name: "Macro+",
  9211. height: math.unit(400, "feet")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(225, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/daniel/front.svg"
  9224. }
  9225. },
  9226. leaning: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(225, "lbs"),
  9229. name: "Leaning",
  9230. image: {
  9231. source: "./media/characters/daniel/leaning.svg"
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Macro",
  9238. height: math.unit(1000, "feet"),
  9239. default: true
  9240. },
  9241. ]
  9242. ))
  9243. characterMakers.push(() => makeCharacter(
  9244. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9245. {
  9246. front: {
  9247. height: math.unit(6, "feet"),
  9248. weight: math.unit(88, "lbs"),
  9249. name: "Front",
  9250. image: {
  9251. source: "./media/characters/chiros/front.svg",
  9252. extra: 306 / 226
  9253. }
  9254. },
  9255. side: {
  9256. height: math.unit(6, "feet"),
  9257. weight: math.unit(88, "lbs"),
  9258. name: "Side",
  9259. image: {
  9260. source: "./media/characters/chiros/side.svg",
  9261. extra: 306 / 226
  9262. }
  9263. },
  9264. },
  9265. [
  9266. {
  9267. name: "Normal",
  9268. height: math.unit(6, "cm"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(100, "lbs"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/selka/front.svg",
  9282. extra: 947 / 887
  9283. }
  9284. }
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(5, "cm"),
  9290. default: true
  9291. },
  9292. ]
  9293. ))
  9294. characterMakers.push(() => makeCharacter(
  9295. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9296. {
  9297. front: {
  9298. height: math.unit(8 + 3 / 12, "feet"),
  9299. weight: math.unit(424, "lbs"),
  9300. name: "Front",
  9301. image: {
  9302. source: "./media/characters/verin/front.svg",
  9303. extra: 1845 / 1550
  9304. }
  9305. },
  9306. frontArmored: {
  9307. height: math.unit(8 + 3 / 12, "feet"),
  9308. weight: math.unit(424, "lbs"),
  9309. name: "Front (Armored)",
  9310. image: {
  9311. source: "./media/characters/verin/front-armor.svg",
  9312. extra: 1845 / 1550,
  9313. bottom: 0.01
  9314. }
  9315. },
  9316. back: {
  9317. height: math.unit(8 + 3 / 12, "feet"),
  9318. weight: math.unit(424, "lbs"),
  9319. name: "Back",
  9320. image: {
  9321. source: "./media/characters/verin/back.svg",
  9322. bottom: 0.1,
  9323. extra: 1
  9324. }
  9325. },
  9326. foot: {
  9327. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9328. name: "Foot",
  9329. image: {
  9330. source: "./media/characters/verin/foot.svg"
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Normal",
  9337. height: math.unit(8 + 3 / 12, "feet")
  9338. },
  9339. {
  9340. name: "Minimacro",
  9341. height: math.unit(21, "feet"),
  9342. default: true
  9343. },
  9344. {
  9345. name: "Macro",
  9346. height: math.unit(626, "feet")
  9347. },
  9348. ]
  9349. ))
  9350. characterMakers.push(() => makeCharacter(
  9351. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9352. {
  9353. front: {
  9354. height: math.unit(2.718, "meters"),
  9355. weight: math.unit(150, "lbs"),
  9356. name: "Front",
  9357. image: {
  9358. source: "./media/characters/sovrim-terraquian/front.svg",
  9359. extra: 1752/1689,
  9360. bottom: 36/1788
  9361. }
  9362. },
  9363. back: {
  9364. height: math.unit(2.718, "meters"),
  9365. weight: math.unit(150, "lbs"),
  9366. name: "Back",
  9367. image: {
  9368. source: "./media/characters/sovrim-terraquian/back.svg",
  9369. extra: 1698/1657,
  9370. bottom: 58/1756
  9371. }
  9372. },
  9373. tongue: {
  9374. height: math.unit(2.865, "feet"),
  9375. name: "Tongue",
  9376. image: {
  9377. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9378. }
  9379. },
  9380. hand: {
  9381. height: math.unit(1.61, "feet"),
  9382. name: "Hand",
  9383. image: {
  9384. source: "./media/characters/sovrim-terraquian/hand.svg"
  9385. }
  9386. },
  9387. foot: {
  9388. height: math.unit(1.05, "feet"),
  9389. name: "Foot",
  9390. image: {
  9391. source: "./media/characters/sovrim-terraquian/foot.svg"
  9392. }
  9393. },
  9394. footAlt: {
  9395. height: math.unit(0.88, "feet"),
  9396. name: "Foot (Alt)",
  9397. image: {
  9398. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(2, "inches")
  9406. },
  9407. {
  9408. name: "Small",
  9409. height: math.unit(1, "meter")
  9410. },
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(Math.E, "meters"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(20, "meters")
  9419. },
  9420. {
  9421. name: "Macro+",
  9422. height: math.unit(400, "meters")
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(7, "feet"),
  9431. weight: math.unit(489, "lbs"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/reece-silvermane/front.svg",
  9435. bottom: 0.02,
  9436. extra: 1
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Macro",
  9443. height: math.unit(1.5, "miles"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(6, "feet"),
  9453. weight: math.unit(78, "kg"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/kane/front.svg",
  9457. extra: 978 / 899
  9458. }
  9459. },
  9460. back: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(78, "kg"),
  9463. name: "Back",
  9464. image: {
  9465. source: "./media/characters/kane/back.svg",
  9466. extra: 1966/1800,
  9467. bottom: 0/1966
  9468. }
  9469. },
  9470. head: {
  9471. height: math.unit(1.4, "feet"),
  9472. name: "Head",
  9473. image: {
  9474. source: "./media/characters/kane/head.svg"
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(2.1, "m"),
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(1, "km"),
  9486. default: true
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9492. {
  9493. frontSfw: {
  9494. name: "Front (SFW)",
  9495. height: math.unit(6 + 3/12, "feet"),
  9496. weight: math.unit(200, "kg"),
  9497. image: {
  9498. source: "./media/characters/tegon/front-sfw.svg",
  9499. extra: 1105/1087,
  9500. bottom: 86/1191
  9501. }
  9502. },
  9503. backSfw: {
  9504. name: "Back (SFW)",
  9505. height: math.unit(6 + 3/12, "feet"),
  9506. weight: math.unit(200, "kg"),
  9507. image: {
  9508. source: "./media/characters/tegon/back-sfw.svg",
  9509. extra: 1107/1087,
  9510. bottom: 21/1128
  9511. }
  9512. },
  9513. frontNsfw: {
  9514. name: "Front (NSFW)",
  9515. height: math.unit(6 + 3/12, "feet"),
  9516. weight: math.unit(200, "kg"),
  9517. image: {
  9518. source: "./media/characters/tegon/front-nsfw.svg",
  9519. extra: 1105/1087,
  9520. bottom: 86/1191
  9521. }
  9522. },
  9523. maw: {
  9524. height: math.unit(1.23, "feet"),
  9525. name: "Maw",
  9526. image: {
  9527. source: "./media/characters/tegon/maw.svg"
  9528. }
  9529. },
  9530. dick: {
  9531. height: math.unit(1.18, "feet"),
  9532. name: "Dick",
  9533. image: {
  9534. source: "./media/characters/tegon/dick.svg"
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(1, "inch")
  9542. },
  9543. {
  9544. name: "Normal",
  9545. height: math.unit(6 + 3 / 12, "feet"),
  9546. default: true
  9547. },
  9548. {
  9549. name: "Macro",
  9550. height: math.unit(300, "feet")
  9551. },
  9552. {
  9553. name: "Megamacro",
  9554. height: math.unit(69, "miles")
  9555. },
  9556. ]
  9557. ))
  9558. characterMakers.push(() => makeCharacter(
  9559. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9560. {
  9561. side: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(2304, "lbs"),
  9564. name: "Side",
  9565. image: {
  9566. source: "./media/characters/arcturax/side.svg",
  9567. extra: 790 / 376,
  9568. bottom: 0.01
  9569. }
  9570. },
  9571. },
  9572. [
  9573. {
  9574. name: "Micro",
  9575. height: math.unit(2, "inch")
  9576. },
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(6, "feet")
  9580. },
  9581. {
  9582. name: "Macro",
  9583. height: math.unit(39, "feet"),
  9584. default: true
  9585. },
  9586. {
  9587. name: "Megamacro",
  9588. height: math.unit(7, "miles")
  9589. },
  9590. ]
  9591. ))
  9592. characterMakers.push(() => makeCharacter(
  9593. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9594. {
  9595. front: {
  9596. height: math.unit(6, "feet"),
  9597. weight: math.unit(50, "lbs"),
  9598. name: "Front",
  9599. image: {
  9600. source: "./media/characters/sentri/front.svg",
  9601. extra: 1750 / 1570,
  9602. bottom: 0.025
  9603. }
  9604. },
  9605. frontAlt: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(50, "lbs"),
  9608. name: "Front (Alt)",
  9609. image: {
  9610. source: "./media/characters/sentri/front-alt.svg",
  9611. extra: 1750 / 1570,
  9612. bottom: 0.025
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(15, "feet"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(2500, "feet")
  9625. }
  9626. ]
  9627. ))
  9628. characterMakers.push(() => makeCharacter(
  9629. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9630. {
  9631. front: {
  9632. height: math.unit(5 + 8 / 12, "feet"),
  9633. weight: math.unit(130, "lbs"),
  9634. name: "Front",
  9635. image: {
  9636. source: "./media/characters/corvin/front.svg",
  9637. extra: 1803 / 1629
  9638. }
  9639. },
  9640. frontShirt: {
  9641. height: math.unit(5 + 8 / 12, "feet"),
  9642. weight: math.unit(130, "lbs"),
  9643. name: "Front (Shirt)",
  9644. image: {
  9645. source: "./media/characters/corvin/front-shirt.svg",
  9646. extra: 1803 / 1629
  9647. }
  9648. },
  9649. frontPoncho: {
  9650. height: math.unit(5 + 8 / 12, "feet"),
  9651. weight: math.unit(130, "lbs"),
  9652. name: "Front (Poncho)",
  9653. image: {
  9654. source: "./media/characters/corvin/front-poncho.svg",
  9655. extra: 1803 / 1629
  9656. }
  9657. },
  9658. side: {
  9659. height: math.unit(5 + 8 / 12, "feet"),
  9660. weight: math.unit(130, "lbs"),
  9661. name: "Side",
  9662. image: {
  9663. source: "./media/characters/corvin/side.svg",
  9664. extra: 1012 / 945
  9665. }
  9666. },
  9667. back: {
  9668. height: math.unit(5 + 8 / 12, "feet"),
  9669. weight: math.unit(130, "lbs"),
  9670. name: "Back",
  9671. image: {
  9672. source: "./media/characters/corvin/back.svg",
  9673. extra: 1803 / 1629
  9674. }
  9675. },
  9676. },
  9677. [
  9678. {
  9679. name: "Micro",
  9680. height: math.unit(3, "inches")
  9681. },
  9682. {
  9683. name: "Normal",
  9684. height: math.unit(5 + 8 / 12, "feet")
  9685. },
  9686. {
  9687. name: "Macro",
  9688. height: math.unit(300, "feet"),
  9689. default: true
  9690. },
  9691. {
  9692. name: "Megamacro",
  9693. height: math.unit(500, "miles")
  9694. }
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(6, "feet"),
  9702. weight: math.unit(135, "lbs"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/q/front.svg",
  9706. extra: 854 / 752,
  9707. bottom: 0.005
  9708. }
  9709. },
  9710. back: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(130, "lbs"),
  9713. name: "Back",
  9714. image: {
  9715. source: "./media/characters/q/back.svg",
  9716. extra: 854 / 752
  9717. }
  9718. },
  9719. },
  9720. [
  9721. {
  9722. name: "Macro",
  9723. height: math.unit(90, "feet"),
  9724. default: true
  9725. },
  9726. {
  9727. name: "Extra Macro",
  9728. height: math.unit(300, "feet"),
  9729. },
  9730. {
  9731. name: "BIG WALF",
  9732. height: math.unit(750, "feet"),
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9738. {
  9739. front: {
  9740. height: math.unit(3, "feet"),
  9741. weight: math.unit(28, "lbs"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/citrine/front.svg"
  9745. }
  9746. }
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(3, "feet"),
  9752. default: true
  9753. }
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9758. {
  9759. front: {
  9760. height: math.unit(14, "feet"),
  9761. weight: math.unit(1450, "kg"),
  9762. preyCapacity: math.unit(15, "people"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/aura-starwind/front.svg",
  9766. extra: 1440/1327,
  9767. bottom: 11/1451
  9768. }
  9769. },
  9770. side: {
  9771. height: math.unit(14, "feet"),
  9772. weight: math.unit(1450, "kg"),
  9773. preyCapacity: math.unit(15, "people"),
  9774. name: "Side",
  9775. image: {
  9776. source: "./media/characters/aura-starwind/side.svg",
  9777. extra: 1654 / 1497
  9778. }
  9779. },
  9780. taur: {
  9781. height: math.unit(18, "feet"),
  9782. weight: math.unit(5500, "kg"),
  9783. preyCapacity: math.unit(50, "people"),
  9784. name: "Taur",
  9785. image: {
  9786. source: "./media/characters/aura-starwind/taur.svg",
  9787. extra: 1760 / 1650
  9788. }
  9789. },
  9790. feral: {
  9791. height: math.unit(46, "feet"),
  9792. weight: math.unit(25000, "kg"),
  9793. preyCapacity: math.unit(120, "people"),
  9794. name: "Feral",
  9795. image: {
  9796. source: "./media/characters/aura-starwind/feral.svg"
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(14, "feet"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Macro",
  9808. height: math.unit(50, "meters")
  9809. },
  9810. {
  9811. name: "Megamacro",
  9812. height: math.unit(5000, "meters")
  9813. },
  9814. {
  9815. name: "Gigamacro",
  9816. height: math.unit(100000, "kilometers")
  9817. },
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(2 + 7 / 12, "feet"),
  9825. weight: math.unit(32, "lbs"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/rivet/front.svg",
  9829. extra: 1716 / 1658,
  9830. bottom: 0.03
  9831. }
  9832. },
  9833. foot: {
  9834. height: math.unit(0.551, "feet"),
  9835. name: "Rivet's Foot",
  9836. image: {
  9837. source: "./media/characters/rivet/foot.svg"
  9838. },
  9839. rename: true
  9840. }
  9841. },
  9842. [
  9843. {
  9844. name: "Micro",
  9845. height: math.unit(1.5, "inches"),
  9846. },
  9847. {
  9848. name: "Normal",
  9849. height: math.unit(2 + 7 / 12, "feet"),
  9850. default: true
  9851. },
  9852. {
  9853. name: "Macro",
  9854. height: math.unit(85, "feet")
  9855. },
  9856. {
  9857. name: "Megamacro",
  9858. height: math.unit(2.2, "km")
  9859. }
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(5 + 9 / 12, "feet"),
  9867. weight: math.unit(150, "lbs"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/coffee/front.svg",
  9871. extra: 946/880,
  9872. bottom: 66/1012
  9873. }
  9874. },
  9875. foot: {
  9876. height: math.unit(1.29, "feet"),
  9877. name: "Foot",
  9878. image: {
  9879. source: "./media/characters/coffee/foot.svg"
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Micro",
  9886. height: math.unit(2, "inches"),
  9887. },
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(5 + 9 / 12, "feet"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Macro",
  9895. height: math.unit(800, "feet")
  9896. },
  9897. {
  9898. name: "Megamacro",
  9899. height: math.unit(25, "miles")
  9900. }
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(200, "lbs"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/chari-gal/front.svg",
  9912. extra: 735/649,
  9913. bottom: 55/790
  9914. },
  9915. form: "normal",
  9916. default: true
  9917. },
  9918. back: {
  9919. height: math.unit(6, "feet"),
  9920. weight: math.unit(200, "lb"),
  9921. name: "Back",
  9922. image: {
  9923. source: "./media/characters/chari-gal/back.svg",
  9924. extra: 762/666,
  9925. bottom: 31/793
  9926. },
  9927. form: "normal"
  9928. },
  9929. mouth: {
  9930. height: math.unit(1.35, "feet"),
  9931. name: "Mouth",
  9932. image: {
  9933. source: "./media/characters/chari-gal/mouth.svg"
  9934. },
  9935. form: "normal"
  9936. },
  9937. gigantamax: {
  9938. height: math.unit(6 * 16, "feet"),
  9939. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9940. name: "Gigantamax",
  9941. image: {
  9942. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9943. extra: 1507/1149,
  9944. bottom: 254/1761
  9945. },
  9946. form: "gigantamax",
  9947. default: true
  9948. },
  9949. },
  9950. [
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(5 + 7 / 12, "feet"),
  9954. form: "normal",
  9955. },
  9956. {
  9957. name: "Macro",
  9958. height: math.unit(200, "feet"),
  9959. default: true,
  9960. form: "normal"
  9961. },
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9965. form: "gigantamax",
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(16 * 200, "feet"),
  9970. default: true,
  9971. form: "gigantamax"
  9972. },
  9973. ],
  9974. {
  9975. "normal": {
  9976. name: "Normal",
  9977. default: true
  9978. },
  9979. "gigantamax": {
  9980. name: "Gigantamax",
  9981. },
  9982. }
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(6, "feet"),
  9989. weight: math.unit(150, "lbs"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/nova/front.svg",
  9993. extra: 5000 / 4722,
  9994. bottom: 0.02
  9995. }
  9996. }
  9997. },
  9998. [
  9999. {
  10000. name: "Micro-",
  10001. height: math.unit(0.8, "inches")
  10002. },
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(2, "inches"),
  10006. default: true
  10007. },
  10008. ]
  10009. ))
  10010. characterMakers.push(() => makeCharacter(
  10011. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10012. {
  10013. koboldFront: {
  10014. height: math.unit(3 + 1 / 12, "feet"),
  10015. weight: math.unit(21.7, "lbs"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/argent/kobold-front.svg",
  10019. extra: 1471 / 1331,
  10020. bottom: 100.8 / 1575.5
  10021. },
  10022. form: "kobold",
  10023. default: true
  10024. },
  10025. dragonFront: {
  10026. height: math.unit(75, "inches"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/argent/dragon-front.svg",
  10030. extra: 1389/1248,
  10031. bottom: 54/1443
  10032. },
  10033. form: "dragon",
  10034. },
  10035. dragonBack: {
  10036. height: math.unit(75, "inches"),
  10037. name: "Back",
  10038. image: {
  10039. source: "./media/characters/argent/dragon-back.svg",
  10040. extra: 1399/1271,
  10041. bottom: 23/1422
  10042. },
  10043. form: "dragon",
  10044. },
  10045. dragonDressed: {
  10046. height: math.unit(75, "inches"),
  10047. name: "Dressed",
  10048. image: {
  10049. source: "./media/characters/argent/dragon-dressed.svg",
  10050. extra: 1350/1215,
  10051. bottom: 26/1376
  10052. },
  10053. form: "dragon"
  10054. },
  10055. dragonHead: {
  10056. height: math.unit(23.5, "inches"),
  10057. name: "Head",
  10058. image: {
  10059. source: "./media/characters/argent/dragon-head.svg"
  10060. },
  10061. form: "dragon",
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Micro",
  10067. height: math.unit(2, "inches"),
  10068. form: "kobold",
  10069. },
  10070. {
  10071. name: "Normal",
  10072. height: math.unit(3 + 1 / 12, "feet"),
  10073. form: "kobold",
  10074. default: true
  10075. },
  10076. {
  10077. name: "Macro",
  10078. height: math.unit(120, "feet"),
  10079. form: "kobold",
  10080. },
  10081. {
  10082. name: "Speck",
  10083. height: math.unit(1, "mm"),
  10084. form: "dragon",
  10085. },
  10086. {
  10087. name: "Tiny",
  10088. height: math.unit(1, "cm"),
  10089. form: "dragon",
  10090. },
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(5, "cm"),
  10094. form: "dragon",
  10095. },
  10096. {
  10097. name: "Normal",
  10098. height: math.unit(75, "inches"),
  10099. form: "dragon",
  10100. default: true
  10101. },
  10102. {
  10103. name: "Extra Tall",
  10104. height: math.unit(9, "feet"),
  10105. form: "dragon",
  10106. },
  10107. {
  10108. name: "Inconvenient",
  10109. height: math.unit(5, "meters"),
  10110. form: "dragon",
  10111. },
  10112. {
  10113. name: "Macro",
  10114. height: math.unit(70, "meters"),
  10115. form: "dragon",
  10116. },
  10117. {
  10118. name: "Macro+",
  10119. height: math.unit(250, "meters"),
  10120. form: "dragon",
  10121. },
  10122. {
  10123. name: "Megamacro",
  10124. height: math.unit(20, "km"),
  10125. form: "dragon",
  10126. },
  10127. {
  10128. name: "Mountainous",
  10129. height: math.unit(100, "km"),
  10130. form: "dragon",
  10131. },
  10132. {
  10133. name: "Continental",
  10134. height: math.unit(2, "megameters"),
  10135. form: "dragon",
  10136. },
  10137. {
  10138. name: "Too Big",
  10139. height: math.unit(900, "megameters"),
  10140. form: "dragon",
  10141. },
  10142. ],
  10143. {
  10144. "kobold": {
  10145. name: "Kobold",
  10146. default: true
  10147. },
  10148. "dragon": {
  10149. name: "Dragon",
  10150. },
  10151. }
  10152. ))
  10153. characterMakers.push(() => makeCharacter(
  10154. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10155. {
  10156. lamp: {
  10157. height: math.unit(7 * 1559 / 989, "feet"),
  10158. name: "Magic Lamp",
  10159. image: {
  10160. source: "./media/characters/mira-al-cul/lamp.svg",
  10161. extra: 1617 / 1559
  10162. }
  10163. },
  10164. front: {
  10165. height: math.unit(7, "feet"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/mira-al-cul/front.svg",
  10169. extra: 1044 / 990
  10170. }
  10171. },
  10172. },
  10173. [
  10174. {
  10175. name: "Heavily Restricted",
  10176. height: math.unit(7 * 1559 / 989, "feet")
  10177. },
  10178. {
  10179. name: "Freshly Freed",
  10180. height: math.unit(50 * 1559 / 989, "feet")
  10181. },
  10182. {
  10183. name: "World Encompassing",
  10184. height: math.unit(10000 * 1559 / 989, "miles")
  10185. },
  10186. {
  10187. name: "Galactic",
  10188. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10189. },
  10190. {
  10191. name: "Palmed Universe",
  10192. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10193. default: true
  10194. },
  10195. {
  10196. name: "Multiversal Matriarch",
  10197. height: math.unit(8.87e10, "yottameters")
  10198. },
  10199. {
  10200. name: "Void Mother",
  10201. height: math.unit(3.14e110, "yottaparsecs")
  10202. },
  10203. {
  10204. name: "Toying with Transcendence",
  10205. height: math.unit(1e307, "meters")
  10206. },
  10207. ]
  10208. ))
  10209. characterMakers.push(() => makeCharacter(
  10210. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10211. {
  10212. front: {
  10213. height: math.unit(17 + 1 / 12, "feet"),
  10214. weight: math.unit(476.2 * 5, "lbs"),
  10215. name: "Front",
  10216. image: {
  10217. source: "./media/characters/kuro-shi-uchū/front.svg",
  10218. extra: 2329 / 1835,
  10219. bottom: 0.02
  10220. }
  10221. },
  10222. },
  10223. [
  10224. {
  10225. name: "Micro",
  10226. height: math.unit(2, "inches")
  10227. },
  10228. {
  10229. name: "Normal",
  10230. height: math.unit(12, "meters")
  10231. },
  10232. {
  10233. name: "Planetary",
  10234. height: math.unit(0.00929, "AU"),
  10235. default: true
  10236. },
  10237. {
  10238. name: "Universal",
  10239. height: math.unit(20, "gigaparsecs")
  10240. },
  10241. ]
  10242. ))
  10243. characterMakers.push(() => makeCharacter(
  10244. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10245. {
  10246. front: {
  10247. height: math.unit(5 + 2 / 12, "feet"),
  10248. weight: math.unit(120, "lbs"),
  10249. name: "Front",
  10250. image: {
  10251. source: "./media/characters/katherine/front.svg",
  10252. extra: 2075 / 1969
  10253. }
  10254. },
  10255. dress: {
  10256. height: math.unit(5 + 2 / 12, "feet"),
  10257. weight: math.unit(120, "lbs"),
  10258. name: "Dress",
  10259. image: {
  10260. source: "./media/characters/katherine/dress.svg",
  10261. extra: 2258 / 2064
  10262. }
  10263. },
  10264. },
  10265. [
  10266. {
  10267. name: "Micro",
  10268. height: math.unit(1, "inches"),
  10269. default: true
  10270. },
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(5 + 2 / 12, "feet")
  10274. },
  10275. {
  10276. name: "Macro",
  10277. height: math.unit(100, "meters")
  10278. },
  10279. {
  10280. name: "Megamacro",
  10281. height: math.unit(80, "miles")
  10282. },
  10283. ]
  10284. ))
  10285. characterMakers.push(() => makeCharacter(
  10286. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10287. {
  10288. front: {
  10289. height: math.unit(7 + 8 / 12, "feet"),
  10290. weight: math.unit(250, "lbs"),
  10291. name: "Front",
  10292. image: {
  10293. source: "./media/characters/yevis/front.svg",
  10294. extra: 1938 / 1755
  10295. }
  10296. }
  10297. },
  10298. [
  10299. {
  10300. name: "Mortal",
  10301. height: math.unit(7 + 8 / 12, "feet")
  10302. },
  10303. {
  10304. name: "Battle",
  10305. height: math.unit(25 + 11 / 12, "feet")
  10306. },
  10307. {
  10308. name: "Wrath",
  10309. height: math.unit(1654 + 11 / 12, "feet")
  10310. },
  10311. {
  10312. name: "Planet Destroyer",
  10313. height: math.unit(12000, "miles")
  10314. },
  10315. {
  10316. name: "Galaxy Conqueror",
  10317. height: math.unit(1.45, "zettameters"),
  10318. default: true
  10319. },
  10320. {
  10321. name: "Universal War",
  10322. height: math.unit(184, "gigaparsecs")
  10323. },
  10324. {
  10325. name: "Eternity War",
  10326. height: math.unit(1.98e55, "yottaparsecs")
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10332. {
  10333. front: {
  10334. height: math.unit(5 + 8 / 12, "feet"),
  10335. weight: math.unit(63, "kg"),
  10336. name: "Front",
  10337. image: {
  10338. source: "./media/characters/xavier/front.svg",
  10339. extra: 944 / 883
  10340. }
  10341. },
  10342. frontStretch: {
  10343. height: math.unit(5 + 8 / 12, "feet"),
  10344. weight: math.unit(63, "kg"),
  10345. name: "Stretching",
  10346. image: {
  10347. source: "./media/characters/xavier/front-stretch.svg",
  10348. extra: 962 / 820
  10349. }
  10350. },
  10351. },
  10352. [
  10353. {
  10354. name: "Normal",
  10355. height: math.unit(5 + 8 / 12, "feet")
  10356. },
  10357. {
  10358. name: "Macro",
  10359. height: math.unit(100, "meters"),
  10360. default: true
  10361. },
  10362. {
  10363. name: "McLargeHuge",
  10364. height: math.unit(10, "miles")
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10370. {
  10371. front: {
  10372. height: math.unit(5 + 5 / 12, "feet"),
  10373. weight: math.unit(150, "lb"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/joshii/front.svg",
  10377. extra: 765 / 653,
  10378. bottom: 51 / 816
  10379. }
  10380. },
  10381. foot: {
  10382. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10383. name: "Foot",
  10384. image: {
  10385. source: "./media/characters/joshii/foot.svg"
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Micro",
  10392. height: math.unit(2, "inches")
  10393. },
  10394. {
  10395. name: "Normal",
  10396. height: math.unit(5 + 5 / 12, "feet")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(785, "feet"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Megamacro",
  10405. height: math.unit(24.5, "miles")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(6, "feet"),
  10414. weight: math.unit(150, "lb"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/goddess-elizabeth/front.svg",
  10418. extra: 1800 / 1525,
  10419. bottom: 0.005
  10420. }
  10421. },
  10422. foot: {
  10423. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10424. name: "Foot",
  10425. image: {
  10426. source: "./media/characters/goddess-elizabeth/foot.svg"
  10427. }
  10428. },
  10429. mouth: {
  10430. height: math.unit(6, "feet"),
  10431. name: "Mouth",
  10432. image: {
  10433. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Micro",
  10440. height: math.unit(12, "feet")
  10441. },
  10442. {
  10443. name: "Normal",
  10444. height: math.unit(80, "miles"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Macro",
  10449. height: math.unit(15000, "parsecs")
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(5 + 9 / 12, "feet"),
  10458. weight: math.unit(144, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/kara/front.svg"
  10462. }
  10463. },
  10464. feet: {
  10465. height: math.unit(6 / 6.765, "feet"),
  10466. name: "Kara's Feet",
  10467. rename: true,
  10468. image: {
  10469. source: "./media/characters/kara/feet.svg"
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(5 + 9 / 12, "feet")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(174, "feet"),
  10481. default: true
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10487. {
  10488. front: {
  10489. height: math.unit(18, "feet"),
  10490. weight: math.unit(4050, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/tyrone/front.svg",
  10494. extra: 2405 / 2270,
  10495. bottom: 182 / 2587
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Normal",
  10502. height: math.unit(18, "feet"),
  10503. default: true
  10504. },
  10505. {
  10506. name: "Macro",
  10507. height: math.unit(300, "feet")
  10508. },
  10509. {
  10510. name: "Megamacro",
  10511. height: math.unit(15, "km")
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(500, "km")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(0.5, "gigameters")
  10520. },
  10521. {
  10522. name: "Omnimacro",
  10523. height: math.unit(1e252, "yottauniverse")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(7 + 8 / 12, "feet"),
  10532. weight: math.unit(120, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/danny/front.svg",
  10536. extra: 1490 / 1350
  10537. }
  10538. },
  10539. back: {
  10540. height: math.unit(7 + 8 / 12, "feet"),
  10541. weight: math.unit(120, "lb"),
  10542. name: "Back",
  10543. image: {
  10544. source: "./media/characters/danny/back.svg",
  10545. extra: 1490 / 1350
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(7 + 8 / 12, "feet"),
  10553. default: true
  10554. },
  10555. ]
  10556. ))
  10557. characterMakers.push(() => makeCharacter(
  10558. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10559. {
  10560. front: {
  10561. height: math.unit(3.5, "inches"),
  10562. weight: math.unit(19, "grams"),
  10563. name: "Front",
  10564. image: {
  10565. source: "./media/characters/mallow/front.svg",
  10566. extra: 471 / 431
  10567. }
  10568. },
  10569. back: {
  10570. height: math.unit(3.5, "inches"),
  10571. weight: math.unit(19, "grams"),
  10572. name: "Back",
  10573. image: {
  10574. source: "./media/characters/mallow/back.svg",
  10575. extra: 471 / 431
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(3.5, "inches"),
  10583. default: true
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10589. {
  10590. front: {
  10591. height: math.unit(9, "feet"),
  10592. weight: math.unit(230, "kg"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/starry-aqua/front.svg"
  10596. }
  10597. },
  10598. back: {
  10599. height: math.unit(9, "feet"),
  10600. weight: math.unit(230, "kg"),
  10601. name: "Back",
  10602. image: {
  10603. source: "./media/characters/starry-aqua/back.svg"
  10604. }
  10605. },
  10606. hand: {
  10607. height: math.unit(9 * 0.1168, "feet"),
  10608. name: "Hand",
  10609. image: {
  10610. source: "./media/characters/starry-aqua/hand.svg"
  10611. }
  10612. },
  10613. foot: {
  10614. height: math.unit(9 * 0.18, "feet"),
  10615. name: "Foot",
  10616. image: {
  10617. source: "./media/characters/starry-aqua/foot.svg"
  10618. }
  10619. }
  10620. },
  10621. [
  10622. {
  10623. name: "Micro",
  10624. height: math.unit(3, "inches")
  10625. },
  10626. {
  10627. name: "Normal",
  10628. height: math.unit(9, "feet")
  10629. },
  10630. {
  10631. name: "Macro",
  10632. height: math.unit(300, "feet"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Megamacro",
  10637. height: math.unit(3200, "feet")
  10638. }
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10643. {
  10644. front: {
  10645. height: math.unit(15, "feet"),
  10646. weight: math.unit(5026, "lb"),
  10647. name: "Front",
  10648. image: {
  10649. source: "./media/characters/luka-towers/front.svg",
  10650. extra: 1269/1133,
  10651. bottom: 51/1320
  10652. }
  10653. },
  10654. },
  10655. [
  10656. {
  10657. name: "Normal",
  10658. height: math.unit(15, "feet"),
  10659. default: true
  10660. },
  10661. {
  10662. name: "Minimacro",
  10663. height: math.unit(25, "feet")
  10664. },
  10665. {
  10666. name: "Macro",
  10667. height: math.unit(320, "feet")
  10668. },
  10669. {
  10670. name: "Megamacro",
  10671. height: math.unit(35000, "feet")
  10672. },
  10673. {
  10674. name: "Gigamacro",
  10675. height: math.unit(4000, "miles")
  10676. },
  10677. {
  10678. name: "Teramacro",
  10679. height: math.unit(15000, "miles")
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(150, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/natalie-nightring/front.svg",
  10692. extra: 1,
  10693. bottom: 0.06
  10694. }
  10695. },
  10696. },
  10697. [
  10698. {
  10699. name: "Uh Oh",
  10700. height: math.unit(0.1, "mm")
  10701. },
  10702. {
  10703. name: "Small",
  10704. height: math.unit(3, "inches")
  10705. },
  10706. {
  10707. name: "Human Scale",
  10708. height: math.unit(6, "feet")
  10709. },
  10710. {
  10711. name: "Librarian",
  10712. height: math.unit(50, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Immense",
  10717. height: math.unit(200, "miles")
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10723. {
  10724. front: {
  10725. height: math.unit(6, "feet"),
  10726. weight: math.unit(180, "lbs"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/danni-rosie/front.svg",
  10730. extra: 1260 / 1128,
  10731. bottom: 0.022
  10732. }
  10733. },
  10734. },
  10735. [
  10736. {
  10737. name: "Micro",
  10738. height: math.unit(2, "inches"),
  10739. default: true
  10740. },
  10741. ]
  10742. ))
  10743. characterMakers.push(() => makeCharacter(
  10744. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10745. {
  10746. front: {
  10747. height: math.unit(5 + 9 / 12, "feet"),
  10748. weight: math.unit(220, "lb"),
  10749. name: "Front",
  10750. image: {
  10751. source: "./media/characters/samantha-kruse/front.svg",
  10752. extra: (985 / 935),
  10753. bottom: 0.03
  10754. }
  10755. },
  10756. frontUndressed: {
  10757. height: math.unit(5 + 9 / 12, "feet"),
  10758. weight: math.unit(220, "lb"),
  10759. name: "Front (Undressed)",
  10760. image: {
  10761. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10762. extra: (973 / 923),
  10763. bottom: 0.025
  10764. }
  10765. },
  10766. fat: {
  10767. height: math.unit(5 + 9 / 12, "feet"),
  10768. weight: math.unit(900, "lb"),
  10769. name: "Front (Fat)",
  10770. image: {
  10771. source: "./media/characters/samantha-kruse/fat.svg",
  10772. extra: 2688 / 2561
  10773. }
  10774. },
  10775. },
  10776. [
  10777. {
  10778. name: "Normal",
  10779. height: math.unit(5 + 9 / 12, "feet"),
  10780. default: true
  10781. }
  10782. ]
  10783. ))
  10784. characterMakers.push(() => makeCharacter(
  10785. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10786. {
  10787. back: {
  10788. height: math.unit(5 + 4 / 12, "feet"),
  10789. weight: math.unit(4963, "lb"),
  10790. name: "Back",
  10791. image: {
  10792. source: "./media/characters/amelia-rosie/back.svg",
  10793. extra: 1113 / 963,
  10794. bottom: 0.01
  10795. }
  10796. },
  10797. },
  10798. [
  10799. {
  10800. name: "Level 0",
  10801. height: math.unit(5 + 4 / 12, "feet")
  10802. },
  10803. {
  10804. name: "Level 1",
  10805. height: math.unit(164597, "feet"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Level 2",
  10810. height: math.unit(956243, "miles")
  10811. },
  10812. {
  10813. name: "Level 3",
  10814. height: math.unit(29421709423, "miles")
  10815. },
  10816. {
  10817. name: "Level 4",
  10818. height: math.unit(154, "lightyears")
  10819. },
  10820. {
  10821. name: "Level 5",
  10822. height: math.unit(4738272, "lightyears")
  10823. },
  10824. {
  10825. name: "Level 6",
  10826. height: math.unit(145787152896, "lightyears")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(5 + 11 / 12, "feet"),
  10835. weight: math.unit(65, "kg"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/rook-kitara/front.svg",
  10839. extra: 1347 / 1274,
  10840. bottom: 0.005
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Totally Unfair",
  10847. height: math.unit(1.8, "mm")
  10848. },
  10849. {
  10850. name: "Lap Rookie",
  10851. height: math.unit(1.4, "feet")
  10852. },
  10853. {
  10854. name: "Normal",
  10855. height: math.unit(5 + 11 / 12, "feet"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "How Did This Happen",
  10860. height: math.unit(80, "miles")
  10861. }
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(7, "feet"),
  10869. weight: math.unit(300, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/pisces/front.svg",
  10873. extra: 2255 / 2115,
  10874. bottom: 0.03
  10875. }
  10876. },
  10877. back: {
  10878. height: math.unit(7, "feet"),
  10879. weight: math.unit(300, "lb"),
  10880. name: "Back",
  10881. image: {
  10882. source: "./media/characters/pisces/back.svg",
  10883. extra: 2146 / 2055,
  10884. bottom: 0.04
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Normal",
  10891. height: math.unit(7, "feet"),
  10892. default: true
  10893. },
  10894. {
  10895. name: "Swimming Pool",
  10896. height: math.unit(12.2, "meters")
  10897. },
  10898. {
  10899. name: "Olympic Swimming Pool",
  10900. height: math.unit(56.3, "meters")
  10901. },
  10902. {
  10903. name: "Lake Superior",
  10904. height: math.unit(93900, "meters")
  10905. },
  10906. {
  10907. name: "Mediterranean Sea",
  10908. height: math.unit(644457, "meters")
  10909. },
  10910. {
  10911. name: "World's Oceans",
  10912. height: math.unit(4567491, "meters")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(2.3, "meters"),
  10921. weight: math.unit(120, "kg"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/zelas/front.svg"
  10925. }
  10926. },
  10927. side: {
  10928. height: math.unit(2.3, "meters"),
  10929. weight: math.unit(120, "kg"),
  10930. name: "Side",
  10931. image: {
  10932. source: "./media/characters/zelas/side.svg"
  10933. }
  10934. },
  10935. back: {
  10936. height: math.unit(2.3, "meters"),
  10937. weight: math.unit(120, "kg"),
  10938. name: "Back",
  10939. image: {
  10940. source: "./media/characters/zelas/back.svg"
  10941. }
  10942. },
  10943. foot: {
  10944. height: math.unit(1.116, "feet"),
  10945. name: "Foot",
  10946. image: {
  10947. source: "./media/characters/zelas/foot.svg"
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(2.3, "meters")
  10955. },
  10956. {
  10957. name: "Macro",
  10958. height: math.unit(30, "meters"),
  10959. default: true
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10965. {
  10966. front: {
  10967. height: math.unit(1, "inch"),
  10968. weight: math.unit(0.21, "grams"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/talbot/front.svg",
  10972. extra: 594 / 544
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(1, "inch"),
  10980. default: true
  10981. },
  10982. ]
  10983. ))
  10984. characterMakers.push(() => makeCharacter(
  10985. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10986. {
  10987. front: {
  10988. height: math.unit(3 + 3 / 12, "feet"),
  10989. weight: math.unit(51.8, "lb"),
  10990. name: "Front",
  10991. image: {
  10992. source: "./media/characters/fliss/front.svg",
  10993. extra: 840 / 640
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Teeny Tiny",
  11000. height: math.unit(1, "mm")
  11001. },
  11002. {
  11003. name: "Small",
  11004. height: math.unit(1, "inch"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Standard Sylveon",
  11009. height: math.unit(3 + 3 / 12, "feet")
  11010. },
  11011. {
  11012. name: "Large Nuisance",
  11013. height: math.unit(33, "feet")
  11014. },
  11015. {
  11016. name: "City Filler",
  11017. height: math.unit(3000, "feet")
  11018. },
  11019. {
  11020. name: "New Horizon",
  11021. height: math.unit(6000, "miles")
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(5, "cm"),
  11030. weight: math.unit(1.94, "g"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/fleta/front.svg",
  11034. extra: 835 / 803
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(5, "cm"),
  11039. weight: math.unit(1.94, "g"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/fleta/back.svg",
  11043. extra: 835 / 803
  11044. }
  11045. },
  11046. },
  11047. [
  11048. {
  11049. name: "Micro",
  11050. height: math.unit(5, "cm"),
  11051. default: true
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(6, "feet"),
  11060. weight: math.unit(225, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/dominic/front.svg",
  11064. extra: 1770 / 1620,
  11065. bottom: 0.025
  11066. }
  11067. },
  11068. back: {
  11069. height: math.unit(6, "feet"),
  11070. weight: math.unit(225, "lb"),
  11071. name: "Back",
  11072. image: {
  11073. source: "./media/characters/dominic/back.svg",
  11074. extra: 1745 / 1620,
  11075. bottom: 0.065
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Nano",
  11082. height: math.unit(0.1, "mm")
  11083. },
  11084. {
  11085. name: "Micro-",
  11086. height: math.unit(1, "mm")
  11087. },
  11088. {
  11089. name: "Micro",
  11090. height: math.unit(4, "inches")
  11091. },
  11092. {
  11093. name: "Normal",
  11094. height: math.unit(6 + 4 / 12, "feet"),
  11095. default: true
  11096. },
  11097. {
  11098. name: "Macro",
  11099. height: math.unit(115, "feet")
  11100. },
  11101. {
  11102. name: "Macro+",
  11103. height: math.unit(955, "feet")
  11104. },
  11105. {
  11106. name: "Megamacro",
  11107. height: math.unit(8990, "feet")
  11108. },
  11109. {
  11110. name: "Gigmacro",
  11111. height: math.unit(9310, "miles")
  11112. },
  11113. {
  11114. name: "Teramacro",
  11115. height: math.unit(1567005010, "miles")
  11116. },
  11117. {
  11118. name: "Examacro",
  11119. height: math.unit(1425, "parsecs")
  11120. },
  11121. ]
  11122. ))
  11123. characterMakers.push(() => makeCharacter(
  11124. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11125. {
  11126. front: {
  11127. height: math.unit(400, "feet"),
  11128. weight: math.unit(44444444, "lb"),
  11129. name: "Front",
  11130. image: {
  11131. source: "./media/characters/major-colonel/front.svg"
  11132. }
  11133. },
  11134. back: {
  11135. height: math.unit(400, "feet"),
  11136. weight: math.unit(44444444, "lb"),
  11137. name: "Back",
  11138. image: {
  11139. source: "./media/characters/major-colonel/back.svg"
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Macro",
  11146. height: math.unit(400, "feet"),
  11147. default: true
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11153. {
  11154. catFront: {
  11155. height: math.unit(6, "feet"),
  11156. weight: math.unit(120, "lb"),
  11157. name: "Front (Cat Side)",
  11158. image: {
  11159. source: "./media/characters/axel-lycan/cat-front.svg",
  11160. extra: 430 / 402,
  11161. bottom: 43 / 472.35
  11162. }
  11163. },
  11164. catBack: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(120, "lb"),
  11167. name: "Back (Cat Side)",
  11168. image: {
  11169. source: "./media/characters/axel-lycan/cat-back.svg",
  11170. extra: 447 / 419,
  11171. bottom: 23.3 / 469
  11172. }
  11173. },
  11174. wolfFront: {
  11175. height: math.unit(6, "feet"),
  11176. weight: math.unit(120, "lb"),
  11177. name: "Front (Wolf Side)",
  11178. image: {
  11179. source: "./media/characters/axel-lycan/wolf-front.svg",
  11180. extra: 485 / 456,
  11181. bottom: 19 / 504
  11182. }
  11183. },
  11184. wolfBack: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(120, "lb"),
  11187. name: "Back (Wolf Side)",
  11188. image: {
  11189. source: "./media/characters/axel-lycan/wolf-back.svg",
  11190. extra: 475 / 438,
  11191. bottom: 39.2 / 514
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(1, "km"),
  11199. default: true
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11205. {
  11206. front: {
  11207. height: math.unit(5 + 9 / 12, "feet"),
  11208. weight: math.unit(175, "lb"),
  11209. name: "Front",
  11210. image: {
  11211. source: "./media/characters/vanrel-hyena/front.svg",
  11212. extra: 1086 / 1010,
  11213. bottom: 0.04
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Normal",
  11220. height: math.unit(5 + 9 / 12, "feet"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11227. {
  11228. front: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(103, "lb"),
  11231. name: "Front",
  11232. image: {
  11233. source: "./media/characters/abbott-absol/front.svg",
  11234. extra: 765/694,
  11235. bottom: 47/812
  11236. }
  11237. },
  11238. },
  11239. [
  11240. {
  11241. name: "Megamicro",
  11242. height: math.unit(0.1, "mm")
  11243. },
  11244. {
  11245. name: "Micro",
  11246. height: math.unit(1, "inch")
  11247. },
  11248. {
  11249. name: "Normal",
  11250. height: math.unit(6, "feet"),
  11251. default: true
  11252. },
  11253. ]
  11254. ))
  11255. characterMakers.push(() => makeCharacter(
  11256. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11257. {
  11258. front: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(264, "lb"),
  11261. name: "Front",
  11262. image: {
  11263. source: "./media/characters/hector/front.svg",
  11264. extra: 2280 / 2130,
  11265. bottom: 0.07
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Normal",
  11272. height: math.unit(12.25, "foot"),
  11273. default: true
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(160, "feet")
  11278. },
  11279. ]
  11280. ))
  11281. characterMakers.push(() => makeCharacter(
  11282. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11283. {
  11284. front: {
  11285. height: math.unit(6, "feet"),
  11286. weight: math.unit(150, "lb"),
  11287. name: "Front",
  11288. image: {
  11289. source: "./media/characters/sal/front.svg",
  11290. extra: 1846 / 1699,
  11291. bottom: 0.04
  11292. }
  11293. },
  11294. },
  11295. [
  11296. {
  11297. name: "Megamacro",
  11298. height: math.unit(10, "miles"),
  11299. default: true
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11305. {
  11306. front: {
  11307. height: math.unit(3, "meters"),
  11308. weight: math.unit(450, "kg"),
  11309. name: "front",
  11310. image: {
  11311. source: "./media/characters/ranger/front.svg",
  11312. extra: 2401 / 2243,
  11313. bottom: 0.05
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(3, "meters"),
  11321. default: true
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(14, "feet"),
  11330. weight: math.unit(800, "kg"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/theresa/front.svg",
  11334. extra: 3575 / 3346,
  11335. bottom: 0.03
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(14, "feet"),
  11343. default: true
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11349. {
  11350. front: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(3, "kg"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/ine/front.svg",
  11356. extra: 678 / 539,
  11357. bottom: 0.023
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(2.265, "feet"),
  11365. default: true
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(5, "feet"),
  11374. weight: math.unit(30, "kg"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/vial/front.svg",
  11378. extra: 1365 / 1277,
  11379. bottom: 0.04
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(5, "feet"),
  11387. default: true
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11393. {
  11394. side: {
  11395. height: math.unit(3.4, "meters"),
  11396. weight: math.unit(1000, "lb"),
  11397. name: "Side",
  11398. image: {
  11399. source: "./media/characters/rovoska/side.svg",
  11400. extra: 4403 / 1515
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(3.4, "meters"),
  11408. default: true
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(8, "feet"),
  11417. weight: math.unit(315, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/gunner-rotthbauer/front.svg"
  11421. }
  11422. },
  11423. back: {
  11424. height: math.unit(8, "feet"),
  11425. weight: math.unit(315, "lb"),
  11426. name: "Back",
  11427. image: {
  11428. source: "./media/characters/gunner-rotthbauer/back.svg"
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Micro",
  11435. height: math.unit(3.5, "inches")
  11436. },
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(8, "feet"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Macro",
  11444. height: math.unit(250, "feet")
  11445. },
  11446. {
  11447. name: "Megamacro",
  11448. height: math.unit(1, "AU")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(5 + 5 / 12, "feet"),
  11457. weight: math.unit(140, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/allatia/front.svg",
  11461. extra: 1227 / 1180,
  11462. bottom: 0.027
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(5 + 5 / 12, "feet")
  11470. },
  11471. {
  11472. name: "Macro",
  11473. height: math.unit(250, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(8, "miles")
  11479. }
  11480. ]
  11481. ))
  11482. characterMakers.push(() => makeCharacter(
  11483. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11484. {
  11485. front: {
  11486. height: math.unit(6, "feet"),
  11487. weight: math.unit(120, "lb"),
  11488. name: "Front",
  11489. image: {
  11490. source: "./media/characters/tene/front.svg",
  11491. extra: 814/750,
  11492. bottom: 36/850
  11493. }
  11494. },
  11495. stomping: {
  11496. height: math.unit(2.025, "meters"),
  11497. weight: math.unit(120, "lb"),
  11498. name: "Stomping",
  11499. image: {
  11500. source: "./media/characters/tene/stomping.svg",
  11501. extra: 885/821,
  11502. bottom: 15/900
  11503. }
  11504. },
  11505. sitting: {
  11506. height: math.unit(1, "meter"),
  11507. weight: math.unit(120, "lb"),
  11508. name: "Sitting",
  11509. image: {
  11510. source: "./media/characters/tene/sitting.svg",
  11511. extra: 396/366,
  11512. bottom: 79/475
  11513. }
  11514. },
  11515. smiling: {
  11516. height: math.unit(1.2, "feet"),
  11517. name: "Smiling",
  11518. image: {
  11519. source: "./media/characters/tene/smiling.svg",
  11520. extra: 1364/1071,
  11521. bottom: 0/1364
  11522. }
  11523. },
  11524. smug: {
  11525. height: math.unit(1.3, "feet"),
  11526. name: "Smug",
  11527. image: {
  11528. source: "./media/characters/tene/smug.svg",
  11529. extra: 1323/1082,
  11530. bottom: 0/1323
  11531. }
  11532. },
  11533. feral: {
  11534. height: math.unit(3.9, "feet"),
  11535. weight: math.unit(250, "lb"),
  11536. name: "Feral",
  11537. image: {
  11538. source: "./media/characters/tene/feral.svg",
  11539. extra: 717 / 458,
  11540. bottom: 0.179
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(6, "feet")
  11548. },
  11549. {
  11550. name: "Macro",
  11551. height: math.unit(300, "feet"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(5, "miles")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11562. {
  11563. side: {
  11564. height: math.unit(6, "feet"),
  11565. name: "Side",
  11566. image: {
  11567. source: "./media/characters/evander/side.svg",
  11568. extra: 877 / 477
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Normal",
  11575. height: math.unit(0.83, "meters"),
  11576. default: true
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(12, "feet"),
  11585. weight: math.unit(1000, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11589. extra: 1762 / 1611
  11590. }
  11591. },
  11592. back: {
  11593. height: math.unit(12, "feet"),
  11594. weight: math.unit(1000, "lb"),
  11595. name: "Back",
  11596. image: {
  11597. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11598. extra: 1762 / 1611
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(12, "feet"),
  11606. default: true
  11607. },
  11608. {
  11609. name: "Kaiju",
  11610. height: math.unit(150, "feet")
  11611. },
  11612. ]
  11613. ))
  11614. characterMakers.push(() => makeCharacter(
  11615. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11616. {
  11617. front: {
  11618. height: math.unit(5 + 11/12, "feet"),
  11619. weight: math.unit(180, "lb"),
  11620. name: "Front",
  11621. image: {
  11622. source: "./media/characters/zero-alurus/front.svg",
  11623. extra: 1032/957,
  11624. bottom: 10/1042
  11625. }
  11626. },
  11627. back: {
  11628. height: math.unit(5 + 11/12, "feet"),
  11629. weight: math.unit(180, "lb"),
  11630. name: "Back",
  11631. image: {
  11632. source: "./media/characters/zero-alurus/back.svg",
  11633. extra: 1027/950,
  11634. bottom: 12/1039
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(5 + 11 / 12, "feet")
  11642. },
  11643. {
  11644. name: "Mini-Macro",
  11645. height: math.unit(25, "feet")
  11646. },
  11647. {
  11648. name: "Macro",
  11649. height: math.unit(90, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Macro+",
  11654. height: math.unit(500, "feet")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(1200, "feet")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(200, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/mega-shi/front.svg",
  11671. extra: 1279 / 1250,
  11672. bottom: 0.02
  11673. }
  11674. },
  11675. back: {
  11676. height: math.unit(6, "feet"),
  11677. weight: math.unit(200, "lb"),
  11678. name: "Back",
  11679. image: {
  11680. source: "./media/characters/mega-shi/back.svg",
  11681. extra: 1279 / 1250,
  11682. bottom: 0.02
  11683. }
  11684. },
  11685. },
  11686. [
  11687. {
  11688. name: "Micro",
  11689. height: math.unit(16 + 6 / 12, "feet")
  11690. },
  11691. {
  11692. name: "Third Dimension",
  11693. height: math.unit(40, "meters")
  11694. },
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(660, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Megamacro",
  11702. height: math.unit(10, "miles")
  11703. },
  11704. {
  11705. name: "Planetary Launch",
  11706. height: math.unit(500, "miles")
  11707. },
  11708. {
  11709. name: "Interstellar",
  11710. height: math.unit(1e9, "miles")
  11711. },
  11712. {
  11713. name: "Leaving the Universe",
  11714. height: math.unit(1, "gigaparsec")
  11715. },
  11716. {
  11717. name: "Travelling Universes",
  11718. height: math.unit(30e15, "parsecs")
  11719. },
  11720. ]
  11721. ))
  11722. characterMakers.push(() => makeCharacter(
  11723. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11724. {
  11725. front: {
  11726. height: math.unit(5 + 4/12, "feet"),
  11727. weight: math.unit(120, "lb"),
  11728. name: "Front",
  11729. image: {
  11730. source: "./media/characters/odyssey/front.svg",
  11731. extra: 1747/1571,
  11732. bottom: 47/1794
  11733. }
  11734. },
  11735. side: {
  11736. height: math.unit(5.1, "feet"),
  11737. weight: math.unit(120, "lb"),
  11738. name: "Side",
  11739. image: {
  11740. source: "./media/characters/odyssey/side.svg",
  11741. extra: 1847/1619,
  11742. bottom: 47/1894
  11743. }
  11744. },
  11745. lounging: {
  11746. height: math.unit(1.464, "feet"),
  11747. weight: math.unit(120, "lb"),
  11748. name: "Lounging",
  11749. image: {
  11750. source: "./media/characters/odyssey/lounging.svg",
  11751. extra: 1235/837,
  11752. bottom: 551/1786
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(5 + 4 / 12, "feet")
  11760. },
  11761. {
  11762. name: "Macro",
  11763. height: math.unit(1, "km")
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(3000, "km")
  11768. },
  11769. {
  11770. name: "Gigamacro",
  11771. height: math.unit(1, "AU"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Omniversal",
  11776. height: math.unit(100e14, "lightyears")
  11777. },
  11778. ]
  11779. ))
  11780. characterMakers.push(() => makeCharacter(
  11781. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11782. {
  11783. front: {
  11784. height: math.unit(5 + 10/12, "feet"),
  11785. name: "Front",
  11786. image: {
  11787. source: "./media/characters/mekuto/front.svg",
  11788. extra: 875/835,
  11789. bottom: 46/921
  11790. }
  11791. },
  11792. },
  11793. [
  11794. {
  11795. name: "Minimicro",
  11796. height: math.unit(0.2, "inches")
  11797. },
  11798. {
  11799. name: "Micro",
  11800. height: math.unit(1.5, "inches")
  11801. },
  11802. {
  11803. name: "Normal",
  11804. height: math.unit(5 + 10 / 12, "feet"),
  11805. default: true
  11806. },
  11807. {
  11808. name: "Minimacro",
  11809. height: math.unit(17 + 9 / 12, "feet")
  11810. },
  11811. {
  11812. name: "Macro",
  11813. height: math.unit(177.5, "feet")
  11814. },
  11815. {
  11816. name: "Megamacro",
  11817. height: math.unit(152, "miles")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6.5, "inches"),
  11826. weight: math.unit(13, "oz"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/dafydd-tomos/front.svg",
  11830. extra: 2990 / 2603,
  11831. bottom: 0.03
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Micro",
  11838. height: math.unit(6.5, "inches"),
  11839. default: true
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/splinter/front.svg",
  11852. extra: 2990 / 2882,
  11853. bottom: 0.04
  11854. }
  11855. },
  11856. back: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(150, "lb"),
  11859. name: "Back",
  11860. image: {
  11861. source: "./media/characters/splinter/back.svg",
  11862. extra: 2990 / 2882,
  11863. bottom: 0.04
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(6, "feet")
  11871. },
  11872. {
  11873. name: "Macro",
  11874. height: math.unit(230, "meters"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(4 + 10 / 12, "feet"),
  11884. weight: math.unit(480, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/snow-gabumon/front.svg",
  11888. extra: 1140 / 963,
  11889. bottom: 0.058
  11890. }
  11891. },
  11892. back: {
  11893. height: math.unit(4 + 10 / 12, "feet"),
  11894. weight: math.unit(480, "lb"),
  11895. name: "Back",
  11896. image: {
  11897. source: "./media/characters/snow-gabumon/back.svg",
  11898. extra: 1115 / 962,
  11899. bottom: 0.041
  11900. }
  11901. },
  11902. frontUndresed: {
  11903. height: math.unit(4 + 10 / 12, "feet"),
  11904. weight: math.unit(480, "lb"),
  11905. name: "Front (Undressed)",
  11906. image: {
  11907. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11908. extra: 1061 / 960,
  11909. bottom: 0.045
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Micro",
  11916. height: math.unit(1, "inch")
  11917. },
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(4 + 10 / 12, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(200, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro",
  11929. height: math.unit(120, "miles")
  11930. },
  11931. {
  11932. name: "Gigamacro",
  11933. height: math.unit(9800, "miles")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(1.7, "meters"),
  11942. weight: math.unit(140, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/moody/front.svg",
  11946. extra: 3226 / 3007,
  11947. bottom: 0.087
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Micro",
  11954. height: math.unit(1, "mm")
  11955. },
  11956. {
  11957. name: "Normal",
  11958. height: math.unit(1.7, "meters"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Macro",
  11963. height: math.unit(80, "meters")
  11964. },
  11965. {
  11966. name: "Macro+",
  11967. height: math.unit(500, "meters")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(150, "lb"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/zyas/front.svg",
  11980. extra: 1180 / 1120,
  11981. bottom: 0.045
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(10, "feet"),
  11989. default: true
  11990. },
  11991. {
  11992. name: "Macro",
  11993. height: math.unit(500, "feet")
  11994. },
  11995. {
  11996. name: "Megamacro",
  11997. height: math.unit(5, "miles")
  11998. },
  11999. {
  12000. name: "Teramacro",
  12001. height: math.unit(150000, "miles")
  12002. },
  12003. ]
  12004. ))
  12005. characterMakers.push(() => makeCharacter(
  12006. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12007. {
  12008. front: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Front",
  12012. image: {
  12013. source: "./media/characters/cuon/front.svg",
  12014. extra: 1390 / 1320,
  12015. bottom: 0.008
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Micro",
  12022. height: math.unit(3, "inches")
  12023. },
  12024. {
  12025. name: "Normal",
  12026. height: math.unit(18 + 9 / 12, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Macro",
  12031. height: math.unit(360, "feet")
  12032. },
  12033. {
  12034. name: "Megamacro",
  12035. height: math.unit(360, "miles")
  12036. },
  12037. ]
  12038. ))
  12039. characterMakers.push(() => makeCharacter(
  12040. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12041. {
  12042. front: {
  12043. height: math.unit(2.4, "meters"),
  12044. weight: math.unit(70, "kg"),
  12045. name: "Front",
  12046. image: {
  12047. source: "./media/characters/nyanuxk/front.svg",
  12048. extra: 1172 / 1084,
  12049. bottom: 0.065
  12050. }
  12051. },
  12052. side: {
  12053. height: math.unit(2.4, "meters"),
  12054. weight: math.unit(70, "kg"),
  12055. name: "Side",
  12056. image: {
  12057. source: "./media/characters/nyanuxk/side.svg",
  12058. extra: 1190 / 1132,
  12059. bottom: 0.007
  12060. }
  12061. },
  12062. back: {
  12063. height: math.unit(2.4, "meters"),
  12064. weight: math.unit(70, "kg"),
  12065. name: "Back",
  12066. image: {
  12067. source: "./media/characters/nyanuxk/back.svg",
  12068. extra: 1200 / 1141,
  12069. bottom: 0.015
  12070. }
  12071. },
  12072. foot: {
  12073. height: math.unit(0.52, "meters"),
  12074. name: "Foot",
  12075. image: {
  12076. source: "./media/characters/nyanuxk/foot.svg"
  12077. }
  12078. },
  12079. },
  12080. [
  12081. {
  12082. name: "Micro",
  12083. height: math.unit(2, "cm")
  12084. },
  12085. {
  12086. name: "Normal",
  12087. height: math.unit(2.4, "meters"),
  12088. default: true
  12089. },
  12090. {
  12091. name: "Smaller Macro",
  12092. height: math.unit(120, "meters")
  12093. },
  12094. {
  12095. name: "Bigger Macro",
  12096. height: math.unit(1.2, "km")
  12097. },
  12098. {
  12099. name: "Megamacro",
  12100. height: math.unit(15, "kilometers")
  12101. },
  12102. {
  12103. name: "Gigamacro",
  12104. height: math.unit(2000, "km")
  12105. },
  12106. {
  12107. name: "Teramacro",
  12108. height: math.unit(500000, "km")
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12114. {
  12115. side: {
  12116. height: math.unit(6, "feet"),
  12117. name: "Side",
  12118. image: {
  12119. source: "./media/characters/ailbhe/side.svg",
  12120. extra: 757 / 464,
  12121. bottom: 0.041
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Normal",
  12128. height: math.unit(1.07, "meters"),
  12129. default: true
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(120, "kg"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/zevulfius/front.svg",
  12142. extra: 965 / 903
  12143. }
  12144. },
  12145. side: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(120, "kg"),
  12148. name: "Side",
  12149. image: {
  12150. source: "./media/characters/zevulfius/side.svg",
  12151. extra: 939 / 900
  12152. }
  12153. },
  12154. back: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(120, "kg"),
  12157. name: "Back",
  12158. image: {
  12159. source: "./media/characters/zevulfius/back.svg",
  12160. extra: 918 / 854,
  12161. bottom: 0.005
  12162. }
  12163. },
  12164. foot: {
  12165. height: math.unit(6 / 3.72, "feet"),
  12166. name: "Foot",
  12167. image: {
  12168. source: "./media/characters/zevulfius/foot.svg"
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Macro",
  12175. height: math.unit(750, "meters")
  12176. },
  12177. {
  12178. name: "Megamacro",
  12179. height: math.unit(20, "km"),
  12180. default: true
  12181. },
  12182. {
  12183. name: "Gigamacro",
  12184. height: math.unit(2000, "km")
  12185. },
  12186. {
  12187. name: "Teramacro",
  12188. height: math.unit(250000, "km")
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12194. {
  12195. front: {
  12196. height: math.unit(100, "feet"),
  12197. weight: math.unit(350, "kg"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/rikes/front.svg",
  12201. extra: 1565 / 1483,
  12202. bottom: 0.017
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Macro",
  12209. height: math.unit(100, "feet"),
  12210. default: true
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12216. {
  12217. front: {
  12218. height: math.unit(8, "feet"),
  12219. weight: math.unit(356, "lb"),
  12220. name: "Front",
  12221. image: {
  12222. source: "./media/characters/adam-silver-mane/front.svg",
  12223. extra: 1036/937,
  12224. bottom: 63/1099
  12225. }
  12226. },
  12227. side: {
  12228. height: math.unit(8, "feet"),
  12229. weight: math.unit(356, "lb"),
  12230. name: "Side",
  12231. image: {
  12232. source: "./media/characters/adam-silver-mane/side.svg",
  12233. extra: 997/901,
  12234. bottom: 59/1056
  12235. }
  12236. },
  12237. frontNsfw: {
  12238. height: math.unit(8, "feet"),
  12239. weight: math.unit(356, "lb"),
  12240. name: "Front (NSFW)",
  12241. image: {
  12242. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12243. extra: 1036/937,
  12244. bottom: 63/1099
  12245. }
  12246. },
  12247. sideNsfw: {
  12248. height: math.unit(8, "feet"),
  12249. weight: math.unit(356, "lb"),
  12250. name: "Side (NSFW)",
  12251. image: {
  12252. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12253. extra: 997/901,
  12254. bottom: 59/1056
  12255. }
  12256. },
  12257. dick: {
  12258. height: math.unit(2.1, "feet"),
  12259. name: "Dick",
  12260. image: {
  12261. source: "./media/characters/adam-silver-mane/dick.svg"
  12262. }
  12263. },
  12264. taur: {
  12265. height: math.unit(16, "feet"),
  12266. weight: math.unit(1500, "kg"),
  12267. name: "Taur",
  12268. image: {
  12269. source: "./media/characters/adam-silver-mane/taur.svg",
  12270. extra: 1713 / 1571,
  12271. bottom: 0.01
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(8, "feet")
  12279. },
  12280. {
  12281. name: "Minimacro",
  12282. height: math.unit(80, "feet")
  12283. },
  12284. {
  12285. name: "MDA",
  12286. height: math.unit(80, "meters")
  12287. },
  12288. {
  12289. name: "Macro",
  12290. height: math.unit(800, "feet"),
  12291. default: true
  12292. },
  12293. {
  12294. name: "Megamacro",
  12295. height: math.unit(8000, "feet")
  12296. },
  12297. {
  12298. name: "Gigamacro",
  12299. height: math.unit(800, "miles")
  12300. },
  12301. {
  12302. name: "Teramacro",
  12303. height: math.unit(80000, "miles")
  12304. },
  12305. {
  12306. name: "Celestial",
  12307. height: math.unit(8e6, "miles")
  12308. },
  12309. {
  12310. name: "Star Dragon",
  12311. height: math.unit(800000, "parsecs")
  12312. },
  12313. {
  12314. name: "Godly",
  12315. height: math.unit(800, "teraparsecs")
  12316. },
  12317. ]
  12318. ))
  12319. characterMakers.push(() => makeCharacter(
  12320. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12321. {
  12322. front: {
  12323. height: math.unit(6, "feet"),
  12324. weight: math.unit(150, "lb"),
  12325. name: "Front",
  12326. image: {
  12327. source: "./media/characters/ky'owin/front.svg",
  12328. extra: 3862/3053,
  12329. bottom: 74/3936
  12330. }
  12331. },
  12332. },
  12333. [
  12334. {
  12335. name: "Normal",
  12336. height: math.unit(6 + 8 / 12, "feet")
  12337. },
  12338. {
  12339. name: "Large",
  12340. height: math.unit(68, "feet")
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(132, "feet")
  12345. },
  12346. {
  12347. name: "Macro+",
  12348. height: math.unit(340, "feet")
  12349. },
  12350. {
  12351. name: "Macro++",
  12352. height: math.unit(680, "feet"),
  12353. default: true
  12354. },
  12355. {
  12356. name: "Megamacro",
  12357. height: math.unit(1, "mile")
  12358. },
  12359. {
  12360. name: "Megamacro+",
  12361. height: math.unit(10, "miles")
  12362. },
  12363. ]
  12364. ))
  12365. characterMakers.push(() => makeCharacter(
  12366. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12367. {
  12368. front: {
  12369. height: math.unit(4, "feet"),
  12370. weight: math.unit(50, "lb"),
  12371. name: "Front",
  12372. image: {
  12373. source: "./media/characters/mal/front.svg",
  12374. extra: 785 / 724,
  12375. bottom: 0.07
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Micro",
  12382. height: math.unit(4, "inches")
  12383. },
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(4, "feet"),
  12387. default: true
  12388. },
  12389. {
  12390. name: "Macro",
  12391. height: math.unit(200, "feet")
  12392. },
  12393. ]
  12394. ))
  12395. characterMakers.push(() => makeCharacter(
  12396. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12397. {
  12398. front: {
  12399. height: math.unit(6, "feet"),
  12400. weight: math.unit(150, "lb"),
  12401. name: "Front",
  12402. image: {
  12403. source: "./media/characters/jordan-deware/front.svg",
  12404. extra: 1191 / 1012
  12405. }
  12406. },
  12407. },
  12408. [
  12409. {
  12410. name: "Nano",
  12411. height: math.unit(0.01, "mm")
  12412. },
  12413. {
  12414. name: "Minimicro",
  12415. height: math.unit(1, "mm")
  12416. },
  12417. {
  12418. name: "Micro",
  12419. height: math.unit(0.5, "inches")
  12420. },
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(4, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Minimacro",
  12428. height: math.unit(40, "meters")
  12429. },
  12430. {
  12431. name: "Small Macro",
  12432. height: math.unit(400, "meters")
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(4, "miles")
  12437. },
  12438. {
  12439. name: "Megamacro",
  12440. height: math.unit(40, "miles")
  12441. },
  12442. {
  12443. name: "Megamacro+",
  12444. height: math.unit(400, "miles")
  12445. },
  12446. {
  12447. name: "Gigamacro",
  12448. height: math.unit(400000, "miles")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(15, "feet"),
  12457. weight: math.unit(3000, "kg"),
  12458. preyCapacity: math.unit(450, "people"),
  12459. name: "Front",
  12460. image: {
  12461. source: "./media/characters/kimiko/front.svg",
  12462. extra: 875/832,
  12463. bottom: 36/911
  12464. },
  12465. extraAttributes: {
  12466. "pawSize": {
  12467. name: "Paw Size",
  12468. power: 1,
  12469. type: "length",
  12470. base: math.unit(0.9, "meters")
  12471. },
  12472. }
  12473. },
  12474. side: {
  12475. height: math.unit(15, "feet"),
  12476. weight: math.unit(3000, "kg"),
  12477. preyCapacity: math.unit(400, "people"),
  12478. name: "Side",
  12479. image: {
  12480. source: "./media/characters/kimiko/side.svg",
  12481. extra: 448/270,
  12482. bottom: 7/455
  12483. },
  12484. extraAttributes: {
  12485. "pawSize": {
  12486. name: "Paw Size",
  12487. power: 1,
  12488. type: "length",
  12489. base: math.unit(0.9, "meters")
  12490. },
  12491. }
  12492. },
  12493. maw: {
  12494. height: math.unit(0.81, "feet"),
  12495. name: "Maw",
  12496. image: {
  12497. source: "./media/characters/kimiko/maw.svg"
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(15, "feet"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(220, "feet")
  12510. },
  12511. {
  12512. name: "Macro+",
  12513. height: math.unit(1450, "feet")
  12514. },
  12515. {
  12516. name: "Megamacro",
  12517. height: math.unit(11500, "feet")
  12518. },
  12519. {
  12520. name: "Gigamacro",
  12521. height: math.unit(9500, "miles")
  12522. },
  12523. {
  12524. name: "Teramacro",
  12525. height: math.unit(2208005005, "miles")
  12526. },
  12527. {
  12528. name: "Examacro",
  12529. height: math.unit(2750, "parsecs")
  12530. },
  12531. {
  12532. name: "Zettamacro",
  12533. height: math.unit(101500, "parsecs")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(70, "kg"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/andrew-sleepy/front.svg"
  12546. }
  12547. },
  12548. side: {
  12549. height: math.unit(6, "feet"),
  12550. weight: math.unit(70, "kg"),
  12551. name: "Side",
  12552. image: {
  12553. source: "./media/characters/andrew-sleepy/side.svg"
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Micro",
  12560. height: math.unit(1, "mm"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/judio/front.svg",
  12574. extra: 1258 / 1110
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Normal",
  12581. height: math.unit(5 + 6 / 12, "feet")
  12582. },
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(1000, "feet"),
  12586. default: true
  12587. },
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(10, "miles")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12596. {
  12597. frontDressed: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(68, "kg"),
  12600. name: "Front (Dressed)",
  12601. image: {
  12602. source: "./media/characters/nomaxice/front-dressed.svg",
  12603. extra: 1137/824,
  12604. bottom: 74/1211
  12605. }
  12606. },
  12607. frontShorts: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(68, "kg"),
  12610. name: "Front (Shorts)",
  12611. image: {
  12612. source: "./media/characters/nomaxice/front-shorts.svg",
  12613. extra: 1137/824,
  12614. bottom: 74/1211
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(68, "kg"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/nomaxice/back.svg",
  12623. extra: 822/786,
  12624. bottom: 39/861
  12625. }
  12626. },
  12627. hand: {
  12628. height: math.unit(0.565, "feet"),
  12629. name: "Hand",
  12630. image: {
  12631. source: "./media/characters/nomaxice/hand.svg"
  12632. }
  12633. },
  12634. foot: {
  12635. height: math.unit(1, "feet"),
  12636. name: "Foot",
  12637. image: {
  12638. source: "./media/characters/nomaxice/foot.svg"
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Micro",
  12645. height: math.unit(8, "cm")
  12646. },
  12647. {
  12648. name: "Norm",
  12649. height: math.unit(1.82, "m")
  12650. },
  12651. {
  12652. name: "Norm+",
  12653. height: math.unit(8.8, "feet"),
  12654. default: true
  12655. },
  12656. {
  12657. name: "Big",
  12658. height: math.unit(8, "meters")
  12659. },
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(18, "meters")
  12663. },
  12664. {
  12665. name: "Macro+",
  12666. height: math.unit(88, "meters")
  12667. },
  12668. ]
  12669. ))
  12670. characterMakers.push(() => makeCharacter(
  12671. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12672. {
  12673. front: {
  12674. height: math.unit(12, "feet"),
  12675. weight: math.unit(1.5, "tons"),
  12676. name: "Front",
  12677. image: {
  12678. source: "./media/characters/dydros/front.svg",
  12679. extra: 863 / 800,
  12680. bottom: 0.015
  12681. }
  12682. },
  12683. back: {
  12684. height: math.unit(12, "feet"),
  12685. weight: math.unit(1.5, "tons"),
  12686. name: "Back",
  12687. image: {
  12688. source: "./media/characters/dydros/back.svg",
  12689. extra: 900 / 843,
  12690. bottom: 0.005
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(12, "feet"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(100, "kg"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/riggi/front.svg",
  12711. extra: 5787 / 5303
  12712. }
  12713. },
  12714. hyper: {
  12715. height: math.unit(6 * 5 / 3, "feet"),
  12716. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12717. name: "Hyper",
  12718. image: {
  12719. source: "./media/characters/riggi/hyper.svg",
  12720. extra: 3595 / 3485
  12721. }
  12722. },
  12723. },
  12724. [
  12725. {
  12726. name: "Small Macro",
  12727. height: math.unit(50, "feet")
  12728. },
  12729. {
  12730. name: "Default",
  12731. height: math.unit(200, "feet"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Loom",
  12736. height: math.unit(10000, "feet")
  12737. },
  12738. {
  12739. name: "Cruising Altitude",
  12740. height: math.unit(30000, "feet")
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(100, "miles")
  12745. },
  12746. {
  12747. name: "Continent Sized",
  12748. height: math.unit(2800, "miles")
  12749. },
  12750. {
  12751. name: "Earth Sized",
  12752. height: math.unit(8000, "miles")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(6, "feet"),
  12761. weight: math.unit(250, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/alexi/front.svg",
  12765. extra: 3483 / 3291,
  12766. bottom: 0.04
  12767. }
  12768. },
  12769. back: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(250, "lb"),
  12772. name: "Back",
  12773. image: {
  12774. source: "./media/characters/alexi/back.svg",
  12775. extra: 3533 / 3356,
  12776. bottom: 0.021
  12777. }
  12778. },
  12779. frontTransforming: {
  12780. height: math.unit(8.58, "feet"),
  12781. weight: math.unit(1300, "lb"),
  12782. name: "Transforming",
  12783. image: {
  12784. source: "./media/characters/alexi/front-transforming.svg",
  12785. extra: 437 / 409,
  12786. bottom: 19 / 458.66
  12787. }
  12788. },
  12789. frontTransformed: {
  12790. height: math.unit(12.5, "feet"),
  12791. weight: math.unit(4000, "lb"),
  12792. name: "Transformed",
  12793. image: {
  12794. source: "./media/characters/alexi/front-transformed.svg",
  12795. extra: 639 / 614,
  12796. bottom: 30.55 / 671
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Normal",
  12803. height: math.unit(14, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Minimacro",
  12808. height: math.unit(30, "meters")
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(500, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(9000, "km")
  12817. },
  12818. {
  12819. name: "Teramacro",
  12820. height: math.unit(384000, "km")
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(6, "feet"),
  12829. weight: math.unit(150, "lb"),
  12830. name: "Front",
  12831. image: {
  12832. source: "./media/characters/kayroo/front.svg",
  12833. extra: 1153 / 1038,
  12834. bottom: 0.06
  12835. }
  12836. },
  12837. foot: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Foot",
  12841. image: {
  12842. source: "./media/characters/kayroo/foot.svg"
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(8, "feet"),
  12850. default: true
  12851. },
  12852. {
  12853. name: "Minimacro",
  12854. height: math.unit(250, "feet")
  12855. },
  12856. {
  12857. name: "Macro",
  12858. height: math.unit(2800, "feet")
  12859. },
  12860. {
  12861. name: "Megamacro",
  12862. height: math.unit(5200, "feet")
  12863. },
  12864. {
  12865. name: "Gigamacro",
  12866. height: math.unit(27000, "feet")
  12867. },
  12868. {
  12869. name: "Omega",
  12870. height: math.unit(45000, "feet")
  12871. },
  12872. ]
  12873. ))
  12874. characterMakers.push(() => makeCharacter(
  12875. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12876. {
  12877. front: {
  12878. height: math.unit(18, "feet"),
  12879. weight: math.unit(5800, "lb"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/rhys/front.svg",
  12883. extra: 3386 / 3090,
  12884. bottom: 0.07
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Normal",
  12891. height: math.unit(18, "feet"),
  12892. default: true
  12893. },
  12894. {
  12895. name: "Working Size",
  12896. height: math.unit(200, "feet")
  12897. },
  12898. {
  12899. name: "Demolition Size",
  12900. height: math.unit(2000, "feet")
  12901. },
  12902. {
  12903. name: "Maximum Licensed Size",
  12904. height: math.unit(5, "miles")
  12905. },
  12906. {
  12907. name: "Maximum Observed Size",
  12908. height: math.unit(10, "yottameters")
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(250, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/toto/front.svg",
  12921. extra: 527 / 479,
  12922. bottom: 0.05
  12923. }
  12924. },
  12925. },
  12926. [
  12927. {
  12928. name: "Micro",
  12929. height: math.unit(3, "feet")
  12930. },
  12931. {
  12932. name: "Normal",
  12933. height: math.unit(10, "feet")
  12934. },
  12935. {
  12936. name: "Macro",
  12937. height: math.unit(150, "feet"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Megamacro",
  12942. height: math.unit(1200, "feet")
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "King", species: ["lion"], tags: ["anthro"] },
  12948. {
  12949. back: {
  12950. height: math.unit(6, "feet"),
  12951. weight: math.unit(150, "lb"),
  12952. name: "Back",
  12953. image: {
  12954. source: "./media/characters/king/back.svg"
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Micro",
  12961. height: math.unit(2, "inches")
  12962. },
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(8, "feet")
  12966. },
  12967. {
  12968. name: "Macro",
  12969. height: math.unit(200, "feet"),
  12970. default: true
  12971. },
  12972. {
  12973. name: "Megamacro",
  12974. height: math.unit(50, "miles")
  12975. },
  12976. ]
  12977. ))
  12978. characterMakers.push(() => makeCharacter(
  12979. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12980. {
  12981. front: {
  12982. height: math.unit(11, "feet"),
  12983. weight: math.unit(1400, "lb"),
  12984. name: "Front",
  12985. image: {
  12986. source: "./media/characters/cordite/front.svg",
  12987. extra: 1919/1827,
  12988. bottom: 40/1959
  12989. }
  12990. },
  12991. side: {
  12992. height: math.unit(11, "feet"),
  12993. weight: math.unit(1400, "lb"),
  12994. name: "Side",
  12995. image: {
  12996. source: "./media/characters/cordite/side.svg",
  12997. extra: 1908/1793,
  12998. bottom: 38/1946
  12999. }
  13000. },
  13001. back: {
  13002. height: math.unit(11, "feet"),
  13003. weight: math.unit(1400, "lb"),
  13004. name: "Back",
  13005. image: {
  13006. source: "./media/characters/cordite/back.svg",
  13007. extra: 1938/1837,
  13008. bottom: 10/1948
  13009. }
  13010. },
  13011. feral: {
  13012. height: math.unit(2, "feet"),
  13013. weight: math.unit(90, "lb"),
  13014. name: "Feral",
  13015. image: {
  13016. source: "./media/characters/cordite/feral.svg",
  13017. extra: 1260 / 755,
  13018. bottom: 0.05
  13019. }
  13020. },
  13021. },
  13022. [
  13023. {
  13024. name: "Normal",
  13025. height: math.unit(11, "feet"),
  13026. default: true
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(150, "lb"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/pianostrong/front.svg",
  13039. extra: 6577 / 6254,
  13040. bottom: 0.02
  13041. }
  13042. },
  13043. side: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Side",
  13047. image: {
  13048. source: "./media/characters/pianostrong/side.svg",
  13049. extra: 6106 / 5730
  13050. }
  13051. },
  13052. back: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Back",
  13056. image: {
  13057. source: "./media/characters/pianostrong/back.svg",
  13058. extra: 6085 / 5733,
  13059. bottom: 0.01
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Macro",
  13066. height: math.unit(100, "feet")
  13067. },
  13068. {
  13069. name: "Macro+",
  13070. height: math.unit(300, "feet"),
  13071. default: true
  13072. },
  13073. {
  13074. name: "Macro++",
  13075. height: math.unit(1000, "feet")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(6, "feet"),
  13084. weight: math.unit(150, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/kona/front.svg",
  13088. extra: 2960 / 2629,
  13089. bottom: 0.005
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Normal",
  13096. height: math.unit(11 + 8 / 12, "feet")
  13097. },
  13098. {
  13099. name: "Macro",
  13100. height: math.unit(850, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro+",
  13105. height: math.unit(1.5, "km"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Megamacro",
  13110. height: math.unit(80, "miles")
  13111. },
  13112. {
  13113. name: "Gigamacro",
  13114. height: math.unit(3500, "miles")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13120. {
  13121. side: {
  13122. height: math.unit(1.9, "meters"),
  13123. weight: math.unit(326, "kg"),
  13124. name: "Side",
  13125. image: {
  13126. source: "./media/characters/levi/side.svg",
  13127. extra: 1704 / 1334,
  13128. bottom: 0.02
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Normal",
  13135. height: math.unit(1.9, "meters"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Macro",
  13140. height: math.unit(20, "meters")
  13141. },
  13142. {
  13143. name: "Macro+",
  13144. height: math.unit(200, "meters")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(2, "km")
  13149. },
  13150. {
  13151. name: "Megamacro+",
  13152. height: math.unit(20, "km")
  13153. },
  13154. {
  13155. name: "Gigamacro",
  13156. height: math.unit(2500, "km")
  13157. },
  13158. {
  13159. name: "Gigamacro+",
  13160. height: math.unit(120000, "km")
  13161. },
  13162. {
  13163. name: "Teramacro",
  13164. height: math.unit(7.77e6, "km")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(6 + 4/12, "feet"),
  13173. weight: math.unit(190, "lb"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/bmc/front.svg",
  13177. extra: 1626/1472,
  13178. bottom: 79/1705
  13179. }
  13180. },
  13181. back: {
  13182. height: math.unit(6 + 4/12, "feet"),
  13183. weight: math.unit(190, "lb"),
  13184. name: "Back",
  13185. image: {
  13186. source: "./media/characters/bmc/back.svg",
  13187. extra: 1640/1479,
  13188. bottom: 45/1685
  13189. }
  13190. },
  13191. frontArmor: {
  13192. height: math.unit(6 + 4/12, "feet"),
  13193. weight: math.unit(190, "lb"),
  13194. name: "Front (Armor)",
  13195. image: {
  13196. source: "./media/characters/bmc/front-armor.svg",
  13197. extra: 1538/1468,
  13198. bottom: 79/1617
  13199. }
  13200. },
  13201. },
  13202. [
  13203. {
  13204. name: "Human-sized",
  13205. height: math.unit(6 + 4 / 12, "feet")
  13206. },
  13207. {
  13208. name: "Interactive Size",
  13209. height: math.unit(25, "feet")
  13210. },
  13211. {
  13212. name: "Small",
  13213. height: math.unit(250, "feet")
  13214. },
  13215. {
  13216. name: "Normal",
  13217. height: math.unit(1250, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Good Day",
  13222. height: math.unit(88, "miles")
  13223. },
  13224. {
  13225. name: "Largest Measured Size",
  13226. height: math.unit(105.960, "galaxies")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(20, "feet"),
  13235. weight: math.unit(2016, "kg"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/sven-the-kaiju/front.svg",
  13239. extra: 1277/1250,
  13240. bottom: 35/1312
  13241. }
  13242. },
  13243. mouth: {
  13244. height: math.unit(1.85, "feet"),
  13245. name: "Mouth",
  13246. image: {
  13247. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Fairy",
  13254. height: math.unit(6, "inches")
  13255. },
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(20, "feet"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Rampage",
  13263. height: math.unit(200, "feet")
  13264. },
  13265. {
  13266. name: "Archfey Forest Guardian",
  13267. height: math.unit(1, "mile")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(4, "meters"),
  13276. weight: math.unit(2, "tons"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/marik/front.svg",
  13280. extra: 1057 / 1003,
  13281. bottom: 0.08
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(4, "meters"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Macro",
  13293. height: math.unit(20, "meters")
  13294. },
  13295. {
  13296. name: "Megamacro",
  13297. height: math.unit(50, "km")
  13298. },
  13299. {
  13300. name: "Gigamacro",
  13301. height: math.unit(100, "km")
  13302. },
  13303. {
  13304. name: "Alpha Macro",
  13305. height: math.unit(7.88e7, "yottameters")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(110, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/mel/front.svg",
  13318. extra: 736 / 617,
  13319. bottom: 0.017
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Pico",
  13326. height: math.unit(3, "pm")
  13327. },
  13328. {
  13329. name: "Nano",
  13330. height: math.unit(3, "nm")
  13331. },
  13332. {
  13333. name: "Micro",
  13334. height: math.unit(0.3, "mm"),
  13335. default: true
  13336. },
  13337. {
  13338. name: "Micro+",
  13339. height: math.unit(3, "mm")
  13340. },
  13341. {
  13342. name: "Normal",
  13343. height: math.unit(5 + 10.5 / 12, "feet")
  13344. },
  13345. ]
  13346. ))
  13347. characterMakers.push(() => makeCharacter(
  13348. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13349. {
  13350. kaiju: {
  13351. height: math.unit(1.75, "meters"),
  13352. weight: math.unit(55, "kg"),
  13353. name: "Kaiju",
  13354. image: {
  13355. source: "./media/characters/lykonous/kaiju.svg",
  13356. extra: 1055 / 946,
  13357. bottom: 0.135
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(2.5, "meters"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Kaiju Dragon",
  13369. height: math.unit(60, "meters")
  13370. },
  13371. {
  13372. name: "Mega Kaiju",
  13373. height: math.unit(120, "km")
  13374. },
  13375. {
  13376. name: "Giga Kaiju",
  13377. height: math.unit(200, "megameters")
  13378. },
  13379. {
  13380. name: "Terra Kaiju",
  13381. height: math.unit(400, "gigameters")
  13382. },
  13383. {
  13384. name: "Kaiju Dragon God",
  13385. height: math.unit(13000, "exaparsecs")
  13386. },
  13387. ]
  13388. ))
  13389. characterMakers.push(() => makeCharacter(
  13390. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13391. {
  13392. front: {
  13393. height: math.unit(6, "feet"),
  13394. weight: math.unit(150, "lb"),
  13395. name: "Front",
  13396. image: {
  13397. source: "./media/characters/blü/front.svg",
  13398. extra: 1883 / 1564,
  13399. bottom: 0.031
  13400. }
  13401. },
  13402. },
  13403. [
  13404. {
  13405. name: "Normal",
  13406. height: math.unit(13, "feet"),
  13407. default: true
  13408. },
  13409. {
  13410. name: "Big Boi",
  13411. height: math.unit(150, "meters")
  13412. },
  13413. {
  13414. name: "Mini Stomper",
  13415. height: math.unit(300, "meters")
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(1000, "meters")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(11000, "meters")
  13424. },
  13425. {
  13426. name: "Gigamacro",
  13427. height: math.unit(11000, "km")
  13428. },
  13429. {
  13430. name: "Teramacro",
  13431. height: math.unit(420000, "km")
  13432. },
  13433. {
  13434. name: "Examacro",
  13435. height: math.unit(120, "parsecs")
  13436. },
  13437. {
  13438. name: "God Tho",
  13439. height: math.unit(98000000000, "parsecs")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13445. {
  13446. taurFront: {
  13447. height: math.unit(6, "feet"),
  13448. weight: math.unit(200, "lb"),
  13449. name: "Taur (Front)",
  13450. image: {
  13451. source: "./media/characters/scales/taur-front.svg",
  13452. extra: 1,
  13453. bottom: 0.05
  13454. }
  13455. },
  13456. taurBack: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(200, "lb"),
  13459. name: "Taur (Back)",
  13460. image: {
  13461. source: "./media/characters/scales/taur-back.svg",
  13462. extra: 1,
  13463. bottom: 0.08
  13464. }
  13465. },
  13466. anthro: {
  13467. height: math.unit(6 * 7 / 12, "feet"),
  13468. weight: math.unit(100, "lb"),
  13469. name: "Anthro",
  13470. image: {
  13471. source: "./media/characters/scales/anthro.svg",
  13472. extra: 1,
  13473. bottom: 0.06
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(12, "feet"),
  13481. default: true
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/koragos/front.svg",
  13494. extra: 841 / 794,
  13495. bottom: 0.035
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/koragos/back.svg",
  13504. extra: 841 / 810,
  13505. bottom: 0.022
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(6 + 11 / 12, "feet"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(490, "feet")
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(10, "miles")
  13522. },
  13523. {
  13524. name: "Gigamacro",
  13525. height: math.unit(50, "miles")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(6, "feet"),
  13534. weight: math.unit(250, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/xylrem/front.svg",
  13538. extra: 3323 / 3050,
  13539. bottom: 0.065
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Micro",
  13546. height: math.unit(4, "feet")
  13547. },
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(16, "feet"),
  13551. default: true
  13552. },
  13553. {
  13554. name: "Macro",
  13555. height: math.unit(2720, "feet")
  13556. },
  13557. {
  13558. name: "Megamacro",
  13559. height: math.unit(25000, "miles")
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13565. {
  13566. front: {
  13567. height: math.unit(8, "feet"),
  13568. weight: math.unit(250, "kg"),
  13569. name: "Front",
  13570. image: {
  13571. source: "./media/characters/ikideru/front.svg",
  13572. extra: 930 / 870,
  13573. bottom: 0.087
  13574. }
  13575. },
  13576. back: {
  13577. height: math.unit(8, "feet"),
  13578. weight: math.unit(250, "kg"),
  13579. name: "Back",
  13580. image: {
  13581. source: "./media/characters/ikideru/back.svg",
  13582. extra: 919 / 852,
  13583. bottom: 0.055
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Rare",
  13590. height: math.unit(8, "feet"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Playful Loom",
  13595. height: math.unit(80, "feet")
  13596. },
  13597. {
  13598. name: "City Leaner",
  13599. height: math.unit(230, "feet")
  13600. },
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(2500, "feet")
  13604. },
  13605. {
  13606. name: "Gigamacro",
  13607. height: math.unit(26400, "feet")
  13608. },
  13609. {
  13610. name: "Tectonic Shifter",
  13611. height: math.unit(1.7, "megameters")
  13612. },
  13613. {
  13614. name: "Planet Carer",
  13615. height: math.unit(21, "megameters")
  13616. },
  13617. {
  13618. name: "God",
  13619. height: math.unit(11157.22, "parsecs")
  13620. },
  13621. ]
  13622. ))
  13623. characterMakers.push(() => makeCharacter(
  13624. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13625. {
  13626. front: {
  13627. height: math.unit(6, "feet"),
  13628. weight: math.unit(120, "lb"),
  13629. name: "Front",
  13630. image: {
  13631. source: "./media/characters/neo/front.svg"
  13632. }
  13633. },
  13634. },
  13635. [
  13636. {
  13637. name: "Micro",
  13638. height: math.unit(2, "inches"),
  13639. default: true
  13640. },
  13641. {
  13642. name: "Human Size",
  13643. height: math.unit(5 + 8 / 12, "feet")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(13 + 10 / 12, "feet"),
  13652. weight: math.unit(5320, "lb"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/chauncey-chantz/front.svg",
  13656. extra: 1587 / 1435,
  13657. bottom: 0.02
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Normal",
  13664. height: math.unit(13 + 10 / 12, "feet"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(45, "feet")
  13670. },
  13671. {
  13672. name: "Megamacro",
  13673. height: math.unit(250, "miles")
  13674. },
  13675. {
  13676. name: "Planetary",
  13677. height: math.unit(10000, "miles")
  13678. },
  13679. {
  13680. name: "Galactic",
  13681. height: math.unit(40000, "parsecs")
  13682. },
  13683. {
  13684. name: "Universal",
  13685. height: math.unit(1, "yottameter")
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/epifox/front.svg",
  13698. extra: 1,
  13699. bottom: 0.075
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Micro",
  13706. height: math.unit(6, "inches")
  13707. },
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(12, "feet"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(3810, "feet")
  13716. },
  13717. {
  13718. name: "Megamacro",
  13719. height: math.unit(500, "miles")
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(1.8796, "m"),
  13728. weight: math.unit(230, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/colin-t/front.svg",
  13732. extra: 1272 / 1193,
  13733. bottom: 0.07
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Micro",
  13740. height: math.unit(0.571, "meters")
  13741. },
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(1.8796, "meters"),
  13745. default: true
  13746. },
  13747. {
  13748. name: "Tall",
  13749. height: math.unit(4, "meters")
  13750. },
  13751. {
  13752. name: "Macro",
  13753. height: math.unit(67.241, "meters")
  13754. },
  13755. {
  13756. name: "Megamacro",
  13757. height: math.unit(371.856, "meters")
  13758. },
  13759. {
  13760. name: "Planetary",
  13761. height: math.unit(12631.5689, "km")
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(1.85, "meters"),
  13770. weight: math.unit(80, "kg"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/matvei/front.svg",
  13774. extra: 456/447,
  13775. bottom: 8/464
  13776. }
  13777. },
  13778. back: {
  13779. height: math.unit(1.85, "meters"),
  13780. weight: math.unit(80, "kg"),
  13781. name: "Back",
  13782. image: {
  13783. source: "./media/characters/matvei/back.svg",
  13784. extra: 434/427,
  13785. bottom: 11/445
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Normal",
  13792. height: math.unit(1.85, "meters"),
  13793. default: true
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(5 + 9 / 12, "feet"),
  13802. weight: math.unit(70, "lb"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/quincy/front.svg",
  13806. extra: 3041 / 2751
  13807. }
  13808. },
  13809. back: {
  13810. height: math.unit(5 + 9 / 12, "feet"),
  13811. weight: math.unit(70, "lb"),
  13812. name: "Back",
  13813. image: {
  13814. source: "./media/characters/quincy/back.svg",
  13815. extra: 3041 / 2751
  13816. }
  13817. },
  13818. flying: {
  13819. height: math.unit(5 + 4 / 12, "feet"),
  13820. weight: math.unit(70, "lb"),
  13821. name: "Flying",
  13822. image: {
  13823. source: "./media/characters/quincy/flying.svg",
  13824. extra: 1044 / 930
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Micro",
  13831. height: math.unit(3, "cm")
  13832. },
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(5 + 9 / 12, "feet")
  13836. },
  13837. {
  13838. name: "Macro",
  13839. height: math.unit(200, "meters"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Megamacro",
  13844. height: math.unit(1000, "meters")
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13850. {
  13851. front: {
  13852. height: math.unit(3 + 11/12, "feet"),
  13853. weight: math.unit(50, "lb"),
  13854. name: "Front",
  13855. image: {
  13856. source: "./media/characters/vanrel/front.svg",
  13857. extra: 1104/949,
  13858. bottom: 52/1156
  13859. }
  13860. },
  13861. back: {
  13862. height: math.unit(3 + 11/12, "feet"),
  13863. weight: math.unit(50, "lb"),
  13864. name: "Back",
  13865. image: {
  13866. source: "./media/characters/vanrel/back.svg",
  13867. extra: 1119/976,
  13868. bottom: 37/1156
  13869. }
  13870. },
  13871. tome: {
  13872. height: math.unit(1.35, "feet"),
  13873. weight: math.unit(10, "lb"),
  13874. name: "Vanrel's Tome",
  13875. rename: true,
  13876. image: {
  13877. source: "./media/characters/vanrel/tome.svg"
  13878. }
  13879. },
  13880. beans: {
  13881. height: math.unit(0.89, "feet"),
  13882. name: "Beans",
  13883. image: {
  13884. source: "./media/characters/vanrel/beans.svg"
  13885. }
  13886. },
  13887. },
  13888. [
  13889. {
  13890. name: "Normal",
  13891. height: math.unit(3 + 11/12, "feet"),
  13892. default: true
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13898. {
  13899. front: {
  13900. height: math.unit(7 + 5 / 12, "feet"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/kuiper-vanrel/front.svg",
  13904. extra: 1219/1169,
  13905. bottom: 69/1288
  13906. }
  13907. },
  13908. back: {
  13909. height: math.unit(7 + 5 / 12, "feet"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/kuiper-vanrel/back.svg",
  13913. extra: 1236/1193,
  13914. bottom: 27/1263
  13915. }
  13916. },
  13917. foot: {
  13918. height: math.unit(0.55, "meters"),
  13919. name: "Foot",
  13920. image: {
  13921. source: "./media/characters/kuiper-vanrel/foot.svg",
  13922. }
  13923. },
  13924. battle: {
  13925. height: math.unit(6.824, "feet"),
  13926. name: "Battle",
  13927. image: {
  13928. source: "./media/characters/kuiper-vanrel/battle.svg",
  13929. extra: 1466 / 1327,
  13930. bottom: 29 / 1492.5
  13931. }
  13932. },
  13933. meerkui: {
  13934. height: math.unit(18, "inches"),
  13935. name: "Meerkui",
  13936. image: {
  13937. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13938. extra: 1354/1289,
  13939. bottom: 69/1423
  13940. }
  13941. },
  13942. },
  13943. [
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(7 + 5 / 12, "feet"),
  13947. default: true
  13948. },
  13949. ]
  13950. ))
  13951. characterMakers.push(() => makeCharacter(
  13952. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13953. {
  13954. front: {
  13955. height: math.unit(8 + 5 / 12, "feet"),
  13956. name: "Front",
  13957. image: {
  13958. source: "./media/characters/keset-vanrel/front.svg",
  13959. extra: 1231/1148,
  13960. bottom: 82/1313
  13961. }
  13962. },
  13963. back: {
  13964. height: math.unit(8 + 5 / 12, "feet"),
  13965. name: "Back",
  13966. image: {
  13967. source: "./media/characters/keset-vanrel/back.svg",
  13968. extra: 1240/1174,
  13969. bottom: 33/1273
  13970. }
  13971. },
  13972. hand: {
  13973. height: math.unit(0.6, "meters"),
  13974. name: "Hand",
  13975. image: {
  13976. source: "./media/characters/keset-vanrel/hand.svg"
  13977. }
  13978. },
  13979. foot: {
  13980. height: math.unit(0.94978, "meters"),
  13981. name: "Foot",
  13982. image: {
  13983. source: "./media/characters/keset-vanrel/foot.svg"
  13984. }
  13985. },
  13986. battle: {
  13987. height: math.unit(7.408, "feet"),
  13988. name: "Battle",
  13989. image: {
  13990. source: "./media/characters/keset-vanrel/battle.svg",
  13991. extra: 1890 / 1386,
  13992. bottom: 73.28 / 1970
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(8 + 5 / 12, "feet"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(150, "lb"),
  14010. name: "Front",
  14011. image: {
  14012. source: "./media/characters/neos/front.svg",
  14013. extra: 1696 / 992,
  14014. bottom: 0.14
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(54, "cm"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Macro",
  14026. height: math.unit(100, "m")
  14027. },
  14028. {
  14029. name: "Megamacro",
  14030. height: math.unit(10, "km")
  14031. },
  14032. {
  14033. name: "Megamacro+",
  14034. height: math.unit(100, "km")
  14035. },
  14036. {
  14037. name: "Gigamacro",
  14038. height: math.unit(100, "Mm")
  14039. },
  14040. {
  14041. name: "Teramacro",
  14042. height: math.unit(100, "Gm")
  14043. },
  14044. {
  14045. name: "Examacro",
  14046. height: math.unit(100, "Em")
  14047. },
  14048. {
  14049. name: "Godly",
  14050. height: math.unit(10000, "Ym")
  14051. },
  14052. {
  14053. name: "Beyond Godly",
  14054. height: math.unit(25, "multiverses")
  14055. },
  14056. ]
  14057. ))
  14058. characterMakers.push(() => makeCharacter(
  14059. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14060. {
  14061. fluide_tame: {
  14062. height: math.unit(5, "feet"),
  14063. name: "Tame",
  14064. image: {
  14065. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14066. extra: 1655/1574,
  14067. bottom: 231/1886
  14068. },
  14069. form: "fluide",
  14070. default: true
  14071. },
  14072. fluide_nude: {
  14073. height: math.unit(5, "feet"),
  14074. name: "Nude",
  14075. image: {
  14076. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14077. extra: 1655/1574,
  14078. bottom: 231/1886
  14079. },
  14080. form: "fluide",
  14081. },
  14082. male_tame: {
  14083. height: math.unit(5, "feet"),
  14084. name: "Tame",
  14085. image: {
  14086. source: "./media/characters/sammy-mouse/male-tame.svg",
  14087. extra: 1655/1574,
  14088. bottom: 231/1886
  14089. },
  14090. form: "male",
  14091. default: true
  14092. },
  14093. male_nude: {
  14094. height: math.unit(5, "feet"),
  14095. name: "Nude",
  14096. image: {
  14097. source: "./media/characters/sammy-mouse/male-nude.svg",
  14098. extra: 1655/1574,
  14099. bottom: 231/1886
  14100. },
  14101. form: "male",
  14102. },
  14103. female_nude: {
  14104. height: math.unit(5, "feet"),
  14105. name: "Nude",
  14106. image: {
  14107. source: "./media/characters/sammy-mouse/female-nude.svg",
  14108. extra: 1655/1574,
  14109. bottom: 231/1886
  14110. },
  14111. form: "female",
  14112. default: true
  14113. },
  14114. mouth: {
  14115. height: math.unit(0.32, "feet"),
  14116. name: "Mouth",
  14117. image: {
  14118. source: "./media/characters/sammy-mouse/mouth.svg"
  14119. },
  14120. allForms: true
  14121. },
  14122. paw: {
  14123. height: math.unit(0.42, "feet"),
  14124. name: "Paw",
  14125. image: {
  14126. source: "./media/characters/sammy-mouse/paw.svg"
  14127. },
  14128. allForms: true
  14129. },
  14130. },
  14131. [
  14132. {
  14133. name: "Micro",
  14134. height: math.unit(5, "inches"),
  14135. allForms: true
  14136. },
  14137. {
  14138. name: "Normal",
  14139. height: math.unit(5, "feet"),
  14140. default: true,
  14141. allForms: true
  14142. },
  14143. {
  14144. name: "Macro",
  14145. height: math.unit(60, "feet"),
  14146. allForms: true
  14147. },
  14148. ],
  14149. {
  14150. "fluide": {
  14151. name: "Fluide",
  14152. default: true
  14153. },
  14154. "male": {
  14155. name: "Male",
  14156. },
  14157. "female": {
  14158. name: "Female",
  14159. },
  14160. }
  14161. ))
  14162. characterMakers.push(() => makeCharacter(
  14163. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14164. {
  14165. front: {
  14166. height: math.unit(4, "feet"),
  14167. weight: math.unit(50, "lb"),
  14168. name: "Front",
  14169. image: {
  14170. source: "./media/characters/kole/front.svg",
  14171. extra: 1423 / 1303,
  14172. bottom: 0.025
  14173. }
  14174. },
  14175. back: {
  14176. height: math.unit(4, "feet"),
  14177. weight: math.unit(50, "lb"),
  14178. name: "Back",
  14179. image: {
  14180. source: "./media/characters/kole/back.svg",
  14181. extra: 1426 / 1280,
  14182. bottom: 0.02
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Normal",
  14189. height: math.unit(4, "feet"),
  14190. default: true
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(2.5, "feet"),
  14199. weight: math.unit(32, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/rufran/front.svg",
  14203. extra: 1313/885,
  14204. bottom: 94/1407
  14205. }
  14206. },
  14207. side: {
  14208. height: math.unit(2.5, "feet"),
  14209. weight: math.unit(32, "lb"),
  14210. name: "Side",
  14211. image: {
  14212. source: "./media/characters/rufran/side.svg",
  14213. extra: 1109/852,
  14214. bottom: 118/1227
  14215. }
  14216. },
  14217. back: {
  14218. height: math.unit(2.5, "feet"),
  14219. weight: math.unit(32, "lb"),
  14220. name: "Back",
  14221. image: {
  14222. source: "./media/characters/rufran/back.svg",
  14223. extra: 1280/878,
  14224. bottom: 131/1411
  14225. }
  14226. },
  14227. mouth: {
  14228. height: math.unit(1.13, "feet"),
  14229. name: "Mouth",
  14230. image: {
  14231. source: "./media/characters/rufran/mouth.svg"
  14232. }
  14233. },
  14234. foot: {
  14235. height: math.unit(1.33, "feet"),
  14236. name: "Foot",
  14237. image: {
  14238. source: "./media/characters/rufran/foot.svg"
  14239. }
  14240. },
  14241. koboldFront: {
  14242. height: math.unit(2 + 6 / 12, "feet"),
  14243. weight: math.unit(20, "lb"),
  14244. name: "Front (Kobold)",
  14245. image: {
  14246. source: "./media/characters/rufran/kobold-front.svg",
  14247. extra: 2041 / 1839,
  14248. bottom: 0.055
  14249. }
  14250. },
  14251. koboldBack: {
  14252. height: math.unit(2 + 6 / 12, "feet"),
  14253. weight: math.unit(20, "lb"),
  14254. name: "Back (Kobold)",
  14255. image: {
  14256. source: "./media/characters/rufran/kobold-back.svg",
  14257. extra: 2054 / 1839,
  14258. bottom: 0.01
  14259. }
  14260. },
  14261. koboldHand: {
  14262. height: math.unit(0.2166, "meters"),
  14263. name: "Hand (Kobold)",
  14264. image: {
  14265. source: "./media/characters/rufran/kobold-hand.svg"
  14266. }
  14267. },
  14268. koboldFoot: {
  14269. height: math.unit(0.185, "meters"),
  14270. name: "Foot (Kobold)",
  14271. image: {
  14272. source: "./media/characters/rufran/kobold-foot.svg"
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Micro",
  14279. height: math.unit(1, "inch")
  14280. },
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(2 + 6 / 12, "feet"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Big",
  14288. height: math.unit(60, "feet")
  14289. },
  14290. {
  14291. name: "Macro",
  14292. height: math.unit(325, "feet")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(0.3, "meters"),
  14301. weight: math.unit(3.5, "kg"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/chip/front.svg",
  14305. extra: 748 / 674
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Micro",
  14312. height: math.unit(1, "inch"),
  14313. default: true
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14319. {
  14320. side: {
  14321. height: math.unit(2.3, "meters"),
  14322. weight: math.unit(3500, "lb"),
  14323. name: "Side",
  14324. image: {
  14325. source: "./media/characters/torvid/side.svg",
  14326. extra: 1972 / 722,
  14327. bottom: 0.035
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(2.3, "meters"),
  14335. default: true
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(2, "meters"),
  14344. weight: math.unit(150.5, "kg"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/susan/front.svg",
  14348. extra: 693 / 635,
  14349. bottom: 0.05
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Megamacro",
  14356. height: math.unit(505, "miles"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/raindrops/front.svg",
  14370. extra: 2655 / 2461,
  14371. bottom: 49 / 2705
  14372. }
  14373. },
  14374. back: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Back",
  14378. image: {
  14379. source: "./media/characters/raindrops/back.svg",
  14380. extra: 2574 / 2400,
  14381. bottom: 65 / 2634
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Micro",
  14388. height: math.unit(6, "inches")
  14389. },
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(6 + 2 / 12, "feet")
  14393. },
  14394. {
  14395. name: "Macro",
  14396. height: math.unit(131, "feet"),
  14397. default: true
  14398. },
  14399. {
  14400. name: "Megamacro",
  14401. height: math.unit(15, "miles")
  14402. },
  14403. {
  14404. name: "Gigamacro",
  14405. height: math.unit(4000, "miles")
  14406. },
  14407. {
  14408. name: "Teramacro",
  14409. height: math.unit(315000, "miles")
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14415. {
  14416. normal_front: {
  14417. height: math.unit(9 + 2/12, "feet"),
  14418. weight: math.unit(325, "kg"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/tezwa/normal-front.svg",
  14422. extra: 770/714,
  14423. bottom: 32/802
  14424. },
  14425. form: "normal",
  14426. },
  14427. normal_paw: {
  14428. height: math.unit(2.2, "feet"),
  14429. name: "Paw",
  14430. image: {
  14431. source: "./media/characters/tezwa/paw.svg"
  14432. },
  14433. form: "normal",
  14434. },
  14435. muscled_front: {
  14436. height: math.unit(916 + 8/12, "feet"),
  14437. weight: math.unit(500000, "tons"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/tezwa/muscled-front.svg",
  14441. extra: 1840/1697,
  14442. bottom: 29/1869
  14443. },
  14444. form: "muscled",
  14445. },
  14446. muscled_paw: {
  14447. height: math.unit(200, "feet"),
  14448. name: "Paw",
  14449. image: {
  14450. source: "./media/characters/tezwa/paw.svg"
  14451. },
  14452. form: "muscled",
  14453. },
  14454. },
  14455. [
  14456. {
  14457. name: "Normal",
  14458. height: math.unit(9 + 2 / 12, "feet"),
  14459. default: true,
  14460. form: "normal"
  14461. },
  14462. {
  14463. name: "Normal",
  14464. height: math.unit(916 + 8/12, "feet"),
  14465. default: true,
  14466. form: "muscled"
  14467. },
  14468. ],
  14469. {
  14470. "normal": {
  14471. name: "Normal",
  14472. default: true
  14473. },
  14474. "muscled": {
  14475. name: "Muscled",
  14476. },
  14477. }
  14478. ))
  14479. characterMakers.push(() => makeCharacter(
  14480. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14481. {
  14482. front: {
  14483. height: math.unit(58, "feet"),
  14484. weight: math.unit(89000, "lb"),
  14485. name: "Front",
  14486. image: {
  14487. source: "./media/characters/typhus/front.svg",
  14488. extra: 816 / 800,
  14489. bottom: 0.065
  14490. }
  14491. },
  14492. },
  14493. [
  14494. {
  14495. name: "Macro",
  14496. height: math.unit(58, "feet"),
  14497. default: true
  14498. },
  14499. ]
  14500. ))
  14501. characterMakers.push(() => makeCharacter(
  14502. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14503. {
  14504. front: {
  14505. height: math.unit(12, "feet"),
  14506. weight: math.unit(6, "tonnes"),
  14507. name: "Front",
  14508. image: {
  14509. source: "./media/characters/lyra-von-wulf/front.svg",
  14510. extra: 1,
  14511. bottom: 0.10
  14512. }
  14513. },
  14514. frontMecha: {
  14515. height: math.unit(12, "feet"),
  14516. weight: math.unit(12, "tonnes"),
  14517. name: "Front (Mecha)",
  14518. image: {
  14519. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14520. extra: 1,
  14521. bottom: 0.042
  14522. }
  14523. },
  14524. maw: {
  14525. height: math.unit(2.2, "feet"),
  14526. name: "Maw",
  14527. image: {
  14528. source: "./media/characters/lyra-von-wulf/maw.svg"
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(12, "feet"),
  14536. default: true
  14537. },
  14538. {
  14539. name: "Classic",
  14540. height: math.unit(50, "feet")
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(500, "feet")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(1, "mile")
  14549. },
  14550. {
  14551. name: "Gigamacro",
  14552. height: math.unit(400, "miles")
  14553. },
  14554. {
  14555. name: "Teramacro",
  14556. height: math.unit(22000, "miles")
  14557. },
  14558. {
  14559. name: "Solarmacro",
  14560. height: math.unit(8600000, "miles")
  14561. },
  14562. {
  14563. name: "Galactic",
  14564. height: math.unit(1057000, "lightyears")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(6 + 10 / 12, "feet"),
  14573. weight: math.unit(150, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/dixon/front.svg",
  14577. extra: 3361 / 3209,
  14578. bottom: 0.01
  14579. }
  14580. },
  14581. },
  14582. [
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(6 + 10 / 12, "feet"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Big",
  14590. height: math.unit(12, "meters")
  14591. },
  14592. {
  14593. name: "Macro",
  14594. height: math.unit(500, "meters")
  14595. },
  14596. {
  14597. name: "Megamacro",
  14598. height: math.unit(2, "km")
  14599. },
  14600. ]
  14601. ))
  14602. characterMakers.push(() => makeCharacter(
  14603. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14604. {
  14605. kingCheetah_front: {
  14606. height: math.unit(1.85, "meters"),
  14607. weight: math.unit(68, "kg"),
  14608. name: "Front",
  14609. image: {
  14610. source: "./media/characters/kauko/king-cheetah-front.svg",
  14611. extra: 1007/972,
  14612. bottom: 35/1042
  14613. },
  14614. form: "king-cheetah",
  14615. default: true
  14616. },
  14617. kingCheetah_back: {
  14618. height: math.unit(1.85, "meters"),
  14619. weight: math.unit(68, "kg"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/kauko/king-cheetah-back.svg",
  14623. extra: 1015/980,
  14624. bottom: 11/1026
  14625. },
  14626. form: "king-cheetah",
  14627. },
  14628. kingCheetah_hand: {
  14629. height: math.unit(0.23, "meters"),
  14630. name: "Hand",
  14631. image: {
  14632. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14633. },
  14634. form: "king-cheetah",
  14635. },
  14636. kingCheetah_paw: {
  14637. height: math.unit(0.38, "meters"),
  14638. name: "Paw",
  14639. image: {
  14640. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14641. },
  14642. form: "king-cheetah",
  14643. },
  14644. kingCheetah_nape: {
  14645. height: math.unit(0.23, "meters"),
  14646. name: "Nape",
  14647. image: {
  14648. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14649. },
  14650. form: "king-cheetah",
  14651. },
  14652. wolf_front: {
  14653. height: math.unit(1.88, "meters"),
  14654. weight: math.unit(74, "kg"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/kauko/wolf-front.svg",
  14658. extra: 952/908,
  14659. bottom: 64/1016
  14660. },
  14661. form: "wolf",
  14662. default: true
  14663. },
  14664. wolf_dressed: {
  14665. height: math.unit(1.88, "meters"),
  14666. weight: math.unit(74, "kg"),
  14667. name: "Dressed",
  14668. image: {
  14669. source: "./media/characters/kauko/wolf-dressed.svg",
  14670. extra: 963/916,
  14671. bottom: 101/1064
  14672. },
  14673. form: "wolf",
  14674. },
  14675. wolf_hand: {
  14676. height: math.unit(0.3, "meters"),
  14677. name: "Hand",
  14678. image: {
  14679. source: "./media/characters/kauko/wolf-hand.svg"
  14680. },
  14681. form: "wolf",
  14682. },
  14683. wolf_paw: {
  14684. height: math.unit(0.407, "meters"),
  14685. name: "Paw",
  14686. image: {
  14687. source: "./media/characters/kauko/wolf-paw.svg"
  14688. },
  14689. form: "wolf",
  14690. },
  14691. wolf_nape: {
  14692. height: math.unit(0.25, "meters"),
  14693. name: "Nape",
  14694. image: {
  14695. source: "./media/characters/kauko/wolf-nape.svg"
  14696. },
  14697. form: "wolf",
  14698. },
  14699. },
  14700. [
  14701. {
  14702. name: "Normal",
  14703. height: math.unit(1.85, "m"),
  14704. default: true,
  14705. form: "king-cheetah"
  14706. },
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(1.88, "m"),
  14710. default: true,
  14711. form: "wolf"
  14712. },
  14713. ],
  14714. {
  14715. "king-cheetah": {
  14716. name: "King Cheetah",
  14717. default: true
  14718. },
  14719. "wolf": {
  14720. name: "Wolf",
  14721. },
  14722. }
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14726. {
  14727. frontSfw: {
  14728. height: math.unit(5, "meters"),
  14729. weight: math.unit(4250, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/varg/front-sfw.svg",
  14733. extra: 1103/1010,
  14734. bottom: 50/1153
  14735. },
  14736. form: "anthro",
  14737. default: true
  14738. },
  14739. backSfw: {
  14740. height: math.unit(5, "meters"),
  14741. weight: math.unit(4250, "lb"),
  14742. name: "Back",
  14743. image: {
  14744. source: "./media/characters/varg/back-sfw.svg",
  14745. extra: 1038/1022,
  14746. bottom: 36/1074
  14747. },
  14748. form: "anthro"
  14749. },
  14750. frontNsfw: {
  14751. height: math.unit(5, "meters"),
  14752. weight: math.unit(4250, "lb"),
  14753. name: "Front (NSFW)",
  14754. image: {
  14755. source: "./media/characters/varg/front-nsfw.svg",
  14756. extra: 1103/1010,
  14757. bottom: 50/1153
  14758. },
  14759. form: "anthro"
  14760. },
  14761. sheath: {
  14762. height: math.unit(3.8, "feet"),
  14763. weight: math.unit(90, "kilograms"),
  14764. name: "Sheath",
  14765. image: {
  14766. source: "./media/characters/varg/sheath.svg"
  14767. },
  14768. form: "anthro"
  14769. },
  14770. dick: {
  14771. height: math.unit(4.6, "feet"),
  14772. weight: math.unit(451, "kilograms"),
  14773. name: "Dick",
  14774. image: {
  14775. source: "./media/characters/varg/dick.svg"
  14776. },
  14777. form: "anthro"
  14778. },
  14779. feralSfw: {
  14780. height: math.unit(5, "meters"),
  14781. weight: math.unit(100000, "lb"),
  14782. name: "Side",
  14783. image: {
  14784. source: "./media/characters/varg/feral-sfw.svg",
  14785. extra: 1065/511,
  14786. bottom: 211/1276
  14787. },
  14788. form: "feral",
  14789. default: true
  14790. },
  14791. feralNsfw: {
  14792. height: math.unit(5, "meters"),
  14793. weight: math.unit(100000, "lb"),
  14794. name: "Side (NSFW)",
  14795. image: {
  14796. source: "./media/characters/varg/feral-nsfw.svg",
  14797. extra: 1065/511,
  14798. bottom: 211/1276
  14799. },
  14800. form: "feral",
  14801. },
  14802. feralSheath: {
  14803. height: math.unit(9.8, "feet"),
  14804. weight: math.unit(2000, "kilograms"),
  14805. name: "Sheath",
  14806. image: {
  14807. source: "./media/characters/varg/sheath.svg"
  14808. },
  14809. form: "feral"
  14810. },
  14811. feralDick: {
  14812. height: math.unit(13.11, "feet"),
  14813. weight: math.unit(10440, "kilograms"),
  14814. name: "Dick",
  14815. image: {
  14816. source: "./media/characters/varg/dick.svg"
  14817. },
  14818. form: "feral"
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Normal",
  14824. height: math.unit(5, "meters"),
  14825. form: "anthro"
  14826. },
  14827. {
  14828. name: "Macro",
  14829. height: math.unit(200, "meters"),
  14830. form: "anthro"
  14831. },
  14832. {
  14833. name: "Megamacro",
  14834. height: math.unit(20, "kilometers"),
  14835. form: "anthro"
  14836. },
  14837. {
  14838. name: "True Size",
  14839. height: math.unit(211, "km"),
  14840. form: "anthro",
  14841. default: true
  14842. },
  14843. {
  14844. name: "Gigamacro",
  14845. height: math.unit(1000, "km"),
  14846. form: "anthro"
  14847. },
  14848. {
  14849. name: "Gigamacro+",
  14850. height: math.unit(8000, "km"),
  14851. form: "anthro"
  14852. },
  14853. {
  14854. name: "Teramacro",
  14855. height: math.unit(1000000, "km"),
  14856. form: "anthro"
  14857. },
  14858. {
  14859. name: "Normal",
  14860. height: math.unit(5, "meters"),
  14861. form: "feral"
  14862. },
  14863. {
  14864. name: "Macro",
  14865. height: math.unit(200, "meters"),
  14866. form: "feral"
  14867. },
  14868. {
  14869. name: "Megamacro",
  14870. height: math.unit(20, "kilometers"),
  14871. form: "feral"
  14872. },
  14873. {
  14874. name: "True Size",
  14875. height: math.unit(211, "km"),
  14876. form: "feral",
  14877. default: true
  14878. },
  14879. {
  14880. name: "Gigamacro",
  14881. height: math.unit(1000, "km"),
  14882. form: "feral"
  14883. },
  14884. {
  14885. name: "Gigamacro+",
  14886. height: math.unit(8000, "km"),
  14887. form: "feral"
  14888. },
  14889. {
  14890. name: "Teramacro",
  14891. height: math.unit(1000000, "km"),
  14892. form: "feral"
  14893. },
  14894. ],
  14895. {
  14896. "anthro": {
  14897. name: "Anthro",
  14898. default: true
  14899. },
  14900. "feral": {
  14901. name: "Feral",
  14902. },
  14903. }
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(7 + 7 / 12, "feet"),
  14910. weight: math.unit(267, "lb"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/dayza/front.svg",
  14914. extra: 1262 / 1200,
  14915. bottom: 0.035
  14916. }
  14917. },
  14918. side: {
  14919. height: math.unit(7 + 7 / 12, "feet"),
  14920. weight: math.unit(267, "lb"),
  14921. name: "Side",
  14922. image: {
  14923. source: "./media/characters/dayza/side.svg",
  14924. extra: 1295 / 1245,
  14925. bottom: 0.05
  14926. }
  14927. },
  14928. back: {
  14929. height: math.unit(7 + 7 / 12, "feet"),
  14930. weight: math.unit(267, "lb"),
  14931. name: "Back",
  14932. image: {
  14933. source: "./media/characters/dayza/back.svg",
  14934. extra: 1241 / 1170
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(7 + 7 / 12, "feet"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Macro",
  14946. height: math.unit(155, "feet")
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(6 + 5 / 12, "feet"),
  14955. weight: math.unit(160, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/xanthos/front.svg",
  14959. extra: 1,
  14960. bottom: 0.04
  14961. }
  14962. },
  14963. back: {
  14964. height: math.unit(6 + 5 / 12, "feet"),
  14965. weight: math.unit(160, "lb"),
  14966. name: "Back",
  14967. image: {
  14968. source: "./media/characters/xanthos/back.svg",
  14969. extra: 1,
  14970. bottom: 0.03
  14971. }
  14972. },
  14973. hand: {
  14974. height: math.unit(0.928, "feet"),
  14975. name: "Hand",
  14976. image: {
  14977. source: "./media/characters/xanthos/hand.svg"
  14978. }
  14979. },
  14980. foot: {
  14981. height: math.unit(1.286, "feet"),
  14982. name: "Foot",
  14983. image: {
  14984. source: "./media/characters/xanthos/foot.svg"
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(6 + 5 / 12, "feet"),
  14992. default: true
  14993. },
  14994. {
  14995. name: "Normal+",
  14996. height: math.unit(6, "meters")
  14997. },
  14998. {
  14999. name: "Macro",
  15000. height: math.unit(40, "feet")
  15001. },
  15002. {
  15003. name: "Macro+",
  15004. height: math.unit(200, "meters")
  15005. },
  15006. {
  15007. name: "Megamacro",
  15008. height: math.unit(20, "km")
  15009. },
  15010. {
  15011. name: "Megamacro+",
  15012. height: math.unit(100, "km")
  15013. },
  15014. {
  15015. name: "Gigamacro",
  15016. height: math.unit(200, "megameters")
  15017. },
  15018. {
  15019. name: "Gigamacro+",
  15020. height: math.unit(1.5, "gigameters")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(6 + 3 / 12, "feet"),
  15029. weight: math.unit(215, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/grynn/front.svg",
  15033. extra: 4627 / 4209,
  15034. bottom: 0.047
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Micro",
  15041. height: math.unit(6, "inches")
  15042. },
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(6 + 3 / 12, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Big",
  15050. height: math.unit(104, "feet")
  15051. },
  15052. {
  15053. name: "Macro",
  15054. height: math.unit(944, "feet")
  15055. },
  15056. {
  15057. name: "Macro+",
  15058. height: math.unit(9480, "feet")
  15059. },
  15060. {
  15061. name: "Megamacro",
  15062. height: math.unit(78752, "feet")
  15063. },
  15064. {
  15065. name: "Megamacro+",
  15066. height: math.unit(630128, "feet")
  15067. },
  15068. {
  15069. name: "Megamacro++",
  15070. height: math.unit(3150695, "feet")
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15076. {
  15077. front: {
  15078. height: math.unit(7 + 5 / 12, "feet"),
  15079. weight: math.unit(450, "lb"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/mocha-aura/front.svg",
  15083. extra: 1907 / 1817,
  15084. bottom: 0.04
  15085. }
  15086. },
  15087. back: {
  15088. height: math.unit(7 + 5 / 12, "feet"),
  15089. weight: math.unit(450, "lb"),
  15090. name: "Back",
  15091. image: {
  15092. source: "./media/characters/mocha-aura/back.svg",
  15093. extra: 1900 / 1825,
  15094. bottom: 0.045
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Nano",
  15101. height: math.unit(1, "nm")
  15102. },
  15103. {
  15104. name: "Megamicro",
  15105. height: math.unit(1, "mm")
  15106. },
  15107. {
  15108. name: "Micro",
  15109. height: math.unit(3, "inches")
  15110. },
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(7 + 5 / 12, "feet"),
  15114. default: true
  15115. },
  15116. {
  15117. name: "Macro",
  15118. height: math.unit(30, "feet")
  15119. },
  15120. {
  15121. name: "Megamacro",
  15122. height: math.unit(3500, "feet")
  15123. },
  15124. {
  15125. name: "Teramacro",
  15126. height: math.unit(500000, "miles")
  15127. },
  15128. {
  15129. name: "Petamacro",
  15130. height: math.unit(50000000000000000, "parsecs")
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15136. {
  15137. front: {
  15138. height: math.unit(6, "feet"),
  15139. weight: math.unit(150, "lb"),
  15140. name: "Front",
  15141. image: {
  15142. source: "./media/characters/ilisha-devya/front.svg",
  15143. extra: 1053/1049,
  15144. bottom: 270/1323
  15145. }
  15146. },
  15147. back: {
  15148. height: math.unit(6, "feet"),
  15149. weight: math.unit(150, "lb"),
  15150. name: "Back",
  15151. image: {
  15152. source: "./media/characters/ilisha-devya/back.svg",
  15153. extra: 1131/1128,
  15154. bottom: 39/1170
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Macro",
  15161. height: math.unit(500, "feet"),
  15162. default: true
  15163. },
  15164. {
  15165. name: "Megamacro",
  15166. height: math.unit(10, "miles")
  15167. },
  15168. {
  15169. name: "Gigamacro",
  15170. height: math.unit(100000, "miles")
  15171. },
  15172. {
  15173. name: "Examacro",
  15174. height: math.unit(1e9, "lightyears")
  15175. },
  15176. {
  15177. name: "Omniversal",
  15178. height: math.unit(1e33, "lightyears")
  15179. },
  15180. {
  15181. name: "Beyond Infinite",
  15182. height: math.unit(1e100, "lightyears")
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15188. {
  15189. Side: {
  15190. height: math.unit(6, "feet"),
  15191. weight: math.unit(150, "lb"),
  15192. name: "Side",
  15193. image: {
  15194. source: "./media/characters/mira/side.svg",
  15195. extra: 900 / 799,
  15196. bottom: 0.02
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Human Size",
  15203. height: math.unit(6, "feet")
  15204. },
  15205. {
  15206. name: "Macro",
  15207. height: math.unit(100, "feet"),
  15208. default: true
  15209. },
  15210. {
  15211. name: "Megamacro",
  15212. height: math.unit(10, "miles")
  15213. },
  15214. {
  15215. name: "Gigamacro",
  15216. height: math.unit(25000, "miles")
  15217. },
  15218. {
  15219. name: "Teramacro",
  15220. height: math.unit(300, "AU")
  15221. },
  15222. {
  15223. name: "Full Size",
  15224. height: math.unit(4.5e10, "lightyears")
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15230. {
  15231. front: {
  15232. height: math.unit(6, "feet"),
  15233. weight: math.unit(150, "lb"),
  15234. name: "Front",
  15235. image: {
  15236. source: "./media/characters/holly/front.svg",
  15237. extra: 639 / 606
  15238. }
  15239. },
  15240. back: {
  15241. height: math.unit(6, "feet"),
  15242. weight: math.unit(150, "lb"),
  15243. name: "Back",
  15244. image: {
  15245. source: "./media/characters/holly/back.svg",
  15246. extra: 623 / 598
  15247. }
  15248. },
  15249. frontWorking: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Front (Working)",
  15253. image: {
  15254. source: "./media/characters/holly/front-working.svg",
  15255. extra: 607 / 577,
  15256. bottom: 0.048
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(12 + 3 / 12, "feet"),
  15264. default: true
  15265. },
  15266. ]
  15267. ))
  15268. characterMakers.push(() => makeCharacter(
  15269. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15270. {
  15271. front: {
  15272. height: math.unit(6, "feet"),
  15273. weight: math.unit(150, "lb"),
  15274. name: "Front",
  15275. image: {
  15276. source: "./media/characters/porter/front.svg",
  15277. extra: 1,
  15278. bottom: 0.01
  15279. }
  15280. },
  15281. frontRobes: {
  15282. height: math.unit(6, "feet"),
  15283. weight: math.unit(150, "lb"),
  15284. name: "Front (Robes)",
  15285. image: {
  15286. source: "./media/characters/porter/front-robes.svg",
  15287. extra: 1.01,
  15288. bottom: 0.01
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(11 + 9 / 12, "feet"),
  15296. default: true
  15297. },
  15298. ]
  15299. ))
  15300. characterMakers.push(() => makeCharacter(
  15301. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15302. {
  15303. legendary: {
  15304. height: math.unit(6, "feet"),
  15305. weight: math.unit(150, "lb"),
  15306. name: "Legendary",
  15307. image: {
  15308. source: "./media/characters/lucy/legendary.svg",
  15309. extra: 1355 / 1100,
  15310. bottom: 0.045
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Legendary",
  15317. height: math.unit(86882 * 2, "miles"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(6, "feet"),
  15327. weight: math.unit(150, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/drusilla/front.svg",
  15331. extra: 678 / 635,
  15332. bottom: 0.03
  15333. }
  15334. },
  15335. back: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Back",
  15339. image: {
  15340. source: "./media/characters/drusilla/back.svg",
  15341. extra: 678 / 635,
  15342. bottom: 0.005
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Macro",
  15349. height: math.unit(100, "feet")
  15350. },
  15351. {
  15352. name: "Canon Height",
  15353. height: math.unit(2000, "feet"),
  15354. default: true
  15355. },
  15356. ]
  15357. ))
  15358. characterMakers.push(() => makeCharacter(
  15359. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15360. {
  15361. front: {
  15362. height: math.unit(6, "feet"),
  15363. weight: math.unit(180, "lb"),
  15364. name: "Front",
  15365. image: {
  15366. source: "./media/characters/renard-thatch/front.svg",
  15367. extra: 2411 / 2275,
  15368. bottom: 0.01
  15369. }
  15370. },
  15371. frontPosing: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(180, "lb"),
  15374. name: "Front (Posing)",
  15375. image: {
  15376. source: "./media/characters/renard-thatch/front-posing.svg",
  15377. extra: 2381 / 2261,
  15378. bottom: 0.01
  15379. }
  15380. },
  15381. back: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(180, "lb"),
  15384. name: "Back",
  15385. image: {
  15386. source: "./media/characters/renard-thatch/back.svg",
  15387. extra: 2428 / 2288
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Micro",
  15394. height: math.unit(3, "inches")
  15395. },
  15396. {
  15397. name: "Default",
  15398. height: math.unit(6, "feet"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Macro",
  15403. height: math.unit(75, "feet")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(1450, "feet"),
  15412. weight: math.unit(1.21e6, "tons"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/sekvra/front.svg",
  15416. extra: 1193/1190,
  15417. bottom: 78/1271
  15418. }
  15419. },
  15420. side: {
  15421. height: math.unit(1450, "feet"),
  15422. weight: math.unit(1.21e6, "tons"),
  15423. name: "Side",
  15424. image: {
  15425. source: "./media/characters/sekvra/side.svg",
  15426. extra: 1193/1190,
  15427. bottom: 52/1245
  15428. }
  15429. },
  15430. back: {
  15431. height: math.unit(1450, "feet"),
  15432. weight: math.unit(1.21e6, "tons"),
  15433. name: "Back",
  15434. image: {
  15435. source: "./media/characters/sekvra/back.svg",
  15436. extra: 1219/1216,
  15437. bottom: 21/1240
  15438. }
  15439. },
  15440. frontClothed: {
  15441. height: math.unit(1450, "feet"),
  15442. weight: math.unit(1.21e6, "tons"),
  15443. name: "Front (Clothed)",
  15444. image: {
  15445. source: "./media/characters/sekvra/front-clothed.svg",
  15446. extra: 1192/1189,
  15447. bottom: 79/1271
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Macro",
  15454. height: math.unit(1450, "feet"),
  15455. default: true
  15456. },
  15457. {
  15458. name: "Megamacro",
  15459. height: math.unit(15000, "feet")
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(150, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/carmine/front.svg",
  15472. extra: 1557/1538,
  15473. bottom: 68/1625
  15474. }
  15475. },
  15476. frontArmor: {
  15477. height: math.unit(6, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Front (Armor)",
  15480. image: {
  15481. source: "./media/characters/carmine/front-armor.svg",
  15482. extra: 1549/1530,
  15483. bottom: 82/1631
  15484. }
  15485. },
  15486. mouth: {
  15487. height: math.unit(0.55, "feet"),
  15488. name: "Mouth",
  15489. image: {
  15490. source: "./media/characters/carmine/mouth.svg"
  15491. }
  15492. },
  15493. hand: {
  15494. height: math.unit(1.05, "feet"),
  15495. name: "Hand",
  15496. image: {
  15497. source: "./media/characters/carmine/hand.svg"
  15498. }
  15499. },
  15500. foot: {
  15501. height: math.unit(0.6, "feet"),
  15502. name: "Foot",
  15503. image: {
  15504. source: "./media/characters/carmine/foot.svg"
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Large",
  15511. height: math.unit(1, "mile")
  15512. },
  15513. {
  15514. name: "Huge",
  15515. height: math.unit(40, "miles"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Colossal",
  15520. height: math.unit(2500, "miles")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(6, "feet"),
  15529. weight: math.unit(150, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/elyssia/front.svg",
  15533. extra: 2201 / 2035,
  15534. bottom: 0.05
  15535. }
  15536. },
  15537. frontClothed: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front (Clothed)",
  15541. image: {
  15542. source: "./media/characters/elyssia/front-clothed.svg",
  15543. extra: 2201 / 2035,
  15544. bottom: 0.05
  15545. }
  15546. },
  15547. back: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Back",
  15551. image: {
  15552. source: "./media/characters/elyssia/back.svg",
  15553. extra: 2201 / 2035,
  15554. bottom: 0.013
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Smaller",
  15561. height: math.unit(150, "feet")
  15562. },
  15563. {
  15564. name: "Standard",
  15565. height: math.unit(1400, "feet"),
  15566. default: true
  15567. },
  15568. {
  15569. name: "Distracted",
  15570. height: math.unit(15000, "feet")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(7 + 4/12, "feet"),
  15579. weight: math.unit(690, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/geno-maxwell/front.svg",
  15583. extra: 984/856,
  15584. bottom: 87/1071
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(7 + 4/12, "feet"),
  15589. weight: math.unit(690, "lb"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/geno-maxwell/back.svg",
  15593. extra: 981/854,
  15594. bottom: 57/1038
  15595. }
  15596. },
  15597. frontCostume: {
  15598. height: math.unit(7 + 4/12, "feet"),
  15599. weight: math.unit(690, "lb"),
  15600. name: "Front (Costume)",
  15601. image: {
  15602. source: "./media/characters/geno-maxwell/front-costume.svg",
  15603. extra: 984/856,
  15604. bottom: 87/1071
  15605. }
  15606. },
  15607. backcostume: {
  15608. height: math.unit(7 + 4/12, "feet"),
  15609. weight: math.unit(690, "lb"),
  15610. name: "Back (Costume)",
  15611. image: {
  15612. source: "./media/characters/geno-maxwell/back-costume.svg",
  15613. extra: 981/854,
  15614. bottom: 57/1038
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Micro",
  15621. height: math.unit(3, "inches")
  15622. },
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(7 + 4 / 12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(220, "feet")
  15631. },
  15632. {
  15633. name: "Megamacro",
  15634. height: math.unit(11, "miles")
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(7 + 4/12, "feet"),
  15643. weight: math.unit(750, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/regena-maxwell/front.svg",
  15647. extra: 984/856,
  15648. bottom: 87/1071
  15649. }
  15650. },
  15651. back: {
  15652. height: math.unit(7 + 4/12, "feet"),
  15653. weight: math.unit(750, "lb"),
  15654. name: "Back",
  15655. image: {
  15656. source: "./media/characters/regena-maxwell/back.svg",
  15657. extra: 981/854,
  15658. bottom: 57/1038
  15659. }
  15660. },
  15661. frontCostume: {
  15662. height: math.unit(7 + 4/12, "feet"),
  15663. weight: math.unit(750, "lb"),
  15664. name: "Front (Costume)",
  15665. image: {
  15666. source: "./media/characters/regena-maxwell/front-costume.svg",
  15667. extra: 984/856,
  15668. bottom: 87/1071
  15669. }
  15670. },
  15671. backcostume: {
  15672. height: math.unit(7 + 4/12, "feet"),
  15673. weight: math.unit(750, "lb"),
  15674. name: "Back (Costume)",
  15675. image: {
  15676. source: "./media/characters/regena-maxwell/back-costume.svg",
  15677. extra: 981/854,
  15678. bottom: 57/1038
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(7 + 4 / 12, "feet"),
  15686. default: true
  15687. },
  15688. {
  15689. name: "Macro",
  15690. height: math.unit(220, "feet")
  15691. },
  15692. {
  15693. name: "Megamacro",
  15694. height: math.unit(11, "miles")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(150, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15707. extra: 860 / 690,
  15708. bottom: 0.03
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(1.7, "meters"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(6, "feet"),
  15725. weight: math.unit(150, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/quilly/front.svg",
  15729. extra: 890 / 776
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Gigamacro",
  15736. height: math.unit(404090, "miles"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(7 + 8 / 12, "feet"),
  15746. weight: math.unit(350, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/tempest/front.svg",
  15750. extra: 1175 / 1086,
  15751. bottom: 0.02
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(7 + 8 / 12, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15765. {
  15766. side: {
  15767. height: math.unit(4 + 5 / 12, "feet"),
  15768. weight: math.unit(80, "lb"),
  15769. name: "Side",
  15770. image: {
  15771. source: "./media/characters/rodger/side.svg",
  15772. extra: 1235 / 1118
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Micro",
  15779. height: math.unit(1, "inch")
  15780. },
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(4 + 5 / 12, "feet"),
  15784. default: true
  15785. },
  15786. {
  15787. name: "Macro",
  15788. height: math.unit(120, "feet")
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(6, "feet"),
  15797. weight: math.unit(150, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/danyel/front.svg",
  15801. extra: 1185 / 1123,
  15802. bottom: 0.05
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Shrunken",
  15809. height: math.unit(0.5, "mm")
  15810. },
  15811. {
  15812. name: "Micro",
  15813. height: math.unit(1, "mm"),
  15814. default: true
  15815. },
  15816. {
  15817. name: "Upsized",
  15818. height: math.unit(5 + 5 / 12, "feet")
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(5 + 6 / 12, "feet"),
  15827. weight: math.unit(200, "lb"),
  15828. name: "Front",
  15829. image: {
  15830. source: "./media/characters/vivian-bijoux/front.svg",
  15831. extra: 1217/1209,
  15832. bottom: 76/1293
  15833. }
  15834. },
  15835. back: {
  15836. height: math.unit(5 + 6 / 12, "feet"),
  15837. weight: math.unit(200, "lb"),
  15838. name: "Back",
  15839. image: {
  15840. source: "./media/characters/vivian-bijoux/back.svg",
  15841. extra: 1214/1208,
  15842. bottom: 51/1265
  15843. }
  15844. },
  15845. dressed: {
  15846. height: math.unit(5 + 6 / 12, "feet"),
  15847. weight: math.unit(200, "lb"),
  15848. name: "Dressed",
  15849. image: {
  15850. source: "./media/characters/vivian-bijoux/dressed.svg",
  15851. extra: 1217/1209,
  15852. bottom: 76/1293
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Normal",
  15859. height: math.unit(5 + 6 / 12, "feet"),
  15860. default: true
  15861. },
  15862. {
  15863. name: "Bad Dream",
  15864. height: math.unit(500, "feet")
  15865. },
  15866. {
  15867. name: "Nightmare",
  15868. height: math.unit(500, "miles")
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(6 + 1 / 12, "feet"),
  15877. weight: math.unit(260, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/zeta/front.svg",
  15881. extra: 1968 / 1889,
  15882. bottom: 0.06
  15883. }
  15884. },
  15885. back: {
  15886. height: math.unit(6 + 1 / 12, "feet"),
  15887. weight: math.unit(260, "lb"),
  15888. name: "Back",
  15889. image: {
  15890. source: "./media/characters/zeta/back.svg",
  15891. extra: 1944 / 1858,
  15892. bottom: 0.03
  15893. }
  15894. },
  15895. hand: {
  15896. height: math.unit(1.112, "feet"),
  15897. name: "Hand",
  15898. image: {
  15899. source: "./media/characters/zeta/hand.svg"
  15900. }
  15901. },
  15902. foot: {
  15903. height: math.unit(1.48, "feet"),
  15904. name: "Foot",
  15905. image: {
  15906. source: "./media/characters/zeta/foot.svg"
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Micro",
  15913. height: math.unit(6, "inches")
  15914. },
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(6 + 1 / 12, "feet"),
  15918. default: true
  15919. },
  15920. {
  15921. name: "Macro",
  15922. height: math.unit(20, "feet")
  15923. },
  15924. ]
  15925. ))
  15926. characterMakers.push(() => makeCharacter(
  15927. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15928. {
  15929. front: {
  15930. height: math.unit(6, "feet"),
  15931. weight: math.unit(150, "lb"),
  15932. name: "Front",
  15933. image: {
  15934. source: "./media/characters/jamie-larsen/front.svg",
  15935. extra: 962 / 933,
  15936. bottom: 0.02
  15937. }
  15938. },
  15939. back: {
  15940. height: math.unit(6, "feet"),
  15941. weight: math.unit(150, "lb"),
  15942. name: "Back",
  15943. image: {
  15944. source: "./media/characters/jamie-larsen/back.svg",
  15945. extra: 997 / 946
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Macro",
  15952. height: math.unit(28 + 7 / 12, "feet"),
  15953. default: true
  15954. },
  15955. {
  15956. name: "Macro+",
  15957. height: math.unit(180, "feet")
  15958. },
  15959. {
  15960. name: "Megamacro",
  15961. height: math.unit(10, "miles")
  15962. },
  15963. {
  15964. name: "Gigamacro",
  15965. height: math.unit(200000, "miles")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(120, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/vance/front.svg",
  15978. extra: 1980 / 1890,
  15979. bottom: 0.09
  15980. }
  15981. },
  15982. back: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(120, "lb"),
  15985. name: "Back",
  15986. image: {
  15987. source: "./media/characters/vance/back.svg",
  15988. extra: 2081 / 1994,
  15989. bottom: 0.014
  15990. }
  15991. },
  15992. hand: {
  15993. height: math.unit(0.88, "feet"),
  15994. name: "Hand",
  15995. image: {
  15996. source: "./media/characters/vance/hand.svg"
  15997. }
  15998. },
  15999. foot: {
  16000. height: math.unit(0.64, "feet"),
  16001. name: "Foot",
  16002. image: {
  16003. source: "./media/characters/vance/foot.svg"
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Small",
  16010. height: math.unit(90, "feet"),
  16011. default: true
  16012. },
  16013. {
  16014. name: "Macro",
  16015. height: math.unit(100, "meters")
  16016. },
  16017. {
  16018. name: "Megamacro",
  16019. height: math.unit(15, "miles")
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(180, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/xochitl/front.svg",
  16032. extra: 2297 / 2261,
  16033. bottom: 0.065
  16034. }
  16035. },
  16036. back: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(180, "lb"),
  16039. name: "Back",
  16040. image: {
  16041. source: "./media/characters/xochitl/back.svg",
  16042. extra: 2386 / 2354,
  16043. bottom: 0.01
  16044. }
  16045. },
  16046. foot: {
  16047. height: math.unit(6 / 5 * 1.15, "feet"),
  16048. weight: math.unit(150, "lb"),
  16049. name: "Foot",
  16050. image: {
  16051. source: "./media/characters/xochitl/foot.svg"
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(80, "feet")
  16059. },
  16060. {
  16061. name: "Macro+",
  16062. height: math.unit(400, "feet"),
  16063. default: true
  16064. },
  16065. {
  16066. name: "Gigamacro",
  16067. height: math.unit(80000, "miles")
  16068. },
  16069. {
  16070. name: "Gigamacro+",
  16071. height: math.unit(400000, "miles")
  16072. },
  16073. {
  16074. name: "Teramacro",
  16075. height: math.unit(300, "AU")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(150, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/vincent/front.svg",
  16088. extra: 1130 / 1080,
  16089. bottom: 0.055
  16090. }
  16091. },
  16092. beak: {
  16093. height: math.unit(6 * 0.1, "feet"),
  16094. name: "Beak",
  16095. image: {
  16096. source: "./media/characters/vincent/beak.svg"
  16097. }
  16098. },
  16099. hand: {
  16100. height: math.unit(6 * 0.85, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Hand",
  16103. image: {
  16104. source: "./media/characters/vincent/hand.svg"
  16105. }
  16106. },
  16107. foot: {
  16108. height: math.unit(6 * 0.19, "feet"),
  16109. weight: math.unit(150, "lb"),
  16110. name: "Foot",
  16111. image: {
  16112. source: "./media/characters/vincent/foot.svg"
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Base",
  16119. height: math.unit(6 + 5 / 12, "feet"),
  16120. default: true
  16121. },
  16122. {
  16123. name: "Macro",
  16124. height: math.unit(300, "feet")
  16125. },
  16126. {
  16127. name: "Megamacro",
  16128. height: math.unit(2, "miles")
  16129. },
  16130. {
  16131. name: "Gigamacro",
  16132. height: math.unit(1000, "miles")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(2, "meters"),
  16141. weight: math.unit(500, "kg"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/coatl/front.svg",
  16145. extra: 3948 / 3500,
  16146. bottom: 0.082
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(4, "meters")
  16154. },
  16155. {
  16156. name: "Macro",
  16157. height: math.unit(100, "meters"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Macro+",
  16162. height: math.unit(300, "meters")
  16163. },
  16164. {
  16165. name: "Megamacro",
  16166. height: math.unit(3, "gigameters")
  16167. },
  16168. {
  16169. name: "Megamacro+",
  16170. height: math.unit(300, "terameters")
  16171. },
  16172. {
  16173. name: "Megamacro++",
  16174. height: math.unit(3, "lightyears")
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(50, "kg"),
  16184. name: "front",
  16185. image: {
  16186. source: "./media/characters/shiroryu/front.svg",
  16187. extra: 1990 / 1935
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Mortal Mingling",
  16194. height: math.unit(3, "meters")
  16195. },
  16196. {
  16197. name: "Kaiju-ish",
  16198. height: math.unit(250, "meters")
  16199. },
  16200. {
  16201. name: "Somewhat Godly",
  16202. height: math.unit(400, "km"),
  16203. default: true
  16204. },
  16205. {
  16206. name: "Planetary",
  16207. height: math.unit(300, "megameters")
  16208. },
  16209. {
  16210. name: "Galaxy-dwarfing",
  16211. height: math.unit(450, "kiloparsecs")
  16212. },
  16213. {
  16214. name: "Universe Eater",
  16215. height: math.unit(150, "gigaparsecs")
  16216. },
  16217. {
  16218. name: "Almost Immeasurable",
  16219. height: math.unit(1.3e266, "yottaparsecs")
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(6, "feet"),
  16228. weight: math.unit(150, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/umeko/front.svg",
  16232. extra: 1,
  16233. bottom: 0.019
  16234. }
  16235. },
  16236. frontArmored: {
  16237. height: math.unit(6, "feet"),
  16238. weight: math.unit(150, "lb"),
  16239. name: "Front (Armored)",
  16240. image: {
  16241. source: "./media/characters/umeko/front-armored.svg",
  16242. extra: 1,
  16243. bottom: 0.021
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Macro",
  16250. height: math.unit(220, "feet"),
  16251. default: true
  16252. },
  16253. {
  16254. name: "Guardian Dragon",
  16255. height: math.unit(50, "miles")
  16256. },
  16257. {
  16258. name: "Cosmic",
  16259. height: math.unit(800000, "miles")
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16265. {
  16266. front: {
  16267. height: math.unit(6, "feet"),
  16268. weight: math.unit(150, "lb"),
  16269. name: "Front",
  16270. image: {
  16271. source: "./media/characters/cassidy/front.svg",
  16272. extra: 810/808,
  16273. bottom: 41/851
  16274. }
  16275. },
  16276. },
  16277. [
  16278. {
  16279. name: "Canon Height",
  16280. height: math.unit(120, "feet"),
  16281. default: true
  16282. },
  16283. {
  16284. name: "Macro+",
  16285. height: math.unit(400, "feet")
  16286. },
  16287. {
  16288. name: "Macro++",
  16289. height: math.unit(4000, "feet")
  16290. },
  16291. {
  16292. name: "Megamacro",
  16293. height: math.unit(3, "miles")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(6, "feet"),
  16302. weight: math.unit(150, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/isaac/front.svg",
  16306. extra: 896 / 815,
  16307. bottom: 0.11
  16308. }
  16309. },
  16310. },
  16311. [
  16312. {
  16313. name: "Human Size",
  16314. height: math.unit(8, "feet"),
  16315. default: true
  16316. },
  16317. {
  16318. name: "Macro",
  16319. height: math.unit(400, "feet")
  16320. },
  16321. {
  16322. name: "Megamacro",
  16323. height: math.unit(50, "miles")
  16324. },
  16325. {
  16326. name: "Canon Height",
  16327. height: math.unit(200, "AU")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. weight: math.unit(72, "kg"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/sleekit/front.svg",
  16340. extra: 4693 / 4487,
  16341. bottom: 0.012
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Minimum Height",
  16348. height: math.unit(10, "meters")
  16349. },
  16350. {
  16351. name: "Smaller",
  16352. height: math.unit(25, "meters")
  16353. },
  16354. {
  16355. name: "Larger",
  16356. height: math.unit(38, "meters"),
  16357. default: true
  16358. },
  16359. {
  16360. name: "Maximum height",
  16361. height: math.unit(100, "meters")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(6, "feet"),
  16370. weight: math.unit(150, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/nillia/front.svg",
  16374. extra: 719/665,
  16375. bottom: 6/725
  16376. }
  16377. },
  16378. back: {
  16379. height: math.unit(6, "feet"),
  16380. weight: math.unit(150, "lb"),
  16381. name: "Back",
  16382. image: {
  16383. source: "./media/characters/nillia/back.svg",
  16384. extra: 705/651,
  16385. bottom: 5/710
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Canon Height",
  16392. height: math.unit(489, "feet"),
  16393. default: true
  16394. }
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16399. {
  16400. front: {
  16401. height: math.unit(6, "feet"),
  16402. weight: math.unit(150, "lb"),
  16403. name: "Front",
  16404. image: {
  16405. source: "./media/characters/mesmyriza/front.svg",
  16406. extra: 1541/1291,
  16407. bottom: 87/1628
  16408. }
  16409. },
  16410. foot: {
  16411. height: math.unit(6 / (250 / 35), "feet"),
  16412. name: "Foot",
  16413. image: {
  16414. source: "./media/characters/mesmyriza/foot.svg"
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Macro",
  16421. height: math.unit(457, "meters"),
  16422. default: true
  16423. },
  16424. {
  16425. name: "Megamacro",
  16426. height: math.unit(8, "megameters")
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(6, "feet"),
  16435. weight: math.unit(250, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/saudade/front.svg",
  16439. extra: 1172 / 1139,
  16440. bottom: 0.035
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Micro",
  16447. height: math.unit(3, "inches")
  16448. },
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(6, "feet"),
  16452. default: true
  16453. },
  16454. {
  16455. name: "Macro",
  16456. height: math.unit(50, "feet")
  16457. },
  16458. {
  16459. name: "Megamacro",
  16460. height: math.unit(2800, "feet")
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(5 + 4 / 12, "feet"),
  16469. weight: math.unit(100, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/keireer/front.svg",
  16473. extra: 716 / 666,
  16474. bottom: 0.05
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(5 + 4 / 12, "feet"),
  16482. default: true
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(5.5, "feet"),
  16491. weight: math.unit(90, "kg"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/mirja/front.svg",
  16495. extra: 1452/1262,
  16496. bottom: 67/1519
  16497. }
  16498. },
  16499. frontDressed: {
  16500. height: math.unit(5.5, "feet"),
  16501. weight: math.unit(90, "lb"),
  16502. name: "Front (Dressed)",
  16503. image: {
  16504. source: "./media/characters/mirja/dressed.svg",
  16505. extra: 1452/1262,
  16506. bottom: 67/1519
  16507. }
  16508. },
  16509. back: {
  16510. height: math.unit(6, "feet"),
  16511. weight: math.unit(90, "lb"),
  16512. name: "Back",
  16513. image: {
  16514. source: "./media/characters/mirja/back.svg",
  16515. extra: 1892/1795,
  16516. bottom: 48/1940
  16517. }
  16518. },
  16519. maw: {
  16520. height: math.unit(1.312, "feet"),
  16521. name: "Maw",
  16522. image: {
  16523. source: "./media/characters/mirja/maw.svg"
  16524. }
  16525. },
  16526. paw: {
  16527. height: math.unit(1.15, "feet"),
  16528. name: "Paw",
  16529. image: {
  16530. source: "./media/characters/mirja/paw.svg"
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "\"Incognito\"",
  16537. height: math.unit(3, "meters")
  16538. },
  16539. {
  16540. name: "Strolling Size",
  16541. height: math.unit(15, "km")
  16542. },
  16543. {
  16544. name: "Larger Strolling Size",
  16545. height: math.unit(400, "km")
  16546. },
  16547. {
  16548. name: "Preferred Size",
  16549. height: math.unit(5000, "km"),
  16550. default: true
  16551. },
  16552. {
  16553. name: "True Size",
  16554. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(15, "feet"),
  16563. weight: math.unit(880, "kg"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/nightraver/front.svg",
  16567. extra: 2444 / 2160,
  16568. bottom: 0.027
  16569. }
  16570. },
  16571. back: {
  16572. height: math.unit(15, "feet"),
  16573. weight: math.unit(880, "kg"),
  16574. name: "Back",
  16575. image: {
  16576. source: "./media/characters/nightraver/back.svg",
  16577. extra: 2309 / 2180,
  16578. bottom: 0.005
  16579. }
  16580. },
  16581. sole: {
  16582. height: math.unit(2.878, "feet"),
  16583. name: "Sole",
  16584. image: {
  16585. source: "./media/characters/nightraver/sole.svg"
  16586. }
  16587. },
  16588. foot: {
  16589. height: math.unit(2.285, "feet"),
  16590. name: "Foot",
  16591. image: {
  16592. source: "./media/characters/nightraver/foot.svg"
  16593. }
  16594. },
  16595. maw: {
  16596. height: math.unit(2.67, "feet"),
  16597. name: "Maw",
  16598. image: {
  16599. source: "./media/characters/nightraver/maw.svg"
  16600. }
  16601. },
  16602. },
  16603. [
  16604. {
  16605. name: "Micro",
  16606. height: math.unit(1, "cm")
  16607. },
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(15, "feet"),
  16611. default: true
  16612. },
  16613. {
  16614. name: "Macro",
  16615. height: math.unit(300, "feet")
  16616. },
  16617. {
  16618. name: "Megamacro",
  16619. height: math.unit(300, "miles")
  16620. },
  16621. {
  16622. name: "Gigamacro",
  16623. height: math.unit(10000, "miles")
  16624. },
  16625. ]
  16626. ))
  16627. characterMakers.push(() => makeCharacter(
  16628. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16629. {
  16630. side: {
  16631. height: math.unit(2, "inches"),
  16632. weight: math.unit(5, "grams"),
  16633. name: "Side",
  16634. image: {
  16635. source: "./media/characters/arc/side.svg"
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Micro",
  16642. height: math.unit(2, "inches"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(1.1938, "meters"),
  16652. weight: math.unit(54, "kg"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/nebula-shahar/front.svg",
  16656. extra: 1642 / 1436,
  16657. bottom: 0.06
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Megamicro",
  16664. height: math.unit(0.3, "mm")
  16665. },
  16666. {
  16667. name: "Micro",
  16668. height: math.unit(3, "cm")
  16669. },
  16670. {
  16671. name: "Normal",
  16672. height: math.unit(138, "cm"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Macro",
  16677. height: math.unit(30, "m")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(5.24, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/shayla/front.svg",
  16690. extra: 1512 / 1414,
  16691. bottom: 0.01
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(5.24, "feet"),
  16696. weight: math.unit(150, "lb"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/shayla/back.svg",
  16700. extra: 1512 / 1414
  16701. }
  16702. },
  16703. hand: {
  16704. height: math.unit(0.7781496062992126, "feet"),
  16705. name: "Hand",
  16706. image: {
  16707. source: "./media/characters/shayla/hand.svg"
  16708. }
  16709. },
  16710. foot: {
  16711. height: math.unit(1.4206036745406823, "feet"),
  16712. name: "Foot",
  16713. image: {
  16714. source: "./media/characters/shayla/foot.svg"
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Micro",
  16721. height: math.unit(0.32, "feet")
  16722. },
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(5.24, "feet"),
  16726. default: true
  16727. },
  16728. {
  16729. name: "Macro",
  16730. height: math.unit(492.12, "feet")
  16731. },
  16732. {
  16733. name: "Megamacro",
  16734. height: math.unit(186.41, "miles")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(2.2, "m"),
  16743. weight: math.unit(120, "kg"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/pia-jr/front.svg",
  16747. extra: 1000 / 970,
  16748. bottom: 0.035
  16749. }
  16750. },
  16751. hand: {
  16752. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16753. name: "Hand",
  16754. image: {
  16755. source: "./media/characters/pia-jr/hand.svg"
  16756. }
  16757. },
  16758. paw: {
  16759. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16760. name: "Paw",
  16761. image: {
  16762. source: "./media/characters/pia-jr/paw.svg"
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Micro",
  16769. height: math.unit(1.2, "cm")
  16770. },
  16771. {
  16772. name: "Normal",
  16773. height: math.unit(2.2, "m"),
  16774. default: true
  16775. },
  16776. {
  16777. name: "Macro",
  16778. height: math.unit(180, "m")
  16779. },
  16780. {
  16781. name: "Megamacro",
  16782. height: math.unit(420, "km")
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(2, "m"),
  16791. weight: math.unit(115, "kg"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/pia-sr/front.svg",
  16795. extra: 760 / 730,
  16796. bottom: 0.015
  16797. }
  16798. },
  16799. back: {
  16800. height: math.unit(2, "m"),
  16801. weight: math.unit(115, "kg"),
  16802. name: "Back",
  16803. image: {
  16804. source: "./media/characters/pia-sr/back.svg",
  16805. extra: 760 / 730,
  16806. bottom: 0.01
  16807. }
  16808. },
  16809. hand: {
  16810. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16811. name: "Hand",
  16812. image: {
  16813. source: "./media/characters/pia-sr/hand.svg"
  16814. }
  16815. },
  16816. foot: {
  16817. height: math.unit(1.83, "feet"),
  16818. name: "Foot",
  16819. image: {
  16820. source: "./media/characters/pia-sr/foot.svg"
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Micro",
  16827. height: math.unit(88, "mm")
  16828. },
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(2, "m"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Macro",
  16836. height: math.unit(200, "m")
  16837. },
  16838. {
  16839. name: "Megamacro",
  16840. height: math.unit(420, "km")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(8 + 2 / 12, "feet"),
  16849. weight: math.unit(300, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/kibibyte/front.svg",
  16853. extra: 2221 / 2098,
  16854. bottom: 0.04
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(8 + 2 / 12, "feet"),
  16862. default: true
  16863. },
  16864. {
  16865. name: "Socialable Macro",
  16866. height: math.unit(50, "feet")
  16867. },
  16868. {
  16869. name: "Macro",
  16870. height: math.unit(300, "feet")
  16871. },
  16872. {
  16873. name: "Megamacro",
  16874. height: math.unit(500, "miles")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(150, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/felix/front.svg",
  16887. extra: 762 / 722,
  16888. bottom: 0.02
  16889. }
  16890. },
  16891. frontClothed: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(150, "lb"),
  16894. name: "Front (Clothed)",
  16895. image: {
  16896. source: "./media/characters/felix/front-clothed.svg",
  16897. extra: 762 / 722,
  16898. bottom: 0.02
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(6 + 8 / 12, "feet"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Macro",
  16910. height: math.unit(2600, "feet")
  16911. },
  16912. {
  16913. name: "Megamacro",
  16914. height: math.unit(450, "miles")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(6 + 1 / 12, "feet"),
  16923. weight: math.unit(250, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/tobo/front.svg",
  16927. extra: 608 / 586,
  16928. bottom: 0.023
  16929. }
  16930. },
  16931. back: {
  16932. height: math.unit(6 + 1 / 12, "feet"),
  16933. weight: math.unit(250, "lb"),
  16934. name: "Back",
  16935. image: {
  16936. source: "./media/characters/tobo/back.svg",
  16937. extra: 608 / 586
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Nano",
  16944. height: math.unit(2, "nm")
  16945. },
  16946. {
  16947. name: "Megamicro",
  16948. height: math.unit(0.1, "mm")
  16949. },
  16950. {
  16951. name: "Micro",
  16952. height: math.unit(1, "inch"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Human-sized",
  16957. height: math.unit(6 + 1 / 12, "feet")
  16958. },
  16959. {
  16960. name: "Macro",
  16961. height: math.unit(250, "feet")
  16962. },
  16963. {
  16964. name: "Megamacro",
  16965. height: math.unit(75, "miles")
  16966. },
  16967. {
  16968. name: "Texas-sized",
  16969. height: math.unit(750, "miles")
  16970. },
  16971. {
  16972. name: "Teramacro",
  16973. height: math.unit(50000, "miles")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(6, "feet"),
  16982. weight: math.unit(269, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/danny-kapowsky/front.svg",
  16986. extra: 766 / 736,
  16987. bottom: 0.044
  16988. }
  16989. },
  16990. back: {
  16991. height: math.unit(6, "feet"),
  16992. weight: math.unit(269, "lb"),
  16993. name: "Back",
  16994. image: {
  16995. source: "./media/characters/danny-kapowsky/back.svg",
  16996. extra: 797 / 760,
  16997. bottom: 0.025
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Macro",
  17004. height: math.unit(150, "feet"),
  17005. default: true
  17006. },
  17007. {
  17008. name: "Macro+",
  17009. height: math.unit(200, "feet")
  17010. },
  17011. {
  17012. name: "Macro++",
  17013. height: math.unit(300, "feet")
  17014. },
  17015. {
  17016. name: "Macro+++",
  17017. height: math.unit(400, "feet")
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17023. {
  17024. side: {
  17025. height: math.unit(6, "feet"),
  17026. weight: math.unit(170, "lb"),
  17027. name: "Side",
  17028. image: {
  17029. source: "./media/characters/finn/side.svg",
  17030. extra: 1953 / 1807,
  17031. bottom: 0.057
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Megamacro",
  17038. height: math.unit(14445, "feet"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(5 + 6 / 12, "feet"),
  17048. weight: math.unit(125, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/roy/front.svg",
  17052. extra: 1,
  17053. bottom: 0.11
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Micro",
  17060. height: math.unit(3, "inches"),
  17061. default: true
  17062. },
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(5 + 6 / 12, "feet")
  17066. },
  17067. {
  17068. name: "Lesser Macro",
  17069. height: math.unit(60, "feet")
  17070. },
  17071. {
  17072. name: "Greater Macro",
  17073. height: math.unit(120, "feet")
  17074. },
  17075. ]
  17076. ))
  17077. characterMakers.push(() => makeCharacter(
  17078. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17079. {
  17080. front: {
  17081. height: math.unit(6, "feet"),
  17082. weight: math.unit(100, "lb"),
  17083. name: "Front",
  17084. image: {
  17085. source: "./media/characters/aevsivs/front.svg",
  17086. extra: 1,
  17087. bottom: 0.03
  17088. }
  17089. },
  17090. back: {
  17091. height: math.unit(6, "feet"),
  17092. weight: math.unit(100, "lb"),
  17093. name: "Back",
  17094. image: {
  17095. source: "./media/characters/aevsivs/back.svg"
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Micro",
  17102. height: math.unit(2, "inches"),
  17103. default: true
  17104. },
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(5, "feet")
  17108. },
  17109. ]
  17110. ))
  17111. characterMakers.push(() => makeCharacter(
  17112. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17113. {
  17114. front: {
  17115. height: math.unit(5 + 7 / 12, "feet"),
  17116. weight: math.unit(159, "lb"),
  17117. name: "Front",
  17118. image: {
  17119. source: "./media/characters/hildegard/front.svg",
  17120. extra: 289 / 269,
  17121. bottom: 7.63 / 297.8
  17122. }
  17123. },
  17124. back: {
  17125. height: math.unit(5 + 7 / 12, "feet"),
  17126. weight: math.unit(159, "lb"),
  17127. name: "Back",
  17128. image: {
  17129. source: "./media/characters/hildegard/back.svg",
  17130. extra: 280 / 260,
  17131. bottom: 2.3 / 282
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(5 + 7 / 12, "feet"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17145. {
  17146. bernard: {
  17147. height: math.unit(2 + 7 / 12, "feet"),
  17148. weight: math.unit(66, "lb"),
  17149. name: "Bernard",
  17150. rename: true,
  17151. image: {
  17152. source: "./media/characters/bernard-wilder/bernard.svg",
  17153. extra: 192 / 128,
  17154. bottom: 0.05
  17155. }
  17156. },
  17157. wilder: {
  17158. height: math.unit(5 + 8 / 12, "feet"),
  17159. weight: math.unit(143, "lb"),
  17160. name: "Wilder",
  17161. rename: true,
  17162. image: {
  17163. source: "./media/characters/bernard-wilder/wilder.svg",
  17164. extra: 361 / 312,
  17165. bottom: 0.02
  17166. }
  17167. },
  17168. },
  17169. [
  17170. {
  17171. name: "Normal",
  17172. height: math.unit(2 + 7 / 12, "feet"),
  17173. default: true
  17174. },
  17175. ]
  17176. ))
  17177. characterMakers.push(() => makeCharacter(
  17178. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17179. {
  17180. anthro: {
  17181. height: math.unit(6 + 1 / 12, "feet"),
  17182. weight: math.unit(155, "lb"),
  17183. name: "Anthro",
  17184. image: {
  17185. source: "./media/characters/hearth/anthro.svg",
  17186. extra: 1178/1136,
  17187. bottom: 28/1206
  17188. }
  17189. },
  17190. feral: {
  17191. height: math.unit(3.78, "feet"),
  17192. weight: math.unit(35, "kg"),
  17193. name: "Feral",
  17194. image: {
  17195. source: "./media/characters/hearth/feral.svg",
  17196. extra: 153 / 135,
  17197. bottom: 0.03
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(6 + 1 / 12, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(6, "feet"),
  17214. weight: math.unit(182, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/ingrid/front.svg",
  17218. extra: 294 / 268,
  17219. bottom: 0.027
  17220. }
  17221. },
  17222. },
  17223. [
  17224. {
  17225. name: "Normal",
  17226. height: math.unit(6, "feet"),
  17227. default: true
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17233. {
  17234. eevee: {
  17235. height: math.unit(2 + 10 / 12, "feet"),
  17236. weight: math.unit(86, "lb"),
  17237. name: "Malgam",
  17238. image: {
  17239. source: "./media/characters/malgam/eevee.svg",
  17240. extra: 952/784,
  17241. bottom: 38/990
  17242. }
  17243. },
  17244. sylveon: {
  17245. height: math.unit(4, "feet"),
  17246. weight: math.unit(101, "lb"),
  17247. name: "Future Malgam",
  17248. rename: true,
  17249. image: {
  17250. source: "./media/characters/malgam/sylveon.svg",
  17251. extra: 371 / 325,
  17252. bottom: 0.015
  17253. }
  17254. },
  17255. gigantamax: {
  17256. height: math.unit(50, "feet"),
  17257. name: "Gigantamax Malgam",
  17258. rename: true,
  17259. image: {
  17260. source: "./media/characters/malgam/gigantamax.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(2 + 10 / 12, "feet"),
  17268. default: true
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(5 + 11 / 12, "feet"),
  17277. weight: math.unit(188, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/fleur/front.svg",
  17281. extra: 309 / 283,
  17282. bottom: 0.007
  17283. }
  17284. },
  17285. },
  17286. [
  17287. {
  17288. name: "Normal",
  17289. height: math.unit(5 + 11 / 12, "feet"),
  17290. default: true
  17291. },
  17292. ]
  17293. ))
  17294. characterMakers.push(() => makeCharacter(
  17295. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17296. {
  17297. front: {
  17298. height: math.unit(5 + 4 / 12, "feet"),
  17299. weight: math.unit(122, "lb"),
  17300. name: "Front",
  17301. image: {
  17302. source: "./media/characters/jude/front.svg",
  17303. extra: 288 / 273,
  17304. bottom: 0.03
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(5 + 4 / 12, "feet"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17318. {
  17319. front: {
  17320. height: math.unit(5 + 11 / 12, "feet"),
  17321. weight: math.unit(190, "lb"),
  17322. name: "Front",
  17323. image: {
  17324. source: "./media/characters/seara/front.svg",
  17325. extra: 1,
  17326. bottom: 0.05
  17327. }
  17328. },
  17329. },
  17330. [
  17331. {
  17332. name: "Normal",
  17333. height: math.unit(5 + 11 / 12, "feet"),
  17334. default: true
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(16 + 5 / 12, "feet"),
  17343. weight: math.unit(524, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/caspian-lugia/front.svg",
  17347. extra: 1,
  17348. bottom: 0.04
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(16 + 5 / 12, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17362. {
  17363. front: {
  17364. height: math.unit(5 + 7 / 12, "feet"),
  17365. weight: math.unit(170, "lb"),
  17366. name: "Front",
  17367. image: {
  17368. source: "./media/characters/mika/front.svg",
  17369. extra: 1,
  17370. bottom: 0.016
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(5 + 7 / 12, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(6 + 2 / 12, "feet"),
  17387. weight: math.unit(268, "lb"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/sol/front.svg",
  17391. extra: 247 / 231,
  17392. bottom: 0.05
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(6 + 2 / 12, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17406. {
  17407. buizel: {
  17408. height: math.unit(2 + 5 / 12, "feet"),
  17409. weight: math.unit(87, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/umiko/buizel.svg",
  17413. extra: 172 / 157,
  17414. bottom: 0.01
  17415. },
  17416. form: "buizel",
  17417. default: true
  17418. },
  17419. floatzel: {
  17420. height: math.unit(5 + 9 / 12, "feet"),
  17421. weight: math.unit(250, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/umiko/floatzel.svg",
  17425. extra: 1076/1006,
  17426. bottom: 15/1091
  17427. },
  17428. form: "floatzel",
  17429. default: true
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(2 + 5 / 12, "feet"),
  17436. form: "buizel",
  17437. default: true
  17438. },
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(5 + 9 / 12, "feet"),
  17442. form: "floatzel",
  17443. default: true
  17444. },
  17445. ],
  17446. {
  17447. "buizel": {
  17448. name: "Buizel"
  17449. },
  17450. "floatzel": {
  17451. name: "Floatzel",
  17452. default: true
  17453. }
  17454. }
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17458. {
  17459. front: {
  17460. height: math.unit(6 + 2 / 12, "feet"),
  17461. weight: math.unit(146, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/iliac/front.svg",
  17465. extra: 389 / 365,
  17466. bottom: 0.035
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(6 + 2 / 12, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(6, "feet"),
  17483. weight: math.unit(170, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/topaz/front.svg",
  17487. extra: 317 / 303,
  17488. bottom: 0.055
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(6, "feet"),
  17496. default: true
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(5 + 11 / 12, "feet"),
  17505. weight: math.unit(144, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/gabriel/front.svg",
  17509. extra: 285 / 262,
  17510. bottom: 0.004
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 11 / 12, "feet"),
  17518. default: true
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17524. {
  17525. side: {
  17526. height: math.unit(6 + 5 / 12, "feet"),
  17527. weight: math.unit(300, "lb"),
  17528. name: "Side",
  17529. image: {
  17530. source: "./media/characters/tempest-suicune/side.svg",
  17531. extra: 195 / 154,
  17532. bottom: 0.04
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(6 + 5 / 12, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(7 + 2 / 12, "feet"),
  17549. weight: math.unit(322, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/vulcan/front.svg",
  17553. extra: 154 / 147,
  17554. bottom: 0.04
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(7 + 2 / 12, "feet"),
  17562. default: true
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(5 + 10 / 12, "feet"),
  17571. weight: math.unit(264, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/gault/front.svg",
  17575. extra: 161 / 140,
  17576. bottom: 0.028
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(5 + 10 / 12, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(6, "feet"),
  17593. weight: math.unit(150, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/shard/front.svg",
  17597. extra: 273 / 238,
  17598. bottom: 0.02
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(3 + 6 / 12, "feet"),
  17606. default: true
  17607. },
  17608. ]
  17609. ))
  17610. characterMakers.push(() => makeCharacter(
  17611. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17612. {
  17613. front: {
  17614. height: math.unit(5 + 11 / 12, "feet"),
  17615. weight: math.unit(146, "lb"),
  17616. name: "Front",
  17617. image: {
  17618. source: "./media/characters/ashe/front.svg",
  17619. extra: 400 / 373,
  17620. bottom: 0.01
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(5 + 11 / 12, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(5 + 5 / 12, "feet"),
  17637. weight: math.unit(135, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/beatrix/front.svg",
  17641. extra: 392 / 379,
  17642. bottom: 0.01
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(6, "feet"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17656. {
  17657. front: {
  17658. height: math.unit(6 + 2/12, "feet"),
  17659. weight: math.unit(135, "lb"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/ignatius/front.svg",
  17663. extra: 1380/1259,
  17664. bottom: 27/1407
  17665. }
  17666. },
  17667. },
  17668. [
  17669. {
  17670. name: "Normal",
  17671. height: math.unit(6 + 2/12, "feet"),
  17672. default: true
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(6 + 2 / 12, "feet"),
  17681. weight: math.unit(138, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/mei-li/front.svg",
  17685. extra: 237 / 229,
  17686. bottom: 0.03
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(6 + 2 / 12, "feet"),
  17694. default: true
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17700. {
  17701. front: {
  17702. height: math.unit(2 + 4 / 12, "feet"),
  17703. weight: math.unit(62, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/puru/front.svg",
  17707. extra: 206 / 149,
  17708. bottom: 0.06
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(2 + 4 / 12, "feet"),
  17716. default: true
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17722. {
  17723. anthro: {
  17724. height: math.unit(5 + 8/12, "feet"),
  17725. weight: math.unit(200, "lb"),
  17726. energyNeed: math.unit(2000, "kcal"),
  17727. name: "Anthro",
  17728. image: {
  17729. source: "./media/characters/kee/anthro.svg",
  17730. extra: 3251/3184,
  17731. bottom: 250/3501
  17732. }
  17733. },
  17734. taur: {
  17735. height: math.unit(11, "feet"),
  17736. weight: math.unit(500, "lb"),
  17737. energyNeed: math.unit(5000, "kcal"),
  17738. name: "Taur",
  17739. image: {
  17740. source: "./media/characters/kee/taur.svg",
  17741. extra: 1362/1320,
  17742. bottom: 83/1445
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(5 + 8/12, "feet"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Macro",
  17754. height: math.unit(35, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17760. {
  17761. anthro: {
  17762. height: math.unit(7, "feet"),
  17763. weight: math.unit(190, "lb"),
  17764. name: "Anthro",
  17765. image: {
  17766. source: "./media/characters/cobalt-dracha/anthro.svg",
  17767. extra: 231 / 225,
  17768. bottom: 0.04
  17769. }
  17770. },
  17771. feral: {
  17772. height: math.unit(9 + 7 / 12, "feet"),
  17773. weight: math.unit(294, "lb"),
  17774. name: "Feral",
  17775. image: {
  17776. source: "./media/characters/cobalt-dracha/feral.svg",
  17777. extra: 692 / 633,
  17778. bottom: 0.05
  17779. }
  17780. },
  17781. },
  17782. [
  17783. {
  17784. name: "Normal",
  17785. height: math.unit(7, "feet"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17792. {
  17793. fallen: {
  17794. height: math.unit(11 + 8 / 12, "feet"),
  17795. weight: math.unit(485, "lb"),
  17796. name: "Java (Fallen)",
  17797. rename: true,
  17798. image: {
  17799. source: "./media/characters/java/fallen.svg",
  17800. extra: 226 / 208,
  17801. bottom: 0.005
  17802. }
  17803. },
  17804. godkin: {
  17805. height: math.unit(10 + 6 / 12, "feet"),
  17806. weight: math.unit(328, "lb"),
  17807. name: "Java (Godkin)",
  17808. rename: true,
  17809. image: {
  17810. source: "./media/characters/java/godkin.svg",
  17811. extra: 1104/1068,
  17812. bottom: 36/1140
  17813. }
  17814. },
  17815. },
  17816. [
  17817. {
  17818. name: "Normal",
  17819. height: math.unit(11 + 8 / 12, "feet"),
  17820. default: true
  17821. },
  17822. ]
  17823. ))
  17824. characterMakers.push(() => makeCharacter(
  17825. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17826. {
  17827. front: {
  17828. height: math.unit(5 + 9 / 12, "feet"),
  17829. weight: math.unit(170, "lb"),
  17830. name: "Front",
  17831. image: {
  17832. source: "./media/characters/purna/front.svg",
  17833. extra: 239 / 229,
  17834. bottom: 0.01
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Normal",
  17841. height: math.unit(5 + 9 / 12, "feet"),
  17842. default: true
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(5 + 9 / 12, "feet"),
  17851. weight: math.unit(142, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/kuva/front.svg",
  17855. extra: 281 / 271,
  17856. bottom: 0.006
  17857. }
  17858. },
  17859. },
  17860. [
  17861. {
  17862. name: "Normal",
  17863. height: math.unit(5 + 9 / 12, "feet"),
  17864. default: true
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17870. {
  17871. anthro: {
  17872. height: math.unit(9 + 2 / 12, "feet"),
  17873. weight: math.unit(270, "lb"),
  17874. name: "Anthro",
  17875. image: {
  17876. source: "./media/characters/embra/anthro.svg",
  17877. extra: 200 / 187,
  17878. bottom: 0.02
  17879. }
  17880. },
  17881. feral: {
  17882. height: math.unit(18 + 8 / 12, "feet"),
  17883. weight: math.unit(576, "lb"),
  17884. name: "Feral",
  17885. image: {
  17886. source: "./media/characters/embra/feral.svg",
  17887. extra: 152 / 137,
  17888. bottom: 0.037
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(9 + 2 / 12, "feet"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17902. {
  17903. anthro: {
  17904. height: math.unit(10 + 9 / 12, "feet"),
  17905. weight: math.unit(224, "lb"),
  17906. name: "Anthro",
  17907. image: {
  17908. source: "./media/characters/grottos/anthro.svg",
  17909. extra: 350 / 332,
  17910. bottom: 0.045
  17911. }
  17912. },
  17913. feral: {
  17914. height: math.unit(20 + 7 / 12, "feet"),
  17915. weight: math.unit(629, "lb"),
  17916. name: "Feral",
  17917. image: {
  17918. source: "./media/characters/grottos/feral.svg",
  17919. extra: 207 / 190,
  17920. bottom: 0.05
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(10 + 9 / 12, "feet"),
  17928. default: true
  17929. },
  17930. ]
  17931. ))
  17932. characterMakers.push(() => makeCharacter(
  17933. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17934. {
  17935. anthro: {
  17936. height: math.unit(9 + 6 / 12, "feet"),
  17937. weight: math.unit(298, "lb"),
  17938. name: "Anthro",
  17939. image: {
  17940. source: "./media/characters/frifna/anthro.svg",
  17941. extra: 282 / 269,
  17942. bottom: 0.015
  17943. }
  17944. },
  17945. feral: {
  17946. height: math.unit(16 + 2 / 12, "feet"),
  17947. weight: math.unit(624, "lb"),
  17948. name: "Feral",
  17949. image: {
  17950. source: "./media/characters/frifna/feral.svg"
  17951. }
  17952. },
  17953. },
  17954. [
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(9 + 6 / 12, "feet"),
  17958. default: true
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(6 + 2 / 12, "feet"),
  17967. weight: math.unit(168, "lb"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/elise/front.svg",
  17971. extra: 276 / 271
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(6 + 2 / 12, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(5 + 10 / 12, "feet"),
  17988. weight: math.unit(210, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/glade/front.svg",
  17992. extra: 258 / 247,
  17993. bottom: 0.008
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(5 + 10 / 12, "feet"),
  18001. default: true
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(5 + 10 / 12, "feet"),
  18010. weight: math.unit(129, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/rina/front.svg",
  18014. extra: 266 / 255,
  18015. bottom: 0.005
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(5 + 10 / 12, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18029. {
  18030. front: {
  18031. height: math.unit(6 + 1 / 12, "feet"),
  18032. weight: math.unit(192, "lb"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/veronica/front.svg",
  18036. extra: 319 / 309,
  18037. bottom: 0.005
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(6 + 1 / 12, "feet"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(9 + 3 / 12, "feet"),
  18054. weight: math.unit(1100, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/braxton/front.svg",
  18058. extra: 1057 / 984,
  18059. bottom: 0.05
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(9 + 3 / 12, "feet")
  18067. },
  18068. {
  18069. name: "Giant",
  18070. height: math.unit(300, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(700, "feet")
  18076. },
  18077. {
  18078. name: "Megamacro",
  18079. height: math.unit(6000, "feet")
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(6 + 7 / 12, "feet"),
  18088. weight: math.unit(150, "lb"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/blue-feyonics/front.svg",
  18092. extra: 1403 / 1306,
  18093. bottom: 0.047
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Normal",
  18100. height: math.unit(6 + 7 / 12, "feet"),
  18101. default: true
  18102. },
  18103. ]
  18104. ))
  18105. characterMakers.push(() => makeCharacter(
  18106. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18107. {
  18108. front: {
  18109. height: math.unit(1.8, "meters"),
  18110. weight: math.unit(60, "kg"),
  18111. name: "Front",
  18112. image: {
  18113. source: "./media/characters/maxwell/front.svg",
  18114. extra: 2060 / 1873
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Micro",
  18121. height: math.unit(1, "mm")
  18122. },
  18123. {
  18124. name: "Normal",
  18125. height: math.unit(1.8, "meter"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(30, "meters")
  18131. },
  18132. {
  18133. name: "Megamacro",
  18134. height: math.unit(10, "km")
  18135. },
  18136. ]
  18137. ))
  18138. characterMakers.push(() => makeCharacter(
  18139. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18140. {
  18141. front: {
  18142. height: math.unit(6, "feet"),
  18143. weight: math.unit(150, "lb"),
  18144. name: "Front",
  18145. image: {
  18146. source: "./media/characters/jack/front.svg",
  18147. extra: 1754 / 1640,
  18148. bottom: 0.01
  18149. }
  18150. },
  18151. },
  18152. [
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(80000, "feet"),
  18156. default: true
  18157. },
  18158. {
  18159. name: "Max size",
  18160. height: math.unit(10, "lightyears")
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18166. {
  18167. urban: {
  18168. height: math.unit(5, "feet"),
  18169. weight: math.unit(240, "lb"),
  18170. name: "Urban",
  18171. image: {
  18172. source: "./media/characters/cafat/urban.svg",
  18173. extra: 1223/1126,
  18174. bottom: 205/1428
  18175. }
  18176. },
  18177. summer: {
  18178. height: math.unit(5, "feet"),
  18179. weight: math.unit(240, "lb"),
  18180. name: "Summer",
  18181. image: {
  18182. source: "./media/characters/cafat/summer.svg",
  18183. extra: 1223/1126,
  18184. bottom: 205/1428
  18185. }
  18186. },
  18187. winter: {
  18188. height: math.unit(5, "feet"),
  18189. weight: math.unit(240, "lb"),
  18190. name: "Winter",
  18191. image: {
  18192. source: "./media/characters/cafat/winter.svg",
  18193. extra: 1223/1126,
  18194. bottom: 205/1428
  18195. }
  18196. },
  18197. lingerie: {
  18198. height: math.unit(5, "feet"),
  18199. weight: math.unit(240, "lb"),
  18200. name: "Lingerie",
  18201. image: {
  18202. source: "./media/characters/cafat/lingerie.svg",
  18203. extra: 1223/1126,
  18204. bottom: 205/1428
  18205. }
  18206. },
  18207. upright: {
  18208. height: math.unit(6.3, "feet"),
  18209. weight: math.unit(240, "lb"),
  18210. name: "Upright",
  18211. image: {
  18212. source: "./media/characters/cafat/upright.svg",
  18213. bottom: 0.01
  18214. }
  18215. },
  18216. uprightFull: {
  18217. height: math.unit(6.3, "feet"),
  18218. weight: math.unit(240, "lb"),
  18219. name: "Upright (Full)",
  18220. image: {
  18221. source: "./media/characters/cafat/upright-full.svg",
  18222. bottom: 0.01
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Small",
  18229. height: math.unit(5, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Large",
  18234. height: math.unit(13, "feet")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(6, "feet"),
  18243. weight: math.unit(150, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/verin-raharra/front.svg",
  18247. extra: 5019 / 4835,
  18248. bottom: 0.023
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(7 + 5 / 12, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Upsized",
  18260. height: math.unit(20, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(7, "feet"),
  18269. weight: math.unit(230, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/nakata/front.svg",
  18273. extra: 1.005,
  18274. bottom: 0.01
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(7, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Big",
  18286. height: math.unit(14, "feet")
  18287. },
  18288. {
  18289. name: "Macro",
  18290. height: math.unit(400, "feet")
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(4.91, "feet"),
  18299. weight: math.unit(100, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/lily/front.svg",
  18303. extra: 1585 / 1415,
  18304. bottom: 0.02
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Normal",
  18311. height: math.unit(4.91, "feet"),
  18312. default: true
  18313. },
  18314. ]
  18315. ))
  18316. characterMakers.push(() => makeCharacter(
  18317. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18318. {
  18319. laying: {
  18320. height: math.unit(4 + 4 / 12, "feet"),
  18321. weight: math.unit(600, "lb"),
  18322. name: "Laying",
  18323. image: {
  18324. source: "./media/characters/sheila/laying.svg",
  18325. extra: 1333 / 1265,
  18326. bottom: 0.16
  18327. }
  18328. },
  18329. },
  18330. [
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(4 + 4 / 12, "feet"),
  18334. default: true
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(6, "feet"),
  18343. weight: math.unit(190, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/sax/front.svg",
  18347. extra: 1187 / 973,
  18348. bottom: 0.042
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Micro",
  18355. height: math.unit(4, "inches"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6, "feet"),
  18365. weight: math.unit(150, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/pandora/front.svg",
  18369. extra: 2720 / 2556,
  18370. bottom: 0.015
  18371. }
  18372. },
  18373. back: {
  18374. height: math.unit(6, "feet"),
  18375. weight: math.unit(150, "lb"),
  18376. name: "Back",
  18377. image: {
  18378. source: "./media/characters/pandora/back.svg",
  18379. extra: 2720 / 2556,
  18380. bottom: 0.01
  18381. }
  18382. },
  18383. beans: {
  18384. height: math.unit(6 / 8, "feet"),
  18385. name: "Beans",
  18386. image: {
  18387. source: "./media/characters/pandora/beans.svg"
  18388. }
  18389. },
  18390. collar: {
  18391. height: math.unit(0.31, "feet"),
  18392. name: "Collar",
  18393. image: {
  18394. source: "./media/characters/pandora/collar.svg"
  18395. }
  18396. },
  18397. skirt: {
  18398. height: math.unit(6, "feet"),
  18399. weight: math.unit(150, "lb"),
  18400. name: "Skirt",
  18401. image: {
  18402. source: "./media/characters/pandora/skirt.svg",
  18403. extra: 1622 / 1525,
  18404. bottom: 0.015
  18405. }
  18406. },
  18407. hoodie: {
  18408. height: math.unit(6, "feet"),
  18409. weight: math.unit(150, "lb"),
  18410. name: "Hoodie",
  18411. image: {
  18412. source: "./media/characters/pandora/hoodie.svg",
  18413. extra: 1622 / 1525,
  18414. bottom: 0.015
  18415. }
  18416. },
  18417. casual: {
  18418. height: math.unit(6, "feet"),
  18419. weight: math.unit(150, "lb"),
  18420. name: "Casual",
  18421. image: {
  18422. source: "./media/characters/pandora/casual.svg",
  18423. extra: 1622 / 1525,
  18424. bottom: 0.015
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(6, "feet")
  18432. },
  18433. {
  18434. name: "Big Steppy",
  18435. height: math.unit(1, "km"),
  18436. default: true
  18437. },
  18438. {
  18439. name: "Galactic Steppy",
  18440. height: math.unit(2, "gigameters")
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18446. {
  18447. side: {
  18448. height: math.unit(10, "feet"),
  18449. weight: math.unit(800, "kg"),
  18450. name: "Side",
  18451. image: {
  18452. source: "./media/characters/venio-darcony/side.svg",
  18453. extra: 1373 / 1003,
  18454. bottom: 0.037
  18455. }
  18456. },
  18457. front: {
  18458. height: math.unit(19, "feet"),
  18459. weight: math.unit(800, "kg"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/venio-darcony/front.svg"
  18463. }
  18464. },
  18465. back: {
  18466. height: math.unit(19, "feet"),
  18467. weight: math.unit(800, "kg"),
  18468. name: "Back",
  18469. image: {
  18470. source: "./media/characters/venio-darcony/back.svg"
  18471. }
  18472. },
  18473. sideNsfw: {
  18474. height: math.unit(10, "feet"),
  18475. weight: math.unit(800, "kg"),
  18476. name: "Side (NSFW)",
  18477. image: {
  18478. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18479. extra: 1373 / 1003,
  18480. bottom: 0.037
  18481. }
  18482. },
  18483. frontNsfw: {
  18484. height: math.unit(19, "feet"),
  18485. weight: math.unit(800, "kg"),
  18486. name: "Front (NSFW)",
  18487. image: {
  18488. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18489. }
  18490. },
  18491. backNsfw: {
  18492. height: math.unit(19, "feet"),
  18493. weight: math.unit(800, "kg"),
  18494. name: "Back (NSFW)",
  18495. image: {
  18496. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18497. }
  18498. },
  18499. sideArmored: {
  18500. height: math.unit(10, "feet"),
  18501. weight: math.unit(800, "kg"),
  18502. name: "Side (Armored)",
  18503. image: {
  18504. source: "./media/characters/venio-darcony/side-armored.svg",
  18505. extra: 1373 / 1003,
  18506. bottom: 0.037
  18507. }
  18508. },
  18509. frontArmored: {
  18510. height: math.unit(19, "feet"),
  18511. weight: math.unit(900, "kg"),
  18512. name: "Front (Armored)",
  18513. image: {
  18514. source: "./media/characters/venio-darcony/front-armored.svg"
  18515. }
  18516. },
  18517. backArmored: {
  18518. height: math.unit(19, "feet"),
  18519. weight: math.unit(900, "kg"),
  18520. name: "Back (Armored)",
  18521. image: {
  18522. source: "./media/characters/venio-darcony/back-armored.svg"
  18523. }
  18524. },
  18525. sword: {
  18526. height: math.unit(10, "feet"),
  18527. weight: math.unit(50, "lb"),
  18528. name: "Sword",
  18529. image: {
  18530. source: "./media/characters/venio-darcony/sword.svg"
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(10, "feet")
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(130, "feet"),
  18542. default: true
  18543. },
  18544. {
  18545. name: "Macro+",
  18546. height: math.unit(240, "feet")
  18547. },
  18548. ]
  18549. ))
  18550. characterMakers.push(() => makeCharacter(
  18551. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18552. {
  18553. front: {
  18554. height: math.unit(6, "feet"),
  18555. weight: math.unit(150, "lb"),
  18556. name: "Front",
  18557. image: {
  18558. source: "./media/characters/veski/front.svg",
  18559. extra: 1299 / 1225,
  18560. bottom: 0.04
  18561. }
  18562. },
  18563. back: {
  18564. height: math.unit(6, "feet"),
  18565. weight: math.unit(150, "lb"),
  18566. name: "Back",
  18567. image: {
  18568. source: "./media/characters/veski/back.svg",
  18569. extra: 1299 / 1225,
  18570. bottom: 0.008
  18571. }
  18572. },
  18573. maw: {
  18574. height: math.unit(1.5 * 1.21, "feet"),
  18575. name: "Maw",
  18576. image: {
  18577. source: "./media/characters/veski/maw.svg"
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Macro",
  18584. height: math.unit(2, "km"),
  18585. default: true
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(5 + 7 / 12, "feet"),
  18594. name: "Front",
  18595. image: {
  18596. source: "./media/characters/isabelle/front.svg",
  18597. extra: 2130 / 1976,
  18598. bottom: 0.05
  18599. }
  18600. },
  18601. },
  18602. [
  18603. {
  18604. name: "Supermicro",
  18605. height: math.unit(10, "micrometers")
  18606. },
  18607. {
  18608. name: "Micro",
  18609. height: math.unit(1, "inch")
  18610. },
  18611. {
  18612. name: "Tiny",
  18613. height: math.unit(5, "inches")
  18614. },
  18615. {
  18616. name: "Standard",
  18617. height: math.unit(5 + 7 / 12, "inches")
  18618. },
  18619. {
  18620. name: "Macro",
  18621. height: math.unit(80, "meters"),
  18622. default: true
  18623. },
  18624. {
  18625. name: "Megamacro",
  18626. height: math.unit(250, "meters")
  18627. },
  18628. {
  18629. name: "Gigamacro",
  18630. height: math.unit(5, "km")
  18631. },
  18632. {
  18633. name: "Cosmic",
  18634. height: math.unit(2.5e6, "miles")
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(6, "feet"),
  18643. weight: math.unit(150, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/hanzo/front.svg",
  18647. extra: 374 / 344,
  18648. bottom: 0.02
  18649. }
  18650. },
  18651. },
  18652. [
  18653. {
  18654. name: "Normal",
  18655. height: math.unit(8, "feet"),
  18656. default: true
  18657. },
  18658. ]
  18659. ))
  18660. characterMakers.push(() => makeCharacter(
  18661. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18662. {
  18663. front: {
  18664. height: math.unit(7, "feet"),
  18665. weight: math.unit(130, "lb"),
  18666. name: "Front",
  18667. image: {
  18668. source: "./media/characters/anna/front.svg",
  18669. extra: 169 / 145,
  18670. bottom: 0.06
  18671. }
  18672. },
  18673. full: {
  18674. height: math.unit(4.96, "feet"),
  18675. weight: math.unit(220, "lb"),
  18676. name: "Full",
  18677. image: {
  18678. source: "./media/characters/anna/full.svg",
  18679. extra: 138 / 114,
  18680. bottom: 0.15
  18681. }
  18682. },
  18683. tongue: {
  18684. height: math.unit(2.53, "feet"),
  18685. name: "Tongue",
  18686. image: {
  18687. source: "./media/characters/anna/tongue.svg"
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(7, "feet"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(7 + 1/12, "feet"),
  18704. weight: math.unit(150, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/ian-corvid/front.svg",
  18708. extra: 621/591,
  18709. bottom: 14/635
  18710. }
  18711. },
  18712. back: {
  18713. height: math.unit(7 + 1/12, "feet"),
  18714. weight: math.unit(150, "lb"),
  18715. name: "Back",
  18716. image: {
  18717. source: "./media/characters/ian-corvid/back.svg",
  18718. extra: 621/600,
  18719. bottom: 10/631
  18720. }
  18721. },
  18722. stomping: {
  18723. height: math.unit(7 + 1/12, "feet"),
  18724. weight: math.unit(150, "lb"),
  18725. name: "Stomping",
  18726. image: {
  18727. source: "./media/characters/ian-corvid/stomping.svg",
  18728. extra: 309/291,
  18729. bottom: 7/316
  18730. }
  18731. },
  18732. tongue: {
  18733. height: math.unit(3.9, "feet"),
  18734. name: "Tongue",
  18735. image: {
  18736. source: "./media/characters/ian-corvid/tongue.svg"
  18737. }
  18738. },
  18739. beak: {
  18740. height: math.unit(0.9, "feet"),
  18741. name: "Beak",
  18742. image: {
  18743. source: "./media/characters/ian-corvid/beak.svg"
  18744. }
  18745. },
  18746. sitting: {
  18747. height: math.unit(7 / 1.8, "feet"),
  18748. weight: math.unit(150, "lb"),
  18749. name: "Sitting",
  18750. image: {
  18751. source: "./media/characters/ian-corvid/sitting.svg",
  18752. extra: 1400 / 1269,
  18753. bottom: 0.15
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Tiny Microw",
  18760. height: math.unit(1, "inch")
  18761. },
  18762. {
  18763. name: "Microw",
  18764. height: math.unit(6, "inches")
  18765. },
  18766. {
  18767. name: "Crow",
  18768. height: math.unit(7 + 1 / 12, "feet"),
  18769. default: true
  18770. },
  18771. {
  18772. name: "Macrow",
  18773. height: math.unit(176, "feet")
  18774. },
  18775. ]
  18776. ))
  18777. characterMakers.push(() => makeCharacter(
  18778. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18779. {
  18780. front: {
  18781. height: math.unit(5 + 7 / 12, "feet"),
  18782. weight: math.unit(147, "lb"),
  18783. name: "Front",
  18784. image: {
  18785. source: "./media/characters/natalie-kellon/front.svg",
  18786. extra: 1214 / 1141,
  18787. bottom: 0.02
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Micro",
  18794. height: math.unit(1 / 16, "inch")
  18795. },
  18796. {
  18797. name: "Tiny",
  18798. height: math.unit(4, "inches")
  18799. },
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(5 + 7 / 12, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Amazon",
  18807. height: math.unit(12, "feet")
  18808. },
  18809. {
  18810. name: "Giantess",
  18811. height: math.unit(160, "meters")
  18812. },
  18813. {
  18814. name: "Titaness",
  18815. height: math.unit(800, "meters")
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(6, "feet"),
  18824. weight: math.unit(150, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/alluria/front.svg",
  18828. extra: 806 / 738,
  18829. bottom: 0.01
  18830. }
  18831. },
  18832. side: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(150, "lb"),
  18835. name: "Side",
  18836. image: {
  18837. source: "./media/characters/alluria/side.svg",
  18838. extra: 800 / 750,
  18839. }
  18840. },
  18841. back: {
  18842. height: math.unit(6, "feet"),
  18843. weight: math.unit(150, "lb"),
  18844. name: "Back",
  18845. image: {
  18846. source: "./media/characters/alluria/back.svg",
  18847. extra: 806 / 738,
  18848. }
  18849. },
  18850. frontMaid: {
  18851. height: math.unit(6, "feet"),
  18852. weight: math.unit(150, "lb"),
  18853. name: "Front (Maid)",
  18854. image: {
  18855. source: "./media/characters/alluria/front-maid.svg",
  18856. extra: 806 / 738,
  18857. bottom: 0.01
  18858. }
  18859. },
  18860. sideMaid: {
  18861. height: math.unit(6, "feet"),
  18862. weight: math.unit(150, "lb"),
  18863. name: "Side (Maid)",
  18864. image: {
  18865. source: "./media/characters/alluria/side-maid.svg",
  18866. extra: 800 / 750,
  18867. bottom: 0.005
  18868. }
  18869. },
  18870. backMaid: {
  18871. height: math.unit(6, "feet"),
  18872. weight: math.unit(150, "lb"),
  18873. name: "Back (Maid)",
  18874. image: {
  18875. source: "./media/characters/alluria/back-maid.svg",
  18876. extra: 806 / 738,
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Micro",
  18883. height: math.unit(6, "inches"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(6, "feet"),
  18893. weight: math.unit(150, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/kyle/front.svg",
  18897. extra: 1069 / 962,
  18898. bottom: 77.228 / 1727.45
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Macro",
  18905. height: math.unit(150, "feet"),
  18906. default: true
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18912. {
  18913. front: {
  18914. height: math.unit(6, "feet"),
  18915. weight: math.unit(300, "lb"),
  18916. name: "Front",
  18917. image: {
  18918. source: "./media/characters/duncan/front.svg",
  18919. extra: 1650 / 1482,
  18920. bottom: 0.05
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(100, "feet"),
  18928. default: true
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(5 + 4 / 12, "feet"),
  18937. weight: math.unit(220, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/memory/front.svg",
  18941. extra: 3641 / 3545,
  18942. bottom: 0.03
  18943. }
  18944. },
  18945. back: {
  18946. height: math.unit(5 + 4 / 12, "feet"),
  18947. weight: math.unit(220, "lb"),
  18948. name: "Back",
  18949. image: {
  18950. source: "./media/characters/memory/back.svg",
  18951. extra: 3641 / 3545,
  18952. bottom: 0.025
  18953. }
  18954. },
  18955. frontSkirt: {
  18956. height: math.unit(5 + 4 / 12, "feet"),
  18957. weight: math.unit(220, "lb"),
  18958. name: "Front (Skirt)",
  18959. image: {
  18960. source: "./media/characters/memory/front-skirt.svg",
  18961. extra: 3641 / 3545,
  18962. bottom: 0.03
  18963. }
  18964. },
  18965. frontDress: {
  18966. height: math.unit(5 + 4 / 12, "feet"),
  18967. weight: math.unit(220, "lb"),
  18968. name: "Front (Dress)",
  18969. image: {
  18970. source: "./media/characters/memory/front-dress.svg",
  18971. extra: 3641 / 3545,
  18972. bottom: 0.03
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Micro",
  18979. height: math.unit(6, "inches"),
  18980. default: true
  18981. },
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(5 + 4 / 12, "feet")
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(4 + 11 / 12, "feet"),
  18993. weight: math.unit(100, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/luno/front.svg",
  18997. extra: 1535 / 1487,
  18998. bottom: 0.03
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(3, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(4 + 11 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(300, "feet")
  19015. },
  19016. {
  19017. name: "Megamacro",
  19018. height: math.unit(700, "miles")
  19019. },
  19020. ]
  19021. ))
  19022. characterMakers.push(() => makeCharacter(
  19023. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19024. {
  19025. front: {
  19026. height: math.unit(6 + 2 / 12, "feet"),
  19027. weight: math.unit(170, "lb"),
  19028. name: "Front",
  19029. image: {
  19030. source: "./media/characters/jamesy/front.svg",
  19031. extra: 440 / 382,
  19032. bottom: 0.005
  19033. }
  19034. },
  19035. },
  19036. [
  19037. {
  19038. name: "Micro",
  19039. height: math.unit(3, "inches")
  19040. },
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(6 + 2 / 12, "feet"),
  19044. default: true
  19045. },
  19046. {
  19047. name: "Macro",
  19048. height: math.unit(300, "feet")
  19049. },
  19050. {
  19051. name: "Megamacro",
  19052. height: math.unit(700, "miles")
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19058. {
  19059. front: {
  19060. height: math.unit(6, "feet"),
  19061. weight: math.unit(160, "lb"),
  19062. name: "Front",
  19063. image: {
  19064. source: "./media/characters/mark/front.svg",
  19065. extra: 3300 / 3100,
  19066. bottom: 136.42 / 3440.47
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Macro",
  19073. height: math.unit(120, "meters")
  19074. },
  19075. {
  19076. name: "Bigger Macro",
  19077. height: math.unit(350, "meters")
  19078. },
  19079. {
  19080. name: "Megamacro",
  19081. height: math.unit(8, "km"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "Continental",
  19086. height: math.unit(4550, "km")
  19087. },
  19088. {
  19089. name: "Planetary",
  19090. height: math.unit(65000, "km")
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6, "feet"),
  19099. weight: math.unit(400, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/mac/front.svg",
  19103. extra: 1048 / 987.7,
  19104. bottom: 60 / 1107.6,
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Macro",
  19111. height: math.unit(500, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(5 + 2 / 12, "feet"),
  19121. weight: math.unit(190, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/bari/front.svg",
  19125. extra: 3156 / 2880,
  19126. bottom: 0.03
  19127. }
  19128. },
  19129. back: {
  19130. height: math.unit(5 + 2 / 12, "feet"),
  19131. weight: math.unit(190, "lb"),
  19132. name: "Back",
  19133. image: {
  19134. source: "./media/characters/bari/back.svg",
  19135. extra: 3260 / 2834,
  19136. bottom: 0.025
  19137. }
  19138. },
  19139. frontPlush: {
  19140. height: math.unit(5 + 2 / 12, "feet"),
  19141. weight: math.unit(190, "lb"),
  19142. name: "Front (Plush)",
  19143. image: {
  19144. source: "./media/characters/bari/front-plush.svg",
  19145. extra: 1112 / 1061,
  19146. bottom: 0.002
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Micro",
  19153. height: math.unit(3, "inches")
  19154. },
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(5 + 2 / 12, "feet"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Macro",
  19162. height: math.unit(20, "feet")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(6 + 1 / 12, "feet"),
  19171. weight: math.unit(275, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/hunter-misha-raven/front.svg"
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Mortal",
  19181. height: math.unit(6 + 1 / 12, "feet")
  19182. },
  19183. {
  19184. name: "Divine",
  19185. height: math.unit(1.12134e34, "parsecs"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(6 + 3 / 12, "feet"),
  19195. weight: math.unit(220, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/max-calore/front.svg",
  19199. extra: 1700 / 1648,
  19200. bottom: 0.01
  19201. }
  19202. },
  19203. back: {
  19204. height: math.unit(6 + 3 / 12, "feet"),
  19205. weight: math.unit(220, "lb"),
  19206. name: "Back",
  19207. image: {
  19208. source: "./media/characters/max-calore/back.svg",
  19209. extra: 1700 / 1648,
  19210. bottom: 0.01
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(6 + 3 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19224. {
  19225. side: {
  19226. height: math.unit(2 + 8 / 12, "feet"),
  19227. weight: math.unit(99, "lb"),
  19228. name: "Side",
  19229. image: {
  19230. source: "./media/characters/aspen/side.svg",
  19231. extra: 152 / 138,
  19232. bottom: 0.032
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(2 + 8 / 12, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19246. {
  19247. side: {
  19248. height: math.unit(3 + 2 / 12, "feet"),
  19249. weight: math.unit(224, "lb"),
  19250. name: "Side",
  19251. image: {
  19252. source: "./media/characters/sheila-feral-wolf/side.svg",
  19253. extra: 179 / 166,
  19254. bottom: 0.03
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(3 + 2 / 12, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19268. {
  19269. side: {
  19270. height: math.unit(1 + 9 / 12, "feet"),
  19271. weight: math.unit(38, "lb"),
  19272. name: "Side",
  19273. image: {
  19274. source: "./media/characters/michelle/side.svg",
  19275. extra: 147 / 136.7,
  19276. bottom: 0.03
  19277. }
  19278. },
  19279. },
  19280. [
  19281. {
  19282. name: "Normal",
  19283. height: math.unit(1 + 9 / 12, "feet"),
  19284. default: true
  19285. },
  19286. ]
  19287. ))
  19288. characterMakers.push(() => makeCharacter(
  19289. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19290. {
  19291. front: {
  19292. height: math.unit(1.54, "feet"),
  19293. weight: math.unit(50, "lb"),
  19294. name: "Front",
  19295. image: {
  19296. source: "./media/characters/nino/front.svg"
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(1.54, "feet"),
  19304. default: true
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19310. {
  19311. front: {
  19312. height: math.unit(1.49, "feet"),
  19313. weight: math.unit(45, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/viola/front.svg"
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(1.49, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6 + 5 / 12, "feet"),
  19333. weight: math.unit(580, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/atlas/front.svg",
  19337. extra: 298.5 / 290,
  19338. bottom: 0.015
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(6 + 5 / 12, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19352. {
  19353. side: {
  19354. height: math.unit(15.6, "inches"),
  19355. weight: math.unit(10, "lb"),
  19356. name: "Side",
  19357. image: {
  19358. source: "./media/characters/davy/side.svg",
  19359. extra: 200 / 170,
  19360. bottom: 0.01
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(15.6, "inches"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19374. {
  19375. side: {
  19376. height: math.unit(4 + 8 / 12, "feet"),
  19377. weight: math.unit(166, "lb"),
  19378. name: "Side",
  19379. image: {
  19380. source: "./media/characters/fiona/side.svg",
  19381. extra: 232 / 220,
  19382. bottom: 0.03
  19383. }
  19384. },
  19385. },
  19386. [
  19387. {
  19388. name: "Normal",
  19389. height: math.unit(4 + 8 / 12, "feet"),
  19390. default: true
  19391. },
  19392. ]
  19393. ))
  19394. characterMakers.push(() => makeCharacter(
  19395. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19396. {
  19397. front: {
  19398. height: math.unit(26, "inches"),
  19399. weight: math.unit(35, "lb"),
  19400. name: "Front",
  19401. image: {
  19402. source: "./media/characters/lyla/front.svg",
  19403. bottom: 0.1
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(3, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19417. {
  19418. side: {
  19419. height: math.unit(1.8, "feet"),
  19420. weight: math.unit(44, "lb"),
  19421. name: "Side",
  19422. image: {
  19423. source: "./media/characters/perseus/side.svg",
  19424. bottom: 0.21
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(1.8, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19438. {
  19439. side: {
  19440. height: math.unit(4 + 2 / 12, "feet"),
  19441. weight: math.unit(20, "lb"),
  19442. name: "Side",
  19443. image: {
  19444. source: "./media/characters/remus/side.svg"
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(4 + 2 / 12, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(4 + 11 / 12, "feet"),
  19461. weight: math.unit(114, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/raf/front.svg",
  19465. extra: 1504/1339,
  19466. bottom: 26/1530
  19467. }
  19468. },
  19469. side: {
  19470. height: math.unit(4 + 11 / 12, "feet"),
  19471. weight: math.unit(114, "lb"),
  19472. name: "Side",
  19473. image: {
  19474. source: "./media/characters/raf/side.svg",
  19475. extra: 1466/1316,
  19476. bottom: 29/1495
  19477. }
  19478. },
  19479. paw: {
  19480. height: math.unit(1.45, "feet"),
  19481. name: "Paw",
  19482. image: {
  19483. source: "./media/characters/raf/paw.svg"
  19484. },
  19485. extraAttributes: {
  19486. "toeSize": {
  19487. name: "Toe Size",
  19488. power: 2,
  19489. type: "area",
  19490. base: math.unit(0.004, "m^2")
  19491. },
  19492. "padSize": {
  19493. name: "Pad Size",
  19494. power: 2,
  19495. type: "area",
  19496. base: math.unit(0.04, "m^2")
  19497. },
  19498. "footSize": {
  19499. name: "Foot Size",
  19500. power: 2,
  19501. type: "area",
  19502. base: math.unit(0.08, "m^2")
  19503. },
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Micro",
  19510. height: math.unit(2, "inches")
  19511. },
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(4 + 11 / 12, "feet"),
  19515. default: true
  19516. },
  19517. {
  19518. name: "Macro",
  19519. height: math.unit(70, "feet")
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(1.5, "meters"),
  19528. weight: math.unit(68, "kg"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/liam-einarr/front.svg",
  19532. extra: 2822 / 2666
  19533. }
  19534. },
  19535. back: {
  19536. height: math.unit(1.5, "meters"),
  19537. weight: math.unit(68, "kg"),
  19538. name: "Back",
  19539. image: {
  19540. source: "./media/characters/liam-einarr/back.svg",
  19541. extra: 2822 / 2666,
  19542. bottom: 0.015
  19543. }
  19544. },
  19545. },
  19546. [
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(1.5, "meters"),
  19550. default: true
  19551. },
  19552. {
  19553. name: "Macro",
  19554. height: math.unit(150, "meters")
  19555. },
  19556. {
  19557. name: "Megamacro",
  19558. height: math.unit(35, "km")
  19559. },
  19560. ]
  19561. ))
  19562. characterMakers.push(() => makeCharacter(
  19563. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19564. {
  19565. front: {
  19566. height: math.unit(6, "feet"),
  19567. weight: math.unit(75, "kg"),
  19568. name: "Front",
  19569. image: {
  19570. source: "./media/characters/linda/front.svg",
  19571. extra: 930 / 874,
  19572. bottom: 0.004
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Normal",
  19579. height: math.unit(6, "feet"),
  19580. default: true
  19581. },
  19582. ]
  19583. ))
  19584. characterMakers.push(() => makeCharacter(
  19585. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19586. {
  19587. front: {
  19588. height: math.unit(6 + 8 / 12, "feet"),
  19589. weight: math.unit(220, "lb"),
  19590. name: "Front",
  19591. image: {
  19592. source: "./media/characters/caylex/front.svg",
  19593. extra: 821 / 772,
  19594. bottom: 0.07
  19595. }
  19596. },
  19597. back: {
  19598. height: math.unit(6 + 8 / 12, "feet"),
  19599. weight: math.unit(220, "lb"),
  19600. name: "Back",
  19601. image: {
  19602. source: "./media/characters/caylex/back.svg",
  19603. extra: 821 / 772,
  19604. bottom: 0.022
  19605. }
  19606. },
  19607. hand: {
  19608. height: math.unit(1.25, "feet"),
  19609. name: "Hand",
  19610. image: {
  19611. source: "./media/characters/caylex/hand.svg"
  19612. }
  19613. },
  19614. foot: {
  19615. height: math.unit(1.6, "feet"),
  19616. name: "Foot",
  19617. image: {
  19618. source: "./media/characters/caylex/foot.svg"
  19619. }
  19620. },
  19621. armored: {
  19622. height: math.unit(6 + 8 / 12, "feet"),
  19623. weight: math.unit(250, "lb"),
  19624. name: "Armored",
  19625. image: {
  19626. source: "./media/characters/caylex/armored.svg",
  19627. extra: 1420 / 1310,
  19628. bottom: 0.045
  19629. }
  19630. },
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(6 + 8 / 12, "feet"),
  19636. default: true
  19637. },
  19638. {
  19639. name: "Normal+",
  19640. height: math.unit(12, "feet")
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(7 + 6 / 12, "feet"),
  19649. weight: math.unit(288, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/alana/front.svg",
  19653. extra: 679 / 653,
  19654. bottom: 22.5 / 701
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(7 + 6 / 12, "feet")
  19662. },
  19663. {
  19664. name: "Large",
  19665. height: math.unit(50, "feet")
  19666. },
  19667. {
  19668. name: "Macro",
  19669. height: math.unit(100, "feet"),
  19670. default: true
  19671. },
  19672. {
  19673. name: "Macro+",
  19674. height: math.unit(200, "feet")
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(6 + 1 / 12, "feet"),
  19683. weight: math.unit(210, "lb"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/hasani/front.svg",
  19687. extra: 244 / 232,
  19688. bottom: 0.01
  19689. }
  19690. },
  19691. back: {
  19692. height: math.unit(6 + 1 / 12, "feet"),
  19693. weight: math.unit(210, "lb"),
  19694. name: "Back",
  19695. image: {
  19696. source: "./media/characters/hasani/back.svg",
  19697. extra: 244 / 232,
  19698. bottom: 0.01
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(6 + 1 / 12, "feet")
  19706. },
  19707. {
  19708. name: "Macro",
  19709. height: math.unit(175, "feet"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19716. {
  19717. front: {
  19718. height: math.unit(1.82, "meters"),
  19719. weight: math.unit(140, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/nita/front.svg",
  19723. extra: 2473 / 2363,
  19724. bottom: 0.01
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(1.82, "m")
  19732. },
  19733. {
  19734. name: "Macro",
  19735. height: math.unit(300, "m")
  19736. },
  19737. {
  19738. name: "Mistake Canon",
  19739. height: math.unit(0.5, "miles"),
  19740. default: true
  19741. },
  19742. {
  19743. name: "Big Mistake",
  19744. height: math.unit(13, "miles")
  19745. },
  19746. {
  19747. name: "Playing God",
  19748. height: math.unit(2450, "miles")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(4, "feet"),
  19757. weight: math.unit(120, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/shiriko/front.svg",
  19761. extra: 970/934,
  19762. bottom: 5/975
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(4, "feet"),
  19770. default: true
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19776. {
  19777. front: {
  19778. height: math.unit(6, "feet"),
  19779. name: "front",
  19780. image: {
  19781. source: "./media/characters/deja/front.svg",
  19782. extra: 926 / 840,
  19783. bottom: 0.07
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Planck Length",
  19790. height: math.unit(1.6e-35, "meters")
  19791. },
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(30.48, "meters"),
  19795. default: true
  19796. },
  19797. {
  19798. name: "Universal",
  19799. height: math.unit(8.8e26, "meters")
  19800. },
  19801. ]
  19802. ))
  19803. characterMakers.push(() => makeCharacter(
  19804. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19805. {
  19806. side: {
  19807. height: math.unit(8, "feet"),
  19808. weight: math.unit(6300, "lb"),
  19809. name: "Side",
  19810. image: {
  19811. source: "./media/characters/anima/side.svg",
  19812. bottom: 0.035
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(8, "feet"),
  19820. default: true
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(8, "feet"),
  19829. weight: math.unit(350, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/bianca/front.svg",
  19833. extra: 234 / 225,
  19834. bottom: 0.03
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(8, "feet"),
  19842. default: true
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(11 + 5/12, "feet"),
  19851. weight: math.unit(1200, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/adinia/front.svg",
  19855. extra: 1767/1641,
  19856. bottom: 44/1811
  19857. },
  19858. extraAttributes: {
  19859. "energyIntake": {
  19860. name: "Energy Intake",
  19861. power: 3,
  19862. type: "energy",
  19863. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19864. },
  19865. }
  19866. },
  19867. back: {
  19868. height: math.unit(11 + 5/12, "feet"),
  19869. weight: math.unit(1200, "lb"),
  19870. name: "Back",
  19871. image: {
  19872. source: "./media/characters/adinia/back.svg",
  19873. extra: 1834/1684,
  19874. bottom: 14/1848
  19875. },
  19876. extraAttributes: {
  19877. "energyIntake": {
  19878. name: "Energy Intake",
  19879. power: 3,
  19880. type: "energy",
  19881. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19882. },
  19883. }
  19884. },
  19885. maw: {
  19886. height: math.unit(3.79, "feet"),
  19887. name: "Maw",
  19888. image: {
  19889. source: "./media/characters/adinia/maw.svg"
  19890. }
  19891. },
  19892. rump: {
  19893. height: math.unit(4.6, "feet"),
  19894. name: "Rump",
  19895. image: {
  19896. source: "./media/characters/adinia/rump.svg"
  19897. }
  19898. },
  19899. },
  19900. [
  19901. {
  19902. name: "Normal",
  19903. height: math.unit(11 + 5 / 12, "feet"),
  19904. default: true
  19905. },
  19906. ]
  19907. ))
  19908. characterMakers.push(() => makeCharacter(
  19909. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19910. {
  19911. front: {
  19912. height: math.unit(3, "meters"),
  19913. weight: math.unit(200, "kg"),
  19914. name: "Front",
  19915. image: {
  19916. source: "./media/characters/lykasa/front.svg",
  19917. extra: 1076 / 976,
  19918. bottom: 0.06
  19919. }
  19920. },
  19921. },
  19922. [
  19923. {
  19924. name: "Normal",
  19925. height: math.unit(3, "meters")
  19926. },
  19927. {
  19928. name: "Kaiju",
  19929. height: math.unit(120, "meters"),
  19930. default: true
  19931. },
  19932. {
  19933. name: "Mega Kaiju",
  19934. height: math.unit(240, "km")
  19935. },
  19936. {
  19937. name: "Giga Kaiju",
  19938. height: math.unit(400, "megameters")
  19939. },
  19940. {
  19941. name: "Tera Kaiju",
  19942. height: math.unit(800, "gigameters")
  19943. },
  19944. {
  19945. name: "Kaiju Dragon Goddess",
  19946. height: math.unit(26, "zettaparsecs")
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19952. {
  19953. side: {
  19954. height: math.unit(283 / 124 * 6, "feet"),
  19955. weight: math.unit(35000, "lb"),
  19956. name: "Side",
  19957. image: {
  19958. source: "./media/characters/malfaren/side.svg",
  19959. extra: 1310/529,
  19960. bottom: 24/1334
  19961. }
  19962. },
  19963. front: {
  19964. height: math.unit(22.36, "feet"),
  19965. weight: math.unit(35000, "lb"),
  19966. name: "Front",
  19967. image: {
  19968. source: "./media/characters/malfaren/front.svg",
  19969. extra: 1237/1115,
  19970. bottom: 32/1269
  19971. }
  19972. },
  19973. maw: {
  19974. height: math.unit(6.9, "feet"),
  19975. name: "Maw",
  19976. image: {
  19977. source: "./media/characters/malfaren/maw.svg"
  19978. }
  19979. },
  19980. dick: {
  19981. height: math.unit(6.19, "feet"),
  19982. name: "Dick",
  19983. image: {
  19984. source: "./media/characters/malfaren/dick.svg"
  19985. }
  19986. },
  19987. eye: {
  19988. height: math.unit(0.69, "feet"),
  19989. name: "Eye",
  19990. image: {
  19991. source: "./media/characters/malfaren/eye.svg"
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Big",
  19998. height: math.unit(283 / 162 * 6, "feet"),
  19999. },
  20000. {
  20001. name: "Bigger",
  20002. height: math.unit(283 / 124 * 6, "feet")
  20003. },
  20004. {
  20005. name: "Massive",
  20006. height: math.unit(283 / 92 * 6, "feet"),
  20007. default: true
  20008. },
  20009. {
  20010. name: "👀💦",
  20011. height: math.unit(283 / 73 * 6, "feet"),
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(1.7, "m"),
  20020. weight: math.unit(70, "kg"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/kernel/front.svg",
  20024. extra: 1960/1821,
  20025. bottom: 17/1977
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Nano",
  20032. height: math.unit(17, "micrometers")
  20033. },
  20034. {
  20035. name: "Micro",
  20036. height: math.unit(1.7, "mm")
  20037. },
  20038. {
  20039. name: "Small",
  20040. height: math.unit(1.7, "cm")
  20041. },
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(1.7, "m"),
  20045. default: true
  20046. },
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(1.75, "meters"),
  20054. weight: math.unit(65, "kg"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/jayne-folest/front.svg",
  20058. extra: 2115 / 2007,
  20059. bottom: 0.02
  20060. }
  20061. },
  20062. back: {
  20063. height: math.unit(1.75, "meters"),
  20064. weight: math.unit(65, "kg"),
  20065. name: "Back",
  20066. image: {
  20067. source: "./media/characters/jayne-folest/back.svg",
  20068. extra: 2115 / 2007,
  20069. bottom: 0.005
  20070. }
  20071. },
  20072. frontClothed: {
  20073. height: math.unit(1.75, "meters"),
  20074. weight: math.unit(65, "kg"),
  20075. name: "Front (Clothed)",
  20076. image: {
  20077. source: "./media/characters/jayne-folest/front-clothed.svg",
  20078. extra: 2115 / 2007,
  20079. bottom: 0.035
  20080. }
  20081. },
  20082. hand: {
  20083. height: math.unit(1 / 1.260, "feet"),
  20084. name: "Hand",
  20085. image: {
  20086. source: "./media/characters/jayne-folest/hand.svg"
  20087. }
  20088. },
  20089. foot: {
  20090. height: math.unit(1 / 0.918, "feet"),
  20091. name: "Foot",
  20092. image: {
  20093. source: "./media/characters/jayne-folest/foot.svg"
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Micro",
  20100. height: math.unit(4, "cm")
  20101. },
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(1.75, "meters")
  20105. },
  20106. {
  20107. name: "Macro",
  20108. height: math.unit(47.5, "meters"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20115. {
  20116. front: {
  20117. height: math.unit(180, "cm"),
  20118. weight: math.unit(70, "kg"),
  20119. name: "Front",
  20120. image: {
  20121. source: "./media/characters/algier/front.svg",
  20122. extra: 596 / 572,
  20123. bottom: 0.04
  20124. }
  20125. },
  20126. back: {
  20127. height: math.unit(180, "cm"),
  20128. weight: math.unit(70, "kg"),
  20129. name: "Back",
  20130. image: {
  20131. source: "./media/characters/algier/back.svg",
  20132. extra: 596 / 572,
  20133. bottom: 0.025
  20134. }
  20135. },
  20136. frontdressed: {
  20137. height: math.unit(180, "cm"),
  20138. weight: math.unit(150, "kg"),
  20139. name: "Front (Dressed)",
  20140. image: {
  20141. source: "./media/characters/algier/front-dressed.svg",
  20142. extra: 596 / 572,
  20143. bottom: 0.038
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Micro",
  20150. height: math.unit(5, "cm")
  20151. },
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(180, "cm"),
  20155. default: true
  20156. },
  20157. {
  20158. name: "Macro",
  20159. height: math.unit(64, "m")
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20165. {
  20166. upright: {
  20167. height: math.unit(7, "feet"),
  20168. weight: math.unit(300, "lb"),
  20169. name: "Upright",
  20170. image: {
  20171. source: "./media/characters/pretzel/upright.svg",
  20172. extra: 534 / 522,
  20173. bottom: 0.065
  20174. }
  20175. },
  20176. sprawling: {
  20177. height: math.unit(3.75, "feet"),
  20178. weight: math.unit(300, "lb"),
  20179. name: "Sprawling",
  20180. image: {
  20181. source: "./media/characters/pretzel/sprawling.svg",
  20182. extra: 314 / 281,
  20183. bottom: 0.1
  20184. }
  20185. },
  20186. tongue: {
  20187. height: math.unit(2, "feet"),
  20188. name: "Tongue",
  20189. image: {
  20190. source: "./media/characters/pretzel/tongue.svg"
  20191. }
  20192. },
  20193. },
  20194. [
  20195. {
  20196. name: "Normal",
  20197. height: math.unit(7, "feet"),
  20198. default: true
  20199. },
  20200. {
  20201. name: "Oversized",
  20202. height: math.unit(15, "feet")
  20203. },
  20204. {
  20205. name: "Huge",
  20206. height: math.unit(30, "feet")
  20207. },
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(250, "feet")
  20211. },
  20212. ]
  20213. ))
  20214. characterMakers.push(() => makeCharacter(
  20215. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20216. {
  20217. sideFront: {
  20218. height: math.unit(5 + 2 / 12, "feet"),
  20219. weight: math.unit(120, "lb"),
  20220. name: "Front Side",
  20221. image: {
  20222. source: "./media/characters/roxi/side-front.svg",
  20223. extra: 2924 / 2717,
  20224. bottom: 0.08
  20225. }
  20226. },
  20227. sideBack: {
  20228. height: math.unit(5 + 2 / 12, "feet"),
  20229. weight: math.unit(120, "lb"),
  20230. name: "Back Side",
  20231. image: {
  20232. source: "./media/characters/roxi/side-back.svg",
  20233. extra: 2904 / 2693,
  20234. bottom: 0.06
  20235. }
  20236. },
  20237. front: {
  20238. height: math.unit(5 + 2 / 12, "feet"),
  20239. weight: math.unit(120, "lb"),
  20240. name: "Front",
  20241. image: {
  20242. source: "./media/characters/roxi/front.svg",
  20243. extra: 2028 / 1907,
  20244. bottom: 0.01
  20245. }
  20246. },
  20247. frontAlt: {
  20248. height: math.unit(5 + 2 / 12, "feet"),
  20249. weight: math.unit(120, "lb"),
  20250. name: "Front (Alt)",
  20251. image: {
  20252. source: "./media/characters/roxi/front-alt.svg",
  20253. extra: 1828 / 1798,
  20254. bottom: 0.01
  20255. }
  20256. },
  20257. sitting: {
  20258. height: math.unit(2.8, "feet"),
  20259. weight: math.unit(120, "lb"),
  20260. name: "Sitting",
  20261. image: {
  20262. source: "./media/characters/roxi/sitting.svg",
  20263. extra: 2660 / 2462,
  20264. bottom: 0.1
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(5 + 2 / 12, "feet"),
  20272. default: true
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20278. {
  20279. side: {
  20280. height: math.unit(55, "feet"),
  20281. weight: math.unit(153, "tons"),
  20282. name: "Side",
  20283. image: {
  20284. source: "./media/characters/shadow/side.svg",
  20285. extra: 701 / 628,
  20286. bottom: 0.02
  20287. }
  20288. },
  20289. flying: {
  20290. height: math.unit(145, "feet"),
  20291. weight: math.unit(153, "tons"),
  20292. name: "Flying",
  20293. image: {
  20294. source: "./media/characters/shadow/flying.svg"
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(55, "feet"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(6, "feet"),
  20311. weight: math.unit(200, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/marcie/front.svg",
  20315. extra: 960 / 876,
  20316. bottom: 58 / 1017.87
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Macro",
  20323. height: math.unit(1, "mile"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20330. {
  20331. front: {
  20332. height: math.unit(7, "feet"),
  20333. weight: math.unit(200, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/kachina/front.svg",
  20337. extra: 3206/2764,
  20338. bottom: 140/3346
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(7, "feet"),
  20346. default: true
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20352. {
  20353. looking: {
  20354. height: math.unit(2, "meters"),
  20355. weight: math.unit(300, "kg"),
  20356. name: "Looking",
  20357. image: {
  20358. source: "./media/characters/kash/looking.svg",
  20359. extra: 474 / 344,
  20360. bottom: 0.03
  20361. }
  20362. },
  20363. side: {
  20364. height: math.unit(2, "meters"),
  20365. weight: math.unit(300, "kg"),
  20366. name: "Side",
  20367. image: {
  20368. source: "./media/characters/kash/side.svg",
  20369. extra: 302 / 251,
  20370. bottom: 0.03
  20371. }
  20372. },
  20373. front: {
  20374. height: math.unit(2, "meters"),
  20375. weight: math.unit(300, "kg"),
  20376. name: "Front",
  20377. image: {
  20378. source: "./media/characters/kash/front.svg",
  20379. extra: 495 / 360,
  20380. bottom: 0.015
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(2, "meters"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Big",
  20392. height: math.unit(3, "meters")
  20393. },
  20394. {
  20395. name: "Large",
  20396. height: math.unit(5, "meters")
  20397. },
  20398. ]
  20399. ))
  20400. characterMakers.push(() => makeCharacter(
  20401. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20402. {
  20403. feeding: {
  20404. height: math.unit(6.7, "feet"),
  20405. weight: math.unit(350, "lb"),
  20406. name: "Feeding",
  20407. image: {
  20408. source: "./media/characters/lalim/feeding.svg",
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(6.7, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(9.5, "feet"),
  20425. weight: math.unit(600, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/de'vout/front.svg",
  20429. extra: 1443 / 1328,
  20430. bottom: 0.025
  20431. }
  20432. },
  20433. back: {
  20434. height: math.unit(9.5, "feet"),
  20435. weight: math.unit(600, "lb"),
  20436. name: "Back",
  20437. image: {
  20438. source: "./media/characters/de'vout/back.svg",
  20439. extra: 1443 / 1328
  20440. }
  20441. },
  20442. frontDressed: {
  20443. height: math.unit(9.5, "feet"),
  20444. weight: math.unit(600, "lb"),
  20445. name: "Front (Dressed",
  20446. image: {
  20447. source: "./media/characters/de'vout/front-dressed.svg",
  20448. extra: 1443 / 1328,
  20449. bottom: 0.025
  20450. }
  20451. },
  20452. backDressed: {
  20453. height: math.unit(9.5, "feet"),
  20454. weight: math.unit(600, "lb"),
  20455. name: "Back (Dressed",
  20456. image: {
  20457. source: "./media/characters/de'vout/back-dressed.svg",
  20458. extra: 1443 / 1328
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(9.5, "feet"),
  20466. default: true
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(8, "feet"),
  20475. weight: math.unit(225, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/talana/front.svg",
  20479. extra: 1410 / 1300,
  20480. bottom: 0.015
  20481. }
  20482. },
  20483. frontDressed: {
  20484. height: math.unit(8, "feet"),
  20485. weight: math.unit(225, "lb"),
  20486. name: "Front (Dressed",
  20487. image: {
  20488. source: "./media/characters/talana/front-dressed.svg",
  20489. extra: 1410 / 1300,
  20490. bottom: 0.015
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(8, "feet"),
  20498. default: true
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20504. {
  20505. side: {
  20506. height: math.unit(7.2, "feet"),
  20507. weight: math.unit(150, "lb"),
  20508. name: "Side",
  20509. image: {
  20510. source: "./media/characters/xeauvok/side.svg",
  20511. extra: 1975 / 1523,
  20512. bottom: 0.07
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(7.2, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20526. {
  20527. side: {
  20528. height: math.unit(4, "meters"),
  20529. weight: math.unit(2200, "kg"),
  20530. name: "Side",
  20531. image: {
  20532. source: "./media/characters/zara/side.svg",
  20533. extra: 765/744,
  20534. bottom: 156/921
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Normal",
  20541. height: math.unit(4, "meters"),
  20542. default: true
  20543. },
  20544. ]
  20545. ))
  20546. characterMakers.push(() => makeCharacter(
  20547. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20548. {
  20549. side: {
  20550. height: math.unit(6, "feet"),
  20551. weight: math.unit(150, "lb"),
  20552. name: "Side",
  20553. image: {
  20554. source: "./media/characters/richard-dragon/side.svg",
  20555. extra: 845 / 340,
  20556. bottom: 0.017
  20557. }
  20558. },
  20559. maw: {
  20560. height: math.unit(2.97, "feet"),
  20561. name: "Maw",
  20562. image: {
  20563. source: "./media/characters/richard-dragon/maw.svg"
  20564. }
  20565. },
  20566. },
  20567. [
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(4, "feet"),
  20575. weight: math.unit(100, "lb"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/richard-smeargle/front.svg",
  20579. extra: 2952 / 2820,
  20580. bottom: 0.028
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(4, "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Dynamax",
  20592. height: math.unit(20, "meters")
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(6, "feet"),
  20601. weight: math.unit(110, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/klay/front.svg",
  20605. extra: 962 / 883,
  20606. bottom: 0.04
  20607. }
  20608. },
  20609. back: {
  20610. height: math.unit(6, "feet"),
  20611. weight: math.unit(110, "lb"),
  20612. name: "Back",
  20613. image: {
  20614. source: "./media/characters/klay/back.svg",
  20615. extra: 962 / 883
  20616. }
  20617. },
  20618. beans: {
  20619. height: math.unit(1.15, "feet"),
  20620. name: "Beans",
  20621. image: {
  20622. source: "./media/characters/klay/beans.svg"
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Micro",
  20629. height: math.unit(6, "inches")
  20630. },
  20631. {
  20632. name: "Mini",
  20633. height: math.unit(3, "feet")
  20634. },
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(6, "feet"),
  20638. default: true
  20639. },
  20640. {
  20641. name: "Big",
  20642. height: math.unit(25, "feet")
  20643. },
  20644. {
  20645. name: "Macro",
  20646. height: math.unit(100, "feet")
  20647. },
  20648. {
  20649. name: "Megamacro",
  20650. height: math.unit(400, "feet")
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20656. {
  20657. front: {
  20658. height: math.unit(6, "feet"),
  20659. weight: math.unit(160, "lb"),
  20660. name: "Front",
  20661. image: {
  20662. source: "./media/characters/marcus/front.svg",
  20663. extra: 734 / 676,
  20664. bottom: 0.03
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Little",
  20671. height: math.unit(6, "feet")
  20672. },
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(110, "feet"),
  20676. default: true
  20677. },
  20678. {
  20679. name: "Macro",
  20680. height: math.unit(250, "feet")
  20681. },
  20682. {
  20683. name: "Megamacro",
  20684. height: math.unit(1000, "feet")
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20690. {
  20691. front: {
  20692. height: math.unit(7, "feet"),
  20693. weight: math.unit(275, "lb"),
  20694. name: "Front",
  20695. image: {
  20696. source: "./media/characters/claude-delroute/front.svg",
  20697. extra: 902/827,
  20698. bottom: 26/928
  20699. }
  20700. },
  20701. side: {
  20702. height: math.unit(7, "feet"),
  20703. weight: math.unit(275, "lb"),
  20704. name: "Side",
  20705. image: {
  20706. source: "./media/characters/claude-delroute/side.svg",
  20707. extra: 908/853,
  20708. bottom: 16/924
  20709. }
  20710. },
  20711. back: {
  20712. height: math.unit(7, "feet"),
  20713. weight: math.unit(275, "lb"),
  20714. name: "Back",
  20715. image: {
  20716. source: "./media/characters/claude-delroute/back.svg",
  20717. extra: 911/829,
  20718. bottom: 18/929
  20719. }
  20720. },
  20721. maw: {
  20722. height: math.unit(0.6407, "meters"),
  20723. name: "Maw",
  20724. image: {
  20725. source: "./media/characters/claude-delroute/maw.svg"
  20726. }
  20727. },
  20728. },
  20729. [
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(7, "feet"),
  20733. default: true
  20734. },
  20735. {
  20736. name: "Lorge",
  20737. height: math.unit(20, "feet")
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(8 + 4 / 12, "feet"),
  20746. weight: math.unit(600, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/dragonien/front.svg",
  20750. extra: 100 / 94,
  20751. bottom: 3.3 / 103.3445
  20752. }
  20753. },
  20754. back: {
  20755. height: math.unit(8 + 4 / 12, "feet"),
  20756. weight: math.unit(600, "lb"),
  20757. name: "Back",
  20758. image: {
  20759. source: "./media/characters/dragonien/back.svg",
  20760. extra: 776 / 746,
  20761. bottom: 6.4 / 782.0616
  20762. }
  20763. },
  20764. foot: {
  20765. height: math.unit(1.54, "feet"),
  20766. name: "Foot",
  20767. image: {
  20768. source: "./media/characters/dragonien/foot.svg",
  20769. }
  20770. },
  20771. },
  20772. [
  20773. {
  20774. name: "Normal",
  20775. height: math.unit(8 + 4 / 12, "feet"),
  20776. default: true
  20777. },
  20778. {
  20779. name: "Macro",
  20780. height: math.unit(200, "feet")
  20781. },
  20782. {
  20783. name: "Megamacro",
  20784. height: math.unit(1, "mile")
  20785. },
  20786. {
  20787. name: "Gigamacro",
  20788. height: math.unit(1000, "miles")
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(5 + 2 / 12, "feet"),
  20797. weight: math.unit(110, "lb"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/desta/front.svg",
  20801. extra: 767 / 726,
  20802. bottom: 11.7 / 779
  20803. }
  20804. },
  20805. back: {
  20806. height: math.unit(5 + 2 / 12, "feet"),
  20807. weight: math.unit(110, "lb"),
  20808. name: "Back",
  20809. image: {
  20810. source: "./media/characters/desta/back.svg",
  20811. extra: 777 / 728,
  20812. bottom: 6 / 784
  20813. }
  20814. },
  20815. frontAlt: {
  20816. height: math.unit(5 + 2 / 12, "feet"),
  20817. weight: math.unit(110, "lb"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/desta/front-alt.svg",
  20821. extra: 1482 / 1417
  20822. }
  20823. },
  20824. side: {
  20825. height: math.unit(5 + 2 / 12, "feet"),
  20826. weight: math.unit(110, "lb"),
  20827. name: "Side",
  20828. image: {
  20829. source: "./media/characters/desta/side.svg",
  20830. extra: 2579 / 2491,
  20831. bottom: 0.053
  20832. }
  20833. },
  20834. },
  20835. [
  20836. {
  20837. name: "Micro",
  20838. height: math.unit(6, "inches")
  20839. },
  20840. {
  20841. name: "Normal",
  20842. height: math.unit(5 + 2 / 12, "feet"),
  20843. default: true
  20844. },
  20845. {
  20846. name: "Macro",
  20847. height: math.unit(62, "feet")
  20848. },
  20849. {
  20850. name: "Megamacro",
  20851. height: math.unit(1800, "feet")
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(10, "feet"),
  20860. weight: math.unit(700, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/storm-alystar/front.svg",
  20864. extra: 2112 / 1898,
  20865. bottom: 0.034
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Micro",
  20872. height: math.unit(3.5, "inches")
  20873. },
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(10, "feet"),
  20877. default: true
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(400, "feet")
  20882. },
  20883. {
  20884. name: "Deific",
  20885. height: math.unit(60, "miles")
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(2.35, "meters"),
  20894. weight: math.unit(119, "kg"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/ilia/front.svg",
  20898. extra: 1285 / 1255,
  20899. bottom: 0.06
  20900. }
  20901. },
  20902. },
  20903. [
  20904. {
  20905. name: "Normal",
  20906. height: math.unit(2.35, "meters")
  20907. },
  20908. {
  20909. name: "Macro",
  20910. height: math.unit(140, "meters"),
  20911. default: true
  20912. },
  20913. {
  20914. name: "Megamacro",
  20915. height: math.unit(100, "miles")
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20921. {
  20922. front: {
  20923. height: math.unit(6 + 5 / 12, "feet"),
  20924. weight: math.unit(190, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/kingdead/front.svg",
  20928. extra: 1228 / 1177
  20929. }
  20930. },
  20931. },
  20932. [
  20933. {
  20934. name: "Micro",
  20935. height: math.unit(7, "inches")
  20936. },
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(6 + 5 / 12, "feet")
  20940. },
  20941. {
  20942. name: "Macro",
  20943. height: math.unit(150, "feet"),
  20944. default: true
  20945. },
  20946. {
  20947. name: "Megamacro",
  20948. height: math.unit(200, "miles")
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20954. {
  20955. front: {
  20956. height: math.unit(8, "feet"),
  20957. weight: math.unit(600, "lb"),
  20958. name: "Front",
  20959. image: {
  20960. source: "./media/characters/kyrehx/front.svg",
  20961. extra: 1195 / 1095,
  20962. bottom: 0.034
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Micro",
  20969. height: math.unit(2, "inches")
  20970. },
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(8, "feet"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(255, "feet")
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20987. weight: math.unit(184, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/xang/front.svg",
  20991. extra: 845 / 755
  20992. }
  20993. },
  20994. },
  20995. [
  20996. {
  20997. name: "Normal",
  20998. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20999. default: true
  21000. },
  21001. {
  21002. name: "Macro",
  21003. height: math.unit(0.935 * 146, "feet")
  21004. },
  21005. {
  21006. name: "Megamacro",
  21007. height: math.unit(0.935 * 3, "miles")
  21008. },
  21009. ]
  21010. ))
  21011. characterMakers.push(() => makeCharacter(
  21012. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21013. {
  21014. frontDressed: {
  21015. height: math.unit(5 + 7 / 12, "feet"),
  21016. weight: math.unit(140, "lb"),
  21017. name: "Front (Dressed)",
  21018. image: {
  21019. source: "./media/characters/doc-weardno/front-dressed.svg",
  21020. extra: 263 / 234
  21021. }
  21022. },
  21023. backDressed: {
  21024. height: math.unit(5 + 7 / 12, "feet"),
  21025. weight: math.unit(140, "lb"),
  21026. name: "Back (Dressed)",
  21027. image: {
  21028. source: "./media/characters/doc-weardno/back-dressed.svg",
  21029. extra: 266 / 238
  21030. }
  21031. },
  21032. front: {
  21033. height: math.unit(5 + 7 / 12, "feet"),
  21034. weight: math.unit(140, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/doc-weardno/front.svg",
  21038. extra: 254 / 233
  21039. }
  21040. },
  21041. },
  21042. [
  21043. {
  21044. name: "Micro",
  21045. height: math.unit(3, "inches")
  21046. },
  21047. {
  21048. name: "Normal",
  21049. height: math.unit(5 + 7 / 12, "feet"),
  21050. default: true
  21051. },
  21052. {
  21053. name: "Macro",
  21054. height: math.unit(25, "feet")
  21055. },
  21056. {
  21057. name: "Megamacro",
  21058. height: math.unit(2, "miles")
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(6 + 2 / 12, "feet"),
  21067. weight: math.unit(153, "lb"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/seth-whilst/front.svg",
  21071. bottom: 0.07
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Micro",
  21078. height: math.unit(5, "inches")
  21079. },
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(6 + 2 / 12, "feet"),
  21083. default: true
  21084. },
  21085. ]
  21086. ))
  21087. characterMakers.push(() => makeCharacter(
  21088. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21089. {
  21090. front: {
  21091. height: math.unit(3, "inches"),
  21092. weight: math.unit(8, "grams"),
  21093. name: "Front",
  21094. image: {
  21095. source: "./media/characters/pocket-jabari/front.svg",
  21096. extra: 1024 / 974,
  21097. bottom: 0.039
  21098. }
  21099. },
  21100. },
  21101. [
  21102. {
  21103. name: "Minimicro",
  21104. height: math.unit(8, "mm")
  21105. },
  21106. {
  21107. name: "Micro",
  21108. height: math.unit(3, "inches"),
  21109. default: true
  21110. },
  21111. {
  21112. name: "Normal",
  21113. height: math.unit(3, "feet")
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21119. {
  21120. frontDressed: {
  21121. height: math.unit(15, "feet"),
  21122. weight: math.unit(3280, "lb"),
  21123. name: "Front (Dressed)",
  21124. image: {
  21125. source: "./media/characters/sapphy/front-dressed.svg",
  21126. extra: 1951/1654,
  21127. bottom: 194/2145
  21128. },
  21129. form: "anthro",
  21130. default: true
  21131. },
  21132. backDressed: {
  21133. height: math.unit(15, "feet"),
  21134. weight: math.unit(3280, "lb"),
  21135. name: "Back (Dressed)",
  21136. image: {
  21137. source: "./media/characters/sapphy/back-dressed.svg",
  21138. extra: 2058/1918,
  21139. bottom: 125/2183
  21140. },
  21141. form: "anthro"
  21142. },
  21143. frontNude: {
  21144. height: math.unit(15, "feet"),
  21145. weight: math.unit(3280, "lb"),
  21146. name: "Front (Nude)",
  21147. image: {
  21148. source: "./media/characters/sapphy/front-nude.svg",
  21149. extra: 1951/1654,
  21150. bottom: 194/2145
  21151. },
  21152. form: "anthro"
  21153. },
  21154. backNude: {
  21155. height: math.unit(15, "feet"),
  21156. weight: math.unit(3280, "lb"),
  21157. name: "Back (Nude)",
  21158. image: {
  21159. source: "./media/characters/sapphy/back-nude.svg",
  21160. extra: 2058/1918,
  21161. bottom: 125/2183
  21162. },
  21163. form: "anthro"
  21164. },
  21165. full: {
  21166. height: math.unit(15, "feet"),
  21167. weight: math.unit(3280, "lb"),
  21168. name: "Full",
  21169. image: {
  21170. source: "./media/characters/sapphy/full.svg",
  21171. extra: 1396/1317,
  21172. bottom: 44/1440
  21173. },
  21174. form: "anthro"
  21175. },
  21176. dick: {
  21177. height: math.unit(3.8, "feet"),
  21178. name: "Dick",
  21179. image: {
  21180. source: "./media/characters/sapphy/dick.svg"
  21181. },
  21182. form: "anthro"
  21183. },
  21184. feral: {
  21185. height: math.unit(35, "feet"),
  21186. weight: math.unit(160, "tons"),
  21187. name: "Feral",
  21188. image: {
  21189. source: "./media/characters/sapphy/feral.svg",
  21190. extra: 1050/573,
  21191. bottom: 60/1110
  21192. },
  21193. form: "feral",
  21194. default: true
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(15, "feet"),
  21201. form: "anthro"
  21202. },
  21203. {
  21204. name: "Casual Macro",
  21205. height: math.unit(120, "feet"),
  21206. form: "anthro"
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(2150, "feet"),
  21211. default: true,
  21212. form: "anthro"
  21213. },
  21214. {
  21215. name: "Megamacro",
  21216. height: math.unit(8, "miles"),
  21217. form: "anthro"
  21218. },
  21219. {
  21220. name: "Galaxy Mom",
  21221. height: math.unit(6, "megalightyears"),
  21222. form: "anthro"
  21223. },
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(35, "feet"),
  21227. form: "feral",
  21228. default: true
  21229. },
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(300, "feet"),
  21233. form: "feral"
  21234. },
  21235. {
  21236. name: "Galaxy Mom",
  21237. height: math.unit(10, "megalightyears"),
  21238. form: "feral"
  21239. },
  21240. ],
  21241. {
  21242. "anthro": {
  21243. name: "Anthro",
  21244. default: true
  21245. },
  21246. "feral": {
  21247. name: "Feral"
  21248. }
  21249. }
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21253. {
  21254. hyenaFront: {
  21255. height: math.unit(6, "feet"),
  21256. weight: math.unit(190, "lb"),
  21257. name: "Front",
  21258. image: {
  21259. source: "./media/characters/kiro/hyena-front.svg",
  21260. extra: 927/839,
  21261. bottom: 91/1018
  21262. },
  21263. form: "hyena",
  21264. default: true
  21265. },
  21266. front: {
  21267. height: math.unit(6, "feet"),
  21268. weight: math.unit(170, "lb"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/kiro/front.svg",
  21272. extra: 1064 / 1012,
  21273. bottom: 0.052
  21274. },
  21275. form: "folf",
  21276. default: true
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Micro",
  21282. height: math.unit(6, "inches"),
  21283. form: "folf"
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(6, "feet"),
  21288. form: "folf",
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(72, "feet"),
  21294. form: "folf"
  21295. },
  21296. {
  21297. name: "Micro",
  21298. height: math.unit(6, "inches"),
  21299. form: "hyena"
  21300. },
  21301. {
  21302. name: "Normal",
  21303. height: math.unit(6, "feet"),
  21304. form: "hyena",
  21305. default: true
  21306. },
  21307. {
  21308. name: "Macro",
  21309. height: math.unit(72, "feet"),
  21310. form: "hyena"
  21311. },
  21312. ],
  21313. {
  21314. "hyena": {
  21315. name: "Hyena",
  21316. default: true
  21317. },
  21318. "folf": {
  21319. name: "Folf",
  21320. },
  21321. }
  21322. ))
  21323. characterMakers.push(() => makeCharacter(
  21324. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21325. {
  21326. front: {
  21327. height: math.unit(5 + 9 / 12, "feet"),
  21328. weight: math.unit(175, "lb"),
  21329. name: "Front",
  21330. image: {
  21331. source: "./media/characters/irishfox/front.svg",
  21332. extra: 1912 / 1680,
  21333. bottom: 0.02
  21334. }
  21335. },
  21336. },
  21337. [
  21338. {
  21339. name: "Nano",
  21340. height: math.unit(1, "mm")
  21341. },
  21342. {
  21343. name: "Micro",
  21344. height: math.unit(2, "inches")
  21345. },
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(5 + 9 / 12, "feet"),
  21349. default: true
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(45, "feet")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(6 + 1 / 12, "feet"),
  21362. weight: math.unit(75, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/aronai-sieyes/front.svg",
  21366. extra: 1532/1450,
  21367. bottom: 42/1574
  21368. }
  21369. },
  21370. side: {
  21371. height: math.unit(6 + 1 / 12, "feet"),
  21372. weight: math.unit(75, "lb"),
  21373. name: "Side",
  21374. image: {
  21375. source: "./media/characters/aronai-sieyes/side.svg",
  21376. extra: 1422/1365,
  21377. bottom: 148/1570
  21378. }
  21379. },
  21380. back: {
  21381. height: math.unit(6 + 1 / 12, "feet"),
  21382. weight: math.unit(75, "lb"),
  21383. name: "Back",
  21384. image: {
  21385. source: "./media/characters/aronai-sieyes/back.svg",
  21386. extra: 1526/1464,
  21387. bottom: 51/1577
  21388. }
  21389. },
  21390. dressed: {
  21391. height: math.unit(6 + 1 / 12, "feet"),
  21392. weight: math.unit(75, "lb"),
  21393. name: "Dressed",
  21394. image: {
  21395. source: "./media/characters/aronai-sieyes/dressed.svg",
  21396. extra: 1559/1483,
  21397. bottom: 39/1598
  21398. }
  21399. },
  21400. slit: {
  21401. height: math.unit(1.3, "feet"),
  21402. name: "Slit",
  21403. image: {
  21404. source: "./media/characters/aronai-sieyes/slit.svg"
  21405. }
  21406. },
  21407. slitSpread: {
  21408. height: math.unit(0.9, "feet"),
  21409. name: "Slit (Spread)",
  21410. image: {
  21411. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21412. }
  21413. },
  21414. rump: {
  21415. height: math.unit(1.3, "feet"),
  21416. name: "Rump",
  21417. image: {
  21418. source: "./media/characters/aronai-sieyes/rump.svg"
  21419. }
  21420. },
  21421. maw: {
  21422. height: math.unit(1.25, "feet"),
  21423. name: "Maw",
  21424. image: {
  21425. source: "./media/characters/aronai-sieyes/maw.svg"
  21426. }
  21427. },
  21428. feral: {
  21429. height: math.unit(18, "feet"),
  21430. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21431. name: "Feral",
  21432. image: {
  21433. source: "./media/characters/aronai-sieyes/feral.svg",
  21434. extra: 1530 / 1240,
  21435. bottom: 0.035
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Micro",
  21442. height: math.unit(2, "inches")
  21443. },
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(6 + 1 / 12, "feet"),
  21447. default: true
  21448. }
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(12, "feet"),
  21456. weight: math.unit(410, "kg"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/xuna/front.svg",
  21460. extra: 2184 / 1980
  21461. }
  21462. },
  21463. side: {
  21464. height: math.unit(12, "feet"),
  21465. weight: math.unit(410, "kg"),
  21466. name: "Side",
  21467. image: {
  21468. source: "./media/characters/xuna/side.svg",
  21469. extra: 2184 / 1980
  21470. }
  21471. },
  21472. back: {
  21473. height: math.unit(12, "feet"),
  21474. weight: math.unit(410, "kg"),
  21475. name: "Back",
  21476. image: {
  21477. source: "./media/characters/xuna/back.svg",
  21478. extra: 2184 / 1980
  21479. }
  21480. },
  21481. },
  21482. [
  21483. {
  21484. name: "Nano glow",
  21485. height: math.unit(10, "nm")
  21486. },
  21487. {
  21488. name: "Micro floof",
  21489. height: math.unit(0.3, "m")
  21490. },
  21491. {
  21492. name: "Huggable softy boi",
  21493. height: math.unit(3.6576, "m"),
  21494. default: true
  21495. },
  21496. {
  21497. name: "Admirable floof",
  21498. height: math.unit(80, "meters")
  21499. },
  21500. {
  21501. name: "Gentle macro",
  21502. height: math.unit(300, "meters")
  21503. },
  21504. {
  21505. name: "Very careful floof",
  21506. height: math.unit(3200, "meters")
  21507. },
  21508. {
  21509. name: "The mega floof",
  21510. height: math.unit(36000, "meters")
  21511. },
  21512. {
  21513. name: "Giga-fur-Wicker",
  21514. height: math.unit(4800000, "meters")
  21515. },
  21516. {
  21517. name: "Licky world",
  21518. height: math.unit(20000000, "meters")
  21519. },
  21520. {
  21521. name: "Floofy cyan sun",
  21522. height: math.unit(1500000000, "meters")
  21523. },
  21524. {
  21525. name: "Milky Wicker",
  21526. height: math.unit(1000000000000000000000, "meters")
  21527. },
  21528. {
  21529. name: "The observing Wicker",
  21530. height: math.unit(999999999999999999999999999, "meters")
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21536. {
  21537. front: {
  21538. height: math.unit(5 + 9 / 12, "feet"),
  21539. weight: math.unit(150, "lb"),
  21540. name: "Front",
  21541. image: {
  21542. source: "./media/characters/arokha-sieyes/front.svg",
  21543. extra: 1425 / 1284,
  21544. bottom: 0.05
  21545. }
  21546. },
  21547. },
  21548. [
  21549. {
  21550. name: "Normal",
  21551. height: math.unit(5 + 9 / 12, "feet")
  21552. },
  21553. {
  21554. name: "Macro",
  21555. height: math.unit(30, "meters"),
  21556. default: true
  21557. },
  21558. ]
  21559. ))
  21560. characterMakers.push(() => makeCharacter(
  21561. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21562. {
  21563. front: {
  21564. height: math.unit(6, "feet"),
  21565. weight: math.unit(180, "lb"),
  21566. name: "Front",
  21567. image: {
  21568. source: "./media/characters/arokh-sieyes/front.svg",
  21569. extra: 1830 / 1769,
  21570. bottom: 0.01
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Normal",
  21577. height: math.unit(6, "feet")
  21578. },
  21579. {
  21580. name: "Macro",
  21581. height: math.unit(30, "meters"),
  21582. default: true
  21583. },
  21584. ]
  21585. ))
  21586. characterMakers.push(() => makeCharacter(
  21587. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21588. {
  21589. side: {
  21590. height: math.unit(13 + 1 / 12, "feet"),
  21591. weight: math.unit(8.5, "tonnes"),
  21592. preyCapacity: math.unit(36, "people"),
  21593. name: "Side",
  21594. image: {
  21595. source: "./media/characters/goldeneye/side.svg",
  21596. extra: 1139/741,
  21597. bottom: 98/1237
  21598. }
  21599. },
  21600. front: {
  21601. height: math.unit(5.1, "feet"),
  21602. weight: math.unit(8.5, "tonnes"),
  21603. preyCapacity: math.unit(36, "people"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/goldeneye/front.svg",
  21607. extra: 635/365,
  21608. bottom: 598/1233
  21609. }
  21610. },
  21611. maw: {
  21612. height: math.unit(6.6, "feet"),
  21613. name: "Maw",
  21614. image: {
  21615. source: "./media/characters/goldeneye/maw.svg"
  21616. }
  21617. },
  21618. headFront: {
  21619. height: math.unit(8, "feet"),
  21620. name: "Head (Front)",
  21621. image: {
  21622. source: "./media/characters/goldeneye/head-front.svg"
  21623. }
  21624. },
  21625. headSide: {
  21626. height: math.unit(6, "feet"),
  21627. name: "Head (Side)",
  21628. image: {
  21629. source: "./media/characters/goldeneye/head-side.svg"
  21630. }
  21631. },
  21632. headBack: {
  21633. height: math.unit(8, "feet"),
  21634. name: "Head (Back)",
  21635. image: {
  21636. source: "./media/characters/goldeneye/head-back.svg"
  21637. }
  21638. },
  21639. paw: {
  21640. height: math.unit(3.4, "feet"),
  21641. name: "Paw",
  21642. image: {
  21643. source: "./media/characters/goldeneye/paw.svg"
  21644. }
  21645. },
  21646. toering: {
  21647. height: math.unit(0.45, "feet"),
  21648. name: "Toering",
  21649. image: {
  21650. source: "./media/characters/goldeneye/toering.svg"
  21651. }
  21652. },
  21653. eyes: {
  21654. height: math.unit(0.5, "feet"),
  21655. name: "Eyes",
  21656. image: {
  21657. source: "./media/characters/goldeneye/eyes.svg"
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(13 + 1 / 12, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21671. {
  21672. front: {
  21673. height: math.unit(6 + 1 / 12, "feet"),
  21674. weight: math.unit(210, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/leonardo-lycheborne/front.svg",
  21678. extra: 776/723,
  21679. bottom: 34/810
  21680. }
  21681. },
  21682. side: {
  21683. height: math.unit(6 + 1 / 12, "feet"),
  21684. weight: math.unit(210, "lb"),
  21685. name: "Side",
  21686. image: {
  21687. source: "./media/characters/leonardo-lycheborne/side.svg",
  21688. extra: 780/728,
  21689. bottom: 12/792
  21690. }
  21691. },
  21692. back: {
  21693. height: math.unit(6 + 1 / 12, "feet"),
  21694. weight: math.unit(210, "lb"),
  21695. name: "Back",
  21696. image: {
  21697. source: "./media/characters/leonardo-lycheborne/back.svg",
  21698. extra: 775/721,
  21699. bottom: 17/792
  21700. }
  21701. },
  21702. hand: {
  21703. height: math.unit(1.08, "feet"),
  21704. name: "Hand",
  21705. image: {
  21706. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21707. }
  21708. },
  21709. foot: {
  21710. height: math.unit(1.32, "feet"),
  21711. name: "Foot",
  21712. image: {
  21713. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21714. }
  21715. },
  21716. maw: {
  21717. height: math.unit(1, "feet"),
  21718. name: "Maw",
  21719. image: {
  21720. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21721. }
  21722. },
  21723. were: {
  21724. height: math.unit(20, "feet"),
  21725. weight: math.unit(7800, "lb"),
  21726. name: "Were",
  21727. image: {
  21728. source: "./media/characters/leonardo-lycheborne/were.svg",
  21729. extra: 1224/1165,
  21730. bottom: 72/1296
  21731. }
  21732. },
  21733. feral: {
  21734. height: math.unit(7.5, "feet"),
  21735. weight: math.unit(600, "lb"),
  21736. name: "Feral",
  21737. image: {
  21738. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21739. extra: 797/702,
  21740. bottom: 139/936
  21741. }
  21742. },
  21743. taur: {
  21744. height: math.unit(11, "feet"),
  21745. weight: math.unit(3300, "lb"),
  21746. name: "Taur",
  21747. image: {
  21748. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21749. extra: 1271/1197,
  21750. bottom: 47/1318
  21751. }
  21752. },
  21753. barghest: {
  21754. height: math.unit(11, "feet"),
  21755. weight: math.unit(1300, "lb"),
  21756. name: "Barghest",
  21757. image: {
  21758. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21759. extra: 1291/1204,
  21760. bottom: 37/1328
  21761. }
  21762. },
  21763. dick: {
  21764. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21765. name: "Dick",
  21766. image: {
  21767. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21768. }
  21769. },
  21770. dickWere: {
  21771. height: math.unit((20) / 3.8, "feet"),
  21772. name: "Dick (Were)",
  21773. image: {
  21774. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(6 + 1 / 12, "feet"),
  21782. default: true
  21783. },
  21784. ]
  21785. ))
  21786. characterMakers.push(() => makeCharacter(
  21787. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21788. {
  21789. front: {
  21790. height: math.unit(10, "feet"),
  21791. weight: math.unit(350, "lb"),
  21792. name: "Front",
  21793. image: {
  21794. source: "./media/characters/jet/front.svg",
  21795. extra: 2050 / 1980,
  21796. bottom: 0.013
  21797. }
  21798. },
  21799. back: {
  21800. height: math.unit(10, "feet"),
  21801. weight: math.unit(350, "lb"),
  21802. name: "Back",
  21803. image: {
  21804. source: "./media/characters/jet/back.svg",
  21805. extra: 2050 / 1980,
  21806. bottom: 0.013
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Micro",
  21813. height: math.unit(6, "inches")
  21814. },
  21815. {
  21816. name: "Normal",
  21817. height: math.unit(10, "feet"),
  21818. default: true
  21819. },
  21820. {
  21821. name: "Macro",
  21822. height: math.unit(100, "feet")
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(15, "feet"),
  21831. weight: math.unit(2800, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/tanarath/front.svg",
  21835. extra: 2392 / 2220,
  21836. bottom: 0.03
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(15, "feet"),
  21841. weight: math.unit(2800, "lb"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/tanarath/back.svg",
  21845. extra: 2392 / 2220,
  21846. bottom: 0.03
  21847. }
  21848. },
  21849. },
  21850. [
  21851. {
  21852. name: "Normal",
  21853. height: math.unit(15, "feet"),
  21854. default: true
  21855. },
  21856. ]
  21857. ))
  21858. characterMakers.push(() => makeCharacter(
  21859. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21860. {
  21861. front: {
  21862. height: math.unit(7 + 1 / 12, "feet"),
  21863. weight: math.unit(175, "lb"),
  21864. name: "Front",
  21865. image: {
  21866. source: "./media/characters/patty-cattybatty/front.svg",
  21867. extra: 908 / 874,
  21868. bottom: 0.025
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Micro",
  21875. height: math.unit(1, "inch")
  21876. },
  21877. {
  21878. name: "Normal",
  21879. height: math.unit(7 + 1 / 12, "feet")
  21880. },
  21881. {
  21882. name: "Mini Macro",
  21883. height: math.unit(155, "feet")
  21884. },
  21885. {
  21886. name: "Macro",
  21887. height: math.unit(1077, "feet")
  21888. },
  21889. {
  21890. name: "Mega Macro",
  21891. height: math.unit(47650, "feet"),
  21892. default: true
  21893. },
  21894. {
  21895. name: "Giga Macro",
  21896. height: math.unit(440, "miles")
  21897. },
  21898. {
  21899. name: "Tera Macro",
  21900. height: math.unit(8700, "miles")
  21901. },
  21902. {
  21903. name: "Planetary Macro",
  21904. height: math.unit(32700, "miles")
  21905. },
  21906. {
  21907. name: "Solar Macro",
  21908. height: math.unit(550000, "miles")
  21909. },
  21910. {
  21911. name: "Celestial Macro",
  21912. height: math.unit(2.5, "AU")
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21918. {
  21919. front: {
  21920. height: math.unit(4 + 5 / 12, "feet"),
  21921. weight: math.unit(90, "lb"),
  21922. name: "Front",
  21923. image: {
  21924. source: "./media/characters/cappu/front.svg",
  21925. extra: 1247 / 1152,
  21926. bottom: 0.012
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Normal",
  21933. height: math.unit(4 + 5 / 12, "feet"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21940. {
  21941. frontDressed: {
  21942. height: math.unit(70, "cm"),
  21943. weight: math.unit(6, "kg"),
  21944. name: "Front (Dressed)",
  21945. image: {
  21946. source: "./media/characters/sebi/front-dressed.svg",
  21947. extra: 713.5 / 686.5,
  21948. bottom: 0.003
  21949. }
  21950. },
  21951. front: {
  21952. height: math.unit(70, "cm"),
  21953. weight: math.unit(5, "kg"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/sebi/front.svg",
  21957. extra: 713.5 / 686.5,
  21958. bottom: 0.003
  21959. }
  21960. }
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(70, "cm"),
  21966. default: true
  21967. },
  21968. {
  21969. name: "Macro",
  21970. height: math.unit(8, "meters")
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(6, "feet"),
  21979. weight: math.unit(150, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/typhek/front.svg",
  21983. extra: 1948 / 1929,
  21984. bottom: 0.025
  21985. }
  21986. },
  21987. side: {
  21988. height: math.unit(6, "feet"),
  21989. weight: math.unit(150, "lb"),
  21990. name: "Side",
  21991. image: {
  21992. source: "./media/characters/typhek/side.svg",
  21993. extra: 2034 / 2010,
  21994. bottom: 0.003
  21995. }
  21996. },
  21997. back: {
  21998. height: math.unit(6, "feet"),
  21999. weight: math.unit(150, "lb"),
  22000. name: "Back",
  22001. image: {
  22002. source: "./media/characters/typhek/back.svg",
  22003. extra: 2005 / 1978,
  22004. bottom: 0.004
  22005. }
  22006. },
  22007. palm: {
  22008. height: math.unit(1.2, "feet"),
  22009. name: "Palm",
  22010. image: {
  22011. source: "./media/characters/typhek/palm.svg"
  22012. }
  22013. },
  22014. fist: {
  22015. height: math.unit(1.1, "feet"),
  22016. name: "Fist",
  22017. image: {
  22018. source: "./media/characters/typhek/fist.svg"
  22019. }
  22020. },
  22021. foot: {
  22022. height: math.unit(1.57, "feet"),
  22023. name: "Foot",
  22024. image: {
  22025. source: "./media/characters/typhek/foot.svg"
  22026. }
  22027. },
  22028. sole: {
  22029. height: math.unit(2.05, "feet"),
  22030. name: "Sole",
  22031. image: {
  22032. source: "./media/characters/typhek/sole.svg"
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Macro",
  22039. height: math.unit(40, "stories"),
  22040. default: true
  22041. },
  22042. {
  22043. name: "Megamacro",
  22044. height: math.unit(1, "mile")
  22045. },
  22046. {
  22047. name: "Gigamacro",
  22048. height: math.unit(4000, "solarradii")
  22049. },
  22050. {
  22051. name: "Universal",
  22052. height: math.unit(1.1, "universes")
  22053. }
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22058. {
  22059. side: {
  22060. height: math.unit(5 + 7 / 12, "feet"),
  22061. weight: math.unit(150, "lb"),
  22062. name: "Side",
  22063. image: {
  22064. source: "./media/characters/kassy/side.svg",
  22065. extra: 1280 / 1225,
  22066. bottom: 0.002
  22067. }
  22068. },
  22069. front: {
  22070. height: math.unit(5 + 7 / 12, "feet"),
  22071. weight: math.unit(150, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/kassy/front.svg",
  22075. extra: 1280 / 1225,
  22076. bottom: 0.025
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(5 + 7 / 12, "feet"),
  22081. weight: math.unit(150, "lb"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/kassy/back.svg",
  22085. extra: 1280 / 1225,
  22086. bottom: 0.002
  22087. }
  22088. },
  22089. foot: {
  22090. height: math.unit(1.266, "feet"),
  22091. name: "Foot",
  22092. image: {
  22093. source: "./media/characters/kassy/foot.svg"
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(5 + 7 / 12, "feet")
  22101. },
  22102. {
  22103. name: "Macro",
  22104. height: math.unit(137, "feet"),
  22105. default: true
  22106. },
  22107. {
  22108. name: "Megamacro",
  22109. height: math.unit(1, "mile")
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22115. {
  22116. front: {
  22117. height: math.unit(6 + 1 / 12, "feet"),
  22118. weight: math.unit(200, "lb"),
  22119. name: "Front",
  22120. image: {
  22121. source: "./media/characters/neil/front.svg",
  22122. extra: 1326 / 1250,
  22123. bottom: 0.023
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(6 + 1 / 12, "feet"),
  22131. default: true
  22132. },
  22133. {
  22134. name: "Macro",
  22135. height: math.unit(200, "feet")
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(5 + 9 / 12, "feet"),
  22144. weight: math.unit(190, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/atticus/front.svg",
  22148. extra: 2934 / 2785,
  22149. bottom: 0.025
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(5 + 9 / 12, "feet"),
  22157. default: true
  22158. },
  22159. {
  22160. name: "Macro",
  22161. height: math.unit(180, "feet")
  22162. },
  22163. ]
  22164. ))
  22165. characterMakers.push(() => makeCharacter(
  22166. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22167. {
  22168. side: {
  22169. height: math.unit(9, "feet"),
  22170. weight: math.unit(650, "lb"),
  22171. name: "Side",
  22172. image: {
  22173. source: "./media/characters/milo/side.svg",
  22174. extra: 2644 / 2310,
  22175. bottom: 0.032
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(9, "feet"),
  22183. default: true
  22184. },
  22185. {
  22186. name: "Macro",
  22187. height: math.unit(300, "feet")
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22193. {
  22194. side: {
  22195. height: math.unit(8, "meters"),
  22196. weight: math.unit(90000, "kg"),
  22197. name: "Side",
  22198. image: {
  22199. source: "./media/characters/ijzer/side.svg",
  22200. extra: 2756 / 1600,
  22201. bottom: 0.01
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Small",
  22208. height: math.unit(3, "meters")
  22209. },
  22210. {
  22211. name: "Normal",
  22212. height: math.unit(8, "meters"),
  22213. default: true
  22214. },
  22215. {
  22216. name: "Normal+",
  22217. height: math.unit(10, "meters")
  22218. },
  22219. {
  22220. name: "Bigger",
  22221. height: math.unit(24, "meters")
  22222. },
  22223. {
  22224. name: "Huge",
  22225. height: math.unit(80, "meters")
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(6 + 2 / 12, "feet"),
  22234. weight: math.unit(153, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/luca-cervicum/front.svg",
  22238. extra: 370 / 327,
  22239. bottom: 0.015
  22240. }
  22241. },
  22242. back: {
  22243. height: math.unit(6 + 2 / 12, "feet"),
  22244. weight: math.unit(153, "lb"),
  22245. name: "Back",
  22246. image: {
  22247. source: "./media/characters/luca-cervicum/back.svg",
  22248. extra: 367 / 333,
  22249. bottom: 0.005
  22250. }
  22251. },
  22252. frontGear: {
  22253. height: math.unit(6 + 2 / 12, "feet"),
  22254. weight: math.unit(173, "lb"),
  22255. name: "Front (Gear)",
  22256. image: {
  22257. source: "./media/characters/luca-cervicum/front-gear.svg",
  22258. extra: 377 / 333,
  22259. bottom: 0.006
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(6 + 2 / 12, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(6 + 1 / 12, "feet"),
  22276. weight: math.unit(304, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/oliver/front.svg",
  22280. extra: 157 / 143,
  22281. bottom: 0.08
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "Normal",
  22288. height: math.unit(6 + 1 / 12, "feet"),
  22289. default: true
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(5 + 7 / 12, "feet"),
  22298. weight: math.unit(140, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/shane/front.svg",
  22302. extra: 304 / 289,
  22303. bottom: 0.005
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(5 + 7 / 12, "feet"),
  22311. default: true
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22317. {
  22318. front: {
  22319. height: math.unit(5 + 9 / 12, "feet"),
  22320. weight: math.unit(178, "lb"),
  22321. name: "Front",
  22322. image: {
  22323. source: "./media/characters/shin/front.svg",
  22324. extra: 159 / 151,
  22325. bottom: 0.015
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(5 + 9 / 12, "feet"),
  22333. default: true
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22339. {
  22340. front: {
  22341. height: math.unit(5 + 10 / 12, "feet"),
  22342. weight: math.unit(168, "lb"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/xerxes/front.svg",
  22346. extra: 282 / 260,
  22347. bottom: 0.045
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(5 + 10 / 12, "feet"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22361. {
  22362. front: {
  22363. height: math.unit(6 + 7 / 12, "feet"),
  22364. weight: math.unit(208, "lb"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/chaska/front.svg",
  22368. extra: 332 / 319,
  22369. bottom: 0.015
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(6 + 7 / 12, "feet"),
  22377. default: true
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(5 + 8 / 12, "feet"),
  22386. weight: math.unit(208, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/enuk/front.svg",
  22390. extra: 437 / 406,
  22391. bottom: 0.02
  22392. }
  22393. },
  22394. },
  22395. [
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(5 + 8 / 12, "feet"),
  22399. default: true
  22400. },
  22401. ]
  22402. ))
  22403. characterMakers.push(() => makeCharacter(
  22404. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22405. {
  22406. front: {
  22407. height: math.unit(5 + 10 / 12, "feet"),
  22408. weight: math.unit(252, "lb"),
  22409. name: "Front",
  22410. image: {
  22411. source: "./media/characters/bruun/front.svg",
  22412. extra: 197 / 187,
  22413. bottom: 0.012
  22414. }
  22415. },
  22416. },
  22417. [
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(5 + 10 / 12, "feet"),
  22421. default: true
  22422. },
  22423. ]
  22424. ))
  22425. characterMakers.push(() => makeCharacter(
  22426. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22427. {
  22428. front: {
  22429. height: math.unit(6 + 10 / 12, "feet"),
  22430. weight: math.unit(255, "lb"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/alexeev/front.svg",
  22434. extra: 213 / 200,
  22435. bottom: 0.05
  22436. }
  22437. },
  22438. },
  22439. [
  22440. {
  22441. name: "Normal",
  22442. height: math.unit(6 + 10 / 12, "feet"),
  22443. default: true
  22444. },
  22445. ]
  22446. ))
  22447. characterMakers.push(() => makeCharacter(
  22448. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22449. {
  22450. front: {
  22451. height: math.unit(2 + 8 / 12, "feet"),
  22452. weight: math.unit(22, "lb"),
  22453. name: "Front",
  22454. image: {
  22455. source: "./media/characters/evelyn/front.svg",
  22456. extra: 208 / 180
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(2 + 8 / 12, "feet"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22470. {
  22471. front: {
  22472. height: math.unit(5 + 9 / 12, "feet"),
  22473. weight: math.unit(139, "lb"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/inca/front.svg",
  22477. extra: 294 / 291,
  22478. bottom: 0.03
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(5 + 9 / 12, "feet"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(6 + 3 / 12, "feet"),
  22495. weight: math.unit(185, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/mera/front.svg",
  22499. extra: 291 / 277,
  22500. bottom: 0.03
  22501. }
  22502. },
  22503. },
  22504. [
  22505. {
  22506. name: "Normal",
  22507. height: math.unit(6 + 3 / 12, "feet"),
  22508. default: true
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(6 + 7 / 12, "feet"),
  22517. weight: math.unit(160, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/ceres/front.svg",
  22521. extra: 1023 / 950,
  22522. bottom: 0.027
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(6 + 7 / 12, "feet"),
  22527. weight: math.unit(160, "lb"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/ceres/back.svg",
  22531. extra: 1023 / 950
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(6 + 7 / 12, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(5 + 10 / 12, "feet"),
  22548. weight: math.unit(150, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/kris/front.svg",
  22552. extra: 885 / 803,
  22553. bottom: 0.03
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(5 + 10 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22567. {
  22568. dragon_front: {
  22569. height: math.unit(5, "feet"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/taluthus/dragon-front.svg",
  22573. extra: 1203/1098,
  22574. bottom: 46/1249
  22575. },
  22576. form: "dragon",
  22577. default: true
  22578. },
  22579. dragon_maw: {
  22580. height: math.unit(2.35, "feet"),
  22581. name: "Maw",
  22582. image: {
  22583. source: "./media/characters/taluthus/dragon-maw.svg"
  22584. },
  22585. form: "dragon",
  22586. },
  22587. kitsune_front: {
  22588. height: math.unit(7, "feet"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/taluthus/kitsune-front.svg",
  22592. extra: 900/841,
  22593. bottom: 65/965
  22594. },
  22595. form: "kitsune",
  22596. default: true
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(5, "feet"),
  22603. form: "dragon",
  22604. default: true,
  22605. },
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(7, "feet"),
  22609. form: "kitsune",
  22610. default: true
  22611. },
  22612. {
  22613. name: "Macro",
  22614. height: math.unit(300, "feet"),
  22615. allForms: true
  22616. },
  22617. ],
  22618. {
  22619. "dragon": {
  22620. name: "Dragon",
  22621. default: true
  22622. },
  22623. "kitsune": {
  22624. name: "Kitsune",
  22625. },
  22626. }
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(5 + 9 / 12, "feet"),
  22633. weight: math.unit(145, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/dawn/front.svg",
  22637. extra: 2094 / 2016,
  22638. bottom: 0.025
  22639. }
  22640. },
  22641. back: {
  22642. height: math.unit(5 + 9 / 12, "feet"),
  22643. weight: math.unit(160, "lb"),
  22644. name: "Back",
  22645. image: {
  22646. source: "./media/characters/dawn/back.svg",
  22647. extra: 2112 / 2080,
  22648. bottom: 0.005
  22649. }
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(6 + 7 / 12, "feet"),
  22656. default: true
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22662. {
  22663. anthro: {
  22664. height: math.unit(8 + 3 / 12, "feet"),
  22665. weight: math.unit(450, "lb"),
  22666. name: "Anthro",
  22667. image: {
  22668. source: "./media/characters/arador/anthro.svg",
  22669. extra: 1835 / 1718,
  22670. bottom: 0.025
  22671. }
  22672. },
  22673. feral: {
  22674. height: math.unit(4, "feet"),
  22675. weight: math.unit(200, "lb"),
  22676. name: "Feral",
  22677. image: {
  22678. source: "./media/characters/arador/feral.svg",
  22679. extra: 1683 / 1514,
  22680. bottom: 0.07
  22681. }
  22682. },
  22683. },
  22684. [
  22685. {
  22686. name: "Normal",
  22687. height: math.unit(8 + 3 / 12, "feet")
  22688. },
  22689. {
  22690. name: "Macro",
  22691. height: math.unit(82.5, "feet"),
  22692. default: true
  22693. },
  22694. ]
  22695. ))
  22696. characterMakers.push(() => makeCharacter(
  22697. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22698. {
  22699. front: {
  22700. height: math.unit(5 + 10 / 12, "feet"),
  22701. weight: math.unit(125, "lb"),
  22702. name: "Front",
  22703. image: {
  22704. source: "./media/characters/dharsi/front.svg",
  22705. extra: 716 / 630,
  22706. bottom: 0.035
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Nano",
  22713. height: math.unit(100, "nm")
  22714. },
  22715. {
  22716. name: "Micro",
  22717. height: math.unit(2, "inches")
  22718. },
  22719. {
  22720. name: "Normal",
  22721. height: math.unit(5 + 10 / 12, "feet"),
  22722. default: true
  22723. },
  22724. {
  22725. name: "Macro",
  22726. height: math.unit(1000, "feet")
  22727. },
  22728. {
  22729. name: "Megamacro",
  22730. height: math.unit(10, "miles")
  22731. },
  22732. {
  22733. name: "Gigamacro",
  22734. height: math.unit(3000, "miles")
  22735. },
  22736. {
  22737. name: "Teramacro",
  22738. height: math.unit(500000, "miles")
  22739. },
  22740. {
  22741. name: "Teramacro+",
  22742. height: math.unit(30, "galaxies")
  22743. },
  22744. ]
  22745. ))
  22746. characterMakers.push(() => makeCharacter(
  22747. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22748. {
  22749. front: {
  22750. height: math.unit(6, "feet"),
  22751. weight: math.unit(150, "lb"),
  22752. name: "Front",
  22753. image: {
  22754. source: "./media/characters/deathy/front.svg",
  22755. extra: 1552 / 1463,
  22756. bottom: 0.025
  22757. }
  22758. },
  22759. side: {
  22760. height: math.unit(6, "feet"),
  22761. weight: math.unit(150, "lb"),
  22762. name: "Side",
  22763. image: {
  22764. source: "./media/characters/deathy/side.svg",
  22765. extra: 1604 / 1455,
  22766. bottom: 0.025
  22767. }
  22768. },
  22769. back: {
  22770. height: math.unit(6, "feet"),
  22771. weight: math.unit(150, "lb"),
  22772. name: "Back",
  22773. image: {
  22774. source: "./media/characters/deathy/back.svg",
  22775. extra: 1580 / 1463,
  22776. bottom: 0.005
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Micro",
  22783. height: math.unit(5, "millimeters")
  22784. },
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(6 + 5 / 12, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22794. {
  22795. front: {
  22796. height: math.unit(16, "feet"),
  22797. weight: math.unit(4000, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/juniper/front.svg",
  22801. bottom: 0.04
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(16, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(6, "feet"),
  22818. weight: math.unit(150, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/hipster/front.svg",
  22822. extra: 1312 / 1209,
  22823. bottom: 0.025
  22824. }
  22825. },
  22826. back: {
  22827. height: math.unit(6, "feet"),
  22828. weight: math.unit(150, "lb"),
  22829. name: "Back",
  22830. image: {
  22831. source: "./media/characters/hipster/back.svg",
  22832. extra: 1281 / 1196,
  22833. bottom: 0.01
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Micro",
  22840. height: math.unit(1, "mm")
  22841. },
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(4, "inches"),
  22845. default: true
  22846. },
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(500, "feet")
  22850. },
  22851. {
  22852. name: "Megamacro",
  22853. height: math.unit(1000, "miles")
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(6, "feet"),
  22862. weight: math.unit(150, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/tendirmuldr/front.svg",
  22866. extra: 1878 / 1772,
  22867. bottom: 0.015
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Megamacro",
  22874. height: math.unit(1500, "miles"),
  22875. default: true
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22881. {
  22882. front: {
  22883. height: math.unit(14, "feet"),
  22884. weight: math.unit(12000, "lb"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/mort/front.svg",
  22888. extra: 365 / 318,
  22889. bottom: 0.01
  22890. }
  22891. },
  22892. side: {
  22893. height: math.unit(14, "feet"),
  22894. weight: math.unit(12000, "lb"),
  22895. name: "Side",
  22896. image: {
  22897. source: "./media/characters/mort/side.svg",
  22898. extra: 365 / 318,
  22899. bottom: 0.052
  22900. },
  22901. default: true
  22902. },
  22903. back: {
  22904. height: math.unit(14, "feet"),
  22905. weight: math.unit(12000, "lb"),
  22906. name: "Back",
  22907. image: {
  22908. source: "./media/characters/mort/back.svg",
  22909. extra: 371 / 332,
  22910. bottom: 0.18
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(14, "feet"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22924. {
  22925. front: {
  22926. height: math.unit(8, "feet"),
  22927. weight: math.unit(1, "ton"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/lycoa/front.svg",
  22931. extra: 1836/1728,
  22932. bottom: 81/1917
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(8, "feet"),
  22937. weight: math.unit(1, "ton"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/lycoa/back.svg",
  22941. extra: 1785/1720,
  22942. bottom: 91/1876
  22943. }
  22944. },
  22945. head: {
  22946. height: math.unit(1.6243, "feet"),
  22947. name: "Head",
  22948. image: {
  22949. source: "./media/characters/lycoa/head.svg",
  22950. extra: 1011/782,
  22951. bottom: 0/1011
  22952. }
  22953. },
  22954. tailmaw: {
  22955. height: math.unit(1.9, "feet"),
  22956. name: "Tailmaw",
  22957. image: {
  22958. source: "./media/characters/lycoa/tailmaw.svg"
  22959. }
  22960. },
  22961. tentacles: {
  22962. height: math.unit(2.1, "feet"),
  22963. name: "Tentacles",
  22964. image: {
  22965. source: "./media/characters/lycoa/tentacles.svg"
  22966. }
  22967. },
  22968. dick: {
  22969. height: math.unit(1.73, "feet"),
  22970. name: "Dick",
  22971. image: {
  22972. source: "./media/characters/lycoa/dick.svg"
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Normal",
  22979. height: math.unit(8, "feet"),
  22980. default: true
  22981. },
  22982. {
  22983. name: "Macro",
  22984. height: math.unit(30, "feet")
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22990. {
  22991. front: {
  22992. height: math.unit(4 + 2 / 12, "feet"),
  22993. weight: math.unit(70, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/naldara/front.svg",
  22997. extra: 1664/1387,
  22998. bottom: 81/1745
  22999. },
  23000. form: "anthro",
  23001. default: true
  23002. },
  23003. naga: {
  23004. height: math.unit(20, "feet"),
  23005. weight: math.unit(15000, "kg"),
  23006. name: "Front",
  23007. image: {
  23008. source: "./media/characters/naldara/naga.svg",
  23009. extra: 1590/1396,
  23010. bottom: 285/1875
  23011. },
  23012. form: "naga",
  23013. default: true
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(4 + 2 / 12, "feet"),
  23020. form: "anthro",
  23021. default: true
  23022. },
  23023. {
  23024. name: "Normal",
  23025. height: math.unit(20, "feet"),
  23026. form: "naga",
  23027. default: true
  23028. },
  23029. ],
  23030. {
  23031. "anthro": {
  23032. name: "Anthro",
  23033. default: true
  23034. },
  23035. "naga": {
  23036. name: "Naga"
  23037. }
  23038. }
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23042. {
  23043. front: {
  23044. height: math.unit(13 + 7 / 12, "feet"),
  23045. weight: math.unit(1500, "lb"),
  23046. name: "Front",
  23047. image: {
  23048. source: "./media/characters/briar/front.svg",
  23049. extra: 1223/1157,
  23050. bottom: 123/1346
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(13 + 7 / 12, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23064. {
  23065. side: {
  23066. height: math.unit(16, "feet"),
  23067. weight: math.unit(500, "lb"),
  23068. name: "Side",
  23069. image: {
  23070. source: "./media/characters/vanguard/side.svg",
  23071. extra: 1022/914,
  23072. bottom: 30/1052
  23073. }
  23074. },
  23075. sideAlt: {
  23076. height: math.unit(10, "feet"),
  23077. weight: math.unit(500, "lb"),
  23078. name: "Side (Alt)",
  23079. image: {
  23080. source: "./media/characters/vanguard/side-alt.svg",
  23081. extra: 502 / 425,
  23082. bottom: 0.087
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(17.71, "feet"),
  23090. default: true
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(7.5, "feet"),
  23099. weight: math.unit(2, "lb"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/artemis/work-safe-front.svg",
  23103. extra: 1192 / 1075,
  23104. bottom: 0.07
  23105. },
  23106. form: "work-safe",
  23107. default: true
  23108. },
  23109. frontNsfw: {
  23110. height: math.unit(7.5, "feet"),
  23111. weight: math.unit(2, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/artemis/calibrating-front.svg",
  23115. extra: 1192 / 1075,
  23116. bottom: 0.07
  23117. },
  23118. form: "calibrating",
  23119. default: true
  23120. },
  23121. frontNsfwer: {
  23122. height: math.unit(7.5, "feet"),
  23123. weight: math.unit(2, "lb"),
  23124. name: "Front",
  23125. image: {
  23126. source: "./media/characters/artemis/oversize-load-front.svg",
  23127. extra: 1192 / 1075,
  23128. bottom: 0.07
  23129. },
  23130. form: "oversize-load",
  23131. default: true
  23132. },
  23133. side: {
  23134. height: math.unit(7.5, "feet"),
  23135. weight: math.unit(2, "lb"),
  23136. name: "Side",
  23137. image: {
  23138. source: "./media/characters/artemis/work-safe-side.svg",
  23139. extra: 1192 / 1075,
  23140. bottom: 0.07
  23141. },
  23142. form: "work-safe"
  23143. },
  23144. sideNsfw: {
  23145. height: math.unit(7.5, "feet"),
  23146. weight: math.unit(2, "lb"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/artemis/calibrating-side.svg",
  23150. extra: 1192 / 1075,
  23151. bottom: 0.07
  23152. },
  23153. form: "calibrating"
  23154. },
  23155. sideNsfwer: {
  23156. height: math.unit(7.5, "feet"),
  23157. weight: math.unit(2, "lb"),
  23158. name: "Side",
  23159. image: {
  23160. source: "./media/characters/artemis/oversize-load-side.svg",
  23161. extra: 1192 / 1075,
  23162. bottom: 0.07
  23163. },
  23164. form: "oversize-load"
  23165. },
  23166. maw: {
  23167. height: math.unit(1.1, "feet"),
  23168. name: "Maw",
  23169. image: {
  23170. source: "./media/characters/artemis/maw.svg"
  23171. },
  23172. form: "work-safe"
  23173. },
  23174. stomach: {
  23175. height: math.unit(0.95, "feet"),
  23176. name: "Stomach",
  23177. image: {
  23178. source: "./media/characters/artemis/stomach.svg"
  23179. },
  23180. form: "work-safe"
  23181. },
  23182. dickCanine: {
  23183. height: math.unit(1, "feet"),
  23184. name: "Dick (Canine)",
  23185. image: {
  23186. source: "./media/characters/artemis/dick-canine.svg"
  23187. },
  23188. form: "calibrating"
  23189. },
  23190. dickEquine: {
  23191. height: math.unit(0.85, "feet"),
  23192. name: "Dick (Equine)",
  23193. image: {
  23194. source: "./media/characters/artemis/dick-equine.svg"
  23195. },
  23196. form: "calibrating"
  23197. },
  23198. dickExotic: {
  23199. height: math.unit(0.85, "feet"),
  23200. name: "Dick (Exotic)",
  23201. image: {
  23202. source: "./media/characters/artemis/dick-exotic.svg"
  23203. },
  23204. form: "calibrating"
  23205. },
  23206. dickCanineBigger: {
  23207. height: math.unit(1 * 1.33, "feet"),
  23208. name: "Dick (Canine)",
  23209. image: {
  23210. source: "./media/characters/artemis/dick-canine.svg"
  23211. },
  23212. form: "oversize-load"
  23213. },
  23214. dickEquineBigger: {
  23215. height: math.unit(0.85 * 1.33, "feet"),
  23216. name: "Dick (Equine)",
  23217. image: {
  23218. source: "./media/characters/artemis/dick-equine.svg"
  23219. },
  23220. form: "oversize-load"
  23221. },
  23222. dickExoticBigger: {
  23223. height: math.unit(0.85 * 1.33, "feet"),
  23224. name: "Dick (Exotic)",
  23225. image: {
  23226. source: "./media/characters/artemis/dick-exotic.svg"
  23227. },
  23228. form: "oversize-load"
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Normal",
  23234. height: math.unit(7.5, "feet"),
  23235. form: "work-safe",
  23236. default: true
  23237. },
  23238. {
  23239. name: "Normal",
  23240. height: math.unit(7.5, "feet"),
  23241. form: "calibrating",
  23242. default: true
  23243. },
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(7.5, "feet"),
  23247. form: "oversize-load",
  23248. default: true
  23249. },
  23250. {
  23251. name: "Enlarged",
  23252. height: math.unit(12, "feet"),
  23253. form: "work-safe",
  23254. },
  23255. {
  23256. name: "Enlarged",
  23257. height: math.unit(12, "feet"),
  23258. form: "calibrating",
  23259. },
  23260. {
  23261. name: "Enlarged",
  23262. height: math.unit(12, "feet"),
  23263. form: "oversize-load",
  23264. },
  23265. ],
  23266. {
  23267. "work-safe": {
  23268. name: "Work-Safe",
  23269. default: true
  23270. },
  23271. "calibrating": {
  23272. name: "Calibrating"
  23273. },
  23274. "oversize-load": {
  23275. name: "Oversize Load"
  23276. }
  23277. }
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(5 + 3 / 12, "feet"),
  23284. weight: math.unit(160, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/kira/front.svg",
  23288. extra: 906 / 786,
  23289. bottom: 0.01
  23290. }
  23291. },
  23292. back: {
  23293. height: math.unit(5 + 3 / 12, "feet"),
  23294. weight: math.unit(160, "lb"),
  23295. name: "Back",
  23296. image: {
  23297. source: "./media/characters/kira/back.svg",
  23298. extra: 882 / 757,
  23299. bottom: 0.005
  23300. }
  23301. },
  23302. frontDressed: {
  23303. height: math.unit(5 + 3 / 12, "feet"),
  23304. weight: math.unit(160, "lb"),
  23305. name: "Front (Dressed)",
  23306. image: {
  23307. source: "./media/characters/kira/front-dressed.svg",
  23308. extra: 906 / 786,
  23309. bottom: 0.01
  23310. }
  23311. },
  23312. beans: {
  23313. height: math.unit(0.92, "feet"),
  23314. name: "Beans",
  23315. image: {
  23316. source: "./media/characters/kira/beans.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(5 + 3 / 12, "feet"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(5 + 4 / 12, "feet"),
  23333. weight: math.unit(145, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/scramble/front.svg",
  23337. extra: 763 / 727,
  23338. bottom: 0.05
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(5 + 4 / 12, "feet"),
  23343. weight: math.unit(145, "lb"),
  23344. name: "Back",
  23345. image: {
  23346. source: "./media/characters/scramble/back.svg",
  23347. extra: 826 / 737,
  23348. bottom: 0.002
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(5 + 4 / 12, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23362. {
  23363. side: {
  23364. height: math.unit(6 + 2 / 12, "feet"),
  23365. weight: math.unit(190, "lb"),
  23366. name: "Side",
  23367. image: {
  23368. source: "./media/characters/biscuit/side.svg",
  23369. extra: 858 / 791,
  23370. bottom: 0.044
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Normal",
  23377. height: math.unit(6 + 2 / 12, "feet"),
  23378. default: true
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23384. {
  23385. front: {
  23386. height: math.unit(5 + 2 / 12, "feet"),
  23387. weight: math.unit(120, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/poffin/front.svg",
  23391. extra: 786 / 680,
  23392. bottom: 0.005
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Normal",
  23399. height: math.unit(5 + 2 / 12, "feet"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23406. {
  23407. front: {
  23408. height: math.unit(6 + 3 / 12, "feet"),
  23409. weight: math.unit(519, "lb"),
  23410. name: "Front",
  23411. image: {
  23412. source: "./media/characters/dhari/front.svg",
  23413. extra: 1048 / 946,
  23414. bottom: 0.015
  23415. }
  23416. },
  23417. back: {
  23418. height: math.unit(6 + 3 / 12, "feet"),
  23419. weight: math.unit(519, "lb"),
  23420. name: "Back",
  23421. image: {
  23422. source: "./media/characters/dhari/back.svg",
  23423. extra: 1048 / 931,
  23424. bottom: 0.005
  23425. }
  23426. },
  23427. frontDressed: {
  23428. height: math.unit(6 + 3 / 12, "feet"),
  23429. weight: math.unit(519, "lb"),
  23430. name: "Front (Dressed)",
  23431. image: {
  23432. source: "./media/characters/dhari/front-dressed.svg",
  23433. extra: 1713 / 1546,
  23434. bottom: 0.02
  23435. }
  23436. },
  23437. backDressed: {
  23438. height: math.unit(6 + 3 / 12, "feet"),
  23439. weight: math.unit(519, "lb"),
  23440. name: "Back (Dressed)",
  23441. image: {
  23442. source: "./media/characters/dhari/back-dressed.svg",
  23443. extra: 1699 / 1537,
  23444. bottom: 0.01
  23445. }
  23446. },
  23447. maw: {
  23448. height: math.unit(0.95, "feet"),
  23449. name: "Maw",
  23450. image: {
  23451. source: "./media/characters/dhari/maw.svg"
  23452. }
  23453. },
  23454. wereFront: {
  23455. height: math.unit(12 + 8 / 12, "feet"),
  23456. weight: math.unit(4000, "lb"),
  23457. name: "Front (Were)",
  23458. image: {
  23459. source: "./media/characters/dhari/were-front.svg",
  23460. extra: 1065 / 969,
  23461. bottom: 0.015
  23462. }
  23463. },
  23464. wereBack: {
  23465. height: math.unit(12 + 8 / 12, "feet"),
  23466. weight: math.unit(4000, "lb"),
  23467. name: "Back (Were)",
  23468. image: {
  23469. source: "./media/characters/dhari/were-back.svg",
  23470. extra: 1065 / 969,
  23471. bottom: 0.012
  23472. }
  23473. },
  23474. wereMaw: {
  23475. height: math.unit(0.625, "meters"),
  23476. name: "Maw (Were)",
  23477. image: {
  23478. source: "./media/characters/dhari/were-maw.svg"
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(6 + 3 / 12, "feet"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23492. {
  23493. anthro: {
  23494. height: math.unit(5 + 7 / 12, "feet"),
  23495. weight: math.unit(175, "lb"),
  23496. name: "Anthro",
  23497. image: {
  23498. source: "./media/characters/rena-dyne/anthro.svg",
  23499. extra: 1849 / 1785,
  23500. bottom: 0.005
  23501. }
  23502. },
  23503. taur: {
  23504. height: math.unit(15 + 6 / 12, "feet"),
  23505. weight: math.unit(8000, "lb"),
  23506. name: "Taur",
  23507. image: {
  23508. source: "./media/characters/rena-dyne/taur.svg",
  23509. extra: 2315 / 2234,
  23510. bottom: 0.033
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(5 + 7 / 12, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(8, "feet"),
  23527. weight: math.unit(600, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/weremeep/front.svg",
  23531. extra: 970/849,
  23532. bottom: 7/977
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(8, "feet"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Lorg",
  23544. height: math.unit(12, "feet")
  23545. },
  23546. {
  23547. name: "Oh Lawd She Comin'",
  23548. height: math.unit(20, "feet")
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23554. {
  23555. front: {
  23556. height: math.unit(4, "feet"),
  23557. weight: math.unit(90, "lb"),
  23558. name: "Front",
  23559. image: {
  23560. source: "./media/characters/reza/front.svg",
  23561. extra: 1183 / 1111,
  23562. bottom: 0.017
  23563. }
  23564. },
  23565. back: {
  23566. height: math.unit(4, "feet"),
  23567. weight: math.unit(90, "lb"),
  23568. name: "Back",
  23569. image: {
  23570. source: "./media/characters/reza/back.svg",
  23571. extra: 1183 / 1111,
  23572. bottom: 0.01
  23573. }
  23574. },
  23575. drake: {
  23576. height: math.unit(30, "feet"),
  23577. weight: math.unit(246960, "lb"),
  23578. name: "Drake",
  23579. image: {
  23580. source: "./media/characters/reza/drake.svg",
  23581. extra: 2350 / 2024,
  23582. bottom: 60.7 / 2403
  23583. }
  23584. },
  23585. },
  23586. [
  23587. {
  23588. name: "Normal",
  23589. height: math.unit(4, "feet"),
  23590. default: true
  23591. },
  23592. ]
  23593. ))
  23594. characterMakers.push(() => makeCharacter(
  23595. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23596. {
  23597. side: {
  23598. height: math.unit(15, "feet"),
  23599. weight: math.unit(14, "tons"),
  23600. name: "Side",
  23601. image: {
  23602. source: "./media/characters/athea/side.svg",
  23603. extra: 960 / 540,
  23604. bottom: 0.003
  23605. }
  23606. },
  23607. sitting: {
  23608. height: math.unit(6 * 2.85, "feet"),
  23609. weight: math.unit(14, "tons"),
  23610. name: "Sitting",
  23611. image: {
  23612. source: "./media/characters/athea/sitting.svg",
  23613. extra: 621 / 581,
  23614. bottom: 0.075
  23615. }
  23616. },
  23617. maw: {
  23618. height: math.unit(7.59498031496063, "feet"),
  23619. name: "Maw",
  23620. image: {
  23621. source: "./media/characters/athea/maw.svg"
  23622. }
  23623. },
  23624. },
  23625. [
  23626. {
  23627. name: "Lap Cat",
  23628. height: math.unit(2.5, "feet")
  23629. },
  23630. {
  23631. name: "Minimacro",
  23632. height: math.unit(15, "feet"),
  23633. default: true
  23634. },
  23635. {
  23636. name: "Macro",
  23637. height: math.unit(120, "feet")
  23638. },
  23639. {
  23640. name: "Macro+",
  23641. height: math.unit(640, "feet")
  23642. },
  23643. {
  23644. name: "Colossus",
  23645. height: math.unit(2.2, "miles")
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(8 + 8 / 12, "feet"),
  23654. weight: math.unit(130, "kg"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/seroko/front.svg",
  23658. extra: 1385 / 1280,
  23659. bottom: 0.025
  23660. }
  23661. },
  23662. back: {
  23663. height: math.unit(8 + 8 / 12, "feet"),
  23664. weight: math.unit(130, "kg"),
  23665. name: "Back",
  23666. image: {
  23667. source: "./media/characters/seroko/back.svg",
  23668. extra: 1369 / 1238,
  23669. bottom: 0.018
  23670. }
  23671. },
  23672. frontDressed: {
  23673. height: math.unit(8 + 8 / 12, "feet"),
  23674. weight: math.unit(130, "kg"),
  23675. name: "Front (Dressed)",
  23676. image: {
  23677. source: "./media/characters/seroko/front-dressed.svg",
  23678. extra: 1366 / 1275,
  23679. bottom: 0.03
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(8 + 8 / 12, "feet"),
  23687. default: true
  23688. },
  23689. ]
  23690. ))
  23691. characterMakers.push(() => makeCharacter(
  23692. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23693. {
  23694. front: {
  23695. height: math.unit(5.5, "feet"),
  23696. weight: math.unit(160, "lb"),
  23697. name: "Front",
  23698. image: {
  23699. source: "./media/characters/quatzi/front.svg",
  23700. extra: 2346 / 2242,
  23701. bottom: 0.015
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(5.5, "feet"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Big",
  23713. height: math.unit(7.7, "feet")
  23714. },
  23715. ]
  23716. ))
  23717. characterMakers.push(() => makeCharacter(
  23718. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23719. {
  23720. front: {
  23721. height: math.unit(5 + 11 / 12, "feet"),
  23722. weight: math.unit(180, "lb"),
  23723. name: "Front",
  23724. image: {
  23725. source: "./media/characters/sen/front.svg",
  23726. extra: 1321 / 1254,
  23727. bottom: 0.015
  23728. }
  23729. },
  23730. side: {
  23731. height: math.unit(5 + 11 / 12, "feet"),
  23732. weight: math.unit(180, "lb"),
  23733. name: "Side",
  23734. image: {
  23735. source: "./media/characters/sen/side.svg",
  23736. extra: 1321 / 1254,
  23737. bottom: 0.007
  23738. }
  23739. },
  23740. back: {
  23741. height: math.unit(5 + 11 / 12, "feet"),
  23742. weight: math.unit(180, "lb"),
  23743. name: "Back",
  23744. image: {
  23745. source: "./media/characters/sen/back.svg",
  23746. extra: 1321 / 1254
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(5 + 11 / 12, "feet"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(166.6, "cm"),
  23763. weight: math.unit(66.6, "kg"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/fruity/front.svg",
  23767. extra: 1510 / 1386,
  23768. bottom: 0.04
  23769. }
  23770. },
  23771. back: {
  23772. height: math.unit(166.6, "cm"),
  23773. weight: math.unit(66.6, "lb"),
  23774. name: "Back",
  23775. image: {
  23776. source: "./media/characters/fruity/back.svg",
  23777. extra: 1563 / 1435,
  23778. bottom: 0.005
  23779. }
  23780. },
  23781. },
  23782. [
  23783. {
  23784. name: "Normal",
  23785. height: math.unit(166.6, "cm"),
  23786. default: true
  23787. },
  23788. {
  23789. name: "Demonic",
  23790. height: math.unit(166.6, "feet")
  23791. },
  23792. ]
  23793. ))
  23794. characterMakers.push(() => makeCharacter(
  23795. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23796. {
  23797. side: {
  23798. height: math.unit(10, "feet"),
  23799. weight: math.unit(500, "lb"),
  23800. name: "Side",
  23801. image: {
  23802. source: "./media/characters/zost/side.svg",
  23803. extra: 2870/2533,
  23804. bottom: 252/3122
  23805. }
  23806. },
  23807. mawFront: {
  23808. height: math.unit(1.08, "meters"),
  23809. name: "Maw (Front)",
  23810. image: {
  23811. source: "./media/characters/zost/maw-front.svg"
  23812. }
  23813. },
  23814. mawSide: {
  23815. height: math.unit(2.66, "feet"),
  23816. name: "Maw (Side)",
  23817. image: {
  23818. source: "./media/characters/zost/maw-side.svg"
  23819. }
  23820. },
  23821. wingspan: {
  23822. height: math.unit(7.4, "feet"),
  23823. name: "Wingspan",
  23824. image: {
  23825. source: "./media/characters/zost/wingspan.svg"
  23826. }
  23827. },
  23828. },
  23829. [
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(10, "feet"),
  23833. default: true
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(5 + 4 / 12, "feet"),
  23842. weight: math.unit(120, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/luci/front.svg",
  23846. extra: 1985 / 1884,
  23847. bottom: 0.04
  23848. }
  23849. },
  23850. back: {
  23851. height: math.unit(5 + 4 / 12, "feet"),
  23852. weight: math.unit(120, "lb"),
  23853. name: "Back",
  23854. image: {
  23855. source: "./media/characters/luci/back.svg",
  23856. extra: 1892 / 1791,
  23857. bottom: 0.002
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(5 + 4 / 12, "feet"),
  23865. default: true
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(1500, "feet"),
  23874. weight: math.unit(3.8e6, "tons"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/2th/front.svg",
  23878. extra: 3489 / 3350,
  23879. bottom: 0.1
  23880. }
  23881. },
  23882. foot: {
  23883. height: math.unit(461, "feet"),
  23884. name: "Foot",
  23885. image: {
  23886. source: "./media/characters/2th/foot.svg"
  23887. }
  23888. },
  23889. },
  23890. [
  23891. {
  23892. name: "\"Micro\"",
  23893. height: math.unit(15 + 7 / 12, "feet")
  23894. },
  23895. {
  23896. name: "Normal",
  23897. height: math.unit(1500, "feet"),
  23898. default: true
  23899. },
  23900. {
  23901. name: "Macro",
  23902. height: math.unit(5000, "feet")
  23903. },
  23904. {
  23905. name: "Megamacro",
  23906. height: math.unit(15, "miles")
  23907. },
  23908. {
  23909. name: "Gigamacro",
  23910. height: math.unit(4000, "miles")
  23911. },
  23912. {
  23913. name: "Galactic",
  23914. height: math.unit(50, "AU")
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23920. {
  23921. front: {
  23922. height: math.unit(5 + 6 / 12, "feet"),
  23923. weight: math.unit(220, "lb"),
  23924. name: "Front",
  23925. image: {
  23926. source: "./media/characters/amethyst/front.svg",
  23927. extra: 2078 / 2040,
  23928. bottom: 0.045
  23929. }
  23930. },
  23931. back: {
  23932. height: math.unit(5 + 6 / 12, "feet"),
  23933. weight: math.unit(220, "lb"),
  23934. name: "Back",
  23935. image: {
  23936. source: "./media/characters/amethyst/back.svg",
  23937. extra: 2021 / 1989,
  23938. bottom: 0.02
  23939. }
  23940. },
  23941. },
  23942. [
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(5 + 6 / 12, "feet"),
  23946. default: true
  23947. },
  23948. ]
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(4 + 11 / 12, "feet"),
  23955. weight: math.unit(120, "lb"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/yumi-akiyama/front.svg",
  23959. extra: 2638/2432,
  23960. bottom: 70/2708
  23961. }
  23962. },
  23963. back: {
  23964. height: math.unit(4 + 11 / 12, "feet"),
  23965. weight: math.unit(120, "lb"),
  23966. name: "Back",
  23967. image: {
  23968. source: "./media/characters/yumi-akiyama/back.svg",
  23969. extra: 2502/2397,
  23970. bottom: 80/2582
  23971. }
  23972. },
  23973. casual: {
  23974. height: math.unit(4 + 11 / 12, "feet"),
  23975. weight: math.unit(120, "lb"),
  23976. name: "Casual",
  23977. image: {
  23978. source: "./media/characters/yumi-akiyama/casual.svg",
  23979. extra: 958/887,
  23980. bottom: 41/999
  23981. }
  23982. },
  23983. jammies: {
  23984. height: math.unit(4 + 11 / 12, "feet"),
  23985. weight: math.unit(120, "lb"),
  23986. name: "Jammies",
  23987. image: {
  23988. source: "./media/characters/yumi-akiyama/jammies.svg",
  23989. extra: 958/894,
  23990. bottom: 37/995
  23991. }
  23992. },
  23993. warmWeather: {
  23994. height: math.unit(4 + 11 / 12, "feet"),
  23995. weight: math.unit(120, "lb"),
  23996. name: "Warm Weather",
  23997. image: {
  23998. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23999. extra: 929/865,
  24000. bottom: 76/1005
  24001. }
  24002. },
  24003. mouth: {
  24004. height: math.unit(0.35, "feet"),
  24005. name: "Mouth",
  24006. image: {
  24007. source: "./media/characters/yumi-akiyama/mouth.svg"
  24008. }
  24009. },
  24010. paws: {
  24011. height: math.unit(1.05, "feet"),
  24012. name: "Paws",
  24013. image: {
  24014. source: "./media/characters/yumi-akiyama/paws.svg"
  24015. }
  24016. },
  24017. cockRing: {
  24018. height: math.unit(0.225, "feet"),
  24019. name: "Cock Ring",
  24020. image: {
  24021. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Galactic",
  24028. height: math.unit(50, "galaxies"),
  24029. default: true
  24030. },
  24031. {
  24032. name: "Universal",
  24033. height: math.unit(100, "universes")
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(8, "feet"),
  24042. weight: math.unit(500, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/rifter-yrmori/front.svg",
  24046. extra: 1180 / 1125,
  24047. bottom: 0.02
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(8, "feet"),
  24052. weight: math.unit(500, "lb"),
  24053. name: "Back",
  24054. image: {
  24055. source: "./media/characters/rifter-yrmori/back.svg",
  24056. extra: 1190 / 1145,
  24057. bottom: 0.001
  24058. }
  24059. },
  24060. wings: {
  24061. height: math.unit(7.75, "feet"),
  24062. weight: math.unit(500, "lb"),
  24063. name: "Wings",
  24064. image: {
  24065. source: "./media/characters/rifter-yrmori/wings.svg",
  24066. extra: 1357 / 1285
  24067. }
  24068. },
  24069. maw: {
  24070. height: math.unit(0.8, "feet"),
  24071. name: "Maw",
  24072. image: {
  24073. source: "./media/characters/rifter-yrmori/maw.svg"
  24074. }
  24075. },
  24076. mawfront: {
  24077. height: math.unit(1.45, "feet"),
  24078. name: "Maw (Front)",
  24079. image: {
  24080. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24081. }
  24082. },
  24083. },
  24084. [
  24085. {
  24086. name: "Normal",
  24087. height: math.unit(8, "feet"),
  24088. default: true
  24089. },
  24090. {
  24091. name: "Macro",
  24092. height: math.unit(42, "meters")
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24098. {
  24099. were: {
  24100. height: math.unit(25 + 6 / 12, "feet"),
  24101. weight: math.unit(10000, "lb"),
  24102. name: "Were",
  24103. image: {
  24104. source: "./media/characters/tahajin/were.svg",
  24105. extra: 801 / 770,
  24106. bottom: 0.042
  24107. }
  24108. },
  24109. aquatic: {
  24110. height: math.unit(6 + 4 / 12, "feet"),
  24111. weight: math.unit(160, "lb"),
  24112. name: "Aquatic",
  24113. image: {
  24114. source: "./media/characters/tahajin/aquatic.svg",
  24115. extra: 572 / 542,
  24116. bottom: 0.04
  24117. }
  24118. },
  24119. chow: {
  24120. height: math.unit(8 + 11 / 12, "feet"),
  24121. weight: math.unit(450, "lb"),
  24122. name: "Chow",
  24123. image: {
  24124. source: "./media/characters/tahajin/chow.svg",
  24125. extra: 660 / 640,
  24126. bottom: 0.015
  24127. }
  24128. },
  24129. demiNaga: {
  24130. height: math.unit(6 + 8 / 12, "feet"),
  24131. weight: math.unit(300, "lb"),
  24132. name: "Demi Naga",
  24133. image: {
  24134. source: "./media/characters/tahajin/demi-naga.svg",
  24135. extra: 643 / 615,
  24136. bottom: 0.1
  24137. }
  24138. },
  24139. data: {
  24140. height: math.unit(5, "inches"),
  24141. weight: math.unit(0.1, "lb"),
  24142. name: "Data",
  24143. image: {
  24144. source: "./media/characters/tahajin/data.svg"
  24145. }
  24146. },
  24147. fluu: {
  24148. height: math.unit(5 + 7 / 12, "feet"),
  24149. weight: math.unit(140, "lb"),
  24150. name: "Fluu",
  24151. image: {
  24152. source: "./media/characters/tahajin/fluu.svg",
  24153. extra: 628 / 592,
  24154. bottom: 0.02
  24155. }
  24156. },
  24157. starWarrior: {
  24158. height: math.unit(4 + 5 / 12, "feet"),
  24159. weight: math.unit(50, "lb"),
  24160. name: "Star Warrior",
  24161. image: {
  24162. source: "./media/characters/tahajin/star-warrior.svg"
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(25 + 6 / 12, "feet"),
  24170. default: true
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(8, "feet"),
  24179. weight: math.unit(350, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/gabira/front.svg",
  24183. extra: 1261/1154,
  24184. bottom: 51/1312
  24185. }
  24186. },
  24187. back: {
  24188. height: math.unit(8, "feet"),
  24189. weight: math.unit(350, "lb"),
  24190. name: "Back",
  24191. image: {
  24192. source: "./media/characters/gabira/back.svg",
  24193. extra: 1265/1163,
  24194. bottom: 46/1311
  24195. }
  24196. },
  24197. head: {
  24198. height: math.unit(2.85, "feet"),
  24199. name: "Head",
  24200. image: {
  24201. source: "./media/characters/gabira/head.svg"
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Normal",
  24208. height: math.unit(8, "feet"),
  24209. default: true
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24215. {
  24216. front: {
  24217. height: math.unit(5 + 3 / 12, "feet"),
  24218. weight: math.unit(137, "lb"),
  24219. name: "Front",
  24220. image: {
  24221. source: "./media/characters/sasha-katraine/front.svg",
  24222. extra: 1745/1694,
  24223. bottom: 37/1782
  24224. }
  24225. },
  24226. back: {
  24227. height: math.unit(5 + 3 / 12, "feet"),
  24228. weight: math.unit(137, "lb"),
  24229. name: "Back",
  24230. image: {
  24231. source: "./media/characters/sasha-katraine/back.svg",
  24232. extra: 1776/1699,
  24233. bottom: 26/1802
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Micro",
  24240. height: math.unit(5, "inches")
  24241. },
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(5 + 3 / 12, "feet"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24251. {
  24252. side: {
  24253. height: math.unit(4, "inches"),
  24254. weight: math.unit(200, "grams"),
  24255. name: "Side",
  24256. image: {
  24257. source: "./media/characters/der/side.svg",
  24258. extra: 719 / 400,
  24259. bottom: 30.6 / 749.9187
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Micro",
  24266. height: math.unit(4, "inches"),
  24267. default: true
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24273. {
  24274. side: {
  24275. height: math.unit(30, "meters"),
  24276. weight: math.unit(700, "tonnes"),
  24277. name: "Side",
  24278. image: {
  24279. source: "./media/characters/fixerdragon/side.svg",
  24280. extra: (1293.0514 - 116.03) / 1106.86,
  24281. bottom: 116.03 / 1293.0514
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Planck",
  24288. height: math.unit(1.6e-35, "meters")
  24289. },
  24290. {
  24291. name: "Micro",
  24292. height: math.unit(0.4, "meters")
  24293. },
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(30, "meters"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Megamacro",
  24301. height: math.unit(1.2, "megameters")
  24302. },
  24303. {
  24304. name: "Teramacro",
  24305. height: math.unit(130, "terameters")
  24306. },
  24307. {
  24308. name: "Yottamacro",
  24309. height: math.unit(6200, "yottameters")
  24310. },
  24311. ]
  24312. ));
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(8, "feet"),
  24318. weight: math.unit(250, "lb"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/kite/front.svg",
  24322. extra: 456/414,
  24323. bottom: 24/480
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(8, "feet"),
  24331. default: true
  24332. },
  24333. {
  24334. name: "Macro",
  24335. height: math.unit(360, "feet")
  24336. },
  24337. {
  24338. name: "Megamacro",
  24339. height: math.unit(1500, "feet")
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24345. {
  24346. anthro_front: {
  24347. height: math.unit(5 + 11/12, "feet"),
  24348. weight: math.unit(170, "lb"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24352. extra: 1735/1585,
  24353. bottom: 96/1831
  24354. },
  24355. form: "anthro",
  24356. default: true
  24357. },
  24358. anthro_back: {
  24359. height: math.unit(5 + 11/12, "feet"),
  24360. weight: math.unit(170, "lb"),
  24361. name: "Back",
  24362. image: {
  24363. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24364. extra: 1749/1607,
  24365. bottom: 28/1777
  24366. },
  24367. form: "anthro"
  24368. },
  24369. anthro_male: {
  24370. height: math.unit(5 + 11/12, "feet"),
  24371. weight: math.unit(170, "lb"),
  24372. name: "Male",
  24373. image: {
  24374. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24375. extra: 1855/1713,
  24376. bottom: 63/1918
  24377. },
  24378. form: "anthro"
  24379. },
  24380. taur_front: {
  24381. height: math.unit(5 + 7/12, "feet"),
  24382. weight: math.unit(170, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24386. extra: 1151/1059,
  24387. bottom: 356/1507
  24388. },
  24389. form: "taur",
  24390. default: true
  24391. },
  24392. anthro_frontDressed: {
  24393. height: math.unit(5 + 11/12, "feet"),
  24394. weight: math.unit(170, "lb"),
  24395. name: "Front (Dressed)",
  24396. image: {
  24397. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24398. extra: 1735/1585,
  24399. bottom: 96/1831
  24400. },
  24401. form: "anthro"
  24402. },
  24403. anthro_backDressed: {
  24404. height: math.unit(5 + 11/12, "feet"),
  24405. weight: math.unit(170, "lb"),
  24406. name: "Back (Dressed)",
  24407. image: {
  24408. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24409. extra: 1749/1607,
  24410. bottom: 28/1777
  24411. },
  24412. form: "anthro"
  24413. },
  24414. anthro_maleDressed: {
  24415. height: math.unit(5 + 11/12, "feet"),
  24416. weight: math.unit(170, "lb"),
  24417. name: "Male (Dressed)",
  24418. image: {
  24419. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24420. extra: 1855/1713,
  24421. bottom: 63/1918
  24422. },
  24423. form: "anthro"
  24424. },
  24425. taur_frontDressed: {
  24426. height: math.unit(5 + 7/12, "feet"),
  24427. weight: math.unit(170, "lb"),
  24428. name: "Front (Dressed)",
  24429. image: {
  24430. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24431. extra: 1151/1059,
  24432. bottom: 356/1507
  24433. },
  24434. form: "taur"
  24435. },
  24436. maw: {
  24437. height: math.unit(1.46, "feet"),
  24438. name: "Maw",
  24439. image: {
  24440. source: "./media/characters/poojawa-vynar/maw.svg"
  24441. },
  24442. allForms: true
  24443. },
  24444. head: {
  24445. height: math.unit(2.34, "feet"),
  24446. name: "Head",
  24447. image: {
  24448. source: "./media/characters/poojawa-vynar/head.svg"
  24449. },
  24450. allForms: true
  24451. },
  24452. leftPaw: {
  24453. height: math.unit(1.72, "feet"),
  24454. name: "Left Paw",
  24455. image: {
  24456. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24457. },
  24458. allForms: true
  24459. },
  24460. rightPaw: {
  24461. height: math.unit(1.61, "feet"),
  24462. name: "Right Paw",
  24463. image: {
  24464. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24465. },
  24466. allForms: true
  24467. },
  24468. toering: {
  24469. height: math.unit(2.9, "inches"),
  24470. name: "Toering",
  24471. image: {
  24472. source: "./media/characters/poojawa-vynar/toering.svg"
  24473. },
  24474. allForms: true
  24475. },
  24476. shaft: {
  24477. height: math.unit(0.625, "feet"),
  24478. name: "Shaft",
  24479. image: {
  24480. source: "./media/characters/poojawa-vynar/shaft.svg"
  24481. },
  24482. allForms: true
  24483. },
  24484. spade: {
  24485. height: math.unit(0.42, "feet"),
  24486. name: "Spade",
  24487. image: {
  24488. source: "./media/characters/poojawa-vynar/spade.svg"
  24489. },
  24490. allForms: true
  24491. },
  24492. },
  24493. [
  24494. {
  24495. name: "Shortstack",
  24496. height: math.unit(4, "feet"),
  24497. form: "anthro"
  24498. },
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(5 + 11 / 12, "feet"),
  24502. form: "anthro",
  24503. default: true
  24504. },
  24505. {
  24506. name: "Tauric",
  24507. height: math.unit(4, "meters"),
  24508. form: "taur",
  24509. default: true
  24510. },
  24511. ],
  24512. {
  24513. "anthro": {
  24514. name: "Anthro",
  24515. default: true
  24516. },
  24517. "taur": {
  24518. name: "Taur",
  24519. },
  24520. }
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(293, "meters"),
  24527. weight: math.unit(70400, "tons"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/violette/front.svg",
  24531. extra: 1227 / 1180,
  24532. bottom: 0.005
  24533. }
  24534. },
  24535. back: {
  24536. height: math.unit(293, "meters"),
  24537. weight: math.unit(70400, "tons"),
  24538. name: "Back",
  24539. image: {
  24540. source: "./media/characters/violette/back.svg",
  24541. extra: 1227 / 1180,
  24542. bottom: 0.005
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Macro",
  24549. height: math.unit(293, "meters"),
  24550. default: true
  24551. },
  24552. ]
  24553. ))
  24554. characterMakers.push(() => makeCharacter(
  24555. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24556. {
  24557. front: {
  24558. height: math.unit(1050, "feet"),
  24559. weight: math.unit(200000, "tons"),
  24560. name: "Front",
  24561. image: {
  24562. source: "./media/characters/alessandra/front.svg",
  24563. extra: 960 / 912,
  24564. bottom: 0.06
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Macro",
  24571. height: math.unit(1050, "feet")
  24572. },
  24573. {
  24574. name: "Macro+",
  24575. height: math.unit(900, "meters"),
  24576. default: true
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24582. {
  24583. front: {
  24584. height: math.unit(5, "feet"),
  24585. weight: math.unit(187, "lb"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/person/front.svg",
  24589. extra: 3087 / 2945,
  24590. bottom: 91 / 3181
  24591. }
  24592. },
  24593. },
  24594. [
  24595. {
  24596. name: "Micro",
  24597. height: math.unit(3, "inches")
  24598. },
  24599. {
  24600. name: "Normal",
  24601. height: math.unit(5, "feet"),
  24602. default: true
  24603. },
  24604. {
  24605. name: "Macro",
  24606. height: math.unit(90, "feet")
  24607. },
  24608. {
  24609. name: "Max Size",
  24610. height: math.unit(280, "feet")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24616. {
  24617. front: {
  24618. height: math.unit(12, "feet"),
  24619. weight: math.unit(3200, "lb"),
  24620. name: "Front",
  24621. image: {
  24622. source: "./media/characters/ty/front.svg",
  24623. extra: 753/703,
  24624. bottom: 61/814
  24625. }
  24626. },
  24627. back: {
  24628. height: math.unit(12, "feet"),
  24629. weight: math.unit(3200, "lb"),
  24630. name: "Back",
  24631. image: {
  24632. source: "./media/characters/ty/back.svg",
  24633. extra: 757/707,
  24634. bottom: 16/773
  24635. }
  24636. },
  24637. head: {
  24638. height: math.unit(3.7, "feet"),
  24639. name: "Head",
  24640. image: {
  24641. source: "./media/characters/ty/head.svg"
  24642. }
  24643. },
  24644. hand: {
  24645. height: math.unit(2.38, "feet"),
  24646. name: "Hand",
  24647. image: {
  24648. source: "./media/characters/ty/hand.svg"
  24649. }
  24650. },
  24651. tail: {
  24652. height: math.unit(8.01096641535, "feet"),
  24653. name: "Tail",
  24654. image: {
  24655. source: "./media/characters/ty/tail.svg"
  24656. }
  24657. },
  24658. },
  24659. [
  24660. {
  24661. name: "Normal",
  24662. height: math.unit(12, "feet"),
  24663. default: true
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(5 + 4 / 12, "feet"),
  24672. weight: math.unit(115, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/rocky/front.svg",
  24676. extra: 1012 / 975,
  24677. bottom: 54 / 1066
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(5 + 4 / 12, "feet"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24691. {
  24692. upright: {
  24693. height: math.unit(6, "meters"),
  24694. weight: math.unit(4000, "kg"),
  24695. name: "Upright",
  24696. image: {
  24697. source: "./media/characters/ruin/upright.svg",
  24698. extra: 668 / 661,
  24699. bottom: 42 / 799.8396
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(6, "meters"),
  24707. default: true
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(5, "feet"),
  24716. weight: math.unit(106, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/robin/front.svg",
  24720. extra: 862 / 799,
  24721. bottom: 42.4 / 914.8856
  24722. }
  24723. },
  24724. },
  24725. [
  24726. {
  24727. name: "Normal",
  24728. height: math.unit(5, "feet"),
  24729. default: true
  24730. },
  24731. ]
  24732. ))
  24733. characterMakers.push(() => makeCharacter(
  24734. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24735. {
  24736. side: {
  24737. height: math.unit(3, "feet"),
  24738. weight: math.unit(225, "lb"),
  24739. name: "Side",
  24740. image: {
  24741. source: "./media/characters/saian/side.svg",
  24742. extra: 566 / 356,
  24743. bottom: 79.7 / 643
  24744. }
  24745. },
  24746. maw: {
  24747. height: math.unit(2.85, "feet"),
  24748. name: "Maw",
  24749. image: {
  24750. source: "./media/characters/saian/maw.svg"
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(3, "feet"),
  24758. default: true
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24764. {
  24765. side: {
  24766. height: math.unit(8, "feet"),
  24767. weight: math.unit(300, "lb"),
  24768. name: "Side",
  24769. image: {
  24770. source: "./media/characters/equus-silvermane/side.svg",
  24771. extra: 2176 / 2050,
  24772. bottom: 65.7 / 2245
  24773. }
  24774. },
  24775. front: {
  24776. height: math.unit(8, "feet"),
  24777. weight: math.unit(300, "lb"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/equus-silvermane/front.svg",
  24781. extra: 4633 / 4400,
  24782. bottom: 71.3 / 4706.915
  24783. }
  24784. },
  24785. sideStepping: {
  24786. height: math.unit(8, "feet"),
  24787. weight: math.unit(300, "lb"),
  24788. name: "Side (Stepping)",
  24789. image: {
  24790. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24791. extra: 1968 / 1860,
  24792. bottom: 16.4 / 1989
  24793. }
  24794. },
  24795. },
  24796. [
  24797. {
  24798. name: "Normal",
  24799. height: math.unit(8, "feet")
  24800. },
  24801. {
  24802. name: "Minimacro",
  24803. height: math.unit(75, "feet"),
  24804. default: true
  24805. },
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(150, "feet")
  24809. },
  24810. {
  24811. name: "Macro+",
  24812. height: math.unit(1000, "feet")
  24813. },
  24814. {
  24815. name: "Megamacro",
  24816. height: math.unit(1, "mile")
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24822. {
  24823. side: {
  24824. height: math.unit(20, "feet"),
  24825. weight: math.unit(30000, "kg"),
  24826. name: "Side",
  24827. image: {
  24828. source: "./media/characters/windar/side.svg",
  24829. extra: 1491 / 1248,
  24830. bottom: 82.56 / 1568
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(20, "feet"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24844. {
  24845. side: {
  24846. height: math.unit(15.66, "feet"),
  24847. weight: math.unit(150, "lb"),
  24848. name: "Side",
  24849. image: {
  24850. source: "./media/characters/melody/side.svg",
  24851. extra: 1097 / 944,
  24852. bottom: 11.8 / 1109
  24853. }
  24854. },
  24855. sideOutfit: {
  24856. height: math.unit(15.66, "feet"),
  24857. weight: math.unit(150, "lb"),
  24858. name: "Side (Outfit)",
  24859. image: {
  24860. source: "./media/characters/melody/side-outfit.svg",
  24861. extra: 1097 / 944,
  24862. bottom: 11.8 / 1109
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(15.66, "feet"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24876. {
  24877. armoredFront: {
  24878. height: math.unit(8, "feet"),
  24879. weight: math.unit(325, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/windera/armored-front.svg",
  24883. extra: 1830/1598,
  24884. bottom: 151/1981
  24885. },
  24886. form: "armored",
  24887. default: true
  24888. },
  24889. macroFront: {
  24890. height: math.unit(70, "feet"),
  24891. weight: math.unit(315453, "lb"),
  24892. name: "Front",
  24893. image: {
  24894. source: "./media/characters/windera/macro-front.svg",
  24895. extra: 963/883,
  24896. bottom: 23/986
  24897. },
  24898. form: "macro",
  24899. default: true
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Normal",
  24905. height: math.unit(8, "feet"),
  24906. default: true,
  24907. form: "armored"
  24908. },
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(70, "feet"),
  24912. default: true,
  24913. form: "macro"
  24914. },
  24915. ],
  24916. {
  24917. "armored": {
  24918. name: "Armored",
  24919. default: true
  24920. },
  24921. "macro": {
  24922. name: "Macro",
  24923. },
  24924. }
  24925. ))
  24926. characterMakers.push(() => makeCharacter(
  24927. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24928. {
  24929. front: {
  24930. height: math.unit(28.75, "feet"),
  24931. weight: math.unit(2000, "kg"),
  24932. name: "Front",
  24933. image: {
  24934. source: "./media/characters/sonear/front.svg",
  24935. extra: 1041.1 / 964.9,
  24936. bottom: 53.7 / 1096.6
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(28.75, "feet"),
  24944. default: true
  24945. },
  24946. ]
  24947. ))
  24948. characterMakers.push(() => makeCharacter(
  24949. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24950. {
  24951. side: {
  24952. height: math.unit(25.5, "feet"),
  24953. weight: math.unit(23000, "kg"),
  24954. name: "Side",
  24955. image: {
  24956. source: "./media/characters/kanara/side.svg"
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(25.5, "feet"),
  24964. default: true
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24970. {
  24971. side: {
  24972. height: math.unit(10, "feet"),
  24973. weight: math.unit(1000, "kg"),
  24974. name: "Side",
  24975. image: {
  24976. source: "./media/characters/ereus/side.svg",
  24977. extra: 1157 / 959,
  24978. bottom: 153 / 1312.5
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(10, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24992. {
  24993. side: {
  24994. height: math.unit(4.5, "feet"),
  24995. weight: math.unit(500, "lb"),
  24996. name: "Side",
  24997. image: {
  24998. source: "./media/characters/e-ter/side.svg",
  24999. extra: 1550 / 1248,
  25000. bottom: 146 / 1694
  25001. }
  25002. },
  25003. },
  25004. [
  25005. {
  25006. name: "Normal",
  25007. height: math.unit(4.5, "feet"),
  25008. default: true
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25014. {
  25015. side: {
  25016. height: math.unit(9.7, "feet"),
  25017. weight: math.unit(4000, "kg"),
  25018. name: "Side",
  25019. image: {
  25020. source: "./media/characters/yamie/side.svg"
  25021. }
  25022. },
  25023. },
  25024. [
  25025. {
  25026. name: "Normal",
  25027. height: math.unit(9.7, "feet"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(50, "feet"),
  25037. weight: math.unit(50000, "kg"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/anders/front.svg",
  25041. extra: 570 / 539,
  25042. bottom: 14.7 / 586.7
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Large",
  25049. height: math.unit(50, "feet")
  25050. },
  25051. {
  25052. name: "Macro",
  25053. height: math.unit(2000, "feet"),
  25054. default: true
  25055. },
  25056. {
  25057. name: "Megamacro",
  25058. height: math.unit(12, "miles")
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(7 + 2 / 12, "feet"),
  25067. weight: math.unit(300, "lb"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/reban/front.svg",
  25071. extra: 1287/1212,
  25072. bottom: 148/1435
  25073. }
  25074. },
  25075. head: {
  25076. height: math.unit(1.95, "feet"),
  25077. name: "Head",
  25078. image: {
  25079. source: "./media/characters/reban/head.svg"
  25080. }
  25081. },
  25082. maw: {
  25083. height: math.unit(0.95, "feet"),
  25084. name: "Maw",
  25085. image: {
  25086. source: "./media/characters/reban/maw.svg"
  25087. }
  25088. },
  25089. foot: {
  25090. height: math.unit(1.65, "feet"),
  25091. name: "Foot",
  25092. image: {
  25093. source: "./media/characters/reban/foot.svg"
  25094. }
  25095. },
  25096. dick: {
  25097. height: math.unit(7 / 5, "feet"),
  25098. name: "Dick",
  25099. image: {
  25100. source: "./media/characters/reban/dick.svg"
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Natural Height",
  25107. height: math.unit(7 + 2 / 12, "feet")
  25108. },
  25109. {
  25110. name: "Macro",
  25111. height: math.unit(500, "feet"),
  25112. default: true
  25113. },
  25114. {
  25115. name: "Canon Height",
  25116. height: math.unit(50, "AU")
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(6, "feet"),
  25125. weight: math.unit(150, "lb"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/terrance-keayes/front.svg",
  25129. extra: 1.005,
  25130. bottom: 151 / 1615
  25131. }
  25132. },
  25133. side: {
  25134. height: math.unit(6, "feet"),
  25135. weight: math.unit(150, "lb"),
  25136. name: "Side",
  25137. image: {
  25138. source: "./media/characters/terrance-keayes/side.svg",
  25139. extra: 1.005,
  25140. bottom: 129.4 / 1544
  25141. }
  25142. },
  25143. back: {
  25144. height: math.unit(6, "feet"),
  25145. weight: math.unit(150, "lb"),
  25146. name: "Back",
  25147. image: {
  25148. source: "./media/characters/terrance-keayes/back.svg",
  25149. extra: 1.005,
  25150. bottom: 58.4 / 1557.3
  25151. }
  25152. },
  25153. dick: {
  25154. height: math.unit(6 * 0.208, "feet"),
  25155. name: "Dick",
  25156. image: {
  25157. source: "./media/characters/terrance-keayes/dick.svg"
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Canon Height",
  25164. height: math.unit(35, "miles"),
  25165. default: true
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25171. {
  25172. front: {
  25173. height: math.unit(6, "feet"),
  25174. weight: math.unit(150, "lb"),
  25175. name: "Front",
  25176. image: {
  25177. source: "./media/characters/ofelia/front.svg",
  25178. extra: 1130/1117,
  25179. bottom: 91/1221
  25180. }
  25181. },
  25182. back: {
  25183. height: math.unit(6, "feet"),
  25184. weight: math.unit(150, "lb"),
  25185. name: "Back",
  25186. image: {
  25187. source: "./media/characters/ofelia/back.svg",
  25188. extra: 1172/1159,
  25189. bottom: 28/1200
  25190. }
  25191. },
  25192. maw: {
  25193. height: math.unit(1, "feet"),
  25194. name: "Maw",
  25195. image: {
  25196. source: "./media/characters/ofelia/maw.svg"
  25197. }
  25198. },
  25199. foot: {
  25200. height: math.unit(1.949, "feet"),
  25201. name: "Foot",
  25202. image: {
  25203. source: "./media/characters/ofelia/foot.svg"
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Canon Height",
  25210. height: math.unit(2000, "miles"),
  25211. default: true
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25217. {
  25218. front: {
  25219. height: math.unit(6, "feet"),
  25220. weight: math.unit(150, "lb"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/samuel/front.svg",
  25224. extra: 265 / 258,
  25225. bottom: 2 / 266.1566
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Macro",
  25232. height: math.unit(100, "feet"),
  25233. default: true
  25234. },
  25235. {
  25236. name: "Full Size",
  25237. height: math.unit(1000, "miles")
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(6, "feet"),
  25246. weight: math.unit(300, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/beishir-kiel/front.svg",
  25250. extra: 569 / 547,
  25251. bottom: 41.9 / 609
  25252. }
  25253. },
  25254. maw: {
  25255. height: math.unit(6 * 0.202, "feet"),
  25256. name: "Maw",
  25257. image: {
  25258. source: "./media/characters/beishir-kiel/maw.svg"
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Macro",
  25265. height: math.unit(300, "feet"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(5 + 7/12, "feet"),
  25275. weight: math.unit(120, "lb"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/logan-grey/front.svg",
  25279. extra: 1836/1738,
  25280. bottom: 108/1944
  25281. }
  25282. },
  25283. back: {
  25284. height: math.unit(5 + 7/12, "feet"),
  25285. weight: math.unit(120, "lb"),
  25286. name: "Back",
  25287. image: {
  25288. source: "./media/characters/logan-grey/back.svg",
  25289. extra: 1880/1794,
  25290. bottom: 24/1904
  25291. }
  25292. },
  25293. frontSfw: {
  25294. height: math.unit(5 + 7/12, "feet"),
  25295. weight: math.unit(120, "lb"),
  25296. name: "Front (SFW)",
  25297. image: {
  25298. source: "./media/characters/logan-grey/front-sfw.svg",
  25299. extra: 1836/1738,
  25300. bottom: 108/1944
  25301. }
  25302. },
  25303. backSfw: {
  25304. height: math.unit(5 + 7/12, "feet"),
  25305. weight: math.unit(120, "lb"),
  25306. name: "Back (SFW)",
  25307. image: {
  25308. source: "./media/characters/logan-grey/back-sfw.svg",
  25309. extra: 1880/1794,
  25310. bottom: 24/1904
  25311. }
  25312. },
  25313. hands: {
  25314. height: math.unit(0.84, "feet"),
  25315. name: "Hands",
  25316. image: {
  25317. source: "./media/characters/logan-grey/hands.svg"
  25318. }
  25319. },
  25320. paws: {
  25321. height: math.unit(0.72, "feet"),
  25322. name: "Paws",
  25323. image: {
  25324. source: "./media/characters/logan-grey/paws.svg"
  25325. }
  25326. },
  25327. cock: {
  25328. height: math.unit(1.45, "feet"),
  25329. name: "Cock",
  25330. image: {
  25331. source: "./media/characters/logan-grey/cock.svg"
  25332. }
  25333. },
  25334. cockAlt: {
  25335. height: math.unit(1.437, "feet"),
  25336. name: "Cock (alt)",
  25337. image: {
  25338. source: "./media/characters/logan-grey/cock-alt.svg"
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(5 + 8 / 12, "feet")
  25346. },
  25347. {
  25348. name: "The 500 Foot Femboy",
  25349. height: math.unit(500, "feet"),
  25350. default: true
  25351. },
  25352. {
  25353. name: "Megmacro",
  25354. height: math.unit(20, "miles")
  25355. },
  25356. ]
  25357. ))
  25358. characterMakers.push(() => makeCharacter(
  25359. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25360. {
  25361. front: {
  25362. height: math.unit(8 + 2 / 12, "feet"),
  25363. weight: math.unit(275, "lb"),
  25364. name: "Front",
  25365. image: {
  25366. source: "./media/characters/draganta/front.svg",
  25367. extra: 1177 / 1135,
  25368. bottom: 33.46 / 1212.1
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Normal",
  25375. height: math.unit(8 + 6 / 12, "feet"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(150, "feet")
  25381. },
  25382. {
  25383. name: "Megamacro",
  25384. height: math.unit(1000, "miles")
  25385. },
  25386. ]
  25387. ))
  25388. characterMakers.push(() => makeCharacter(
  25389. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25390. {
  25391. front: {
  25392. height: math.unit(1.72, "m"),
  25393. weight: math.unit(80, "lb"),
  25394. name: "Front",
  25395. image: {
  25396. source: "./media/characters/voski/front.svg",
  25397. extra: 2076.22 / 2022.4,
  25398. bottom: 102.7 / 2177.3866
  25399. }
  25400. },
  25401. frontFlaccid: {
  25402. height: math.unit(1.72, "m"),
  25403. weight: math.unit(80, "lb"),
  25404. name: "Front (Flaccid)",
  25405. image: {
  25406. source: "./media/characters/voski/front-flaccid.svg",
  25407. extra: 2076.22 / 2022.4,
  25408. bottom: 102.7 / 2177.3866
  25409. }
  25410. },
  25411. frontErect: {
  25412. height: math.unit(1.72, "m"),
  25413. weight: math.unit(80, "lb"),
  25414. name: "Front (Erect)",
  25415. image: {
  25416. source: "./media/characters/voski/front-erect.svg",
  25417. extra: 2076.22 / 2022.4,
  25418. bottom: 102.7 / 2177.3866
  25419. }
  25420. },
  25421. back: {
  25422. height: math.unit(1.72, "m"),
  25423. weight: math.unit(80, "lb"),
  25424. name: "Back",
  25425. image: {
  25426. source: "./media/characters/voski/back.svg",
  25427. extra: 2104 / 2051,
  25428. bottom: 10.45 / 2113.63
  25429. }
  25430. },
  25431. },
  25432. [
  25433. {
  25434. name: "Normal",
  25435. height: math.unit(1.72, "m")
  25436. },
  25437. {
  25438. name: "Macro",
  25439. height: math.unit(55, "m"),
  25440. default: true
  25441. },
  25442. {
  25443. name: "Macro+",
  25444. height: math.unit(300, "m")
  25445. },
  25446. {
  25447. name: "Macro++",
  25448. height: math.unit(700, "m")
  25449. },
  25450. {
  25451. name: "Macro+++",
  25452. height: math.unit(4500, "m")
  25453. },
  25454. {
  25455. name: "Macro++++",
  25456. height: math.unit(45, "km")
  25457. },
  25458. {
  25459. name: "Macro+++++",
  25460. height: math.unit(1220, "km")
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(2.3, "m"),
  25469. weight: math.unit(304, "kg"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/icowom-lee/front.svg",
  25473. extra: 985 / 955,
  25474. bottom: 25.4 / 1012
  25475. }
  25476. },
  25477. fronttentacles: {
  25478. height: math.unit(2.3, "m"),
  25479. weight: math.unit(304, "kg"),
  25480. name: "Front (Tentacles)",
  25481. image: {
  25482. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25483. extra: 985 / 955,
  25484. bottom: 25.4 / 1012
  25485. }
  25486. },
  25487. back: {
  25488. height: math.unit(2.3, "m"),
  25489. weight: math.unit(304, "kg"),
  25490. name: "Back",
  25491. image: {
  25492. source: "./media/characters/icowom-lee/back.svg",
  25493. extra: 975 / 954,
  25494. bottom: 9.5 / 985
  25495. }
  25496. },
  25497. backtentacles: {
  25498. height: math.unit(2.3, "m"),
  25499. weight: math.unit(304, "kg"),
  25500. name: "Back (Tentacles)",
  25501. image: {
  25502. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25503. extra: 975 / 954,
  25504. bottom: 9.5 / 985
  25505. }
  25506. },
  25507. frontDressed: {
  25508. height: math.unit(2.3, "m"),
  25509. weight: math.unit(304, "kg"),
  25510. name: "Front (Dressed)",
  25511. image: {
  25512. source: "./media/characters/icowom-lee/front-dressed.svg",
  25513. extra: 3076 / 2933,
  25514. bottom: 51.4 / 3125.1889
  25515. }
  25516. },
  25517. rump: {
  25518. height: math.unit(0.776, "meters"),
  25519. name: "Rump",
  25520. image: {
  25521. source: "./media/characters/icowom-lee/rump.svg"
  25522. }
  25523. },
  25524. genitals: {
  25525. height: math.unit(0.78, "meters"),
  25526. name: "Genitals",
  25527. image: {
  25528. source: "./media/characters/icowom-lee/genitals.svg"
  25529. }
  25530. },
  25531. },
  25532. [
  25533. {
  25534. name: "Normal",
  25535. height: math.unit(2.3, "meters"),
  25536. default: true
  25537. },
  25538. {
  25539. name: "Macro",
  25540. height: math.unit(94, "meters"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(22, "meters"),
  25550. weight: math.unit(21000, "kg"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/shock-diamond/front.svg",
  25554. extra: 2204 / 2053,
  25555. bottom: 65 / 2239.47
  25556. }
  25557. },
  25558. frontNude: {
  25559. height: math.unit(22, "meters"),
  25560. weight: math.unit(21000, "kg"),
  25561. name: "Front (Nude)",
  25562. image: {
  25563. source: "./media/characters/shock-diamond/front-nude.svg",
  25564. extra: 2514 / 2285,
  25565. bottom: 13 / 2527.56
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(3, "meters")
  25573. },
  25574. {
  25575. name: "Macro",
  25576. height: math.unit(22, "meters"),
  25577. default: true
  25578. },
  25579. ]
  25580. ))
  25581. characterMakers.push(() => makeCharacter(
  25582. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25583. {
  25584. front: {
  25585. height: math.unit(5 + 4/12, "feet"),
  25586. weight: math.unit(125, "lb"),
  25587. name: "Front",
  25588. image: {
  25589. source: "./media/characters/rory/front.svg",
  25590. extra: 1790/1681,
  25591. bottom: 66/1856
  25592. },
  25593. form: "normal",
  25594. default: true
  25595. },
  25596. back: {
  25597. height: math.unit(5 + 4/12, "feet"),
  25598. weight: math.unit(125, "lb"),
  25599. name: "Back",
  25600. image: {
  25601. source: "./media/characters/rory/back.svg",
  25602. extra: 1805/1690,
  25603. bottom: 56/1861
  25604. },
  25605. form: "normal"
  25606. },
  25607. frontDressed: {
  25608. height: math.unit(5 + 4/12, "feet"),
  25609. weight: math.unit(125, "lb"),
  25610. name: "Front (Dressed)",
  25611. image: {
  25612. source: "./media/characters/rory/front-dressed.svg",
  25613. extra: 1790/1681,
  25614. bottom: 66/1856
  25615. },
  25616. form: "normal"
  25617. },
  25618. backDressed: {
  25619. height: math.unit(5 + 4/12, "feet"),
  25620. weight: math.unit(125, "lb"),
  25621. name: "Back (Dressed)",
  25622. image: {
  25623. source: "./media/characters/rory/back-dressed.svg",
  25624. extra: 1805/1690,
  25625. bottom: 56/1861
  25626. },
  25627. form: "normal"
  25628. },
  25629. frontNsfw: {
  25630. height: math.unit(5 + 4/12, "feet"),
  25631. weight: math.unit(125, "lb"),
  25632. name: "Front (NSFW)",
  25633. image: {
  25634. source: "./media/characters/rory/front-nsfw.svg",
  25635. extra: 1790/1681,
  25636. bottom: 66/1856
  25637. },
  25638. form: "normal"
  25639. },
  25640. backNsfw: {
  25641. height: math.unit(5 + 4/12, "feet"),
  25642. weight: math.unit(125, "lb"),
  25643. name: "Back (NSFW)",
  25644. image: {
  25645. source: "./media/characters/rory/back-nsfw.svg",
  25646. extra: 1805/1690,
  25647. bottom: 56/1861
  25648. },
  25649. form: "normal"
  25650. },
  25651. dick: {
  25652. height: math.unit(0.8, "feet"),
  25653. name: "Dick",
  25654. image: {
  25655. source: "./media/characters/rory/dick.svg"
  25656. },
  25657. form: "normal"
  25658. },
  25659. thicc_front: {
  25660. height: math.unit(5 + 4/12, "feet"),
  25661. weight: math.unit(195, "lb"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/rory/thicc-front.svg",
  25665. extra: 1220/1100,
  25666. bottom: 103/1323
  25667. },
  25668. form: "thicc",
  25669. default: true
  25670. },
  25671. thicc_back: {
  25672. height: math.unit(5 + 4/12, "feet"),
  25673. weight: math.unit(195, "lb"),
  25674. name: "Back",
  25675. image: {
  25676. source: "./media/characters/rory/thicc-back.svg",
  25677. extra: 1166/1086,
  25678. bottom: 35/1201
  25679. },
  25680. form: "thicc"
  25681. },
  25682. },
  25683. [
  25684. {
  25685. name: "Micro",
  25686. height: math.unit(3, "inches"),
  25687. allForms: true
  25688. },
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(5 + 4/12, "feet"),
  25692. allForms: true,
  25693. default: true
  25694. },
  25695. {
  25696. name: "Macro",
  25697. height: math.unit(90, "feet"),
  25698. allForms: true
  25699. },
  25700. {
  25701. name: "Supercharged",
  25702. height: math.unit(270, "feet"),
  25703. allForms: true
  25704. },
  25705. ],
  25706. {
  25707. "normal": {
  25708. name: "Normal",
  25709. default: true
  25710. },
  25711. "thicc": {
  25712. name: "Thicc",
  25713. },
  25714. }
  25715. ))
  25716. characterMakers.push(() => makeCharacter(
  25717. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25718. {
  25719. front: {
  25720. height: math.unit(5 + 9 / 12, "feet"),
  25721. weight: math.unit(190, "lb"),
  25722. name: "Front",
  25723. image: {
  25724. source: "./media/characters/sprisk/front.svg",
  25725. extra: 1225 / 1180,
  25726. bottom: 42.7 / 1266.4
  25727. }
  25728. },
  25729. frontNsfw: {
  25730. height: math.unit(5 + 9 / 12, "feet"),
  25731. weight: math.unit(190, "lb"),
  25732. name: "Front (NSFW)",
  25733. image: {
  25734. source: "./media/characters/sprisk/front-nsfw.svg",
  25735. extra: 1225 / 1180,
  25736. bottom: 42.7 / 1266.4
  25737. }
  25738. },
  25739. back: {
  25740. height: math.unit(5 + 9 / 12, "feet"),
  25741. weight: math.unit(190, "lb"),
  25742. name: "Back",
  25743. image: {
  25744. source: "./media/characters/sprisk/back.svg",
  25745. extra: 1247 / 1200,
  25746. bottom: 5.6 / 1253.04
  25747. }
  25748. },
  25749. },
  25750. [
  25751. {
  25752. name: "Tiny",
  25753. height: math.unit(2, "inches")
  25754. },
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(5 + 9 / 12, "feet"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Mini Macro",
  25762. height: math.unit(18, "feet")
  25763. },
  25764. {
  25765. name: "Macro",
  25766. height: math.unit(100, "feet")
  25767. },
  25768. {
  25769. name: "MACRO",
  25770. height: math.unit(50, "miles")
  25771. },
  25772. {
  25773. name: "M A C R O",
  25774. height: math.unit(300, "miles")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25780. {
  25781. side: {
  25782. height: math.unit(15.6, "meters"),
  25783. weight: math.unit(700000, "kg"),
  25784. name: "Side",
  25785. image: {
  25786. source: "./media/characters/bunsen/side.svg",
  25787. extra: 1644 / 358
  25788. }
  25789. },
  25790. foot: {
  25791. height: math.unit(1.611 * 1644 / 358, "meter"),
  25792. name: "Foot",
  25793. image: {
  25794. source: "./media/characters/bunsen/foot.svg"
  25795. }
  25796. },
  25797. },
  25798. [
  25799. {
  25800. name: "Small",
  25801. height: math.unit(10, "feet")
  25802. },
  25803. {
  25804. name: "Normal",
  25805. height: math.unit(15.6, "meters"),
  25806. default: true
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(4 + 11 / 12, "feet"),
  25815. weight: math.unit(140, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/sesh/front.svg",
  25819. extra: 3420 / 3231,
  25820. bottom: 72 / 3949.5
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Normal",
  25827. height: math.unit(4 + 11 / 12, "feet")
  25828. },
  25829. {
  25830. name: "Grown",
  25831. height: math.unit(15, "feet"),
  25832. default: true
  25833. },
  25834. {
  25835. name: "Macro",
  25836. height: math.unit(1500, "feet")
  25837. },
  25838. {
  25839. name: "Megamacro",
  25840. height: math.unit(30, "miles")
  25841. },
  25842. {
  25843. name: "Continental",
  25844. height: math.unit(3000, "miles")
  25845. },
  25846. {
  25847. name: "Gravity Mass",
  25848. height: math.unit(300000, "miles")
  25849. },
  25850. {
  25851. name: "Planet Buster",
  25852. height: math.unit(30000000, "miles")
  25853. },
  25854. {
  25855. name: "Big",
  25856. height: math.unit(3000000000, "miles")
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(9, "feet"),
  25865. weight: math.unit(350, "lb"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/pepper/front.svg",
  25869. extra: 1448 / 1312,
  25870. bottom: 9.4 / 1457.88
  25871. }
  25872. },
  25873. back: {
  25874. height: math.unit(9, "feet"),
  25875. weight: math.unit(350, "lb"),
  25876. name: "Back",
  25877. image: {
  25878. source: "./media/characters/pepper/back.svg",
  25879. extra: 1423 / 1300,
  25880. bottom: 4.6 / 1429
  25881. }
  25882. },
  25883. maw: {
  25884. height: math.unit(0.932, "feet"),
  25885. name: "Maw",
  25886. image: {
  25887. source: "./media/characters/pepper/maw.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Normal",
  25894. height: math.unit(9, "feet"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(6, "feet"),
  25904. weight: math.unit(150, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/maelstrom/front.svg",
  25908. extra: 2100 / 1883,
  25909. bottom: 94 / 2196.7
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Less Kaiju",
  25916. height: math.unit(200, "feet")
  25917. },
  25918. {
  25919. name: "Kaiju",
  25920. height: math.unit(400, "feet"),
  25921. default: true
  25922. },
  25923. {
  25924. name: "Kaiju-er",
  25925. height: math.unit(600, "feet")
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25931. {
  25932. front: {
  25933. height: math.unit(6 + 5 / 12, "feet"),
  25934. weight: math.unit(180, "lb"),
  25935. name: "Front",
  25936. image: {
  25937. source: "./media/characters/lexir/front.svg",
  25938. extra: 180 / 172,
  25939. bottom: 12 / 192
  25940. }
  25941. },
  25942. back: {
  25943. height: math.unit(6 + 5 / 12, "feet"),
  25944. weight: math.unit(180, "lb"),
  25945. name: "Back",
  25946. image: {
  25947. source: "./media/characters/lexir/back.svg",
  25948. extra: 1273/1201,
  25949. bottom: 39/1312
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Very Smal",
  25956. height: math.unit(1, "nm")
  25957. },
  25958. {
  25959. name: "Normal",
  25960. height: math.unit(6 + 5 / 12, "feet"),
  25961. default: true
  25962. },
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(1, "mile")
  25966. },
  25967. {
  25968. name: "Megamacro",
  25969. height: math.unit(50, "miles")
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(1.5, "meters"),
  25978. weight: math.unit(100, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/maksio/front.svg",
  25982. extra: 1549 / 1531,
  25983. bottom: 123.7 / 1674.5429
  25984. }
  25985. },
  25986. back: {
  25987. height: math.unit(1.5, "meters"),
  25988. weight: math.unit(100, "lb"),
  25989. name: "Back",
  25990. image: {
  25991. source: "./media/characters/maksio/back.svg",
  25992. extra: 1541 / 1509,
  25993. bottom: 97 / 1639
  25994. }
  25995. },
  25996. hand: {
  25997. height: math.unit(0.621, "feet"),
  25998. name: "Hand",
  25999. image: {
  26000. source: "./media/characters/maksio/hand.svg"
  26001. }
  26002. },
  26003. foot: {
  26004. height: math.unit(1.611, "feet"),
  26005. name: "Foot",
  26006. image: {
  26007. source: "./media/characters/maksio/foot.svg"
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Shrunken",
  26014. height: math.unit(10, "cm")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(150, "cm"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(100, "feet"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/erza-bear/front.svg",
  26031. extra: 2449 / 2390,
  26032. bottom: 46 / 2494
  26033. }
  26034. },
  26035. back: {
  26036. height: math.unit(100, "feet"),
  26037. name: "Back",
  26038. image: {
  26039. source: "./media/characters/erza-bear/back.svg",
  26040. extra: 2489 / 2430,
  26041. bottom: 85.4 / 2480
  26042. }
  26043. },
  26044. tail: {
  26045. height: math.unit(42, "feet"),
  26046. name: "Tail",
  26047. image: {
  26048. source: "./media/characters/erza-bear/tail.svg"
  26049. }
  26050. },
  26051. tongue: {
  26052. height: math.unit(8, "feet"),
  26053. name: "Tongue",
  26054. image: {
  26055. source: "./media/characters/erza-bear/tongue.svg"
  26056. }
  26057. },
  26058. dick: {
  26059. height: math.unit(10.5, "feet"),
  26060. name: "Dick",
  26061. image: {
  26062. source: "./media/characters/erza-bear/dick.svg"
  26063. }
  26064. },
  26065. dickVertical: {
  26066. height: math.unit(16.9, "feet"),
  26067. name: "Dick (Vertical)",
  26068. image: {
  26069. source: "./media/characters/erza-bear/dick-vertical.svg"
  26070. }
  26071. },
  26072. },
  26073. [
  26074. {
  26075. name: "Macro",
  26076. height: math.unit(100, "feet"),
  26077. default: true
  26078. },
  26079. ]
  26080. ))
  26081. characterMakers.push(() => makeCharacter(
  26082. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26083. {
  26084. front: {
  26085. height: math.unit(172, "cm"),
  26086. weight: math.unit(73, "kg"),
  26087. name: "Front",
  26088. image: {
  26089. source: "./media/characters/violet-flor/front.svg",
  26090. extra: 1474/1379,
  26091. bottom: 113/1587
  26092. }
  26093. },
  26094. back: {
  26095. height: math.unit(180, "cm"),
  26096. weight: math.unit(73, "kg"),
  26097. name: "Back",
  26098. image: {
  26099. source: "./media/characters/violet-flor/back.svg",
  26100. extra: 1660/1567,
  26101. bottom: 49/1709
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Normal",
  26108. height: math.unit(172, "cm"),
  26109. default: true
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(6, "feet"),
  26118. weight: math.unit(220, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/lynn-rhea/front.svg",
  26122. extra: 310 / 273
  26123. }
  26124. },
  26125. back: {
  26126. height: math.unit(6, "feet"),
  26127. weight: math.unit(220, "lb"),
  26128. name: "Back",
  26129. image: {
  26130. source: "./media/characters/lynn-rhea/back.svg",
  26131. extra: 310 / 273
  26132. }
  26133. },
  26134. dicks: {
  26135. height: math.unit(0.9, "feet"),
  26136. name: "Dicks",
  26137. image: {
  26138. source: "./media/characters/lynn-rhea/dicks.svg"
  26139. }
  26140. },
  26141. slit: {
  26142. height: math.unit(0.4, "feet"),
  26143. name: "Slit",
  26144. image: {
  26145. source: "./media/characters/lynn-rhea/slit.svg"
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Micro",
  26152. height: math.unit(1, "inch")
  26153. },
  26154. {
  26155. name: "Macro",
  26156. height: math.unit(60, "feet"),
  26157. default: true
  26158. },
  26159. {
  26160. name: "Megamacro",
  26161. height: math.unit(2, "miles")
  26162. },
  26163. {
  26164. name: "Gigamacro",
  26165. height: math.unit(3, "earths")
  26166. },
  26167. {
  26168. name: "Galactic",
  26169. height: math.unit(0.8, "galaxies")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26175. {
  26176. front: {
  26177. height: math.unit(1600, "feet"),
  26178. weight: math.unit(85758785169, "kg"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/valathos/front.svg",
  26182. extra: 1451 / 1339
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Macro",
  26189. height: math.unit(1600, "feet"),
  26190. default: true
  26191. },
  26192. ]
  26193. ))
  26194. characterMakers.push(() => makeCharacter(
  26195. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26196. {
  26197. front: {
  26198. height: math.unit(7 + 5 / 12, "feet"),
  26199. weight: math.unit(300, "lb"),
  26200. name: "Front",
  26201. image: {
  26202. source: "./media/characters/azula/front.svg",
  26203. extra: 3208 / 2880,
  26204. bottom: 80.2 / 3277
  26205. }
  26206. },
  26207. back: {
  26208. height: math.unit(7 + 5 / 12, "feet"),
  26209. weight: math.unit(300, "lb"),
  26210. name: "Back",
  26211. image: {
  26212. source: "./media/characters/azula/back.svg",
  26213. extra: 3169 / 2822,
  26214. bottom: 150.6 / 3321
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(7 + 5 / 12, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Big",
  26226. height: math.unit(20, "feet")
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(5 + 1 / 12, "feet"),
  26235. weight: math.unit(110, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/rupert/front.svg",
  26239. extra: 1549 / 1495,
  26240. bottom: 54.2 / 1604.4
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(5 + 1 / 12, "feet"),
  26248. default: true
  26249. },
  26250. ]
  26251. ))
  26252. characterMakers.push(() => makeCharacter(
  26253. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26254. {
  26255. front: {
  26256. height: math.unit(8 + 4 / 12, "feet"),
  26257. weight: math.unit(350, "lb"),
  26258. name: "Front",
  26259. image: {
  26260. source: "./media/characters/sheera-castellar/front.svg",
  26261. extra: 1957 / 1894,
  26262. bottom: 26.97 / 1975.017
  26263. }
  26264. },
  26265. side: {
  26266. height: math.unit(8 + 4 / 12, "feet"),
  26267. weight: math.unit(350, "lb"),
  26268. name: "Side",
  26269. image: {
  26270. source: "./media/characters/sheera-castellar/side.svg",
  26271. extra: 1957 / 1894
  26272. }
  26273. },
  26274. back: {
  26275. height: math.unit(8 + 4 / 12, "feet"),
  26276. weight: math.unit(350, "lb"),
  26277. name: "Back",
  26278. image: {
  26279. source: "./media/characters/sheera-castellar/back.svg",
  26280. extra: 1957 / 1894
  26281. }
  26282. },
  26283. angled: {
  26284. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26285. weight: math.unit(350, "lb"),
  26286. name: "Angled",
  26287. image: {
  26288. source: "./media/characters/sheera-castellar/angled.svg",
  26289. extra: 1807 / 1707,
  26290. bottom: 68 / 1875
  26291. }
  26292. },
  26293. genitals: {
  26294. height: math.unit(2.2, "feet"),
  26295. name: "Genitals",
  26296. image: {
  26297. source: "./media/characters/sheera-castellar/genitals.svg"
  26298. }
  26299. },
  26300. taur: {
  26301. height: math.unit(10 + 6/12, "feet"),
  26302. name: "Taur",
  26303. image: {
  26304. source: "./media/characters/sheera-castellar/taur.svg",
  26305. extra: 2017/1909,
  26306. bottom: 185/2202
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(8 + 4 / 12, "feet")
  26314. },
  26315. {
  26316. name: "Macro",
  26317. height: math.unit(150, "feet"),
  26318. default: true
  26319. },
  26320. {
  26321. name: "Macro+",
  26322. height: math.unit(800, "feet")
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(6, "feet"),
  26331. weight: math.unit(150, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/jaipur/front.svg",
  26335. extra: 3860 / 3731,
  26336. bottom: 287 / 4140
  26337. }
  26338. },
  26339. back: {
  26340. height: math.unit(6, "feet"),
  26341. weight: math.unit(150, "lb"),
  26342. name: "Back",
  26343. image: {
  26344. source: "./media/characters/jaipur/back.svg",
  26345. extra: 1637/1561,
  26346. bottom: 154/1791
  26347. }
  26348. },
  26349. },
  26350. [
  26351. {
  26352. name: "Normal",
  26353. height: math.unit(1.85, "meters"),
  26354. default: true
  26355. },
  26356. {
  26357. name: "Macro",
  26358. height: math.unit(150, "meters")
  26359. },
  26360. {
  26361. name: "Macro+",
  26362. height: math.unit(0.5, "miles")
  26363. },
  26364. {
  26365. name: "Macro++",
  26366. height: math.unit(2.5, "miles")
  26367. },
  26368. {
  26369. name: "Macro+++",
  26370. height: math.unit(12, "miles")
  26371. },
  26372. {
  26373. name: "Macro++++",
  26374. height: math.unit(120, "miles")
  26375. },
  26376. {
  26377. name: "Macro+++++",
  26378. height: math.unit(1200, "miles")
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26384. {
  26385. front: {
  26386. height: math.unit(6, "feet"),
  26387. weight: math.unit(150, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/sheila-wolf/front.svg",
  26391. extra: 1931 / 1808,
  26392. bottom: 29.5 / 1960
  26393. }
  26394. },
  26395. dick: {
  26396. height: math.unit(1.464, "feet"),
  26397. name: "Dick",
  26398. image: {
  26399. source: "./media/characters/sheila-wolf/dick.svg"
  26400. }
  26401. },
  26402. muzzle: {
  26403. height: math.unit(0.513, "feet"),
  26404. name: "Muzzle",
  26405. image: {
  26406. source: "./media/characters/sheila-wolf/muzzle.svg"
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Macro",
  26413. height: math.unit(70, "feet"),
  26414. default: true
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(32, "meters"),
  26423. weight: math.unit(300000, "kg"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/almor/front.svg",
  26427. extra: 1408 / 1322,
  26428. bottom: 94.6 / 1506.5
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(32, "meters"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(7, "feet"),
  26445. weight: math.unit(200, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/silver/front.svg",
  26449. extra: 472.1 / 450.5,
  26450. bottom: 26.5 / 499.424
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(7, "feet"),
  26458. default: true
  26459. },
  26460. {
  26461. name: "Macro",
  26462. height: math.unit(800, "feet")
  26463. },
  26464. {
  26465. name: "Megamacro",
  26466. height: math.unit(250, "miles")
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(6, "feet"),
  26475. weight: math.unit(150, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/pliskin/front.svg",
  26479. extra: 1469 / 1359,
  26480. bottom: 70 / 1540
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Micro",
  26487. height: math.unit(3, "inches")
  26488. },
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(5 + 11 / 12, "feet"),
  26492. default: true
  26493. },
  26494. {
  26495. name: "Macro",
  26496. height: math.unit(120, "feet")
  26497. },
  26498. ]
  26499. ))
  26500. characterMakers.push(() => makeCharacter(
  26501. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26502. {
  26503. front: {
  26504. height: math.unit(6, "feet"),
  26505. weight: math.unit(150, "lb"),
  26506. name: "Front",
  26507. image: {
  26508. source: "./media/characters/sammy/front.svg",
  26509. extra: 1193 / 1089,
  26510. bottom: 30.5 / 1226
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Macro",
  26517. height: math.unit(1700, "feet"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "Examacro",
  26522. height: math.unit(2.5e9, "lightyears")
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26528. {
  26529. front: {
  26530. height: math.unit(21, "meters"),
  26531. weight: math.unit(12, "tonnes"),
  26532. name: "Front",
  26533. image: {
  26534. source: "./media/characters/kuru/front.svg",
  26535. extra: 4301 / 3785,
  26536. bottom: 371.3 / 4691
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Macro",
  26543. height: math.unit(21, "meters"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(23, "meters"),
  26553. weight: math.unit(12.2, "tonnes"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/rakka/front.svg",
  26557. extra: 4670 / 4169,
  26558. bottom: 301 / 4968.7
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(23, "meters"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(6, "feet"),
  26575. weight: math.unit(150, "lb"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/rhys-feline/front.svg",
  26579. extra: 2488 / 2308,
  26580. bottom: 35.67 / 2519.19
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Really Small",
  26587. height: math.unit(1, "nm")
  26588. },
  26589. {
  26590. name: "Micro",
  26591. height: math.unit(4, "inches")
  26592. },
  26593. {
  26594. name: "Normal",
  26595. height: math.unit(4 + 10 / 12, "feet"),
  26596. default: true
  26597. },
  26598. {
  26599. name: "Macro",
  26600. height: math.unit(100, "feet")
  26601. },
  26602. {
  26603. name: "Megamacto",
  26604. height: math.unit(50, "miles")
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26610. {
  26611. side: {
  26612. height: math.unit(30, "feet"),
  26613. weight: math.unit(35000, "kg"),
  26614. name: "Side",
  26615. image: {
  26616. source: "./media/characters/alydar/side.svg",
  26617. extra: 234 / 222,
  26618. bottom: 6.5 / 241
  26619. }
  26620. },
  26621. front: {
  26622. height: math.unit(30, "feet"),
  26623. weight: math.unit(35000, "kg"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/alydar/front.svg",
  26627. extra: 223.37 / 210.2,
  26628. bottom: 22.3 / 246.76
  26629. }
  26630. },
  26631. top: {
  26632. height: math.unit(64.54, "feet"),
  26633. weight: math.unit(35000, "kg"),
  26634. name: "Top",
  26635. image: {
  26636. source: "./media/characters/alydar/top.svg"
  26637. }
  26638. },
  26639. anthro: {
  26640. height: math.unit(30, "feet"),
  26641. weight: math.unit(9000, "kg"),
  26642. name: "Anthro",
  26643. image: {
  26644. source: "./media/characters/alydar/anthro.svg",
  26645. extra: 432 / 421,
  26646. bottom: 7.18 / 440
  26647. }
  26648. },
  26649. maw: {
  26650. height: math.unit(11.693, "feet"),
  26651. name: "Maw",
  26652. image: {
  26653. source: "./media/characters/alydar/maw.svg"
  26654. }
  26655. },
  26656. head: {
  26657. height: math.unit(11.693, "feet"),
  26658. name: "Head",
  26659. image: {
  26660. source: "./media/characters/alydar/head.svg"
  26661. }
  26662. },
  26663. headAlt: {
  26664. height: math.unit(12.861, "feet"),
  26665. name: "Head (Alt)",
  26666. image: {
  26667. source: "./media/characters/alydar/head-alt.svg"
  26668. }
  26669. },
  26670. wing: {
  26671. height: math.unit(20.712, "feet"),
  26672. name: "Wing",
  26673. image: {
  26674. source: "./media/characters/alydar/wing.svg"
  26675. }
  26676. },
  26677. wingFeather: {
  26678. height: math.unit(9.662, "feet"),
  26679. name: "Wing Feather",
  26680. image: {
  26681. source: "./media/characters/alydar/wing-feather.svg"
  26682. }
  26683. },
  26684. countourFeather: {
  26685. height: math.unit(4.154, "feet"),
  26686. name: "Contour Feather",
  26687. image: {
  26688. source: "./media/characters/alydar/contour-feather.svg"
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Diplomatic",
  26695. height: math.unit(13, "feet"),
  26696. default: true
  26697. },
  26698. {
  26699. name: "Small",
  26700. height: math.unit(30, "feet")
  26701. },
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(95, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Large",
  26709. height: math.unit(285, "feet")
  26710. },
  26711. {
  26712. name: "Incomprehensible",
  26713. height: math.unit(450, "megameters")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26719. {
  26720. side: {
  26721. height: math.unit(11, "feet"),
  26722. weight: math.unit(1750, "kg"),
  26723. name: "Side",
  26724. image: {
  26725. source: "./media/characters/selicia/side.svg",
  26726. extra: 440 / 396,
  26727. bottom: 24.8 / 465.979
  26728. }
  26729. },
  26730. maw: {
  26731. height: math.unit(4.665, "feet"),
  26732. name: "Maw",
  26733. image: {
  26734. source: "./media/characters/selicia/maw.svg"
  26735. }
  26736. },
  26737. },
  26738. [
  26739. {
  26740. name: "Normal",
  26741. height: math.unit(11, "feet"),
  26742. default: true
  26743. },
  26744. ]
  26745. ))
  26746. characterMakers.push(() => makeCharacter(
  26747. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26748. {
  26749. side: {
  26750. height: math.unit(2 + 6 / 12, "feet"),
  26751. weight: math.unit(30, "lb"),
  26752. name: "Side",
  26753. image: {
  26754. source: "./media/characters/layla/side.svg",
  26755. extra: 244 / 188,
  26756. bottom: 18.2 / 262.1
  26757. }
  26758. },
  26759. back: {
  26760. height: math.unit(2 + 6 / 12, "feet"),
  26761. weight: math.unit(30, "lb"),
  26762. name: "Back",
  26763. image: {
  26764. source: "./media/characters/layla/back.svg",
  26765. extra: 308 / 241.5,
  26766. bottom: 8.9 / 316.8
  26767. }
  26768. },
  26769. cumming: {
  26770. height: math.unit(2 + 6 / 12, "feet"),
  26771. weight: math.unit(30, "lb"),
  26772. name: "Cumming",
  26773. image: {
  26774. source: "./media/characters/layla/cumming.svg",
  26775. extra: 342 / 279,
  26776. bottom: 595 / 938
  26777. }
  26778. },
  26779. dickFlaccid: {
  26780. height: math.unit(2.595, "feet"),
  26781. name: "Flaccid Genitals",
  26782. image: {
  26783. source: "./media/characters/layla/dick-flaccid.svg"
  26784. }
  26785. },
  26786. dickErect: {
  26787. height: math.unit(2.359, "feet"),
  26788. name: "Erect Genitals",
  26789. image: {
  26790. source: "./media/characters/layla/dick-erect.svg"
  26791. }
  26792. },
  26793. dragon: {
  26794. height: math.unit(40, "feet"),
  26795. name: "Dragon",
  26796. image: {
  26797. source: "./media/characters/layla/dragon.svg",
  26798. extra: 610/535,
  26799. bottom: 367/977
  26800. }
  26801. },
  26802. taur: {
  26803. height: math.unit(30, "feet"),
  26804. name: "Taur",
  26805. image: {
  26806. source: "./media/characters/layla/taur.svg",
  26807. extra: 1268/1199,
  26808. bottom: 112/1380
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Micro",
  26815. height: math.unit(1, "inch")
  26816. },
  26817. {
  26818. name: "Small",
  26819. height: math.unit(1, "foot")
  26820. },
  26821. {
  26822. name: "Normal",
  26823. height: math.unit(2 + 6 / 12, "feet"),
  26824. default: true
  26825. },
  26826. {
  26827. name: "Macro",
  26828. height: math.unit(200, "feet")
  26829. },
  26830. {
  26831. name: "Megamacro",
  26832. height: math.unit(1000, "miles")
  26833. },
  26834. {
  26835. name: "Planetary",
  26836. height: math.unit(8000, "miles")
  26837. },
  26838. {
  26839. name: "True Layla",
  26840. height: math.unit(200000 * 7, "multiverses")
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26846. {
  26847. back: {
  26848. height: math.unit(10.5, "feet"),
  26849. weight: math.unit(800, "lb"),
  26850. name: "Back",
  26851. image: {
  26852. source: "./media/characters/knox/back.svg",
  26853. extra: 1486 / 1089,
  26854. bottom: 107 / 1601.4
  26855. }
  26856. },
  26857. side: {
  26858. height: math.unit(10.5, "feet"),
  26859. weight: math.unit(800, "lb"),
  26860. name: "Side",
  26861. image: {
  26862. source: "./media/characters/knox/side.svg",
  26863. extra: 244 / 218,
  26864. bottom: 14 / 260
  26865. }
  26866. },
  26867. },
  26868. [
  26869. {
  26870. name: "Compact",
  26871. height: math.unit(10.5, "feet"),
  26872. default: true
  26873. },
  26874. {
  26875. name: "Dynamax",
  26876. height: math.unit(210, "feet")
  26877. },
  26878. {
  26879. name: "Full Macro",
  26880. height: math.unit(850, "feet")
  26881. },
  26882. ]
  26883. ))
  26884. characterMakers.push(() => makeCharacter(
  26885. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26886. {
  26887. front: {
  26888. height: math.unit(28, "feet"),
  26889. weight: math.unit(10500, "lb"),
  26890. name: "Front",
  26891. image: {
  26892. source: "./media/characters/kayda/front.svg",
  26893. extra: 1536 / 1428,
  26894. bottom: 68.7 / 1603
  26895. }
  26896. },
  26897. back: {
  26898. height: math.unit(28, "feet"),
  26899. weight: math.unit(10500, "lb"),
  26900. name: "Back",
  26901. image: {
  26902. source: "./media/characters/kayda/back.svg",
  26903. extra: 1557 / 1464,
  26904. bottom: 39.5 / 1597.49
  26905. }
  26906. },
  26907. dick: {
  26908. height: math.unit(3.858, "feet"),
  26909. name: "Dick",
  26910. image: {
  26911. source: "./media/characters/kayda/dick.svg"
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Macro",
  26918. height: math.unit(28, "feet"),
  26919. default: true
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(10 + 11 / 12, "feet"),
  26928. weight: math.unit(1400, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/brian/front.svg",
  26932. extra: 737 / 692,
  26933. bottom: 55.4 / 785
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Normal",
  26940. height: math.unit(10 + 11 / 12, "feet"),
  26941. default: true
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(5 + 8 / 12, "feet"),
  26950. weight: math.unit(140, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/khemri/front.svg",
  26954. extra: 4780 / 4059,
  26955. bottom: 80.1 / 4859.25
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Micro",
  26962. height: math.unit(6, "inches")
  26963. },
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(5 + 8 / 12, "feet"),
  26967. default: true
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26973. {
  26974. front: {
  26975. height: math.unit(13, "feet"),
  26976. weight: math.unit(1700, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/felix-braveheart/front.svg",
  26980. extra: 1222 / 1157,
  26981. bottom: 53.2 / 1280
  26982. }
  26983. },
  26984. back: {
  26985. height: math.unit(13, "feet"),
  26986. weight: math.unit(1700, "lb"),
  26987. name: "Back",
  26988. image: {
  26989. source: "./media/characters/felix-braveheart/back.svg",
  26990. extra: 1277 / 1203,
  26991. bottom: 50.2 / 1327
  26992. }
  26993. },
  26994. feral: {
  26995. height: math.unit(6, "feet"),
  26996. weight: math.unit(400, "lb"),
  26997. name: "Feral",
  26998. image: {
  26999. source: "./media/characters/felix-braveheart/feral.svg",
  27000. extra: 682 / 625,
  27001. bottom: 6.9 / 688
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(13, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27015. {
  27016. side: {
  27017. height: math.unit(5 + 11 / 12, "feet"),
  27018. weight: math.unit(1400, "lb"),
  27019. name: "Side",
  27020. image: {
  27021. source: "./media/characters/shadow-blade/side.svg",
  27022. extra: 1726 / 1267,
  27023. bottom: 58.4 / 1785
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(5 + 11 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(1 + 6 / 12, "feet"),
  27040. weight: math.unit(25, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/karla-halldor/front.svg",
  27044. extra: 1459 / 1383,
  27045. bottom: 12 / 1472
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(1 + 6 / 12, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27059. {
  27060. front: {
  27061. height: math.unit(6 + 2 / 12, "feet"),
  27062. weight: math.unit(160, "lb"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/ariam/front.svg",
  27066. extra: 1073/976,
  27067. bottom: 52/1125
  27068. }
  27069. },
  27070. back: {
  27071. height: math.unit(6 + 2/12, "feet"),
  27072. weight: math.unit(160, "lb"),
  27073. name: "Back",
  27074. image: {
  27075. source: "./media/characters/ariam/back.svg",
  27076. extra: 1103/1023,
  27077. bottom: 9/1112
  27078. }
  27079. },
  27080. dressed: {
  27081. height: math.unit(6 + 2/12, "feet"),
  27082. weight: math.unit(160, "lb"),
  27083. name: "Dressed",
  27084. image: {
  27085. source: "./media/characters/ariam/dressed.svg",
  27086. extra: 1099/1009,
  27087. bottom: 25/1124
  27088. }
  27089. },
  27090. squatting: {
  27091. height: math.unit(4.1, "feet"),
  27092. weight: math.unit(160, "lb"),
  27093. name: "Squatting",
  27094. image: {
  27095. source: "./media/characters/ariam/squatting.svg",
  27096. extra: 2617 / 2112,
  27097. bottom: 61.2 / 2681,
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(6 + 2 / 12, "feet"),
  27105. default: true
  27106. },
  27107. {
  27108. name: "Normal+",
  27109. height: math.unit(4, "meters")
  27110. },
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(50, "meters")
  27114. },
  27115. {
  27116. name: "Macro+",
  27117. height: math.unit(100, "meters")
  27118. },
  27119. {
  27120. name: "Megamacro",
  27121. height: math.unit(20, "km")
  27122. },
  27123. {
  27124. name: "Caretaker",
  27125. height: math.unit(444, "megameters")
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(1.67, "meters"),
  27134. weight: math.unit(140, "lb"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27138. extra: 438 / 410,
  27139. bottom: 0.75 / 439
  27140. }
  27141. },
  27142. },
  27143. [
  27144. {
  27145. name: "Shrunken",
  27146. height: math.unit(7.6, "cm")
  27147. },
  27148. {
  27149. name: "Human Scale",
  27150. height: math.unit(1.67, "meters")
  27151. },
  27152. {
  27153. name: "Wolxi Scale",
  27154. height: math.unit(36.7, "meters"),
  27155. default: true
  27156. },
  27157. ]
  27158. ))
  27159. characterMakers.push(() => makeCharacter(
  27160. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27161. {
  27162. front: {
  27163. height: math.unit(1.73, "meters"),
  27164. weight: math.unit(240, "lb"),
  27165. name: "Front",
  27166. image: {
  27167. source: "./media/characters/izue-two-mothers/front.svg",
  27168. extra: 469 / 437,
  27169. bottom: 1.24 / 470.6
  27170. }
  27171. },
  27172. },
  27173. [
  27174. {
  27175. name: "Shrunken",
  27176. height: math.unit(7.86, "cm")
  27177. },
  27178. {
  27179. name: "Human Scale",
  27180. height: math.unit(1.73, "meters")
  27181. },
  27182. {
  27183. name: "Wolxi Scale",
  27184. height: math.unit(38, "meters"),
  27185. default: true
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(1.55, "meters"),
  27194. weight: math.unit(120, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/teeku-love-shack/front.svg",
  27198. extra: 387 / 362,
  27199. bottom: 1.51 / 388
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Shrunken",
  27206. height: math.unit(7, "cm")
  27207. },
  27208. {
  27209. name: "Human Scale",
  27210. height: math.unit(1.55, "meters")
  27211. },
  27212. {
  27213. name: "Wolxi Scale",
  27214. height: math.unit(34.1, "meters"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(1.83, "meters"),
  27224. weight: math.unit(135, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/dejma-the-red/front.svg",
  27228. extra: 480 / 458,
  27229. bottom: 1.8 / 482
  27230. }
  27231. },
  27232. },
  27233. [
  27234. {
  27235. name: "Shrunken",
  27236. height: math.unit(8.3, "cm")
  27237. },
  27238. {
  27239. name: "Human Scale",
  27240. height: math.unit(1.83, "meters")
  27241. },
  27242. {
  27243. name: "Wolxi Scale",
  27244. height: math.unit(40, "meters"),
  27245. default: true
  27246. },
  27247. ]
  27248. ))
  27249. characterMakers.push(() => makeCharacter(
  27250. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27251. {
  27252. front: {
  27253. height: math.unit(1.78, "meters"),
  27254. weight: math.unit(65, "kg"),
  27255. name: "Front",
  27256. image: {
  27257. source: "./media/characters/aki/front.svg",
  27258. extra: 452 / 415
  27259. }
  27260. },
  27261. frontNsfw: {
  27262. height: math.unit(1.78, "meters"),
  27263. weight: math.unit(65, "kg"),
  27264. name: "Front (NSFW)",
  27265. image: {
  27266. source: "./media/characters/aki/front-nsfw.svg",
  27267. extra: 452 / 415
  27268. }
  27269. },
  27270. back: {
  27271. height: math.unit(1.78, "meters"),
  27272. weight: math.unit(65, "kg"),
  27273. name: "Back",
  27274. image: {
  27275. source: "./media/characters/aki/back.svg",
  27276. extra: 452 / 415
  27277. }
  27278. },
  27279. rump: {
  27280. height: math.unit(2.05, "feet"),
  27281. name: "Rump",
  27282. image: {
  27283. source: "./media/characters/aki/rump.svg"
  27284. }
  27285. },
  27286. dick: {
  27287. height: math.unit(0.95, "feet"),
  27288. name: "Dick",
  27289. image: {
  27290. source: "./media/characters/aki/dick.svg"
  27291. }
  27292. },
  27293. },
  27294. [
  27295. {
  27296. name: "Micro",
  27297. height: math.unit(15, "cm")
  27298. },
  27299. {
  27300. name: "Normal",
  27301. height: math.unit(178, "cm"),
  27302. default: true
  27303. },
  27304. {
  27305. name: "Macro",
  27306. height: math.unit(214, "m")
  27307. },
  27308. {
  27309. name: "Macro+",
  27310. height: math.unit(534, "m")
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(5 + 5 / 12, "feet"),
  27319. weight: math.unit(120, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/ari/front.svg",
  27323. extra: 1550/1471,
  27324. bottom: 39/1589
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(5 + 5 / 12, "feet")
  27332. },
  27333. {
  27334. name: "Macro",
  27335. height: math.unit(100, "feet"),
  27336. default: true
  27337. },
  27338. {
  27339. name: "Megamacro",
  27340. height: math.unit(100, "miles")
  27341. },
  27342. {
  27343. name: "Gigamacro",
  27344. height: math.unit(80000, "miles")
  27345. },
  27346. ]
  27347. ))
  27348. characterMakers.push(() => makeCharacter(
  27349. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27350. {
  27351. side: {
  27352. height: math.unit(9, "feet"),
  27353. weight: math.unit(400, "kg"),
  27354. name: "Side",
  27355. image: {
  27356. source: "./media/characters/bolt/side.svg",
  27357. extra: 1126 / 896,
  27358. bottom: 60 / 1187.3,
  27359. }
  27360. },
  27361. },
  27362. [
  27363. {
  27364. name: "Micro",
  27365. height: math.unit(5, "inches")
  27366. },
  27367. {
  27368. name: "Normal",
  27369. height: math.unit(9, "feet"),
  27370. default: true
  27371. },
  27372. {
  27373. name: "Macro",
  27374. height: math.unit(700, "feet")
  27375. },
  27376. {
  27377. name: "Max Size",
  27378. height: math.unit(1.52e22, "yottameters")
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(4.3, "meters"),
  27387. weight: math.unit(3, "tons"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/draekon-sylviar/front.svg",
  27391. extra: 2072/1512,
  27392. bottom: 74/2146
  27393. }
  27394. },
  27395. back: {
  27396. height: math.unit(4.3, "meters"),
  27397. weight: math.unit(3, "tons"),
  27398. name: "Back",
  27399. image: {
  27400. source: "./media/characters/draekon-sylviar/back.svg",
  27401. extra: 1639/1483,
  27402. bottom: 41/1680
  27403. }
  27404. },
  27405. feral: {
  27406. height: math.unit(1.15, "meters"),
  27407. weight: math.unit(3, "tons"),
  27408. name: "Feral",
  27409. image: {
  27410. source: "./media/characters/draekon-sylviar/feral.svg",
  27411. extra: 1033/395,
  27412. bottom: 130/1163
  27413. }
  27414. },
  27415. maw: {
  27416. height: math.unit(1.3, "meters"),
  27417. name: "Maw",
  27418. image: {
  27419. source: "./media/characters/draekon-sylviar/maw.svg"
  27420. }
  27421. },
  27422. mawSeparated: {
  27423. height: math.unit(1.53, "meters"),
  27424. name: "Separated Maw",
  27425. image: {
  27426. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27427. }
  27428. },
  27429. tail: {
  27430. height: math.unit(1.15, "meters"),
  27431. name: "Tail",
  27432. image: {
  27433. source: "./media/characters/draekon-sylviar/tail.svg"
  27434. }
  27435. },
  27436. tailDick: {
  27437. height: math.unit(1.15, "meters"),
  27438. name: "Tail (Dick)",
  27439. image: {
  27440. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27441. }
  27442. },
  27443. tailDickSeparated: {
  27444. height: math.unit(1.19, "meters"),
  27445. name: "Tail (Separated Dick)",
  27446. image: {
  27447. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27448. }
  27449. },
  27450. slit: {
  27451. height: math.unit(1, "meters"),
  27452. name: "Slit",
  27453. image: {
  27454. source: "./media/characters/draekon-sylviar/slit.svg"
  27455. }
  27456. },
  27457. dick: {
  27458. height: math.unit(1.15, "meters"),
  27459. name: "Dick",
  27460. image: {
  27461. source: "./media/characters/draekon-sylviar/dick.svg"
  27462. }
  27463. },
  27464. dickSeparated: {
  27465. height: math.unit(1.1, "meters"),
  27466. name: "Separated Dick",
  27467. image: {
  27468. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27469. }
  27470. },
  27471. sheath: {
  27472. height: math.unit(1.15, "meters"),
  27473. name: "Sheath",
  27474. image: {
  27475. source: "./media/characters/draekon-sylviar/sheath.svg"
  27476. }
  27477. },
  27478. },
  27479. [
  27480. {
  27481. name: "Small",
  27482. height: math.unit(4.53 / 2, "meters"),
  27483. default: true
  27484. },
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(4.53, "meters"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Large",
  27492. height: math.unit(4.53 * 2, "meters"),
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(6 + 2 / 12, "feet"),
  27501. weight: math.unit(180, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/brawler/front.svg",
  27505. extra: 3301 / 3027,
  27506. bottom: 138 / 3439
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(6 + 2 / 12, "feet"),
  27514. default: true
  27515. },
  27516. ]
  27517. ))
  27518. characterMakers.push(() => makeCharacter(
  27519. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27520. {
  27521. front: {
  27522. height: math.unit(11, "feet"),
  27523. weight: math.unit(1000, "lb"),
  27524. name: "Front",
  27525. image: {
  27526. source: "./media/characters/alex/front.svg",
  27527. bottom: 44.5 / 620
  27528. }
  27529. },
  27530. },
  27531. [
  27532. {
  27533. name: "Micro",
  27534. height: math.unit(5, "inches")
  27535. },
  27536. {
  27537. name: "Normal",
  27538. height: math.unit(11, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Macro",
  27543. height: math.unit(9.5e9, "feet")
  27544. },
  27545. {
  27546. name: "Max Size",
  27547. height: math.unit(1.4e283, "yottameters")
  27548. },
  27549. ]
  27550. ))
  27551. characterMakers.push(() => makeCharacter(
  27552. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27553. {
  27554. female: {
  27555. height: math.unit(29.9, "m"),
  27556. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27557. name: "Female",
  27558. image: {
  27559. source: "./media/characters/zenari/female.svg",
  27560. extra: 3281.6 / 3217,
  27561. bottom: 72.2 / 3353
  27562. }
  27563. },
  27564. male: {
  27565. height: math.unit(27.7, "m"),
  27566. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27567. name: "Male",
  27568. image: {
  27569. source: "./media/characters/zenari/male.svg",
  27570. extra: 3008 / 2991,
  27571. bottom: 54.6 / 3069
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Macro",
  27578. height: math.unit(29.7, "meters"),
  27579. default: true
  27580. },
  27581. ]
  27582. ))
  27583. characterMakers.push(() => makeCharacter(
  27584. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27585. {
  27586. female: {
  27587. height: math.unit(23.8, "m"),
  27588. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27589. name: "Female",
  27590. image: {
  27591. source: "./media/characters/mactarian/female.svg",
  27592. extra: 2662 / 2569,
  27593. bottom: 73 / 2736
  27594. }
  27595. },
  27596. male: {
  27597. height: math.unit(23.8, "m"),
  27598. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27599. name: "Male",
  27600. image: {
  27601. source: "./media/characters/mactarian/male.svg",
  27602. extra: 2673 / 2600,
  27603. bottom: 76 / 2750
  27604. }
  27605. },
  27606. },
  27607. [
  27608. {
  27609. name: "Macro",
  27610. height: math.unit(23.8, "meters"),
  27611. default: true
  27612. },
  27613. ]
  27614. ))
  27615. characterMakers.push(() => makeCharacter(
  27616. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27617. {
  27618. female: {
  27619. height: math.unit(19.3, "m"),
  27620. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27621. name: "Female",
  27622. image: {
  27623. source: "./media/characters/umok/female.svg",
  27624. extra: 2186 / 2078,
  27625. bottom: 87 / 2277
  27626. }
  27627. },
  27628. male: {
  27629. height: math.unit(19.5, "m"),
  27630. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27631. name: "Male",
  27632. image: {
  27633. source: "./media/characters/umok/male.svg",
  27634. extra: 2233 / 2140,
  27635. bottom: 24.4 / 2258
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Macro",
  27642. height: math.unit(19.3, "meters"),
  27643. default: true
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27649. {
  27650. female: {
  27651. height: math.unit(26.15, "m"),
  27652. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27653. name: "Female",
  27654. image: {
  27655. source: "./media/characters/joraxian/female.svg",
  27656. extra: 2912 / 2824,
  27657. bottom: 36 / 2956
  27658. }
  27659. },
  27660. male: {
  27661. height: math.unit(25.4, "m"),
  27662. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27663. name: "Male",
  27664. image: {
  27665. source: "./media/characters/joraxian/male.svg",
  27666. extra: 2877 / 2721,
  27667. bottom: 82 / 2967
  27668. }
  27669. },
  27670. },
  27671. [
  27672. {
  27673. name: "Macro",
  27674. height: math.unit(26.15, "meters"),
  27675. default: true
  27676. },
  27677. ]
  27678. ))
  27679. characterMakers.push(() => makeCharacter(
  27680. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27681. {
  27682. female: {
  27683. height: math.unit(21.6, "m"),
  27684. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27685. name: "Female",
  27686. image: {
  27687. source: "./media/characters/sthara/female.svg",
  27688. extra: 2516 / 2347,
  27689. bottom: 21.5 / 2537
  27690. }
  27691. },
  27692. male: {
  27693. height: math.unit(24, "m"),
  27694. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27695. name: "Male",
  27696. image: {
  27697. source: "./media/characters/sthara/male.svg",
  27698. extra: 2732 / 2607,
  27699. bottom: 23 / 2732
  27700. }
  27701. },
  27702. },
  27703. [
  27704. {
  27705. name: "Macro",
  27706. height: math.unit(21.6, "meters"),
  27707. default: true
  27708. },
  27709. ]
  27710. ))
  27711. characterMakers.push(() => makeCharacter(
  27712. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27713. {
  27714. front: {
  27715. height: math.unit(6 + 4 / 12, "feet"),
  27716. weight: math.unit(175, "lb"),
  27717. name: "Front",
  27718. image: {
  27719. source: "./media/characters/luka-bryzant/front.svg",
  27720. extra: 311 / 289,
  27721. bottom: 4 / 315
  27722. }
  27723. },
  27724. back: {
  27725. height: math.unit(6 + 4 / 12, "feet"),
  27726. weight: math.unit(175, "lb"),
  27727. name: "Back",
  27728. image: {
  27729. source: "./media/characters/luka-bryzant/back.svg",
  27730. extra: 311 / 289,
  27731. bottom: 3.8 / 313.7
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Micro",
  27738. height: math.unit(10, "inches")
  27739. },
  27740. {
  27741. name: "Normal",
  27742. height: math.unit(6 + 4 / 12, "feet"),
  27743. default: true
  27744. },
  27745. {
  27746. name: "Large",
  27747. height: math.unit(12, "feet")
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27753. {
  27754. front: {
  27755. height: math.unit(5 + 7 / 12, "feet"),
  27756. weight: math.unit(185, "lb"),
  27757. name: "Front",
  27758. image: {
  27759. source: "./media/characters/aman-aquila/front.svg",
  27760. extra: 1013 / 976,
  27761. bottom: 45.6 / 1057
  27762. }
  27763. },
  27764. side: {
  27765. height: math.unit(5 + 7 / 12, "feet"),
  27766. weight: math.unit(185, "lb"),
  27767. name: "Side",
  27768. image: {
  27769. source: "./media/characters/aman-aquila/side.svg",
  27770. extra: 1054 / 1011,
  27771. bottom: 15 / 1070
  27772. }
  27773. },
  27774. back: {
  27775. height: math.unit(5 + 7 / 12, "feet"),
  27776. weight: math.unit(185, "lb"),
  27777. name: "Back",
  27778. image: {
  27779. source: "./media/characters/aman-aquila/back.svg",
  27780. extra: 1026 / 970,
  27781. bottom: 12 / 1039
  27782. }
  27783. },
  27784. head: {
  27785. height: math.unit(1.211, "feet"),
  27786. name: "Head",
  27787. image: {
  27788. source: "./media/characters/aman-aquila/head.svg",
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Minimicro",
  27795. height: math.unit(0.057, "inches")
  27796. },
  27797. {
  27798. name: "Micro",
  27799. height: math.unit(7, "inches")
  27800. },
  27801. {
  27802. name: "Mini",
  27803. height: math.unit(3 + 7 / 12, "feet")
  27804. },
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(5 + 7 / 12, "feet"),
  27808. default: true
  27809. },
  27810. {
  27811. name: "Macro",
  27812. height: math.unit(157 + 7 / 12, "feet")
  27813. },
  27814. {
  27815. name: "Megamacro",
  27816. height: math.unit(1557 + 7 / 12, "feet")
  27817. },
  27818. {
  27819. name: "Gigamacro",
  27820. height: math.unit(15557 + 7 / 12, "feet")
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(3 + 2 / 12, "inches"),
  27829. weight: math.unit(0.3, "ounces"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/hiphae/front.svg",
  27833. extra: 1931 / 1683,
  27834. bottom: 24 / 1955
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Normal",
  27841. height: math.unit(3 + 1 / 2, "inches"),
  27842. default: true
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(5 + 10 / 12, "feet"),
  27851. weight: math.unit(165, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/nicky/front.svg",
  27855. extra: 3144 / 2886,
  27856. bottom: 45.6 / 3192
  27857. }
  27858. },
  27859. back: {
  27860. height: math.unit(5 + 10 / 12, "feet"),
  27861. weight: math.unit(165, "lb"),
  27862. name: "Back",
  27863. image: {
  27864. source: "./media/characters/nicky/back.svg",
  27865. extra: 3055 / 2804,
  27866. bottom: 28.4 / 3087
  27867. }
  27868. },
  27869. frontclothed: {
  27870. height: math.unit(5 + 10 / 12, "feet"),
  27871. weight: math.unit(165, "lb"),
  27872. name: "Front (Clothed)",
  27873. image: {
  27874. source: "./media/characters/nicky/front-clothed.svg",
  27875. extra: 3184.9 / 2926.9,
  27876. bottom: 86.5 / 3239.9
  27877. }
  27878. },
  27879. foot: {
  27880. height: math.unit(1.16, "feet"),
  27881. name: "Foot",
  27882. image: {
  27883. source: "./media/characters/nicky/foot.svg"
  27884. }
  27885. },
  27886. feet: {
  27887. height: math.unit(1.34, "feet"),
  27888. name: "Feet",
  27889. image: {
  27890. source: "./media/characters/nicky/feet.svg"
  27891. }
  27892. },
  27893. maw: {
  27894. height: math.unit(0.9, "feet"),
  27895. name: "Maw",
  27896. image: {
  27897. source: "./media/characters/nicky/maw.svg"
  27898. }
  27899. },
  27900. },
  27901. [
  27902. {
  27903. name: "Normal",
  27904. height: math.unit(5 + 10 / 12, "feet"),
  27905. default: true
  27906. },
  27907. {
  27908. name: "Macro",
  27909. height: math.unit(60, "feet")
  27910. },
  27911. {
  27912. name: "Megamacro",
  27913. height: math.unit(1, "mile")
  27914. },
  27915. ]
  27916. ))
  27917. characterMakers.push(() => makeCharacter(
  27918. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27919. {
  27920. side: {
  27921. height: math.unit(10, "feet"),
  27922. weight: math.unit(600, "lb"),
  27923. name: "Side",
  27924. image: {
  27925. source: "./media/characters/blair/side.svg",
  27926. bottom: 16.6 / 475,
  27927. extra: 458 / 431
  27928. }
  27929. },
  27930. },
  27931. [
  27932. {
  27933. name: "Micro",
  27934. height: math.unit(8, "inches")
  27935. },
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(10, "feet"),
  27939. default: true
  27940. },
  27941. {
  27942. name: "Macro",
  27943. height: math.unit(180, "feet")
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27949. {
  27950. front: {
  27951. height: math.unit(5 + 4 / 12, "feet"),
  27952. weight: math.unit(125, "lb"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/fisher/front.svg",
  27956. extra: 444 / 390,
  27957. bottom: 2 / 444.8
  27958. }
  27959. },
  27960. },
  27961. [
  27962. {
  27963. name: "Micro",
  27964. height: math.unit(4, "inches")
  27965. },
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(5 + 4 / 12, "feet"),
  27969. default: true
  27970. },
  27971. {
  27972. name: "Macro",
  27973. height: math.unit(100, "feet")
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27979. {
  27980. front: {
  27981. height: math.unit(6.71, "feet"),
  27982. weight: math.unit(200, "lb"),
  27983. preyCapacity: math.unit(1000000, "people"),
  27984. name: "Front",
  27985. image: {
  27986. source: "./media/characters/gliss/front.svg",
  27987. extra: 2347 / 2231,
  27988. bottom: 113 / 2462
  27989. }
  27990. },
  27991. hammerspaceSize: {
  27992. height: math.unit(6.71 * 717, "feet"),
  27993. weight: math.unit(200, "lb"),
  27994. preyCapacity: math.unit(1000000, "people"),
  27995. name: "Hammerspace Size",
  27996. image: {
  27997. source: "./media/characters/gliss/front.svg",
  27998. extra: 2347 / 2231,
  27999. bottom: 113 / 2462
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(6.71, "feet"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28013. {
  28014. side: {
  28015. height: math.unit(1.44, "m"),
  28016. weight: math.unit(80, "kg"),
  28017. name: "Side",
  28018. image: {
  28019. source: "./media/characters/dune-anderson/side.svg",
  28020. bottom: 49 / 1426
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Wolf-sized",
  28027. height: math.unit(1.44, "meters")
  28028. },
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(5.05, "meters"),
  28032. default: true
  28033. },
  28034. {
  28035. name: "Big",
  28036. height: math.unit(14.4, "meters")
  28037. },
  28038. {
  28039. name: "Huge",
  28040. height: math.unit(144, "meters")
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(6, "feet"),
  28049. weight: math.unit(220, "lb"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/hind/front.svg",
  28053. extra: 1912/1787,
  28054. bottom: 52/1964
  28055. }
  28056. },
  28057. back: {
  28058. height: math.unit(6, "feet"),
  28059. weight: math.unit(220, "lb"),
  28060. name: "Back",
  28061. image: {
  28062. source: "./media/characters/hind/back.svg",
  28063. extra: 1901/1794,
  28064. bottom: 26/1927
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(6, "feet"),
  28072. default: true
  28073. },
  28074. ]
  28075. ))
  28076. characterMakers.push(() => makeCharacter(
  28077. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28078. {
  28079. front: {
  28080. height: math.unit(2.1, "meters"),
  28081. weight: math.unit(150, "lb"),
  28082. name: "Front",
  28083. image: {
  28084. source: "./media/characters/tharquench-sizestealer/front.svg",
  28085. extra: 1605/1470,
  28086. bottom: 36/1641
  28087. }
  28088. },
  28089. frontAlt: {
  28090. height: math.unit(2.1, "meters"),
  28091. weight: math.unit(150, "lb"),
  28092. name: "Front (Alt)",
  28093. image: {
  28094. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28095. extra: 2318 / 2063,
  28096. bottom: 93.4 / 2410
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Nano",
  28103. height: math.unit(1, "mm")
  28104. },
  28105. {
  28106. name: "Micro",
  28107. height: math.unit(1, "cm")
  28108. },
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(2.1, "meters"),
  28112. default: true
  28113. },
  28114. ]
  28115. ))
  28116. characterMakers.push(() => makeCharacter(
  28117. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28118. {
  28119. front: {
  28120. height: math.unit(7 + 5 / 12, "feet"),
  28121. weight: math.unit(357, "lb"),
  28122. name: "Front",
  28123. image: {
  28124. source: "./media/characters/solex-draconov/front.svg",
  28125. extra: 1993 / 1865,
  28126. bottom: 117 / 2111
  28127. }
  28128. },
  28129. },
  28130. [
  28131. {
  28132. name: "Natural Height",
  28133. height: math.unit(7 + 5 / 12, "feet"),
  28134. default: true
  28135. },
  28136. {
  28137. name: "Macro",
  28138. height: math.unit(350, "feet")
  28139. },
  28140. {
  28141. name: "Macro+",
  28142. height: math.unit(1000, "feet")
  28143. },
  28144. {
  28145. name: "Megamacro",
  28146. height: math.unit(20, "km")
  28147. },
  28148. {
  28149. name: "Megamacro+",
  28150. height: math.unit(1000, "km")
  28151. },
  28152. {
  28153. name: "Gigamacro",
  28154. height: math.unit(2.5, "Gm")
  28155. },
  28156. {
  28157. name: "Teramacro",
  28158. height: math.unit(15, "Tm")
  28159. },
  28160. {
  28161. name: "Galactic",
  28162. height: math.unit(30, "Zm")
  28163. },
  28164. {
  28165. name: "Universal",
  28166. height: math.unit(21000, "Ym")
  28167. },
  28168. {
  28169. name: "Omniversal",
  28170. height: math.unit(9.861e50, "Ym")
  28171. },
  28172. {
  28173. name: "Existential",
  28174. height: math.unit(1e300, "meters")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28180. {
  28181. side: {
  28182. height: math.unit(25, "feet"),
  28183. weight: math.unit(90000, "lb"),
  28184. name: "Side",
  28185. image: {
  28186. source: "./media/characters/mandarax/side.svg",
  28187. extra: 614 / 332,
  28188. bottom: 55 / 630
  28189. }
  28190. },
  28191. lounging: {
  28192. height: math.unit(15.4, "feet"),
  28193. weight: math.unit(90000, "lb"),
  28194. name: "Lounging",
  28195. image: {
  28196. source: "./media/characters/mandarax/lounging.svg",
  28197. extra: 817/609,
  28198. bottom: 685/1502
  28199. }
  28200. },
  28201. head: {
  28202. height: math.unit(11.4, "feet"),
  28203. name: "Head",
  28204. image: {
  28205. source: "./media/characters/mandarax/head.svg"
  28206. }
  28207. },
  28208. belly: {
  28209. height: math.unit(33, "feet"),
  28210. name: "Belly",
  28211. preyCapacity: math.unit(500, "people"),
  28212. image: {
  28213. source: "./media/characters/mandarax/belly.svg"
  28214. }
  28215. },
  28216. dick: {
  28217. height: math.unit(8.46, "feet"),
  28218. name: "Dick",
  28219. image: {
  28220. source: "./media/characters/mandarax/dick.svg"
  28221. }
  28222. },
  28223. top: {
  28224. height: math.unit(28, "meters"),
  28225. name: "Top",
  28226. image: {
  28227. source: "./media/characters/mandarax/top.svg"
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(25, "feet"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(5, "feet"),
  28244. weight: math.unit(90, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/pixil/front.svg",
  28248. extra: 2000 / 1618,
  28249. bottom: 12.3 / 2011
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(5, "feet"),
  28257. default: true
  28258. },
  28259. {
  28260. name: "Megamacro",
  28261. height: math.unit(10, "miles"),
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(7 + 2 / 12, "feet"),
  28270. weight: math.unit(200, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/angel/front.svg",
  28274. extra: 1946/1840,
  28275. bottom: 30/1976
  28276. }
  28277. },
  28278. },
  28279. [
  28280. {
  28281. name: "Normal",
  28282. height: math.unit(7 + 2 / 12, "feet"),
  28283. default: true
  28284. },
  28285. {
  28286. name: "Macro",
  28287. height: math.unit(1000, "feet")
  28288. },
  28289. {
  28290. name: "Megamacro",
  28291. height: math.unit(2, "miles")
  28292. },
  28293. {
  28294. name: "Gigamacro",
  28295. height: math.unit(20, "earths")
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(5, "feet"),
  28304. weight: math.unit(180, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/mekana/front.svg",
  28308. extra: 1671 / 1605,
  28309. bottom: 3.5 / 1691
  28310. }
  28311. },
  28312. side: {
  28313. height: math.unit(5, "feet"),
  28314. weight: math.unit(180, "lb"),
  28315. name: "Side",
  28316. image: {
  28317. source: "./media/characters/mekana/side.svg",
  28318. extra: 1671 / 1605,
  28319. bottom: 3.5 / 1691
  28320. }
  28321. },
  28322. back: {
  28323. height: math.unit(5, "feet"),
  28324. weight: math.unit(180, "lb"),
  28325. name: "Back",
  28326. image: {
  28327. source: "./media/characters/mekana/back.svg",
  28328. extra: 1671 / 1605,
  28329. bottom: 3.5 / 1691
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(5, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(4 + 6 / 12, "feet"),
  28346. weight: math.unit(80, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/pixie/front.svg",
  28350. extra: 1924 / 1825,
  28351. bottom: 22.4 / 1946
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Normal",
  28358. height: math.unit(4 + 6 / 12, "feet"),
  28359. default: true
  28360. },
  28361. {
  28362. name: "Macro",
  28363. height: math.unit(40, "feet")
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28369. {
  28370. front: {
  28371. height: math.unit(2.1, "meters"),
  28372. weight: math.unit(200, "lb"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/the-lascivious/front.svg",
  28376. extra: 1 / 0.893,
  28377. bottom: 3.5 / 573.7
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Human Scale",
  28384. height: math.unit(2.1, "meters")
  28385. },
  28386. {
  28387. name: "Wolxi Scale",
  28388. height: math.unit(46.2, "m"),
  28389. default: true
  28390. },
  28391. {
  28392. name: "Boinker of Buildings",
  28393. height: math.unit(10, "km")
  28394. },
  28395. {
  28396. name: "Shagger of Skyscrapers",
  28397. height: math.unit(40, "km")
  28398. },
  28399. {
  28400. name: "Banger of Boroughs",
  28401. height: math.unit(4000, "km")
  28402. },
  28403. {
  28404. name: "Screwer of States",
  28405. height: math.unit(100000, "km")
  28406. },
  28407. {
  28408. name: "Pounder of Planets",
  28409. height: math.unit(2000000, "km")
  28410. },
  28411. ]
  28412. ))
  28413. characterMakers.push(() => makeCharacter(
  28414. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28415. {
  28416. front: {
  28417. height: math.unit(6, "feet"),
  28418. weight: math.unit(150, "lb"),
  28419. name: "Front",
  28420. image: {
  28421. source: "./media/characters/aj/front.svg",
  28422. extra: 2039 / 1562,
  28423. bottom: 40 / 2079
  28424. }
  28425. },
  28426. },
  28427. [
  28428. {
  28429. name: "Normal",
  28430. height: math.unit(11 + 6 / 12, "feet"),
  28431. default: true
  28432. },
  28433. {
  28434. name: "Megamacro",
  28435. height: math.unit(60, "megameters")
  28436. },
  28437. ]
  28438. ))
  28439. characterMakers.push(() => makeCharacter(
  28440. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28441. {
  28442. side: {
  28443. height: math.unit(31 + 8 / 12, "feet"),
  28444. weight: math.unit(75000, "kg"),
  28445. name: "Side",
  28446. image: {
  28447. source: "./media/characters/koros/side.svg",
  28448. extra: 1442 / 1297,
  28449. bottom: 122.7 / 1562
  28450. }
  28451. },
  28452. dicksKingsCrown: {
  28453. height: math.unit(6, "feet"),
  28454. name: "Dicks (King's Crown)",
  28455. image: {
  28456. source: "./media/characters/koros/dicks-kings-crown.svg"
  28457. }
  28458. },
  28459. dicksTailSet: {
  28460. height: math.unit(3, "feet"),
  28461. name: "Dicks (Tail Set)",
  28462. image: {
  28463. source: "./media/characters/koros/dicks-tail-set.svg"
  28464. }
  28465. },
  28466. dickCumming: {
  28467. height: math.unit(7.98, "feet"),
  28468. name: "Dick (Cumming)",
  28469. image: {
  28470. source: "./media/characters/koros/dick-cumming.svg"
  28471. }
  28472. },
  28473. dicksBack: {
  28474. height: math.unit(5.9, "feet"),
  28475. name: "Dicks (Back)",
  28476. image: {
  28477. source: "./media/characters/koros/dicks-back.svg"
  28478. }
  28479. },
  28480. dicksFront: {
  28481. height: math.unit(3.72, "feet"),
  28482. name: "Dicks (Front)",
  28483. image: {
  28484. source: "./media/characters/koros/dicks-front.svg"
  28485. }
  28486. },
  28487. dicksPeeking: {
  28488. height: math.unit(3.0, "feet"),
  28489. name: "Dicks (Peeking)",
  28490. image: {
  28491. source: "./media/characters/koros/dicks-peeking.svg"
  28492. }
  28493. },
  28494. eye: {
  28495. height: math.unit(1.7, "feet"),
  28496. name: "Eye",
  28497. image: {
  28498. source: "./media/characters/koros/eye.svg"
  28499. }
  28500. },
  28501. headFront: {
  28502. height: math.unit(11.69, "feet"),
  28503. name: "Head (Front)",
  28504. image: {
  28505. source: "./media/characters/koros/head-front.svg"
  28506. }
  28507. },
  28508. headSide: {
  28509. height: math.unit(14, "feet"),
  28510. name: "Head (Side)",
  28511. image: {
  28512. source: "./media/characters/koros/head-side.svg"
  28513. }
  28514. },
  28515. leg: {
  28516. height: math.unit(17, "feet"),
  28517. name: "Leg",
  28518. image: {
  28519. source: "./media/characters/koros/leg.svg"
  28520. }
  28521. },
  28522. mawSide: {
  28523. height: math.unit(12.8, "feet"),
  28524. name: "Maw (Side)",
  28525. image: {
  28526. source: "./media/characters/koros/maw-side.svg"
  28527. }
  28528. },
  28529. mawSpitting: {
  28530. height: math.unit(17, "feet"),
  28531. name: "Maw (Spitting)",
  28532. image: {
  28533. source: "./media/characters/koros/maw-spitting.svg"
  28534. }
  28535. },
  28536. slit: {
  28537. height: math.unit(2.8, "feet"),
  28538. name: "Slit",
  28539. image: {
  28540. source: "./media/characters/koros/slit.svg"
  28541. }
  28542. },
  28543. stomach: {
  28544. height: math.unit(6.8, "feet"),
  28545. preyCapacity: math.unit(20, "people"),
  28546. name: "Stomach",
  28547. image: {
  28548. source: "./media/characters/koros/stomach.svg"
  28549. }
  28550. },
  28551. wingspanBottom: {
  28552. height: math.unit(114, "feet"),
  28553. name: "Wingspan (Bottom)",
  28554. image: {
  28555. source: "./media/characters/koros/wingspan-bottom.svg"
  28556. }
  28557. },
  28558. wingspanTop: {
  28559. height: math.unit(104, "feet"),
  28560. name: "Wingspan (Top)",
  28561. image: {
  28562. source: "./media/characters/koros/wingspan-top.svg"
  28563. }
  28564. },
  28565. },
  28566. [
  28567. {
  28568. name: "Normal",
  28569. height: math.unit(31 + 8 / 12, "feet"),
  28570. default: true
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(18 + 5 / 12, "feet"),
  28579. weight: math.unit(3750, "kg"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/vexx/front.svg",
  28583. extra: 426 / 396,
  28584. bottom: 31.5 / 458
  28585. }
  28586. },
  28587. maw: {
  28588. height: math.unit(6, "feet"),
  28589. name: "Maw",
  28590. image: {
  28591. source: "./media/characters/vexx/maw.svg"
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(18 + 5 / 12, "feet"),
  28599. default: true
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(17 + 6 / 12, "feet"),
  28608. weight: math.unit(150, "lb"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/baadra/front.svg",
  28612. extra: 1694/1553,
  28613. bottom: 179/1873
  28614. }
  28615. },
  28616. frontAlt: {
  28617. height: math.unit(17 + 6 / 12, "feet"),
  28618. weight: math.unit(150, "lb"),
  28619. name: "Front (Alt)",
  28620. image: {
  28621. source: "./media/characters/baadra/front-alt.svg",
  28622. extra: 3137 / 2890,
  28623. bottom: 168.4 / 3305
  28624. }
  28625. },
  28626. back: {
  28627. height: math.unit(17 + 6 / 12, "feet"),
  28628. weight: math.unit(150, "lb"),
  28629. name: "Back",
  28630. image: {
  28631. source: "./media/characters/baadra/back.svg",
  28632. extra: 3142 / 2890,
  28633. bottom: 220 / 3371
  28634. }
  28635. },
  28636. head: {
  28637. height: math.unit(5.45, "feet"),
  28638. name: "Head",
  28639. image: {
  28640. source: "./media/characters/baadra/head.svg"
  28641. }
  28642. },
  28643. headAngry: {
  28644. height: math.unit(4.95, "feet"),
  28645. name: "Head (Angry)",
  28646. image: {
  28647. source: "./media/characters/baadra/head-angry.svg"
  28648. }
  28649. },
  28650. headOpen: {
  28651. height: math.unit(6, "feet"),
  28652. name: "Head (Open)",
  28653. image: {
  28654. source: "./media/characters/baadra/head-open.svg"
  28655. }
  28656. },
  28657. },
  28658. [
  28659. {
  28660. name: "Normal",
  28661. height: math.unit(17 + 6 / 12, "feet"),
  28662. default: true
  28663. },
  28664. ]
  28665. ))
  28666. characterMakers.push(() => makeCharacter(
  28667. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28668. {
  28669. front: {
  28670. height: math.unit(7 + 3 / 12, "feet"),
  28671. weight: math.unit(180, "lb"),
  28672. name: "Front",
  28673. image: {
  28674. source: "./media/characters/juri/front.svg",
  28675. extra: 1401 / 1237,
  28676. bottom: 18.5 / 1418
  28677. }
  28678. },
  28679. side: {
  28680. height: math.unit(7 + 3 / 12, "feet"),
  28681. weight: math.unit(180, "lb"),
  28682. name: "Side",
  28683. image: {
  28684. source: "./media/characters/juri/side.svg",
  28685. extra: 1424 / 1242,
  28686. bottom: 18.5 / 1447
  28687. }
  28688. },
  28689. sitting: {
  28690. height: math.unit(6, "feet"),
  28691. weight: math.unit(180, "lb"),
  28692. name: "Sitting",
  28693. image: {
  28694. source: "./media/characters/juri/sitting.svg",
  28695. extra: 1270 / 1143,
  28696. bottom: 100 / 1343
  28697. }
  28698. },
  28699. back: {
  28700. height: math.unit(7 + 3 / 12, "feet"),
  28701. weight: math.unit(180, "lb"),
  28702. name: "Back",
  28703. image: {
  28704. source: "./media/characters/juri/back.svg",
  28705. extra: 1377 / 1240,
  28706. bottom: 23.7 / 1405
  28707. }
  28708. },
  28709. maw: {
  28710. height: math.unit(2.8, "feet"),
  28711. name: "Maw",
  28712. image: {
  28713. source: "./media/characters/juri/maw.svg"
  28714. }
  28715. },
  28716. stomach: {
  28717. height: math.unit(0.89, "feet"),
  28718. preyCapacity: math.unit(4, "liters"),
  28719. name: "Stomach",
  28720. image: {
  28721. source: "./media/characters/juri/stomach.svg"
  28722. }
  28723. },
  28724. },
  28725. [
  28726. {
  28727. name: "Normal",
  28728. height: math.unit(7 + 3 / 12, "feet"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28735. {
  28736. fox: {
  28737. height: math.unit(5 + 6 / 12, "feet"),
  28738. weight: math.unit(140, "lb"),
  28739. name: "Fox",
  28740. image: {
  28741. source: "./media/characters/maxene-sita/fox.svg",
  28742. extra: 146 / 138,
  28743. bottom: 2.1 / 148.19
  28744. }
  28745. },
  28746. foxLaying: {
  28747. height: math.unit(1.70, "feet"),
  28748. weight: math.unit(140, "lb"),
  28749. name: "Fox (Laying)",
  28750. image: {
  28751. source: "./media/characters/maxene-sita/fox-laying.svg",
  28752. extra: 910 / 572,
  28753. bottom: 71 / 981
  28754. }
  28755. },
  28756. kitsune: {
  28757. height: math.unit(10, "feet"),
  28758. weight: math.unit(800, "lb"),
  28759. name: "Kitsune",
  28760. image: {
  28761. source: "./media/characters/maxene-sita/kitsune.svg",
  28762. extra: 185 / 176,
  28763. bottom: 4.7 / 189.9
  28764. }
  28765. },
  28766. hellhound: {
  28767. height: math.unit(10, "feet"),
  28768. weight: math.unit(700, "lb"),
  28769. name: "Hellhound",
  28770. image: {
  28771. source: "./media/characters/maxene-sita/hellhound.svg",
  28772. extra: 1600 / 1545,
  28773. bottom: 81 / 1681
  28774. }
  28775. },
  28776. },
  28777. [
  28778. {
  28779. name: "Normal",
  28780. height: math.unit(5 + 6 / 12, "feet"),
  28781. default: true
  28782. },
  28783. ]
  28784. ))
  28785. characterMakers.push(() => makeCharacter(
  28786. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28787. {
  28788. front: {
  28789. height: math.unit(3 + 4 / 12, "feet"),
  28790. weight: math.unit(70, "lb"),
  28791. name: "Front",
  28792. image: {
  28793. source: "./media/characters/maia/front.svg",
  28794. extra: 227 / 219.5,
  28795. bottom: 40 / 267
  28796. }
  28797. },
  28798. back: {
  28799. height: math.unit(3 + 4 / 12, "feet"),
  28800. weight: math.unit(70, "lb"),
  28801. name: "Back",
  28802. image: {
  28803. source: "./media/characters/maia/back.svg",
  28804. extra: 237 / 225
  28805. }
  28806. },
  28807. },
  28808. [
  28809. {
  28810. name: "Normal",
  28811. height: math.unit(3 + 4 / 12, "feet"),
  28812. default: true
  28813. },
  28814. ]
  28815. ))
  28816. characterMakers.push(() => makeCharacter(
  28817. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28818. {
  28819. front: {
  28820. height: math.unit(5 + 10 / 12, "feet"),
  28821. weight: math.unit(197, "lb"),
  28822. name: "Front",
  28823. image: {
  28824. source: "./media/characters/jabaro/front.svg",
  28825. extra: 225 / 216,
  28826. bottom: 5.06 / 230
  28827. }
  28828. },
  28829. back: {
  28830. height: math.unit(5 + 10 / 12, "feet"),
  28831. weight: math.unit(197, "lb"),
  28832. name: "Back",
  28833. image: {
  28834. source: "./media/characters/jabaro/back.svg",
  28835. extra: 225 / 219,
  28836. bottom: 1.9 / 227
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(5 + 10 / 12, "feet"),
  28844. default: true
  28845. },
  28846. ]
  28847. ))
  28848. characterMakers.push(() => makeCharacter(
  28849. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28850. {
  28851. front: {
  28852. height: math.unit(5 + 8 / 12, "feet"),
  28853. weight: math.unit(139, "lb"),
  28854. name: "Front",
  28855. image: {
  28856. source: "./media/characters/risa/front.svg",
  28857. extra: 270 / 260,
  28858. bottom: 11.2 / 282
  28859. }
  28860. },
  28861. back: {
  28862. height: math.unit(5 + 8 / 12, "feet"),
  28863. weight: math.unit(139, "lb"),
  28864. name: "Back",
  28865. image: {
  28866. source: "./media/characters/risa/back.svg",
  28867. extra: 264 / 255,
  28868. bottom: 4 / 268
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(5 + 8 / 12, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(2 + 11 / 12, "feet"),
  28885. weight: math.unit(30, "lb"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/weatley/front.svg",
  28889. bottom: 10.7 / 414,
  28890. extra: 403.5 / 362
  28891. }
  28892. },
  28893. back: {
  28894. height: math.unit(2 + 11 / 12, "feet"),
  28895. weight: math.unit(30, "lb"),
  28896. name: "Back",
  28897. image: {
  28898. source: "./media/characters/weatley/back.svg",
  28899. bottom: 10.7 / 414,
  28900. extra: 403.5 / 362
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Normal",
  28907. height: math.unit(2 + 11 / 12, "feet"),
  28908. default: true
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28914. {
  28915. front: {
  28916. height: math.unit(5 + 2 / 12, "feet"),
  28917. weight: math.unit(50, "kg"),
  28918. name: "Front",
  28919. image: {
  28920. source: "./media/characters/mercury-crescent/front.svg",
  28921. extra: 1088 / 1033,
  28922. bottom: 18.9 / 1109
  28923. }
  28924. },
  28925. },
  28926. [
  28927. {
  28928. name: "Normal",
  28929. height: math.unit(5 + 2 / 12, "feet"),
  28930. default: true
  28931. },
  28932. ]
  28933. ))
  28934. characterMakers.push(() => makeCharacter(
  28935. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28936. {
  28937. front: {
  28938. height: math.unit(2, "feet"),
  28939. weight: math.unit(15, "kg"),
  28940. name: "Front",
  28941. image: {
  28942. source: "./media/characters/diamond-jones/front.svg",
  28943. extra: 727/723,
  28944. bottom: 46/773
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(2, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(3, "feet"),
  28961. weight: math.unit(30, "kg"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/sweet-bit/front.svg",
  28965. extra: 675 / 567,
  28966. bottom: 27.7 / 703
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(3, "feet"),
  28974. default: true
  28975. },
  28976. ]
  28977. ))
  28978. characterMakers.push(() => makeCharacter(
  28979. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28980. {
  28981. side: {
  28982. height: math.unit(9.178, "feet"),
  28983. weight: math.unit(500, "lb"),
  28984. name: "Side",
  28985. image: {
  28986. source: "./media/characters/umbrazen/side.svg",
  28987. extra: 1730 / 1473,
  28988. bottom: 34.6 / 1765
  28989. }
  28990. },
  28991. },
  28992. [
  28993. {
  28994. name: "Normal",
  28995. height: math.unit(9.178, "feet"),
  28996. default: true
  28997. },
  28998. ]
  28999. ))
  29000. characterMakers.push(() => makeCharacter(
  29001. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29002. {
  29003. front: {
  29004. height: math.unit(10, "feet"),
  29005. weight: math.unit(750, "lb"),
  29006. name: "Front",
  29007. image: {
  29008. source: "./media/characters/arlist/front.svg",
  29009. extra: 961 / 778,
  29010. bottom: 6.2 / 986
  29011. }
  29012. },
  29013. },
  29014. [
  29015. {
  29016. name: "Normal",
  29017. height: math.unit(10, "feet"),
  29018. default: true
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(5 + 1 / 12, "feet"),
  29027. weight: math.unit(110, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/aradel/front.svg",
  29031. extra: 324 / 303,
  29032. bottom: 3.6 / 329.4
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(5 + 1 / 12, "feet"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29046. {
  29047. dressed: {
  29048. height: math.unit(3 + 8 / 12, "feet"),
  29049. weight: math.unit(50, "lb"),
  29050. name: "Dressed",
  29051. image: {
  29052. source: "./media/characters/serryn/dressed.svg",
  29053. extra: 1792 / 1656,
  29054. bottom: 43.5 / 1840
  29055. }
  29056. },
  29057. nude: {
  29058. height: math.unit(3 + 8 / 12, "feet"),
  29059. weight: math.unit(50, "lb"),
  29060. name: "Nude",
  29061. image: {
  29062. source: "./media/characters/serryn/nude.svg",
  29063. extra: 1792 / 1656,
  29064. bottom: 43.5 / 1840
  29065. }
  29066. },
  29067. },
  29068. [
  29069. {
  29070. name: "Normal",
  29071. height: math.unit(3 + 8 / 12, "feet"),
  29072. default: true
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(7 + 10 / 12, "feet"),
  29081. weight: math.unit(255, "lb"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/xavier-thyme/front.svg",
  29085. extra: 3733 / 3642,
  29086. bottom: 131 / 3869
  29087. }
  29088. },
  29089. frontRaven: {
  29090. height: math.unit(7 + 10 / 12, "feet"),
  29091. weight: math.unit(255, "lb"),
  29092. name: "Front (Raven)",
  29093. image: {
  29094. source: "./media/characters/xavier-thyme/front-raven.svg",
  29095. extra: 4385 / 3642,
  29096. bottom: 131 / 4517
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Normal",
  29103. height: math.unit(7 + 10 / 12, "feet"),
  29104. default: true
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(1.6, "m"),
  29113. weight: math.unit(50, "kg"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/kiki/front.svg",
  29117. extra: 4682 / 3610,
  29118. bottom: 115 / 4777
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Normal",
  29125. height: math.unit(1.6, "meters"),
  29126. default: true
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(50, "m"),
  29135. weight: math.unit(500, "tonnes"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/ryoko/front.svg",
  29139. extra: 4632 / 3926,
  29140. bottom: 193 / 4823
  29141. }
  29142. },
  29143. },
  29144. [
  29145. {
  29146. name: "Normal",
  29147. height: math.unit(50, "meters"),
  29148. default: true
  29149. },
  29150. ]
  29151. ))
  29152. characterMakers.push(() => makeCharacter(
  29153. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29154. {
  29155. front: {
  29156. height: math.unit(30, "m"),
  29157. weight: math.unit(22, "tonnes"),
  29158. name: "Front",
  29159. image: {
  29160. source: "./media/characters/elio/front.svg",
  29161. extra: 4582 / 3720,
  29162. bottom: 236 / 4828
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(30, "meters"),
  29170. default: true
  29171. },
  29172. ]
  29173. ))
  29174. characterMakers.push(() => makeCharacter(
  29175. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29176. {
  29177. front: {
  29178. height: math.unit(6 + 3 / 12, "feet"),
  29179. weight: math.unit(120, "lb"),
  29180. name: "Front",
  29181. image: {
  29182. source: "./media/characters/azura/front.svg",
  29183. extra: 1149 / 1135,
  29184. bottom: 45 / 1194
  29185. }
  29186. },
  29187. frontClothed: {
  29188. height: math.unit(6 + 3 / 12, "feet"),
  29189. weight: math.unit(120, "lb"),
  29190. name: "Front (Clothed)",
  29191. image: {
  29192. source: "./media/characters/azura/front-clothed.svg",
  29193. extra: 1149 / 1135,
  29194. bottom: 45 / 1194
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(6 + 3 / 12, "feet"),
  29202. default: true
  29203. },
  29204. {
  29205. name: "Macro",
  29206. height: math.unit(20 + 6 / 12, "feet")
  29207. },
  29208. {
  29209. name: "Megamacro",
  29210. height: math.unit(12, "miles")
  29211. },
  29212. {
  29213. name: "Gigamacro",
  29214. height: math.unit(10000, "miles")
  29215. },
  29216. {
  29217. name: "Teramacro",
  29218. height: math.unit(900000, "miles")
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(12, "feet"),
  29227. weight: math.unit(1, "ton"),
  29228. capacity: math.unit(660000, "gallons"),
  29229. name: "Front",
  29230. image: {
  29231. source: "./media/characters/zeus/front.svg",
  29232. extra: 5005 / 4717,
  29233. bottom: 363 / 5388
  29234. }
  29235. },
  29236. },
  29237. [
  29238. {
  29239. name: "Normal",
  29240. height: math.unit(12, "feet")
  29241. },
  29242. {
  29243. name: "Preferred Size",
  29244. height: math.unit(0.5, "miles"),
  29245. default: true
  29246. },
  29247. {
  29248. name: "Giga Horse",
  29249. height: math.unit(300, "miles")
  29250. },
  29251. {
  29252. name: "Riding Planets",
  29253. height: math.unit(30, "megameters")
  29254. },
  29255. {
  29256. name: "Cosmic Giant",
  29257. height: math.unit(3, "zettameters")
  29258. },
  29259. {
  29260. name: "Breeding God",
  29261. height: math.unit(9.92e22, "yottameters")
  29262. },
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29267. {
  29268. side: {
  29269. height: math.unit(9, "feet"),
  29270. weight: math.unit(1500, "kg"),
  29271. name: "Side",
  29272. image: {
  29273. source: "./media/characters/fang/side.svg",
  29274. extra: 924 / 866,
  29275. bottom: 47.5 / 972.3
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(9, "feet"),
  29283. default: true
  29284. },
  29285. {
  29286. name: "Macro",
  29287. height: math.unit(75 + 6 / 12, "feet")
  29288. },
  29289. {
  29290. name: "Teramacro",
  29291. height: math.unit(50000, "miles")
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(10, "feet"),
  29300. weight: math.unit(2, "tons"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/rekhit/front.svg",
  29304. extra: 2796 / 2590,
  29305. bottom: 225 / 3022
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(10, "feet"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(500, "feet")
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(7 + 6.451 / 12, "feet"),
  29326. weight: math.unit(310, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/dahlia-verrick/front.svg",
  29330. extra: 1488 / 1365,
  29331. bottom: 6.2 / 1495
  29332. }
  29333. },
  29334. back: {
  29335. height: math.unit(7 + 6.451 / 12, "feet"),
  29336. weight: math.unit(310, "lb"),
  29337. name: "Back",
  29338. image: {
  29339. source: "./media/characters/dahlia-verrick/back.svg",
  29340. extra: 1472 / 1351,
  29341. bottom: 5.28 / 1477
  29342. }
  29343. },
  29344. frontBusiness: {
  29345. height: math.unit(7 + 6.451 / 12, "feet"),
  29346. weight: math.unit(200, "lb"),
  29347. name: "Front (Business)",
  29348. image: {
  29349. source: "./media/characters/dahlia-verrick/front-business.svg",
  29350. extra: 1478 / 1381,
  29351. bottom: 5.5 / 1484
  29352. }
  29353. },
  29354. frontCasual: {
  29355. height: math.unit(7 + 6.451 / 12, "feet"),
  29356. weight: math.unit(200, "lb"),
  29357. name: "Front (Casual)",
  29358. image: {
  29359. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29360. extra: 1478 / 1381,
  29361. bottom: 5.5 / 1484
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Travel-Sized",
  29368. height: math.unit(7.45, "inches")
  29369. },
  29370. {
  29371. name: "Normal",
  29372. height: math.unit(7 + 6.451 / 12, "feet"),
  29373. default: true
  29374. },
  29375. {
  29376. name: "Hitting the Town",
  29377. height: math.unit(37 + 8 / 12, "feet")
  29378. },
  29379. {
  29380. name: "Stomp in the Suburbs",
  29381. height: math.unit(964 + 9.728 / 12, "feet")
  29382. },
  29383. {
  29384. name: "Sit on the City",
  29385. height: math.unit(61747 + 10.592 / 12, "feet")
  29386. },
  29387. {
  29388. name: "Glomp the Globe",
  29389. height: math.unit(252919327 + 4.832 / 12, "feet")
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29395. {
  29396. front: {
  29397. height: math.unit(6 + 4 / 12, "feet"),
  29398. weight: math.unit(320, "lb"),
  29399. name: "Front",
  29400. image: {
  29401. source: "./media/characters/balina-mahigan/front.svg",
  29402. extra: 447 / 428,
  29403. bottom: 18 / 466
  29404. }
  29405. },
  29406. back: {
  29407. height: math.unit(6 + 4 / 12, "feet"),
  29408. weight: math.unit(320, "lb"),
  29409. name: "Back",
  29410. image: {
  29411. source: "./media/characters/balina-mahigan/back.svg",
  29412. extra: 445 / 428,
  29413. bottom: 4.07 / 448
  29414. }
  29415. },
  29416. arm: {
  29417. height: math.unit(1.88, "feet"),
  29418. name: "Arm",
  29419. image: {
  29420. source: "./media/characters/balina-mahigan/arm.svg"
  29421. }
  29422. },
  29423. backPort: {
  29424. height: math.unit(0.685, "feet"),
  29425. name: "Back Port",
  29426. image: {
  29427. source: "./media/characters/balina-mahigan/back-port.svg"
  29428. }
  29429. },
  29430. hoofpaw: {
  29431. height: math.unit(1.41, "feet"),
  29432. name: "Hoofpaw",
  29433. image: {
  29434. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29435. }
  29436. },
  29437. leftHandBack: {
  29438. height: math.unit(0.938, "feet"),
  29439. name: "Left Hand (Back)",
  29440. image: {
  29441. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29442. }
  29443. },
  29444. leftHandFront: {
  29445. height: math.unit(0.938, "feet"),
  29446. name: "Left Hand (Front)",
  29447. image: {
  29448. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29449. }
  29450. },
  29451. rightHandBack: {
  29452. height: math.unit(0.95, "feet"),
  29453. name: "Right Hand (Back)",
  29454. image: {
  29455. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29456. }
  29457. },
  29458. rightHandFront: {
  29459. height: math.unit(0.95, "feet"),
  29460. name: "Right Hand (Front)",
  29461. image: {
  29462. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29463. }
  29464. },
  29465. },
  29466. [
  29467. {
  29468. name: "Normal",
  29469. height: math.unit(6 + 4 / 12, "feet"),
  29470. default: true
  29471. },
  29472. ]
  29473. ))
  29474. characterMakers.push(() => makeCharacter(
  29475. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29476. {
  29477. front: {
  29478. height: math.unit(6, "feet"),
  29479. weight: math.unit(320, "lb"),
  29480. name: "Front",
  29481. image: {
  29482. source: "./media/characters/balina-mejeri/front.svg",
  29483. extra: 517 / 488,
  29484. bottom: 44.2 / 561
  29485. }
  29486. },
  29487. },
  29488. [
  29489. {
  29490. name: "Normal",
  29491. height: math.unit(6 + 4 / 12, "feet")
  29492. },
  29493. {
  29494. name: "Business",
  29495. height: math.unit(155, "feet"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29502. {
  29503. kneeling: {
  29504. height: math.unit(6 + 4 / 12, "feet"),
  29505. weight: math.unit(300 * 20, "lb"),
  29506. name: "Kneeling",
  29507. image: {
  29508. source: "./media/characters/balbarian/kneeling.svg",
  29509. extra: 922 / 862,
  29510. bottom: 42.4 / 965
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(6 + 4 / 12, "feet")
  29518. },
  29519. {
  29520. name: "Treasured",
  29521. height: math.unit(18 + 9 / 12, "feet"),
  29522. default: true
  29523. },
  29524. {
  29525. name: "Macro",
  29526. height: math.unit(900, "feet")
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(6 + 4 / 12, "feet"),
  29535. weight: math.unit(325, "lb"),
  29536. name: "Front",
  29537. image: {
  29538. source: "./media/characters/balina-amarini/front.svg",
  29539. extra: 415 / 403,
  29540. bottom: 19 / 433.4
  29541. }
  29542. },
  29543. back: {
  29544. height: math.unit(6 + 4 / 12, "feet"),
  29545. weight: math.unit(325, "lb"),
  29546. name: "Back",
  29547. image: {
  29548. source: "./media/characters/balina-amarini/back.svg",
  29549. extra: 415 / 403,
  29550. bottom: 13.5 / 432
  29551. }
  29552. },
  29553. overdrive: {
  29554. height: math.unit(6 + 4 / 12, "feet"),
  29555. weight: math.unit(400, "lb"),
  29556. name: "Overdrive",
  29557. image: {
  29558. source: "./media/characters/balina-amarini/overdrive.svg",
  29559. extra: 269 / 259,
  29560. bottom: 12 / 282
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Boom",
  29567. height: math.unit(9 + 10 / 12, "feet"),
  29568. default: true
  29569. },
  29570. {
  29571. name: "Macro",
  29572. height: math.unit(280, "feet")
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29578. {
  29579. goddess: {
  29580. height: math.unit(600, "feet"),
  29581. weight: math.unit(2000000, "tons"),
  29582. name: "Goddess",
  29583. image: {
  29584. source: "./media/characters/lady-kubwa/goddess.svg",
  29585. extra: 1240.5 / 1223,
  29586. bottom: 22 / 1263
  29587. }
  29588. },
  29589. goddesser: {
  29590. height: math.unit(900, "feet"),
  29591. weight: math.unit(20000000, "lb"),
  29592. name: "Goddess-er",
  29593. image: {
  29594. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29595. extra: 899 / 888,
  29596. bottom: 12.6 / 912
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Macro",
  29603. height: math.unit(600, "feet"),
  29604. default: true
  29605. },
  29606. {
  29607. name: "Megamacro",
  29608. height: math.unit(250, "miles")
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29614. {
  29615. front: {
  29616. height: math.unit(7 + 7 / 12, "feet"),
  29617. weight: math.unit(250, "lb"),
  29618. name: "Front",
  29619. image: {
  29620. source: "./media/characters/tala-grovehorn/front.svg",
  29621. extra: 2636 / 2525,
  29622. bottom: 147 / 2781
  29623. }
  29624. },
  29625. back: {
  29626. height: math.unit(7 + 7 / 12, "feet"),
  29627. weight: math.unit(250, "lb"),
  29628. name: "Back",
  29629. image: {
  29630. source: "./media/characters/tala-grovehorn/back.svg",
  29631. extra: 2635 / 2539,
  29632. bottom: 100 / 2732.8
  29633. }
  29634. },
  29635. mouth: {
  29636. height: math.unit(1.15, "feet"),
  29637. name: "Mouth",
  29638. image: {
  29639. source: "./media/characters/tala-grovehorn/mouth.svg"
  29640. }
  29641. },
  29642. dick: {
  29643. height: math.unit(2.36, "feet"),
  29644. name: "Dick",
  29645. image: {
  29646. source: "./media/characters/tala-grovehorn/dick.svg"
  29647. }
  29648. },
  29649. slit: {
  29650. height: math.unit(0.61, "feet"),
  29651. name: "Slit",
  29652. image: {
  29653. source: "./media/characters/tala-grovehorn/slit.svg"
  29654. }
  29655. },
  29656. },
  29657. [
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29662. {
  29663. front: {
  29664. height: math.unit(7 + 7 / 12, "feet"),
  29665. weight: math.unit(225, "lb"),
  29666. name: "Front",
  29667. image: {
  29668. source: "./media/characters/epona/front.svg",
  29669. extra: 2445 / 2290,
  29670. bottom: 251 / 2696
  29671. }
  29672. },
  29673. back: {
  29674. height: math.unit(7 + 7 / 12, "feet"),
  29675. weight: math.unit(225, "lb"),
  29676. name: "Back",
  29677. image: {
  29678. source: "./media/characters/epona/back.svg",
  29679. extra: 2546 / 2408,
  29680. bottom: 44 / 2589
  29681. }
  29682. },
  29683. genitals: {
  29684. height: math.unit(1.5, "feet"),
  29685. name: "Genitals",
  29686. image: {
  29687. source: "./media/characters/epona/genitals.svg"
  29688. }
  29689. },
  29690. },
  29691. [
  29692. {
  29693. name: "Normal",
  29694. height: math.unit(7 + 7 / 12, "feet"),
  29695. default: true
  29696. },
  29697. ]
  29698. ))
  29699. characterMakers.push(() => makeCharacter(
  29700. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29701. {
  29702. front: {
  29703. height: math.unit(7, "feet"),
  29704. weight: math.unit(518, "lb"),
  29705. name: "Front",
  29706. image: {
  29707. source: "./media/characters/avia-bloodbourn/front.svg",
  29708. extra: 1466 / 1350,
  29709. bottom: 65 / 1527
  29710. }
  29711. },
  29712. },
  29713. [
  29714. ]
  29715. ))
  29716. characterMakers.push(() => makeCharacter(
  29717. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29718. {
  29719. front: {
  29720. height: math.unit(9.35, "feet"),
  29721. weight: math.unit(600, "lb"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/amera/front.svg",
  29725. extra: 891 / 818,
  29726. bottom: 30 / 922.7
  29727. }
  29728. },
  29729. back: {
  29730. height: math.unit(9.35, "feet"),
  29731. weight: math.unit(600, "lb"),
  29732. name: "Back",
  29733. image: {
  29734. source: "./media/characters/amera/back.svg",
  29735. extra: 876 / 824,
  29736. bottom: 6.8 / 884
  29737. }
  29738. },
  29739. dick: {
  29740. height: math.unit(2.14, "feet"),
  29741. name: "Dick",
  29742. image: {
  29743. source: "./media/characters/amera/dick.svg"
  29744. }
  29745. },
  29746. },
  29747. [
  29748. {
  29749. name: "Normal",
  29750. height: math.unit(9.35, "feet"),
  29751. default: true
  29752. },
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29757. {
  29758. kneeling: {
  29759. height: math.unit(3 + 4 / 12, "feet"),
  29760. weight: math.unit(90, "lb"),
  29761. name: "Kneeling",
  29762. image: {
  29763. source: "./media/characters/rosewen/kneeling.svg",
  29764. extra: 1835 / 1571,
  29765. bottom: 27.7 / 1862
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Normal",
  29772. height: math.unit(3 + 4 / 12, "feet"),
  29773. default: true
  29774. },
  29775. ]
  29776. ))
  29777. characterMakers.push(() => makeCharacter(
  29778. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29779. {
  29780. front: {
  29781. height: math.unit(5 + 10 / 12, "feet"),
  29782. weight: math.unit(200, "lb"),
  29783. name: "Front",
  29784. image: {
  29785. source: "./media/characters/sabah/front.svg",
  29786. extra: 849 / 763,
  29787. bottom: 33.9 / 881
  29788. }
  29789. },
  29790. },
  29791. [
  29792. {
  29793. name: "Normal",
  29794. height: math.unit(5 + 10 / 12, "feet"),
  29795. default: true
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29801. {
  29802. front: {
  29803. height: math.unit(3 + 5 / 12, "feet"),
  29804. weight: math.unit(40, "kg"),
  29805. name: "Front",
  29806. image: {
  29807. source: "./media/characters/purple-flame/front.svg",
  29808. extra: 1577 / 1412,
  29809. bottom: 97 / 1694
  29810. }
  29811. },
  29812. frontDressed: {
  29813. height: math.unit(3 + 5 / 12, "feet"),
  29814. weight: math.unit(40, "kg"),
  29815. name: "Front (Dressed)",
  29816. image: {
  29817. source: "./media/characters/purple-flame/front-dressed.svg",
  29818. extra: 1577 / 1412,
  29819. bottom: 97 / 1694
  29820. }
  29821. },
  29822. headphones: {
  29823. height: math.unit(0.85, "feet"),
  29824. name: "Headphones",
  29825. image: {
  29826. source: "./media/characters/purple-flame/headphones.svg"
  29827. }
  29828. },
  29829. },
  29830. [
  29831. {
  29832. name: "Really Small",
  29833. height: math.unit(5, "cm")
  29834. },
  29835. {
  29836. name: "Micro",
  29837. height: math.unit(1 + 5 / 12, "feet")
  29838. },
  29839. {
  29840. name: "Normal",
  29841. height: math.unit(3 + 5 / 12, "feet"),
  29842. default: true
  29843. },
  29844. {
  29845. name: "Minimacro",
  29846. height: math.unit(125, "feet")
  29847. },
  29848. {
  29849. name: "Macro",
  29850. height: math.unit(0.5, "miles")
  29851. },
  29852. {
  29853. name: "Megamacro",
  29854. height: math.unit(50, "miles")
  29855. },
  29856. {
  29857. name: "Gigantic",
  29858. height: math.unit(750, "miles")
  29859. },
  29860. {
  29861. name: "Planetary",
  29862. height: math.unit(15000, "miles")
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29868. {
  29869. front: {
  29870. height: math.unit(14, "feet"),
  29871. weight: math.unit(959, "lb"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/arsenal/front.svg",
  29875. extra: 2357 / 2157,
  29876. bottom: 93 / 2458
  29877. }
  29878. },
  29879. },
  29880. [
  29881. {
  29882. name: "Normal",
  29883. height: math.unit(14, "feet"),
  29884. default: true
  29885. },
  29886. ]
  29887. ))
  29888. characterMakers.push(() => makeCharacter(
  29889. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29890. {
  29891. front: {
  29892. height: math.unit(6, "feet"),
  29893. weight: math.unit(150, "lb"),
  29894. name: "Front",
  29895. image: {
  29896. source: "./media/characters/adira/front.svg",
  29897. extra: 2121/2013,
  29898. bottom: 206/2327
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Micro",
  29905. height: math.unit(4, "inches"),
  29906. default: true
  29907. },
  29908. {
  29909. name: "Macro",
  29910. height: math.unit(50, "feet")
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(16, "feet"),
  29919. weight: math.unit(1000, "lb"),
  29920. name: "Front",
  29921. image: {
  29922. source: "./media/characters/grim/front.svg",
  29923. extra: 622 / 614,
  29924. bottom: 18.1 / 642
  29925. }
  29926. },
  29927. back: {
  29928. height: math.unit(16, "feet"),
  29929. weight: math.unit(1000, "lb"),
  29930. name: "Back",
  29931. image: {
  29932. source: "./media/characters/grim/back.svg",
  29933. extra: 610.6 / 602,
  29934. bottom: 40.8 / 652
  29935. }
  29936. },
  29937. hunched: {
  29938. height: math.unit(9.75, "feet"),
  29939. weight: math.unit(1000, "lb"),
  29940. name: "Hunched",
  29941. image: {
  29942. source: "./media/characters/grim/hunched.svg",
  29943. extra: 304 / 297,
  29944. bottom: 35.4 / 394
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(16, "feet"),
  29952. default: true
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(2.3, "meters"),
  29961. weight: math.unit(300, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/sinja/front-sfw.svg",
  29965. extra: 1393 / 1294,
  29966. bottom: 70 / 1463
  29967. }
  29968. },
  29969. frontNsfw: {
  29970. height: math.unit(2.3, "meters"),
  29971. weight: math.unit(300, "lb"),
  29972. name: "Front (NSFW)",
  29973. image: {
  29974. source: "./media/characters/sinja/front-nsfw.svg",
  29975. extra: 1393 / 1294,
  29976. bottom: 70 / 1463
  29977. }
  29978. },
  29979. back: {
  29980. height: math.unit(2.3, "meters"),
  29981. weight: math.unit(300, "lb"),
  29982. name: "Back",
  29983. image: {
  29984. source: "./media/characters/sinja/back.svg",
  29985. extra: 1393 / 1294,
  29986. bottom: 70 / 1463
  29987. }
  29988. },
  29989. head: {
  29990. height: math.unit(1.771, "feet"),
  29991. name: "Head",
  29992. image: {
  29993. source: "./media/characters/sinja/head.svg"
  29994. }
  29995. },
  29996. slit: {
  29997. height: math.unit(0.8, "feet"),
  29998. name: "Slit",
  29999. image: {
  30000. source: "./media/characters/sinja/slit.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(2.3, "meters")
  30008. },
  30009. {
  30010. name: "Macro",
  30011. height: math.unit(91, "meters"),
  30012. default: true
  30013. },
  30014. {
  30015. name: "Megamacro",
  30016. height: math.unit(91440, "meters")
  30017. },
  30018. {
  30019. name: "Gigamacro",
  30020. height: math.unit(60960000, "meters")
  30021. },
  30022. {
  30023. name: "Teramacro",
  30024. height: math.unit(9144000000, "meters")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30030. {
  30031. front: {
  30032. height: math.unit(1.7, "meters"),
  30033. weight: math.unit(130, "lb"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/kyu/front.svg",
  30037. extra: 415 / 395,
  30038. bottom: 5 / 420
  30039. }
  30040. },
  30041. head: {
  30042. height: math.unit(1.75, "feet"),
  30043. name: "Head",
  30044. image: {
  30045. source: "./media/characters/kyu/head.svg"
  30046. }
  30047. },
  30048. foot: {
  30049. height: math.unit(0.81, "feet"),
  30050. name: "Foot",
  30051. image: {
  30052. source: "./media/characters/kyu/foot.svg"
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(1.7, "meters")
  30060. },
  30061. {
  30062. name: "Macro",
  30063. height: math.unit(131, "feet"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Megamacro",
  30068. height: math.unit(91440, "meters")
  30069. },
  30070. {
  30071. name: "Gigamacro",
  30072. height: math.unit(60960000, "meters")
  30073. },
  30074. {
  30075. name: "Teramacro",
  30076. height: math.unit(9144000000, "meters")
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(7 + 1 / 12, "feet"),
  30085. weight: math.unit(250, "lb"),
  30086. name: "Front",
  30087. image: {
  30088. source: "./media/characters/joey/front.svg",
  30089. extra: 1791 / 1537,
  30090. bottom: 28 / 1816
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Micro",
  30097. height: math.unit(3, "inches")
  30098. },
  30099. {
  30100. name: "Normal",
  30101. height: math.unit(7 + 1 / 12, "feet"),
  30102. default: true
  30103. },
  30104. ]
  30105. ))
  30106. characterMakers.push(() => makeCharacter(
  30107. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30108. {
  30109. front: {
  30110. height: math.unit(165, "cm"),
  30111. weight: math.unit(140, "lb"),
  30112. name: "Front",
  30113. image: {
  30114. source: "./media/characters/sam-evans/front.svg",
  30115. extra: 3417 / 3230,
  30116. bottom: 41.3 / 3417
  30117. }
  30118. },
  30119. frontSixTails: {
  30120. height: math.unit(165, "cm"),
  30121. weight: math.unit(140, "lb"),
  30122. name: "Front-six-tails",
  30123. image: {
  30124. source: "./media/characters/sam-evans/front-six-tails.svg",
  30125. extra: 3417 / 3230,
  30126. bottom: 41.3 / 3417
  30127. }
  30128. },
  30129. back: {
  30130. height: math.unit(165, "cm"),
  30131. weight: math.unit(140, "lb"),
  30132. name: "Back",
  30133. image: {
  30134. source: "./media/characters/sam-evans/back.svg",
  30135. extra: 3227 / 3032,
  30136. bottom: 6.8 / 3234
  30137. }
  30138. },
  30139. face: {
  30140. height: math.unit(0.68, "feet"),
  30141. name: "Face",
  30142. image: {
  30143. source: "./media/characters/sam-evans/face.svg"
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Normal",
  30150. height: math.unit(165, "cm"),
  30151. default: true
  30152. },
  30153. {
  30154. name: "Macro",
  30155. height: math.unit(100, "meters")
  30156. },
  30157. {
  30158. name: "Macro+",
  30159. height: math.unit(800, "meters")
  30160. },
  30161. {
  30162. name: "Macro++",
  30163. height: math.unit(3, "km")
  30164. },
  30165. {
  30166. name: "Macro+++",
  30167. height: math.unit(30, "km")
  30168. },
  30169. ]
  30170. ))
  30171. characterMakers.push(() => makeCharacter(
  30172. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30173. {
  30174. front: {
  30175. height: math.unit(10, "feet"),
  30176. weight: math.unit(750, "lb"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/juliet-a/front.svg",
  30180. extra: 1766 / 1720,
  30181. bottom: 43 / 1809
  30182. }
  30183. },
  30184. back: {
  30185. height: math.unit(10, "feet"),
  30186. weight: math.unit(750, "lb"),
  30187. name: "Back",
  30188. image: {
  30189. source: "./media/characters/juliet-a/back.svg",
  30190. extra: 1781 / 1734,
  30191. bottom: 35 / 1810,
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(10, "feet"),
  30199. default: true
  30200. },
  30201. {
  30202. name: "Dragon Form",
  30203. height: math.unit(250, "feet")
  30204. },
  30205. {
  30206. name: "Macro",
  30207. height: math.unit(1000, "feet")
  30208. },
  30209. {
  30210. name: "Megamacro",
  30211. height: math.unit(10000, "feet")
  30212. }
  30213. ]
  30214. ))
  30215. characterMakers.push(() => makeCharacter(
  30216. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30217. {
  30218. regular: {
  30219. height: math.unit(7 + 3 / 12, "feet"),
  30220. weight: math.unit(260, "lb"),
  30221. name: "Regular",
  30222. image: {
  30223. source: "./media/characters/wild/regular.svg",
  30224. extra: 97.45 / 92,
  30225. bottom: 6.8 / 104.3
  30226. }
  30227. },
  30228. biggums: {
  30229. height: math.unit(8 + 6 / 12, "feet"),
  30230. weight: math.unit(425, "lb"),
  30231. name: "Biggums",
  30232. image: {
  30233. source: "./media/characters/wild/biggums.svg",
  30234. extra: 97.45 / 92,
  30235. bottom: 7.5 / 132.34
  30236. }
  30237. },
  30238. mawRegular: {
  30239. height: math.unit(1.24, "feet"),
  30240. name: "Maw (Regular)",
  30241. image: {
  30242. source: "./media/characters/wild/maw.svg"
  30243. }
  30244. },
  30245. mawBiggums: {
  30246. height: math.unit(1.47, "feet"),
  30247. name: "Maw (Biggums)",
  30248. image: {
  30249. source: "./media/characters/wild/maw.svg"
  30250. }
  30251. },
  30252. },
  30253. [
  30254. {
  30255. name: "Normal",
  30256. height: math.unit(7 + 3 / 12, "feet"),
  30257. default: true
  30258. },
  30259. ]
  30260. ))
  30261. characterMakers.push(() => makeCharacter(
  30262. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30263. {
  30264. front: {
  30265. height: math.unit(2.5, "meters"),
  30266. weight: math.unit(200, "kg"),
  30267. name: "Front",
  30268. image: {
  30269. source: "./media/characters/vidar/front.svg",
  30270. extra: 2994 / 2795,
  30271. bottom: 56 / 3061
  30272. }
  30273. },
  30274. back: {
  30275. height: math.unit(2.5, "meters"),
  30276. weight: math.unit(200, "kg"),
  30277. name: "Back",
  30278. image: {
  30279. source: "./media/characters/vidar/back.svg",
  30280. extra: 3131 / 2928,
  30281. bottom: 13.5 / 3141.5
  30282. }
  30283. },
  30284. feral: {
  30285. height: math.unit(2.5, "meters"),
  30286. weight: math.unit(2000, "kg"),
  30287. name: "Feral",
  30288. image: {
  30289. source: "./media/characters/vidar/feral.svg",
  30290. extra: 2790 / 1765,
  30291. bottom: 6 / 2796
  30292. }
  30293. },
  30294. },
  30295. [
  30296. {
  30297. name: "Normal",
  30298. height: math.unit(2.5, "meters"),
  30299. default: true
  30300. },
  30301. {
  30302. name: "Macro",
  30303. height: math.unit(100, "meters")
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(5 + 9 / 12, "feet"),
  30312. weight: math.unit(120, "lb"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/ash/front.svg",
  30316. extra: 2189 / 1961,
  30317. bottom: 5.2 / 2194
  30318. }
  30319. },
  30320. },
  30321. [
  30322. {
  30323. name: "Normal",
  30324. height: math.unit(5 + 9 / 12, "feet"),
  30325. default: true
  30326. },
  30327. ]
  30328. ))
  30329. characterMakers.push(() => makeCharacter(
  30330. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30331. {
  30332. front: {
  30333. height: math.unit(9, "feet"),
  30334. weight: math.unit(10000, "lb"),
  30335. name: "Front",
  30336. image: {
  30337. source: "./media/characters/gygabite/front.svg",
  30338. bottom: 31.7 / 537.8,
  30339. extra: 505 / 370
  30340. }
  30341. },
  30342. },
  30343. [
  30344. {
  30345. name: "Normal",
  30346. height: math.unit(9, "feet"),
  30347. default: true
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30353. {
  30354. front: {
  30355. height: math.unit(12, "feet"),
  30356. weight: math.unit(4000, "lb"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/p0tat0/front.svg",
  30360. extra: 1065 / 921,
  30361. bottom: 55.7 / 1121.25
  30362. }
  30363. },
  30364. },
  30365. [
  30366. {
  30367. name: "Normal",
  30368. height: math.unit(12, "feet"),
  30369. default: true
  30370. },
  30371. ]
  30372. ))
  30373. characterMakers.push(() => makeCharacter(
  30374. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30375. {
  30376. side: {
  30377. height: math.unit(6.5, "feet"),
  30378. weight: math.unit(800, "lb"),
  30379. name: "Side",
  30380. image: {
  30381. source: "./media/characters/dusk/side.svg",
  30382. extra: 615 / 373,
  30383. bottom: 53 / 664
  30384. }
  30385. },
  30386. sitting: {
  30387. height: math.unit(7, "feet"),
  30388. weight: math.unit(800, "lb"),
  30389. name: "Sitting",
  30390. image: {
  30391. source: "./media/characters/dusk/sitting.svg",
  30392. extra: 753 / 425,
  30393. bottom: 33 / 774
  30394. }
  30395. },
  30396. head: {
  30397. height: math.unit(6.1, "feet"),
  30398. name: "Head",
  30399. image: {
  30400. source: "./media/characters/dusk/head.svg"
  30401. }
  30402. },
  30403. },
  30404. [
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(7, "feet"),
  30408. default: true
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30414. {
  30415. front: {
  30416. height: math.unit(15, "feet"),
  30417. weight: math.unit(7000, "lb"),
  30418. name: "Front",
  30419. image: {
  30420. source: "./media/characters/jay-direwolf/front.svg",
  30421. extra: 1810 / 1732,
  30422. bottom: 66 / 1892
  30423. }
  30424. },
  30425. },
  30426. [
  30427. {
  30428. name: "Normal",
  30429. height: math.unit(15, "feet"),
  30430. default: true
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(4 + 9 / 12, "feet"),
  30439. weight: math.unit(130, "lb"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/anchovie/front.svg",
  30443. extra: 382 / 350,
  30444. bottom: 25 / 409
  30445. }
  30446. },
  30447. back: {
  30448. height: math.unit(4 + 9 / 12, "feet"),
  30449. weight: math.unit(130, "lb"),
  30450. name: "Back",
  30451. image: {
  30452. source: "./media/characters/anchovie/back.svg",
  30453. extra: 385 / 352,
  30454. bottom: 16.6 / 402
  30455. }
  30456. },
  30457. frontDressed: {
  30458. height: math.unit(4 + 9 / 12, "feet"),
  30459. weight: math.unit(130, "lb"),
  30460. name: "Front (Dressed)",
  30461. image: {
  30462. source: "./media/characters/anchovie/front-dressed.svg",
  30463. extra: 382 / 350,
  30464. bottom: 25 / 409
  30465. }
  30466. },
  30467. backDressed: {
  30468. height: math.unit(4 + 9 / 12, "feet"),
  30469. weight: math.unit(130, "lb"),
  30470. name: "Back (Dressed)",
  30471. image: {
  30472. source: "./media/characters/anchovie/back-dressed.svg",
  30473. extra: 385 / 352,
  30474. bottom: 16.6 / 402
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Micro",
  30481. height: math.unit(6.4, "inches")
  30482. },
  30483. {
  30484. name: "Normal",
  30485. height: math.unit(4 + 9 / 12, "feet"),
  30486. default: true
  30487. },
  30488. ]
  30489. ))
  30490. characterMakers.push(() => makeCharacter(
  30491. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30492. {
  30493. front: {
  30494. height: math.unit(2, "meters"),
  30495. weight: math.unit(180, "lb"),
  30496. name: "Front",
  30497. image: {
  30498. source: "./media/characters/acidrenamon/front.svg",
  30499. extra: 987 / 890,
  30500. bottom: 22.8 / 1009
  30501. }
  30502. },
  30503. back: {
  30504. height: math.unit(2, "meters"),
  30505. weight: math.unit(180, "lb"),
  30506. name: "Back",
  30507. image: {
  30508. source: "./media/characters/acidrenamon/back.svg",
  30509. extra: 983 / 891,
  30510. bottom: 8.4 / 992
  30511. }
  30512. },
  30513. head: {
  30514. height: math.unit(1.92, "feet"),
  30515. name: "Head",
  30516. image: {
  30517. source: "./media/characters/acidrenamon/head.svg"
  30518. }
  30519. },
  30520. rump: {
  30521. height: math.unit(1.72, "feet"),
  30522. name: "Rump",
  30523. image: {
  30524. source: "./media/characters/acidrenamon/rump.svg"
  30525. }
  30526. },
  30527. tail: {
  30528. height: math.unit(4.2, "feet"),
  30529. name: "Tail",
  30530. image: {
  30531. source: "./media/characters/acidrenamon/tail.svg"
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Normal",
  30538. height: math.unit(2, "meters"),
  30539. default: true
  30540. },
  30541. {
  30542. name: "Minimacro",
  30543. height: math.unit(7, "meters")
  30544. },
  30545. {
  30546. name: "Macro",
  30547. height: math.unit(200, "meters")
  30548. },
  30549. {
  30550. name: "Gigamacro",
  30551. height: math.unit(0.2, "earths")
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30557. {
  30558. front: {
  30559. height: math.unit(152, "feet"),
  30560. name: "Front",
  30561. image: {
  30562. source: "./media/characters/kenzie-lee/front.svg",
  30563. extra: 1869/1774,
  30564. bottom: 128/1997
  30565. }
  30566. },
  30567. side: {
  30568. height: math.unit(86, "feet"),
  30569. name: "Side",
  30570. image: {
  30571. source: "./media/characters/kenzie-lee/side.svg",
  30572. extra: 930/815,
  30573. bottom: 177/1107
  30574. }
  30575. },
  30576. paw: {
  30577. height: math.unit(15, "feet"),
  30578. name: "Paw",
  30579. image: {
  30580. source: "./media/characters/kenzie-lee/paw.svg"
  30581. }
  30582. },
  30583. },
  30584. [
  30585. {
  30586. name: "Kenzie Flea",
  30587. height: math.unit(2, "mm"),
  30588. default: true
  30589. },
  30590. {
  30591. name: "Micro",
  30592. height: math.unit(2, "inches")
  30593. },
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(152, "feet")
  30597. },
  30598. {
  30599. name: "Megamacro",
  30600. height: math.unit(7, "miles")
  30601. },
  30602. {
  30603. name: "Gigamacro",
  30604. height: math.unit(8000, "miles")
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(6, "feet"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/withers/front.svg",
  30616. extra: 1935/1760,
  30617. bottom: 72/2007
  30618. }
  30619. },
  30620. back: {
  30621. height: math.unit(6, "feet"),
  30622. name: "Back",
  30623. image: {
  30624. source: "./media/characters/withers/back.svg",
  30625. extra: 1944/1792,
  30626. bottom: 12/1956
  30627. }
  30628. },
  30629. dressed: {
  30630. height: math.unit(6, "feet"),
  30631. name: "Dressed",
  30632. image: {
  30633. source: "./media/characters/withers/dressed.svg",
  30634. extra: 1937/1765,
  30635. bottom: 73/2010
  30636. }
  30637. },
  30638. phase1: {
  30639. height: math.unit(1.1, "feet"),
  30640. name: "Phase 1",
  30641. image: {
  30642. source: "./media/characters/withers/phase-1.svg",
  30643. extra: 1885/1232,
  30644. bottom: 0/1885
  30645. }
  30646. },
  30647. phase2: {
  30648. height: math.unit(1.05, "feet"),
  30649. name: "Phase 2",
  30650. image: {
  30651. source: "./media/characters/withers/phase-2.svg",
  30652. extra: 1792/1090,
  30653. bottom: 0/1792
  30654. }
  30655. },
  30656. partyWipe: {
  30657. height: math.unit(1.1, "feet"),
  30658. name: "Party Wipe",
  30659. image: {
  30660. source: "./media/characters/withers/party-wipe.svg",
  30661. extra: 1864/1207,
  30662. bottom: 0/1864
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Macro",
  30669. height: math.unit(167, "feet"),
  30670. default: true
  30671. },
  30672. {
  30673. name: "Megamacro",
  30674. height: math.unit(15, "miles")
  30675. }
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30680. {
  30681. front: {
  30682. height: math.unit(6 + 7 / 12, "feet"),
  30683. weight: math.unit(250, "lb"),
  30684. name: "Front",
  30685. image: {
  30686. source: "./media/characters/nemoskii/front.svg",
  30687. extra: 2270 / 1734,
  30688. bottom: 86 / 2354
  30689. }
  30690. },
  30691. back: {
  30692. height: math.unit(6 + 7 / 12, "feet"),
  30693. weight: math.unit(250, "lb"),
  30694. name: "Back",
  30695. image: {
  30696. source: "./media/characters/nemoskii/back.svg",
  30697. extra: 1845 / 1788,
  30698. bottom: 10.5 / 1852
  30699. }
  30700. },
  30701. head: {
  30702. height: math.unit(1.31, "feet"),
  30703. name: "Head",
  30704. image: {
  30705. source: "./media/characters/nemoskii/head.svg"
  30706. }
  30707. },
  30708. },
  30709. [
  30710. {
  30711. name: "Micro",
  30712. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30713. },
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(6 + 7 / 12, "feet"),
  30717. default: true
  30718. },
  30719. {
  30720. name: "Macro",
  30721. height: math.unit((6 + 7 / 12) * 150, "feet")
  30722. },
  30723. {
  30724. name: "Macro+",
  30725. height: math.unit((6 + 7 / 12) * 500, "feet")
  30726. },
  30727. {
  30728. name: "Megamacro",
  30729. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(1, "mile"),
  30738. weight: math.unit(265261.9, "lb"),
  30739. name: "Front",
  30740. image: {
  30741. source: "./media/characters/shui/front.svg",
  30742. extra: 1633 / 1564,
  30743. bottom: 91.5 / 1726
  30744. }
  30745. },
  30746. },
  30747. [
  30748. {
  30749. name: "Macro",
  30750. height: math.unit(1, "mile"),
  30751. default: true
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(12 + 6 / 12, "feet"),
  30760. weight: math.unit(1342, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/arokh-takakura/front.svg",
  30764. extra: 1089 / 1043,
  30765. bottom: 77.4 / 1176.7
  30766. }
  30767. },
  30768. back: {
  30769. height: math.unit(12 + 6 / 12, "feet"),
  30770. weight: math.unit(1342, "lb"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/arokh-takakura/back.svg",
  30774. extra: 1046 / 1019,
  30775. bottom: 102 / 1150
  30776. }
  30777. },
  30778. },
  30779. [
  30780. {
  30781. name: "Big",
  30782. height: math.unit(12 + 6 / 12, "feet"),
  30783. default: true
  30784. },
  30785. ]
  30786. ))
  30787. characterMakers.push(() => makeCharacter(
  30788. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30789. {
  30790. front: {
  30791. height: math.unit(5 + 6 / 12, "feet"),
  30792. weight: math.unit(150, "lb"),
  30793. name: "Front",
  30794. image: {
  30795. source: "./media/characters/theo/front.svg",
  30796. extra: 1184 / 1131,
  30797. bottom: 7.4 / 1191
  30798. }
  30799. },
  30800. },
  30801. [
  30802. {
  30803. name: "Micro",
  30804. height: math.unit(5, "inches")
  30805. },
  30806. {
  30807. name: "Normal",
  30808. height: math.unit(5 + 6 / 12, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30815. {
  30816. front: {
  30817. height: math.unit(5 + 9 / 12, "feet"),
  30818. weight: math.unit(130, "lb"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/cecelia-swift/front.svg",
  30822. extra: 502 / 484,
  30823. bottom: 23 / 523
  30824. }
  30825. },
  30826. back: {
  30827. height: math.unit(5 + 9 / 12, "feet"),
  30828. weight: math.unit(130, "lb"),
  30829. name: "Back",
  30830. image: {
  30831. source: "./media/characters/cecelia-swift/back.svg",
  30832. extra: 499 / 485,
  30833. bottom: 12 / 511
  30834. }
  30835. },
  30836. head: {
  30837. height: math.unit(0.90, "feet"),
  30838. name: "Head",
  30839. image: {
  30840. source: "./media/characters/cecelia-swift/head.svg"
  30841. }
  30842. },
  30843. rump: {
  30844. height: math.unit(1.75, "feet"),
  30845. name: "Rump",
  30846. image: {
  30847. source: "./media/characters/cecelia-swift/rump.svg"
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(5 + 9 / 12, "feet"),
  30855. default: true
  30856. },
  30857. {
  30858. name: "Big",
  30859. height: math.unit(50, "feet")
  30860. },
  30861. {
  30862. name: "Macro",
  30863. height: math.unit(100, "feet")
  30864. },
  30865. {
  30866. name: "Macro+",
  30867. height: math.unit(500, "feet")
  30868. },
  30869. {
  30870. name: "Macro++",
  30871. height: math.unit(1000, "feet")
  30872. },
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30877. {
  30878. front: {
  30879. height: math.unit(6, "feet"),
  30880. weight: math.unit(150, "lb"),
  30881. name: "Front",
  30882. image: {
  30883. source: "./media/characters/kaunan/front.svg",
  30884. extra: 2890 / 2523,
  30885. bottom: 49 / 2939
  30886. }
  30887. },
  30888. },
  30889. [
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(150, "feet"),
  30893. default: true
  30894. },
  30895. ]
  30896. ))
  30897. characterMakers.push(() => makeCharacter(
  30898. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30899. {
  30900. dressed: {
  30901. height: math.unit(175, "cm"),
  30902. weight: math.unit(60, "kg"),
  30903. name: "Dressed",
  30904. image: {
  30905. source: "./media/characters/fei/dressed.svg",
  30906. extra: 1402/1278,
  30907. bottom: 27/1429
  30908. }
  30909. },
  30910. nude: {
  30911. height: math.unit(175, "cm"),
  30912. weight: math.unit(60, "kg"),
  30913. name: "Nude",
  30914. image: {
  30915. source: "./media/characters/fei/nude.svg",
  30916. extra: 1402/1278,
  30917. bottom: 27/1429
  30918. }
  30919. },
  30920. heels: {
  30921. height: math.unit(0.466, "feet"),
  30922. name: "Heels",
  30923. image: {
  30924. source: "./media/characters/fei/heels.svg",
  30925. extra: 156/152,
  30926. bottom: 28/184
  30927. }
  30928. },
  30929. },
  30930. [
  30931. {
  30932. name: "Mortal",
  30933. height: math.unit(175, "cm")
  30934. },
  30935. {
  30936. name: "Normal",
  30937. height: math.unit(3500, "m")
  30938. },
  30939. {
  30940. name: "Stroll",
  30941. height: math.unit(18.4, "km"),
  30942. default: true
  30943. },
  30944. {
  30945. name: "Showoff",
  30946. height: math.unit(175, "km")
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30952. {
  30953. front: {
  30954. height: math.unit(7, "feet"),
  30955. weight: math.unit(1000, "kg"),
  30956. name: "Front",
  30957. image: {
  30958. source: "./media/characters/edrax/front.svg",
  30959. extra: 2838 / 2550,
  30960. bottom: 130 / 2968
  30961. }
  30962. },
  30963. },
  30964. [
  30965. {
  30966. name: "Small",
  30967. height: math.unit(7, "feet")
  30968. },
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(1500, "meters")
  30972. },
  30973. {
  30974. name: "Mega",
  30975. height: math.unit(12000000, "km"),
  30976. default: true
  30977. },
  30978. {
  30979. name: "Megamacro",
  30980. height: math.unit(10600000, "lightyears")
  30981. },
  30982. {
  30983. name: "Hypermacro",
  30984. height: math.unit(256, "yottameters")
  30985. },
  30986. ]
  30987. ))
  30988. characterMakers.push(() => makeCharacter(
  30989. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30990. {
  30991. front: {
  30992. height: math.unit(10, "feet"),
  30993. weight: math.unit(750, "lb"),
  30994. name: "Front",
  30995. image: {
  30996. source: "./media/characters/clove/front.svg",
  30997. extra: 1918/1751,
  30998. bottom: 52/1970
  30999. }
  31000. },
  31001. back: {
  31002. height: math.unit(10, "feet"),
  31003. weight: math.unit(750, "lb"),
  31004. name: "Back",
  31005. image: {
  31006. source: "./media/characters/clove/back.svg",
  31007. extra: 1912/1747,
  31008. bottom: 50/1962
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Normal",
  31015. height: math.unit(10, "feet"),
  31016. default: true
  31017. },
  31018. ]
  31019. ))
  31020. characterMakers.push(() => makeCharacter(
  31021. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31022. {
  31023. front: {
  31024. height: math.unit(4, "feet"),
  31025. weight: math.unit(50, "lb"),
  31026. name: "Front",
  31027. image: {
  31028. source: "./media/characters/alex-rabbit/front.svg",
  31029. extra: 507 / 458,
  31030. bottom: 18.5 / 527
  31031. }
  31032. },
  31033. back: {
  31034. height: math.unit(4, "feet"),
  31035. weight: math.unit(50, "lb"),
  31036. name: "Back",
  31037. image: {
  31038. source: "./media/characters/alex-rabbit/back.svg",
  31039. extra: 502 / 460,
  31040. bottom: 18.9 / 521
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Normal",
  31047. height: math.unit(4, "feet"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(1 + 3 / 12, "feet"),
  31057. weight: math.unit(80, "lb"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/zander-rose/front.svg",
  31061. extra: 916 / 797,
  31062. bottom: 17 / 933
  31063. }
  31064. },
  31065. back: {
  31066. height: math.unit(1 + 3 / 12, "feet"),
  31067. weight: math.unit(80, "lb"),
  31068. name: "Back",
  31069. image: {
  31070. source: "./media/characters/zander-rose/back.svg",
  31071. extra: 903 / 779,
  31072. bottom: 31 / 934
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Normal",
  31079. height: math.unit(1 + 3 / 12, "feet"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31086. {
  31087. anthro: {
  31088. height: math.unit(6, "feet"),
  31089. weight: math.unit(150, "lb"),
  31090. name: "Anthro",
  31091. image: {
  31092. source: "./media/characters/razz/anthro.svg",
  31093. extra: 1437 / 1343,
  31094. bottom: 48 / 1485
  31095. }
  31096. },
  31097. feral: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Feral",
  31101. image: {
  31102. source: "./media/characters/razz/feral.svg",
  31103. extra: 2569 / 1385,
  31104. bottom: 95 / 2664
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(6, "feet"),
  31112. default: true
  31113. },
  31114. ]
  31115. ))
  31116. characterMakers.push(() => makeCharacter(
  31117. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31118. {
  31119. front: {
  31120. height: math.unit(9 + 4 / 12, "feet"),
  31121. weight: math.unit(500, "lb"),
  31122. name: "Front",
  31123. image: {
  31124. source: "./media/characters/morrigan/front.svg",
  31125. extra: 2707 / 2579,
  31126. bottom: 156 / 2863
  31127. }
  31128. },
  31129. },
  31130. [
  31131. {
  31132. name: "Normal",
  31133. height: math.unit(9 + 4 / 12, "feet"),
  31134. default: true
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(5, "stories"),
  31143. weight: math.unit(4000, "lb"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/jenene/front.svg",
  31147. extra: 1780 / 1710,
  31148. bottom: 57 / 1837
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(5, "stories"),
  31156. default: true
  31157. },
  31158. ]
  31159. ))
  31160. characterMakers.push(() => makeCharacter(
  31161. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31162. {
  31163. taurSfw: {
  31164. height: math.unit(10, "meters"),
  31165. weight: math.unit(17500, "kg"),
  31166. name: "Taur",
  31167. image: {
  31168. source: "./media/characters/faey/taur-sfw.svg",
  31169. extra: 1200 / 968,
  31170. bottom: 41 / 1241
  31171. }
  31172. },
  31173. chestmaw: {
  31174. height: math.unit(2.01, "meters"),
  31175. name: "Chestmaw",
  31176. image: {
  31177. source: "./media/characters/faey/chestmaw.svg"
  31178. }
  31179. },
  31180. foot: {
  31181. height: math.unit(2.43, "meters"),
  31182. name: "Foot",
  31183. image: {
  31184. source: "./media/characters/faey/foot.svg"
  31185. }
  31186. },
  31187. jaws: {
  31188. height: math.unit(1.66, "meters"),
  31189. name: "Jaws",
  31190. image: {
  31191. source: "./media/characters/faey/jaws.svg"
  31192. }
  31193. },
  31194. tongues: {
  31195. height: math.unit(2.01, "meters"),
  31196. name: "Tongues",
  31197. image: {
  31198. source: "./media/characters/faey/tongues.svg"
  31199. }
  31200. },
  31201. },
  31202. [
  31203. {
  31204. name: "Small",
  31205. height: math.unit(10, "meters"),
  31206. default: true
  31207. },
  31208. {
  31209. name: "Big",
  31210. height: math.unit(500000, "km")
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31216. {
  31217. front: {
  31218. height: math.unit(7, "feet"),
  31219. weight: math.unit(275, "lb"),
  31220. name: "Front",
  31221. image: {
  31222. source: "./media/characters/roku/front.svg",
  31223. extra: 903 / 878,
  31224. bottom: 37 / 940
  31225. }
  31226. },
  31227. },
  31228. [
  31229. {
  31230. name: "Normal",
  31231. height: math.unit(7, "feet"),
  31232. default: true
  31233. },
  31234. {
  31235. name: "Macro",
  31236. height: math.unit(500, "feet")
  31237. },
  31238. {
  31239. name: "Megamacro",
  31240. height: math.unit(200, "miles")
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31246. {
  31247. front: {
  31248. height: math.unit(6 + 2 / 12, "feet"),
  31249. weight: math.unit(150, "lb"),
  31250. name: "Front",
  31251. image: {
  31252. source: "./media/characters/lira/front.svg",
  31253. extra: 1727 / 1605,
  31254. bottom: 26 / 1753
  31255. }
  31256. },
  31257. back: {
  31258. height: math.unit(6 + 2 / 12, "feet"),
  31259. weight: math.unit(150, "lb"),
  31260. name: "Back",
  31261. image: {
  31262. source: "./media/characters/lira/back.svg",
  31263. extra: 1713/1621,
  31264. bottom: 20/1733
  31265. }
  31266. },
  31267. hand: {
  31268. height: math.unit(0.75, "feet"),
  31269. name: "Hand",
  31270. image: {
  31271. source: "./media/characters/lira/hand.svg"
  31272. }
  31273. },
  31274. maw: {
  31275. height: math.unit(0.65, "feet"),
  31276. name: "Maw",
  31277. image: {
  31278. source: "./media/characters/lira/maw.svg"
  31279. }
  31280. },
  31281. pawDigi: {
  31282. height: math.unit(1.6, "feet"),
  31283. name: "Paw Digi",
  31284. image: {
  31285. source: "./media/characters/lira/paw-digi.svg"
  31286. }
  31287. },
  31288. pawPlanti: {
  31289. height: math.unit(1.4, "feet"),
  31290. name: "Paw Planti",
  31291. image: {
  31292. source: "./media/characters/lira/paw-planti.svg"
  31293. }
  31294. },
  31295. },
  31296. [
  31297. {
  31298. name: "Normal",
  31299. height: math.unit(6 + 2 / 12, "feet"),
  31300. default: true
  31301. },
  31302. {
  31303. name: "Macro",
  31304. height: math.unit(100, "feet")
  31305. },
  31306. {
  31307. name: "Macro²",
  31308. height: math.unit(1600, "feet")
  31309. },
  31310. {
  31311. name: "Planetary",
  31312. height: math.unit(20, "earths")
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(6, "feet"),
  31321. weight: math.unit(150, "lb"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/hadjet/front.svg",
  31325. extra: 1480 / 1346,
  31326. bottom: 26 / 1506
  31327. }
  31328. },
  31329. frontNsfw: {
  31330. height: math.unit(6, "feet"),
  31331. weight: math.unit(150, "lb"),
  31332. name: "Front (NSFW)",
  31333. image: {
  31334. source: "./media/characters/hadjet/front-nsfw.svg",
  31335. extra: 1440 / 1358,
  31336. bottom: 52 / 1492
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Macro",
  31343. height: math.unit(10, "stories"),
  31344. default: true
  31345. },
  31346. {
  31347. name: "Megamacro",
  31348. height: math.unit(1.5, "miles")
  31349. },
  31350. {
  31351. name: "Megamacro+",
  31352. height: math.unit(5, "miles")
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31358. {
  31359. side: {
  31360. height: math.unit(106, "feet"),
  31361. weight: math.unit(500, "tonnes"),
  31362. name: "Side",
  31363. image: {
  31364. source: "./media/characters/kodran/side.svg",
  31365. extra: 553 / 480,
  31366. bottom: 33 / 586
  31367. }
  31368. },
  31369. front: {
  31370. height: math.unit(132, "feet"),
  31371. weight: math.unit(500, "tonnes"),
  31372. name: "Front",
  31373. image: {
  31374. source: "./media/characters/kodran/front.svg",
  31375. extra: 667 / 643,
  31376. bottom: 42 / 709
  31377. }
  31378. },
  31379. flying: {
  31380. height: math.unit(350, "feet"),
  31381. weight: math.unit(500, "tonnes"),
  31382. name: "Flying",
  31383. image: {
  31384. source: "./media/characters/kodran/flying.svg"
  31385. }
  31386. },
  31387. foot: {
  31388. height: math.unit(33, "feet"),
  31389. name: "Foot",
  31390. image: {
  31391. source: "./media/characters/kodran/foot.svg"
  31392. }
  31393. },
  31394. footFront: {
  31395. height: math.unit(19, "feet"),
  31396. name: "Foot (Front)",
  31397. image: {
  31398. source: "./media/characters/kodran/foot-front.svg",
  31399. extra: 261 / 261,
  31400. bottom: 91 / 352
  31401. }
  31402. },
  31403. headFront: {
  31404. height: math.unit(53, "feet"),
  31405. name: "Head (Front)",
  31406. image: {
  31407. source: "./media/characters/kodran/head-front.svg"
  31408. }
  31409. },
  31410. headSide: {
  31411. height: math.unit(65, "feet"),
  31412. name: "Head (Side)",
  31413. image: {
  31414. source: "./media/characters/kodran/head-side.svg"
  31415. }
  31416. },
  31417. throat: {
  31418. height: math.unit(79, "feet"),
  31419. name: "Throat",
  31420. image: {
  31421. source: "./media/characters/kodran/throat.svg"
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Large",
  31428. height: math.unit(106, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31435. {
  31436. side: {
  31437. height: math.unit(11, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Side",
  31440. image: {
  31441. source: "./media/characters/pyxaron/side.svg",
  31442. extra: 305 / 195,
  31443. bottom: 17 / 322
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(11, "feet"),
  31451. default: true
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31457. {
  31458. front: {
  31459. height: math.unit(6, "feet"),
  31460. weight: math.unit(150, "lb"),
  31461. name: "Front",
  31462. image: {
  31463. source: "./media/characters/meep/front.svg",
  31464. extra: 88 / 80,
  31465. bottom: 6 / 94
  31466. }
  31467. },
  31468. },
  31469. [
  31470. {
  31471. name: "Fun Sized",
  31472. height: math.unit(2, "inches"),
  31473. default: true
  31474. },
  31475. {
  31476. name: "Friend Sized",
  31477. height: math.unit(8, "inches")
  31478. },
  31479. ]
  31480. ))
  31481. characterMakers.push(() => makeCharacter(
  31482. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31483. {
  31484. front: {
  31485. height: math.unit(15, "feet"),
  31486. weight: math.unit(2500, "lb"),
  31487. name: "Front",
  31488. image: {
  31489. source: "./media/characters/holly-rabbit/front.svg",
  31490. extra: 1433 / 1233,
  31491. bottom: 125 / 1558
  31492. }
  31493. },
  31494. dick: {
  31495. height: math.unit(4.6, "feet"),
  31496. name: "Dick",
  31497. image: {
  31498. source: "./media/characters/holly-rabbit/dick.svg"
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Normal",
  31505. height: math.unit(15, "feet"),
  31506. default: true
  31507. },
  31508. {
  31509. name: "Macro",
  31510. height: math.unit(250, "feet")
  31511. },
  31512. {
  31513. name: "Macro+",
  31514. height: math.unit(2500, "feet")
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31520. {
  31521. front: {
  31522. height: math.unit(3.02, "meters"),
  31523. weight: math.unit(500, "kg"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/drena/front.svg",
  31527. extra: 282 / 243,
  31528. bottom: 8 / 290
  31529. }
  31530. },
  31531. side: {
  31532. height: math.unit(3.02, "meters"),
  31533. weight: math.unit(500, "kg"),
  31534. name: "Side",
  31535. image: {
  31536. source: "./media/characters/drena/side.svg",
  31537. extra: 280 / 245,
  31538. bottom: 10 / 290
  31539. }
  31540. },
  31541. back: {
  31542. height: math.unit(3.02, "meters"),
  31543. weight: math.unit(500, "kg"),
  31544. name: "Back",
  31545. image: {
  31546. source: "./media/characters/drena/back.svg",
  31547. extra: 278 / 243,
  31548. bottom: 2 / 280
  31549. }
  31550. },
  31551. foot: {
  31552. height: math.unit(0.75, "meters"),
  31553. name: "Foot",
  31554. image: {
  31555. source: "./media/characters/drena/foot.svg"
  31556. }
  31557. },
  31558. maw: {
  31559. height: math.unit(0.82, "meters"),
  31560. name: "Maw",
  31561. image: {
  31562. source: "./media/characters/drena/maw.svg"
  31563. }
  31564. },
  31565. eating: {
  31566. height: math.unit(0.75, "meters"),
  31567. name: "Eating",
  31568. image: {
  31569. source: "./media/characters/drena/eating.svg"
  31570. }
  31571. },
  31572. rump: {
  31573. height: math.unit(0.93, "meters"),
  31574. name: "Rump",
  31575. image: {
  31576. source: "./media/characters/drena/rump.svg"
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(3.02, "meters"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(6 + 4 / 12, "feet"),
  31593. weight: math.unit(250, "lb"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/remmyzilla/front.svg",
  31597. extra: 4033 / 3588,
  31598. bottom: 123 / 4156
  31599. }
  31600. },
  31601. back: {
  31602. height: math.unit(6 + 4 / 12, "feet"),
  31603. weight: math.unit(250, "lb"),
  31604. name: "Back",
  31605. image: {
  31606. source: "./media/characters/remmyzilla/back.svg",
  31607. extra: 1696/1602,
  31608. bottom: 63/1759
  31609. }
  31610. },
  31611. paw: {
  31612. height: math.unit(1.73, "feet"),
  31613. name: "Paw",
  31614. image: {
  31615. source: "./media/characters/remmyzilla/paw.svg"
  31616. },
  31617. extraAttributes: {
  31618. "toeSize": {
  31619. name: "Toe Size",
  31620. power: 2,
  31621. type: "area",
  31622. base: math.unit(0.0035, "m^2")
  31623. },
  31624. "padSize": {
  31625. name: "Pad Size",
  31626. power: 2,
  31627. type: "area",
  31628. base: math.unit(0.015, "m^2")
  31629. },
  31630. "pawsize": {
  31631. name: "Paw Size",
  31632. power: 2,
  31633. type: "area",
  31634. base: math.unit(0.072, "m^2")
  31635. },
  31636. }
  31637. },
  31638. maw: {
  31639. height: math.unit(1.73, "feet"),
  31640. name: "Maw",
  31641. image: {
  31642. source: "./media/characters/remmyzilla/maw.svg"
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(6 + 4 / 12, "feet")
  31650. },
  31651. {
  31652. name: "Minimacro",
  31653. height: math.unit(12 + 8 / 12, "feet")
  31654. },
  31655. {
  31656. name: "Normal",
  31657. height: math.unit(640, "feet"),
  31658. default: true
  31659. },
  31660. {
  31661. name: "Megamacro",
  31662. height: math.unit(6400, "feet")
  31663. },
  31664. {
  31665. name: "Gigamacro",
  31666. height: math.unit(64000, "miles")
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31672. {
  31673. front: {
  31674. height: math.unit(2.5, "meters"),
  31675. weight: math.unit(300, "lb"),
  31676. name: "Front",
  31677. image: {
  31678. source: "./media/characters/lawrence/front.svg",
  31679. extra: 357 / 335,
  31680. bottom: 30 / 387
  31681. }
  31682. },
  31683. back: {
  31684. height: math.unit(2.5, "meters"),
  31685. weight: math.unit(300, "lb"),
  31686. name: "Back",
  31687. image: {
  31688. source: "./media/characters/lawrence/back.svg",
  31689. extra: 357 / 338,
  31690. bottom: 16 / 373
  31691. }
  31692. },
  31693. head: {
  31694. height: math.unit(0.9, "meter"),
  31695. name: "Head",
  31696. image: {
  31697. source: "./media/characters/lawrence/head.svg"
  31698. }
  31699. },
  31700. maw: {
  31701. height: math.unit(0.7, "meter"),
  31702. name: "Maw",
  31703. image: {
  31704. source: "./media/characters/lawrence/maw.svg"
  31705. }
  31706. },
  31707. footBottom: {
  31708. height: math.unit(0.5, "meter"),
  31709. name: "Foot (Bottom)",
  31710. image: {
  31711. source: "./media/characters/lawrence/foot-bottom.svg"
  31712. }
  31713. },
  31714. footTop: {
  31715. height: math.unit(0.5, "meter"),
  31716. name: "Foot (Top)",
  31717. image: {
  31718. source: "./media/characters/lawrence/foot-top.svg"
  31719. }
  31720. },
  31721. },
  31722. [
  31723. {
  31724. name: "Normal",
  31725. height: math.unit(2.5, "meters"),
  31726. default: true
  31727. },
  31728. {
  31729. name: "Macro",
  31730. height: math.unit(95, "meters")
  31731. },
  31732. {
  31733. name: "Megamacro",
  31734. height: math.unit(150, "km")
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31740. {
  31741. front: {
  31742. height: math.unit(4.2, "meters"),
  31743. preyCapacity: math.unit(50, "m^3"),
  31744. weight: math.unit(30, "tonnes"),
  31745. name: "Front",
  31746. image: {
  31747. source: "./media/characters/sydney/front.svg",
  31748. extra: 1177/1129,
  31749. bottom: 197/1374
  31750. },
  31751. extraAttributes: {
  31752. "length": {
  31753. name: "Length",
  31754. power: 1,
  31755. type: "length",
  31756. base: math.unit(21, "meters")
  31757. },
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(4.2, "meters"),
  31765. default: true
  31766. },
  31767. ]
  31768. ))
  31769. characterMakers.push(() => makeCharacter(
  31770. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31771. {
  31772. back: {
  31773. height: math.unit(201, "feet"),
  31774. name: "Back",
  31775. image: {
  31776. source: "./media/characters/jessica/back.svg",
  31777. extra: 273 / 259,
  31778. bottom: 7 / 280
  31779. }
  31780. },
  31781. },
  31782. [
  31783. {
  31784. name: "Normal",
  31785. height: math.unit(201, "feet"),
  31786. default: true
  31787. },
  31788. {
  31789. name: "Megamacro",
  31790. height: math.unit(8, "miles")
  31791. },
  31792. ]
  31793. ))
  31794. characterMakers.push(() => makeCharacter(
  31795. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31796. {
  31797. side: {
  31798. height: math.unit(5.6, "m"),
  31799. weight: math.unit(8000, "kg"),
  31800. name: "Side",
  31801. image: {
  31802. source: "./media/characters/victoria/side.svg",
  31803. extra: 1542/1229,
  31804. bottom: 124/1666
  31805. }
  31806. },
  31807. maw: {
  31808. height: math.unit(7.14, "feet"),
  31809. name: "Maw",
  31810. image: {
  31811. source: "./media/characters/victoria/maw.svg"
  31812. }
  31813. },
  31814. },
  31815. [
  31816. {
  31817. name: "Normal",
  31818. height: math.unit(5.6, "m"),
  31819. default: true
  31820. },
  31821. ]
  31822. ))
  31823. characterMakers.push(() => makeCharacter(
  31824. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31825. {
  31826. front: {
  31827. height: math.unit(5 + 6 / 12, "feet"),
  31828. name: "Front",
  31829. image: {
  31830. source: "./media/characters/cat/cat-front.svg",
  31831. extra: 1422/1262,
  31832. bottom: 61/1483
  31833. },
  31834. form: "cat",
  31835. default: true
  31836. },
  31837. back: {
  31838. height: math.unit(5 + 6 / 12, "feet"),
  31839. name: "Back",
  31840. image: {
  31841. source: "./media/characters/cat/cat-back.svg",
  31842. extra: 1466/1301,
  31843. bottom: 19/1485
  31844. },
  31845. form: "cat"
  31846. },
  31847. taur: {
  31848. height: math.unit(7, "feet"),
  31849. name: "Side",
  31850. image: {
  31851. source: "./media/characters/cat/taur-side.svg",
  31852. extra: 1389/1233,
  31853. bottom: 83/1472
  31854. },
  31855. form: "taur",
  31856. default: true
  31857. },
  31858. lucarioFront: {
  31859. height: math.unit(4, "feet"),
  31860. name: "Front",
  31861. image: {
  31862. source: "./media/characters/cat/lucario-front.svg",
  31863. extra: 1149/1019,
  31864. bottom: 84/1233
  31865. },
  31866. form: "lucario",
  31867. default: true
  31868. },
  31869. lucarioBack: {
  31870. height: math.unit(4, "feet"),
  31871. name: "Back",
  31872. image: {
  31873. source: "./media/characters/cat/lucario-back.svg",
  31874. extra: 1190/1059,
  31875. bottom: 33/1223
  31876. },
  31877. form: "lucario"
  31878. },
  31879. riolu_front: {
  31880. height: math.unit(2 + 4/12, "feet"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/cat/riolu-front.svg",
  31884. extra: 1104/956,
  31885. bottom: 70/1174
  31886. },
  31887. form: "riolu",
  31888. default: true
  31889. },
  31890. nickit: {
  31891. height: math.unit(2, "feet"),
  31892. name: "Side",
  31893. image: {
  31894. source: "./media/characters/cat/nickit-side.svg",
  31895. extra: 1087/852,
  31896. bottom: 67/1154
  31897. },
  31898. form: "nickit",
  31899. default: true
  31900. },
  31901. lopunnyFront: {
  31902. height: math.unit(5, "feet"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/cat/lopunny-front.svg",
  31906. extra: 1217/1078,
  31907. bottom: 23/1240
  31908. },
  31909. form: "lopunny",
  31910. default: true
  31911. },
  31912. lopunnyBack: {
  31913. height: math.unit(5, "feet"),
  31914. name: "Back",
  31915. image: {
  31916. source: "./media/characters/cat/lopunny-back.svg",
  31917. extra: 1205/1057,
  31918. bottom: 33/1238
  31919. },
  31920. form: "lopunny"
  31921. },
  31922. dog_front: {
  31923. height: math.unit(5 + 9/12, "feet"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/cat/dog-front.svg",
  31927. extra: 1403/1309,
  31928. bottom: 31/1434
  31929. },
  31930. form: "dog",
  31931. default: true
  31932. },
  31933. dog_back: {
  31934. height: math.unit(5 + 9/12, "feet"),
  31935. name: "Back",
  31936. image: {
  31937. source: "./media/characters/cat/dog-back.svg",
  31938. extra: 1393/1297,
  31939. bottom: 38/1431
  31940. },
  31941. form: "dog",
  31942. },
  31943. pikachu_front: {
  31944. height: math.unit(2.64, "feet"),
  31945. name: "Front",
  31946. image: {
  31947. source: "./media/characters/cat/pikachu-front.svg",
  31948. extra: 1224/958,
  31949. bottom: 34/1258
  31950. },
  31951. form: "pikachu",
  31952. default: true
  31953. },
  31954. pikachu_back: {
  31955. height: math.unit(2.64, "feet"),
  31956. name: "Back",
  31957. image: {
  31958. source: "./media/characters/cat/pikachu-back.svg",
  31959. extra: 1228/958,
  31960. bottom: 16/1244
  31961. },
  31962. form: "pikachu",
  31963. },
  31964. gigachuFront: {
  31965. height: math.unit(75, "feet"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/cat/gigachu-front.svg",
  31969. extra: 1239/1027,
  31970. bottom: 32/1271
  31971. },
  31972. form: "gigachu",
  31973. default: true
  31974. },
  31975. gigachuBack: {
  31976. height: math.unit(75, "feet"),
  31977. name: "Back",
  31978. image: {
  31979. source: "./media/characters/cat/gigachu-back.svg",
  31980. extra: 1229/1030,
  31981. bottom: 9/1238
  31982. },
  31983. form: "gigachu"
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Really small",
  31989. height: math.unit(1, "nm"),
  31990. allForms: true
  31991. },
  31992. {
  31993. name: "Micro",
  31994. height: math.unit(5, "inches"),
  31995. allForms: true
  31996. },
  31997. {
  31998. name: "Normal",
  31999. height: math.unit(5 + 6 / 12, "feet"),
  32000. default: true,
  32001. form: "cat"
  32002. },
  32003. {
  32004. name: "Normal",
  32005. height: math.unit(7, "feet"),
  32006. default: true,
  32007. form: "taur"
  32008. },
  32009. {
  32010. name: "Normal",
  32011. height: math.unit(4, "feet"),
  32012. default: true,
  32013. form: "lucario"
  32014. },
  32015. {
  32016. name: "Normal",
  32017. height: math.unit(2, "feet"),
  32018. default: true,
  32019. form: "nickit"
  32020. },
  32021. {
  32022. name: "Normal",
  32023. height: math.unit(5, "feet"),
  32024. default: true,
  32025. form: "lopunny"
  32026. },
  32027. {
  32028. name: "Normal",
  32029. height: math.unit(2 + 4/12, "feet"),
  32030. default: true,
  32031. form: "riolu"
  32032. },
  32033. {
  32034. name: "Normal",
  32035. height: math.unit(5 + 6 / 12, "feet"),
  32036. default: true,
  32037. form: "dog"
  32038. },
  32039. {
  32040. name: "Macro",
  32041. height: math.unit(50, "feet"),
  32042. allForms: true
  32043. },
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(2.64, "feet"),
  32047. default: true,
  32048. form: "pikachu"
  32049. },
  32050. {
  32051. name: "Dynamax",
  32052. height: math.unit(75, "feet"),
  32053. form: "gigachu",
  32054. default: true
  32055. },
  32056. {
  32057. name: "Macro+",
  32058. height: math.unit(150, "feet"),
  32059. allForms: true
  32060. },
  32061. {
  32062. name: "Megamacro",
  32063. height: math.unit(100, "miles"),
  32064. allForms: true
  32065. },
  32066. ],
  32067. {
  32068. "cat": {
  32069. name: "Cat",
  32070. default: true
  32071. },
  32072. "taur": {
  32073. name: "Taur",
  32074. },
  32075. "lucario": {
  32076. name: "Lucario",
  32077. },
  32078. "riolu": {
  32079. name: "Riolu",
  32080. },
  32081. "nickit": {
  32082. name: "Nickit",
  32083. },
  32084. "lopunny": {
  32085. name: "Lopunny",
  32086. },
  32087. "dog": {
  32088. name: "Dog",
  32089. },
  32090. "pikachu": {
  32091. name: "Pikachu",
  32092. },
  32093. "gigachu": {
  32094. name: "Gigachu",
  32095. ignoreAllFormSizes: true
  32096. }
  32097. }
  32098. ))
  32099. characterMakers.push(() => makeCharacter(
  32100. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32101. {
  32102. front: {
  32103. height: math.unit(63.4, "meters"),
  32104. weight: math.unit(3.28349e+6, "kilograms"),
  32105. name: "Front",
  32106. image: {
  32107. source: "./media/characters/kirina-violet/front.svg",
  32108. extra: 2812 / 2725,
  32109. bottom: 0 / 2812
  32110. }
  32111. },
  32112. back: {
  32113. height: math.unit(63.4, "meters"),
  32114. weight: math.unit(3.28349e+6, "kilograms"),
  32115. name: "Back",
  32116. image: {
  32117. source: "./media/characters/kirina-violet/back.svg",
  32118. extra: 2812 / 2725,
  32119. bottom: 0 / 2812
  32120. }
  32121. },
  32122. mouth: {
  32123. height: math.unit(4.35, "meters"),
  32124. name: "Mouth",
  32125. image: {
  32126. source: "./media/characters/kirina-violet/mouth.svg"
  32127. }
  32128. },
  32129. paw: {
  32130. height: math.unit(5.6, "meters"),
  32131. name: "Paw",
  32132. image: {
  32133. source: "./media/characters/kirina-violet/paw.svg"
  32134. }
  32135. },
  32136. tail: {
  32137. height: math.unit(18, "meters"),
  32138. name: "Tail",
  32139. image: {
  32140. source: "./media/characters/kirina-violet/tail.svg"
  32141. }
  32142. },
  32143. },
  32144. [
  32145. {
  32146. name: "Macro",
  32147. height: math.unit(63.4, "meters"),
  32148. default: true
  32149. },
  32150. ]
  32151. ))
  32152. characterMakers.push(() => makeCharacter(
  32153. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32154. {
  32155. front: {
  32156. height: math.unit(6, "feet"),
  32157. weight: math.unit(150, "lb"),
  32158. name: "Front",
  32159. image: {
  32160. source: "./media/characters/sfaiyan/front.svg",
  32161. extra: 999 / 978,
  32162. bottom: 5 / 1004
  32163. }
  32164. },
  32165. },
  32166. [
  32167. {
  32168. name: "Normal",
  32169. height: math.unit(1.82, "meters")
  32170. },
  32171. {
  32172. name: "Giant",
  32173. height: math.unit(2.27, "km"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32180. {
  32181. front: {
  32182. height: math.unit(179, "cm"),
  32183. weight: math.unit(100, "kg"),
  32184. name: "Front",
  32185. image: {
  32186. source: "./media/characters/raunehkeli/front.svg",
  32187. extra: 1934 / 1926,
  32188. bottom: 0 / 1934
  32189. }
  32190. },
  32191. },
  32192. [
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(179, "cm")
  32196. },
  32197. {
  32198. name: "Maximum",
  32199. height: math.unit(575, "meters"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32206. {
  32207. dressed: {
  32208. height: math.unit(6 + 2/12, "feet"),
  32209. weight: math.unit(150, "lb"),
  32210. name: "Dressed",
  32211. image: {
  32212. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32213. extra: 2620/2496,
  32214. bottom: 66/2686
  32215. }
  32216. },
  32217. nude: {
  32218. height: math.unit(6 + 2/12, "feet"),
  32219. weight: math.unit(150, "lb"),
  32220. name: "Nude",
  32221. image: {
  32222. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32223. extra: 2620/2496,
  32224. bottom: 66/2686
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(6 + 2 / 12, "feet")
  32232. },
  32233. {
  32234. name: "Max Height",
  32235. height: math.unit(1181, "feet"),
  32236. default: true
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32242. {
  32243. front: {
  32244. height: math.unit(5 + 6 / 12, "feet"),
  32245. weight: math.unit(108, "lb"),
  32246. name: "Front",
  32247. image: {
  32248. source: "./media/characters/lilith-zott/front.svg",
  32249. extra: 2415/2133,
  32250. bottom: 193/2608
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Base Height",
  32257. height: math.unit(5 + 6 / 12, "feet")
  32258. },
  32259. {
  32260. name: "Preferred Height",
  32261. height: math.unit(200, "feet")
  32262. },
  32263. {
  32264. name: "Max Height",
  32265. height: math.unit(1030, "feet"),
  32266. default: true
  32267. },
  32268. ]
  32269. ))
  32270. characterMakers.push(() => makeCharacter(
  32271. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32272. {
  32273. super: {
  32274. height: math.unit(6 + 2/12, "feet"),
  32275. weight: math.unit(150, "lb"),
  32276. name: "Super",
  32277. image: {
  32278. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32279. extra: 2555/2387,
  32280. bottom: 50/2605
  32281. }
  32282. },
  32283. casual: {
  32284. height: math.unit(6 + 2/12, "feet"),
  32285. weight: math.unit(150, "lb"),
  32286. name: "Casual",
  32287. image: {
  32288. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32289. extra: 2555/2387,
  32290. bottom: 50/2605
  32291. }
  32292. },
  32293. hand: {
  32294. height: math.unit(1.08, "feet"),
  32295. name: "Hand",
  32296. image: {
  32297. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32298. }
  32299. },
  32300. paw: {
  32301. height: math.unit(1.33, "feet"),
  32302. name: "Paw",
  32303. image: {
  32304. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32305. }
  32306. },
  32307. },
  32308. [
  32309. {
  32310. name: "Normal",
  32311. height: math.unit(6 + 2/12, "feet")
  32312. },
  32313. {
  32314. name: "Preferred Height",
  32315. height: math.unit(220, "feet")
  32316. },
  32317. {
  32318. name: "Max Height",
  32319. height: math.unit(1100, "feet"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32326. {
  32327. front: {
  32328. height: math.unit(100, "miles"),
  32329. name: "Front",
  32330. image: {
  32331. source: "./media/characters/sona/front.svg",
  32332. extra: 2433 / 2201,
  32333. bottom: 53 / 2486
  32334. }
  32335. },
  32336. foot: {
  32337. height: math.unit(16.1, "miles"),
  32338. name: "Foot",
  32339. image: {
  32340. source: "./media/characters/sona/foot.svg"
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Macro",
  32347. height: math.unit(100, "miles"),
  32348. default: true
  32349. },
  32350. ]
  32351. ))
  32352. characterMakers.push(() => makeCharacter(
  32353. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32354. {
  32355. front: {
  32356. height: math.unit(6, "feet"),
  32357. weight: math.unit(150, "lb"),
  32358. name: "Front",
  32359. image: {
  32360. source: "./media/characters/bailey/front.svg",
  32361. extra: 1778 / 1724,
  32362. bottom: 30 / 1808
  32363. }
  32364. },
  32365. },
  32366. [
  32367. {
  32368. name: "Micro",
  32369. height: math.unit(4, "inches")
  32370. },
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(5 + 5 / 12, "feet"),
  32374. default: true
  32375. },
  32376. {
  32377. name: "Macro",
  32378. height: math.unit(250, "feet")
  32379. },
  32380. {
  32381. name: "Megamacro",
  32382. height: math.unit(100, "miles")
  32383. },
  32384. ]
  32385. ))
  32386. characterMakers.push(() => makeCharacter(
  32387. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32388. {
  32389. front: {
  32390. height: math.unit(5 + 2 / 12, "feet"),
  32391. weight: math.unit(120, "lb"),
  32392. name: "Front",
  32393. image: {
  32394. source: "./media/characters/snaps/front.svg",
  32395. extra: 2370 / 2177,
  32396. bottom: 48 / 2418
  32397. }
  32398. },
  32399. back: {
  32400. height: math.unit(5 + 2 / 12, "feet"),
  32401. weight: math.unit(120, "lb"),
  32402. name: "Back",
  32403. image: {
  32404. source: "./media/characters/snaps/back.svg",
  32405. extra: 2408 / 2258,
  32406. bottom: 15 / 2423
  32407. }
  32408. },
  32409. },
  32410. [
  32411. {
  32412. name: "Micro",
  32413. height: math.unit(9, "inches")
  32414. },
  32415. {
  32416. name: "Normal",
  32417. height: math.unit(5 + 2 / 12, "feet"),
  32418. default: true
  32419. },
  32420. {
  32421. name: "Mini Macro",
  32422. height: math.unit(10, "feet")
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32428. {
  32429. front: {
  32430. height: math.unit(1.8, "meters"),
  32431. weight: math.unit(85, "kg"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/azteck/front.svg",
  32435. extra: 2815 / 2625,
  32436. bottom: 89 / 2904
  32437. }
  32438. },
  32439. back: {
  32440. height: math.unit(1.8, "meters"),
  32441. weight: math.unit(85, "kg"),
  32442. name: "Back",
  32443. image: {
  32444. source: "./media/characters/azteck/back.svg",
  32445. extra: 2856 / 2648,
  32446. bottom: 85 / 2941
  32447. }
  32448. },
  32449. frontDressed: {
  32450. height: math.unit(1.8, "meters"),
  32451. weight: math.unit(85, "kg"),
  32452. name: "Front (Dressed)",
  32453. image: {
  32454. source: "./media/characters/azteck/front-dressed.svg",
  32455. extra: 2147 / 2003,
  32456. bottom: 68 / 2215
  32457. }
  32458. },
  32459. head: {
  32460. height: math.unit(0.47, "meters"),
  32461. weight: math.unit(85, "kg"),
  32462. name: "Head",
  32463. image: {
  32464. source: "./media/characters/azteck/head.svg"
  32465. }
  32466. },
  32467. },
  32468. [
  32469. {
  32470. name: "Bite sized",
  32471. height: math.unit(16, "cm")
  32472. },
  32473. {
  32474. name: "Normal",
  32475. height: math.unit(1.8, "meters"),
  32476. default: true
  32477. },
  32478. ]
  32479. ))
  32480. characterMakers.push(() => makeCharacter(
  32481. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32482. {
  32483. front: {
  32484. height: math.unit(6, "feet"),
  32485. weight: math.unit(150, "lb"),
  32486. name: "Front",
  32487. image: {
  32488. source: "./media/characters/pidge/front.svg",
  32489. extra: 1936/1820,
  32490. bottom: 0/1936
  32491. }
  32492. },
  32493. back: {
  32494. height: math.unit(6, "feet"),
  32495. weight: math.unit(150, "lb"),
  32496. name: "Back",
  32497. image: {
  32498. source: "./media/characters/pidge/back.svg",
  32499. extra: 1938/1843,
  32500. bottom: 0/1938
  32501. }
  32502. },
  32503. casual: {
  32504. height: math.unit(6, "feet"),
  32505. weight: math.unit(150, "lb"),
  32506. name: "Casual",
  32507. image: {
  32508. source: "./media/characters/pidge/casual.svg",
  32509. extra: 1936/1820,
  32510. bottom: 0/1936
  32511. }
  32512. },
  32513. tech: {
  32514. height: math.unit(6, "feet"),
  32515. weight: math.unit(150, "lb"),
  32516. name: "Tech",
  32517. image: {
  32518. source: "./media/characters/pidge/tech.svg",
  32519. extra: 1802/1682,
  32520. bottom: 0/1802
  32521. }
  32522. },
  32523. head: {
  32524. height: math.unit(1.61, "feet"),
  32525. name: "Head",
  32526. image: {
  32527. source: "./media/characters/pidge/head.svg"
  32528. }
  32529. },
  32530. collar: {
  32531. height: math.unit(0.82, "feet"),
  32532. name: "Collar",
  32533. image: {
  32534. source: "./media/characters/pidge/collar.svg"
  32535. }
  32536. },
  32537. },
  32538. [
  32539. {
  32540. name: "Macro",
  32541. height: math.unit(2, "mile"),
  32542. default: true
  32543. },
  32544. {
  32545. name: "PUPPY",
  32546. height: math.unit(20, "miles")
  32547. },
  32548. ]
  32549. ))
  32550. characterMakers.push(() => makeCharacter(
  32551. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32552. {
  32553. front: {
  32554. height: math.unit(6, "feet"),
  32555. weight: math.unit(150, "lb"),
  32556. name: "Front",
  32557. image: {
  32558. source: "./media/characters/en/front.svg",
  32559. extra: 1697 / 1563,
  32560. bottom: 103 / 1800
  32561. }
  32562. },
  32563. back: {
  32564. height: math.unit(6, "feet"),
  32565. weight: math.unit(150, "lb"),
  32566. name: "Back",
  32567. image: {
  32568. source: "./media/characters/en/back.svg",
  32569. extra: 1700 / 1570,
  32570. bottom: 51 / 1751
  32571. }
  32572. },
  32573. frontDressed: {
  32574. height: math.unit(6, "feet"),
  32575. weight: math.unit(150, "lb"),
  32576. name: "Front (Dressed)",
  32577. image: {
  32578. source: "./media/characters/en/front-dressed.svg",
  32579. extra: 1697 / 1563,
  32580. bottom: 103 / 1800
  32581. }
  32582. },
  32583. backDressed: {
  32584. height: math.unit(6, "feet"),
  32585. weight: math.unit(150, "lb"),
  32586. name: "Back (Dressed)",
  32587. image: {
  32588. source: "./media/characters/en/back-dressed.svg",
  32589. extra: 1700 / 1570,
  32590. bottom: 51 / 1751
  32591. }
  32592. },
  32593. },
  32594. [
  32595. {
  32596. name: "Macro",
  32597. height: math.unit(210, "feet"),
  32598. default: true
  32599. },
  32600. ]
  32601. ))
  32602. characterMakers.push(() => makeCharacter(
  32603. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32604. {
  32605. front: {
  32606. height: math.unit(6, "feet"),
  32607. weight: math.unit(150, "lb"),
  32608. name: "Front",
  32609. image: {
  32610. source: "./media/characters/haze-orris/front.svg",
  32611. extra: 3975 / 3525,
  32612. bottom: 137 / 4112
  32613. }
  32614. },
  32615. },
  32616. [
  32617. {
  32618. name: "Micro",
  32619. height: math.unit(150, "mm"),
  32620. default: true
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32626. {
  32627. front: {
  32628. height: math.unit(6, "feet"),
  32629. weight: math.unit(150, "lb"),
  32630. name: "Front",
  32631. image: {
  32632. source: "./media/characters/casselene-yaro/front.svg",
  32633. extra: 4721 / 4541,
  32634. bottom: 82 / 4803
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(6, "feet"),
  32639. weight: math.unit(150, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/casselene-yaro/back.svg",
  32643. extra: 4569 / 4377,
  32644. bottom: 69 / 4638
  32645. }
  32646. },
  32647. dressed: {
  32648. height: math.unit(6, "feet"),
  32649. weight: math.unit(150, "lb"),
  32650. name: "Dressed",
  32651. image: {
  32652. source: "./media/characters/casselene-yaro/dressed.svg",
  32653. extra: 4721 / 4541,
  32654. bottom: 82 / 4803
  32655. }
  32656. },
  32657. maw: {
  32658. height: math.unit(1, "feet"),
  32659. name: "Maw",
  32660. image: {
  32661. source: "./media/characters/casselene-yaro/maw.svg"
  32662. }
  32663. },
  32664. },
  32665. [
  32666. {
  32667. name: "Macro",
  32668. height: math.unit(190, "feet"),
  32669. default: true
  32670. },
  32671. ]
  32672. ))
  32673. characterMakers.push(() => makeCharacter(
  32674. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32675. {
  32676. front: {
  32677. height: math.unit(10, "feet"),
  32678. weight: math.unit(15015, "lb"),
  32679. name: "Front",
  32680. image: {
  32681. source: "./media/characters/platine/front.svg",
  32682. extra: 1741/1650,
  32683. bottom: 84/1825
  32684. }
  32685. },
  32686. side: {
  32687. height: math.unit(10, "feet"),
  32688. weight: math.unit(15015, "lb"),
  32689. name: "Side",
  32690. image: {
  32691. source: "./media/characters/platine/side.svg",
  32692. extra: 1790/1705,
  32693. bottom: 29/1819
  32694. }
  32695. },
  32696. },
  32697. [
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(10, "feet"),
  32701. default: true
  32702. },
  32703. {
  32704. name: "Macro",
  32705. height: math.unit(100, "feet")
  32706. },
  32707. {
  32708. name: "Megamacro",
  32709. height: math.unit(1000, "feet")
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32715. {
  32716. front: {
  32717. height: math.unit(15 + 5 / 12, "feet"),
  32718. weight: math.unit(4600, "lb"),
  32719. name: "Front",
  32720. image: {
  32721. source: "./media/characters/neapolitan-ananassa/front.svg",
  32722. extra: 2903 / 2736,
  32723. bottom: 0 / 2903
  32724. }
  32725. },
  32726. side: {
  32727. height: math.unit(15 + 5 / 12, "feet"),
  32728. weight: math.unit(4600, "lb"),
  32729. name: "Side",
  32730. image: {
  32731. source: "./media/characters/neapolitan-ananassa/side.svg",
  32732. extra: 2925 / 2719,
  32733. bottom: 0 / 2925
  32734. }
  32735. },
  32736. back: {
  32737. height: math.unit(15 + 5 / 12, "feet"),
  32738. weight: math.unit(4600, "lb"),
  32739. name: "Back",
  32740. image: {
  32741. source: "./media/characters/neapolitan-ananassa/back.svg",
  32742. extra: 2903 / 2736,
  32743. bottom: 0 / 2903
  32744. }
  32745. },
  32746. },
  32747. [
  32748. {
  32749. name: "Normal",
  32750. height: math.unit(15 + 5 / 12, "feet"),
  32751. default: true
  32752. },
  32753. {
  32754. name: "Post-Millenium",
  32755. height: math.unit(35 + 5 / 12, "feet")
  32756. },
  32757. {
  32758. name: "Post-Era",
  32759. height: math.unit(450 + 5 / 12, "feet")
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(300, "meters"),
  32768. weight: math.unit(125000, "tonnes"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/pazuzu/front.svg",
  32772. extra: 877 / 794,
  32773. bottom: 47 / 924
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Macro",
  32780. height: math.unit(300, "meters"),
  32781. default: true
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32787. {
  32788. side: {
  32789. height: math.unit(10 + 7 / 12, "feet"),
  32790. weight: math.unit(2.5, "tons"),
  32791. name: "Side",
  32792. image: {
  32793. source: "./media/characters/aasha/side.svg",
  32794. extra: 1345 / 1245,
  32795. bottom: 111 / 1456
  32796. }
  32797. },
  32798. back: {
  32799. height: math.unit(10 + 7 / 12, "feet"),
  32800. weight: math.unit(2.5, "tons"),
  32801. name: "Back",
  32802. image: {
  32803. source: "./media/characters/aasha/back.svg",
  32804. extra: 1133 / 1057,
  32805. bottom: 257 / 1390
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(10 + 7 / 12, "feet"),
  32813. default: true
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32819. {
  32820. front: {
  32821. height: math.unit(6 + 3 / 12, "feet"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/nevan/front.svg",
  32825. extra: 704 / 704,
  32826. bottom: 28 / 732
  32827. }
  32828. },
  32829. back: {
  32830. height: math.unit(6 + 3 / 12, "feet"),
  32831. name: "Back",
  32832. image: {
  32833. source: "./media/characters/nevan/back.svg",
  32834. extra: 714 / 714,
  32835. bottom: 21 / 735
  32836. }
  32837. },
  32838. frontFlaccid: {
  32839. height: math.unit(6 + 3 / 12, "feet"),
  32840. name: "Front (Flaccid)",
  32841. image: {
  32842. source: "./media/characters/nevan/front-flaccid.svg",
  32843. extra: 704 / 704,
  32844. bottom: 28 / 732
  32845. }
  32846. },
  32847. frontErect: {
  32848. height: math.unit(6 + 3 / 12, "feet"),
  32849. name: "Front (Erect)",
  32850. image: {
  32851. source: "./media/characters/nevan/front-erect.svg",
  32852. extra: 704 / 704,
  32853. bottom: 28 / 732
  32854. }
  32855. },
  32856. backFlaccid: {
  32857. height: math.unit(6 + 3 / 12, "feet"),
  32858. name: "Back (Flaccid)",
  32859. image: {
  32860. source: "./media/characters/nevan/back-flaccid.svg",
  32861. extra: 714 / 714,
  32862. bottom: 21 / 735
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Normal",
  32869. height: math.unit(6 + 3 / 12, "feet"),
  32870. default: true
  32871. },
  32872. ]
  32873. ))
  32874. characterMakers.push(() => makeCharacter(
  32875. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32876. {
  32877. front: {
  32878. height: math.unit(4, "feet"),
  32879. name: "Front",
  32880. image: {
  32881. source: "./media/characters/arhan/front.svg",
  32882. extra: 3368 / 3133,
  32883. bottom: 0 / 3368
  32884. }
  32885. },
  32886. side: {
  32887. height: math.unit(4, "feet"),
  32888. name: "Side",
  32889. image: {
  32890. source: "./media/characters/arhan/side.svg",
  32891. extra: 3347 / 3105,
  32892. bottom: 0 / 3347
  32893. }
  32894. },
  32895. tongue: {
  32896. height: math.unit(1.42, "feet"),
  32897. name: "Tongue",
  32898. image: {
  32899. source: "./media/characters/arhan/tongue.svg"
  32900. }
  32901. },
  32902. head: {
  32903. height: math.unit(0.85, "feet"),
  32904. name: "Head",
  32905. image: {
  32906. source: "./media/characters/arhan/head.svg"
  32907. }
  32908. },
  32909. },
  32910. [
  32911. {
  32912. name: "Normal",
  32913. height: math.unit(4, "feet"),
  32914. default: true
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32920. {
  32921. front: {
  32922. height: math.unit(5 + 7.5 / 12, "feet"),
  32923. weight: math.unit(120, "lb"),
  32924. name: "Front",
  32925. image: {
  32926. source: "./media/characters/digi-duncan/front.svg",
  32927. extra: 330 / 326,
  32928. bottom: 16 / 346
  32929. }
  32930. },
  32931. side: {
  32932. height: math.unit(5 + 7.5 / 12, "feet"),
  32933. weight: math.unit(120, "lb"),
  32934. name: "Side",
  32935. image: {
  32936. source: "./media/characters/digi-duncan/side.svg",
  32937. extra: 341 / 337,
  32938. bottom: 1 / 342
  32939. }
  32940. },
  32941. back: {
  32942. height: math.unit(5 + 7.5 / 12, "feet"),
  32943. weight: math.unit(120, "lb"),
  32944. name: "Back",
  32945. image: {
  32946. source: "./media/characters/digi-duncan/back.svg",
  32947. extra: 330 / 326,
  32948. bottom: 12 / 342
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Speck",
  32955. height: math.unit(0.25, "mm")
  32956. },
  32957. {
  32958. name: "Micro",
  32959. height: math.unit(5, "mm")
  32960. },
  32961. {
  32962. name: "Tiny",
  32963. height: math.unit(0.5, "inches"),
  32964. default: true
  32965. },
  32966. {
  32967. name: "Human",
  32968. height: math.unit(5 + 7.5 / 12, "feet")
  32969. },
  32970. {
  32971. name: "Minigiant",
  32972. height: math.unit(8 + 5.25, "feet")
  32973. },
  32974. {
  32975. name: "Giant",
  32976. height: math.unit(2000, "feet")
  32977. },
  32978. {
  32979. name: "Mega",
  32980. height: math.unit(371.1, "miles")
  32981. },
  32982. ]
  32983. ))
  32984. characterMakers.push(() => makeCharacter(
  32985. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32986. {
  32987. front: {
  32988. height: math.unit(2, "meters"),
  32989. weight: math.unit(350, "kg"),
  32990. name: "Front",
  32991. image: {
  32992. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32993. extra: 898 / 838,
  32994. bottom: 9 / 907
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Micro",
  33001. height: math.unit(8, "meters")
  33002. },
  33003. {
  33004. name: "Normal",
  33005. height: math.unit(50, "meters"),
  33006. default: true
  33007. },
  33008. {
  33009. name: "Macro",
  33010. height: math.unit(500, "meters")
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33016. {
  33017. front: {
  33018. height: math.unit(6 + 6 / 12, "feet"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/khardesh/front.svg",
  33022. extra: 1788/1596,
  33023. bottom: 66/1854
  33024. }
  33025. },
  33026. back: {
  33027. height: math.unit(6 + 6 / 12, "feet"),
  33028. name: "Back",
  33029. image: {
  33030. source: "./media/characters/khardesh/back.svg",
  33031. extra: 1781/1584,
  33032. bottom: 68/1849
  33033. }
  33034. },
  33035. },
  33036. [
  33037. {
  33038. name: "Normal",
  33039. height: math.unit(6 + 6 / 12, "feet"),
  33040. default: true
  33041. },
  33042. {
  33043. name: "Normal+",
  33044. height: math.unit(4, "meters")
  33045. },
  33046. {
  33047. name: "Macro",
  33048. height: math.unit(50, "meters")
  33049. },
  33050. {
  33051. name: "Macro+",
  33052. height: math.unit(100, "meters")
  33053. },
  33054. {
  33055. name: "Megamacro",
  33056. height: math.unit(20, "km")
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(6, "feet"),
  33065. weight: math.unit(150, "lb"),
  33066. name: "Front",
  33067. image: {
  33068. source: "./media/characters/kosho/front.svg",
  33069. extra: 1847 / 1847,
  33070. bottom: 86 / 1933
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Second-stage micro",
  33077. height: math.unit(0.5, "inches")
  33078. },
  33079. {
  33080. name: "First-stage micro",
  33081. height: math.unit(6, "inches")
  33082. },
  33083. {
  33084. name: "Normal",
  33085. height: math.unit(6, "feet"),
  33086. default: true
  33087. },
  33088. {
  33089. name: "First-stage macro",
  33090. height: math.unit(72, "feet")
  33091. },
  33092. {
  33093. name: "Second-stage macro",
  33094. height: math.unit(864, "feet")
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33100. {
  33101. normal: {
  33102. height: math.unit(4 + 6 / 12, "feet"),
  33103. name: "Normal",
  33104. image: {
  33105. source: "./media/characters/hydra/normal.svg",
  33106. extra: 2833 / 2634,
  33107. bottom: 68 / 2901
  33108. }
  33109. },
  33110. smol: {
  33111. height: math.unit(0.705, "inches"),
  33112. name: "Smol",
  33113. image: {
  33114. source: "./media/characters/hydra/smol.svg",
  33115. extra: 2715 / 2540,
  33116. bottom: 0 / 2715
  33117. }
  33118. },
  33119. },
  33120. [
  33121. {
  33122. name: "Normal",
  33123. height: math.unit(4 + 6 / 12, "feet"),
  33124. default: true
  33125. }
  33126. ]
  33127. ))
  33128. characterMakers.push(() => makeCharacter(
  33129. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33130. {
  33131. front: {
  33132. height: math.unit(0.6, "cm"),
  33133. name: "Front",
  33134. image: {
  33135. source: "./media/characters/daz/front.svg",
  33136. extra: 1682 / 1164,
  33137. bottom: 42 / 1724
  33138. }
  33139. },
  33140. },
  33141. [
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(0.6, "cm"),
  33145. default: true
  33146. },
  33147. ]
  33148. ))
  33149. characterMakers.push(() => makeCharacter(
  33150. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33151. {
  33152. front: {
  33153. height: math.unit(6, "feet"),
  33154. weight: math.unit(235, "lb"),
  33155. name: "Front",
  33156. image: {
  33157. source: "./media/characters/theo-pangolin/front.svg",
  33158. extra: 1996 / 1969,
  33159. bottom: 115 / 2111
  33160. }
  33161. },
  33162. back: {
  33163. height: math.unit(6, "feet"),
  33164. weight: math.unit(235, "lb"),
  33165. name: "Back",
  33166. image: {
  33167. source: "./media/characters/theo-pangolin/back.svg",
  33168. extra: 1979 / 1979,
  33169. bottom: 40 / 2019
  33170. }
  33171. },
  33172. feral: {
  33173. height: math.unit(2, "feet"),
  33174. weight: math.unit(30, "lb"),
  33175. name: "Feral",
  33176. image: {
  33177. source: "./media/characters/theo-pangolin/feral.svg",
  33178. extra: 803 / 791,
  33179. bottom: 181 / 984
  33180. }
  33181. },
  33182. footFive: {
  33183. height: math.unit(1.43, "feet"),
  33184. name: "Foot (Five Toes)",
  33185. image: {
  33186. source: "./media/characters/theo-pangolin/foot-five.svg"
  33187. }
  33188. },
  33189. footFour: {
  33190. height: math.unit(1.43, "feet"),
  33191. name: "Foot (Four Toes)",
  33192. image: {
  33193. source: "./media/characters/theo-pangolin/foot-four.svg"
  33194. }
  33195. },
  33196. handFour: {
  33197. height: math.unit(0.81, "feet"),
  33198. name: "Hand (Four Fingers)",
  33199. image: {
  33200. source: "./media/characters/theo-pangolin/hand-four.svg"
  33201. }
  33202. },
  33203. handThree: {
  33204. height: math.unit(0.81, "feet"),
  33205. name: "Hand (Three Fingers)",
  33206. image: {
  33207. source: "./media/characters/theo-pangolin/hand-three.svg"
  33208. }
  33209. },
  33210. headFront: {
  33211. height: math.unit(1.37, "feet"),
  33212. name: "Head (Front)",
  33213. image: {
  33214. source: "./media/characters/theo-pangolin/head-front.svg"
  33215. }
  33216. },
  33217. headSide: {
  33218. height: math.unit(1.43, "feet"),
  33219. name: "Head (Side)",
  33220. image: {
  33221. source: "./media/characters/theo-pangolin/head-side.svg"
  33222. }
  33223. },
  33224. tongue: {
  33225. height: math.unit(2.29, "feet"),
  33226. name: "Tongue",
  33227. image: {
  33228. source: "./media/characters/theo-pangolin/tongue.svg"
  33229. }
  33230. },
  33231. },
  33232. [
  33233. {
  33234. name: "Normal",
  33235. height: math.unit(6, "feet")
  33236. },
  33237. {
  33238. name: "Macro",
  33239. height: math.unit(400, "feet"),
  33240. default: true
  33241. },
  33242. ]
  33243. ))
  33244. characterMakers.push(() => makeCharacter(
  33245. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33246. {
  33247. front: {
  33248. height: math.unit(6, "inches"),
  33249. weight: math.unit(0.036, "kg"),
  33250. name: "Front",
  33251. image: {
  33252. source: "./media/characters/renée/front.svg",
  33253. extra: 900 / 886,
  33254. bottom: 8 / 908
  33255. }
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Nano",
  33261. height: math.unit(1, "nm")
  33262. },
  33263. {
  33264. name: "Micro",
  33265. height: math.unit(1, "mm")
  33266. },
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(6, "inches")
  33270. },
  33271. {
  33272. name: "Macro",
  33273. height: math.unit(2000, "feet"),
  33274. default: true
  33275. },
  33276. {
  33277. name: "Megamacro",
  33278. height: math.unit(2, "km")
  33279. },
  33280. {
  33281. name: "Gigamacro",
  33282. height: math.unit(2000, "km")
  33283. },
  33284. {
  33285. name: "Teramacro",
  33286. height: math.unit(250000, "km")
  33287. },
  33288. ]
  33289. ))
  33290. characterMakers.push(() => makeCharacter(
  33291. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33292. {
  33293. front: {
  33294. height: math.unit(4, "meters"),
  33295. weight: math.unit(150, "kg"),
  33296. name: "Front",
  33297. image: {
  33298. source: "./media/characters/caledvwlch/front.svg",
  33299. extra: 1757/1537,
  33300. bottom: 31/1788
  33301. }
  33302. },
  33303. side: {
  33304. height: math.unit(4, "meters"),
  33305. weight: math.unit(150, "kg"),
  33306. name: "Side",
  33307. image: {
  33308. source: "./media/characters/caledvwlch/side.svg",
  33309. extra: 1605 / 1536,
  33310. bottom: 31 / 1636
  33311. }
  33312. },
  33313. back: {
  33314. height: math.unit(4, "meters"),
  33315. weight: math.unit(150, "kg"),
  33316. name: "Back",
  33317. image: {
  33318. source: "./media/characters/caledvwlch/back.svg",
  33319. extra: 1635 / 1565,
  33320. bottom: 27 / 1662
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "\"Incognito\"",
  33327. height: math.unit(4, "meters")
  33328. },
  33329. {
  33330. name: "Small rampage",
  33331. height: math.unit(600, "meters")
  33332. },
  33333. {
  33334. name: "Mega",
  33335. height: math.unit(30, "km")
  33336. },
  33337. {
  33338. name: "Home-size",
  33339. height: math.unit(50, "km"),
  33340. default: true
  33341. },
  33342. {
  33343. name: "Giga",
  33344. height: math.unit(300, "km")
  33345. },
  33346. {
  33347. name: "Lounging",
  33348. height: math.unit(11000, "km")
  33349. },
  33350. {
  33351. name: "Planet snacking",
  33352. height: math.unit(2000000, "km")
  33353. },
  33354. ]
  33355. ))
  33356. characterMakers.push(() => makeCharacter(
  33357. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33358. {
  33359. front: {
  33360. height: math.unit(6, "feet"),
  33361. weight: math.unit(215, "lb"),
  33362. name: "Front",
  33363. image: {
  33364. source: "./media/characters/sapphire-svell/front.svg",
  33365. extra: 495 / 455,
  33366. bottom: 20 / 515
  33367. }
  33368. },
  33369. back: {
  33370. height: math.unit(6, "feet"),
  33371. weight: math.unit(216, "lb"),
  33372. name: "Back",
  33373. image: {
  33374. source: "./media/characters/sapphire-svell/back.svg",
  33375. extra: 497 / 477,
  33376. bottom: 7 / 504
  33377. }
  33378. },
  33379. maw: {
  33380. height: math.unit(1.57, "feet"),
  33381. name: "Maw",
  33382. image: {
  33383. source: "./media/characters/sapphire-svell/maw.svg"
  33384. }
  33385. },
  33386. foot: {
  33387. height: math.unit(1.07, "feet"),
  33388. name: "Foot",
  33389. image: {
  33390. source: "./media/characters/sapphire-svell/foot.svg"
  33391. }
  33392. },
  33393. toering: {
  33394. height: math.unit(1.7, "inch"),
  33395. name: "Toering",
  33396. image: {
  33397. source: "./media/characters/sapphire-svell/toering.svg"
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(300, "feet"),
  33405. default: true
  33406. },
  33407. {
  33408. name: "Augmented",
  33409. height: math.unit(1250, "feet")
  33410. },
  33411. {
  33412. name: "Unleashed",
  33413. height: math.unit(3000, "feet")
  33414. },
  33415. ]
  33416. ))
  33417. characterMakers.push(() => makeCharacter(
  33418. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33419. {
  33420. side: {
  33421. height: math.unit(2 + 3 / 12, "feet"),
  33422. weight: math.unit(110, "lb"),
  33423. name: "Side",
  33424. image: {
  33425. source: "./media/characters/glitch-flux/side.svg",
  33426. extra: 997 / 805,
  33427. bottom: 20 / 1017
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Normal",
  33434. height: math.unit(2 + 3 / 12, "feet"),
  33435. default: true
  33436. },
  33437. ]
  33438. ))
  33439. characterMakers.push(() => makeCharacter(
  33440. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33441. {
  33442. front: {
  33443. height: math.unit(4, "meters"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/mid/front.svg",
  33447. extra: 507 / 476,
  33448. bottom: 17 / 524
  33449. }
  33450. },
  33451. back: {
  33452. height: math.unit(4, "meters"),
  33453. name: "Back",
  33454. image: {
  33455. source: "./media/characters/mid/back.svg",
  33456. extra: 519 / 487,
  33457. bottom: 7 / 526
  33458. }
  33459. },
  33460. stuck: {
  33461. height: math.unit(2.2, "meters"),
  33462. name: "Stuck",
  33463. image: {
  33464. source: "./media/characters/mid/stuck.svg",
  33465. extra: 1951 / 1869,
  33466. bottom: 88 / 2039
  33467. }
  33468. }
  33469. },
  33470. [
  33471. {
  33472. name: "Normal",
  33473. height: math.unit(4, "meters"),
  33474. default: true
  33475. },
  33476. {
  33477. name: "Big",
  33478. height: math.unit(10, "meters")
  33479. },
  33480. {
  33481. name: "Macro",
  33482. height: math.unit(800, "meters")
  33483. },
  33484. {
  33485. name: "Megamacro",
  33486. height: math.unit(100, "km")
  33487. },
  33488. {
  33489. name: "Overgrown",
  33490. height: math.unit(1, "parsec")
  33491. },
  33492. ]
  33493. ))
  33494. characterMakers.push(() => makeCharacter(
  33495. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33496. {
  33497. front: {
  33498. height: math.unit(2.5, "meters"),
  33499. weight: math.unit(225, "kg"),
  33500. name: "Front",
  33501. image: {
  33502. source: "./media/characters/iris/front.svg",
  33503. extra: 3348 / 3251,
  33504. bottom: 205 / 3553
  33505. }
  33506. },
  33507. maw: {
  33508. height: math.unit(0.56, "meter"),
  33509. name: "Maw",
  33510. image: {
  33511. source: "./media/characters/iris/maw.svg"
  33512. }
  33513. },
  33514. },
  33515. [
  33516. {
  33517. name: "Mewter cat",
  33518. height: math.unit(1.2, "meters")
  33519. },
  33520. {
  33521. name: "Normal",
  33522. height: math.unit(2.5, "meters"),
  33523. default: true
  33524. },
  33525. {
  33526. name: "Minimacro",
  33527. height: math.unit(18, "feet")
  33528. },
  33529. {
  33530. name: "Macro",
  33531. height: math.unit(140, "feet")
  33532. },
  33533. {
  33534. name: "Macro+",
  33535. height: math.unit(180, "meters")
  33536. },
  33537. {
  33538. name: "Megamacro",
  33539. height: math.unit(2746, "meters")
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(6, "feet"),
  33548. weight: math.unit(135, "lb"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/axel/front.svg",
  33552. extra: 908 / 908,
  33553. bottom: 58 / 966
  33554. }
  33555. },
  33556. side: {
  33557. height: math.unit(6, "feet"),
  33558. weight: math.unit(135, "lb"),
  33559. name: "Side",
  33560. image: {
  33561. source: "./media/characters/axel/side.svg",
  33562. extra: 958 / 958,
  33563. bottom: 11 / 969
  33564. }
  33565. },
  33566. back: {
  33567. height: math.unit(6, "feet"),
  33568. weight: math.unit(135, "lb"),
  33569. name: "Back",
  33570. image: {
  33571. source: "./media/characters/axel/back.svg",
  33572. extra: 887 / 887,
  33573. bottom: 34 / 921
  33574. }
  33575. },
  33576. head: {
  33577. height: math.unit(1.07, "feet"),
  33578. name: "Head",
  33579. image: {
  33580. source: "./media/characters/axel/head.svg"
  33581. }
  33582. },
  33583. beak: {
  33584. height: math.unit(1.4, "feet"),
  33585. name: "Beak",
  33586. image: {
  33587. source: "./media/characters/axel/beak.svg"
  33588. }
  33589. },
  33590. beakSide: {
  33591. height: math.unit(1.4, "feet"),
  33592. name: "Beak Side",
  33593. image: {
  33594. source: "./media/characters/axel/beak-side.svg"
  33595. }
  33596. },
  33597. sheath: {
  33598. height: math.unit(0.5, "feet"),
  33599. name: "Sheath",
  33600. image: {
  33601. source: "./media/characters/axel/sheath.svg"
  33602. }
  33603. },
  33604. dick: {
  33605. height: math.unit(0.98, "feet"),
  33606. name: "Dick",
  33607. image: {
  33608. source: "./media/characters/axel/dick.svg"
  33609. }
  33610. },
  33611. },
  33612. [
  33613. {
  33614. name: "Macro",
  33615. height: math.unit(68, "meters"),
  33616. default: true
  33617. },
  33618. ]
  33619. ))
  33620. characterMakers.push(() => makeCharacter(
  33621. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33622. {
  33623. front: {
  33624. height: math.unit(3.5, "meters"),
  33625. weight: math.unit(1200, "kg"),
  33626. name: "Front",
  33627. image: {
  33628. source: "./media/characters/joanna/front.svg",
  33629. extra: 1596 / 1488,
  33630. bottom: 29 / 1625
  33631. }
  33632. },
  33633. back: {
  33634. height: math.unit(3.5, "meters"),
  33635. weight: math.unit(1200, "kg"),
  33636. name: "Back",
  33637. image: {
  33638. source: "./media/characters/joanna/back.svg",
  33639. extra: 1594 / 1495,
  33640. bottom: 26 / 1620
  33641. }
  33642. },
  33643. frontShorts: {
  33644. height: math.unit(3.5, "meters"),
  33645. weight: math.unit(1200, "kg"),
  33646. name: "Front (Shorts)",
  33647. image: {
  33648. source: "./media/characters/joanna/front-shorts.svg",
  33649. extra: 1596 / 1488,
  33650. bottom: 29 / 1625
  33651. }
  33652. },
  33653. frontBiker: {
  33654. height: math.unit(3.5, "meters"),
  33655. weight: math.unit(1200, "kg"),
  33656. name: "Front (Biker)",
  33657. image: {
  33658. source: "./media/characters/joanna/front-biker.svg",
  33659. extra: 1596 / 1488,
  33660. bottom: 29 / 1625
  33661. }
  33662. },
  33663. backBiker: {
  33664. height: math.unit(3.5, "meters"),
  33665. weight: math.unit(1200, "kg"),
  33666. name: "Back (Biker)",
  33667. image: {
  33668. source: "./media/characters/joanna/back-biker.svg",
  33669. extra: 1594 / 1495,
  33670. bottom: 88 / 1682
  33671. }
  33672. },
  33673. bikeLeft: {
  33674. height: math.unit(2.4, "meters"),
  33675. weight: math.unit(1600, "kg"),
  33676. name: "Bike (Left)",
  33677. image: {
  33678. source: "./media/characters/joanna/bike-left.svg",
  33679. extra: 720 / 720,
  33680. bottom: 8 / 728
  33681. }
  33682. },
  33683. bikeRight: {
  33684. height: math.unit(2.4, "meters"),
  33685. weight: math.unit(1600, "kg"),
  33686. name: "Bike (Right)",
  33687. image: {
  33688. source: "./media/characters/joanna/bike-right.svg",
  33689. extra: 720 / 720,
  33690. bottom: 8 / 728
  33691. }
  33692. },
  33693. },
  33694. [
  33695. {
  33696. name: "Incognito",
  33697. height: math.unit(3.5, "meters")
  33698. },
  33699. {
  33700. name: "Casual Big",
  33701. height: math.unit(200, "meters")
  33702. },
  33703. {
  33704. name: "Macro",
  33705. height: math.unit(600, "meters")
  33706. },
  33707. {
  33708. name: "Original",
  33709. height: math.unit(20, "km"),
  33710. default: true
  33711. },
  33712. {
  33713. name: "Giga",
  33714. height: math.unit(400, "km")
  33715. },
  33716. {
  33717. name: "Lounging",
  33718. height: math.unit(1500, "km")
  33719. },
  33720. {
  33721. name: "Planetary",
  33722. height: math.unit(200000, "km")
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(6, "feet"),
  33731. weight: math.unit(150, "lb"),
  33732. name: "Front",
  33733. image: {
  33734. source: "./media/characters/hugo-sigil/front.svg",
  33735. extra: 522 / 500,
  33736. bottom: 2 / 524
  33737. }
  33738. },
  33739. back: {
  33740. height: math.unit(6, "feet"),
  33741. weight: math.unit(150, "lb"),
  33742. name: "Back",
  33743. image: {
  33744. source: "./media/characters/hugo-sigil/back.svg",
  33745. extra: 519 / 495,
  33746. bottom: 5 / 524
  33747. }
  33748. },
  33749. maw: {
  33750. height: math.unit(1.4, "feet"),
  33751. weight: math.unit(150, "lb"),
  33752. name: "Maw",
  33753. image: {
  33754. source: "./media/characters/hugo-sigil/maw.svg"
  33755. }
  33756. },
  33757. feet: {
  33758. height: math.unit(1.56, "feet"),
  33759. weight: math.unit(150, "lb"),
  33760. name: "Feet",
  33761. image: {
  33762. source: "./media/characters/hugo-sigil/feet.svg",
  33763. extra: 177 / 177,
  33764. bottom: 12 / 189
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Normal",
  33771. height: math.unit(6, "feet")
  33772. },
  33773. {
  33774. name: "Macro",
  33775. height: math.unit(200, "feet"),
  33776. default: true
  33777. },
  33778. ]
  33779. ))
  33780. characterMakers.push(() => makeCharacter(
  33781. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33782. {
  33783. front: {
  33784. height: math.unit(6, "feet"),
  33785. weight: math.unit(150, "lb"),
  33786. name: "Front",
  33787. image: {
  33788. source: "./media/characters/peri/front.svg",
  33789. extra: 2354 / 2233,
  33790. bottom: 49 / 2403
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Really Small",
  33797. height: math.unit(1, "nm")
  33798. },
  33799. {
  33800. name: "Micro",
  33801. height: math.unit(4, "inches")
  33802. },
  33803. {
  33804. name: "Normal",
  33805. height: math.unit(7, "inches"),
  33806. default: true
  33807. },
  33808. {
  33809. name: "Macro",
  33810. height: math.unit(400, "feet")
  33811. },
  33812. {
  33813. name: "Megamacro",
  33814. height: math.unit(100, "miles")
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33820. {
  33821. frontSlim: {
  33822. height: math.unit(7, "feet"),
  33823. name: "Front (Slim)",
  33824. image: {
  33825. source: "./media/characters/issilora/front-slim.svg",
  33826. extra: 529 / 449,
  33827. bottom: 53 / 582
  33828. }
  33829. },
  33830. sideSlim: {
  33831. height: math.unit(7, "feet"),
  33832. name: "Side (Slim)",
  33833. image: {
  33834. source: "./media/characters/issilora/side-slim.svg",
  33835. extra: 570 / 480,
  33836. bottom: 30 / 600
  33837. }
  33838. },
  33839. backSlim: {
  33840. height: math.unit(7, "feet"),
  33841. name: "Back (Slim)",
  33842. image: {
  33843. source: "./media/characters/issilora/back-slim.svg",
  33844. extra: 537 / 455,
  33845. bottom: 46 / 583
  33846. }
  33847. },
  33848. frontBuff: {
  33849. height: math.unit(7, "feet"),
  33850. name: "Front (Buff)",
  33851. image: {
  33852. source: "./media/characters/issilora/front-buff.svg",
  33853. extra: 2310 / 2035,
  33854. bottom: 335 / 2645
  33855. }
  33856. },
  33857. head: {
  33858. height: math.unit(1.94, "feet"),
  33859. name: "Head",
  33860. image: {
  33861. source: "./media/characters/issilora/head.svg"
  33862. }
  33863. },
  33864. },
  33865. [
  33866. {
  33867. name: "Minimum",
  33868. height: math.unit(7, "feet")
  33869. },
  33870. {
  33871. name: "Comfortable",
  33872. height: math.unit(17, "feet")
  33873. },
  33874. {
  33875. name: "Fun Size",
  33876. height: math.unit(47, "feet")
  33877. },
  33878. {
  33879. name: "Natural Macro",
  33880. height: math.unit(137, "feet"),
  33881. default: true
  33882. },
  33883. {
  33884. name: "Maximum Kaiju",
  33885. height: math.unit(397, "feet")
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33891. {
  33892. front: {
  33893. height: math.unit(50 + 9/12, "feet"),
  33894. weight: math.unit(32.8, "tons"),
  33895. name: "Front",
  33896. image: {
  33897. source: "./media/characters/irb'iiritaahn/front.svg",
  33898. extra: 1878/1826,
  33899. bottom: 326/2204
  33900. }
  33901. },
  33902. back: {
  33903. height: math.unit(50 + 9/12, "feet"),
  33904. weight: math.unit(32.8, "tons"),
  33905. name: "Back",
  33906. image: {
  33907. source: "./media/characters/irb'iiritaahn/back.svg",
  33908. extra: 2052/2018,
  33909. bottom: 152/2204
  33910. }
  33911. },
  33912. head: {
  33913. height: math.unit(12.86, "feet"),
  33914. name: "Head",
  33915. image: {
  33916. source: "./media/characters/irb'iiritaahn/head.svg"
  33917. }
  33918. },
  33919. maw: {
  33920. height: math.unit(9.66, "feet"),
  33921. name: "Maw",
  33922. image: {
  33923. source: "./media/characters/irb'iiritaahn/maw.svg"
  33924. }
  33925. },
  33926. frontDick: {
  33927. height: math.unit(8.78461, "feet"),
  33928. name: "Front Dick",
  33929. image: {
  33930. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33931. }
  33932. },
  33933. rearDick: {
  33934. height: math.unit(8.78461, "feet"),
  33935. name: "Rear Dick",
  33936. image: {
  33937. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33938. }
  33939. },
  33940. rearDickUnfolded: {
  33941. height: math.unit(8.78, "feet"),
  33942. name: "Rear Dick (Unfolded)",
  33943. image: {
  33944. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33945. }
  33946. },
  33947. wings: {
  33948. height: math.unit(43, "feet"),
  33949. name: "Wings",
  33950. image: {
  33951. source: "./media/characters/irb'iiritaahn/wings.svg"
  33952. }
  33953. },
  33954. },
  33955. [
  33956. {
  33957. name: "Macro",
  33958. height: math.unit(50 + 9/12, "feet"),
  33959. default: true
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33965. {
  33966. front: {
  33967. height: math.unit(205, "cm"),
  33968. weight: math.unit(102, "kg"),
  33969. name: "Front",
  33970. image: {
  33971. source: "./media/characters/irbisgreif/front.svg",
  33972. extra: 785/706,
  33973. bottom: 13/798
  33974. }
  33975. },
  33976. back: {
  33977. height: math.unit(205, "cm"),
  33978. weight: math.unit(102, "kg"),
  33979. name: "Back",
  33980. image: {
  33981. source: "./media/characters/irbisgreif/back.svg",
  33982. extra: 713/701,
  33983. bottom: 26/739
  33984. }
  33985. },
  33986. frontDressed: {
  33987. height: math.unit(216, "cm"),
  33988. weight: math.unit(102, "kg"),
  33989. name: "Front (Dressed)",
  33990. image: {
  33991. source: "./media/characters/irbisgreif/front-dressed.svg",
  33992. extra: 902/776,
  33993. bottom: 14/916
  33994. }
  33995. },
  33996. sideDressed: {
  33997. height: math.unit(195, "cm"),
  33998. weight: math.unit(102, "kg"),
  33999. name: "Side (Dressed)",
  34000. image: {
  34001. source: "./media/characters/irbisgreif/side-dressed.svg",
  34002. extra: 788/688,
  34003. bottom: 21/809
  34004. }
  34005. },
  34006. backDressed: {
  34007. height: math.unit(216, "cm"),
  34008. weight: math.unit(102, "kg"),
  34009. name: "Back (Dressed)",
  34010. image: {
  34011. source: "./media/characters/irbisgreif/back-dressed.svg",
  34012. extra: 901/783,
  34013. bottom: 10/911
  34014. }
  34015. },
  34016. dick: {
  34017. height: math.unit(0.49, "feet"),
  34018. name: "Dick",
  34019. image: {
  34020. source: "./media/characters/irbisgreif/dick.svg"
  34021. }
  34022. },
  34023. wingTop: {
  34024. height: math.unit(1.93 , "feet"),
  34025. name: "Wing (Top)",
  34026. image: {
  34027. source: "./media/characters/irbisgreif/wing-top.svg"
  34028. }
  34029. },
  34030. wingBottom: {
  34031. height: math.unit(1.93 , "feet"),
  34032. name: "Wing (Bottom)",
  34033. image: {
  34034. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(216, "cm"),
  34042. default: true
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(6, "feet"),
  34051. weight: math.unit(150, "lb"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/pride/front.svg",
  34055. extra: 1299/1230,
  34056. bottom: 18/1317
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(7, "feet")
  34064. },
  34065. {
  34066. name: "Mini-macro",
  34067. height: math.unit(11, "feet")
  34068. },
  34069. {
  34070. name: "Macro",
  34071. height: math.unit(15, "meters"),
  34072. default: true
  34073. },
  34074. {
  34075. name: "Macro+",
  34076. height: math.unit(40, "meters")
  34077. },
  34078. ]
  34079. ))
  34080. characterMakers.push(() => makeCharacter(
  34081. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34082. {
  34083. front: {
  34084. height: math.unit(4 + 2 / 12, "feet"),
  34085. weight: math.unit(95, "lb"),
  34086. name: "Front",
  34087. image: {
  34088. source: "./media/characters/vaelophis-nyx/front.svg",
  34089. extra: 2532/2330,
  34090. bottom: 0/2532
  34091. }
  34092. },
  34093. back: {
  34094. height: math.unit(4 + 2 / 12, "feet"),
  34095. weight: math.unit(95, "lb"),
  34096. name: "Back",
  34097. image: {
  34098. source: "./media/characters/vaelophis-nyx/back.svg",
  34099. extra: 2484/2361,
  34100. bottom: 0/2484
  34101. }
  34102. },
  34103. feralSide: {
  34104. height: math.unit(2 + 1/12, "feet"),
  34105. weight: math.unit(20, "lb"),
  34106. name: "Feral (Side)",
  34107. image: {
  34108. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34109. extra: 1721/1581,
  34110. bottom: 70/1791
  34111. }
  34112. },
  34113. feralLazing: {
  34114. height: math.unit(1.08, "feet"),
  34115. weight: math.unit(20, "lb"),
  34116. name: "Feral (Lazing)",
  34117. image: {
  34118. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34119. extra: 822/822,
  34120. bottom: 248/1070
  34121. }
  34122. },
  34123. ear: {
  34124. height: math.unit(0.416, "feet"),
  34125. name: "Ear",
  34126. image: {
  34127. source: "./media/characters/vaelophis-nyx/ear.svg"
  34128. }
  34129. },
  34130. eye: {
  34131. height: math.unit(0.0748, "feet"),
  34132. name: "Eye",
  34133. image: {
  34134. source: "./media/characters/vaelophis-nyx/eye.svg"
  34135. }
  34136. },
  34137. mouth: {
  34138. height: math.unit(0.378, "feet"),
  34139. name: "Mouth",
  34140. image: {
  34141. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34142. }
  34143. },
  34144. spade: {
  34145. height: math.unit(0.55, "feet"),
  34146. name: "Spade",
  34147. image: {
  34148. source: "./media/characters/vaelophis-nyx/spade.svg"
  34149. }
  34150. },
  34151. },
  34152. [
  34153. {
  34154. name: "Normal",
  34155. height: math.unit(4 + 2/12, "feet"),
  34156. default: true
  34157. },
  34158. ]
  34159. ))
  34160. characterMakers.push(() => makeCharacter(
  34161. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34162. {
  34163. front: {
  34164. height: math.unit(7, "feet"),
  34165. weight: math.unit(231, "lb"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/flux/front.svg",
  34169. extra: 919/871,
  34170. bottom: 0/919
  34171. }
  34172. },
  34173. back: {
  34174. height: math.unit(7, "feet"),
  34175. weight: math.unit(231, "lb"),
  34176. name: "Back",
  34177. image: {
  34178. source: "./media/characters/flux/back.svg",
  34179. extra: 1040/992,
  34180. bottom: 0/1040
  34181. }
  34182. },
  34183. frontDressed: {
  34184. height: math.unit(7, "feet"),
  34185. weight: math.unit(231, "lb"),
  34186. name: "Front (Dressed)",
  34187. image: {
  34188. source: "./media/characters/flux/front-dressed.svg",
  34189. extra: 919/871,
  34190. bottom: 0/919
  34191. }
  34192. },
  34193. feralSide: {
  34194. height: math.unit(5, "feet"),
  34195. weight: math.unit(150, "lb"),
  34196. name: "Feral (Side)",
  34197. image: {
  34198. source: "./media/characters/flux/feral-side.svg",
  34199. extra: 598/528,
  34200. bottom: 28/626
  34201. }
  34202. },
  34203. head: {
  34204. height: math.unit(1.585, "feet"),
  34205. name: "Head",
  34206. image: {
  34207. source: "./media/characters/flux/head.svg"
  34208. }
  34209. },
  34210. headSide: {
  34211. height: math.unit(1.74, "feet"),
  34212. name: "Head (Side)",
  34213. image: {
  34214. source: "./media/characters/flux/head-side.svg"
  34215. }
  34216. },
  34217. headSideFire: {
  34218. height: math.unit(1.76, "feet"),
  34219. name: "Head (Side, Fire)",
  34220. image: {
  34221. source: "./media/characters/flux/head-side-fire.svg"
  34222. }
  34223. },
  34224. },
  34225. [
  34226. {
  34227. name: "Normal",
  34228. height: math.unit(7, "feet"),
  34229. default: true
  34230. },
  34231. ]
  34232. ))
  34233. characterMakers.push(() => makeCharacter(
  34234. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34235. {
  34236. front: {
  34237. height: math.unit(9, "feet"),
  34238. weight: math.unit(1012, "lb"),
  34239. name: "Front",
  34240. image: {
  34241. source: "./media/characters/ulfra-lupae/front.svg",
  34242. extra: 1083/1011,
  34243. bottom: 67/1150
  34244. }
  34245. },
  34246. },
  34247. [
  34248. {
  34249. name: "Micro",
  34250. height: math.unit(6, "inches")
  34251. },
  34252. {
  34253. name: "Socializing",
  34254. height: math.unit(6 + 5/12, "feet")
  34255. },
  34256. {
  34257. name: "Normal",
  34258. height: math.unit(9, "feet"),
  34259. default: true
  34260. },
  34261. {
  34262. name: "Macro",
  34263. height: math.unit(150, "feet")
  34264. },
  34265. ]
  34266. ))
  34267. characterMakers.push(() => makeCharacter(
  34268. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34269. {
  34270. front: {
  34271. height: math.unit(5 + 2/12, "feet"),
  34272. weight: math.unit(120, "lb"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/timber/front.svg",
  34276. extra: 2814/2705,
  34277. bottom: 181/2995
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(5 + 2/12, "feet"),
  34285. default: true
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(9, "feet"),
  34294. name: "Front",
  34295. image: {
  34296. source: "./media/characters/nicki/front.svg",
  34297. extra: 1240/990,
  34298. bottom: 45/1285
  34299. },
  34300. form: "anthro",
  34301. default: true
  34302. },
  34303. side: {
  34304. height: math.unit(9, "feet"),
  34305. name: "Side",
  34306. image: {
  34307. source: "./media/characters/nicki/side.svg",
  34308. extra: 1047/973,
  34309. bottom: 61/1108
  34310. },
  34311. form: "anthro"
  34312. },
  34313. back: {
  34314. height: math.unit(9, "feet"),
  34315. name: "Back",
  34316. image: {
  34317. source: "./media/characters/nicki/back.svg",
  34318. extra: 1006/965,
  34319. bottom: 39/1045
  34320. },
  34321. form: "anthro"
  34322. },
  34323. taur: {
  34324. height: math.unit(15, "feet"),
  34325. name: "Taur",
  34326. image: {
  34327. source: "./media/characters/nicki/taur.svg",
  34328. extra: 1592/1347,
  34329. bottom: 0/1592
  34330. },
  34331. form: "taur",
  34332. default: true
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Normal",
  34338. height: math.unit(9, "feet"),
  34339. form: "anthro",
  34340. default: true
  34341. },
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(15, "feet"),
  34345. form: "taur",
  34346. default: true
  34347. }
  34348. ],
  34349. {
  34350. "anthro": {
  34351. name: "Anthro",
  34352. default: true
  34353. },
  34354. "taur": {
  34355. name: "Taur"
  34356. }
  34357. }
  34358. ))
  34359. characterMakers.push(() => makeCharacter(
  34360. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34361. {
  34362. front: {
  34363. height: math.unit(7 + 10/12, "feet"),
  34364. weight: math.unit(3.5, "tons"),
  34365. name: "Front",
  34366. image: {
  34367. source: "./media/characters/lee/front.svg",
  34368. extra: 1773/1615,
  34369. bottom: 86/1859
  34370. }
  34371. },
  34372. hand: {
  34373. height: math.unit(1.78, "feet"),
  34374. name: "Hand",
  34375. image: {
  34376. source: "./media/characters/lee/hand.svg"
  34377. }
  34378. },
  34379. maw: {
  34380. height: math.unit(1.18, "feet"),
  34381. name: "Maw",
  34382. image: {
  34383. source: "./media/characters/lee/maw.svg"
  34384. }
  34385. },
  34386. },
  34387. [
  34388. {
  34389. name: "Normal",
  34390. height: math.unit(7 + 10/12, "feet"),
  34391. default: true
  34392. },
  34393. ]
  34394. ))
  34395. characterMakers.push(() => makeCharacter(
  34396. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34397. {
  34398. front: {
  34399. height: math.unit(9, "feet"),
  34400. name: "Front",
  34401. image: {
  34402. source: "./media/characters/guti/front.svg",
  34403. extra: 4551/4355,
  34404. bottom: 123/4674
  34405. }
  34406. },
  34407. tongue: {
  34408. height: math.unit(1, "feet"),
  34409. name: "Tongue",
  34410. image: {
  34411. source: "./media/characters/guti/tongue.svg"
  34412. }
  34413. },
  34414. paw: {
  34415. height: math.unit(1.18, "feet"),
  34416. name: "Paw",
  34417. image: {
  34418. source: "./media/characters/guti/paw.svg"
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(9, "feet"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34432. {
  34433. side: {
  34434. height: math.unit(5, "meters"),
  34435. name: "Side",
  34436. image: {
  34437. source: "./media/characters/vesper/side.svg",
  34438. extra: 1605/1518,
  34439. bottom: 0/1605
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Small",
  34446. height: math.unit(5, "meters")
  34447. },
  34448. {
  34449. name: "Sage",
  34450. height: math.unit(100, "meters"),
  34451. default: true
  34452. },
  34453. {
  34454. name: "Fun Size",
  34455. height: math.unit(600, "meters")
  34456. },
  34457. {
  34458. name: "Goddess",
  34459. height: math.unit(20000, "km")
  34460. },
  34461. {
  34462. name: "Maximum",
  34463. height: math.unit(5, "galaxies")
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34469. {
  34470. front: {
  34471. height: math.unit(6 + 3/12, "feet"),
  34472. weight: math.unit(190, "lb"),
  34473. name: "Front",
  34474. image: {
  34475. source: "./media/characters/gawain/front.svg",
  34476. extra: 2222/2139,
  34477. bottom: 90/2312
  34478. }
  34479. },
  34480. back: {
  34481. height: math.unit(6 + 3/12, "feet"),
  34482. weight: math.unit(190, "lb"),
  34483. name: "Back",
  34484. image: {
  34485. source: "./media/characters/gawain/back.svg",
  34486. extra: 2199/2111,
  34487. bottom: 73/2272
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(6 + 3/12, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34501. {
  34502. side: {
  34503. height: math.unit(3.5, "meters"),
  34504. weight: math.unit(16000, "lb"),
  34505. name: "Side",
  34506. image: {
  34507. source: "./media/characters/dascalti/side.svg",
  34508. extra: 392/273,
  34509. bottom: 47/439
  34510. }
  34511. },
  34512. breath: {
  34513. height: math.unit(7.4, "feet"),
  34514. name: "Breath",
  34515. image: {
  34516. source: "./media/characters/dascalti/breath.svg"
  34517. }
  34518. },
  34519. fed: {
  34520. height: math.unit(3.6, "meters"),
  34521. weight: math.unit(16000, "lb"),
  34522. name: "Fed",
  34523. image: {
  34524. source: "./media/characters/dascalti/fed.svg",
  34525. extra: 1419/820,
  34526. bottom: 95/1514
  34527. }
  34528. },
  34529. },
  34530. [
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(3.5, "meters"),
  34534. default: true
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34540. {
  34541. front: {
  34542. height: math.unit(3 + 5/12, "feet"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/mauve/front.svg",
  34546. extra: 1126/1033,
  34547. bottom: 65/1191
  34548. }
  34549. },
  34550. side: {
  34551. height: math.unit(3 + 5/12, "feet"),
  34552. name: "Side",
  34553. image: {
  34554. source: "./media/characters/mauve/side.svg",
  34555. extra: 1089/1001,
  34556. bottom: 29/1118
  34557. }
  34558. },
  34559. back: {
  34560. height: math.unit(3 + 5/12, "feet"),
  34561. name: "Back",
  34562. image: {
  34563. source: "./media/characters/mauve/back.svg",
  34564. extra: 1173/1053,
  34565. bottom: 109/1282
  34566. }
  34567. },
  34568. },
  34569. [
  34570. {
  34571. name: "Normal",
  34572. height: math.unit(3 + 5/12, "feet"),
  34573. default: true
  34574. },
  34575. ]
  34576. ))
  34577. characterMakers.push(() => makeCharacter(
  34578. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34579. {
  34580. front: {
  34581. height: math.unit(6 + 3/12, "feet"),
  34582. weight: math.unit(450, "lb"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/carlos/front.svg",
  34586. extra: 444/423,
  34587. bottom: 27/471
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(6 + 3/12, "feet"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34601. {
  34602. back: {
  34603. height: math.unit(5 + 10/12, "feet"),
  34604. weight: math.unit(200, "lb"),
  34605. name: "Back",
  34606. image: {
  34607. source: "./media/characters/jax/back.svg",
  34608. extra: 764/739,
  34609. bottom: 25/789
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Normal",
  34616. height: math.unit(5 + 10/12, "feet"),
  34617. default: true
  34618. },
  34619. ]
  34620. ))
  34621. characterMakers.push(() => makeCharacter(
  34622. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34623. {
  34624. front: {
  34625. height: math.unit(8, "feet"),
  34626. weight: math.unit(250, "lb"),
  34627. name: "Front",
  34628. image: {
  34629. source: "./media/characters/eikthynir/front.svg",
  34630. extra: 1332/1166,
  34631. bottom: 82/1414
  34632. }
  34633. },
  34634. back: {
  34635. height: math.unit(8, "feet"),
  34636. weight: math.unit(250, "lb"),
  34637. name: "Back",
  34638. image: {
  34639. source: "./media/characters/eikthynir/back.svg",
  34640. extra: 1342/1190,
  34641. bottom: 19/1361
  34642. }
  34643. },
  34644. dick: {
  34645. height: math.unit(2.35, "feet"),
  34646. name: "Dick",
  34647. image: {
  34648. source: "./media/characters/eikthynir/dick.svg"
  34649. }
  34650. },
  34651. },
  34652. [
  34653. {
  34654. name: "Normal",
  34655. height: math.unit(8, "feet"),
  34656. default: true
  34657. },
  34658. ]
  34659. ))
  34660. characterMakers.push(() => makeCharacter(
  34661. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34662. {
  34663. front: {
  34664. height: math.unit(99, "meters"),
  34665. weight: math.unit(13000, "tons"),
  34666. name: "Front",
  34667. image: {
  34668. source: "./media/characters/zlmos/front.svg",
  34669. extra: 2202/1992,
  34670. bottom: 315/2517
  34671. }
  34672. },
  34673. },
  34674. [
  34675. {
  34676. name: "Macro",
  34677. height: math.unit(99, "meters"),
  34678. default: true
  34679. },
  34680. ]
  34681. ))
  34682. characterMakers.push(() => makeCharacter(
  34683. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34684. {
  34685. front: {
  34686. height: math.unit(6 + 5/12, "feet"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/purri/front.svg",
  34690. extra: 1698/1610,
  34691. bottom: 32/1730
  34692. }
  34693. },
  34694. frontAlt: {
  34695. height: math.unit(6 + 5/12, "feet"),
  34696. name: "Front (Alt)",
  34697. image: {
  34698. source: "./media/characters/purri/front-alt.svg",
  34699. extra: 450/420,
  34700. bottom: 26/476
  34701. }
  34702. },
  34703. boots: {
  34704. height: math.unit(5.5, "feet"),
  34705. name: "Boots",
  34706. image: {
  34707. source: "./media/characters/purri/boots.svg",
  34708. extra: 905/853,
  34709. bottom: 18/923
  34710. },
  34711. extraAttributes: {
  34712. "shoeSize": {
  34713. name: "Shoe Size",
  34714. power: 1,
  34715. type: "length",
  34716. base: math.unit(12, "ShoeSizeMensUS")
  34717. },
  34718. "platformHeight": {
  34719. name: "Platform Height",
  34720. power: 1,
  34721. type: "length",
  34722. base: math.unit(2, "inches")
  34723. },
  34724. }
  34725. },
  34726. lying: {
  34727. height: math.unit(2, "feet"),
  34728. name: "Lying",
  34729. image: {
  34730. source: "./media/characters/purri/lying.svg",
  34731. extra: 940/843,
  34732. bottom: 146/1086
  34733. }
  34734. },
  34735. devious: {
  34736. height: math.unit(1.77, "feet"),
  34737. name: "Devious",
  34738. image: {
  34739. source: "./media/characters/purri/devious.svg",
  34740. extra: 1440/1155,
  34741. bottom: 147/1587
  34742. }
  34743. },
  34744. bean: {
  34745. height: math.unit(1.94, "feet"),
  34746. name: "Bean",
  34747. image: {
  34748. source: "./media/characters/purri/bean.svg"
  34749. }
  34750. },
  34751. },
  34752. [
  34753. {
  34754. name: "Micro",
  34755. height: math.unit(1, "mm")
  34756. },
  34757. {
  34758. name: "Normal",
  34759. height: math.unit(6 + 5/12, "feet"),
  34760. default: true
  34761. },
  34762. {
  34763. name: "Macro :3c",
  34764. height: math.unit(2, "miles")
  34765. },
  34766. ]
  34767. ))
  34768. characterMakers.push(() => makeCharacter(
  34769. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34770. {
  34771. front: {
  34772. height: math.unit(6 + 2/12, "feet"),
  34773. weight: math.unit(250, "lb"),
  34774. name: "Front",
  34775. image: {
  34776. source: "./media/characters/moonlight/front.svg",
  34777. extra: 1044/908,
  34778. bottom: 56/1100
  34779. }
  34780. },
  34781. feral: {
  34782. height: math.unit(3 + 1/12, "feet"),
  34783. weight: math.unit(50, "kg"),
  34784. name: "Feral",
  34785. image: {
  34786. source: "./media/characters/moonlight/feral.svg",
  34787. extra: 3705/2791,
  34788. bottom: 145/3850
  34789. }
  34790. },
  34791. paw: {
  34792. height: math.unit(1, "feet"),
  34793. name: "Paw",
  34794. image: {
  34795. source: "./media/characters/moonlight/paw.svg"
  34796. }
  34797. },
  34798. paws: {
  34799. height: math.unit(0.98, "feet"),
  34800. name: "Paws",
  34801. image: {
  34802. source: "./media/characters/moonlight/paws.svg",
  34803. extra: 939/939,
  34804. bottom: 50/989
  34805. }
  34806. },
  34807. mouth: {
  34808. height: math.unit(0.48, "feet"),
  34809. name: "Mouth",
  34810. image: {
  34811. source: "./media/characters/moonlight/mouth.svg"
  34812. }
  34813. },
  34814. dick: {
  34815. height: math.unit(1.46, "feet"),
  34816. name: "Dick",
  34817. image: {
  34818. source: "./media/characters/moonlight/dick.svg"
  34819. }
  34820. },
  34821. },
  34822. [
  34823. {
  34824. name: "Normal",
  34825. height: math.unit(6 + 2/12, "feet"),
  34826. default: true
  34827. },
  34828. {
  34829. name: "Macro",
  34830. height: math.unit(300, "feet")
  34831. },
  34832. {
  34833. name: "Macro+",
  34834. height: math.unit(1, "mile")
  34835. },
  34836. {
  34837. name: "Mt. Moon",
  34838. height: math.unit(5, "miles")
  34839. },
  34840. {
  34841. name: "Megamacro",
  34842. height: math.unit(15, "miles")
  34843. },
  34844. ]
  34845. ))
  34846. characterMakers.push(() => makeCharacter(
  34847. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34848. {
  34849. back: {
  34850. height: math.unit(6, "feet"),
  34851. weight: math.unit(150, "lb"),
  34852. name: "Back",
  34853. image: {
  34854. source: "./media/characters/sylen/back.svg",
  34855. extra: 1335/1273,
  34856. bottom: 107/1442
  34857. }
  34858. },
  34859. },
  34860. [
  34861. {
  34862. name: "Normal",
  34863. height: math.unit(5 + 5/12, "feet")
  34864. },
  34865. {
  34866. name: "Megamacro",
  34867. height: math.unit(3, "miles"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(6, "feet"),
  34877. weight: math.unit(190, "lb"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/huttser/front.svg",
  34881. extra: 1152/1058,
  34882. bottom: 23/1175
  34883. }
  34884. },
  34885. side: {
  34886. height: math.unit(6, "feet"),
  34887. weight: math.unit(190, "lb"),
  34888. name: "Side",
  34889. image: {
  34890. source: "./media/characters/huttser/side.svg",
  34891. extra: 1174/1065,
  34892. bottom: 18/1192
  34893. }
  34894. },
  34895. back: {
  34896. height: math.unit(6, "feet"),
  34897. weight: math.unit(190, "lb"),
  34898. name: "Back",
  34899. image: {
  34900. source: "./media/characters/huttser/back.svg",
  34901. extra: 1158/1056,
  34902. bottom: 12/1170
  34903. }
  34904. },
  34905. },
  34906. [
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34911. {
  34912. side: {
  34913. height: math.unit(12 + 9/12, "feet"),
  34914. weight: math.unit(15000, "lb"),
  34915. name: "Side",
  34916. image: {
  34917. source: "./media/characters/faan/side.svg",
  34918. extra: 2747/2697,
  34919. bottom: 0/2747
  34920. }
  34921. },
  34922. front: {
  34923. height: math.unit(12 + 9/12, "feet"),
  34924. weight: math.unit(15000, "lb"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/faan/front.svg",
  34928. extra: 607/571,
  34929. bottom: 24/631
  34930. }
  34931. },
  34932. head: {
  34933. height: math.unit(2.85, "feet"),
  34934. name: "Head",
  34935. image: {
  34936. source: "./media/characters/faan/head.svg"
  34937. }
  34938. },
  34939. headAlt: {
  34940. height: math.unit(3.13, "feet"),
  34941. name: "Head (Alt)",
  34942. image: {
  34943. source: "./media/characters/faan/head-alt.svg"
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(12 + 9/12, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(6, "feet"),
  34960. weight: math.unit(300, "lb"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/tanio/front.svg",
  34964. extra: 711/673,
  34965. bottom: 25/736
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(6, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(3, "inches"),
  34982. name: "Front",
  34983. image: {
  34984. source: "./media/characters/noboru/front.svg",
  34985. extra: 1039/932,
  34986. bottom: 18/1057
  34987. }
  34988. },
  34989. },
  34990. [
  34991. {
  34992. name: "Micro",
  34993. height: math.unit(3, "inches"),
  34994. default: true
  34995. },
  34996. ]
  34997. ))
  34998. characterMakers.push(() => makeCharacter(
  34999. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35000. {
  35001. front: {
  35002. height: math.unit(1.85, "meters"),
  35003. weight: math.unit(80, "kg"),
  35004. name: "Front",
  35005. image: {
  35006. source: "./media/characters/daniel-barrett/front.svg",
  35007. extra: 355/337,
  35008. bottom: 9/364
  35009. }
  35010. },
  35011. },
  35012. [
  35013. {
  35014. name: "Pico",
  35015. height: math.unit(0.0433, "mm")
  35016. },
  35017. {
  35018. name: "Nano",
  35019. height: math.unit(1.5, "mm")
  35020. },
  35021. {
  35022. name: "Micro",
  35023. height: math.unit(5.3, "cm"),
  35024. default: true
  35025. },
  35026. {
  35027. name: "Normal",
  35028. height: math.unit(1.85, "meters")
  35029. },
  35030. {
  35031. name: "Macro",
  35032. height: math.unit(64.7, "meters")
  35033. },
  35034. {
  35035. name: "Megamacro",
  35036. height: math.unit(2.26, "km")
  35037. },
  35038. {
  35039. name: "Gigamacro",
  35040. height: math.unit(79, "km")
  35041. },
  35042. {
  35043. name: "Teramacro",
  35044. height: math.unit(2765, "km")
  35045. },
  35046. {
  35047. name: "Petamacro",
  35048. height: math.unit(96678, "km")
  35049. },
  35050. ]
  35051. ))
  35052. characterMakers.push(() => makeCharacter(
  35053. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35054. {
  35055. front: {
  35056. height: math.unit(30, "meters"),
  35057. weight: math.unit(400, "tons"),
  35058. name: "Front",
  35059. image: {
  35060. source: "./media/characters/zeel/front.svg",
  35061. extra: 2599/2599,
  35062. bottom: 226/2825
  35063. }
  35064. },
  35065. },
  35066. [
  35067. {
  35068. name: "Macro",
  35069. height: math.unit(30, "meters"),
  35070. default: true
  35071. },
  35072. ]
  35073. ))
  35074. characterMakers.push(() => makeCharacter(
  35075. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35076. {
  35077. front: {
  35078. height: math.unit(6 + 7/12, "feet"),
  35079. weight: math.unit(210, "lb"),
  35080. name: "Front",
  35081. image: {
  35082. source: "./media/characters/tarn/front.svg",
  35083. extra: 3517/3220,
  35084. bottom: 91/3608
  35085. }
  35086. },
  35087. back: {
  35088. height: math.unit(6 + 7/12, "feet"),
  35089. weight: math.unit(210, "lb"),
  35090. name: "Back",
  35091. image: {
  35092. source: "./media/characters/tarn/back.svg",
  35093. extra: 3566/3241,
  35094. bottom: 34/3600
  35095. }
  35096. },
  35097. dick: {
  35098. height: math.unit(1.65, "feet"),
  35099. name: "Dick",
  35100. image: {
  35101. source: "./media/characters/tarn/dick.svg"
  35102. }
  35103. },
  35104. paw: {
  35105. height: math.unit(1.80, "feet"),
  35106. name: "Paw",
  35107. image: {
  35108. source: "./media/characters/tarn/paw.svg"
  35109. }
  35110. },
  35111. tongue: {
  35112. height: math.unit(0.97, "feet"),
  35113. name: "Tongue",
  35114. image: {
  35115. source: "./media/characters/tarn/tongue.svg"
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Micro",
  35122. height: math.unit(4, "inches")
  35123. },
  35124. {
  35125. name: "Normal",
  35126. height: math.unit(6 + 7/12, "feet"),
  35127. default: true
  35128. },
  35129. {
  35130. name: "Macro",
  35131. height: math.unit(300, "feet")
  35132. },
  35133. ]
  35134. ))
  35135. characterMakers.push(() => makeCharacter(
  35136. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35137. {
  35138. front: {
  35139. height: math.unit(5 + 7/12, "feet"),
  35140. weight: math.unit(80, "kg"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35144. extra: 3023/2865,
  35145. bottom: 33/3056
  35146. }
  35147. },
  35148. back: {
  35149. height: math.unit(5 + 7/12, "feet"),
  35150. weight: math.unit(80, "kg"),
  35151. name: "Back",
  35152. image: {
  35153. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35154. extra: 3020/2886,
  35155. bottom: 30/3050
  35156. }
  35157. },
  35158. dick: {
  35159. height: math.unit(0.98, "feet"),
  35160. name: "Dick",
  35161. image: {
  35162. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35163. }
  35164. },
  35165. anatomy: {
  35166. height: math.unit(2.86, "feet"),
  35167. name: "Anatomy",
  35168. image: {
  35169. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Really Small",
  35176. height: math.unit(2, "inches")
  35177. },
  35178. {
  35179. name: "Micro",
  35180. height: math.unit(5.583, "inches")
  35181. },
  35182. {
  35183. name: "Normal",
  35184. height: math.unit(5 + 7/12, "feet"),
  35185. default: true
  35186. },
  35187. {
  35188. name: "Macro",
  35189. height: math.unit(67, "feet")
  35190. },
  35191. {
  35192. name: "Megamacro",
  35193. height: math.unit(134, "feet")
  35194. },
  35195. ]
  35196. ))
  35197. characterMakers.push(() => makeCharacter(
  35198. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35199. {
  35200. front: {
  35201. height: math.unit(9, "feet"),
  35202. weight: math.unit(120, "lb"),
  35203. name: "Front",
  35204. image: {
  35205. source: "./media/characters/sally/front.svg",
  35206. extra: 1506/1349,
  35207. bottom: 66/1572
  35208. }
  35209. },
  35210. },
  35211. [
  35212. {
  35213. name: "Normal",
  35214. height: math.unit(9, "feet"),
  35215. default: true
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35221. {
  35222. front: {
  35223. height: math.unit(8, "feet"),
  35224. weight: math.unit(900, "lb"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/owen/front.svg",
  35228. extra: 1761/1657,
  35229. bottom: 74/1835
  35230. }
  35231. },
  35232. side: {
  35233. height: math.unit(8, "feet"),
  35234. weight: math.unit(900, "lb"),
  35235. name: "Side",
  35236. image: {
  35237. source: "./media/characters/owen/side.svg",
  35238. extra: 1797/1734,
  35239. bottom: 30/1827
  35240. }
  35241. },
  35242. back: {
  35243. height: math.unit(8, "feet"),
  35244. weight: math.unit(900, "lb"),
  35245. name: "Back",
  35246. image: {
  35247. source: "./media/characters/owen/back.svg",
  35248. extra: 1796/1706,
  35249. bottom: 59/1855
  35250. }
  35251. },
  35252. maw: {
  35253. height: math.unit(1.76, "feet"),
  35254. name: "Maw",
  35255. image: {
  35256. source: "./media/characters/owen/maw.svg"
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(8, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35270. {
  35271. front: {
  35272. height: math.unit(4, "feet"),
  35273. weight: math.unit(400, "lb"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/ryth/front.svg",
  35277. extra: 1920/1748,
  35278. bottom: 42/1962
  35279. }
  35280. },
  35281. back: {
  35282. height: math.unit(4, "feet"),
  35283. weight: math.unit(400, "lb"),
  35284. name: "Back",
  35285. image: {
  35286. source: "./media/characters/ryth/back.svg",
  35287. extra: 1897/1690,
  35288. bottom: 89/1986
  35289. }
  35290. },
  35291. mouth: {
  35292. height: math.unit(1.39, "feet"),
  35293. name: "Mouth",
  35294. image: {
  35295. source: "./media/characters/ryth/mouth.svg"
  35296. }
  35297. },
  35298. tailmaw: {
  35299. height: math.unit(1.23, "feet"),
  35300. name: "Tailmaw",
  35301. image: {
  35302. source: "./media/characters/ryth/tailmaw.svg"
  35303. }
  35304. },
  35305. goia: {
  35306. height: math.unit(4, "meters"),
  35307. weight: math.unit(10800, "lb"),
  35308. name: "Goia",
  35309. image: {
  35310. source: "./media/characters/ryth/goia.svg",
  35311. extra: 745/640,
  35312. bottom: 107/852
  35313. }
  35314. },
  35315. goiaFront: {
  35316. height: math.unit(4, "meters"),
  35317. weight: math.unit(10800, "lb"),
  35318. name: "Goia (Front)",
  35319. image: {
  35320. source: "./media/characters/ryth/goia-front.svg",
  35321. extra: 750/586,
  35322. bottom: 114/864
  35323. }
  35324. },
  35325. goiaMaw: {
  35326. height: math.unit(5.55, "feet"),
  35327. name: "Goia Maw",
  35328. image: {
  35329. source: "./media/characters/ryth/goia-maw.svg"
  35330. }
  35331. },
  35332. goiaForepaw: {
  35333. height: math.unit(3.5, "feet"),
  35334. name: "Goia Forepaw",
  35335. image: {
  35336. source: "./media/characters/ryth/goia-forepaw.svg"
  35337. }
  35338. },
  35339. goiaHindpaw: {
  35340. height: math.unit(5.55, "feet"),
  35341. name: "Goia Hindpaw",
  35342. image: {
  35343. source: "./media/characters/ryth/goia-hindpaw.svg"
  35344. }
  35345. },
  35346. },
  35347. [
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(4, "feet"),
  35351. default: true
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35357. {
  35358. front: {
  35359. height: math.unit(7, "feet"),
  35360. weight: math.unit(180, "lb"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/necrolance/front.svg",
  35364. extra: 1062/947,
  35365. bottom: 41/1103
  35366. }
  35367. },
  35368. back: {
  35369. height: math.unit(7, "feet"),
  35370. weight: math.unit(180, "lb"),
  35371. name: "Back",
  35372. image: {
  35373. source: "./media/characters/necrolance/back.svg",
  35374. extra: 1045/984,
  35375. bottom: 14/1059
  35376. }
  35377. },
  35378. wing: {
  35379. height: math.unit(2.67, "feet"),
  35380. name: "Wing",
  35381. image: {
  35382. source: "./media/characters/necrolance/wing.svg"
  35383. }
  35384. },
  35385. },
  35386. [
  35387. {
  35388. name: "Normal",
  35389. height: math.unit(7, "feet"),
  35390. default: true
  35391. },
  35392. ]
  35393. ))
  35394. characterMakers.push(() => makeCharacter(
  35395. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35396. {
  35397. front: {
  35398. height: math.unit(76, "meters"),
  35399. weight: math.unit(30000, "tons"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/tyler/front.svg",
  35403. extra: 1640/1640,
  35404. bottom: 114/1754
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Macro",
  35411. height: math.unit(76, "meters"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(4 + 11/12, "feet"),
  35421. weight: math.unit(132, "lb"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/icey/front.svg",
  35425. extra: 2750/2550,
  35426. bottom: 33/2783
  35427. }
  35428. },
  35429. back: {
  35430. height: math.unit(4 + 11/12, "feet"),
  35431. weight: math.unit(132, "lb"),
  35432. name: "Back",
  35433. image: {
  35434. source: "./media/characters/icey/back.svg",
  35435. extra: 2624/2481,
  35436. bottom: 35/2659
  35437. }
  35438. },
  35439. },
  35440. [
  35441. {
  35442. name: "Normal",
  35443. height: math.unit(4 + 11/12, "feet"),
  35444. default: true
  35445. },
  35446. ]
  35447. ))
  35448. characterMakers.push(() => makeCharacter(
  35449. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35450. {
  35451. front: {
  35452. height: math.unit(100, "feet"),
  35453. weight: math.unit(0, "lb"),
  35454. name: "Front",
  35455. image: {
  35456. source: "./media/characters/smile/front.svg",
  35457. extra: 2983/2912,
  35458. bottom: 162/3145
  35459. }
  35460. },
  35461. back: {
  35462. height: math.unit(100, "feet"),
  35463. weight: math.unit(0, "lb"),
  35464. name: "Back",
  35465. image: {
  35466. source: "./media/characters/smile/back.svg",
  35467. extra: 3143/3031,
  35468. bottom: 91/3234
  35469. }
  35470. },
  35471. head: {
  35472. height: math.unit(26.3, "feet"),
  35473. weight: math.unit(0, "lb"),
  35474. name: "Head",
  35475. image: {
  35476. source: "./media/characters/smile/head.svg"
  35477. }
  35478. },
  35479. collar: {
  35480. height: math.unit(5.3, "feet"),
  35481. weight: math.unit(0, "lb"),
  35482. name: "Collar",
  35483. image: {
  35484. source: "./media/characters/smile/collar.svg"
  35485. }
  35486. },
  35487. },
  35488. [
  35489. {
  35490. name: "Macro",
  35491. height: math.unit(100, "feet"),
  35492. default: true
  35493. },
  35494. ]
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35498. {
  35499. dragon: {
  35500. height: math.unit(26, "feet"),
  35501. weight: math.unit(36, "tons"),
  35502. name: "Dragon",
  35503. image: {
  35504. source: "./media/characters/arimphae/dragon.svg",
  35505. extra: 1574/983,
  35506. bottom: 357/1931
  35507. }
  35508. },
  35509. drake: {
  35510. height: math.unit(9, "feet"),
  35511. weight: math.unit(1.5, "tons"),
  35512. name: "Drake",
  35513. image: {
  35514. source: "./media/characters/arimphae/drake.svg",
  35515. extra: 1120/925,
  35516. bottom: 435/1555
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Small",
  35523. height: math.unit(26*5/9, "feet")
  35524. },
  35525. {
  35526. name: "Normal",
  35527. height: math.unit(26, "feet"),
  35528. default: true
  35529. },
  35530. ]
  35531. ))
  35532. characterMakers.push(() => makeCharacter(
  35533. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35534. {
  35535. front: {
  35536. height: math.unit(8 + 9/12, "feet"),
  35537. name: "Front",
  35538. image: {
  35539. source: "./media/characters/xander/front.svg",
  35540. extra: 1237/974,
  35541. bottom: 94/1331
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(8 + 9/12, "feet"),
  35549. default: true
  35550. },
  35551. {
  35552. name: "Gaze Grabber",
  35553. height: math.unit(13 + 8/12, "feet")
  35554. },
  35555. {
  35556. name: "Jaw Dropper",
  35557. height: math.unit(27, "feet")
  35558. },
  35559. {
  35560. name: "Show Stopper",
  35561. height: math.unit(136, "feet")
  35562. },
  35563. {
  35564. name: "Superstar",
  35565. height: math.unit(1.9e6, "miles")
  35566. },
  35567. ]
  35568. ))
  35569. characterMakers.push(() => makeCharacter(
  35570. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35571. {
  35572. side: {
  35573. height: math.unit(2100, "feet"),
  35574. name: "Side",
  35575. image: {
  35576. source: "./media/characters/osiris/side.svg",
  35577. extra: 1105/939,
  35578. bottom: 167/1272
  35579. }
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Macro",
  35585. height: math.unit(2100, "feet"),
  35586. default: true
  35587. },
  35588. ]
  35589. ))
  35590. characterMakers.push(() => makeCharacter(
  35591. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35592. {
  35593. front: {
  35594. height: math.unit(6 + 8/12, "feet"),
  35595. weight: math.unit(225, "lb"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/rhys-londe/front.svg",
  35599. extra: 2258/2141,
  35600. bottom: 188/2446
  35601. }
  35602. },
  35603. back: {
  35604. height: math.unit(6 + 8/12, "feet"),
  35605. weight: math.unit(225, "lb"),
  35606. name: "Back",
  35607. image: {
  35608. source: "./media/characters/rhys-londe/back.svg",
  35609. extra: 2237/2137,
  35610. bottom: 63/2300
  35611. }
  35612. },
  35613. frontNsfw: {
  35614. height: math.unit(6 + 8/12, "feet"),
  35615. weight: math.unit(225, "lb"),
  35616. name: "Front (NSFW)",
  35617. image: {
  35618. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35619. extra: 2258/2141,
  35620. bottom: 188/2446
  35621. }
  35622. },
  35623. backNsfw: {
  35624. height: math.unit(6 + 8/12, "feet"),
  35625. weight: math.unit(225, "lb"),
  35626. name: "Back (NSFW)",
  35627. image: {
  35628. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35629. extra: 2237/2137,
  35630. bottom: 63/2300
  35631. }
  35632. },
  35633. dick: {
  35634. height: math.unit(30, "inches"),
  35635. name: "Dick",
  35636. image: {
  35637. source: "./media/characters/rhys-londe/dick.svg"
  35638. }
  35639. },
  35640. maw: {
  35641. height: math.unit(1.6, "feet"),
  35642. name: "Maw",
  35643. image: {
  35644. source: "./media/characters/rhys-londe/maw.svg"
  35645. }
  35646. },
  35647. },
  35648. [
  35649. {
  35650. name: "Normal",
  35651. height: math.unit(6 + 8/12, "feet"),
  35652. default: true
  35653. },
  35654. ]
  35655. ))
  35656. characterMakers.push(() => makeCharacter(
  35657. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35658. {
  35659. front: {
  35660. height: math.unit(3 + 10/12, "feet"),
  35661. weight: math.unit(90, "lb"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/taivas-ensim/front.svg",
  35665. extra: 1327/1216,
  35666. bottom: 96/1423
  35667. }
  35668. },
  35669. back: {
  35670. height: math.unit(3 + 10/12, "feet"),
  35671. weight: math.unit(90, "lb"),
  35672. name: "Back",
  35673. image: {
  35674. source: "./media/characters/taivas-ensim/back.svg",
  35675. extra: 1355/1247,
  35676. bottom: 11/1366
  35677. }
  35678. },
  35679. frontNsfw: {
  35680. height: math.unit(3 + 10/12, "feet"),
  35681. weight: math.unit(90, "lb"),
  35682. name: "Front (NSFW)",
  35683. image: {
  35684. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35685. extra: 1327/1216,
  35686. bottom: 96/1423
  35687. }
  35688. },
  35689. backNsfw: {
  35690. height: math.unit(3 + 10/12, "feet"),
  35691. weight: math.unit(90, "lb"),
  35692. name: "Back (NSFW)",
  35693. image: {
  35694. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35695. extra: 1355/1247,
  35696. bottom: 11/1366
  35697. }
  35698. },
  35699. },
  35700. [
  35701. {
  35702. name: "Normal",
  35703. height: math.unit(3 + 10/12, "feet"),
  35704. default: true
  35705. },
  35706. ]
  35707. ))
  35708. characterMakers.push(() => makeCharacter(
  35709. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35710. {
  35711. front: {
  35712. height: math.unit(9 + 6/12, "feet"),
  35713. weight: math.unit(940, "lb"),
  35714. name: "Front",
  35715. image: {
  35716. source: "./media/characters/byliss/front.svg",
  35717. extra: 1327/1290,
  35718. bottom: 82/1409
  35719. }
  35720. },
  35721. back: {
  35722. height: math.unit(9 + 6/12, "feet"),
  35723. weight: math.unit(940, "lb"),
  35724. name: "Back",
  35725. image: {
  35726. source: "./media/characters/byliss/back.svg",
  35727. extra: 1376/1349,
  35728. bottom: 9/1385
  35729. }
  35730. },
  35731. frontNsfw: {
  35732. height: math.unit(9 + 6/12, "feet"),
  35733. weight: math.unit(940, "lb"),
  35734. name: "Front (NSFW)",
  35735. image: {
  35736. source: "./media/characters/byliss/front-nsfw.svg",
  35737. extra: 1327/1290,
  35738. bottom: 82/1409
  35739. }
  35740. },
  35741. backNsfw: {
  35742. height: math.unit(9 + 6/12, "feet"),
  35743. weight: math.unit(940, "lb"),
  35744. name: "Back (NSFW)",
  35745. image: {
  35746. source: "./media/characters/byliss/back-nsfw.svg",
  35747. extra: 1376/1349,
  35748. bottom: 9/1385
  35749. }
  35750. },
  35751. },
  35752. [
  35753. {
  35754. name: "Normal",
  35755. height: math.unit(9 + 6/12, "feet"),
  35756. default: true
  35757. },
  35758. ]
  35759. ))
  35760. characterMakers.push(() => makeCharacter(
  35761. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35762. {
  35763. front: {
  35764. height: math.unit(5 + 2/12, "feet"),
  35765. weight: math.unit(200, "lb"),
  35766. name: "Front",
  35767. image: {
  35768. source: "./media/characters/noraly/front.svg",
  35769. extra: 4985/4773,
  35770. bottom: 150/5135
  35771. }
  35772. },
  35773. full: {
  35774. height: math.unit(5 + 2/12, "feet"),
  35775. weight: math.unit(164, "lb"),
  35776. name: "Full",
  35777. image: {
  35778. source: "./media/characters/noraly/full.svg",
  35779. extra: 1114/1059,
  35780. bottom: 35/1149
  35781. }
  35782. },
  35783. fuller: {
  35784. height: math.unit(5 + 2/12, "feet"),
  35785. weight: math.unit(230, "lb"),
  35786. name: "Fuller",
  35787. image: {
  35788. source: "./media/characters/noraly/fuller.svg",
  35789. extra: 1114/1059,
  35790. bottom: 35/1149
  35791. }
  35792. },
  35793. fullest: {
  35794. height: math.unit(5 + 2/12, "feet"),
  35795. weight: math.unit(300, "lb"),
  35796. name: "Fullest",
  35797. image: {
  35798. source: "./media/characters/noraly/fullest.svg",
  35799. extra: 1114/1059,
  35800. bottom: 35/1149
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(5 + 2/12, "feet"),
  35808. default: true
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35814. {
  35815. front: {
  35816. height: math.unit(5 + 2/12, "feet"),
  35817. weight: math.unit(210, "lb"),
  35818. name: "Front",
  35819. image: {
  35820. source: "./media/characters/pera/front.svg",
  35821. extra: 1560/1531,
  35822. bottom: 165/1725
  35823. }
  35824. },
  35825. back: {
  35826. height: math.unit(5 + 2/12, "feet"),
  35827. weight: math.unit(210, "lb"),
  35828. name: "Back",
  35829. image: {
  35830. source: "./media/characters/pera/back.svg",
  35831. extra: 1523/1493,
  35832. bottom: 152/1675
  35833. }
  35834. },
  35835. dick: {
  35836. height: math.unit(2.4, "feet"),
  35837. name: "Dick",
  35838. image: {
  35839. source: "./media/characters/pera/dick.svg"
  35840. }
  35841. },
  35842. },
  35843. [
  35844. {
  35845. name: "Normal",
  35846. height: math.unit(5 + 2/12, "feet"),
  35847. default: true
  35848. },
  35849. ]
  35850. ))
  35851. characterMakers.push(() => makeCharacter(
  35852. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35853. {
  35854. front: {
  35855. height: math.unit(12, "feet"),
  35856. weight: math.unit(3200, "lb"),
  35857. name: "Front",
  35858. image: {
  35859. source: "./media/characters/julian/front.svg",
  35860. extra: 2962/2701,
  35861. bottom: 184/3146
  35862. }
  35863. },
  35864. maw: {
  35865. height: math.unit(5.35, "feet"),
  35866. name: "Maw",
  35867. image: {
  35868. source: "./media/characters/julian/maw.svg"
  35869. }
  35870. },
  35871. paw: {
  35872. height: math.unit(3.07, "feet"),
  35873. name: "Paw",
  35874. image: {
  35875. source: "./media/characters/julian/paw.svg"
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Default",
  35882. height: math.unit(12, "feet"),
  35883. default: true
  35884. },
  35885. {
  35886. name: "Big",
  35887. height: math.unit(50, "feet")
  35888. },
  35889. {
  35890. name: "Really Big",
  35891. height: math.unit(1, "mile")
  35892. },
  35893. {
  35894. name: "Extremely Big",
  35895. height: math.unit(100, "miles")
  35896. },
  35897. {
  35898. name: "Planet Hugger",
  35899. height: math.unit(200, "megameters")
  35900. },
  35901. {
  35902. name: "Unreasonably Big",
  35903. height: math.unit(1e300, "meters")
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35909. {
  35910. solgooleo: {
  35911. height: math.unit(4, "meters"),
  35912. weight: math.unit(6000*1.5, "kg"),
  35913. volume: math.unit(6000, "liters"),
  35914. name: "Solgooleo",
  35915. image: {
  35916. source: "./media/characters/pi/solgooleo.svg",
  35917. extra: 388/331,
  35918. bottom: 29/417
  35919. }
  35920. },
  35921. },
  35922. [
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(4, "meters"),
  35926. default: true
  35927. },
  35928. ]
  35929. ))
  35930. characterMakers.push(() => makeCharacter(
  35931. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35932. {
  35933. front: {
  35934. height: math.unit(8, "feet"),
  35935. weight: math.unit(4, "tons"),
  35936. name: "Front",
  35937. image: {
  35938. source: "./media/characters/shaun/front.svg",
  35939. extra: 503/495,
  35940. bottom: 20/523
  35941. }
  35942. },
  35943. back: {
  35944. height: math.unit(8, "feet"),
  35945. weight: math.unit(4, "tons"),
  35946. name: "Back",
  35947. image: {
  35948. source: "./media/characters/shaun/back.svg",
  35949. extra: 487/480,
  35950. bottom: 20/507
  35951. }
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Lorg",
  35957. height: math.unit(8, "feet"),
  35958. default: true
  35959. },
  35960. ]
  35961. ))
  35962. characterMakers.push(() => makeCharacter(
  35963. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35964. {
  35965. frontAnthro: {
  35966. height: math.unit(7, "feet"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/sini/front-anthro.svg",
  35970. extra: 726/678,
  35971. bottom: 35/761
  35972. },
  35973. form: "anthro",
  35974. default: true
  35975. },
  35976. backAnthro: {
  35977. height: math.unit(7, "feet"),
  35978. name: "Back",
  35979. image: {
  35980. source: "./media/characters/sini/back-anthro.svg",
  35981. extra: 743/701,
  35982. bottom: 12/755
  35983. },
  35984. form: "anthro",
  35985. },
  35986. frontAnthroNsfw: {
  35987. height: math.unit(7, "feet"),
  35988. name: "Front (NSFW)",
  35989. image: {
  35990. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35991. extra: 726/678,
  35992. bottom: 35/761
  35993. },
  35994. form: "anthro"
  35995. },
  35996. backAnthroNsfw: {
  35997. height: math.unit(7, "feet"),
  35998. name: "Back (NSFW)",
  35999. image: {
  36000. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36001. extra: 743/701,
  36002. bottom: 12/755
  36003. },
  36004. form: "anthro",
  36005. },
  36006. mawAnthro: {
  36007. height: math.unit(2.14, "feet"),
  36008. name: "Maw",
  36009. image: {
  36010. source: "./media/characters/sini/maw-anthro.svg"
  36011. },
  36012. form: "anthro"
  36013. },
  36014. dick: {
  36015. height: math.unit(1.45, "feet"),
  36016. name: "Dick",
  36017. image: {
  36018. source: "./media/characters/sini/dick-anthro.svg"
  36019. },
  36020. form: "anthro"
  36021. },
  36022. feral: {
  36023. height: math.unit(16, "feet"),
  36024. name: "Feral",
  36025. image: {
  36026. source: "./media/characters/sini/feral.svg",
  36027. extra: 814/605,
  36028. bottom: 11/825
  36029. },
  36030. form: "feral",
  36031. default: true
  36032. },
  36033. feralNsfw: {
  36034. height: math.unit(16, "feet"),
  36035. name: "Feral (NSFW)",
  36036. image: {
  36037. source: "./media/characters/sini/feral-nsfw.svg",
  36038. extra: 814/605,
  36039. bottom: 11/825
  36040. },
  36041. form: "feral"
  36042. },
  36043. mawFeral: {
  36044. height: math.unit(5.66, "feet"),
  36045. name: "Maw",
  36046. image: {
  36047. source: "./media/characters/sini/maw-feral.svg"
  36048. },
  36049. form: "feral",
  36050. },
  36051. pawFeral: {
  36052. height: math.unit(5.17, "feet"),
  36053. name: "Paw",
  36054. image: {
  36055. source: "./media/characters/sini/paw-feral.svg"
  36056. },
  36057. form: "feral",
  36058. },
  36059. rumpFeral: {
  36060. height: math.unit(13.11, "feet"),
  36061. name: "Rump",
  36062. image: {
  36063. source: "./media/characters/sini/rump-feral.svg"
  36064. },
  36065. form: "feral",
  36066. },
  36067. dickFeral: {
  36068. height: math.unit(1, "feet"),
  36069. name: "Dick",
  36070. image: {
  36071. source: "./media/characters/sini/dick-feral.svg"
  36072. },
  36073. form: "feral",
  36074. },
  36075. eyeFeral: {
  36076. height: math.unit(1.23, "feet"),
  36077. name: "Eye",
  36078. image: {
  36079. source: "./media/characters/sini/eye-feral.svg"
  36080. },
  36081. form: "feral",
  36082. },
  36083. },
  36084. [
  36085. {
  36086. name: "Normal",
  36087. height: math.unit(7, "feet"),
  36088. default: true,
  36089. form: "anthro"
  36090. },
  36091. {
  36092. name: "Normal",
  36093. height: math.unit(16, "feet"),
  36094. default: true,
  36095. form: "feral"
  36096. },
  36097. ],
  36098. {
  36099. "anthro": {
  36100. name: "Anthro",
  36101. default: true
  36102. },
  36103. "feral": {
  36104. name: "Feral",
  36105. }
  36106. }
  36107. ))
  36108. characterMakers.push(() => makeCharacter(
  36109. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36110. {
  36111. side: {
  36112. height: math.unit(47.2, "meters"),
  36113. weight: math.unit(10000, "tons"),
  36114. name: "Side",
  36115. image: {
  36116. source: "./media/characters/raylldo/side.svg",
  36117. extra: 2363/642,
  36118. bottom: 221/2584
  36119. }
  36120. },
  36121. top: {
  36122. height: math.unit(240, "meters"),
  36123. weight: math.unit(10000, "tons"),
  36124. name: "Top",
  36125. image: {
  36126. source: "./media/characters/raylldo/top.svg"
  36127. }
  36128. },
  36129. bottom: {
  36130. height: math.unit(240, "meters"),
  36131. weight: math.unit(10000, "tons"),
  36132. name: "Bottom",
  36133. image: {
  36134. source: "./media/characters/raylldo/bottom.svg"
  36135. }
  36136. },
  36137. head: {
  36138. height: math.unit(38.6, "meters"),
  36139. name: "Head",
  36140. image: {
  36141. source: "./media/characters/raylldo/head.svg",
  36142. extra: 1335/1112,
  36143. bottom: 0/1335
  36144. }
  36145. },
  36146. maw: {
  36147. height: math.unit(16.37, "meters"),
  36148. name: "Maw",
  36149. image: {
  36150. source: "./media/characters/raylldo/maw.svg",
  36151. extra: 883/660,
  36152. bottom: 0/883
  36153. },
  36154. extraAttributes: {
  36155. preyCapacity: {
  36156. name: "Capacity",
  36157. power: 3,
  36158. type: "volume",
  36159. base: math.unit(1000, "people")
  36160. },
  36161. tongueSize: {
  36162. name: "Tongue Size",
  36163. power: 2,
  36164. type: "area",
  36165. base: math.unit(21, "m^2")
  36166. }
  36167. }
  36168. },
  36169. forepaw: {
  36170. height: math.unit(18, "meters"),
  36171. name: "Forepaw",
  36172. image: {
  36173. source: "./media/characters/raylldo/forepaw.svg"
  36174. }
  36175. },
  36176. hindpaw: {
  36177. height: math.unit(23, "meters"),
  36178. name: "Hindpaw",
  36179. image: {
  36180. source: "./media/characters/raylldo/hindpaw.svg"
  36181. }
  36182. },
  36183. genitals: {
  36184. height: math.unit(42, "meters"),
  36185. name: "Genitals",
  36186. image: {
  36187. source: "./media/characters/raylldo/genitals.svg"
  36188. }
  36189. },
  36190. },
  36191. [
  36192. {
  36193. name: "Normal",
  36194. height: math.unit(47.2, "meters"),
  36195. default: true
  36196. },
  36197. ]
  36198. ))
  36199. characterMakers.push(() => makeCharacter(
  36200. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36201. {
  36202. anthroFront: {
  36203. height: math.unit(9, "feet"),
  36204. weight: math.unit(600, "lb"),
  36205. name: "Anthro (Front)",
  36206. image: {
  36207. source: "./media/characters/glint/anthro-front.svg",
  36208. extra: 1097/1018,
  36209. bottom: 28/1125
  36210. }
  36211. },
  36212. anthroBack: {
  36213. height: math.unit(9, "feet"),
  36214. weight: math.unit(600, "lb"),
  36215. name: "Anthro (Back)",
  36216. image: {
  36217. source: "./media/characters/glint/anthro-back.svg",
  36218. extra: 1154/997,
  36219. bottom: 36/1190
  36220. }
  36221. },
  36222. feral: {
  36223. height: math.unit(11, "feet"),
  36224. weight: math.unit(50000, "lb"),
  36225. name: "Feral",
  36226. image: {
  36227. source: "./media/characters/glint/feral.svg",
  36228. extra: 3035/1585,
  36229. bottom: 1169/4204
  36230. }
  36231. },
  36232. dickAnthro: {
  36233. height: math.unit(0.7, "meters"),
  36234. name: "Dick (Anthro)",
  36235. image: {
  36236. source: "./media/characters/glint/dick-anthro.svg"
  36237. }
  36238. },
  36239. dickFeral: {
  36240. height: math.unit(2.65, "meters"),
  36241. name: "Dick (Feral)",
  36242. image: {
  36243. source: "./media/characters/glint/dick-feral.svg"
  36244. }
  36245. },
  36246. slitHidden: {
  36247. height: math.unit(5.85, "meters"),
  36248. name: "Slit (Hidden)",
  36249. image: {
  36250. source: "./media/characters/glint/slit-hidden.svg"
  36251. }
  36252. },
  36253. slitErect: {
  36254. height: math.unit(5.85, "meters"),
  36255. name: "Slit (Erect)",
  36256. image: {
  36257. source: "./media/characters/glint/slit-erect.svg"
  36258. }
  36259. },
  36260. mawAnthro: {
  36261. height: math.unit(0.63, "meters"),
  36262. name: "Maw (Anthro)",
  36263. image: {
  36264. source: "./media/characters/glint/maw.svg"
  36265. }
  36266. },
  36267. mawFeral: {
  36268. height: math.unit(2.89, "meters"),
  36269. name: "Maw (Feral)",
  36270. image: {
  36271. source: "./media/characters/glint/maw.svg"
  36272. }
  36273. },
  36274. },
  36275. [
  36276. {
  36277. name: "Normal",
  36278. height: math.unit(9, "feet"),
  36279. default: true
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36285. {
  36286. side: {
  36287. height: math.unit(15, "feet"),
  36288. weight: math.unit(5000, "kg"),
  36289. name: "Side",
  36290. image: {
  36291. source: "./media/characters/kairne/side.svg",
  36292. extra: 979/811,
  36293. bottom: 13/992
  36294. }
  36295. },
  36296. front: {
  36297. height: math.unit(15, "feet"),
  36298. weight: math.unit(5000, "kg"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/kairne/front.svg",
  36302. extra: 908/814,
  36303. bottom: 26/934
  36304. }
  36305. },
  36306. sideNsfw: {
  36307. height: math.unit(15, "feet"),
  36308. weight: math.unit(5000, "kg"),
  36309. name: "Side (NSFW)",
  36310. image: {
  36311. source: "./media/characters/kairne/side-nsfw.svg",
  36312. extra: 979/811,
  36313. bottom: 13/992
  36314. }
  36315. },
  36316. frontNsfw: {
  36317. height: math.unit(15, "feet"),
  36318. weight: math.unit(5000, "kg"),
  36319. name: "Front (NSFW)",
  36320. image: {
  36321. source: "./media/characters/kairne/front-nsfw.svg",
  36322. extra: 908/814,
  36323. bottom: 26/934
  36324. }
  36325. },
  36326. dickCaged: {
  36327. height: math.unit(0.65, "meters"),
  36328. name: "Dick (Caged)",
  36329. image: {
  36330. source: "./media/characters/kairne/dick-caged.svg"
  36331. }
  36332. },
  36333. dick: {
  36334. height: math.unit(0.79, "meters"),
  36335. name: "Dick",
  36336. image: {
  36337. source: "./media/characters/kairne/dick.svg"
  36338. }
  36339. },
  36340. genitals: {
  36341. height: math.unit(1.29, "meters"),
  36342. name: "Genitals",
  36343. image: {
  36344. source: "./media/characters/kairne/genitals.svg"
  36345. }
  36346. },
  36347. maw: {
  36348. height: math.unit(1.73, "meters"),
  36349. name: "Maw",
  36350. image: {
  36351. source: "./media/characters/kairne/maw.svg"
  36352. }
  36353. },
  36354. },
  36355. [
  36356. {
  36357. name: "Normal",
  36358. height: math.unit(15, "feet"),
  36359. default: true
  36360. },
  36361. ]
  36362. ))
  36363. characterMakers.push(() => makeCharacter(
  36364. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36365. {
  36366. front: {
  36367. height: math.unit(5 + 8/12, "feet"),
  36368. weight: math.unit(139, "lb"),
  36369. name: "Front",
  36370. image: {
  36371. source: "./media/characters/biscuit-jackal/front.svg",
  36372. extra: 2106/1961,
  36373. bottom: 58/2164
  36374. }
  36375. },
  36376. back: {
  36377. height: math.unit(5 + 8/12, "feet"),
  36378. weight: math.unit(139, "lb"),
  36379. name: "Back",
  36380. image: {
  36381. source: "./media/characters/biscuit-jackal/back.svg",
  36382. extra: 2132/1976,
  36383. bottom: 57/2189
  36384. }
  36385. },
  36386. werejackal: {
  36387. height: math.unit(6 + 3/12, "feet"),
  36388. weight: math.unit(188, "lb"),
  36389. name: "Werejackal",
  36390. image: {
  36391. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36392. extra: 2373/2178,
  36393. bottom: 53/2426
  36394. }
  36395. },
  36396. },
  36397. [
  36398. {
  36399. name: "Normal",
  36400. height: math.unit(5 + 8/12, "feet"),
  36401. default: true
  36402. },
  36403. ]
  36404. ))
  36405. characterMakers.push(() => makeCharacter(
  36406. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36407. {
  36408. front: {
  36409. height: math.unit(140, "cm"),
  36410. weight: math.unit(45, "kg"),
  36411. name: "Front",
  36412. image: {
  36413. source: "./media/characters/tayra-white/front.svg",
  36414. extra: 2229/2192,
  36415. bottom: 75/2304
  36416. }
  36417. },
  36418. },
  36419. [
  36420. {
  36421. name: "Normal",
  36422. height: math.unit(140, "cm"),
  36423. default: true
  36424. },
  36425. ]
  36426. ))
  36427. characterMakers.push(() => makeCharacter(
  36428. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36429. {
  36430. front: {
  36431. height: math.unit(4 + 5/12, "feet"),
  36432. name: "Front",
  36433. image: {
  36434. source: "./media/characters/scoop/front.svg",
  36435. extra: 1257/1136,
  36436. bottom: 69/1326
  36437. }
  36438. },
  36439. back: {
  36440. height: math.unit(4 + 5/12, "feet"),
  36441. name: "Back",
  36442. image: {
  36443. source: "./media/characters/scoop/back.svg",
  36444. extra: 1321/1152,
  36445. bottom: 32/1353
  36446. }
  36447. },
  36448. maw: {
  36449. height: math.unit(0.68, "feet"),
  36450. name: "Maw",
  36451. image: {
  36452. source: "./media/characters/scoop/maw.svg"
  36453. }
  36454. },
  36455. },
  36456. [
  36457. {
  36458. name: "Really Small",
  36459. height: math.unit(1, "mm")
  36460. },
  36461. {
  36462. name: "Micro",
  36463. height: math.unit(1, "inch")
  36464. },
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(4 + 5/12, "feet"),
  36468. default: true
  36469. },
  36470. {
  36471. name: "Macro",
  36472. height: math.unit(200, "feet")
  36473. },
  36474. {
  36475. name: "Megamacro",
  36476. height: math.unit(3240, "feet")
  36477. },
  36478. {
  36479. name: "Teramacro",
  36480. height: math.unit(2500, "miles")
  36481. },
  36482. ]
  36483. ))
  36484. characterMakers.push(() => makeCharacter(
  36485. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36486. {
  36487. front: {
  36488. height: math.unit(15 + 7/12, "feet"),
  36489. weight: math.unit(1150, "tons"),
  36490. name: "Front",
  36491. image: {
  36492. source: "./media/characters/saphinara/front.svg",
  36493. extra: 1837/1643,
  36494. bottom: 84/1921
  36495. },
  36496. form: "normal",
  36497. default: true
  36498. },
  36499. side: {
  36500. height: math.unit(15 + 7/12, "feet"),
  36501. weight: math.unit(1150, "tons"),
  36502. name: "Side",
  36503. image: {
  36504. source: "./media/characters/saphinara/side.svg",
  36505. extra: 605/547,
  36506. bottom: 6/611
  36507. },
  36508. form: "normal"
  36509. },
  36510. back: {
  36511. height: math.unit(15 + 7/12, "feet"),
  36512. weight: math.unit(1150, "tons"),
  36513. name: "Back",
  36514. image: {
  36515. source: "./media/characters/saphinara/back.svg",
  36516. extra: 591/531,
  36517. bottom: 13/604
  36518. },
  36519. form: "normal"
  36520. },
  36521. frontTail: {
  36522. height: math.unit(15 + 7/12, "feet"),
  36523. weight: math.unit(1150, "tons"),
  36524. name: "Front (Full Tail)",
  36525. image: {
  36526. source: "./media/characters/saphinara/front-tail.svg",
  36527. extra: 2256/1630,
  36528. bottom: 261/2517
  36529. },
  36530. form: "normal"
  36531. },
  36532. insides: {
  36533. height: math.unit(11.92, "feet"),
  36534. name: "Insides",
  36535. image: {
  36536. source: "./media/characters/saphinara/insides.svg"
  36537. },
  36538. form: "normal"
  36539. },
  36540. head: {
  36541. height: math.unit(4.17, "feet"),
  36542. name: "Head",
  36543. image: {
  36544. source: "./media/characters/saphinara/head.svg"
  36545. },
  36546. form: "normal"
  36547. },
  36548. tongue: {
  36549. height: math.unit(4.60, "feet"),
  36550. name: "Tongue",
  36551. image: {
  36552. source: "./media/characters/saphinara/tongue.svg"
  36553. },
  36554. form: "normal"
  36555. },
  36556. headEnraged: {
  36557. height: math.unit(5.55, "feet"),
  36558. name: "Head (Enraged)",
  36559. image: {
  36560. source: "./media/characters/saphinara/head-enraged.svg"
  36561. },
  36562. form: "normal"
  36563. },
  36564. wings: {
  36565. height: math.unit(11.95, "feet"),
  36566. name: "Wings",
  36567. image: {
  36568. source: "./media/characters/saphinara/wings.svg"
  36569. },
  36570. form: "normal"
  36571. },
  36572. feathers: {
  36573. height: math.unit(8.92, "feet"),
  36574. name: "Feathers",
  36575. image: {
  36576. source: "./media/characters/saphinara/feathers.svg"
  36577. },
  36578. form: "normal"
  36579. },
  36580. shackles: {
  36581. height: math.unit(2, "feet"),
  36582. name: "Shackles",
  36583. image: {
  36584. source: "./media/characters/saphinara/shackles.svg"
  36585. },
  36586. form: "normal"
  36587. },
  36588. eyes: {
  36589. height: math.unit(1.331, "feet"),
  36590. name: "Eyes",
  36591. image: {
  36592. source: "./media/characters/saphinara/eyes.svg"
  36593. },
  36594. form: "normal"
  36595. },
  36596. eyesEnraged: {
  36597. height: math.unit(1.331, "feet"),
  36598. name: "Eyes (Enraged)",
  36599. image: {
  36600. source: "./media/characters/saphinara/eyes-enraged.svg"
  36601. },
  36602. form: "normal"
  36603. },
  36604. trueFormSide: {
  36605. height: math.unit(200, "feet"),
  36606. weight: math.unit(1e7, "tons"),
  36607. name: "Side",
  36608. image: {
  36609. source: "./media/characters/saphinara/true-form-side.svg",
  36610. extra: 1399/770,
  36611. bottom: 97/1496
  36612. },
  36613. form: "true-form",
  36614. default: true
  36615. },
  36616. trueFormMaw: {
  36617. height: math.unit(71.5, "feet"),
  36618. name: "Maw",
  36619. image: {
  36620. source: "./media/characters/saphinara/true-form-maw.svg",
  36621. extra: 2302/1453,
  36622. bottom: 0/2302
  36623. },
  36624. form: "true-form"
  36625. },
  36626. meowberusSide: {
  36627. height: math.unit(75, "feet"),
  36628. weight: math.unit(180000, "kg"),
  36629. preyCapacity: math.unit(50000, "people"),
  36630. name: "Side",
  36631. image: {
  36632. source: "./media/characters/saphinara/meowberus-side.svg",
  36633. extra: 1400/711,
  36634. bottom: 126/1526
  36635. },
  36636. form: "meowberus",
  36637. extraAttributes: {
  36638. "pawArea": {
  36639. name: "Paw Size",
  36640. power: 2,
  36641. type: "area",
  36642. base: math.unit(35, "m^2")
  36643. }
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(15 + 7/12, "feet"),
  36651. default: true,
  36652. form: "normal"
  36653. },
  36654. {
  36655. name: "Angry",
  36656. height: math.unit(30 + 6/12, "feet"),
  36657. form: "normal"
  36658. },
  36659. {
  36660. name: "Enraged",
  36661. height: math.unit(102 + 1/12, "feet"),
  36662. form: "normal"
  36663. },
  36664. {
  36665. name: "True",
  36666. height: math.unit(200, "feet"),
  36667. default: true,
  36668. form: "true-form"
  36669. },
  36670. {
  36671. name: "Normal",
  36672. height: math.unit(75, "feet"),
  36673. default: true,
  36674. form: "meowberus"
  36675. },
  36676. ],
  36677. {
  36678. "normal": {
  36679. name: "Normal",
  36680. default: true
  36681. },
  36682. "true-form": {
  36683. name: "True Form"
  36684. },
  36685. "meowberus": {
  36686. name: "Meowberus",
  36687. },
  36688. }
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(6 + 8/12, "feet"),
  36695. weight: math.unit(300, "lb"),
  36696. name: "Front",
  36697. image: {
  36698. source: "./media/characters/jrain/front.svg",
  36699. extra: 3039/2865,
  36700. bottom: 399/3438
  36701. }
  36702. },
  36703. back: {
  36704. height: math.unit(6 + 8/12, "feet"),
  36705. weight: math.unit(300, "lb"),
  36706. name: "Back",
  36707. image: {
  36708. source: "./media/characters/jrain/back.svg",
  36709. extra: 3089/2938,
  36710. bottom: 172/3261
  36711. }
  36712. },
  36713. head: {
  36714. height: math.unit(2.14, "feet"),
  36715. name: "Head",
  36716. image: {
  36717. source: "./media/characters/jrain/head.svg"
  36718. }
  36719. },
  36720. maw: {
  36721. height: math.unit(1.77, "feet"),
  36722. name: "Maw",
  36723. image: {
  36724. source: "./media/characters/jrain/maw.svg"
  36725. }
  36726. },
  36727. leftHand: {
  36728. height: math.unit(1.1, "feet"),
  36729. name: "Left Hand",
  36730. image: {
  36731. source: "./media/characters/jrain/left-hand.svg"
  36732. }
  36733. },
  36734. rightHand: {
  36735. height: math.unit(1.1, "feet"),
  36736. name: "Right Hand",
  36737. image: {
  36738. source: "./media/characters/jrain/right-hand.svg"
  36739. }
  36740. },
  36741. eye: {
  36742. height: math.unit(0.35, "feet"),
  36743. name: "Eye",
  36744. image: {
  36745. source: "./media/characters/jrain/eye.svg"
  36746. }
  36747. },
  36748. },
  36749. [
  36750. {
  36751. name: "Normal",
  36752. height: math.unit(6 + 8/12, "feet"),
  36753. default: true
  36754. },
  36755. {
  36756. name: "Casually Large",
  36757. height: math.unit(25, "feet")
  36758. },
  36759. {
  36760. name: "Giant",
  36761. height: math.unit(100, "feet")
  36762. },
  36763. {
  36764. name: "Kaiju",
  36765. height: math.unit(300, "feet")
  36766. },
  36767. ]
  36768. ))
  36769. characterMakers.push(() => makeCharacter(
  36770. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36771. {
  36772. dragon: {
  36773. height: math.unit(5, "meters"),
  36774. name: "Dragon",
  36775. image: {
  36776. source: "./media/characters/sabrina/dragon.svg",
  36777. extra: 3670 / 2365,
  36778. bottom: 333 / 4003
  36779. }
  36780. },
  36781. gryphon: {
  36782. height: math.unit(3, "meters"),
  36783. name: "Gryphon",
  36784. image: {
  36785. source: "./media/characters/sabrina/gryphon.svg",
  36786. extra: 1576 / 945,
  36787. bottom: 71 / 1647
  36788. }
  36789. },
  36790. snake: {
  36791. height: math.unit(12, "meters"),
  36792. name: "Snake",
  36793. image: {
  36794. source: "./media/characters/sabrina/snake.svg",
  36795. extra: 1758 / 1320,
  36796. bottom: 186 / 1944
  36797. }
  36798. },
  36799. collar: {
  36800. height: math.unit(1.86, "meters"),
  36801. name: "Collar",
  36802. image: {
  36803. source: "./media/characters/sabrina/collar.svg"
  36804. }
  36805. },
  36806. eye: {
  36807. height: math.unit(0.53, "meters"),
  36808. name: "Eye",
  36809. image: {
  36810. source: "./media/characters/sabrina/eye.svg"
  36811. }
  36812. },
  36813. foot: {
  36814. height: math.unit(1.86, "meters"),
  36815. name: "Foot",
  36816. image: {
  36817. source: "./media/characters/sabrina/foot.svg"
  36818. }
  36819. },
  36820. hand: {
  36821. height: math.unit(1.32, "meters"),
  36822. name: "Hand",
  36823. image: {
  36824. source: "./media/characters/sabrina/hand.svg"
  36825. }
  36826. },
  36827. head: {
  36828. height: math.unit(2.44, "meters"),
  36829. name: "Head",
  36830. image: {
  36831. source: "./media/characters/sabrina/head.svg"
  36832. }
  36833. },
  36834. headAngry: {
  36835. height: math.unit(2.44, "meters"),
  36836. name: "Head (Angry))",
  36837. image: {
  36838. source: "./media/characters/sabrina/head-angry.svg"
  36839. }
  36840. },
  36841. maw: {
  36842. height: math.unit(1.65, "meters"),
  36843. name: "Maw",
  36844. image: {
  36845. source: "./media/characters/sabrina/maw.svg"
  36846. }
  36847. },
  36848. spikes: {
  36849. height: math.unit(1.69, "meters"),
  36850. name: "Spikes",
  36851. image: {
  36852. source: "./media/characters/sabrina/spikes.svg"
  36853. }
  36854. },
  36855. stomach: {
  36856. height: math.unit(1.15, "meters"),
  36857. name: "Stomach",
  36858. image: {
  36859. source: "./media/characters/sabrina/stomach.svg"
  36860. }
  36861. },
  36862. tongue: {
  36863. height: math.unit(1.27, "meters"),
  36864. name: "Tongue",
  36865. image: {
  36866. source: "./media/characters/sabrina/tongue.svg"
  36867. }
  36868. },
  36869. wingDorsal: {
  36870. height: math.unit(4.85, "meters"),
  36871. name: "Wing (Dorsal)",
  36872. image: {
  36873. source: "./media/characters/sabrina/wing-dorsal.svg"
  36874. }
  36875. },
  36876. wingVentral: {
  36877. height: math.unit(4.85, "meters"),
  36878. name: "Wing (Ventral)",
  36879. image: {
  36880. source: "./media/characters/sabrina/wing-ventral.svg"
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(5, "meters"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36894. {
  36895. frontMaid: {
  36896. height: math.unit(5 + 5/12, "feet"),
  36897. weight: math.unit(130, "lb"),
  36898. name: "Front (Maid)",
  36899. image: {
  36900. source: "./media/characters/midnight-tales/front-maid.svg",
  36901. extra: 489/454,
  36902. bottom: 61/550
  36903. }
  36904. },
  36905. frontFormal: {
  36906. height: math.unit(5 + 5/12, "feet"),
  36907. weight: math.unit(130, "lb"),
  36908. name: "Front (Formal)",
  36909. image: {
  36910. source: "./media/characters/midnight-tales/front-formal.svg",
  36911. extra: 489/454,
  36912. bottom: 61/550
  36913. }
  36914. },
  36915. back: {
  36916. height: math.unit(5 + 5/12, "feet"),
  36917. weight: math.unit(130, "lb"),
  36918. name: "Back",
  36919. image: {
  36920. source: "./media/characters/midnight-tales/back.svg",
  36921. extra: 498/456,
  36922. bottom: 33/531
  36923. }
  36924. },
  36925. frontBeast: {
  36926. height: math.unit(40, "feet"),
  36927. weight: math.unit(64000, "lb"),
  36928. name: "Front (Beast)",
  36929. image: {
  36930. source: "./media/characters/midnight-tales/front-beast.svg",
  36931. extra: 927/860,
  36932. bottom: 53/980
  36933. }
  36934. },
  36935. backBeast: {
  36936. height: math.unit(40, "feet"),
  36937. weight: math.unit(64000, "lb"),
  36938. name: "Back (Beast)",
  36939. image: {
  36940. source: "./media/characters/midnight-tales/back-beast.svg",
  36941. extra: 929/855,
  36942. bottom: 16/945
  36943. }
  36944. },
  36945. footBeast: {
  36946. height: math.unit(6.7, "feet"),
  36947. name: "Foot (Beast)",
  36948. image: {
  36949. source: "./media/characters/midnight-tales/foot-beast.svg"
  36950. }
  36951. },
  36952. headBeast: {
  36953. height: math.unit(8, "feet"),
  36954. name: "Head (Beast)",
  36955. image: {
  36956. source: "./media/characters/midnight-tales/head-beast.svg"
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Normal",
  36963. height: math.unit(5 + 5 / 12, "feet"),
  36964. default: true
  36965. },
  36966. {
  36967. name: "Macro",
  36968. height: math.unit(25, "feet")
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36974. {
  36975. front: {
  36976. height: math.unit(6 + 2/12, "feet"),
  36977. weight: math.unit(115, "kg"),
  36978. preyCapacity: math.unit(3, "people"),
  36979. name: "Front",
  36980. image: {
  36981. source: "./media/characters/argon/front.svg",
  36982. extra: 2009/1935,
  36983. bottom: 118/2127
  36984. },
  36985. extraAttributes: {
  36986. "tailLength": {
  36987. name: "Tail Length",
  36988. power: 1,
  36989. type: "length",
  36990. base: math.unit(6, "feet")
  36991. },
  36992. "tailWeight": {
  36993. name: "Tail Weight",
  36994. power: 3,
  36995. type: "mass",
  36996. base: math.unit(40, "kg")
  36997. },
  36998. }
  36999. },
  37000. back: {
  37001. height: math.unit(6 + 2/12, "feet"),
  37002. weight: math.unit(115, "kg"),
  37003. preyCapacity: math.unit(3, "people"),
  37004. name: "Back",
  37005. image: {
  37006. source: "./media/characters/argon/back.svg",
  37007. extra: 2047/1992,
  37008. bottom: 20/2067
  37009. },
  37010. extraAttributes: {
  37011. "tailLength": {
  37012. name: "Tail Length",
  37013. power: 1,
  37014. type: "length",
  37015. base: math.unit(6, "feet")
  37016. },
  37017. "tailWeight": {
  37018. name: "Tail Weight",
  37019. power: 3,
  37020. type: "mass",
  37021. base: math.unit(40, "kg")
  37022. },
  37023. }
  37024. },
  37025. frontDressed: {
  37026. height: math.unit(6 + 2/12, "feet"),
  37027. weight: math.unit(115, "kg"),
  37028. preyCapacity: math.unit(3, "people"),
  37029. name: "Front (Dressed)",
  37030. image: {
  37031. source: "./media/characters/argon/front-dressed.svg",
  37032. extra: 2009/1935,
  37033. bottom: 118/2127
  37034. },
  37035. extraAttributes: {
  37036. "tailLength": {
  37037. name: "Tail Length",
  37038. power: 1,
  37039. type: "length",
  37040. base: math.unit(6, "feet")
  37041. },
  37042. "tailWeight": {
  37043. name: "Tail Weight",
  37044. power: 3,
  37045. type: "mass",
  37046. base: math.unit(40, "kg")
  37047. },
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Minimum",
  37054. height: math.unit(2 + 8/12, "feet")
  37055. },
  37056. {
  37057. name: "Normal",
  37058. height: math.unit(6 + 2/12, "feet"),
  37059. default: true
  37060. },
  37061. {
  37062. name: "Maximum",
  37063. height: math.unit(20, "feet")
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37069. {
  37070. front: {
  37071. height: math.unit(8 + 6/12, "feet"),
  37072. weight: math.unit(1150, "lb"),
  37073. name: "Front",
  37074. image: {
  37075. source: "./media/characters/kichi/front.svg",
  37076. extra: 1267/1164,
  37077. bottom: 61/1328
  37078. }
  37079. },
  37080. back: {
  37081. height: math.unit(8 + 6/12, "feet"),
  37082. weight: math.unit(1150, "lb"),
  37083. name: "Back",
  37084. image: {
  37085. source: "./media/characters/kichi/back.svg",
  37086. extra: 1273/1166,
  37087. bottom: 33/1306
  37088. }
  37089. },
  37090. },
  37091. [
  37092. {
  37093. name: "Normal",
  37094. height: math.unit(8 + 6/12, "feet"),
  37095. default: true
  37096. },
  37097. ]
  37098. ))
  37099. characterMakers.push(() => makeCharacter(
  37100. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37101. {
  37102. front: {
  37103. height: math.unit(6, "feet"),
  37104. weight: math.unit(210, "lb"),
  37105. name: "Front",
  37106. image: {
  37107. source: "./media/characters/manetel-greyscale/front.svg",
  37108. extra: 483/444,
  37109. bottom: 22/505
  37110. },
  37111. extraAttributes: {
  37112. "tailLength": {
  37113. name: "Tail Length",
  37114. power: 1,
  37115. type: "length",
  37116. base: math.unit(6.5, "feet")
  37117. },
  37118. }
  37119. },
  37120. side: {
  37121. height: math.unit(6, "feet"),
  37122. weight: math.unit(210, "lb"),
  37123. name: "Side",
  37124. image: {
  37125. source: "./media/characters/manetel-greyscale/side.svg",
  37126. extra: 478/426,
  37127. bottom: 20/498
  37128. },
  37129. extraAttributes: {
  37130. "tailLength": {
  37131. name: "Tail Length",
  37132. power: 1,
  37133. type: "length",
  37134. base: math.unit(6.5, "feet")
  37135. },
  37136. }
  37137. },
  37138. back: {
  37139. height: math.unit(6, "feet"),
  37140. weight: math.unit(210, "lb"),
  37141. name: "Back",
  37142. image: {
  37143. source: "./media/characters/manetel-greyscale/back.svg",
  37144. extra: 482/445,
  37145. bottom: 12/494
  37146. },
  37147. extraAttributes: {
  37148. "tailLength": {
  37149. name: "Tail Length",
  37150. power: 1,
  37151. type: "length",
  37152. base: math.unit(6.5, "feet")
  37153. },
  37154. }
  37155. },
  37156. },
  37157. [
  37158. {
  37159. name: "Micro",
  37160. height: math.unit(2, "inches")
  37161. },
  37162. {
  37163. name: "Normal",
  37164. height: math.unit(6, "feet"),
  37165. default: true
  37166. },
  37167. {
  37168. name: "Macro",
  37169. height: math.unit(117, "feet")
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37175. {
  37176. side: {
  37177. height: math.unit(5 + 1/12, "feet"),
  37178. weight: math.unit(418, "lb"),
  37179. name: "Side",
  37180. image: {
  37181. source: "./media/characters/softpurr/side.svg",
  37182. extra: 1993/1945,
  37183. bottom: 134/2127
  37184. }
  37185. },
  37186. front: {
  37187. height: math.unit(5 + 1/12, "feet"),
  37188. weight: math.unit(418, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/softpurr/front.svg",
  37192. extra: 1950/1856,
  37193. bottom: 174/2124
  37194. }
  37195. },
  37196. paw: {
  37197. height: math.unit(1, "feet"),
  37198. name: "Paw",
  37199. image: {
  37200. source: "./media/characters/softpurr/paw.svg"
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Normal",
  37207. height: math.unit(5 + 1/12, "feet"),
  37208. default: true
  37209. },
  37210. ]
  37211. ))
  37212. characterMakers.push(() => makeCharacter(
  37213. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37214. {
  37215. front: {
  37216. height: math.unit(300, "meters"),
  37217. name: "Front",
  37218. image: {
  37219. source: "./media/characters/anahita/front.svg",
  37220. extra: 609/576,
  37221. bottom: 51/660
  37222. }
  37223. },
  37224. },
  37225. [
  37226. {
  37227. name: "Macro",
  37228. height: math.unit(300, "meters"),
  37229. default: true
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(4 + 10/12, "feet"),
  37238. weight: math.unit(160, "lb"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/chip-mouse/front.svg",
  37242. extra: 3528/3408,
  37243. bottom: 0/3528
  37244. }
  37245. },
  37246. frontNsfw: {
  37247. height: math.unit(4 + 10/12, "feet"),
  37248. weight: math.unit(160, "lb"),
  37249. name: "Front (NSFW)",
  37250. image: {
  37251. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37252. extra: 3528/3408,
  37253. bottom: 0/3528
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(4 + 10/12, "feet"),
  37261. default: true
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37267. {
  37268. side: {
  37269. height: math.unit(10, "feet"),
  37270. weight: math.unit(14000, "lb"),
  37271. name: "Side",
  37272. image: {
  37273. source: "./media/characters/kremm/side.svg",
  37274. extra: 1390/1053,
  37275. bottom: 90/1480
  37276. }
  37277. },
  37278. gut: {
  37279. height: math.unit(5.8, "feet"),
  37280. name: "Gut",
  37281. image: {
  37282. source: "./media/characters/kremm/gut.svg"
  37283. }
  37284. },
  37285. ass: {
  37286. height: math.unit(6.1, "feet"),
  37287. name: "Ass",
  37288. image: {
  37289. source: "./media/characters/kremm/ass.svg"
  37290. }
  37291. },
  37292. jaws: {
  37293. height: math.unit(2.2, "feet"),
  37294. name: "Jaws",
  37295. image: {
  37296. source: "./media/characters/kremm/jaws.svg"
  37297. }
  37298. },
  37299. dick: {
  37300. height: math.unit(4.26, "feet"),
  37301. name: "Dick",
  37302. image: {
  37303. source: "./media/characters/kremm/dick.svg"
  37304. }
  37305. },
  37306. },
  37307. [
  37308. {
  37309. name: "Normal",
  37310. height: math.unit(10, "feet"),
  37311. default: true
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37317. {
  37318. front: {
  37319. height: math.unit(30, "stories"),
  37320. name: "Front",
  37321. image: {
  37322. source: "./media/characters/kai/front.svg",
  37323. extra: 1892/1718,
  37324. bottom: 162/2054
  37325. }
  37326. },
  37327. },
  37328. [
  37329. {
  37330. name: "Macro",
  37331. height: math.unit(30, "stories"),
  37332. default: true
  37333. },
  37334. ]
  37335. ))
  37336. characterMakers.push(() => makeCharacter(
  37337. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37338. {
  37339. front: {
  37340. height: math.unit(6 + 4/12, "feet"),
  37341. weight: math.unit(145, "lb"),
  37342. name: "Front",
  37343. image: {
  37344. source: "./media/characters/sykes/front.svg",
  37345. extra: 1321 / 1187,
  37346. bottom: 66 / 1387
  37347. }
  37348. },
  37349. back: {
  37350. height: math.unit(6 + 4/12, "feet"),
  37351. weight: math.unit(145, "lb"),
  37352. name: "Back",
  37353. image: {
  37354. source: "./media/characters/sykes/back.svg",
  37355. extra: 1326/1181,
  37356. bottom: 31/1357
  37357. }
  37358. },
  37359. traditionalOutfit: {
  37360. height: math.unit(6 + 4/12, "feet"),
  37361. weight: math.unit(145, "lb"),
  37362. name: "Traditional Outfit",
  37363. image: {
  37364. source: "./media/characters/sykes/traditional-outfit.svg",
  37365. extra: 1321 / 1187,
  37366. bottom: 66 / 1387
  37367. }
  37368. },
  37369. adventureOutfit: {
  37370. height: math.unit(6 + 4/12, "feet"),
  37371. weight: math.unit(145, "lb"),
  37372. name: "Adventure Outfit",
  37373. image: {
  37374. source: "./media/characters/sykes/adventure-outfit.svg",
  37375. extra: 1321 / 1187,
  37376. bottom: 66 / 1387
  37377. }
  37378. },
  37379. handLeft: {
  37380. height: math.unit(0.9, "feet"),
  37381. name: "Hand (Left)",
  37382. image: {
  37383. source: "./media/characters/sykes/hand-left.svg"
  37384. }
  37385. },
  37386. handRight: {
  37387. height: math.unit(0.839, "feet"),
  37388. name: "Hand (Right)",
  37389. image: {
  37390. source: "./media/characters/sykes/hand-right.svg"
  37391. }
  37392. },
  37393. leftFoot: {
  37394. height: math.unit(1.2, "feet"),
  37395. name: "Foot (Left)",
  37396. image: {
  37397. source: "./media/characters/sykes/foot-left.svg"
  37398. }
  37399. },
  37400. rightFoot: {
  37401. height: math.unit(1.2, "feet"),
  37402. name: "Foot (Right)",
  37403. image: {
  37404. source: "./media/characters/sykes/foot-right.svg"
  37405. }
  37406. },
  37407. maw: {
  37408. height: math.unit(1.93, "feet"),
  37409. name: "Maw",
  37410. image: {
  37411. source: "./media/characters/sykes/maw.svg"
  37412. }
  37413. },
  37414. teeth: {
  37415. height: math.unit(0.51, "feet"),
  37416. name: "Teeth",
  37417. image: {
  37418. source: "./media/characters/sykes/teeth.svg"
  37419. }
  37420. },
  37421. tongue: {
  37422. height: math.unit(2.13, "feet"),
  37423. name: "Tongue",
  37424. image: {
  37425. source: "./media/characters/sykes/tongue.svg"
  37426. }
  37427. },
  37428. uvula: {
  37429. height: math.unit(0.16, "feet"),
  37430. name: "Uvula",
  37431. image: {
  37432. source: "./media/characters/sykes/uvula.svg"
  37433. }
  37434. },
  37435. collar: {
  37436. height: math.unit(0.287, "feet"),
  37437. name: "Collar",
  37438. image: {
  37439. source: "./media/characters/sykes/collar.svg"
  37440. }
  37441. },
  37442. tail: {
  37443. height: math.unit(3.8, "feet"),
  37444. name: "Tail",
  37445. image: {
  37446. source: "./media/characters/sykes/tail.svg"
  37447. }
  37448. },
  37449. },
  37450. [
  37451. {
  37452. name: "Shrunken",
  37453. height: math.unit(5, "inches")
  37454. },
  37455. {
  37456. name: "Normal",
  37457. height: math.unit(6 + 4 / 12, "feet"),
  37458. default: true
  37459. },
  37460. {
  37461. name: "Big",
  37462. height: math.unit(15, "feet")
  37463. },
  37464. ]
  37465. ))
  37466. characterMakers.push(() => makeCharacter(
  37467. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37468. {
  37469. front: {
  37470. height: math.unit(5 + 8/12, "feet"),
  37471. weight: math.unit(190, "lb"),
  37472. name: "Front",
  37473. image: {
  37474. source: "./media/characters/oven-otter/front.svg",
  37475. extra: 1809/1740,
  37476. bottom: 181/1990
  37477. }
  37478. },
  37479. back: {
  37480. height: math.unit(5 + 8/12, "feet"),
  37481. weight: math.unit(190, "lb"),
  37482. name: "Back",
  37483. image: {
  37484. source: "./media/characters/oven-otter/back.svg",
  37485. extra: 1709/1635,
  37486. bottom: 118/1827
  37487. }
  37488. },
  37489. hand: {
  37490. height: math.unit(1.07, "feet"),
  37491. name: "Hand",
  37492. image: {
  37493. source: "./media/characters/oven-otter/hand.svg"
  37494. }
  37495. },
  37496. beans: {
  37497. height: math.unit(1.74, "feet"),
  37498. name: "Beans",
  37499. image: {
  37500. source: "./media/characters/oven-otter/beans.svg"
  37501. }
  37502. },
  37503. },
  37504. [
  37505. {
  37506. name: "Micro",
  37507. height: math.unit(0.5, "inches")
  37508. },
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(5 + 8/12, "feet"),
  37512. default: true
  37513. },
  37514. {
  37515. name: "Macro",
  37516. height: math.unit(250, "feet")
  37517. },
  37518. {
  37519. name: "Really High",
  37520. height: math.unit(420, "feet")
  37521. },
  37522. ]
  37523. ))
  37524. characterMakers.push(() => makeCharacter(
  37525. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37526. {
  37527. front: {
  37528. height: math.unit(5, "meters"),
  37529. weight: math.unit(292000000000000, "kg"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/devourer/front.svg",
  37533. extra: 1800/1733,
  37534. bottom: 211/2011
  37535. }
  37536. },
  37537. maw: {
  37538. height: math.unit(1.1, "meter"),
  37539. name: "Maw",
  37540. image: {
  37541. source: "./media/characters/devourer/maw.svg"
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Small",
  37548. height: math.unit(3, "meters")
  37549. },
  37550. {
  37551. name: "Large",
  37552. height: math.unit(5, "meters"),
  37553. default: true
  37554. },
  37555. {
  37556. name: "Macro",
  37557. height: math.unit(20, "meters")
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37563. {
  37564. front: {
  37565. height: math.unit(6, "feet"),
  37566. weight: math.unit(400, "lb"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/ellarby/front.svg",
  37570. extra: 1909/1763,
  37571. bottom: 80/1989
  37572. }
  37573. },
  37574. back: {
  37575. height: math.unit(6, "feet"),
  37576. weight: math.unit(400, "lb"),
  37577. name: "Back",
  37578. image: {
  37579. source: "./media/characters/ellarby/back.svg",
  37580. extra: 1914/1784,
  37581. bottom: 172/2086
  37582. }
  37583. },
  37584. },
  37585. [
  37586. {
  37587. name: "Mischief",
  37588. height: math.unit(18, "inches")
  37589. },
  37590. {
  37591. name: "Trouble",
  37592. height: math.unit(12, "feet")
  37593. },
  37594. {
  37595. name: "Havoc",
  37596. height: math.unit(200, "feet"),
  37597. default: true
  37598. },
  37599. {
  37600. name: "Pandemonium",
  37601. height: math.unit(1, "mile")
  37602. },
  37603. {
  37604. name: "Catastrophe",
  37605. height: math.unit(100, "miles")
  37606. },
  37607. ]
  37608. ))
  37609. characterMakers.push(() => makeCharacter(
  37610. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37611. {
  37612. front: {
  37613. height: math.unit(4.7, "meters"),
  37614. weight: math.unit(6500, "kg"),
  37615. name: "Front",
  37616. image: {
  37617. source: "./media/characters/vex/front.svg",
  37618. extra: 1288/1140,
  37619. bottom: 100/1388
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(4.7, "meters"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37633. {
  37634. normal: {
  37635. height: math.unit(6, "feet"),
  37636. weight: math.unit(350, "lb"),
  37637. name: "Normal",
  37638. image: {
  37639. source: "./media/characters/teshy/normal.svg",
  37640. extra: 1795/1735,
  37641. bottom: 16/1811
  37642. }
  37643. },
  37644. monsterFront: {
  37645. height: math.unit(12, "feet"),
  37646. weight: math.unit(4700, "lb"),
  37647. name: "Monster (Front)",
  37648. image: {
  37649. source: "./media/characters/teshy/monster-front.svg",
  37650. extra: 2042/2034,
  37651. bottom: 128/2170
  37652. }
  37653. },
  37654. monsterSide: {
  37655. height: math.unit(12, "feet"),
  37656. weight: math.unit(4700, "lb"),
  37657. name: "Monster (Side)",
  37658. image: {
  37659. source: "./media/characters/teshy/monster-side.svg",
  37660. extra: 2067/2056,
  37661. bottom: 70/2137
  37662. }
  37663. },
  37664. monsterBack: {
  37665. height: math.unit(12, "feet"),
  37666. weight: math.unit(4700, "lb"),
  37667. name: "Monster (Back)",
  37668. image: {
  37669. source: "./media/characters/teshy/monster-back.svg",
  37670. extra: 1921/1914,
  37671. bottom: 171/2092
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(6, "feet"),
  37679. default: true
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(6, "feet"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/ramey/front.svg",
  37691. extra: 790/787,
  37692. bottom: 27/817
  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: "Phirae", species: ["cat"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(5 + 5/12, "feet"),
  37709. weight: math.unit(120, "lb"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/phirae/front.svg",
  37713. extra: 2491/2436,
  37714. bottom: 38/2529
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal",
  37721. height: math.unit(5 + 5/12, "feet"),
  37722. default: true
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37728. {
  37729. front: {
  37730. height: math.unit(5 + 3/12, "feet"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/stagglas/front.svg",
  37734. extra: 962/882,
  37735. bottom: 53/1015
  37736. }
  37737. },
  37738. feral: {
  37739. height: math.unit(335, "cm"),
  37740. name: "Feral",
  37741. image: {
  37742. source: "./media/characters/stagglas/feral.svg",
  37743. extra: 1732/1090,
  37744. bottom: 48/1780
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(5 + 3/12, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(5 + 4/12, "feet"),
  37761. weight: math.unit(145, "lb"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/starra/front.svg",
  37765. extra: 1790/1691,
  37766. bottom: 91/1881
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(5 + 4/12, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(3.5, "meters"),
  37783. name: "Front",
  37784. image: {
  37785. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37786. extra: 1248/972,
  37787. bottom: 38/1286
  37788. }
  37789. },
  37790. },
  37791. [
  37792. {
  37793. name: "Normal",
  37794. height: math.unit(3.5, "meters"),
  37795. default: true
  37796. },
  37797. ]
  37798. ))
  37799. characterMakers.push(() => makeCharacter(
  37800. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37801. {
  37802. side: {
  37803. height: math.unit(8 + 2/12, "feet"),
  37804. weight: math.unit(1240, "lb"),
  37805. name: "Side",
  37806. image: {
  37807. source: "./media/characters/mika-valentine/side.svg",
  37808. extra: 2670/2501,
  37809. bottom: 250/2920
  37810. }
  37811. },
  37812. },
  37813. [
  37814. {
  37815. name: "Normal",
  37816. height: math.unit(8 + 2/12, "feet"),
  37817. default: true
  37818. },
  37819. ]
  37820. ))
  37821. characterMakers.push(() => makeCharacter(
  37822. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37823. {
  37824. front: {
  37825. height: math.unit(7 + 2/12, "feet"),
  37826. name: "Front",
  37827. image: {
  37828. source: "./media/characters/xoltol/front.svg",
  37829. extra: 2212/2124,
  37830. bottom: 84/2296
  37831. }
  37832. },
  37833. side: {
  37834. height: math.unit(7 + 2/12, "feet"),
  37835. name: "Side",
  37836. image: {
  37837. source: "./media/characters/xoltol/side.svg",
  37838. extra: 2273/2197,
  37839. bottom: 26/2299
  37840. }
  37841. },
  37842. hand: {
  37843. height: math.unit(2.5, "feet"),
  37844. name: "Hand",
  37845. image: {
  37846. source: "./media/characters/xoltol/hand.svg"
  37847. }
  37848. },
  37849. },
  37850. [
  37851. {
  37852. name: "Small-ish",
  37853. height: math.unit(5 + 11/12, "feet")
  37854. },
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(7 + 2/12, "feet")
  37858. },
  37859. {
  37860. name: "\"Macro\"",
  37861. height: math.unit(14 + 9/12, "feet"),
  37862. default: true
  37863. },
  37864. {
  37865. name: "Alternate Height",
  37866. height: math.unit(20, "feet")
  37867. },
  37868. {
  37869. name: "Actually Macro",
  37870. height: math.unit(100, "feet")
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37876. {
  37877. front: {
  37878. height: math.unit(5 + 2/12, "feet"),
  37879. weight: math.unit(75, "kg"),
  37880. name: "Front",
  37881. image: {
  37882. source: "./media/characters/kotetsu-redwood/front.svg",
  37883. extra: 1053/942,
  37884. bottom: 60/1113
  37885. }
  37886. },
  37887. },
  37888. [
  37889. {
  37890. name: "Normal",
  37891. height: math.unit(5 + 2/12, "feet"),
  37892. default: true
  37893. },
  37894. ]
  37895. ))
  37896. characterMakers.push(() => makeCharacter(
  37897. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37898. {
  37899. front: {
  37900. height: math.unit(2.4, "meters"),
  37901. weight: math.unit(125, "kg"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/lilith/front.svg",
  37905. extra: 1590/1513,
  37906. bottom: 203/1793
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Humanoid",
  37913. height: math.unit(2.4, "meters")
  37914. },
  37915. {
  37916. name: "Normal",
  37917. height: math.unit(6, "meters"),
  37918. default: true
  37919. },
  37920. {
  37921. name: "Largest",
  37922. height: math.unit(55, "meters")
  37923. },
  37924. ]
  37925. ))
  37926. characterMakers.push(() => makeCharacter(
  37927. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37928. {
  37929. front: {
  37930. height: math.unit(8 + 4/12, "feet"),
  37931. weight: math.unit(535, "lb"),
  37932. name: "Front",
  37933. image: {
  37934. source: "./media/characters/beh'kah-bolger/front.svg",
  37935. extra: 1660/1603,
  37936. bottom: 37/1697
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(8 + 4/12, "feet"),
  37944. default: true
  37945. },
  37946. {
  37947. name: "Kaiju",
  37948. height: math.unit(250, "feet")
  37949. },
  37950. {
  37951. name: "Still Growing",
  37952. height: math.unit(10, "miles")
  37953. },
  37954. {
  37955. name: "Continental",
  37956. height: math.unit(5000, "miles")
  37957. },
  37958. {
  37959. name: "Final Form",
  37960. height: math.unit(2500000, "miles")
  37961. },
  37962. ]
  37963. ))
  37964. characterMakers.push(() => makeCharacter(
  37965. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37966. {
  37967. front: {
  37968. height: math.unit(7 + 2/12, "feet"),
  37969. weight: math.unit(230, "kg"),
  37970. name: "Front",
  37971. image: {
  37972. source: "./media/characters/tatyana-milewska/front.svg",
  37973. extra: 1199/1150,
  37974. bottom: 86/1285
  37975. }
  37976. },
  37977. },
  37978. [
  37979. {
  37980. name: "Normal",
  37981. height: math.unit(7 + 2/12, "feet"),
  37982. default: true
  37983. },
  37984. {
  37985. name: "Big",
  37986. height: math.unit(12, "feet")
  37987. },
  37988. {
  37989. name: "Minimacro",
  37990. height: math.unit(20, "feet")
  37991. },
  37992. {
  37993. name: "Macro",
  37994. height: math.unit(120, "feet")
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(7 + 8/12, "feet"),
  38003. weight: math.unit(152, "kg"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/helen-arri/front.svg",
  38007. extra: 440/423,
  38008. bottom: 14/454
  38009. }
  38010. },
  38011. back: {
  38012. height: math.unit(7 + 8/12, "feet"),
  38013. weight: math.unit(152, "kg"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/helen-arri/back.svg",
  38017. extra: 443/426,
  38018. bottom: 8/451
  38019. }
  38020. },
  38021. },
  38022. [
  38023. {
  38024. name: "Normal",
  38025. height: math.unit(7 + 8/12, "feet"),
  38026. default: true
  38027. },
  38028. {
  38029. name: "Big",
  38030. height: math.unit(14, "feet")
  38031. },
  38032. {
  38033. name: "Minimacro",
  38034. height: math.unit(24, "feet")
  38035. },
  38036. {
  38037. name: "Macro",
  38038. height: math.unit(140, "feet")
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(6, "meters"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/ehanu-rehu/front.svg",
  38050. extra: 1800/1800,
  38051. bottom: 59/1859
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(6, "meters"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38065. {
  38066. front: {
  38067. height: math.unit(7 + 3/12, "feet"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/renholder/front.svg",
  38071. extra: 3096/2960,
  38072. bottom: 250/3346
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal Bat",
  38079. height: math.unit(7 + 3/12, "feet"),
  38080. default: true
  38081. },
  38082. {
  38083. name: "Slightly Tall Bat",
  38084. height: math.unit(100, "feet")
  38085. },
  38086. {
  38087. name: "Big Bat",
  38088. height: math.unit(1000, "feet")
  38089. },
  38090. {
  38091. name: "City-Sized Bat",
  38092. height: math.unit(200000, "feet")
  38093. },
  38094. {
  38095. name: "Bigger Bat",
  38096. height: math.unit(10000, "miles")
  38097. },
  38098. {
  38099. name: "Solar Sized Bat",
  38100. height: math.unit(100, "AU")
  38101. },
  38102. {
  38103. name: "Galactic Bat",
  38104. height: math.unit(200000, "lightyears")
  38105. },
  38106. {
  38107. name: "Universally Known Bat",
  38108. height: math.unit(1, "universe")
  38109. },
  38110. ]
  38111. ))
  38112. characterMakers.push(() => makeCharacter(
  38113. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38114. {
  38115. front: {
  38116. height: math.unit(6 + 11/12, "feet"),
  38117. weight: math.unit(250, "lb"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/cookiecat/front.svg",
  38121. extra: 893/827,
  38122. bottom: 14/907
  38123. }
  38124. },
  38125. },
  38126. [
  38127. {
  38128. name: "Micro",
  38129. height: math.unit(3, "inches")
  38130. },
  38131. {
  38132. name: "Normal",
  38133. height: math.unit(6 + 11/12, "feet"),
  38134. default: true
  38135. },
  38136. {
  38137. name: "Macro",
  38138. height: math.unit(100, "feet")
  38139. },
  38140. {
  38141. name: "Macro+",
  38142. height: math.unit(404, "feet")
  38143. },
  38144. {
  38145. name: "Megamacro",
  38146. height: math.unit(165, "miles")
  38147. },
  38148. {
  38149. name: "Planetary",
  38150. height: math.unit(4600, "miles")
  38151. },
  38152. ]
  38153. ))
  38154. characterMakers.push(() => makeCharacter(
  38155. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38156. {
  38157. front: {
  38158. height: math.unit(10 + 3/12, "feet"),
  38159. weight: math.unit(1500, "lb"),
  38160. name: "Front",
  38161. image: {
  38162. source: "./media/characters/tux-kusanagi/front.svg",
  38163. extra: 944/840,
  38164. bottom: 39/983
  38165. }
  38166. },
  38167. back: {
  38168. height: math.unit(10 + 3/12, "feet"),
  38169. weight: math.unit(1500, "lb"),
  38170. name: "Back",
  38171. image: {
  38172. source: "./media/characters/tux-kusanagi/back.svg",
  38173. extra: 941/842,
  38174. bottom: 28/969
  38175. }
  38176. },
  38177. rump: {
  38178. height: math.unit(5.25, "feet"),
  38179. name: "Rump",
  38180. image: {
  38181. source: "./media/characters/tux-kusanagi/rump.svg"
  38182. }
  38183. },
  38184. beak: {
  38185. height: math.unit(1.54, "feet"),
  38186. name: "Beak",
  38187. image: {
  38188. source: "./media/characters/tux-kusanagi/beak.svg"
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Normal",
  38195. height: math.unit(10 + 3/12, "feet"),
  38196. default: true
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(58, "feet"),
  38205. weight: math.unit(200, "tons"),
  38206. name: "Front",
  38207. image: {
  38208. source: "./media/characters/uzarmazari/front.svg",
  38209. extra: 1575/1455,
  38210. bottom: 152/1727
  38211. }
  38212. },
  38213. back: {
  38214. height: math.unit(58, "feet"),
  38215. weight: math.unit(200, "tons"),
  38216. name: "Back",
  38217. image: {
  38218. source: "./media/characters/uzarmazari/back.svg",
  38219. extra: 1585/1510,
  38220. bottom: 157/1742
  38221. }
  38222. },
  38223. head: {
  38224. height: math.unit(26, "feet"),
  38225. name: "Head",
  38226. image: {
  38227. source: "./media/characters/uzarmazari/head.svg"
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(58, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38241. {
  38242. side: {
  38243. height: math.unit(15, "feet"),
  38244. name: "Side",
  38245. image: {
  38246. source: "./media/characters/akitu/side.svg",
  38247. extra: 1421/1321,
  38248. bottom: 157/1578
  38249. }
  38250. },
  38251. front: {
  38252. height: math.unit(15, "feet"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/akitu/front.svg",
  38256. extra: 1435/1326,
  38257. bottom: 232/1667
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(15, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(10 + 8/12, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/azalie-croixland/front.svg",
  38277. extra: 1972/1856,
  38278. bottom: 31/2003
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Original Height",
  38285. height: math.unit(5 + 4/12, "feet")
  38286. },
  38287. {
  38288. name: "Normal Height",
  38289. height: math.unit(10 + 8/12, "feet"),
  38290. default: true
  38291. },
  38292. ]
  38293. ))
  38294. characterMakers.push(() => makeCharacter(
  38295. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38296. {
  38297. side: {
  38298. height: math.unit(7 + 1/12, "feet"),
  38299. weight: math.unit(245, "lb"),
  38300. name: "Side",
  38301. image: {
  38302. source: "./media/characters/kavus-kazian/side.svg",
  38303. extra: 349/342,
  38304. bottom: 15/364
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Normal",
  38311. height: math.unit(7 + 1/12, "feet"),
  38312. default: true
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38318. {
  38319. normalFront: {
  38320. height: math.unit(5 + 11/12, "feet"),
  38321. name: "Front",
  38322. image: {
  38323. source: "./media/characters/moonlight-rose/normal-front.svg",
  38324. extra: 1980/1825,
  38325. bottom: 18/1998
  38326. },
  38327. form: "normal",
  38328. default: true
  38329. },
  38330. normalBack: {
  38331. height: math.unit(5 + 11/12, "feet"),
  38332. name: "Back",
  38333. image: {
  38334. source: "./media/characters/moonlight-rose/normal-back.svg",
  38335. extra: 2010/1839,
  38336. bottom: 10/2020
  38337. },
  38338. form: "normal"
  38339. },
  38340. demonFront: {
  38341. height: math.unit(1.5, "earths"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/moonlight-rose/demon.svg",
  38345. extra: 1400/1294,
  38346. bottom: 45/1445
  38347. },
  38348. form: "demon",
  38349. default: true
  38350. },
  38351. terraFront: {
  38352. height: math.unit(1.5, "earths"),
  38353. name: "Front",
  38354. image: {
  38355. source: "./media/characters/moonlight-rose/terra.svg"
  38356. },
  38357. form: "terra",
  38358. default: true
  38359. },
  38360. jupiterFront: {
  38361. height: math.unit(69911*2, "km"),
  38362. name: "Front",
  38363. image: {
  38364. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38365. extra: 1367/1286,
  38366. bottom: 55/1422
  38367. },
  38368. form: "jupiter",
  38369. default: true
  38370. },
  38371. neptuneFront: {
  38372. height: math.unit(24622*2, "feet"),
  38373. name: "Front",
  38374. image: {
  38375. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38376. extra: 1851/1712,
  38377. bottom: 0/1851
  38378. },
  38379. form: "neptune",
  38380. default: true
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "\"Natural\" Height",
  38386. height: math.unit(5 + 11/12, "feet"),
  38387. form: "normal"
  38388. },
  38389. {
  38390. name: "Smallest comfortable size",
  38391. height: math.unit(40, "meters"),
  38392. form: "normal"
  38393. },
  38394. {
  38395. name: "Common size",
  38396. height: math.unit(50, "km"),
  38397. form: "normal",
  38398. default: true
  38399. },
  38400. {
  38401. name: "Normal",
  38402. height: math.unit(1.5, "earths"),
  38403. form: "demon",
  38404. default: true
  38405. },
  38406. {
  38407. name: "Universal",
  38408. height: math.unit(15, "universes"),
  38409. form: "demon"
  38410. },
  38411. {
  38412. name: "Earth",
  38413. height: math.unit(1.5, "earths"),
  38414. form: "terra",
  38415. default: true
  38416. },
  38417. {
  38418. name: "Super Earth",
  38419. height: math.unit(67.5, "earths"),
  38420. form: "terra"
  38421. },
  38422. {
  38423. name: "Doesn't fit in a solar system...",
  38424. height: math.unit(1, "galaxy"),
  38425. form: "terra"
  38426. },
  38427. {
  38428. name: "Saturn",
  38429. height: math.unit(58232*2, "km"),
  38430. form: "jupiter"
  38431. },
  38432. {
  38433. name: "Jupiter",
  38434. height: math.unit(69911*2, "km"),
  38435. form: "jupiter",
  38436. default: true
  38437. },
  38438. {
  38439. name: "HD 100546 b",
  38440. height: math.unit(482938, "km"),
  38441. form: "jupiter"
  38442. },
  38443. {
  38444. name: "Enceladus",
  38445. height: math.unit(513*2, "km"),
  38446. form: "neptune"
  38447. },
  38448. {
  38449. name: "Europe",
  38450. height: math.unit(1560*2, "km"),
  38451. form: "neptune"
  38452. },
  38453. {
  38454. name: "Neptune",
  38455. height: math.unit(24622*2, "km"),
  38456. form: "neptune",
  38457. default: true
  38458. },
  38459. {
  38460. name: "CoRoT-9b",
  38461. height: math.unit(75067*2, "km"),
  38462. form: "neptune"
  38463. },
  38464. ],
  38465. {
  38466. "normal": {
  38467. name: "Normal",
  38468. default: true
  38469. },
  38470. "demon": {
  38471. name: "Demon"
  38472. },
  38473. "terra": {
  38474. name: "Terra"
  38475. },
  38476. "jupiter": {
  38477. name: "Jupiter"
  38478. },
  38479. "neptune": {
  38480. name: "Neptune"
  38481. }
  38482. }
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(16, "feet"),
  38489. weight: math.unit(610, "kg"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/huckle/front.svg",
  38493. extra: 1731/1625,
  38494. bottom: 33/1764
  38495. }
  38496. },
  38497. back: {
  38498. height: math.unit(16, "feet"),
  38499. weight: math.unit(610, "kg"),
  38500. name: "Back",
  38501. image: {
  38502. source: "./media/characters/huckle/back.svg",
  38503. extra: 1738/1651,
  38504. bottom: 37/1775
  38505. }
  38506. },
  38507. laughing: {
  38508. height: math.unit(3.75, "feet"),
  38509. name: "Laughing",
  38510. image: {
  38511. source: "./media/characters/huckle/laughing.svg"
  38512. }
  38513. },
  38514. angry: {
  38515. height: math.unit(4.15, "feet"),
  38516. name: "Angry",
  38517. image: {
  38518. source: "./media/characters/huckle/angry.svg"
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(16, "feet"),
  38526. default: true
  38527. },
  38528. {
  38529. name: "Mini Macro",
  38530. height: math.unit(463, "feet")
  38531. },
  38532. {
  38533. name: "Macro",
  38534. height: math.unit(1680, "meters")
  38535. },
  38536. {
  38537. name: "Mega Macro",
  38538. height: math.unit(175, "km")
  38539. },
  38540. {
  38541. name: "Terra Macro",
  38542. height: math.unit(32, "gigameters")
  38543. },
  38544. {
  38545. name: "Multiverse+",
  38546. height: math.unit(2.56e23, "yottameters")
  38547. },
  38548. ]
  38549. ))
  38550. characterMakers.push(() => makeCharacter(
  38551. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38552. {
  38553. front: {
  38554. height: math.unit(6 + 9/12, "feet"),
  38555. weight: math.unit(280, "lb"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/candy/front.svg",
  38559. extra: 234/217,
  38560. bottom: 11/245
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Really Small",
  38567. height: math.unit(0.1, "nm")
  38568. },
  38569. {
  38570. name: "Micro",
  38571. height: math.unit(2, "inches")
  38572. },
  38573. {
  38574. name: "Normal",
  38575. height: math.unit(6 + 9/12, "feet"),
  38576. default: true
  38577. },
  38578. {
  38579. name: "Small Macro",
  38580. height: math.unit(69, "feet")
  38581. },
  38582. {
  38583. name: "Macro",
  38584. height: math.unit(160, "feet")
  38585. },
  38586. {
  38587. name: "Megamacro",
  38588. height: math.unit(22000, "miles")
  38589. },
  38590. {
  38591. name: "Gigamacro",
  38592. height: math.unit(50000, "miles")
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(4, "feet"),
  38601. weight: math.unit(90, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/joey-mcdonald/front.svg",
  38605. extra: 1059/852,
  38606. bottom: 33/1092
  38607. }
  38608. },
  38609. back: {
  38610. height: math.unit(4, "feet"),
  38611. weight: math.unit(90, "lb"),
  38612. name: "Back",
  38613. image: {
  38614. source: "./media/characters/joey-mcdonald/back.svg",
  38615. extra: 1077/879,
  38616. bottom: 5/1082
  38617. }
  38618. },
  38619. frontKobold: {
  38620. height: math.unit(4, "feet"),
  38621. weight: math.unit(100, "lb"),
  38622. name: "Front (Kobold)",
  38623. image: {
  38624. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38625. extra: 1480/1367,
  38626. bottom: 0/1480
  38627. }
  38628. },
  38629. backKobold: {
  38630. height: math.unit(4, "feet"),
  38631. weight: math.unit(100, "lb"),
  38632. name: "Back (Kobold)",
  38633. image: {
  38634. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38635. extra: 1449/1361,
  38636. bottom: 0/1449
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(4, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(12 + 6/12, "feet"),
  38653. name: "Front",
  38654. image: {
  38655. source: "./media/characters/kass-lockheed/front.svg",
  38656. extra: 354/343,
  38657. bottom: 9/363
  38658. }
  38659. },
  38660. back: {
  38661. height: math.unit(12 + 6/12, "feet"),
  38662. name: "Back",
  38663. image: {
  38664. source: "./media/characters/kass-lockheed/back.svg",
  38665. extra: 364/352,
  38666. bottom: 3/367
  38667. }
  38668. },
  38669. dick: {
  38670. height: math.unit(3.12, "feet"),
  38671. name: "Dick",
  38672. image: {
  38673. source: "./media/characters/kass-lockheed/dick.svg"
  38674. }
  38675. },
  38676. head: {
  38677. height: math.unit(2.6, "feet"),
  38678. name: "Head",
  38679. image: {
  38680. source: "./media/characters/kass-lockheed/head.svg"
  38681. }
  38682. },
  38683. bleh: {
  38684. height: math.unit(2.85, "feet"),
  38685. name: "Bleh",
  38686. image: {
  38687. source: "./media/characters/kass-lockheed/bleh.svg"
  38688. }
  38689. },
  38690. smug: {
  38691. height: math.unit(2.85, "feet"),
  38692. name: "Smug",
  38693. image: {
  38694. source: "./media/characters/kass-lockheed/smug.svg"
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Normal",
  38701. height: math.unit(12 + 6/12, "feet"),
  38702. default: true
  38703. },
  38704. ]
  38705. ))
  38706. characterMakers.push(() => makeCharacter(
  38707. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38708. {
  38709. front: {
  38710. height: math.unit(6 + 2/12, "feet"),
  38711. name: "Front",
  38712. image: {
  38713. source: "./media/characters/taylor/front.svg",
  38714. extra: 639/495,
  38715. bottom: 12/651
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Normal",
  38722. height: math.unit(6 + 2/12, "feet"),
  38723. default: true
  38724. },
  38725. {
  38726. name: "Big",
  38727. height: math.unit(15, "feet")
  38728. },
  38729. {
  38730. name: "Lorg",
  38731. height: math.unit(80, "feet")
  38732. },
  38733. {
  38734. name: "Too Lorg",
  38735. height: math.unit(120, "feet")
  38736. },
  38737. ]
  38738. ))
  38739. characterMakers.push(() => makeCharacter(
  38740. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38741. {
  38742. front: {
  38743. height: math.unit(15, "feet"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/kaizer/front.svg",
  38747. extra: 1612/1436,
  38748. bottom: 43/1655
  38749. }
  38750. },
  38751. },
  38752. [
  38753. {
  38754. name: "Normal",
  38755. height: math.unit(15, "feet"),
  38756. default: true
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(2, "feet"),
  38765. weight: math.unit(30, "lb"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/sandy/front.svg",
  38769. extra: 1439/1307,
  38770. bottom: 194/1633
  38771. }
  38772. },
  38773. },
  38774. [
  38775. {
  38776. name: "Normal",
  38777. height: math.unit(2, "feet"),
  38778. default: true
  38779. },
  38780. ]
  38781. ))
  38782. characterMakers.push(() => makeCharacter(
  38783. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38784. {
  38785. front: {
  38786. height: math.unit(3, "feet"),
  38787. name: "Front",
  38788. image: {
  38789. source: "./media/characters/mellvi/front.svg",
  38790. extra: 1831/1630,
  38791. bottom: 58/1889
  38792. }
  38793. },
  38794. },
  38795. [
  38796. {
  38797. name: "Normal",
  38798. height: math.unit(3, "feet"),
  38799. default: true
  38800. },
  38801. ]
  38802. ))
  38803. characterMakers.push(() => makeCharacter(
  38804. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38805. {
  38806. front: {
  38807. height: math.unit(5 + 11/12, "feet"),
  38808. weight: math.unit(200, "lb"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/shirou/front.svg",
  38812. extra: 2491/2383,
  38813. bottom: 189/2680
  38814. }
  38815. },
  38816. back: {
  38817. height: math.unit(5 + 11/12, "feet"),
  38818. weight: math.unit(200, "lb"),
  38819. name: "Back",
  38820. image: {
  38821. source: "./media/characters/shirou/back.svg",
  38822. extra: 2554/2450,
  38823. bottom: 76/2630
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(5 + 11/12, "feet"),
  38831. default: true
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(6 + 3/12, "feet"),
  38840. weight: math.unit(177, "lb"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/noryu/front.svg",
  38844. extra: 973/885,
  38845. bottom: 10/983
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(6 + 3/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(5 + 6/12, "feet"),
  38862. weight: math.unit(170, "lb"),
  38863. name: "Front",
  38864. image: {
  38865. source: "./media/characters/mevolas-rubenido/front.svg",
  38866. extra: 2109/1901,
  38867. bottom: 96/2205
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(5 + 6/12, "feet"),
  38875. default: true
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38881. {
  38882. front: {
  38883. height: math.unit(100, "feet"),
  38884. name: "Front",
  38885. image: {
  38886. source: "./media/characters/dee/front.svg",
  38887. extra: 2153/2036,
  38888. bottom: 59/2212
  38889. }
  38890. },
  38891. back: {
  38892. height: math.unit(100, "feet"),
  38893. name: "Back",
  38894. image: {
  38895. source: "./media/characters/dee/back.svg",
  38896. extra: 2183/2058,
  38897. bottom: 75/2258
  38898. }
  38899. },
  38900. foot: {
  38901. height: math.unit(19.43, "feet"),
  38902. name: "Foot",
  38903. image: {
  38904. source: "./media/characters/dee/foot.svg"
  38905. }
  38906. },
  38907. hoof: {
  38908. height: math.unit(20.6, "feet"),
  38909. name: "Hoof",
  38910. image: {
  38911. source: "./media/characters/dee/hoof.svg"
  38912. }
  38913. },
  38914. },
  38915. [
  38916. {
  38917. name: "Macro",
  38918. height: math.unit(100, "feet"),
  38919. default: true
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(5 + 6/12, "feet"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/teh/front.svg",
  38931. extra: 1002/847,
  38932. bottom: 62/1064
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(5 + 6/12, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38946. {
  38947. side: {
  38948. height: math.unit(6 + 1/12, "feet"),
  38949. weight: math.unit(204, "lb"),
  38950. name: "Side",
  38951. image: {
  38952. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38953. extra: 974/775,
  38954. bottom: 169/1143
  38955. }
  38956. },
  38957. sitting: {
  38958. height: math.unit(6 + 2/12, "feet"),
  38959. weight: math.unit(204, "lb"),
  38960. name: "Sitting",
  38961. image: {
  38962. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38963. extra: 1175/964,
  38964. bottom: 378/1553
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Normal",
  38971. height: math.unit(6 + 1/12, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(6, "inches"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/tululi/front.svg",
  38984. extra: 1997/1876,
  38985. bottom: 20/2017
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(6, "inches"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(4 + 1/12, "feet"),
  39002. name: "Front",
  39003. image: {
  39004. source: "./media/characters/star/front.svg",
  39005. extra: 1493/1189,
  39006. bottom: 48/1541
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(4 + 1/12, "feet"),
  39014. default: true
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39020. {
  39021. front: {
  39022. height: math.unit(6 + 3/12, "feet"),
  39023. name: "Front",
  39024. image: {
  39025. source: "./media/characters/comet/front.svg",
  39026. extra: 1681/1462,
  39027. bottom: 26/1707
  39028. }
  39029. },
  39030. },
  39031. [
  39032. {
  39033. name: "Normal",
  39034. height: math.unit(6 + 3/12, "feet"),
  39035. default: true
  39036. },
  39037. ]
  39038. ))
  39039. characterMakers.push(() => makeCharacter(
  39040. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39041. {
  39042. front: {
  39043. height: math.unit(950, "feet"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/vortex/front.svg",
  39047. extra: 1497/1434,
  39048. bottom: 56/1553
  39049. }
  39050. },
  39051. maw: {
  39052. height: math.unit(285, "feet"),
  39053. name: "Maw",
  39054. image: {
  39055. source: "./media/characters/vortex/maw.svg"
  39056. }
  39057. },
  39058. },
  39059. [
  39060. {
  39061. name: "Macro",
  39062. height: math.unit(950, "feet"),
  39063. default: true
  39064. },
  39065. ]
  39066. ))
  39067. characterMakers.push(() => makeCharacter(
  39068. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39069. {
  39070. front: {
  39071. height: math.unit(600, "feet"),
  39072. weight: math.unit(0.02, "grams"),
  39073. name: "Front",
  39074. image: {
  39075. source: "./media/characters/doodle/front.svg",
  39076. extra: 1578/1413,
  39077. bottom: 37/1615
  39078. }
  39079. },
  39080. },
  39081. [
  39082. {
  39083. name: "Macro",
  39084. height: math.unit(600, "feet"),
  39085. default: true
  39086. },
  39087. ]
  39088. ))
  39089. characterMakers.push(() => makeCharacter(
  39090. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39091. {
  39092. front: {
  39093. height: math.unit(6 + 6/12, "feet"),
  39094. name: "Front",
  39095. image: {
  39096. source: "./media/characters/jai/front.svg",
  39097. extra: 1645/1534,
  39098. bottom: 115/1760
  39099. }
  39100. },
  39101. },
  39102. [
  39103. {
  39104. name: "Normal",
  39105. height: math.unit(6 + 6/12, "feet"),
  39106. default: true
  39107. },
  39108. ]
  39109. ))
  39110. characterMakers.push(() => makeCharacter(
  39111. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39112. {
  39113. front: {
  39114. height: math.unit(6 + 8/12, "feet"),
  39115. name: "Front",
  39116. image: {
  39117. source: "./media/characters/pixel/front.svg",
  39118. extra: 1900/1735,
  39119. bottom: 63/1963
  39120. }
  39121. },
  39122. },
  39123. [
  39124. {
  39125. name: "Normal",
  39126. height: math.unit(6 + 8/12, "feet"),
  39127. default: true
  39128. },
  39129. ]
  39130. ))
  39131. characterMakers.push(() => makeCharacter(
  39132. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39133. {
  39134. back: {
  39135. height: math.unit(4 + 1/12, "feet"),
  39136. weight: math.unit(75, "lb"),
  39137. name: "Back",
  39138. image: {
  39139. source: "./media/characters/rhett/back.svg",
  39140. extra: 930/878,
  39141. bottom: 25/955
  39142. }
  39143. },
  39144. front: {
  39145. height: math.unit(4 + 1/12, "feet"),
  39146. weight: math.unit(75, "lb"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/rhett/front.svg",
  39150. extra: 1682/1586,
  39151. bottom: 92/1774
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Micro",
  39158. height: math.unit(8, "inches")
  39159. },
  39160. {
  39161. name: "Tiny",
  39162. height: math.unit(2, "feet")
  39163. },
  39164. {
  39165. name: "Normal",
  39166. height: math.unit(4 + 1/12, "feet"),
  39167. default: true
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39173. {
  39174. front: {
  39175. height: math.unit(3 + 3/12, "feet"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/penny/front.svg",
  39179. extra: 1406/1311,
  39180. bottom: 26/1432
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(3 + 3/12, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39194. {
  39195. front: {
  39196. height: math.unit(4 + 11/12, "feet"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/monty/front.svg",
  39200. extra: 1479/1209,
  39201. bottom: 0/1479
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Normal",
  39208. height: math.unit(4 + 11/12, "feet"),
  39209. default: true
  39210. },
  39211. ]
  39212. ))
  39213. characterMakers.push(() => makeCharacter(
  39214. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39215. {
  39216. front: {
  39217. height: math.unit(8 + 4/12, "feet"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/sterling/front.svg",
  39221. extra: 1420/1236,
  39222. bottom: 27/1447
  39223. }
  39224. },
  39225. },
  39226. [
  39227. {
  39228. name: "Normal",
  39229. height: math.unit(8 + 4/12, "feet"),
  39230. default: true
  39231. },
  39232. ]
  39233. ))
  39234. characterMakers.push(() => makeCharacter(
  39235. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39236. {
  39237. front: {
  39238. height: math.unit(15, "feet"),
  39239. name: "Front",
  39240. image: {
  39241. source: "./media/characters/marble/front.svg",
  39242. extra: 973/937,
  39243. bottom: 32/1005
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(15, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39257. {
  39258. front: {
  39259. height: math.unit(3, "inches"),
  39260. name: "Front",
  39261. image: {
  39262. source: "./media/characters/powder/front.svg",
  39263. extra: 1504/1334,
  39264. bottom: 518/2022
  39265. }
  39266. },
  39267. },
  39268. [
  39269. {
  39270. name: "Normal",
  39271. height: math.unit(3, "inches"),
  39272. default: true
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39278. {
  39279. front: {
  39280. height: math.unit(4 + 5/12, "feet"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/joey-raccoon/front.svg",
  39284. extra: 1273/1197,
  39285. bottom: 0/1273
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(4 + 5/12, "feet"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(8 + 4/12, "feet"),
  39302. name: "Front",
  39303. image: {
  39304. source: "./media/characters/vick/front.svg",
  39305. extra: 2187/2118,
  39306. bottom: 47/2234
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(8 + 4/12, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39320. {
  39321. front: {
  39322. height: math.unit(5 + 5/12, "feet"),
  39323. name: "Front",
  39324. image: {
  39325. source: "./media/characters/mitsy/front.svg",
  39326. extra: 1842/1695,
  39327. bottom: 0/1842
  39328. }
  39329. },
  39330. },
  39331. [
  39332. {
  39333. name: "Normal",
  39334. height: math.unit(5 + 5/12, "feet"),
  39335. default: true
  39336. },
  39337. ]
  39338. ))
  39339. characterMakers.push(() => makeCharacter(
  39340. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39341. {
  39342. front: {
  39343. height: math.unit(6 + 3/12, "feet"),
  39344. name: "Front",
  39345. image: {
  39346. source: "./media/characters/silvy/front.svg",
  39347. extra: 1995/1836,
  39348. bottom: 225/2220
  39349. }
  39350. },
  39351. },
  39352. [
  39353. {
  39354. name: "Normal",
  39355. height: math.unit(6 + 3/12, "feet"),
  39356. default: true
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(3 + 8/12, "feet"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/rodney/front.svg",
  39368. extra: 1956/1747,
  39369. bottom: 31/1987
  39370. }
  39371. },
  39372. frontDressed: {
  39373. height: math.unit(2.9, "feet"),
  39374. name: "Front (Dressed)",
  39375. image: {
  39376. source: "./media/characters/rodney/front-dressed.svg",
  39377. extra: 1382/1241,
  39378. bottom: 385/1767
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(3 + 8/12, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(5 + 9/12, "feet"),
  39395. weight: math.unit(194, "lbs"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/zakail-sudekai/front.svg",
  39399. extra: 2696/2533,
  39400. bottom: 248/2944
  39401. }
  39402. },
  39403. maw: {
  39404. height: math.unit(1.35, "feet"),
  39405. name: "Maw",
  39406. image: {
  39407. source: "./media/characters/zakail-sudekai/maw.svg"
  39408. }
  39409. },
  39410. },
  39411. [
  39412. {
  39413. name: "Normal",
  39414. height: math.unit(5 + 9/12, "feet"),
  39415. default: true
  39416. },
  39417. ]
  39418. ))
  39419. characterMakers.push(() => makeCharacter(
  39420. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39421. {
  39422. front: {
  39423. height: math.unit(8 + 4/12, "feet"),
  39424. weight: math.unit(1200, "lb"),
  39425. name: "Front",
  39426. image: {
  39427. source: "./media/characters/eleanor/front.svg",
  39428. extra: 1226/1192,
  39429. bottom: 52/1278
  39430. }
  39431. },
  39432. back: {
  39433. height: math.unit(8 + 4/12, "feet"),
  39434. weight: math.unit(1200, "lb"),
  39435. name: "Back",
  39436. image: {
  39437. source: "./media/characters/eleanor/back.svg",
  39438. extra: 1242/1184,
  39439. bottom: 60/1302
  39440. }
  39441. },
  39442. head: {
  39443. height: math.unit(2.62, "feet"),
  39444. name: "Head",
  39445. image: {
  39446. source: "./media/characters/eleanor/head.svg"
  39447. }
  39448. },
  39449. },
  39450. [
  39451. {
  39452. name: "Normal",
  39453. height: math.unit(8 + 4/12, "feet"),
  39454. default: true
  39455. },
  39456. ]
  39457. ))
  39458. characterMakers.push(() => makeCharacter(
  39459. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39460. {
  39461. front: {
  39462. height: math.unit(8 + 4/12, "feet"),
  39463. weight: math.unit(750, "lb"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/tanya/front.svg",
  39467. extra: 1749/1615,
  39468. bottom: 33/1782
  39469. }
  39470. },
  39471. },
  39472. [
  39473. {
  39474. name: "Normal",
  39475. height: math.unit(8 + 4/12, "feet"),
  39476. default: true
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(5, "feet"),
  39485. weight: math.unit(225, "lb"),
  39486. name: "Front",
  39487. image: {
  39488. source: "./media/characters/cindy/front.svg",
  39489. extra: 1320/1250,
  39490. bottom: 42/1362
  39491. }
  39492. },
  39493. frontDressed: {
  39494. height: math.unit(5, "feet"),
  39495. weight: math.unit(225, "lb"),
  39496. name: "Front (Dressed)",
  39497. image: {
  39498. source: "./media/characters/cindy/front-dressed.svg",
  39499. extra: 1320/1250,
  39500. bottom: 42/1362
  39501. }
  39502. },
  39503. back: {
  39504. height: math.unit(5, "feet"),
  39505. weight: math.unit(225, "lb"),
  39506. name: "Back",
  39507. image: {
  39508. source: "./media/characters/cindy/back.svg",
  39509. extra: 1384/1346,
  39510. bottom: 14/1398
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Normal",
  39517. height: math.unit(5, "feet"),
  39518. default: true
  39519. },
  39520. ]
  39521. ))
  39522. characterMakers.push(() => makeCharacter(
  39523. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39524. {
  39525. front: {
  39526. height: math.unit(6 + 9/12, "feet"),
  39527. weight: math.unit(440, "lb"),
  39528. name: "Front",
  39529. image: {
  39530. source: "./media/characters/wilbur-owen/front.svg",
  39531. extra: 1575/1448,
  39532. bottom: 72/1647
  39533. }
  39534. },
  39535. back: {
  39536. height: math.unit(6 + 9/12, "feet"),
  39537. weight: math.unit(440, "lb"),
  39538. name: "Back",
  39539. image: {
  39540. source: "./media/characters/wilbur-owen/back.svg",
  39541. extra: 1578/1445,
  39542. bottom: 36/1614
  39543. }
  39544. },
  39545. },
  39546. [
  39547. {
  39548. name: "Normal",
  39549. height: math.unit(6 + 9/12, "feet"),
  39550. default: true
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(6 + 5/12, "feet"),
  39559. weight: math.unit(650, "lb"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/keegan/front.svg",
  39563. extra: 2387/2198,
  39564. bottom: 33/2420
  39565. }
  39566. },
  39567. side: {
  39568. height: math.unit(6 + 5/12, "feet"),
  39569. weight: math.unit(650, "lb"),
  39570. name: "Side",
  39571. image: {
  39572. source: "./media/characters/keegan/side.svg",
  39573. extra: 2390/2202,
  39574. bottom: 47/2437
  39575. }
  39576. },
  39577. back: {
  39578. height: math.unit(6 + 5/12, "feet"),
  39579. weight: math.unit(650, "lb"),
  39580. name: "Back",
  39581. image: {
  39582. source: "./media/characters/keegan/back.svg",
  39583. extra: 2418/2268,
  39584. bottom: 15/2433
  39585. }
  39586. },
  39587. frontSfw: {
  39588. height: math.unit(6 + 5/12, "feet"),
  39589. weight: math.unit(650, "lb"),
  39590. name: "Front (SFW)",
  39591. image: {
  39592. source: "./media/characters/keegan/front-sfw.svg",
  39593. extra: 2387/2198,
  39594. bottom: 33/2420
  39595. }
  39596. },
  39597. beans: {
  39598. height: math.unit(1.85, "feet"),
  39599. name: "Beans",
  39600. image: {
  39601. source: "./media/characters/keegan/beans.svg"
  39602. }
  39603. },
  39604. },
  39605. [
  39606. {
  39607. name: "Normal",
  39608. height: math.unit(6 + 5/12, "feet"),
  39609. default: true
  39610. },
  39611. ]
  39612. ))
  39613. characterMakers.push(() => makeCharacter(
  39614. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39615. {
  39616. front: {
  39617. height: math.unit(9, "feet"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/colton/front.svg",
  39621. extra: 1589/1326,
  39622. bottom: 139/1728
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(9, "feet"),
  39630. default: true
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(2 + 9/12, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/bora/front.svg",
  39642. extra: 1265/1250,
  39643. bottom: 24/1289
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(2 + 9/12, "feet"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39657. {
  39658. front: {
  39659. height: math.unit(8, "feet"),
  39660. name: "Front",
  39661. image: {
  39662. source: "./media/characters/myu-myu/front.svg",
  39663. extra: 1949/1857,
  39664. bottom: 90/2039
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Normal",
  39671. height: math.unit(8, "feet"),
  39672. default: true
  39673. },
  39674. {
  39675. name: "Big",
  39676. height: math.unit(15, "feet")
  39677. },
  39678. {
  39679. name: "BIG",
  39680. height: math.unit(25, "feet")
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39686. {
  39687. side: {
  39688. height: math.unit(7 + 5/12, "feet"),
  39689. weight: math.unit(2800, "lb"),
  39690. name: "Side",
  39691. image: {
  39692. source: "./media/characters/haloren/side.svg",
  39693. extra: 1793/409,
  39694. bottom: 59/1852
  39695. }
  39696. },
  39697. frontPaw: {
  39698. height: math.unit(2.36, "feet"),
  39699. name: "Front paw",
  39700. image: {
  39701. source: "./media/characters/haloren/front-paw.svg"
  39702. }
  39703. },
  39704. hindPaw: {
  39705. height: math.unit(3.18, "feet"),
  39706. name: "Hind paw",
  39707. image: {
  39708. source: "./media/characters/haloren/hind-paw.svg"
  39709. }
  39710. },
  39711. maw: {
  39712. height: math.unit(5.05, "feet"),
  39713. name: "Maw",
  39714. image: {
  39715. source: "./media/characters/haloren/maw.svg"
  39716. }
  39717. },
  39718. dick: {
  39719. height: math.unit(2.90, "feet"),
  39720. name: "Dick",
  39721. image: {
  39722. source: "./media/characters/haloren/dick.svg"
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Normal",
  39729. height: math.unit(7 + 5/12, "feet"),
  39730. default: true
  39731. },
  39732. {
  39733. name: "Enhanced",
  39734. height: math.unit(14 + 3/12, "feet")
  39735. },
  39736. ]
  39737. ))
  39738. characterMakers.push(() => makeCharacter(
  39739. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39740. {
  39741. front: {
  39742. height: math.unit(171, "cm"),
  39743. name: "Front",
  39744. image: {
  39745. source: "./media/characters/kimmy/front.svg",
  39746. extra: 1491/1435,
  39747. bottom: 53/1544
  39748. }
  39749. },
  39750. },
  39751. [
  39752. {
  39753. name: "Small",
  39754. height: math.unit(9, "cm")
  39755. },
  39756. {
  39757. name: "Normal",
  39758. height: math.unit(171, "cm"),
  39759. default: true
  39760. },
  39761. ]
  39762. ))
  39763. characterMakers.push(() => makeCharacter(
  39764. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39765. {
  39766. front: {
  39767. height: math.unit(8, "feet"),
  39768. weight: math.unit(300, "lb"),
  39769. name: "Front",
  39770. image: {
  39771. source: "./media/characters/galeboomer/front.svg",
  39772. extra: 4651/4415,
  39773. bottom: 162/4813
  39774. }
  39775. },
  39776. back: {
  39777. height: math.unit(8, "feet"),
  39778. weight: math.unit(300, "lb"),
  39779. name: "Back",
  39780. image: {
  39781. source: "./media/characters/galeboomer/back.svg",
  39782. extra: 4544/4314,
  39783. bottom: 16/4560
  39784. }
  39785. },
  39786. frontAlt: {
  39787. height: math.unit(8, "feet"),
  39788. weight: math.unit(300, "lb"),
  39789. name: "Front (Alt)",
  39790. image: {
  39791. source: "./media/characters/galeboomer/front-alt.svg",
  39792. extra: 4458/4228,
  39793. bottom: 68/4526
  39794. }
  39795. },
  39796. maw: {
  39797. height: math.unit(1.2, "feet"),
  39798. name: "Maw",
  39799. image: {
  39800. source: "./media/characters/galeboomer/maw.svg"
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(8, "feet"),
  39808. default: true
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(5 + 9/12, "feet"),
  39817. weight: math.unit(120, "lb"),
  39818. name: "Front",
  39819. image: {
  39820. source: "./media/characters/chyr/front.svg",
  39821. extra: 1323/1254,
  39822. bottom: 63/1386
  39823. }
  39824. },
  39825. back: {
  39826. height: math.unit(5 + 9/12, "feet"),
  39827. weight: math.unit(120, "lb"),
  39828. name: "Back",
  39829. image: {
  39830. source: "./media/characters/chyr/back.svg",
  39831. extra: 1323/1252,
  39832. bottom: 48/1371
  39833. }
  39834. },
  39835. },
  39836. [
  39837. {
  39838. name: "Normal",
  39839. height: math.unit(5 + 9/12, "feet"),
  39840. default: true
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(7, "feet"),
  39849. weight: math.unit(310, "lb"),
  39850. name: "Front",
  39851. image: {
  39852. source: "./media/characters/solarus/front.svg",
  39853. extra: 2415/2021,
  39854. bottom: 103/2518
  39855. }
  39856. },
  39857. back: {
  39858. height: math.unit(7, "feet"),
  39859. weight: math.unit(310, "lb"),
  39860. name: "Back",
  39861. image: {
  39862. source: "./media/characters/solarus/back.svg",
  39863. extra: 2463/2089,
  39864. bottom: 79/2542
  39865. }
  39866. },
  39867. },
  39868. [
  39869. {
  39870. name: "Normal",
  39871. height: math.unit(7, "feet"),
  39872. default: true
  39873. },
  39874. ]
  39875. ))
  39876. characterMakers.push(() => makeCharacter(
  39877. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39878. {
  39879. front: {
  39880. height: math.unit(16, "feet"),
  39881. name: "Front",
  39882. image: {
  39883. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39884. extra: 1844/1780,
  39885. bottom: 58/1902
  39886. }
  39887. },
  39888. winterCoat: {
  39889. height: math.unit(16, "feet"),
  39890. name: "Winter Coat",
  39891. image: {
  39892. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39893. extra: 1807/1775,
  39894. bottom: 69/1876
  39895. }
  39896. },
  39897. },
  39898. [
  39899. {
  39900. name: "Normal",
  39901. height: math.unit(16, "feet"),
  39902. default: true
  39903. },
  39904. {
  39905. name: "Chicago Size",
  39906. height: math.unit(560, "feet")
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(11 + 6/12, "feet"),
  39915. weight: math.unit(1366, "lb"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/lexor/front.svg",
  39919. extra: 1560/1481,
  39920. bottom: 211/1771
  39921. }
  39922. },
  39923. back: {
  39924. height: math.unit(11 + 6/12, "feet"),
  39925. weight: math.unit(1366, "lb"),
  39926. name: "Back",
  39927. image: {
  39928. source: "./media/characters/lexor/back.svg",
  39929. extra: 1614/1533,
  39930. bottom: 76/1690
  39931. }
  39932. },
  39933. maw: {
  39934. height: math.unit(3, "feet"),
  39935. name: "Maw",
  39936. image: {
  39937. source: "./media/characters/lexor/maw.svg"
  39938. }
  39939. },
  39940. dick: {
  39941. height: math.unit(2.59, "feet"),
  39942. name: "Dick",
  39943. image: {
  39944. source: "./media/characters/lexor/dick.svg"
  39945. }
  39946. },
  39947. },
  39948. [
  39949. {
  39950. name: "Normal",
  39951. height: math.unit(11 + 6/12, "feet"),
  39952. default: true
  39953. },
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39958. {
  39959. front: {
  39960. height: math.unit(5 + 8/12, "feet"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/magnum/front.svg",
  39964. extra: 942/855,
  39965. bottom: 26/968
  39966. }
  39967. },
  39968. },
  39969. [
  39970. {
  39971. name: "Normal",
  39972. height: math.unit(5 + 8/12, "feet"),
  39973. default: true
  39974. },
  39975. ]
  39976. ))
  39977. characterMakers.push(() => makeCharacter(
  39978. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39979. {
  39980. front: {
  39981. height: math.unit(18 + 4/12, "feet"),
  39982. weight: math.unit(1500, "kg"),
  39983. name: "Front",
  39984. image: {
  39985. source: "./media/characters/solas-sharpsman/front.svg",
  39986. extra: 1698/1589,
  39987. bottom: 0/1698
  39988. }
  39989. },
  39990. },
  39991. [
  39992. {
  39993. name: "Normal",
  39994. height: math.unit(18 + 4/12, "feet"),
  39995. default: true
  39996. },
  39997. ]
  39998. ))
  39999. characterMakers.push(() => makeCharacter(
  40000. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40001. {
  40002. front: {
  40003. height: math.unit(5 + 5/12, "feet"),
  40004. weight: math.unit(180, "lb"),
  40005. name: "Front",
  40006. image: {
  40007. source: "./media/characters/october/front.svg",
  40008. extra: 1800/1650,
  40009. bottom: 0/1800
  40010. }
  40011. },
  40012. frontNsfw: {
  40013. height: math.unit(5 + 5/12, "feet"),
  40014. weight: math.unit(180, "lb"),
  40015. name: "Front (NSFW)",
  40016. image: {
  40017. source: "./media/characters/october/front-nsfw.svg",
  40018. extra: 1392/1307,
  40019. bottom: 42/1434
  40020. }
  40021. },
  40022. },
  40023. [
  40024. {
  40025. name: "Normal",
  40026. height: math.unit(5 + 5/12, "feet"),
  40027. default: true
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(8 + 6/12, "feet"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/essynkardi/front.svg",
  40039. extra: 1541/1457,
  40040. bottom: 47/1588
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(8 + 6/12, "feet"),
  40048. default: true
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40054. {
  40055. front: {
  40056. height: math.unit(6 + 6/12, "feet"),
  40057. weight: math.unit(7, "lb"),
  40058. name: "Front",
  40059. image: {
  40060. source: "./media/characters/icky/front.svg",
  40061. extra: 813/782,
  40062. bottom: 66/879
  40063. }
  40064. },
  40065. back: {
  40066. height: math.unit(6 + 6/12, "feet"),
  40067. weight: math.unit(7, "lb"),
  40068. name: "Back",
  40069. image: {
  40070. source: "./media/characters/icky/back.svg",
  40071. extra: 754/735,
  40072. bottom: 56/810
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Normal",
  40079. height: math.unit(6 + 6/12, "feet"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(15, "feet"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/rojas/front.svg",
  40092. extra: 1462/1408,
  40093. bottom: 95/1557
  40094. }
  40095. },
  40096. back: {
  40097. height: math.unit(15, "feet"),
  40098. name: "Back",
  40099. image: {
  40100. source: "./media/characters/rojas/back.svg",
  40101. extra: 1023/954,
  40102. bottom: 28/1051
  40103. }
  40104. },
  40105. },
  40106. [
  40107. {
  40108. name: "Normal",
  40109. height: math.unit(15, "feet"),
  40110. default: true
  40111. },
  40112. ]
  40113. ))
  40114. characterMakers.push(() => makeCharacter(
  40115. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40116. {
  40117. frontHuman: {
  40118. height: math.unit(5 + 7/12, "feet"),
  40119. name: "Front (Human)",
  40120. image: {
  40121. source: "./media/characters/alek-dryagan/front-human.svg",
  40122. extra: 1687/1667,
  40123. bottom: 69/1756
  40124. }
  40125. },
  40126. backHuman: {
  40127. height: math.unit(5 + 7/12, "feet"),
  40128. name: "Back (Human)",
  40129. image: {
  40130. source: "./media/characters/alek-dryagan/back-human.svg",
  40131. extra: 1670/1649,
  40132. bottom: 65/1735
  40133. }
  40134. },
  40135. frontDemi: {
  40136. height: math.unit(65, "feet"),
  40137. name: "Front (Demi)",
  40138. image: {
  40139. source: "./media/characters/alek-dryagan/front-demi.svg",
  40140. extra: 1669/1642,
  40141. bottom: 49/1718
  40142. }
  40143. },
  40144. backDemi: {
  40145. height: math.unit(65, "feet"),
  40146. name: "Back (Demi)",
  40147. image: {
  40148. source: "./media/characters/alek-dryagan/back-demi.svg",
  40149. extra: 1658/1637,
  40150. bottom: 40/1698
  40151. }
  40152. },
  40153. mawHuman: {
  40154. height: math.unit(0.3, "feet"),
  40155. name: "Maw (Human)",
  40156. image: {
  40157. source: "./media/characters/alek-dryagan/maw-human.svg"
  40158. }
  40159. },
  40160. mawDemi: {
  40161. height: math.unit(3.8, "feet"),
  40162. name: "Maw (Demi)",
  40163. image: {
  40164. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40165. }
  40166. },
  40167. },
  40168. [
  40169. {
  40170. name: "Normal",
  40171. height: math.unit(5 + 7/12, "feet"),
  40172. default: true
  40173. },
  40174. ]
  40175. ))
  40176. characterMakers.push(() => makeCharacter(
  40177. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40178. {
  40179. frontHuman: {
  40180. height: math.unit(5 + 2/12, "feet"),
  40181. name: "Front (Human)",
  40182. image: {
  40183. source: "./media/characters/gen/front-human.svg",
  40184. extra: 1627/1538,
  40185. bottom: 71/1698
  40186. }
  40187. },
  40188. backHuman: {
  40189. height: math.unit(5 + 2/12, "feet"),
  40190. name: "Back (Human)",
  40191. image: {
  40192. source: "./media/characters/gen/back-human.svg",
  40193. extra: 1638/1548,
  40194. bottom: 69/1707
  40195. }
  40196. },
  40197. frontDemi: {
  40198. height: math.unit(5 + 2/12, "feet"),
  40199. name: "Front (Demi)",
  40200. image: {
  40201. source: "./media/characters/gen/front-demi.svg",
  40202. extra: 1627/1538,
  40203. bottom: 71/1698
  40204. }
  40205. },
  40206. backDemi: {
  40207. height: math.unit(5 + 2/12, "feet"),
  40208. name: "Back (Demi)",
  40209. image: {
  40210. source: "./media/characters/gen/back-demi.svg",
  40211. extra: 1638/1548,
  40212. bottom: 69/1707
  40213. }
  40214. },
  40215. },
  40216. [
  40217. {
  40218. name: "Normal",
  40219. height: math.unit(5 + 2/12, "feet"),
  40220. default: true
  40221. },
  40222. ]
  40223. ))
  40224. characterMakers.push(() => makeCharacter(
  40225. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40226. {
  40227. frontImp: {
  40228. height: math.unit(1 + 11/12, "feet"),
  40229. name: "Front (Imp)",
  40230. image: {
  40231. source: "./media/characters/max-kobold/front-imp.svg",
  40232. extra: 1238/1134,
  40233. bottom: 81/1319
  40234. }
  40235. },
  40236. backImp: {
  40237. height: math.unit(1 + 11/12, "feet"),
  40238. name: "Back (Imp)",
  40239. image: {
  40240. source: "./media/characters/max-kobold/back-imp.svg",
  40241. extra: 1334/1175,
  40242. bottom: 34/1368
  40243. }
  40244. },
  40245. frontDemi: {
  40246. height: math.unit(5 + 9/12, "feet"),
  40247. name: "Front (Demi)",
  40248. image: {
  40249. source: "./media/characters/max-kobold/front-demi.svg",
  40250. extra: 1715/1685,
  40251. bottom: 54/1769
  40252. }
  40253. },
  40254. backDemi: {
  40255. height: math.unit(5 + 9/12, "feet"),
  40256. name: "Back (Demi)",
  40257. image: {
  40258. source: "./media/characters/max-kobold/back-demi.svg",
  40259. extra: 1752/1729,
  40260. bottom: 41/1793
  40261. }
  40262. },
  40263. handImp: {
  40264. height: math.unit(0.45, "feet"),
  40265. name: "Hand (Imp)",
  40266. image: {
  40267. source: "./media/characters/max-kobold/hand.svg"
  40268. }
  40269. },
  40270. pawImp: {
  40271. height: math.unit(0.46, "feet"),
  40272. name: "Paw (Imp)",
  40273. image: {
  40274. source: "./media/characters/max-kobold/paw.svg"
  40275. }
  40276. },
  40277. handDemi: {
  40278. height: math.unit(0.80, "feet"),
  40279. name: "Hand (Demi)",
  40280. image: {
  40281. source: "./media/characters/max-kobold/hand.svg"
  40282. }
  40283. },
  40284. pawDemi: {
  40285. height: math.unit(1.1, "feet"),
  40286. name: "Paw (Demi)",
  40287. image: {
  40288. source: "./media/characters/max-kobold/paw.svg"
  40289. }
  40290. },
  40291. headImp: {
  40292. height: math.unit(1.33, "feet"),
  40293. name: "Head (Imp)",
  40294. image: {
  40295. source: "./media/characters/max-kobold/head-imp.svg"
  40296. }
  40297. },
  40298. mawImp: {
  40299. height: math.unit(0.75, "feet"),
  40300. name: "Maw (Imp)",
  40301. image: {
  40302. source: "./media/characters/max-kobold/maw-imp.svg"
  40303. }
  40304. },
  40305. mawDemi: {
  40306. height: math.unit(0.42, "feet"),
  40307. name: "Maw (Demi)",
  40308. image: {
  40309. source: "./media/characters/max-kobold/maw-demi.svg"
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Normal",
  40316. height: math.unit(1 + 11/12, "feet"),
  40317. default: true
  40318. },
  40319. ]
  40320. ))
  40321. characterMakers.push(() => makeCharacter(
  40322. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40323. {
  40324. front: {
  40325. height: math.unit(7 + 5/12, "feet"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/carbon/front.svg",
  40329. extra: 1754/1689,
  40330. bottom: 65/1819
  40331. }
  40332. },
  40333. back: {
  40334. height: math.unit(7 + 5/12, "feet"),
  40335. name: "Back",
  40336. image: {
  40337. source: "./media/characters/carbon/back.svg",
  40338. extra: 1762/1695,
  40339. bottom: 24/1786
  40340. }
  40341. },
  40342. frontGigantamax: {
  40343. height: math.unit(150, "feet"),
  40344. name: "Front (Gigantamax)",
  40345. image: {
  40346. source: "./media/characters/carbon/front-gigantamax.svg",
  40347. extra: 1826/1669,
  40348. bottom: 59/1885
  40349. }
  40350. },
  40351. backGigantamax: {
  40352. height: math.unit(150, "feet"),
  40353. name: "Back (Gigantamax)",
  40354. image: {
  40355. source: "./media/characters/carbon/back-gigantamax.svg",
  40356. extra: 1796/1653,
  40357. bottom: 53/1849
  40358. }
  40359. },
  40360. maw: {
  40361. height: math.unit(0.48, "feet"),
  40362. name: "Maw",
  40363. image: {
  40364. source: "./media/characters/carbon/maw.svg"
  40365. }
  40366. },
  40367. mawGigantamax: {
  40368. height: math.unit(7.5, "feet"),
  40369. name: "Maw (Gigantamax)",
  40370. image: {
  40371. source: "./media/characters/carbon/maw-gigantamax.svg"
  40372. }
  40373. },
  40374. },
  40375. [
  40376. {
  40377. name: "Normal",
  40378. height: math.unit(7 + 5/12, "feet"),
  40379. default: true
  40380. },
  40381. ]
  40382. ))
  40383. characterMakers.push(() => makeCharacter(
  40384. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40385. {
  40386. front: {
  40387. height: math.unit(6, "feet"),
  40388. name: "Front",
  40389. image: {
  40390. source: "./media/characters/maverick/front.svg",
  40391. extra: 1672/1661,
  40392. bottom: 85/1757
  40393. }
  40394. },
  40395. back: {
  40396. height: math.unit(6, "feet"),
  40397. name: "Back",
  40398. image: {
  40399. source: "./media/characters/maverick/back.svg",
  40400. extra: 1642/1631,
  40401. bottom: 38/1680
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Normal",
  40408. height: math.unit(6, "feet"),
  40409. default: true
  40410. },
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(15, "feet"),
  40418. weight: math.unit(615, "lb"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/grockle/front.svg",
  40422. extra: 1535/1427,
  40423. bottom: 56/1591
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(15, "feet"),
  40431. default: true
  40432. },
  40433. {
  40434. name: "Large",
  40435. height: math.unit(150, "feet")
  40436. },
  40437. {
  40438. name: "Macro",
  40439. height: math.unit(1876, "feet")
  40440. },
  40441. {
  40442. name: "Mega Macro",
  40443. height: math.unit(121940, "feet")
  40444. },
  40445. {
  40446. name: "Giga Macro",
  40447. height: math.unit(750, "km")
  40448. },
  40449. {
  40450. name: "Tera Macro",
  40451. height: math.unit(750000, "km")
  40452. },
  40453. {
  40454. name: "Galactic",
  40455. height: math.unit(1.4e5, "km")
  40456. },
  40457. {
  40458. name: "Godlike",
  40459. height: math.unit(9.8e280, "galaxies")
  40460. },
  40461. ]
  40462. ))
  40463. characterMakers.push(() => makeCharacter(
  40464. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40465. {
  40466. front: {
  40467. height: math.unit(11, "meters"),
  40468. weight: math.unit(20, "tonnes"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/alistair/front.svg",
  40472. extra: 1265/1009,
  40473. bottom: 93/1358
  40474. }
  40475. },
  40476. },
  40477. [
  40478. {
  40479. name: "Normal",
  40480. height: math.unit(11, "meters"),
  40481. default: true
  40482. },
  40483. ]
  40484. ))
  40485. characterMakers.push(() => makeCharacter(
  40486. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40487. {
  40488. front: {
  40489. height: math.unit(5 + 8/12, "feet"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/haruka/front.svg",
  40493. extra: 2012/1952,
  40494. bottom: 0/2012
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(5 + 8/12, "feet"),
  40502. default: true
  40503. },
  40504. ]
  40505. ))
  40506. characterMakers.push(() => makeCharacter(
  40507. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40508. {
  40509. back: {
  40510. height: math.unit(9, "feet"),
  40511. name: "Back",
  40512. image: {
  40513. source: "./media/characters/vivian-sylveon/back.svg",
  40514. extra: 1853/1714,
  40515. bottom: 0/1853
  40516. }
  40517. },
  40518. hyper: {
  40519. height: math.unit(5.58, "feet"),
  40520. name: "Hyper",
  40521. preyCapacity: math.unit(2.80616218797, "m^3"),
  40522. image: {
  40523. source: "./media/characters/vivian-sylveon/hyper.svg",
  40524. extra: 999/676,
  40525. bottom: 697/1696
  40526. },
  40527. },
  40528. paw: {
  40529. height: math.unit(1.8, "feet"),
  40530. name: "Paw",
  40531. image: {
  40532. source: "./media/characters/vivian-sylveon/paw.svg"
  40533. }
  40534. },
  40535. danger: {
  40536. height: math.unit(7.5, "feet"),
  40537. name: "DANGER",
  40538. image: {
  40539. source: "./media/characters/vivian-sylveon/danger.svg"
  40540. }
  40541. },
  40542. },
  40543. [
  40544. {
  40545. name: "Normal",
  40546. height: math.unit(9, "feet"),
  40547. default: true
  40548. },
  40549. {
  40550. name: "Macro",
  40551. height: math.unit(500, "feet")
  40552. },
  40553. {
  40554. name: "Megamacro",
  40555. height: math.unit(600, "miles")
  40556. },
  40557. {
  40558. name: "Gigamacro",
  40559. height: math.unit(30000, "miles")
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40565. {
  40566. anthro: {
  40567. height: math.unit(5 + 10/12, "feet"),
  40568. weight: math.unit(100, "lb"),
  40569. name: "Anthro",
  40570. image: {
  40571. source: "./media/characters/daiki/anthro.svg",
  40572. extra: 1115/1027,
  40573. bottom: 69/1184
  40574. }
  40575. },
  40576. feral: {
  40577. height: math.unit(200, "feet"),
  40578. name: "Feral",
  40579. image: {
  40580. source: "./media/characters/daiki/feral.svg",
  40581. extra: 1256/313,
  40582. bottom: 39/1295
  40583. }
  40584. },
  40585. feralHead: {
  40586. height: math.unit(171, "feet"),
  40587. name: "Feral Head",
  40588. image: {
  40589. source: "./media/characters/daiki/feral-head.svg"
  40590. }
  40591. },
  40592. manaDragon: {
  40593. height: math.unit(170, "meters"),
  40594. name: "Mana Dragon",
  40595. image: {
  40596. source: "./media/characters/daiki/mana-dragon.svg",
  40597. extra: 763/420,
  40598. bottom: 97/860
  40599. }
  40600. },
  40601. },
  40602. [
  40603. {
  40604. name: "Normal",
  40605. height: math.unit(5 + 10/12, "feet"),
  40606. default: true
  40607. },
  40608. ]
  40609. ))
  40610. characterMakers.push(() => makeCharacter(
  40611. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40612. {
  40613. fullyEquippedFront: {
  40614. height: math.unit(3 + 1/12, "feet"),
  40615. weight: math.unit(24, "lb"),
  40616. name: "Fully Equipped (Front)",
  40617. image: {
  40618. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40619. extra: 687/605,
  40620. bottom: 18/705
  40621. }
  40622. },
  40623. fullyEquippedBack: {
  40624. height: math.unit(3 + 1/12, "feet"),
  40625. weight: math.unit(24, "lb"),
  40626. name: "Fully Equipped (Back)",
  40627. image: {
  40628. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40629. extra: 689/590,
  40630. bottom: 18/707
  40631. }
  40632. },
  40633. dailyWear: {
  40634. height: math.unit(3 + 1/12, "feet"),
  40635. weight: math.unit(24, "lb"),
  40636. name: "Daily Wear",
  40637. image: {
  40638. source: "./media/characters/tea-spot/daily-wear.svg",
  40639. extra: 701/620,
  40640. bottom: 21/722
  40641. }
  40642. },
  40643. maidWork: {
  40644. height: math.unit(3 + 1/12, "feet"),
  40645. weight: math.unit(24, "lb"),
  40646. name: "Maid Work",
  40647. image: {
  40648. source: "./media/characters/tea-spot/maid-work.svg",
  40649. extra: 693/609,
  40650. bottom: 15/708
  40651. }
  40652. },
  40653. },
  40654. [
  40655. {
  40656. name: "Normal",
  40657. height: math.unit(3 + 1/12, "feet"),
  40658. default: true
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(175, "cm"),
  40667. weight: math.unit(75, "kg"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/chee/front.svg",
  40671. extra: 1796/1740,
  40672. bottom: 40/1836
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Micro-Micro",
  40679. height: math.unit(1, "nm")
  40680. },
  40681. {
  40682. name: "Micro-erst",
  40683. height: math.unit(1, "micrometer")
  40684. },
  40685. {
  40686. name: "Micro-er",
  40687. height: math.unit(1, "cm")
  40688. },
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(175, "cm"),
  40692. default: true
  40693. },
  40694. {
  40695. name: "Macro",
  40696. height: math.unit(100, "m")
  40697. },
  40698. {
  40699. name: "Macro-er",
  40700. height: math.unit(1, "km")
  40701. },
  40702. {
  40703. name: "Macro-erst",
  40704. height: math.unit(10, "km")
  40705. },
  40706. {
  40707. name: "Macro-Macro",
  40708. height: math.unit(100, "km")
  40709. },
  40710. ]
  40711. ))
  40712. characterMakers.push(() => makeCharacter(
  40713. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40714. {
  40715. front: {
  40716. height: math.unit(11 + 9/12, "feet"),
  40717. weight: math.unit(935, "lb"),
  40718. name: "Front",
  40719. image: {
  40720. source: "./media/characters/kingsley/front.svg",
  40721. extra: 1803/1674,
  40722. bottom: 127/1930
  40723. }
  40724. },
  40725. frontNude: {
  40726. height: math.unit(11 + 9/12, "feet"),
  40727. weight: math.unit(935, "lb"),
  40728. name: "Front (Nude)",
  40729. image: {
  40730. source: "./media/characters/kingsley/front-nude.svg",
  40731. extra: 1803/1674,
  40732. bottom: 127/1930
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Normal",
  40739. height: math.unit(11 + 9/12, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40746. {
  40747. side: {
  40748. height: math.unit(9, "feet"),
  40749. name: "Side",
  40750. image: {
  40751. source: "./media/characters/rymel/side.svg",
  40752. extra: 792/469,
  40753. bottom: 121/913
  40754. }
  40755. },
  40756. maw: {
  40757. height: math.unit(2.4, "meters"),
  40758. name: "Maw",
  40759. image: {
  40760. source: "./media/characters/rymel/maw.svg"
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "House Drake",
  40767. height: math.unit(2, "feet")
  40768. },
  40769. {
  40770. name: "Reduced",
  40771. height: math.unit(4.5, "feet")
  40772. },
  40773. {
  40774. name: "Normal",
  40775. height: math.unit(9, "feet"),
  40776. default: true
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(1.74, "meters"),
  40785. weight: math.unit(55, "kg"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/rubus/front.svg",
  40789. extra: 1894/1742,
  40790. bottom: 44/1938
  40791. }
  40792. },
  40793. },
  40794. [
  40795. {
  40796. name: "Normal",
  40797. height: math.unit(1.74, "meters"),
  40798. default: true
  40799. },
  40800. ]
  40801. ))
  40802. characterMakers.push(() => makeCharacter(
  40803. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40804. {
  40805. front: {
  40806. height: math.unit(5 + 2/12, "feet"),
  40807. weight: math.unit(112, "lb"),
  40808. name: "Front",
  40809. image: {
  40810. source: "./media/characters/cassie-kingston/front.svg",
  40811. extra: 1438/1390,
  40812. bottom: 47/1485
  40813. }
  40814. },
  40815. },
  40816. [
  40817. {
  40818. name: "Normal",
  40819. height: math.unit(5 + 2/12, "feet"),
  40820. default: true
  40821. },
  40822. {
  40823. name: "Macro",
  40824. height: math.unit(128, "feet")
  40825. },
  40826. {
  40827. name: "Megamacro",
  40828. height: math.unit(2.56, "miles")
  40829. },
  40830. ]
  40831. ))
  40832. characterMakers.push(() => makeCharacter(
  40833. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40834. {
  40835. front: {
  40836. height: math.unit(7, "feet"),
  40837. name: "Front",
  40838. image: {
  40839. source: "./media/characters/fox/front.svg",
  40840. extra: 1798/1703,
  40841. bottom: 55/1853
  40842. }
  40843. },
  40844. back: {
  40845. height: math.unit(7, "feet"),
  40846. name: "Back",
  40847. image: {
  40848. source: "./media/characters/fox/back.svg",
  40849. extra: 1748/1649,
  40850. bottom: 32/1780
  40851. }
  40852. },
  40853. head: {
  40854. height: math.unit(1.95, "feet"),
  40855. name: "Head",
  40856. image: {
  40857. source: "./media/characters/fox/head.svg"
  40858. }
  40859. },
  40860. dick: {
  40861. height: math.unit(1.33, "feet"),
  40862. name: "Dick",
  40863. image: {
  40864. source: "./media/characters/fox/dick.svg"
  40865. }
  40866. },
  40867. foot: {
  40868. height: math.unit(1, "feet"),
  40869. name: "Foot",
  40870. image: {
  40871. source: "./media/characters/fox/foot.svg"
  40872. }
  40873. },
  40874. paw: {
  40875. height: math.unit(0.92, "feet"),
  40876. name: "Paw",
  40877. image: {
  40878. source: "./media/characters/fox/paw.svg"
  40879. }
  40880. },
  40881. },
  40882. [
  40883. {
  40884. name: "Small",
  40885. height: math.unit(3, "inches")
  40886. },
  40887. {
  40888. name: "\"Realistic\"",
  40889. height: math.unit(7, "feet")
  40890. },
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(150, "feet"),
  40894. default: true
  40895. },
  40896. {
  40897. name: "BIG",
  40898. height: math.unit(1200, "feet")
  40899. },
  40900. {
  40901. name: "👀",
  40902. height: math.unit(5, "miles")
  40903. },
  40904. {
  40905. name: "👀👀👀",
  40906. height: math.unit(64, "miles")
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(625, "feet"),
  40915. name: "Front",
  40916. image: {
  40917. source: "./media/characters/asonja-rossa/front.svg",
  40918. extra: 1833/1686,
  40919. bottom: 24/1857
  40920. }
  40921. },
  40922. back: {
  40923. height: math.unit(625, "feet"),
  40924. name: "Back",
  40925. image: {
  40926. source: "./media/characters/asonja-rossa/back.svg",
  40927. extra: 1852/1753,
  40928. bottom: 26/1878
  40929. }
  40930. },
  40931. },
  40932. [
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(625, "feet"),
  40936. default: true
  40937. },
  40938. ]
  40939. ))
  40940. characterMakers.push(() => makeCharacter(
  40941. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40942. {
  40943. side: {
  40944. height: math.unit(8, "feet"),
  40945. name: "Side",
  40946. image: {
  40947. source: "./media/characters/rezukii/side.svg",
  40948. extra: 979/542,
  40949. bottom: 87/1066
  40950. }
  40951. },
  40952. sitting: {
  40953. height: math.unit(14.6, "feet"),
  40954. name: "Sitting",
  40955. image: {
  40956. source: "./media/characters/rezukii/sitting.svg",
  40957. extra: 1023/813,
  40958. bottom: 45/1068
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Tiny",
  40965. height: math.unit(2, "feet")
  40966. },
  40967. {
  40968. name: "Smol",
  40969. height: math.unit(4, "feet")
  40970. },
  40971. {
  40972. name: "Normal",
  40973. height: math.unit(8, "feet"),
  40974. default: true
  40975. },
  40976. {
  40977. name: "Big",
  40978. height: math.unit(12, "feet")
  40979. },
  40980. {
  40981. name: "Macro",
  40982. height: math.unit(30, "feet")
  40983. },
  40984. ]
  40985. ))
  40986. characterMakers.push(() => makeCharacter(
  40987. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40988. {
  40989. front: {
  40990. height: math.unit(14, "feet"),
  40991. weight: math.unit(9.5, "tonnes"),
  40992. name: "Front",
  40993. image: {
  40994. source: "./media/characters/dawnheart/front.svg",
  40995. extra: 2792/2675,
  40996. bottom: 64/2856
  40997. }
  40998. },
  40999. },
  41000. [
  41001. {
  41002. name: "Normal",
  41003. height: math.unit(14, "feet"),
  41004. default: true
  41005. },
  41006. ]
  41007. ))
  41008. characterMakers.push(() => makeCharacter(
  41009. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41010. {
  41011. front: {
  41012. height: math.unit(1.7, "m"),
  41013. name: "Front",
  41014. image: {
  41015. source: "./media/characters/gladi/front.svg",
  41016. extra: 1460/1362,
  41017. bottom: 19/1479
  41018. }
  41019. },
  41020. back: {
  41021. height: math.unit(1.7, "m"),
  41022. name: "Back",
  41023. image: {
  41024. source: "./media/characters/gladi/back.svg",
  41025. extra: 1459/1357,
  41026. bottom: 12/1471
  41027. }
  41028. },
  41029. feral: {
  41030. height: math.unit(2.05, "m"),
  41031. name: "Feral",
  41032. image: {
  41033. source: "./media/characters/gladi/feral.svg",
  41034. extra: 821/557,
  41035. bottom: 91/912
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Shortest",
  41042. height: math.unit(70, "cm")
  41043. },
  41044. {
  41045. name: "Normal",
  41046. height: math.unit(1.7, "m")
  41047. },
  41048. {
  41049. name: "Macro",
  41050. height: math.unit(10, "m"),
  41051. default: true
  41052. },
  41053. {
  41054. name: "Tallest",
  41055. height: math.unit(200, "m")
  41056. },
  41057. ]
  41058. ))
  41059. characterMakers.push(() => makeCharacter(
  41060. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41061. {
  41062. front: {
  41063. height: math.unit(5 + 7/12, "feet"),
  41064. weight: math.unit(2, "tons"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/erdno/front.svg",
  41068. extra: 1234/1129,
  41069. bottom: 35/1269
  41070. }
  41071. },
  41072. angled: {
  41073. height: math.unit(5 + 7/12, "feet"),
  41074. weight: math.unit(2, "tons"),
  41075. name: "Angled",
  41076. image: {
  41077. source: "./media/characters/erdno/angled.svg",
  41078. extra: 1185/1139,
  41079. bottom: 36/1221
  41080. }
  41081. },
  41082. side: {
  41083. height: math.unit(5 + 7/12, "feet"),
  41084. weight: math.unit(2, "tons"),
  41085. name: "Side",
  41086. image: {
  41087. source: "./media/characters/erdno/side.svg",
  41088. extra: 1191/1144,
  41089. bottom: 40/1231
  41090. }
  41091. },
  41092. back: {
  41093. height: math.unit(5 + 7/12, "feet"),
  41094. weight: math.unit(2, "tons"),
  41095. name: "Back",
  41096. image: {
  41097. source: "./media/characters/erdno/back.svg",
  41098. extra: 1202/1146,
  41099. bottom: 17/1219
  41100. }
  41101. },
  41102. frontNsfw: {
  41103. height: math.unit(5 + 7/12, "feet"),
  41104. weight: math.unit(2, "tons"),
  41105. name: "Front (NSFW)",
  41106. image: {
  41107. source: "./media/characters/erdno/front-nsfw.svg",
  41108. extra: 1234/1129,
  41109. bottom: 35/1269
  41110. }
  41111. },
  41112. angledNsfw: {
  41113. height: math.unit(5 + 7/12, "feet"),
  41114. weight: math.unit(2, "tons"),
  41115. name: "Angled (NSFW)",
  41116. image: {
  41117. source: "./media/characters/erdno/angled-nsfw.svg",
  41118. extra: 1185/1139,
  41119. bottom: 36/1221
  41120. }
  41121. },
  41122. sideNsfw: {
  41123. height: math.unit(5 + 7/12, "feet"),
  41124. weight: math.unit(2, "tons"),
  41125. name: "Side (NSFW)",
  41126. image: {
  41127. source: "./media/characters/erdno/side-nsfw.svg",
  41128. extra: 1191/1144,
  41129. bottom: 40/1231
  41130. }
  41131. },
  41132. backNsfw: {
  41133. height: math.unit(5 + 7/12, "feet"),
  41134. weight: math.unit(2, "tons"),
  41135. name: "Back (NSFW)",
  41136. image: {
  41137. source: "./media/characters/erdno/back-nsfw.svg",
  41138. extra: 1202/1146,
  41139. bottom: 17/1219
  41140. }
  41141. },
  41142. frontHyper: {
  41143. height: math.unit(5 + 7/12, "feet"),
  41144. weight: math.unit(2, "tons"),
  41145. name: "Front (Hyper)",
  41146. image: {
  41147. source: "./media/characters/erdno/front-hyper.svg",
  41148. extra: 1298/1136,
  41149. bottom: 35/1333
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Normal",
  41156. height: math.unit(5 + 7/12, "feet"),
  41157. default: true
  41158. },
  41159. {
  41160. name: "Big",
  41161. height: math.unit(5.7, "meters")
  41162. },
  41163. {
  41164. name: "Macro",
  41165. height: math.unit(5.7, "kilometers")
  41166. },
  41167. {
  41168. name: "Megamacro",
  41169. height: math.unit(5.7, "earths")
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(5 + 10/12, "feet"),
  41178. weight: math.unit(150, "lb"),
  41179. name: "Front",
  41180. image: {
  41181. source: "./media/characters/jamie/front.svg",
  41182. extra: 1908/1768,
  41183. bottom: 19/1927
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Minimum",
  41190. height: math.unit(2, "cm")
  41191. },
  41192. {
  41193. name: "Micro",
  41194. height: math.unit(3, "inches")
  41195. },
  41196. {
  41197. name: "Normal",
  41198. height: math.unit(5 + 10/12, "feet"),
  41199. default: true
  41200. },
  41201. {
  41202. name: "Macro",
  41203. height: math.unit(150, "feet")
  41204. },
  41205. {
  41206. name: "Megamacro",
  41207. height: math.unit(10000, "m")
  41208. },
  41209. ]
  41210. ))
  41211. characterMakers.push(() => makeCharacter(
  41212. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41213. {
  41214. front: {
  41215. height: math.unit(2, "meters"),
  41216. weight: math.unit(100, "kg"),
  41217. name: "Front",
  41218. image: {
  41219. source: "./media/characters/shiron/front.svg",
  41220. extra: 2103/1985,
  41221. bottom: 98/2201
  41222. }
  41223. },
  41224. back: {
  41225. height: math.unit(2, "meters"),
  41226. weight: math.unit(100, "kg"),
  41227. name: "Back",
  41228. image: {
  41229. source: "./media/characters/shiron/back.svg",
  41230. extra: 2110/2015,
  41231. bottom: 89/2199
  41232. }
  41233. },
  41234. hand: {
  41235. height: math.unit(0.96, "feet"),
  41236. name: "Hand",
  41237. image: {
  41238. source: "./media/characters/shiron/hand.svg"
  41239. }
  41240. },
  41241. foot: {
  41242. height: math.unit(1.464, "feet"),
  41243. name: "Foot",
  41244. image: {
  41245. source: "./media/characters/shiron/foot.svg"
  41246. }
  41247. },
  41248. },
  41249. [
  41250. {
  41251. name: "Normal",
  41252. height: math.unit(2, "meters")
  41253. },
  41254. {
  41255. name: "Macro",
  41256. height: math.unit(500, "meters"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Megamacro",
  41261. height: math.unit(20, "km")
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41267. {
  41268. front: {
  41269. height: math.unit(6, "feet"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/sam/front.svg",
  41273. extra: 849/826,
  41274. bottom: 19/868
  41275. }
  41276. },
  41277. },
  41278. [
  41279. {
  41280. name: "Normal",
  41281. height: math.unit(6, "feet"),
  41282. default: true
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41288. {
  41289. front: {
  41290. height: math.unit(8 + 4/12, "feet"),
  41291. weight: math.unit(122, "kg"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/namori-kurogawa/front.svg",
  41295. extra: 1894/1576,
  41296. bottom: 34/1928
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Normal",
  41303. height: math.unit(8 + 4/12, "feet"),
  41304. default: true
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(9, "feet"),
  41313. weight: math.unit(621, "lb"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/unmru/front.svg",
  41317. extra: 1853/1747,
  41318. bottom: 73/1926
  41319. }
  41320. },
  41321. side: {
  41322. height: math.unit(9, "feet"),
  41323. weight: math.unit(621, "lb"),
  41324. name: "Side",
  41325. image: {
  41326. source: "./media/characters/unmru/side.svg",
  41327. extra: 1781/1671,
  41328. bottom: 127/1908
  41329. }
  41330. },
  41331. back: {
  41332. height: math.unit(9, "feet"),
  41333. weight: math.unit(621, "lb"),
  41334. name: "Back",
  41335. image: {
  41336. source: "./media/characters/unmru/back.svg",
  41337. extra: 1894/1765,
  41338. bottom: 75/1969
  41339. }
  41340. },
  41341. dick: {
  41342. height: math.unit(3, "feet"),
  41343. weight: math.unit(35, "lb"),
  41344. name: "Dick",
  41345. image: {
  41346. source: "./media/characters/unmru/dick.svg"
  41347. }
  41348. },
  41349. },
  41350. [
  41351. {
  41352. name: "Normal",
  41353. height: math.unit(9, "feet")
  41354. },
  41355. {
  41356. name: "Natural",
  41357. height: math.unit(27, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Giant",
  41362. height: math.unit(90, "feet")
  41363. },
  41364. {
  41365. name: "Kaiju",
  41366. height: math.unit(270, "feet")
  41367. },
  41368. {
  41369. name: "Macro",
  41370. height: math.unit(900, "feet")
  41371. },
  41372. {
  41373. name: "Macro+",
  41374. height: math.unit(2700, "feet")
  41375. },
  41376. {
  41377. name: "Megamacro",
  41378. height: math.unit(9000, "feet")
  41379. },
  41380. {
  41381. name: "City-Crushing",
  41382. height: math.unit(27000, "feet")
  41383. },
  41384. {
  41385. name: "Mountain-Mashing",
  41386. height: math.unit(90000, "feet")
  41387. },
  41388. {
  41389. name: "Earth-Eclipsing",
  41390. height: math.unit(2.7e8, "feet")
  41391. },
  41392. {
  41393. name: "Sol-Swallowing",
  41394. height: math.unit(9e10, "feet")
  41395. },
  41396. {
  41397. name: "Majoris-Munching",
  41398. height: math.unit(2.7e13, "feet")
  41399. },
  41400. ]
  41401. ))
  41402. characterMakers.push(() => makeCharacter(
  41403. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41404. {
  41405. front: {
  41406. height: math.unit(1, "inch"),
  41407. name: "Front",
  41408. image: {
  41409. source: "./media/characters/squeaks-mouse/front.svg",
  41410. extra: 352/308,
  41411. bottom: 25/377
  41412. }
  41413. },
  41414. },
  41415. [
  41416. {
  41417. name: "Micro",
  41418. height: math.unit(1, "inch"),
  41419. default: true
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41425. {
  41426. side: {
  41427. height: math.unit(35, "feet"),
  41428. name: "Side",
  41429. image: {
  41430. source: "./media/characters/sayko/side.svg",
  41431. extra: 1697/1021,
  41432. bottom: 82/1779
  41433. }
  41434. },
  41435. head: {
  41436. height: math.unit(16, "feet"),
  41437. name: "Head",
  41438. image: {
  41439. source: "./media/characters/sayko/head.svg"
  41440. }
  41441. },
  41442. forepaw: {
  41443. height: math.unit(7.85, "feet"),
  41444. name: "Forepaw",
  41445. image: {
  41446. source: "./media/characters/sayko/forepaw.svg"
  41447. }
  41448. },
  41449. hindpaw: {
  41450. height: math.unit(8.8, "feet"),
  41451. name: "Hindpaw",
  41452. image: {
  41453. source: "./media/characters/sayko/hindpaw.svg"
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(35, "feet"),
  41461. default: true
  41462. },
  41463. {
  41464. name: "Colossus",
  41465. height: math.unit(100, "meters")
  41466. },
  41467. {
  41468. name: "\"Small\" Deity",
  41469. height: math.unit(1, "km")
  41470. },
  41471. {
  41472. name: "\"Large\" Deity",
  41473. height: math.unit(15, "km")
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(6, "feet"),
  41482. weight: math.unit(250, "lb"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/mukiro/front.svg",
  41486. extra: 1368/1310,
  41487. bottom: 34/1402
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(6, "feet"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41501. {
  41502. front: {
  41503. height: math.unit(12 + 4/12, "feet"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41507. extra: 1346/1311,
  41508. bottom: 65/1411
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Base",
  41515. height: math.unit(12 + 4/12, "feet"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Macro",
  41520. height: math.unit(150, "feet")
  41521. },
  41522. {
  41523. name: "Mega",
  41524. height: math.unit(2, "miles")
  41525. },
  41526. {
  41527. name: "Demi God",
  41528. height: math.unit(4, "AU")
  41529. },
  41530. {
  41531. name: "God Size",
  41532. height: math.unit(1, "universe")
  41533. },
  41534. ]
  41535. ))
  41536. characterMakers.push(() => makeCharacter(
  41537. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41538. {
  41539. front: {
  41540. height: math.unit(3 + 3/12, "feet"),
  41541. weight: math.unit(88, "lb"),
  41542. name: "Front",
  41543. image: {
  41544. source: "./media/characters/trey/front.svg",
  41545. extra: 1815/1509,
  41546. bottom: 60/1875
  41547. }
  41548. },
  41549. },
  41550. [
  41551. {
  41552. name: "Normal",
  41553. height: math.unit(3 + 3/12, "feet"),
  41554. default: true
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41560. {
  41561. front: {
  41562. height: math.unit(4, "meters"),
  41563. name: "Front",
  41564. image: {
  41565. source: "./media/characters/adelonda/front.svg",
  41566. extra: 1077/982,
  41567. bottom: 39/1116
  41568. }
  41569. },
  41570. back: {
  41571. height: math.unit(4, "meters"),
  41572. name: "Back",
  41573. image: {
  41574. source: "./media/characters/adelonda/back.svg",
  41575. extra: 1105/1003,
  41576. bottom: 25/1130
  41577. }
  41578. },
  41579. feral: {
  41580. height: math.unit(40/1.5, "meters"),
  41581. name: "Feral",
  41582. image: {
  41583. source: "./media/characters/adelonda/feral.svg",
  41584. extra: 597/271,
  41585. bottom: 387/984
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(4, "meters"),
  41593. default: true
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41599. {
  41600. front: {
  41601. height: math.unit(8 + 4/12, "feet"),
  41602. weight: math.unit(670, "lb"),
  41603. name: "Front",
  41604. image: {
  41605. source: "./media/characters/acadiel/front.svg",
  41606. extra: 1901/1595,
  41607. bottom: 142/2043
  41608. }
  41609. },
  41610. },
  41611. [
  41612. {
  41613. name: "Normal",
  41614. height: math.unit(8 + 4/12, "feet"),
  41615. default: true
  41616. },
  41617. {
  41618. name: "Macro",
  41619. height: math.unit(200, "feet")
  41620. },
  41621. ]
  41622. ))
  41623. characterMakers.push(() => makeCharacter(
  41624. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41625. {
  41626. front: {
  41627. height: math.unit(6 + 2/12, "feet"),
  41628. weight: math.unit(185, "lb"),
  41629. name: "Front",
  41630. image: {
  41631. source: "./media/characters/kayne-ein/front.svg",
  41632. extra: 1780/1560,
  41633. bottom: 81/1861
  41634. }
  41635. },
  41636. },
  41637. [
  41638. {
  41639. name: "Normal",
  41640. height: math.unit(6 + 2/12, "feet"),
  41641. default: true
  41642. },
  41643. {
  41644. name: "Transformation Stage",
  41645. height: math.unit(15, "feet")
  41646. },
  41647. {
  41648. name: "Macro",
  41649. height: math.unit(150, "feet")
  41650. },
  41651. {
  41652. name: "Earth's Shadow",
  41653. height: math.unit(6200, "miles")
  41654. },
  41655. {
  41656. name: "Universal Demon",
  41657. height: math.unit(28e9, "parsecs")
  41658. },
  41659. {
  41660. name: "Multiverse God",
  41661. height: math.unit(3, "multiverses")
  41662. },
  41663. ]
  41664. ))
  41665. characterMakers.push(() => makeCharacter(
  41666. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41667. {
  41668. front: {
  41669. height: math.unit(5 + 5/12, "feet"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/fawn/front.svg",
  41673. extra: 1873/1731,
  41674. bottom: 95/1968
  41675. }
  41676. },
  41677. back: {
  41678. height: math.unit(5 + 5/12, "feet"),
  41679. name: "Back",
  41680. image: {
  41681. source: "./media/characters/fawn/back.svg",
  41682. extra: 1813/1700,
  41683. bottom: 14/1827
  41684. }
  41685. },
  41686. hoof: {
  41687. height: math.unit(1.45, "feet"),
  41688. name: "Hoof",
  41689. image: {
  41690. source: "./media/characters/fawn/hoof.svg"
  41691. }
  41692. },
  41693. },
  41694. [
  41695. {
  41696. name: "Normal",
  41697. height: math.unit(5 + 5/12, "feet"),
  41698. default: true
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(2 + 5/12, "feet"),
  41707. name: "Front",
  41708. image: {
  41709. source: "./media/characters/orion/front.svg",
  41710. extra: 1366/1304,
  41711. bottom: 43/1409
  41712. }
  41713. },
  41714. paw: {
  41715. height: math.unit(0.52, "feet"),
  41716. name: "Paw",
  41717. image: {
  41718. source: "./media/characters/orion/paw.svg"
  41719. }
  41720. },
  41721. },
  41722. [
  41723. {
  41724. name: "Normal",
  41725. height: math.unit(2 + 5/12, "feet"),
  41726. default: true
  41727. },
  41728. ]
  41729. ))
  41730. characterMakers.push(() => makeCharacter(
  41731. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41732. {
  41733. front: {
  41734. height: math.unit(5 + 10/12, "feet"),
  41735. name: "Front",
  41736. image: {
  41737. source: "./media/characters/vera/front.svg",
  41738. extra: 1680/1575,
  41739. bottom: 49/1729
  41740. }
  41741. },
  41742. back: {
  41743. height: math.unit(5 + 10/12, "feet"),
  41744. name: "Back",
  41745. image: {
  41746. source: "./media/characters/vera/back.svg",
  41747. extra: 1700/1588,
  41748. bottom: 18/1718
  41749. }
  41750. },
  41751. arcanine: {
  41752. height: math.unit(6 + 8/12, "feet"),
  41753. name: "Arcanine",
  41754. image: {
  41755. source: "./media/characters/vera/arcanine.svg",
  41756. extra: 1590/1511,
  41757. bottom: 71/1661
  41758. }
  41759. },
  41760. maw: {
  41761. height: math.unit(0.82, "feet"),
  41762. name: "Maw",
  41763. image: {
  41764. source: "./media/characters/vera/maw.svg"
  41765. }
  41766. },
  41767. mawArcanine: {
  41768. height: math.unit(0.97, "feet"),
  41769. name: "Maw (Arcanine)",
  41770. image: {
  41771. source: "./media/characters/vera/maw-arcanine.svg"
  41772. }
  41773. },
  41774. paw: {
  41775. height: math.unit(0.75, "feet"),
  41776. name: "Paw",
  41777. image: {
  41778. source: "./media/characters/vera/paw.svg"
  41779. }
  41780. },
  41781. pawprint: {
  41782. height: math.unit(0.52, "feet"),
  41783. name: "Pawprint",
  41784. image: {
  41785. source: "./media/characters/vera/pawprint.svg"
  41786. }
  41787. },
  41788. },
  41789. [
  41790. {
  41791. name: "Normal",
  41792. height: math.unit(5 + 10/12, "feet"),
  41793. default: true
  41794. },
  41795. {
  41796. name: "Macro",
  41797. height: math.unit(75, "feet")
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(4, "feet"),
  41806. weight: math.unit(40, "lb"),
  41807. name: "Front",
  41808. image: {
  41809. source: "./media/characters/orvan-rabbit/front.svg",
  41810. extra: 1896/1642,
  41811. bottom: 29/1925
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Normal",
  41818. height: math.unit(4, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(6, "feet"),
  41828. weight: math.unit(168, "lb"),
  41829. name: "Front",
  41830. image: {
  41831. source: "./media/characters/lisa/front.svg",
  41832. extra: 2065/1867,
  41833. bottom: 46/2111
  41834. }
  41835. },
  41836. back: {
  41837. height: math.unit(6, "feet"),
  41838. weight: math.unit(168, "lb"),
  41839. name: "Back",
  41840. image: {
  41841. source: "./media/characters/lisa/back.svg",
  41842. extra: 1982/1838,
  41843. bottom: 29/2011
  41844. }
  41845. },
  41846. maw: {
  41847. height: math.unit(0.81, "feet"),
  41848. name: "Maw",
  41849. image: {
  41850. source: "./media/characters/lisa/maw.svg"
  41851. }
  41852. },
  41853. paw: {
  41854. height: math.unit(0.9, "feet"),
  41855. name: "Paw",
  41856. image: {
  41857. source: "./media/characters/lisa/paw.svg"
  41858. }
  41859. },
  41860. caribousune: {
  41861. height: math.unit(7 + 2/12, "feet"),
  41862. weight: math.unit(268, "lb"),
  41863. name: "Caribousune",
  41864. image: {
  41865. source: "./media/characters/lisa/caribousune.svg",
  41866. extra: 1843/1633,
  41867. bottom: 29/1872
  41868. }
  41869. },
  41870. frontCaribousune: {
  41871. height: math.unit(7 + 2/12, "feet"),
  41872. weight: math.unit(268, "lb"),
  41873. name: "Front (Caribousune)",
  41874. image: {
  41875. source: "./media/characters/lisa/front-caribousune.svg",
  41876. extra: 1818/1638,
  41877. bottom: 52/1870
  41878. }
  41879. },
  41880. sideCaribousune: {
  41881. height: math.unit(7 + 2/12, "feet"),
  41882. weight: math.unit(268, "lb"),
  41883. name: "Side (Caribousune)",
  41884. image: {
  41885. source: "./media/characters/lisa/side-caribousune.svg",
  41886. extra: 1851/1635,
  41887. bottom: 16/1867
  41888. }
  41889. },
  41890. backCaribousune: {
  41891. height: math.unit(7 + 2/12, "feet"),
  41892. weight: math.unit(268, "lb"),
  41893. name: "Back (Caribousune)",
  41894. image: {
  41895. source: "./media/characters/lisa/back-caribousune.svg",
  41896. extra: 1801/1604,
  41897. bottom: 44/1845
  41898. }
  41899. },
  41900. caribou: {
  41901. height: math.unit(7 + 2/12, "feet"),
  41902. weight: math.unit(268, "lb"),
  41903. name: "Caribou",
  41904. image: {
  41905. source: "./media/characters/lisa/caribou.svg",
  41906. extra: 1843/1633,
  41907. bottom: 29/1872
  41908. }
  41909. },
  41910. frontCaribou: {
  41911. height: math.unit(7 + 2/12, "feet"),
  41912. weight: math.unit(268, "lb"),
  41913. name: "Front (Caribou)",
  41914. image: {
  41915. source: "./media/characters/lisa/front-caribou.svg",
  41916. extra: 1818/1638,
  41917. bottom: 52/1870
  41918. }
  41919. },
  41920. sideCaribou: {
  41921. height: math.unit(7 + 2/12, "feet"),
  41922. weight: math.unit(268, "lb"),
  41923. name: "Side (Caribou)",
  41924. image: {
  41925. source: "./media/characters/lisa/side-caribou.svg",
  41926. extra: 1851/1635,
  41927. bottom: 16/1867
  41928. }
  41929. },
  41930. backCaribou: {
  41931. height: math.unit(7 + 2/12, "feet"),
  41932. weight: math.unit(268, "lb"),
  41933. name: "Back (Caribou)",
  41934. image: {
  41935. source: "./media/characters/lisa/back-caribou.svg",
  41936. extra: 1801/1604,
  41937. bottom: 44/1845
  41938. }
  41939. },
  41940. mawCaribou: {
  41941. height: math.unit(1.45, "feet"),
  41942. name: "Maw (Caribou)",
  41943. image: {
  41944. source: "./media/characters/lisa/maw-caribou.svg"
  41945. }
  41946. },
  41947. mawCaribousune: {
  41948. height: math.unit(1.45, "feet"),
  41949. name: "Maw (Caribousune)",
  41950. image: {
  41951. source: "./media/characters/lisa/maw-caribousune.svg"
  41952. }
  41953. },
  41954. pawCaribousune: {
  41955. height: math.unit(1.61, "feet"),
  41956. name: "Paw (Caribou)",
  41957. image: {
  41958. source: "./media/characters/lisa/paw-caribousune.svg"
  41959. }
  41960. },
  41961. },
  41962. [
  41963. {
  41964. name: "Normal",
  41965. height: math.unit(6, "feet")
  41966. },
  41967. {
  41968. name: "God Size",
  41969. height: math.unit(72, "feet"),
  41970. default: true
  41971. },
  41972. {
  41973. name: "Towering",
  41974. height: math.unit(288, "feet")
  41975. },
  41976. {
  41977. name: "City Size",
  41978. height: math.unit(48384, "feet")
  41979. },
  41980. {
  41981. name: "Continental",
  41982. height: math.unit(4200, "miles")
  41983. },
  41984. {
  41985. name: "Planet Eater",
  41986. height: math.unit(42, "earths")
  41987. },
  41988. {
  41989. name: "Star Swallower",
  41990. height: math.unit(42, "solarradii")
  41991. },
  41992. {
  41993. name: "System Swallower",
  41994. height: math.unit(84000, "AU")
  41995. },
  41996. {
  41997. name: "Galaxy Gobbler",
  41998. height: math.unit(42, "galaxies")
  41999. },
  42000. {
  42001. name: "Universe Devourer",
  42002. height: math.unit(42, "universes")
  42003. },
  42004. {
  42005. name: "Multiverse Muncher",
  42006. height: math.unit(42, "multiverses")
  42007. },
  42008. ]
  42009. ))
  42010. characterMakers.push(() => makeCharacter(
  42011. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42012. {
  42013. front: {
  42014. height: math.unit(36, "feet"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/shadow-rat/front.svg",
  42018. extra: 1845/1758,
  42019. bottom: 83/1928
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Macro",
  42026. height: math.unit(36, "feet"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42033. {
  42034. side: {
  42035. height: math.unit(8, "feet"),
  42036. weight: math.unit(2630, "lb"),
  42037. name: "Side",
  42038. image: {
  42039. source: "./media/characters/torallia/side.svg",
  42040. extra: 2164/2021,
  42041. bottom: 371/2535
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Mortal Interaction",
  42048. height: math.unit(8, "feet")
  42049. },
  42050. {
  42051. name: "Natural",
  42052. height: math.unit(24, "feet"),
  42053. default: true
  42054. },
  42055. {
  42056. name: "Giant",
  42057. height: math.unit(80, "feet")
  42058. },
  42059. {
  42060. name: "Kaiju",
  42061. height: math.unit(240, "feet")
  42062. },
  42063. {
  42064. name: "Macro",
  42065. height: math.unit(800, "feet")
  42066. },
  42067. {
  42068. name: "Macro+",
  42069. height: math.unit(2400, "feet")
  42070. },
  42071. {
  42072. name: "Macro++",
  42073. height: math.unit(8000, "feet")
  42074. },
  42075. {
  42076. name: "City-Crushing",
  42077. height: math.unit(24000, "feet")
  42078. },
  42079. {
  42080. name: "Mountain-Mashing",
  42081. height: math.unit(80000, "feet")
  42082. },
  42083. {
  42084. name: "District Demolisher",
  42085. height: math.unit(240000, "feet")
  42086. },
  42087. {
  42088. name: "Tri-County Terror",
  42089. height: math.unit(800000, "feet")
  42090. },
  42091. {
  42092. name: "State Smasher",
  42093. height: math.unit(2.4e6, "feet")
  42094. },
  42095. {
  42096. name: "Nation Nemesis",
  42097. height: math.unit(8e6, "feet")
  42098. },
  42099. {
  42100. name: "Continent Cracker",
  42101. height: math.unit(2.4e7, "feet")
  42102. },
  42103. {
  42104. name: "Planet-Pillaging",
  42105. height: math.unit(8e7, "feet")
  42106. },
  42107. {
  42108. name: "Earth-Eclipsing",
  42109. height: math.unit(2.4e8, "feet")
  42110. },
  42111. {
  42112. name: "Jovian-Jostling",
  42113. height: math.unit(8e8, "feet")
  42114. },
  42115. {
  42116. name: "Gas Giant Gulper",
  42117. height: math.unit(2.4e9, "feet")
  42118. },
  42119. {
  42120. name: "Astral Annihilator",
  42121. height: math.unit(8e9, "feet")
  42122. },
  42123. {
  42124. name: "Celestial Conqueror",
  42125. height: math.unit(2.4e10, "feet")
  42126. },
  42127. {
  42128. name: "Sol-Swallowing",
  42129. height: math.unit(8e10, "feet")
  42130. },
  42131. {
  42132. name: "Hunter of the Heavens",
  42133. height: math.unit(2.4e13, "feet")
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(10, "feet"),
  42142. weight: math.unit(844, "kilograms"),
  42143. name: "Front",
  42144. image: {
  42145. source: "./media/characters/rebecca-pawlson/front.svg",
  42146. extra: 1196/1099,
  42147. bottom: 81/1277
  42148. },
  42149. extraAttributes: {
  42150. "pawSize": {
  42151. name: "Paw Size",
  42152. power: 2,
  42153. type: "area",
  42154. base: math.unit(0.2 * 0.375, "meters^2")
  42155. },
  42156. "handSize": {
  42157. name: "Hand Size",
  42158. power: 2,
  42159. type: "area",
  42160. base: math.unit(0.2 * 0.35, "meters^2")
  42161. },
  42162. "breastDiameter": {
  42163. name: "Breast Diameter",
  42164. power: 1,
  42165. type: "length",
  42166. base: math.unit(0.5, "meters")
  42167. },
  42168. "breastVolume": {
  42169. name: "Breast Volume",
  42170. power: 3,
  42171. type: "volume",
  42172. base: math.unit(0.065, "m^3")
  42173. },
  42174. "breastMass": {
  42175. name: "Breast Mass",
  42176. power: 3,
  42177. type: "mass",
  42178. base: math.unit(65, "kg")
  42179. },
  42180. "nippleDiameter": {
  42181. name: "Nipple Diameter",
  42182. power: 1,
  42183. type: "length",
  42184. base: math.unit(0.1, "meters")
  42185. },
  42186. }
  42187. },
  42188. back: {
  42189. height: math.unit(10, "feet"),
  42190. weight: math.unit(844, "kilograms"),
  42191. name: "Back",
  42192. image: {
  42193. source: "./media/characters/rebecca-pawlson/back.svg",
  42194. extra: 879/776,
  42195. bottom: 43/922
  42196. },
  42197. extraAttributes: {
  42198. "pawSize": {
  42199. name: "Paw Size",
  42200. power: 2,
  42201. type: "area",
  42202. base: math.unit(0.2 * 0.375, "meters^2")
  42203. },
  42204. "handSize": {
  42205. name: "Hand Size",
  42206. power: 2,
  42207. type: "area",
  42208. base: math.unit(0.2 * 0.35, "meters^2")
  42209. },
  42210. "breastDiameter": {
  42211. name: "Breast Diameter",
  42212. power: 1,
  42213. type: "length",
  42214. base: math.unit(0.5, "meters")
  42215. },
  42216. "breastVolume": {
  42217. name: "Breast Volume",
  42218. power: 3,
  42219. type: "volume",
  42220. base: math.unit(0.065, "m^3")
  42221. },
  42222. "breastMass": {
  42223. name: "Breast Mass",
  42224. power: 3,
  42225. type: "mass",
  42226. base: math.unit(65, "kg")
  42227. },
  42228. "nippleDiameter": {
  42229. name: "Nipple Diameter",
  42230. power: 1,
  42231. type: "length",
  42232. base: math.unit(0.1, "meters")
  42233. },
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Normal",
  42240. height: math.unit(6 + 8/12, "feet")
  42241. },
  42242. {
  42243. name: "Mini Macro",
  42244. height: math.unit(10, "feet"),
  42245. default: true
  42246. },
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(100, "feet")
  42250. },
  42251. {
  42252. name: "Mega Macro",
  42253. height: math.unit(2500, "feet")
  42254. },
  42255. {
  42256. name: "Giga Macro",
  42257. height: math.unit(50, "miles")
  42258. },
  42259. ]
  42260. ))
  42261. characterMakers.push(() => makeCharacter(
  42262. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42263. {
  42264. front: {
  42265. height: math.unit(7 + 6/12, "feet"),
  42266. weight: math.unit(600, "lb"),
  42267. name: "Front",
  42268. image: {
  42269. source: "./media/characters/moxie-nova/front.svg",
  42270. extra: 1734/1652,
  42271. bottom: 41/1775
  42272. }
  42273. },
  42274. },
  42275. [
  42276. {
  42277. name: "Normal",
  42278. height: math.unit(7 + 6/12, "feet"),
  42279. default: true
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42285. {
  42286. goat: {
  42287. height: math.unit(4, "feet"),
  42288. weight: math.unit(180, "lb"),
  42289. name: "Goat",
  42290. image: {
  42291. source: "./media/characters/tiffany/goat.svg",
  42292. extra: 1845/1595,
  42293. bottom: 106/1951
  42294. }
  42295. },
  42296. front: {
  42297. height: math.unit(5, "feet"),
  42298. weight: math.unit(150, "lb"),
  42299. name: "Foxcoon",
  42300. image: {
  42301. source: "./media/characters/tiffany/foxcoon.svg",
  42302. extra: 1941/1845,
  42303. bottom: 58/1999
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Normal",
  42310. height: math.unit(5, "feet"),
  42311. default: true
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42317. {
  42318. front: {
  42319. height: math.unit(8, "feet"),
  42320. weight: math.unit(300, "lb"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/raxinath/front.svg",
  42324. extra: 1407/1309,
  42325. bottom: 39/1446
  42326. }
  42327. },
  42328. back: {
  42329. height: math.unit(8, "feet"),
  42330. weight: math.unit(300, "lb"),
  42331. name: "Back",
  42332. image: {
  42333. source: "./media/characters/raxinath/back.svg",
  42334. extra: 1405/1315,
  42335. bottom: 9/1414
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Speck",
  42342. height: math.unit(0.5, "nm")
  42343. },
  42344. {
  42345. name: "Micro",
  42346. height: math.unit(3, "inches")
  42347. },
  42348. {
  42349. name: "Kobold",
  42350. height: math.unit(3, "feet")
  42351. },
  42352. {
  42353. name: "Normal",
  42354. height: math.unit(8, "feet"),
  42355. default: true
  42356. },
  42357. {
  42358. name: "Giant",
  42359. height: math.unit(50, "feet")
  42360. },
  42361. {
  42362. name: "Macro",
  42363. height: math.unit(1000, "feet")
  42364. },
  42365. {
  42366. name: "Megamacro",
  42367. height: math.unit(1, "mile")
  42368. },
  42369. ]
  42370. ))
  42371. characterMakers.push(() => makeCharacter(
  42372. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42373. {
  42374. front: {
  42375. height: math.unit(10, "feet"),
  42376. weight: math.unit(1442, "lb"),
  42377. name: "Front",
  42378. image: {
  42379. source: "./media/characters/mal-dragon/front.svg",
  42380. extra: 1515/1444,
  42381. bottom: 113/1628
  42382. }
  42383. },
  42384. back: {
  42385. height: math.unit(10, "feet"),
  42386. weight: math.unit(1442, "lb"),
  42387. name: "Back",
  42388. image: {
  42389. source: "./media/characters/mal-dragon/back.svg",
  42390. extra: 1527/1434,
  42391. bottom: 25/1552
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Mortal Interaction",
  42398. height: math.unit(10, "feet"),
  42399. default: true
  42400. },
  42401. {
  42402. name: "Large",
  42403. height: math.unit(30, "feet")
  42404. },
  42405. {
  42406. name: "Kaiju",
  42407. height: math.unit(300, "feet")
  42408. },
  42409. {
  42410. name: "Megamacro",
  42411. height: math.unit(10000, "feet")
  42412. },
  42413. {
  42414. name: "Continent Cracker",
  42415. height: math.unit(30000000, "feet")
  42416. },
  42417. {
  42418. name: "Sol-Swallowing",
  42419. height: math.unit(1e11, "feet")
  42420. },
  42421. {
  42422. name: "Light Universal",
  42423. height: math.unit(5, "universes")
  42424. },
  42425. {
  42426. name: "Universe Atoms",
  42427. height: math.unit(1.829e9, "universes")
  42428. },
  42429. {
  42430. name: "Light Multiversal",
  42431. height: math.unit(5, "multiverses")
  42432. },
  42433. {
  42434. name: "Multiverse Atoms",
  42435. height: math.unit(1.829e9, "multiverses")
  42436. },
  42437. {
  42438. name: "Fabric of Time",
  42439. height: math.unit(1e262, "multiverses")
  42440. },
  42441. ]
  42442. ))
  42443. characterMakers.push(() => makeCharacter(
  42444. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42445. {
  42446. front: {
  42447. height: math.unit(9, "feet"),
  42448. weight: math.unit(1050, "lb"),
  42449. name: "Front",
  42450. image: {
  42451. source: "./media/characters/tabitha/front.svg",
  42452. extra: 2083/1994,
  42453. bottom: 68/2151
  42454. }
  42455. },
  42456. },
  42457. [
  42458. {
  42459. name: "Baseline",
  42460. height: math.unit(9, "feet"),
  42461. default: true
  42462. },
  42463. {
  42464. name: "Giant",
  42465. height: math.unit(90, "feet")
  42466. },
  42467. {
  42468. name: "Macro",
  42469. height: math.unit(900, "feet")
  42470. },
  42471. {
  42472. name: "Megamacro",
  42473. height: math.unit(9000, "feet")
  42474. },
  42475. {
  42476. name: "City-Crushing",
  42477. height: math.unit(27000, "feet")
  42478. },
  42479. {
  42480. name: "Mountain-Mashing",
  42481. height: math.unit(90000, "feet")
  42482. },
  42483. {
  42484. name: "Nation Nemesis",
  42485. height: math.unit(9e6, "feet")
  42486. },
  42487. {
  42488. name: "Continent Cracker",
  42489. height: math.unit(27e6, "feet")
  42490. },
  42491. {
  42492. name: "Earth-Eclipsing",
  42493. height: math.unit(2.7e8, "feet")
  42494. },
  42495. {
  42496. name: "Gas Giant Gulper",
  42497. height: math.unit(2.7e9, "feet")
  42498. },
  42499. {
  42500. name: "Sol-Swallowing",
  42501. height: math.unit(9e10, "feet")
  42502. },
  42503. {
  42504. name: "Galaxy Gulper",
  42505. height: math.unit(9, "galaxies")
  42506. },
  42507. {
  42508. name: "Cosmos Churner",
  42509. height: math.unit(9, "universes")
  42510. },
  42511. ]
  42512. ))
  42513. characterMakers.push(() => makeCharacter(
  42514. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42515. {
  42516. front: {
  42517. height: math.unit(160, "cm"),
  42518. weight: math.unit(55, "kg"),
  42519. name: "Front",
  42520. image: {
  42521. source: "./media/characters/tow/front.svg",
  42522. extra: 1751/1722,
  42523. bottom: 74/1825
  42524. }
  42525. },
  42526. },
  42527. [
  42528. {
  42529. name: "Norm",
  42530. height: math.unit(160, "cm")
  42531. },
  42532. {
  42533. name: "Casual",
  42534. height: math.unit(3200, "m"),
  42535. default: true
  42536. },
  42537. {
  42538. name: "Show-Off",
  42539. height: math.unit(160, "km")
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42545. {
  42546. front: {
  42547. height: math.unit(7 + 11/12, "feet"),
  42548. weight: math.unit(342.8, "lb"),
  42549. name: "Front",
  42550. image: {
  42551. source: "./media/characters/vivian-orca-dragon/front.svg",
  42552. extra: 1890/1865,
  42553. bottom: 28/1918
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Micro",
  42560. height: math.unit(5, "inches")
  42561. },
  42562. {
  42563. name: "Normal",
  42564. height: math.unit(7 + 11/12, "feet"),
  42565. default: true
  42566. },
  42567. {
  42568. name: "Macro",
  42569. height: math.unit(395 + 7/12, "feet")
  42570. },
  42571. ]
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42575. {
  42576. side: {
  42577. height: math.unit(10, "feet"),
  42578. weight: math.unit(1442, "lb"),
  42579. name: "Side",
  42580. image: {
  42581. source: "./media/characters/lotherakon/side.svg",
  42582. extra: 1604/1497,
  42583. bottom: 89/1693
  42584. }
  42585. },
  42586. },
  42587. [
  42588. {
  42589. name: "Mortal Interaction",
  42590. height: math.unit(10, "feet")
  42591. },
  42592. {
  42593. name: "Large",
  42594. height: math.unit(30, "feet"),
  42595. default: true
  42596. },
  42597. {
  42598. name: "Giant",
  42599. height: math.unit(100, "feet")
  42600. },
  42601. {
  42602. name: "Kaiju",
  42603. height: math.unit(300, "feet")
  42604. },
  42605. {
  42606. name: "Macro",
  42607. height: math.unit(1000, "feet")
  42608. },
  42609. {
  42610. name: "Macro+",
  42611. height: math.unit(3000, "feet")
  42612. },
  42613. {
  42614. name: "Megamacro",
  42615. height: math.unit(10000, "feet")
  42616. },
  42617. {
  42618. name: "City-Crushing",
  42619. height: math.unit(30000, "feet")
  42620. },
  42621. {
  42622. name: "Continent Cracker",
  42623. height: math.unit(30e6, "feet")
  42624. },
  42625. {
  42626. name: "Earth Eclipsing",
  42627. height: math.unit(3e8, "feet")
  42628. },
  42629. {
  42630. name: "Gas Giant Gulper",
  42631. height: math.unit(3e9, "feet")
  42632. },
  42633. {
  42634. name: "Sol-Swallowing",
  42635. height: math.unit(1e11, "feet")
  42636. },
  42637. {
  42638. name: "System Swallower",
  42639. height: math.unit(3e14, "feet")
  42640. },
  42641. {
  42642. name: "Galaxy Gulper",
  42643. height: math.unit(10, "galaxies")
  42644. },
  42645. {
  42646. name: "Light Universal",
  42647. height: math.unit(5, "universes")
  42648. },
  42649. {
  42650. name: "Universe Palm",
  42651. height: math.unit(20, "universes")
  42652. },
  42653. {
  42654. name: "Light Multiversal",
  42655. height: math.unit(5, "multiverses")
  42656. },
  42657. {
  42658. name: "Multiverse Palm",
  42659. height: math.unit(20, "multiverses")
  42660. },
  42661. {
  42662. name: "Inferno Incarnate",
  42663. height: math.unit(1e7, "multiverses")
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42669. {
  42670. front: {
  42671. height: math.unit(8, "feet"),
  42672. weight: math.unit(1200, "lb"),
  42673. name: "Front",
  42674. image: {
  42675. source: "./media/characters/malithee/front.svg",
  42676. extra: 1675/1640,
  42677. bottom: 162/1837
  42678. }
  42679. },
  42680. },
  42681. [
  42682. {
  42683. name: "Mortal Interaction",
  42684. height: math.unit(8, "feet"),
  42685. default: true
  42686. },
  42687. {
  42688. name: "Large",
  42689. height: math.unit(24, "feet")
  42690. },
  42691. {
  42692. name: "Kaiju",
  42693. height: math.unit(240, "feet")
  42694. },
  42695. {
  42696. name: "Megamacro",
  42697. height: math.unit(8000, "feet")
  42698. },
  42699. {
  42700. name: "Continent Cracker",
  42701. height: math.unit(24e6, "feet")
  42702. },
  42703. {
  42704. name: "Earth-Eclipsing",
  42705. height: math.unit(2.4e8, "feet")
  42706. },
  42707. {
  42708. name: "Sol-Swallowing",
  42709. height: math.unit(8e10, "feet")
  42710. },
  42711. {
  42712. name: "Galaxy Gulper",
  42713. height: math.unit(8, "galaxies")
  42714. },
  42715. {
  42716. name: "Light Universal",
  42717. height: math.unit(4, "universes")
  42718. },
  42719. {
  42720. name: "Universe Atoms",
  42721. height: math.unit(1.829e9, "universes")
  42722. },
  42723. {
  42724. name: "Light Multiversal",
  42725. height: math.unit(4, "multiverses")
  42726. },
  42727. {
  42728. name: "Multiverse Atoms",
  42729. height: math.unit(1.829e9, "multiverses")
  42730. },
  42731. {
  42732. name: "Nigh-Omnipresence",
  42733. height: math.unit(8e261, "multiverses")
  42734. },
  42735. ]
  42736. ))
  42737. characterMakers.push(() => makeCharacter(
  42738. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42739. {
  42740. front: {
  42741. height: math.unit(10, "feet"),
  42742. weight: math.unit(1500, "lb"),
  42743. name: "Front",
  42744. image: {
  42745. source: "./media/characters/miles-thestia/front.svg",
  42746. extra: 1812/1727,
  42747. bottom: 86/1898
  42748. }
  42749. },
  42750. back: {
  42751. height: math.unit(10, "feet"),
  42752. weight: math.unit(1500, "lb"),
  42753. name: "Back",
  42754. image: {
  42755. source: "./media/characters/miles-thestia/back.svg",
  42756. extra: 1799/1690,
  42757. bottom: 47/1846
  42758. }
  42759. },
  42760. frontNsfw: {
  42761. height: math.unit(10, "feet"),
  42762. weight: math.unit(1500, "lb"),
  42763. name: "Front (NSFW)",
  42764. image: {
  42765. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42766. extra: 1812/1727,
  42767. bottom: 86/1898
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Mini-Macro",
  42774. height: math.unit(10, "feet"),
  42775. default: true
  42776. },
  42777. ]
  42778. ))
  42779. characterMakers.push(() => makeCharacter(
  42780. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42781. {
  42782. front: {
  42783. height: math.unit(25, "feet"),
  42784. name: "Front",
  42785. image: {
  42786. source: "./media/characters/titan-s-wulf/front.svg",
  42787. extra: 1560/1484,
  42788. bottom: 76/1636
  42789. }
  42790. },
  42791. },
  42792. [
  42793. {
  42794. name: "Smallest",
  42795. height: math.unit(25, "feet"),
  42796. default: true
  42797. },
  42798. {
  42799. name: "Normal",
  42800. height: math.unit(200, "feet")
  42801. },
  42802. {
  42803. name: "Macro",
  42804. height: math.unit(200000, "feet")
  42805. },
  42806. {
  42807. name: "Multiversal Original",
  42808. height: math.unit(10000, "multiverses")
  42809. },
  42810. ]
  42811. ))
  42812. characterMakers.push(() => makeCharacter(
  42813. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42814. {
  42815. front: {
  42816. height: math.unit(8, "feet"),
  42817. weight: math.unit(553, "lb"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/tawendeh/front.svg",
  42821. extra: 2365/2268,
  42822. bottom: 83/2448
  42823. }
  42824. },
  42825. frontClothed: {
  42826. height: math.unit(8, "feet"),
  42827. weight: math.unit(553, "lb"),
  42828. name: "Front (Clothed)",
  42829. image: {
  42830. source: "./media/characters/tawendeh/front-clothed.svg",
  42831. extra: 2365/2268,
  42832. bottom: 83/2448
  42833. }
  42834. },
  42835. back: {
  42836. height: math.unit(8, "feet"),
  42837. weight: math.unit(553, "lb"),
  42838. name: "Back",
  42839. image: {
  42840. source: "./media/characters/tawendeh/back.svg",
  42841. extra: 2397/2294,
  42842. bottom: 42/2439
  42843. }
  42844. },
  42845. },
  42846. [
  42847. {
  42848. name: "Mortal Interaction",
  42849. height: math.unit(8, "feet"),
  42850. default: true
  42851. },
  42852. {
  42853. name: "Giant",
  42854. height: math.unit(80, "feet")
  42855. },
  42856. {
  42857. name: "Macro",
  42858. height: math.unit(800, "feet")
  42859. },
  42860. {
  42861. name: "Megamacro",
  42862. height: math.unit(8000, "feet")
  42863. },
  42864. {
  42865. name: "City-Crushing",
  42866. height: math.unit(24000, "feet")
  42867. },
  42868. {
  42869. name: "Mountain-Mashing",
  42870. height: math.unit(80000, "feet")
  42871. },
  42872. {
  42873. name: "Nation Nemesis",
  42874. height: math.unit(8e6, "feet")
  42875. },
  42876. {
  42877. name: "Continent Cracker",
  42878. height: math.unit(24e6, "feet")
  42879. },
  42880. {
  42881. name: "Earth-Eclipsing",
  42882. height: math.unit(2.4e8, "feet")
  42883. },
  42884. {
  42885. name: "Gas Giant Gulper",
  42886. height: math.unit(2.4e9, "feet")
  42887. },
  42888. {
  42889. name: "Sol-Swallowing",
  42890. height: math.unit(8e10, "feet")
  42891. },
  42892. {
  42893. name: "Galaxy Gulper",
  42894. height: math.unit(8, "galaxies")
  42895. },
  42896. {
  42897. name: "Cosmos Churner",
  42898. height: math.unit(8, "universes")
  42899. },
  42900. {
  42901. name: "Omnipotent Otter",
  42902. height: math.unit(80, "universes")
  42903. },
  42904. ]
  42905. ))
  42906. characterMakers.push(() => makeCharacter(
  42907. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42908. {
  42909. front: {
  42910. height: math.unit(2.6, "meters"),
  42911. weight: math.unit(900, "kg"),
  42912. name: "Front",
  42913. image: {
  42914. source: "./media/characters/neesha/front.svg",
  42915. extra: 1803/1653,
  42916. bottom: 128/1931
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(2.6, "meters"),
  42924. default: true
  42925. },
  42926. {
  42927. name: "Macro",
  42928. height: math.unit(50, "meters")
  42929. },
  42930. ]
  42931. ))
  42932. characterMakers.push(() => makeCharacter(
  42933. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42934. {
  42935. front: {
  42936. height: math.unit(5, "feet"),
  42937. weight: math.unit(185, "lb"),
  42938. name: "Front",
  42939. image: {
  42940. source: "./media/characters/kyera/front.svg",
  42941. extra: 1875/1790,
  42942. bottom: 96/1971
  42943. }
  42944. },
  42945. },
  42946. [
  42947. {
  42948. name: "Normal",
  42949. height: math.unit(5, "feet"),
  42950. default: true
  42951. },
  42952. ]
  42953. ))
  42954. characterMakers.push(() => makeCharacter(
  42955. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42956. {
  42957. front: {
  42958. height: math.unit(7 + 6/12, "feet"),
  42959. weight: math.unit(540, "lb"),
  42960. name: "Front",
  42961. image: {
  42962. source: "./media/characters/yuko/front.svg",
  42963. extra: 1282/1222,
  42964. bottom: 101/1383
  42965. }
  42966. },
  42967. frontClothed: {
  42968. height: math.unit(7 + 6/12, "feet"),
  42969. weight: math.unit(540, "lb"),
  42970. name: "Front (Clothed)",
  42971. image: {
  42972. source: "./media/characters/yuko/front-clothed.svg",
  42973. extra: 1282/1222,
  42974. bottom: 101/1383
  42975. }
  42976. },
  42977. },
  42978. [
  42979. {
  42980. name: "Normal",
  42981. height: math.unit(7 + 6/12, "feet"),
  42982. default: true
  42983. },
  42984. {
  42985. name: "Macro",
  42986. height: math.unit(26 + 9/12, "feet")
  42987. },
  42988. {
  42989. name: "Megamacro",
  42990. height: math.unit(300, "feet")
  42991. },
  42992. {
  42993. name: "Gigamacro",
  42994. height: math.unit(5000, "feet")
  42995. },
  42996. {
  42997. name: "Planetary",
  42998. height: math.unit(10000, "miles")
  42999. },
  43000. ]
  43001. ))
  43002. characterMakers.push(() => makeCharacter(
  43003. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43004. {
  43005. front: {
  43006. height: math.unit(8 + 2/12, "feet"),
  43007. weight: math.unit(600, "lb"),
  43008. name: "Front",
  43009. image: {
  43010. source: "./media/characters/deam-nitrel/front.svg",
  43011. extra: 1308/1234,
  43012. bottom: 125/1433
  43013. }
  43014. },
  43015. },
  43016. [
  43017. {
  43018. name: "Normal",
  43019. height: math.unit(8 + 2/12, "feet"),
  43020. default: true
  43021. },
  43022. ]
  43023. ))
  43024. characterMakers.push(() => makeCharacter(
  43025. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43026. {
  43027. front: {
  43028. height: math.unit(6.1, "feet"),
  43029. weight: math.unit(180, "lb"),
  43030. name: "Front",
  43031. image: {
  43032. source: "./media/characters/skyress/front.svg",
  43033. extra: 1045/915,
  43034. bottom: 28/1073
  43035. }
  43036. },
  43037. maw: {
  43038. height: math.unit(1, "feet"),
  43039. name: "Maw",
  43040. image: {
  43041. source: "./media/characters/skyress/maw.svg"
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(6.1, "feet"),
  43049. default: true
  43050. },
  43051. {
  43052. name: "Macro",
  43053. height: math.unit(200, "feet")
  43054. },
  43055. ]
  43056. ))
  43057. characterMakers.push(() => makeCharacter(
  43058. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43059. {
  43060. front: {
  43061. height: math.unit(4 + 2/12, "feet"),
  43062. weight: math.unit(40, "kg"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/amethyst-jones/front.svg",
  43066. extra: 1220/1150,
  43067. bottom: 101/1321
  43068. }
  43069. },
  43070. },
  43071. [
  43072. {
  43073. name: "Normal",
  43074. height: math.unit(4 + 2/12, "feet"),
  43075. default: true
  43076. },
  43077. ]
  43078. ))
  43079. characterMakers.push(() => makeCharacter(
  43080. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43081. {
  43082. front: {
  43083. height: math.unit(1.7, "m"),
  43084. weight: math.unit(135, "lb"),
  43085. name: "Front",
  43086. image: {
  43087. source: "./media/characters/jade/front.svg",
  43088. extra: 1818/1767,
  43089. bottom: 32/1850
  43090. }
  43091. },
  43092. back: {
  43093. height: math.unit(1.7, "m"),
  43094. weight: math.unit(135, "lb"),
  43095. name: "Back",
  43096. image: {
  43097. source: "./media/characters/jade/back.svg",
  43098. extra: 1869/1809,
  43099. bottom: 35/1904
  43100. }
  43101. },
  43102. hand: {
  43103. height: math.unit(0.24, "m"),
  43104. name: "Hand",
  43105. image: {
  43106. source: "./media/characters/jade/hand.svg"
  43107. }
  43108. },
  43109. foot: {
  43110. height: math.unit(0.263, "m"),
  43111. name: "Foot",
  43112. image: {
  43113. source: "./media/characters/jade/foot.svg"
  43114. }
  43115. },
  43116. dick: {
  43117. height: math.unit(0.47, "m"),
  43118. name: "Dick",
  43119. image: {
  43120. source: "./media/characters/jade/dick.svg"
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Micro",
  43127. height: math.unit(22, "cm")
  43128. },
  43129. {
  43130. name: "Normal",
  43131. height: math.unit(1.7, "m"),
  43132. default: true
  43133. },
  43134. {
  43135. name: "Macro",
  43136. height: math.unit(152, "m")
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43142. {
  43143. front: {
  43144. height: math.unit(100, "miles"),
  43145. weight: math.unit(20000, "tons"),
  43146. name: "Front",
  43147. image: {
  43148. source: "./media/characters/cookie/front.svg",
  43149. extra: 1125/1070,
  43150. bottom: 30/1155
  43151. }
  43152. },
  43153. },
  43154. [
  43155. {
  43156. name: "Big",
  43157. height: math.unit(50, "feet")
  43158. },
  43159. {
  43160. name: "Macro",
  43161. height: math.unit(100, "miles"),
  43162. default: true
  43163. },
  43164. {
  43165. name: "Megamacro",
  43166. height: math.unit(90000, "miles")
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43172. {
  43173. front: {
  43174. height: math.unit(6, "feet"),
  43175. weight: math.unit(145, "lb"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/farzian/front.svg",
  43179. extra: 1902/1693,
  43180. bottom: 108/2010
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Macro",
  43187. height: math.unit(500, "feet"),
  43188. default: true
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(3 + 6/12, "feet"),
  43197. weight: math.unit(50, "lb"),
  43198. name: "Front",
  43199. image: {
  43200. source: "./media/characters/kimberly-tilson/front.svg",
  43201. extra: 1400/1322,
  43202. bottom: 36/1436
  43203. }
  43204. },
  43205. back: {
  43206. height: math.unit(3 + 6/12, "feet"),
  43207. weight: math.unit(50, "lb"),
  43208. name: "Back",
  43209. image: {
  43210. source: "./media/characters/kimberly-tilson/back.svg",
  43211. extra: 1370/1307,
  43212. bottom: 20/1390
  43213. }
  43214. },
  43215. },
  43216. [
  43217. {
  43218. name: "Normal",
  43219. height: math.unit(3 + 6/12, "feet"),
  43220. default: true
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43226. {
  43227. front: {
  43228. height: math.unit(350, "meters"),
  43229. weight: math.unit(7.57059e+8, "lb"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/harthos/front.svg",
  43233. extra: 455/446,
  43234. bottom: 15/470
  43235. },
  43236. form: "peacekeeper",
  43237. default: true
  43238. },
  43239. allusus_front: {
  43240. height: math.unit(270, "meters"),
  43241. weight: math.unit(3.47550e+8, "lb"),
  43242. name: "Front",
  43243. image: {
  43244. source: "./media/characters/harthos/allusus-front.svg",
  43245. extra: 455/446,
  43246. bottom: 15/470
  43247. },
  43248. form: "allusus",
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Macro",
  43254. height: math.unit(350, "meters"),
  43255. default: true,
  43256. form: "peacekeeper"
  43257. },
  43258. {
  43259. name: "Macro",
  43260. height: math.unit(270, "meters"),
  43261. default: true,
  43262. form: "allusus"
  43263. },
  43264. ],
  43265. {
  43266. "peacekeeper": {
  43267. name: "Peacekeeper",
  43268. default: true
  43269. },
  43270. "allusus": {
  43271. name: "Allusus",
  43272. },
  43273. }
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(15, "feet"),
  43280. name: "Front",
  43281. image: {
  43282. source: "./media/characters/hypatia/front.svg",
  43283. extra: 1653/1591,
  43284. bottom: 79/1732
  43285. }
  43286. },
  43287. },
  43288. [
  43289. {
  43290. name: "Normal",
  43291. height: math.unit(15, "feet")
  43292. },
  43293. {
  43294. name: "Small",
  43295. height: math.unit(300, "feet")
  43296. },
  43297. {
  43298. name: "Macro",
  43299. height: math.unit(2500, "feet"),
  43300. default: true
  43301. },
  43302. {
  43303. name: "Mega Macro",
  43304. height: math.unit(1500, "miles")
  43305. },
  43306. {
  43307. name: "Giga Macro",
  43308. height: math.unit(1.5e6, "miles")
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43314. {
  43315. front: {
  43316. height: math.unit(6, "feet"),
  43317. weight: math.unit(200, "lb"),
  43318. name: "Front",
  43319. image: {
  43320. source: "./media/characters/wulver/front.svg",
  43321. extra: 1724/1632,
  43322. bottom: 130/1854
  43323. }
  43324. },
  43325. frontNsfw: {
  43326. height: math.unit(6, "feet"),
  43327. weight: math.unit(200, "lb"),
  43328. name: "Front (NSFW)",
  43329. image: {
  43330. source: "./media/characters/wulver/front-nsfw.svg",
  43331. extra: 1724/1632,
  43332. bottom: 130/1854
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Human-Sized",
  43339. height: math.unit(6, "feet")
  43340. },
  43341. {
  43342. name: "Normal",
  43343. height: math.unit(4, "meters"),
  43344. default: true
  43345. },
  43346. {
  43347. name: "Large",
  43348. height: math.unit(6, "m")
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43354. {
  43355. front: {
  43356. height: math.unit(7, "feet"),
  43357. name: "Front",
  43358. image: {
  43359. source: "./media/characters/maru/front.svg",
  43360. extra: 1595/1570,
  43361. bottom: 0/1595
  43362. }
  43363. },
  43364. },
  43365. [
  43366. {
  43367. name: "Normal",
  43368. height: math.unit(7, "feet"),
  43369. default: true
  43370. },
  43371. {
  43372. name: "Macro",
  43373. height: math.unit(700, "feet")
  43374. },
  43375. {
  43376. name: "Mega Macro",
  43377. height: math.unit(25, "miles")
  43378. },
  43379. ]
  43380. ))
  43381. characterMakers.push(() => makeCharacter(
  43382. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43383. {
  43384. front: {
  43385. height: math.unit(6, "feet"),
  43386. weight: math.unit(170, "lb"),
  43387. name: "Front",
  43388. image: {
  43389. source: "./media/characters/xenon/front.svg",
  43390. extra: 1376/1305,
  43391. bottom: 56/1432
  43392. }
  43393. },
  43394. back: {
  43395. height: math.unit(6, "feet"),
  43396. weight: math.unit(170, "lb"),
  43397. name: "Back",
  43398. image: {
  43399. source: "./media/characters/xenon/back.svg",
  43400. extra: 1328/1259,
  43401. bottom: 95/1423
  43402. }
  43403. },
  43404. maw: {
  43405. height: math.unit(0.52, "feet"),
  43406. name: "Maw",
  43407. image: {
  43408. source: "./media/characters/xenon/maw.svg"
  43409. }
  43410. },
  43411. handLeft: {
  43412. height: math.unit(0.82 * 169 / 153, "feet"),
  43413. name: "Hand (Left)",
  43414. image: {
  43415. source: "./media/characters/xenon/hand-left.svg"
  43416. }
  43417. },
  43418. handRight: {
  43419. height: math.unit(0.82, "feet"),
  43420. name: "Hand (Right)",
  43421. image: {
  43422. source: "./media/characters/xenon/hand-right.svg"
  43423. }
  43424. },
  43425. footLeft: {
  43426. height: math.unit(1.13, "feet"),
  43427. name: "Foot (Left)",
  43428. image: {
  43429. source: "./media/characters/xenon/foot-left.svg"
  43430. }
  43431. },
  43432. footRight: {
  43433. height: math.unit(1.13 * 194 / 196, "feet"),
  43434. name: "Foot (Right)",
  43435. image: {
  43436. source: "./media/characters/xenon/foot-right.svg"
  43437. }
  43438. },
  43439. },
  43440. [
  43441. {
  43442. name: "Micro",
  43443. height: math.unit(0.8, "inches")
  43444. },
  43445. {
  43446. name: "Normal",
  43447. height: math.unit(6, "feet")
  43448. },
  43449. {
  43450. name: "Macro",
  43451. height: math.unit(50, "feet"),
  43452. default: true
  43453. },
  43454. {
  43455. name: "Macro+",
  43456. height: math.unit(250, "feet")
  43457. },
  43458. {
  43459. name: "Megamacro",
  43460. height: math.unit(1500, "feet")
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(7 + 5/12, "feet"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/zane/front.svg",
  43472. extra: 1260/1203,
  43473. bottom: 94/1354
  43474. }
  43475. },
  43476. back: {
  43477. height: math.unit(5.05, "feet"),
  43478. name: "Back",
  43479. image: {
  43480. source: "./media/characters/zane/back.svg",
  43481. extra: 893/829,
  43482. bottom: 30/923
  43483. }
  43484. },
  43485. werewolf: {
  43486. height: math.unit(11, "feet"),
  43487. name: "Werewolf",
  43488. image: {
  43489. source: "./media/characters/zane/werewolf.svg",
  43490. extra: 1383/1323,
  43491. bottom: 89/1472
  43492. }
  43493. },
  43494. foot: {
  43495. height: math.unit(1.46, "feet"),
  43496. name: "Foot",
  43497. image: {
  43498. source: "./media/characters/zane/foot.svg"
  43499. }
  43500. },
  43501. footFront: {
  43502. height: math.unit(0.784, "feet"),
  43503. name: "Foot (Front)",
  43504. image: {
  43505. source: "./media/characters/zane/foot-front.svg"
  43506. }
  43507. },
  43508. dick: {
  43509. height: math.unit(1.95, "feet"),
  43510. name: "Dick",
  43511. image: {
  43512. source: "./media/characters/zane/dick.svg"
  43513. }
  43514. },
  43515. dickWerewolf: {
  43516. height: math.unit(3.77, "feet"),
  43517. name: "Dick (Werewolf)",
  43518. image: {
  43519. source: "./media/characters/zane/dick.svg"
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(7 + 5/12, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(6 + 2/12, "feet"),
  43536. weight: math.unit(284, "lb"),
  43537. name: "Front",
  43538. image: {
  43539. source: "./media/characters/benni-desparque/front.svg",
  43540. extra: 878/729,
  43541. bottom: 58/936
  43542. }
  43543. },
  43544. back: {
  43545. height: math.unit(6 + 2/12, "feet"),
  43546. weight: math.unit(284, "lb"),
  43547. name: "Back",
  43548. image: {
  43549. source: "./media/characters/benni-desparque/back.svg",
  43550. extra: 901/756,
  43551. bottom: 51/952
  43552. }
  43553. },
  43554. dressed: {
  43555. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43556. weight: math.unit(284, "lb"),
  43557. name: "Dressed",
  43558. image: {
  43559. source: "./media/characters/benni-desparque/dressed.svg",
  43560. extra: 1514/1276,
  43561. bottom: 65/1579
  43562. }
  43563. },
  43564. hand: {
  43565. height: math.unit(1.28, "feet"),
  43566. name: "Hand",
  43567. image: {
  43568. source: "./media/characters/benni-desparque/hand.svg"
  43569. }
  43570. },
  43571. foot: {
  43572. height: math.unit(1.53, "feet"),
  43573. name: "Foot",
  43574. image: {
  43575. source: "./media/characters/benni-desparque/foot.svg"
  43576. }
  43577. },
  43578. aiControlUnit: {
  43579. height: math.unit(0.175, "feet"),
  43580. name: "AI Control Unit",
  43581. image: {
  43582. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43583. }
  43584. },
  43585. },
  43586. [
  43587. {
  43588. name: "Civilian",
  43589. height: math.unit(6 + 2/12, "feet")
  43590. },
  43591. {
  43592. name: "Normal",
  43593. height: math.unit(98, "feet"),
  43594. default: true
  43595. },
  43596. {
  43597. name: "Kaiju Fighter",
  43598. height: math.unit(268, "feet")
  43599. },
  43600. ]
  43601. ))
  43602. characterMakers.push(() => makeCharacter(
  43603. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43604. {
  43605. front: {
  43606. height: math.unit(5, "feet"),
  43607. weight: math.unit(105, "lb"),
  43608. name: "Front",
  43609. image: {
  43610. source: "./media/characters/maxine/front.svg",
  43611. extra: 1386/1250,
  43612. bottom: 71/1457
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Normal",
  43619. height: math.unit(5, "feet"),
  43620. default: true
  43621. },
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43626. {
  43627. front: {
  43628. height: math.unit(11 + 7/12, "feet"),
  43629. weight: math.unit(9576, "lb"),
  43630. name: "Front",
  43631. image: {
  43632. source: "./media/characters/scaly/front.svg",
  43633. extra: 888/867,
  43634. bottom: 36/924
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Normal",
  43641. height: math.unit(11 + 7/12, "feet"),
  43642. default: true
  43643. },
  43644. ]
  43645. ))
  43646. characterMakers.push(() => makeCharacter(
  43647. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43648. {
  43649. front: {
  43650. height: math.unit(6 + 3/12, "feet"),
  43651. name: "Front",
  43652. image: {
  43653. source: "./media/characters/saelria/front.svg",
  43654. extra: 1243/1138,
  43655. bottom: 46/1289
  43656. }
  43657. },
  43658. },
  43659. [
  43660. {
  43661. name: "Micro",
  43662. height: math.unit(6, "inches"),
  43663. },
  43664. {
  43665. name: "Normal",
  43666. height: math.unit(6 + 3/12, "feet"),
  43667. default: true
  43668. },
  43669. {
  43670. name: "Macro",
  43671. height: math.unit(25, "feet")
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43677. {
  43678. front: {
  43679. height: math.unit(80, "meters"),
  43680. weight: math.unit(7000, "tonnes"),
  43681. name: "Front",
  43682. image: {
  43683. source: "./media/characters/tef/front.svg",
  43684. extra: 2036/1991,
  43685. bottom: 54/2090
  43686. }
  43687. },
  43688. back: {
  43689. height: math.unit(80, "meters"),
  43690. weight: math.unit(7000, "tonnes"),
  43691. name: "Back",
  43692. image: {
  43693. source: "./media/characters/tef/back.svg",
  43694. extra: 2036/1991,
  43695. bottom: 54/2090
  43696. }
  43697. },
  43698. },
  43699. [
  43700. {
  43701. name: "Macro",
  43702. height: math.unit(80, "meters"),
  43703. default: true
  43704. },
  43705. ]
  43706. ))
  43707. characterMakers.push(() => makeCharacter(
  43708. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43709. {
  43710. front: {
  43711. height: math.unit(13, "feet"),
  43712. weight: math.unit(6, "tons"),
  43713. name: "Front",
  43714. image: {
  43715. source: "./media/characters/rover/front.svg",
  43716. extra: 1233/1156,
  43717. bottom: 50/1283
  43718. }
  43719. },
  43720. back: {
  43721. height: math.unit(13, "feet"),
  43722. weight: math.unit(6, "tons"),
  43723. name: "Back",
  43724. image: {
  43725. source: "./media/characters/rover/back.svg",
  43726. extra: 1327/1258,
  43727. bottom: 39/1366
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Normal",
  43734. height: math.unit(13, "feet"),
  43735. default: true
  43736. },
  43737. {
  43738. name: "Macro",
  43739. height: math.unit(1300, "feet")
  43740. },
  43741. {
  43742. name: "Megamacro",
  43743. height: math.unit(1300, "miles")
  43744. },
  43745. {
  43746. name: "Gigamacro",
  43747. height: math.unit(1300000, "miles")
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43753. {
  43754. front: {
  43755. height: math.unit(10, "feet"),
  43756. weight: math.unit(500, "lb"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/ariz/front.svg",
  43760. extra: 461/450,
  43761. bottom: 16/477
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "MiniMacro",
  43768. height: math.unit(10, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43775. {
  43776. front: {
  43777. height: math.unit(6, "feet"),
  43778. weight: math.unit(140, "lb"),
  43779. name: "Front",
  43780. image: {
  43781. source: "./media/characters/sigrun/front.svg",
  43782. extra: 1418/1359,
  43783. bottom: 27/1445
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Macro",
  43790. height: math.unit(35, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(6, "feet"),
  43800. weight: math.unit(150, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/numin/front.svg",
  43804. extra: 1433/1388,
  43805. bottom: 12/1445
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Macro",
  43812. height: math.unit(21.5, "km"),
  43813. default: true
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43819. {
  43820. front: {
  43821. height: math.unit(6, "feet"),
  43822. weight: math.unit(463, "lb"),
  43823. name: "Front",
  43824. image: {
  43825. source: "./media/characters/melwa/front.svg",
  43826. extra: 1307/1248,
  43827. bottom: 93/1400
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Macro",
  43834. height: math.unit(50, "meters"),
  43835. default: true
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43841. {
  43842. front: {
  43843. height: math.unit(325, "feet"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/zorkaiju/front.svg",
  43847. extra: 1955/1814,
  43848. bottom: 40/1995
  43849. }
  43850. },
  43851. frontExtended: {
  43852. height: math.unit(325, "feet"),
  43853. name: "Front (Extended)",
  43854. image: {
  43855. source: "./media/characters/zorkaiju/front-extended.svg",
  43856. extra: 1955/1814,
  43857. bottom: 40/1995
  43858. }
  43859. },
  43860. side: {
  43861. height: math.unit(325, "feet"),
  43862. name: "Side",
  43863. image: {
  43864. source: "./media/characters/zorkaiju/side.svg",
  43865. extra: 1495/1396,
  43866. bottom: 17/1512
  43867. }
  43868. },
  43869. sideExtended: {
  43870. height: math.unit(325, "feet"),
  43871. name: "Side (Extended)",
  43872. image: {
  43873. source: "./media/characters/zorkaiju/side-extended.svg",
  43874. extra: 1495/1396,
  43875. bottom: 17/1512
  43876. }
  43877. },
  43878. back: {
  43879. height: math.unit(325, "feet"),
  43880. name: "Back",
  43881. image: {
  43882. source: "./media/characters/zorkaiju/back.svg",
  43883. extra: 1959/1821,
  43884. bottom: 31/1990
  43885. }
  43886. },
  43887. backExtended: {
  43888. height: math.unit(325, "feet"),
  43889. name: "Back (Extended)",
  43890. image: {
  43891. source: "./media/characters/zorkaiju/back-extended.svg",
  43892. extra: 1959/1821,
  43893. bottom: 31/1990
  43894. }
  43895. },
  43896. hand: {
  43897. height: math.unit(58.4, "feet"),
  43898. name: "Hand",
  43899. image: {
  43900. source: "./media/characters/zorkaiju/hand.svg"
  43901. }
  43902. },
  43903. handExtended: {
  43904. height: math.unit(61.4, "feet"),
  43905. name: "Hand (Extended)",
  43906. image: {
  43907. source: "./media/characters/zorkaiju/hand-extended.svg"
  43908. }
  43909. },
  43910. foot: {
  43911. height: math.unit(95, "feet"),
  43912. name: "Foot",
  43913. image: {
  43914. source: "./media/characters/zorkaiju/foot.svg"
  43915. }
  43916. },
  43917. leftArm: {
  43918. height: math.unit(59, "feet"),
  43919. name: "Left Arm",
  43920. image: {
  43921. source: "./media/characters/zorkaiju/left-arm.svg"
  43922. }
  43923. },
  43924. rightArm: {
  43925. height: math.unit(59, "feet"),
  43926. name: "Right Arm",
  43927. image: {
  43928. source: "./media/characters/zorkaiju/right-arm.svg"
  43929. }
  43930. },
  43931. leftArmExtended: {
  43932. height: math.unit(59 * 1.033546, "feet"),
  43933. name: "Left Arm (Extended)",
  43934. image: {
  43935. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43936. }
  43937. },
  43938. rightArmExtended: {
  43939. height: math.unit(59 * 1.0496, "feet"),
  43940. name: "Right Arm (Extended)",
  43941. image: {
  43942. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43943. }
  43944. },
  43945. tail: {
  43946. height: math.unit(104, "feet"),
  43947. name: "Tail",
  43948. image: {
  43949. source: "./media/characters/zorkaiju/tail.svg"
  43950. }
  43951. },
  43952. tailExtended: {
  43953. height: math.unit(104, "feet"),
  43954. name: "Tail (Extended)",
  43955. image: {
  43956. source: "./media/characters/zorkaiju/tail-extended.svg"
  43957. }
  43958. },
  43959. tailBottom: {
  43960. height: math.unit(104, "feet"),
  43961. name: "Tail Bottom",
  43962. image: {
  43963. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43964. }
  43965. },
  43966. crystal: {
  43967. height: math.unit(27.54, "feet"),
  43968. name: "Crystal",
  43969. image: {
  43970. source: "./media/characters/zorkaiju/crystal.svg"
  43971. }
  43972. },
  43973. },
  43974. [
  43975. {
  43976. name: "Kaiju",
  43977. height: math.unit(325, "feet"),
  43978. default: true
  43979. },
  43980. ]
  43981. ))
  43982. characterMakers.push(() => makeCharacter(
  43983. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43984. {
  43985. front: {
  43986. height: math.unit(6 + 1/12, "feet"),
  43987. weight: math.unit(115, "lb"),
  43988. name: "Front",
  43989. image: {
  43990. source: "./media/characters/bailey-belfry/front.svg",
  43991. extra: 1240/1121,
  43992. bottom: 101/1341
  43993. }
  43994. },
  43995. },
  43996. [
  43997. {
  43998. name: "Normal",
  43999. height: math.unit(6 + 1/12, "feet"),
  44000. default: true
  44001. },
  44002. ]
  44003. ))
  44004. characterMakers.push(() => makeCharacter(
  44005. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44006. {
  44007. side: {
  44008. height: math.unit(4, "meters"),
  44009. weight: math.unit(250, "kg"),
  44010. name: "Side",
  44011. image: {
  44012. source: "./media/characters/blacky/side.svg",
  44013. extra: 1027/919,
  44014. bottom: 43/1070
  44015. }
  44016. },
  44017. maw: {
  44018. height: math.unit(1, "meters"),
  44019. name: "Maw",
  44020. image: {
  44021. source: "./media/characters/blacky/maw.svg"
  44022. }
  44023. },
  44024. paw: {
  44025. height: math.unit(1, "meters"),
  44026. name: "Paw",
  44027. image: {
  44028. source: "./media/characters/blacky/paw.svg"
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Normal",
  44035. height: math.unit(4, "meters"),
  44036. default: true
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44042. {
  44043. front: {
  44044. height: math.unit(170, "cm"),
  44045. weight: math.unit(66, "kg"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/thux-ei/front.svg",
  44049. extra: 1109/1011,
  44050. bottom: 8/1117
  44051. }
  44052. },
  44053. },
  44054. [
  44055. {
  44056. name: "Normal",
  44057. height: math.unit(170, "cm"),
  44058. default: true
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(5, "feet"),
  44067. weight: math.unit(120, "lb"),
  44068. name: "Front",
  44069. image: {
  44070. source: "./media/characters/roxanne-voltaire/front.svg",
  44071. extra: 1901/1779,
  44072. bottom: 53/1954
  44073. }
  44074. },
  44075. },
  44076. [
  44077. {
  44078. name: "Normal",
  44079. height: math.unit(5, "feet"),
  44080. default: true
  44081. },
  44082. {
  44083. name: "Giant",
  44084. height: math.unit(50, "feet")
  44085. },
  44086. {
  44087. name: "Titan",
  44088. height: math.unit(500, "feet")
  44089. },
  44090. {
  44091. name: "Macro",
  44092. height: math.unit(5000, "feet")
  44093. },
  44094. {
  44095. name: "Megamacro",
  44096. height: math.unit(50000, "feet")
  44097. },
  44098. {
  44099. name: "Gigamacro",
  44100. height: math.unit(500000, "feet")
  44101. },
  44102. {
  44103. name: "Teramacro",
  44104. height: math.unit(5e6, "feet")
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(6 + 2/12, "feet"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/squeaks/front.svg",
  44116. extra: 1823/1768,
  44117. bottom: 138/1961
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Micro",
  44124. height: math.unit(0.5, "inches")
  44125. },
  44126. {
  44127. name: "Normal",
  44128. height: math.unit(6 + 2/12, "feet"),
  44129. default: true
  44130. },
  44131. {
  44132. name: "Macro",
  44133. height: math.unit(600, "feet")
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44139. {
  44140. front: {
  44141. height: math.unit(1.72, "meters"),
  44142. name: "Front",
  44143. image: {
  44144. source: "./media/characters/archinger/front.svg",
  44145. extra: 1861/1675,
  44146. bottom: 125/1986
  44147. }
  44148. },
  44149. back: {
  44150. height: math.unit(1.72, "meters"),
  44151. name: "Back",
  44152. image: {
  44153. source: "./media/characters/archinger/back.svg",
  44154. extra: 1844/1701,
  44155. bottom: 104/1948
  44156. }
  44157. },
  44158. cock: {
  44159. height: math.unit(0.59, "feet"),
  44160. name: "Cock",
  44161. image: {
  44162. source: "./media/characters/archinger/cock.svg"
  44163. }
  44164. },
  44165. },
  44166. [
  44167. {
  44168. name: "Normal",
  44169. height: math.unit(1.72, "meters"),
  44170. default: true
  44171. },
  44172. {
  44173. name: "Macro",
  44174. height: math.unit(84, "meters")
  44175. },
  44176. {
  44177. name: "Macro+",
  44178. height: math.unit(112, "meters")
  44179. },
  44180. {
  44181. name: "Macro++",
  44182. height: math.unit(960, "meters")
  44183. },
  44184. {
  44185. name: "Macro+++",
  44186. height: math.unit(4, "km")
  44187. },
  44188. {
  44189. name: "Macro++++",
  44190. height: math.unit(48, "km")
  44191. },
  44192. {
  44193. name: "Macro+++++",
  44194. height: math.unit(4500, "km")
  44195. },
  44196. ]
  44197. ))
  44198. characterMakers.push(() => makeCharacter(
  44199. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44200. {
  44201. front: {
  44202. height: math.unit(5 + 5/12, "feet"),
  44203. name: "Front",
  44204. image: {
  44205. source: "./media/characters/alsnapz/front.svg",
  44206. extra: 1157/1065,
  44207. bottom: 42/1199
  44208. }
  44209. },
  44210. },
  44211. [
  44212. {
  44213. name: "Normal",
  44214. height: math.unit(5 + 5/12, "feet"),
  44215. default: true
  44216. },
  44217. ]
  44218. ))
  44219. characterMakers.push(() => makeCharacter(
  44220. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44221. {
  44222. side: {
  44223. height: math.unit(3.2, "earths"),
  44224. name: "Side",
  44225. image: {
  44226. source: "./media/characters/mag/side.svg",
  44227. extra: 1331/1008,
  44228. bottom: 52/1383
  44229. }
  44230. },
  44231. wing: {
  44232. height: math.unit(1.94, "earths"),
  44233. name: "Wing",
  44234. image: {
  44235. source: "./media/characters/mag/wing.svg"
  44236. }
  44237. },
  44238. dick: {
  44239. height: math.unit(1.8, "earths"),
  44240. name: "Dick",
  44241. image: {
  44242. source: "./media/characters/mag/dick.svg"
  44243. }
  44244. },
  44245. ass: {
  44246. height: math.unit(1.33, "earths"),
  44247. name: "Ass",
  44248. image: {
  44249. source: "./media/characters/mag/ass.svg"
  44250. }
  44251. },
  44252. head: {
  44253. height: math.unit(1.1, "earths"),
  44254. name: "Head",
  44255. image: {
  44256. source: "./media/characters/mag/head.svg"
  44257. }
  44258. },
  44259. maw: {
  44260. height: math.unit(1.62, "earths"),
  44261. name: "Maw",
  44262. image: {
  44263. source: "./media/characters/mag/maw.svg"
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Small",
  44270. height: math.unit(162, "feet")
  44271. },
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(3.2, "earths"),
  44275. default: true
  44276. },
  44277. ]
  44278. ))
  44279. characterMakers.push(() => makeCharacter(
  44280. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44281. {
  44282. front: {
  44283. height: math.unit(512, "feet"),
  44284. weight: math.unit(63509, "tonnes"),
  44285. name: "Front",
  44286. image: {
  44287. source: "./media/characters/vorrel-harroc/front.svg",
  44288. extra: 1075/1063,
  44289. bottom: 62/1137
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(10, "feet")
  44297. },
  44298. {
  44299. name: "Macro",
  44300. height: math.unit(512, "feet"),
  44301. default: true
  44302. },
  44303. {
  44304. name: "Megamacro",
  44305. height: math.unit(256, "miles")
  44306. },
  44307. {
  44308. name: "Gigamacro",
  44309. height: math.unit(4096, "miles")
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44315. {
  44316. side: {
  44317. height: math.unit(50, "feet"),
  44318. name: "Side",
  44319. image: {
  44320. source: "./media/characters/froimar/side.svg",
  44321. extra: 855/638,
  44322. bottom: 99/954
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Macro",
  44329. height: math.unit(50, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(210, "miles"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/timothy/front.svg",
  44342. extra: 1007/943,
  44343. bottom: 62/1069
  44344. }
  44345. },
  44346. frontSkirt: {
  44347. height: math.unit(210, "miles"),
  44348. name: "Front (Skirt)",
  44349. image: {
  44350. source: "./media/characters/timothy/front-skirt.svg",
  44351. extra: 1007/943,
  44352. bottom: 62/1069
  44353. }
  44354. },
  44355. frontCoat: {
  44356. height: math.unit(210, "miles"),
  44357. name: "Front (Coat)",
  44358. image: {
  44359. source: "./media/characters/timothy/front-coat.svg",
  44360. extra: 1007/943,
  44361. bottom: 62/1069
  44362. }
  44363. },
  44364. },
  44365. [
  44366. {
  44367. name: "Macro",
  44368. height: math.unit(210, "miles"),
  44369. default: true
  44370. },
  44371. {
  44372. name: "Megamacro",
  44373. height: math.unit(210000, "miles")
  44374. },
  44375. ]
  44376. ))
  44377. characterMakers.push(() => makeCharacter(
  44378. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44379. {
  44380. front: {
  44381. height: math.unit(188, "feet"),
  44382. name: "Front",
  44383. image: {
  44384. source: "./media/characters/pyotr/front.svg",
  44385. extra: 1912/1826,
  44386. bottom: 18/1930
  44387. }
  44388. },
  44389. },
  44390. [
  44391. {
  44392. name: "Macro",
  44393. height: math.unit(188, "feet"),
  44394. default: true
  44395. },
  44396. {
  44397. name: "Megamacro",
  44398. height: math.unit(8, "miles")
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44404. {
  44405. side: {
  44406. height: math.unit(10, "feet"),
  44407. weight: math.unit(4500, "lb"),
  44408. name: "Side",
  44409. image: {
  44410. source: "./media/characters/ackart/side.svg",
  44411. extra: 1776/1668,
  44412. bottom: 116/1892
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(10, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44426. {
  44427. side: {
  44428. height: math.unit(21, "feet"),
  44429. name: "Side",
  44430. image: {
  44431. source: "./media/characters/nolow/side.svg",
  44432. extra: 1484/1434,
  44433. bottom: 85/1569
  44434. }
  44435. },
  44436. sideErect: {
  44437. height: math.unit(21, "feet"),
  44438. name: "Side (Erect)",
  44439. image: {
  44440. source: "./media/characters/nolow/side-erect.svg",
  44441. extra: 1484/1434,
  44442. bottom: 85/1569
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Regular",
  44449. height: math.unit(12, "feet")
  44450. },
  44451. {
  44452. name: "Big Chee",
  44453. height: math.unit(21, "feet"),
  44454. default: true
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44460. {
  44461. front: {
  44462. height: math.unit(7, "feet"),
  44463. weight: math.unit(250, "lb"),
  44464. name: "Front",
  44465. image: {
  44466. source: "./media/characters/nines/front.svg",
  44467. extra: 1741/1607,
  44468. bottom: 41/1782
  44469. }
  44470. },
  44471. side: {
  44472. height: math.unit(7, "feet"),
  44473. weight: math.unit(250, "lb"),
  44474. name: "Side",
  44475. image: {
  44476. source: "./media/characters/nines/side.svg",
  44477. extra: 1854/1735,
  44478. bottom: 93/1947
  44479. }
  44480. },
  44481. back: {
  44482. height: math.unit(7, "feet"),
  44483. weight: math.unit(250, "lb"),
  44484. name: "Back",
  44485. image: {
  44486. source: "./media/characters/nines/back.svg",
  44487. extra: 1748/1615,
  44488. bottom: 20/1768
  44489. }
  44490. },
  44491. },
  44492. [
  44493. {
  44494. name: "Megamacro",
  44495. height: math.unit(99, "km"),
  44496. default: true
  44497. },
  44498. ]
  44499. ))
  44500. characterMakers.push(() => makeCharacter(
  44501. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44502. {
  44503. front: {
  44504. height: math.unit(5 + 10/12, "feet"),
  44505. weight: math.unit(210, "lb"),
  44506. name: "Front",
  44507. image: {
  44508. source: "./media/characters/zenith/front.svg",
  44509. extra: 1531/1452,
  44510. bottom: 198/1729
  44511. }
  44512. },
  44513. back: {
  44514. height: math.unit(5 + 10/12, "feet"),
  44515. weight: math.unit(210, "lb"),
  44516. name: "Back",
  44517. image: {
  44518. source: "./media/characters/zenith/back.svg",
  44519. extra: 1571/1487,
  44520. bottom: 75/1646
  44521. }
  44522. },
  44523. },
  44524. [
  44525. {
  44526. name: "Normal",
  44527. height: math.unit(5 + 10/12, "feet"),
  44528. default: true
  44529. }
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(4, "feet"),
  44537. weight: math.unit(60, "lb"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/jasper/front.svg",
  44541. extra: 1450/1379,
  44542. bottom: 19/1469
  44543. }
  44544. },
  44545. },
  44546. [
  44547. {
  44548. name: "Normal",
  44549. height: math.unit(4, "feet"),
  44550. default: true
  44551. },
  44552. ]
  44553. ))
  44554. characterMakers.push(() => makeCharacter(
  44555. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44556. {
  44557. front: {
  44558. height: math.unit(6 + 5/12, "feet"),
  44559. weight: math.unit(290, "lb"),
  44560. name: "Front",
  44561. image: {
  44562. source: "./media/characters/tiberius-thyben/front.svg",
  44563. extra: 757/739,
  44564. bottom: 39/796
  44565. }
  44566. },
  44567. },
  44568. [
  44569. {
  44570. name: "Micro",
  44571. height: math.unit(1.5, "inches")
  44572. },
  44573. {
  44574. name: "Normal",
  44575. height: math.unit(6 + 5/12, "feet"),
  44576. default: true
  44577. },
  44578. {
  44579. name: "Macro",
  44580. height: math.unit(300, "feet")
  44581. },
  44582. ]
  44583. ))
  44584. characterMakers.push(() => makeCharacter(
  44585. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44586. {
  44587. front: {
  44588. height: math.unit(5 + 6/12, "feet"),
  44589. weight: math.unit(60, "kg"),
  44590. name: "Front",
  44591. image: {
  44592. source: "./media/characters/sabre/front.svg",
  44593. extra: 738/671,
  44594. bottom: 27/765
  44595. }
  44596. },
  44597. },
  44598. [
  44599. {
  44600. name: "Teeny",
  44601. height: math.unit(2, "inches")
  44602. },
  44603. {
  44604. name: "Smol",
  44605. height: math.unit(8, "inches")
  44606. },
  44607. {
  44608. name: "Normal",
  44609. height: math.unit(5 + 6/12, "feet"),
  44610. default: true
  44611. },
  44612. {
  44613. name: "Mini-Macro",
  44614. height: math.unit(15, "feet")
  44615. },
  44616. {
  44617. name: "Macro",
  44618. height: math.unit(50, "feet")
  44619. },
  44620. ]
  44621. ))
  44622. characterMakers.push(() => makeCharacter(
  44623. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44624. {
  44625. front: {
  44626. height: math.unit(6 + 4/12, "feet"),
  44627. weight: math.unit(170, "lb"),
  44628. name: "Front",
  44629. image: {
  44630. source: "./media/characters/charlie/front.svg",
  44631. extra: 1348/1228,
  44632. bottom: 15/1363
  44633. }
  44634. },
  44635. },
  44636. [
  44637. {
  44638. name: "Macro",
  44639. height: math.unit(1700, "meters"),
  44640. default: true
  44641. },
  44642. {
  44643. name: "MegaMacro",
  44644. height: math.unit(20400, "meters")
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(1.96, "meters"),
  44653. weight: math.unit(220, "lb"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/susan-grant/front.svg",
  44657. extra: 482/478,
  44658. bottom: 7/489
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(1.96, "meters"),
  44666. default: true
  44667. },
  44668. {
  44669. name: "Macro",
  44670. height: math.unit(76.2, "meters")
  44671. },
  44672. {
  44673. name: "MegaMacro",
  44674. height: math.unit(305, "meters")
  44675. },
  44676. {
  44677. name: "GigaMacro",
  44678. height: math.unit(1220, "meters")
  44679. },
  44680. {
  44681. name: "SuperMacro",
  44682. height: math.unit(4878, "meters")
  44683. },
  44684. ]
  44685. ))
  44686. characterMakers.push(() => makeCharacter(
  44687. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44688. {
  44689. front: {
  44690. height: math.unit(5 + 4/12, "feet"),
  44691. weight: math.unit(110, "lb"),
  44692. name: "Front",
  44693. image: {
  44694. source: "./media/characters/axel-isanov/front.svg",
  44695. extra: 1096/1065,
  44696. bottom: 13/1109
  44697. }
  44698. },
  44699. },
  44700. [
  44701. {
  44702. name: "Normal",
  44703. height: math.unit(5 + 4/12, "feet"),
  44704. default: true
  44705. },
  44706. ]
  44707. ))
  44708. characterMakers.push(() => makeCharacter(
  44709. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44710. {
  44711. front: {
  44712. height: math.unit(9, "feet"),
  44713. weight: math.unit(467, "lb"),
  44714. name: "Front",
  44715. image: {
  44716. source: "./media/characters/necahual/front.svg",
  44717. extra: 920/873,
  44718. bottom: 26/946
  44719. }
  44720. },
  44721. back: {
  44722. height: math.unit(9, "feet"),
  44723. weight: math.unit(467, "lb"),
  44724. name: "Back",
  44725. image: {
  44726. source: "./media/characters/necahual/back.svg",
  44727. extra: 930/884,
  44728. bottom: 16/946
  44729. }
  44730. },
  44731. frontUnderwear: {
  44732. height: math.unit(9, "feet"),
  44733. weight: math.unit(467, "lb"),
  44734. name: "Front (Underwear)",
  44735. image: {
  44736. source: "./media/characters/necahual/front-underwear.svg",
  44737. extra: 920/873,
  44738. bottom: 26/946
  44739. }
  44740. },
  44741. frontDressed: {
  44742. height: math.unit(9, "feet"),
  44743. weight: math.unit(467, "lb"),
  44744. name: "Front (Dressed)",
  44745. image: {
  44746. source: "./media/characters/necahual/front-dressed.svg",
  44747. extra: 920/873,
  44748. bottom: 26/946
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Comprsesed",
  44755. height: math.unit(9, "feet")
  44756. },
  44757. {
  44758. name: "Natural",
  44759. height: math.unit(15, "feet"),
  44760. default: true
  44761. },
  44762. {
  44763. name: "Boosted",
  44764. height: math.unit(50, "feet")
  44765. },
  44766. {
  44767. name: "Boosted+",
  44768. height: math.unit(150, "feet")
  44769. },
  44770. {
  44771. name: "Max",
  44772. height: math.unit(500, "feet")
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44778. {
  44779. front: {
  44780. height: math.unit(22 + 1/12, "feet"),
  44781. weight: math.unit(3200, "lb"),
  44782. name: "Front",
  44783. image: {
  44784. source: "./media/characters/theo-acacia/front.svg",
  44785. extra: 1796/1741,
  44786. bottom: 83/1879
  44787. }
  44788. },
  44789. frontUnderwear: {
  44790. height: math.unit(22 + 1/12, "feet"),
  44791. weight: math.unit(3200, "lb"),
  44792. name: "Front (Underwear)",
  44793. image: {
  44794. source: "./media/characters/theo-acacia/front-underwear.svg",
  44795. extra: 1796/1741,
  44796. bottom: 83/1879
  44797. }
  44798. },
  44799. frontNude: {
  44800. height: math.unit(22 + 1/12, "feet"),
  44801. weight: math.unit(3200, "lb"),
  44802. name: "Front (Nude)",
  44803. image: {
  44804. source: "./media/characters/theo-acacia/front-nude.svg",
  44805. extra: 1796/1741,
  44806. bottom: 83/1879
  44807. }
  44808. },
  44809. },
  44810. [
  44811. {
  44812. name: "Normal",
  44813. height: math.unit(22 + 1/12, "feet"),
  44814. default: true
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(20, "feet"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/astra/front.svg",
  44826. extra: 1850/1714,
  44827. bottom: 106/1956
  44828. }
  44829. },
  44830. frontUndressed: {
  44831. height: math.unit(20, "feet"),
  44832. name: "Front (Undressed)",
  44833. image: {
  44834. source: "./media/characters/astra/front-undressed.svg",
  44835. extra: 1926/1749,
  44836. bottom: 0/1926
  44837. }
  44838. },
  44839. hand: {
  44840. height: math.unit(1.53, "feet"),
  44841. name: "Hand",
  44842. image: {
  44843. source: "./media/characters/astra/hand.svg"
  44844. }
  44845. },
  44846. paw: {
  44847. height: math.unit(1.53, "feet"),
  44848. name: "Paw",
  44849. image: {
  44850. source: "./media/characters/astra/paw.svg"
  44851. }
  44852. },
  44853. },
  44854. [
  44855. {
  44856. name: "Smallest",
  44857. height: math.unit(20, "feet")
  44858. },
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(1e9, "miles"),
  44862. default: true
  44863. },
  44864. {
  44865. name: "Larger",
  44866. height: math.unit(5, "multiverses")
  44867. },
  44868. {
  44869. name: "Largest",
  44870. height: math.unit(1e9, "multiverses")
  44871. },
  44872. ]
  44873. ))
  44874. characterMakers.push(() => makeCharacter(
  44875. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44876. {
  44877. front: {
  44878. height: math.unit(8, "feet"),
  44879. name: "Front",
  44880. image: {
  44881. source: "./media/characters/breanna/front.svg",
  44882. extra: 1912/1632,
  44883. bottom: 33/1945
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Smallest",
  44890. height: math.unit(8, "feet")
  44891. },
  44892. {
  44893. name: "Normal",
  44894. height: math.unit(1, "mile"),
  44895. default: true
  44896. },
  44897. {
  44898. name: "Maximum",
  44899. height: math.unit(1500000000000, "lightyears")
  44900. },
  44901. ]
  44902. ))
  44903. characterMakers.push(() => makeCharacter(
  44904. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44905. {
  44906. front: {
  44907. height: math.unit(5 + 11/12, "feet"),
  44908. weight: math.unit(155, "lb"),
  44909. name: "Front",
  44910. image: {
  44911. source: "./media/characters/cai/front.svg",
  44912. extra: 1823/1702,
  44913. bottom: 32/1855
  44914. }
  44915. },
  44916. back: {
  44917. height: math.unit(5 + 11/12, "feet"),
  44918. weight: math.unit(155, "lb"),
  44919. name: "Back",
  44920. image: {
  44921. source: "./media/characters/cai/back.svg",
  44922. extra: 1809/1708,
  44923. bottom: 31/1840
  44924. }
  44925. },
  44926. },
  44927. [
  44928. {
  44929. name: "Normal",
  44930. height: math.unit(5 + 11/12, "feet"),
  44931. default: true
  44932. },
  44933. {
  44934. name: "Big",
  44935. height: math.unit(15, "feet")
  44936. },
  44937. {
  44938. name: "Macro",
  44939. height: math.unit(200, "feet")
  44940. },
  44941. ]
  44942. ))
  44943. characterMakers.push(() => makeCharacter(
  44944. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44945. {
  44946. front: {
  44947. height: math.unit(5 + 6/12, "feet"),
  44948. weight: math.unit(160, "lb"),
  44949. name: "Front",
  44950. image: {
  44951. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44952. extra: 1227/1174,
  44953. bottom: 37/1264
  44954. }
  44955. },
  44956. },
  44957. [
  44958. {
  44959. name: "Macro",
  44960. height: math.unit(444, "meters"),
  44961. default: true
  44962. },
  44963. ]
  44964. ))
  44965. characterMakers.push(() => makeCharacter(
  44966. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44967. {
  44968. front: {
  44969. height: math.unit(18 + 7/12, "feet"),
  44970. name: "Front",
  44971. image: {
  44972. source: "./media/characters/rex/front.svg",
  44973. extra: 1941/1807,
  44974. bottom: 66/2007
  44975. }
  44976. },
  44977. back: {
  44978. height: math.unit(18 + 7/12, "feet"),
  44979. name: "Back",
  44980. image: {
  44981. source: "./media/characters/rex/back.svg",
  44982. extra: 1937/1822,
  44983. bottom: 42/1979
  44984. }
  44985. },
  44986. boot: {
  44987. height: math.unit(3.45, "feet"),
  44988. name: "Boot",
  44989. image: {
  44990. source: "./media/characters/rex/boot.svg"
  44991. }
  44992. },
  44993. paw: {
  44994. height: math.unit(4.17, "feet"),
  44995. name: "Paw",
  44996. image: {
  44997. source: "./media/characters/rex/paw.svg"
  44998. }
  44999. },
  45000. head: {
  45001. height: math.unit(6.728, "feet"),
  45002. name: "Head",
  45003. image: {
  45004. source: "./media/characters/rex/head.svg"
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Nano",
  45011. height: math.unit(18 + 7/12, "feet")
  45012. },
  45013. {
  45014. name: "Micro",
  45015. height: math.unit(1.5, "megameters")
  45016. },
  45017. {
  45018. name: "Normal",
  45019. height: math.unit(440, "megameters"),
  45020. default: true
  45021. },
  45022. {
  45023. name: "Macro",
  45024. height: math.unit(2.5, "gigameters")
  45025. },
  45026. {
  45027. name: "Gigamacro",
  45028. height: math.unit(2, "galaxies")
  45029. },
  45030. ]
  45031. ))
  45032. characterMakers.push(() => makeCharacter(
  45033. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45034. {
  45035. side: {
  45036. height: math.unit(32, "feet"),
  45037. weight: math.unit(250000, "lb"),
  45038. name: "Side",
  45039. image: {
  45040. source: "./media/characters/silverwing/side.svg",
  45041. extra: 1100/1019,
  45042. bottom: 204/1304
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "Normal",
  45049. height: math.unit(32, "feet"),
  45050. default: true
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45056. {
  45057. skunkFront: {
  45058. height: math.unit(4 + 6/12, "feet"),
  45059. weight: math.unit(120, "lb"),
  45060. name: "Front",
  45061. image: {
  45062. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45063. extra: 330/318,
  45064. bottom: 25/355
  45065. },
  45066. form: "skunk",
  45067. default: true
  45068. },
  45069. alolanUmbraichu_front: {
  45070. height: math.unit(2 + 6/12, "feet"),
  45071. name: "Front",
  45072. image: {
  45073. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45074. extra: 389/350,
  45075. bottom: 33/422
  45076. },
  45077. form: "alolan-umbraichu",
  45078. default: true
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Normal",
  45084. height: math.unit(4 + 6/12, "feet"),
  45085. form: "skunk",
  45086. default: true
  45087. },
  45088. {
  45089. name: "Normal",
  45090. height: math.unit(2 + 6/12, "feet"),
  45091. form: "alolan-umbraichu",
  45092. default: true
  45093. },
  45094. ],
  45095. {
  45096. "skunk": {
  45097. name: "Skunk",
  45098. default: true
  45099. },
  45100. "alolan-umbraichu": {
  45101. name: "Alolan Umbraichu",
  45102. },
  45103. }
  45104. ))
  45105. characterMakers.push(() => makeCharacter(
  45106. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45107. {
  45108. front: {
  45109. height: math.unit(5 + 11/12, "feet"),
  45110. weight: math.unit(190, "lb"),
  45111. name: "Front",
  45112. image: {
  45113. source: "./media/characters/mizu/front.svg",
  45114. extra: 1988/1788,
  45115. bottom: 14/2002
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Normal",
  45122. height: math.unit(5 + 11/12, "feet"),
  45123. default: true
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45129. {
  45130. front: {
  45131. height: math.unit(1.7, "feet"),
  45132. weight: math.unit(50, "lb"),
  45133. name: "Front",
  45134. image: {
  45135. source: "./media/characters/dechroma/front.svg",
  45136. extra: 1095/859,
  45137. bottom: 64/1159
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Normal",
  45144. height: math.unit(1.7, "feet"),
  45145. default: true
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45151. {
  45152. side: {
  45153. height: math.unit(30, "feet"),
  45154. name: "Side",
  45155. image: {
  45156. source: "./media/characters/veluren-thanazel/side.svg",
  45157. extra: 1611/633,
  45158. bottom: 118/1729
  45159. }
  45160. },
  45161. front: {
  45162. height: math.unit(30, "feet"),
  45163. name: "Front",
  45164. image: {
  45165. source: "./media/characters/veluren-thanazel/front.svg",
  45166. extra: 1486/636,
  45167. bottom: 238/1724
  45168. }
  45169. },
  45170. head: {
  45171. height: math.unit(21.4, "feet"),
  45172. name: "Head",
  45173. image: {
  45174. source: "./media/characters/veluren-thanazel/head.svg"
  45175. }
  45176. },
  45177. genitals: {
  45178. height: math.unit(19.4, "feet"),
  45179. name: "Genitals",
  45180. image: {
  45181. source: "./media/characters/veluren-thanazel/genitals.svg"
  45182. }
  45183. },
  45184. },
  45185. [
  45186. {
  45187. name: "Social",
  45188. height: math.unit(6, "feet")
  45189. },
  45190. {
  45191. name: "Play",
  45192. height: math.unit(12, "feet")
  45193. },
  45194. {
  45195. name: "True",
  45196. height: math.unit(30, "feet"),
  45197. default: true
  45198. },
  45199. ]
  45200. ))
  45201. characterMakers.push(() => makeCharacter(
  45202. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45203. {
  45204. front: {
  45205. height: math.unit(7 + 6/12, "feet"),
  45206. weight: math.unit(500, "kg"),
  45207. name: "Front",
  45208. image: {
  45209. source: "./media/characters/arcturas/front.svg",
  45210. extra: 1700/1500,
  45211. bottom: 145/1845
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(7 + 6/12, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45225. {
  45226. side: {
  45227. height: math.unit(6, "feet"),
  45228. weight: math.unit(2, "tons"),
  45229. name: "Side",
  45230. image: {
  45231. source: "./media/characters/vitaen/side.svg",
  45232. extra: 1157/617,
  45233. bottom: 122/1279
  45234. }
  45235. },
  45236. },
  45237. [
  45238. {
  45239. name: "Normal",
  45240. height: math.unit(6, "feet"),
  45241. default: true
  45242. },
  45243. ]
  45244. ))
  45245. characterMakers.push(() => makeCharacter(
  45246. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45247. {
  45248. front: {
  45249. height: math.unit(19, "feet"),
  45250. name: "Front",
  45251. image: {
  45252. source: "./media/characters/fia-dreamweaver/front.svg",
  45253. extra: 1630/1504,
  45254. bottom: 25/1655
  45255. }
  45256. },
  45257. },
  45258. [
  45259. {
  45260. name: "Normal",
  45261. height: math.unit(19, "feet"),
  45262. default: true
  45263. },
  45264. ]
  45265. ))
  45266. characterMakers.push(() => makeCharacter(
  45267. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45268. {
  45269. front: {
  45270. height: math.unit(5 + 4/12, "feet"),
  45271. name: "Front",
  45272. image: {
  45273. source: "./media/characters/artan/front.svg",
  45274. extra: 1618/1535,
  45275. bottom: 46/1664
  45276. }
  45277. },
  45278. back: {
  45279. height: math.unit(5 + 4/12, "feet"),
  45280. name: "Back",
  45281. image: {
  45282. source: "./media/characters/artan/back.svg",
  45283. extra: 1618/1543,
  45284. bottom: 31/1649
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Normal",
  45291. height: math.unit(5 + 4/12, "feet"),
  45292. default: true
  45293. },
  45294. ]
  45295. ))
  45296. characterMakers.push(() => makeCharacter(
  45297. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45298. {
  45299. side: {
  45300. height: math.unit(182, "cm"),
  45301. weight: math.unit(1000, "lb"),
  45302. name: "Side",
  45303. image: {
  45304. source: "./media/characters/silver-dragon/side.svg",
  45305. extra: 710/287,
  45306. bottom: 88/798
  45307. }
  45308. },
  45309. },
  45310. [
  45311. {
  45312. name: "Normal",
  45313. height: math.unit(182, "cm"),
  45314. default: true
  45315. },
  45316. ]
  45317. ))
  45318. characterMakers.push(() => makeCharacter(
  45319. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45320. {
  45321. side: {
  45322. height: math.unit(6 + 6/12, "feet"),
  45323. weight: math.unit(1.5, "tons"),
  45324. name: "Side",
  45325. image: {
  45326. source: "./media/characters/zephyr/side.svg",
  45327. extra: 1436/603,
  45328. bottom: 105/1541
  45329. }
  45330. },
  45331. },
  45332. [
  45333. {
  45334. name: "Normal",
  45335. height: math.unit(6 + 6/12, "feet"),
  45336. default: true
  45337. },
  45338. ]
  45339. ))
  45340. characterMakers.push(() => makeCharacter(
  45341. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45342. {
  45343. side: {
  45344. height: math.unit(1, "feet"),
  45345. name: "Side",
  45346. image: {
  45347. source: "./media/characters/vixye/side.svg",
  45348. extra: 632/541,
  45349. bottom: 0/632
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(1, "feet"),
  45357. default: true
  45358. },
  45359. {
  45360. name: "True",
  45361. height: math.unit(1e15, "multiverses")
  45362. },
  45363. ]
  45364. ))
  45365. characterMakers.push(() => makeCharacter(
  45366. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45367. {
  45368. front: {
  45369. height: math.unit(8 + 2/12, "feet"),
  45370. weight: math.unit(650, "lb"),
  45371. name: "Front",
  45372. image: {
  45373. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45374. extra: 1174/1137,
  45375. bottom: 82/1256
  45376. }
  45377. },
  45378. back: {
  45379. height: math.unit(8 + 2/12, "feet"),
  45380. weight: math.unit(650, "lb"),
  45381. name: "Back",
  45382. image: {
  45383. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45384. extra: 1204/1157,
  45385. bottom: 46/1250
  45386. }
  45387. },
  45388. },
  45389. [
  45390. {
  45391. name: "Wildform",
  45392. height: math.unit(8 + 2/12, "feet"),
  45393. default: true
  45394. },
  45395. ]
  45396. ))
  45397. characterMakers.push(() => makeCharacter(
  45398. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45399. {
  45400. front: {
  45401. height: math.unit(18, "feet"),
  45402. name: "Front",
  45403. image: {
  45404. source: "./media/characters/cyphin/front.svg",
  45405. extra: 970/886,
  45406. bottom: 42/1012
  45407. }
  45408. },
  45409. back: {
  45410. height: math.unit(18, "feet"),
  45411. name: "Back",
  45412. image: {
  45413. source: "./media/characters/cyphin/back.svg",
  45414. extra: 1009/894,
  45415. bottom: 24/1033
  45416. }
  45417. },
  45418. head: {
  45419. height: math.unit(5.05, "feet"),
  45420. name: "Head",
  45421. image: {
  45422. source: "./media/characters/cyphin/head.svg"
  45423. }
  45424. },
  45425. tailbud: {
  45426. height: math.unit(5, "feet"),
  45427. name: "Tailbud",
  45428. image: {
  45429. source: "./media/characters/cyphin/tailbud.svg"
  45430. }
  45431. },
  45432. },
  45433. [
  45434. ]
  45435. ))
  45436. characterMakers.push(() => makeCharacter(
  45437. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45438. {
  45439. side: {
  45440. height: math.unit(10, "feet"),
  45441. weight: math.unit(6, "tons"),
  45442. name: "Side",
  45443. image: {
  45444. source: "./media/characters/raijin/side.svg",
  45445. extra: 1529/613,
  45446. bottom: 337/1866
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(10, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45460. {
  45461. side: {
  45462. height: math.unit(9, "feet"),
  45463. name: "Side",
  45464. image: {
  45465. source: "./media/characters/nilghais/side.svg",
  45466. extra: 1047/744,
  45467. bottom: 91/1138
  45468. }
  45469. },
  45470. head: {
  45471. height: math.unit(3.14, "feet"),
  45472. name: "Head",
  45473. image: {
  45474. source: "./media/characters/nilghais/head.svg"
  45475. }
  45476. },
  45477. mouth: {
  45478. height: math.unit(4.6, "feet"),
  45479. name: "Mouth",
  45480. image: {
  45481. source: "./media/characters/nilghais/mouth.svg"
  45482. }
  45483. },
  45484. wings: {
  45485. height: math.unit(24, "feet"),
  45486. name: "Wings",
  45487. image: {
  45488. source: "./media/characters/nilghais/wings.svg"
  45489. }
  45490. },
  45491. ass: {
  45492. height: math.unit(6.12, "feet"),
  45493. name: "Ass",
  45494. image: {
  45495. source: "./media/characters/nilghais/ass.svg"
  45496. }
  45497. },
  45498. },
  45499. [
  45500. {
  45501. name: "Normal",
  45502. height: math.unit(9, "feet"),
  45503. default: true
  45504. },
  45505. ]
  45506. ))
  45507. characterMakers.push(() => makeCharacter(
  45508. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45509. {
  45510. regular: {
  45511. height: math.unit(16 + 2/12, "feet"),
  45512. weight: math.unit(2300, "lb"),
  45513. name: "Regular",
  45514. image: {
  45515. source: "./media/characters/zolgar/regular.svg",
  45516. extra: 1246/1004,
  45517. bottom: 124/1370
  45518. }
  45519. },
  45520. boxers: {
  45521. height: math.unit(16 + 2/12, "feet"),
  45522. weight: math.unit(2300, "lb"),
  45523. name: "Boxers",
  45524. image: {
  45525. source: "./media/characters/zolgar/boxers.svg",
  45526. extra: 1246/1004,
  45527. bottom: 124/1370
  45528. }
  45529. },
  45530. armored: {
  45531. height: math.unit(16 + 2/12, "feet"),
  45532. weight: math.unit(2300, "lb"),
  45533. name: "Armored",
  45534. image: {
  45535. source: "./media/characters/zolgar/armored.svg",
  45536. extra: 1246/1004,
  45537. bottom: 124/1370
  45538. }
  45539. },
  45540. goth: {
  45541. height: math.unit(16 + 2/12, "feet"),
  45542. weight: math.unit(2300, "lb"),
  45543. name: "Goth",
  45544. image: {
  45545. source: "./media/characters/zolgar/goth.svg",
  45546. extra: 1246/1004,
  45547. bottom: 124/1370
  45548. }
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Shrunken Down",
  45554. height: math.unit(9 + 2/12, "feet")
  45555. },
  45556. {
  45557. name: "Normal",
  45558. height: math.unit(16 + 2/12, "feet"),
  45559. default: true
  45560. },
  45561. ]
  45562. ))
  45563. characterMakers.push(() => makeCharacter(
  45564. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45565. {
  45566. front: {
  45567. height: math.unit(6, "feet"),
  45568. weight: math.unit(168, "lb"),
  45569. name: "Front",
  45570. image: {
  45571. source: "./media/characters/luca/front.svg",
  45572. extra: 841/667,
  45573. bottom: 102/943
  45574. }
  45575. },
  45576. },
  45577. [
  45578. {
  45579. name: "Normal",
  45580. height: math.unit(6, "feet"),
  45581. default: true
  45582. },
  45583. ]
  45584. ))
  45585. characterMakers.push(() => makeCharacter(
  45586. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45587. {
  45588. side: {
  45589. height: math.unit(7 + 3/12, "feet"),
  45590. weight: math.unit(312, "lb"),
  45591. name: "Side",
  45592. image: {
  45593. source: "./media/characters/zezo/side.svg",
  45594. extra: 1192/1067,
  45595. bottom: 63/1255
  45596. }
  45597. },
  45598. },
  45599. [
  45600. {
  45601. name: "Normal",
  45602. height: math.unit(7 + 3/12, "feet"),
  45603. default: true
  45604. },
  45605. ]
  45606. ))
  45607. characterMakers.push(() => makeCharacter(
  45608. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45609. {
  45610. front: {
  45611. height: math.unit(5 + 5/12, "feet"),
  45612. weight: math.unit(170, "lb"),
  45613. name: "Front",
  45614. image: {
  45615. source: "./media/characters/mayso/front.svg",
  45616. extra: 1215/1108,
  45617. bottom: 16/1231
  45618. }
  45619. },
  45620. },
  45621. [
  45622. {
  45623. name: "Normal",
  45624. height: math.unit(5 + 5/12, "feet"),
  45625. default: true
  45626. },
  45627. ]
  45628. ))
  45629. characterMakers.push(() => makeCharacter(
  45630. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45631. {
  45632. front: {
  45633. height: math.unit(4 + 3/12, "feet"),
  45634. weight: math.unit(80, "lb"),
  45635. name: "Front",
  45636. image: {
  45637. source: "./media/characters/hess/front.svg",
  45638. extra: 1200/1123,
  45639. bottom: 16/1216
  45640. }
  45641. },
  45642. },
  45643. [
  45644. {
  45645. name: "Normal",
  45646. height: math.unit(4 + 3/12, "feet"),
  45647. default: true
  45648. },
  45649. ]
  45650. ))
  45651. characterMakers.push(() => makeCharacter(
  45652. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45653. {
  45654. front: {
  45655. height: math.unit(1.9, "meters"),
  45656. name: "Front",
  45657. image: {
  45658. source: "./media/characters/ashgar/front.svg",
  45659. extra: 1177/1146,
  45660. bottom: 99/1276
  45661. }
  45662. },
  45663. back: {
  45664. height: math.unit(1.9, "meters"),
  45665. name: "Back",
  45666. image: {
  45667. source: "./media/characters/ashgar/back.svg",
  45668. extra: 1201/1183,
  45669. bottom: 53/1254
  45670. }
  45671. },
  45672. feral: {
  45673. height: math.unit(1.4, "meters"),
  45674. name: "Feral",
  45675. image: {
  45676. source: "./media/characters/ashgar/feral.svg",
  45677. extra: 370/345,
  45678. bottom: 45/415
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Normal",
  45685. height: math.unit(1.9, "meters"),
  45686. default: true
  45687. },
  45688. ]
  45689. ))
  45690. characterMakers.push(() => makeCharacter(
  45691. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45692. {
  45693. regular: {
  45694. height: math.unit(6, "feet"),
  45695. weight: math.unit(220, "lb"),
  45696. name: "Regular",
  45697. image: {
  45698. source: "./media/characters/phillip/regular.svg",
  45699. extra: 1373/1277,
  45700. bottom: 75/1448
  45701. }
  45702. },
  45703. dressed: {
  45704. height: math.unit(6, "feet"),
  45705. weight: math.unit(220, "lb"),
  45706. name: "Dressed",
  45707. image: {
  45708. source: "./media/characters/phillip/dressed.svg",
  45709. extra: 1373/1277,
  45710. bottom: 75/1448
  45711. }
  45712. },
  45713. paw: {
  45714. height: math.unit(1.44, "feet"),
  45715. name: "Paw",
  45716. image: {
  45717. source: "./media/characters/phillip/paw.svg"
  45718. }
  45719. },
  45720. },
  45721. [
  45722. {
  45723. name: "Normal",
  45724. height: math.unit(6, "feet"),
  45725. default: true
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45731. {
  45732. side: {
  45733. height: math.unit(42, "feet"),
  45734. name: "Side",
  45735. image: {
  45736. source: "./media/characters/uvula/side.svg",
  45737. extra: 683/586,
  45738. bottom: 60/743
  45739. }
  45740. },
  45741. front: {
  45742. height: math.unit(42, "feet"),
  45743. name: "Front",
  45744. image: {
  45745. source: "./media/characters/uvula/front.svg",
  45746. extra: 705/613,
  45747. bottom: 54/759
  45748. }
  45749. },
  45750. maw: {
  45751. height: math.unit(23.5, "feet"),
  45752. name: "Maw",
  45753. image: {
  45754. source: "./media/characters/uvula/maw.svg"
  45755. }
  45756. },
  45757. },
  45758. [
  45759. {
  45760. name: "Original Size",
  45761. height: math.unit(14, "inches")
  45762. },
  45763. {
  45764. name: "Human Size",
  45765. height: math.unit(6, "feet")
  45766. },
  45767. {
  45768. name: "Big",
  45769. height: math.unit(42, "feet"),
  45770. default: true
  45771. },
  45772. {
  45773. name: "Bigger",
  45774. height: math.unit(100, "feet")
  45775. },
  45776. ]
  45777. ))
  45778. characterMakers.push(() => makeCharacter(
  45779. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45780. {
  45781. front: {
  45782. height: math.unit(5 + 11/12, "feet"),
  45783. name: "Front",
  45784. image: {
  45785. source: "./media/characters/lannah/front.svg",
  45786. extra: 1208/1113,
  45787. bottom: 97/1305
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Normal",
  45794. height: math.unit(5 + 11/12, "feet"),
  45795. default: true
  45796. },
  45797. ]
  45798. ))
  45799. characterMakers.push(() => makeCharacter(
  45800. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45801. {
  45802. front: {
  45803. height: math.unit(6 + 3/12, "feet"),
  45804. weight: math.unit(3.5, "tons"),
  45805. name: "Front",
  45806. image: {
  45807. source: "./media/characters/emberflame/front.svg",
  45808. extra: 1198/672,
  45809. bottom: 82/1280
  45810. }
  45811. },
  45812. side: {
  45813. height: math.unit(6 + 3/12, "feet"),
  45814. weight: math.unit(3.5, "tons"),
  45815. name: "Side",
  45816. image: {
  45817. source: "./media/characters/emberflame/side.svg",
  45818. extra: 938/527,
  45819. bottom: 56/994
  45820. }
  45821. },
  45822. },
  45823. [
  45824. {
  45825. name: "Normal",
  45826. height: math.unit(6 + 3/12, "feet"),
  45827. default: true
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45833. {
  45834. side: {
  45835. height: math.unit(17.5, "feet"),
  45836. weight: math.unit(35, "tons"),
  45837. name: "Side",
  45838. image: {
  45839. source: "./media/characters/sophie-ambrose/side.svg",
  45840. extra: 1573/1242,
  45841. bottom: 71/1644
  45842. }
  45843. },
  45844. maw: {
  45845. height: math.unit(7.4, "feet"),
  45846. name: "Maw",
  45847. image: {
  45848. source: "./media/characters/sophie-ambrose/maw.svg"
  45849. }
  45850. },
  45851. },
  45852. [
  45853. {
  45854. name: "Normal",
  45855. height: math.unit(17.5, "feet"),
  45856. default: true
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45862. {
  45863. front: {
  45864. height: math.unit(280, "feet"),
  45865. weight: math.unit(550, "tons"),
  45866. name: "Front",
  45867. image: {
  45868. source: "./media/characters/king-mugi/front.svg",
  45869. extra: 1102/947,
  45870. bottom: 104/1206
  45871. }
  45872. },
  45873. },
  45874. [
  45875. {
  45876. name: "King Mugi",
  45877. height: math.unit(280, "feet"),
  45878. default: true
  45879. },
  45880. ]
  45881. ))
  45882. characterMakers.push(() => makeCharacter(
  45883. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45884. {
  45885. female: {
  45886. height: math.unit(300, "meters"),
  45887. name: "Front",
  45888. image: {
  45889. source: "./media/characters/nova-fox/female.svg",
  45890. extra: 664/632,
  45891. bottom: 51/715
  45892. },
  45893. form: "female",
  45894. default: true
  45895. },
  45896. male: {
  45897. height: math.unit(300, "meters"),
  45898. name: "Front",
  45899. image: {
  45900. source: "./media/characters/nova-fox/male.svg",
  45901. extra: 663/631,
  45902. bottom: 30/693
  45903. },
  45904. form: "male",
  45905. default: true
  45906. },
  45907. },
  45908. [
  45909. {
  45910. name: "Macro",
  45911. height: math.unit(300, "meters"),
  45912. default: true,
  45913. allForms: true
  45914. },
  45915. ],
  45916. {
  45917. "female": {
  45918. name: "Female",
  45919. default: true
  45920. },
  45921. "male": {
  45922. name: "Male",
  45923. },
  45924. }
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45928. {
  45929. front: {
  45930. height: math.unit(6 + 3/12, "feet"),
  45931. weight: math.unit(170, "lb"),
  45932. name: "Front",
  45933. image: {
  45934. source: "./media/characters/sam-bat/front.svg",
  45935. extra: 1601/1411,
  45936. bottom: 125/1726
  45937. }
  45938. },
  45939. back: {
  45940. height: math.unit(6 + 3/12, "feet"),
  45941. weight: math.unit(170, "lb"),
  45942. name: "Back",
  45943. image: {
  45944. source: "./media/characters/sam-bat/back.svg",
  45945. extra: 1577/1405,
  45946. bottom: 58/1635
  45947. }
  45948. },
  45949. },
  45950. [
  45951. {
  45952. name: "Normal",
  45953. height: math.unit(6 + 3/12, "feet"),
  45954. default: true
  45955. },
  45956. ]
  45957. ))
  45958. characterMakers.push(() => makeCharacter(
  45959. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45960. {
  45961. front: {
  45962. height: math.unit(59, "feet"),
  45963. weight: math.unit(40000, "lb"),
  45964. name: "Front",
  45965. image: {
  45966. source: "./media/characters/inari/front.svg",
  45967. extra: 1884/1350,
  45968. bottom: 95/1979
  45969. }
  45970. },
  45971. },
  45972. [
  45973. {
  45974. name: "Gigantamax",
  45975. height: math.unit(59, "feet"),
  45976. default: true
  45977. },
  45978. ]
  45979. ))
  45980. characterMakers.push(() => makeCharacter(
  45981. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45982. {
  45983. front: {
  45984. height: math.unit(5 + 8/12, "feet"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/elizabeth/front.svg",
  45988. extra: 1395/1298,
  45989. bottom: 54/1449
  45990. }
  45991. },
  45992. mouth: {
  45993. height: math.unit(1.97, "feet"),
  45994. name: "Mouth",
  45995. image: {
  45996. source: "./media/characters/elizabeth/mouth.svg"
  45997. }
  45998. },
  45999. foot: {
  46000. height: math.unit(1.17, "feet"),
  46001. name: "Foot",
  46002. image: {
  46003. source: "./media/characters/elizabeth/foot.svg"
  46004. }
  46005. },
  46006. },
  46007. [
  46008. {
  46009. name: "Normal",
  46010. height: math.unit(5 + 8/12, "feet"),
  46011. default: true
  46012. },
  46013. {
  46014. name: "Minimacro",
  46015. height: math.unit(18, "feet")
  46016. },
  46017. {
  46018. name: "Macro",
  46019. height: math.unit(180, "feet")
  46020. },
  46021. ]
  46022. ))
  46023. characterMakers.push(() => makeCharacter(
  46024. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46025. {
  46026. front: {
  46027. height: math.unit(5 + 2/12, "feet"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/october-gossamer/front.svg",
  46031. extra: 505/454,
  46032. bottom: 7/512
  46033. }
  46034. },
  46035. back: {
  46036. height: math.unit(5 + 2/12, "feet"),
  46037. name: "Back",
  46038. image: {
  46039. source: "./media/characters/october-gossamer/back.svg",
  46040. extra: 501/454,
  46041. bottom: 11/512
  46042. }
  46043. },
  46044. },
  46045. [
  46046. {
  46047. name: "Normal",
  46048. height: math.unit(5 + 2/12, "feet"),
  46049. default: true
  46050. },
  46051. ]
  46052. ))
  46053. characterMakers.push(() => makeCharacter(
  46054. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46055. {
  46056. front: {
  46057. height: math.unit(5, "feet"),
  46058. name: "Front",
  46059. image: {
  46060. source: "./media/characters/epiglottis/front.svg",
  46061. extra: 923/849,
  46062. bottom: 17/940
  46063. }
  46064. },
  46065. },
  46066. [
  46067. {
  46068. name: "Original Size",
  46069. height: math.unit(10, "inches")
  46070. },
  46071. {
  46072. name: "Human Size",
  46073. height: math.unit(5, "feet"),
  46074. default: true
  46075. },
  46076. {
  46077. name: "Big",
  46078. height: math.unit(25, "feet")
  46079. },
  46080. {
  46081. name: "Bigger",
  46082. height: math.unit(50, "feet")
  46083. },
  46084. {
  46085. name: "oh lawd",
  46086. height: math.unit(75, "feet")
  46087. },
  46088. ]
  46089. ))
  46090. characterMakers.push(() => makeCharacter(
  46091. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46092. {
  46093. front: {
  46094. height: math.unit(2 + 4/12, "feet"),
  46095. weight: math.unit(60, "lb"),
  46096. name: "Front",
  46097. image: {
  46098. source: "./media/characters/lerm/front.svg",
  46099. extra: 796/790,
  46100. bottom: 79/875
  46101. }
  46102. },
  46103. },
  46104. [
  46105. {
  46106. name: "Normal",
  46107. height: math.unit(2 + 4/12, "feet"),
  46108. default: true
  46109. },
  46110. ]
  46111. ))
  46112. characterMakers.push(() => makeCharacter(
  46113. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46114. {
  46115. front: {
  46116. height: math.unit(5.5, "feet"),
  46117. weight: math.unit(130, "lb"),
  46118. name: "Front",
  46119. image: {
  46120. source: "./media/characters/xena-nebadon/front.svg",
  46121. extra: 1828/1730,
  46122. bottom: 79/1907
  46123. }
  46124. },
  46125. },
  46126. [
  46127. {
  46128. name: "Tiny Puppy",
  46129. height: math.unit(3, "inches")
  46130. },
  46131. {
  46132. name: "Normal",
  46133. height: math.unit(5.5, "feet"),
  46134. default: true
  46135. },
  46136. {
  46137. name: "Lotta Lady",
  46138. height: math.unit(12, "feet")
  46139. },
  46140. {
  46141. name: "Pretty Big",
  46142. height: math.unit(100, "feet")
  46143. },
  46144. {
  46145. name: "Big",
  46146. height: math.unit(500, "feet")
  46147. },
  46148. {
  46149. name: "Skyscraper Toys",
  46150. height: math.unit(2500, "feet")
  46151. },
  46152. {
  46153. name: "Plane Catcher",
  46154. height: math.unit(8, "miles")
  46155. },
  46156. {
  46157. name: "Planet Toys",
  46158. height: math.unit(15, "earths")
  46159. },
  46160. {
  46161. name: "Stardust",
  46162. height: math.unit(0.25, "galaxies")
  46163. },
  46164. {
  46165. name: "Snacks",
  46166. height: math.unit(70, "universes")
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46172. {
  46173. front: {
  46174. height: math.unit(1.6, "meters"),
  46175. weight: math.unit(60, "kg"),
  46176. name: "Front",
  46177. image: {
  46178. source: "./media/characters/bounty/front.svg",
  46179. extra: 1426/1308,
  46180. bottom: 15/1441
  46181. }
  46182. },
  46183. back: {
  46184. height: math.unit(1.6, "meters"),
  46185. weight: math.unit(60, "kg"),
  46186. name: "Back",
  46187. image: {
  46188. source: "./media/characters/bounty/back.svg",
  46189. extra: 1417/1307,
  46190. bottom: 8/1425
  46191. }
  46192. },
  46193. },
  46194. [
  46195. {
  46196. name: "Normal",
  46197. height: math.unit(1.6, "meters"),
  46198. default: true
  46199. },
  46200. {
  46201. name: "Macro",
  46202. height: math.unit(300, "meters")
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46208. {
  46209. front: {
  46210. height: math.unit(2 + 8/12, "feet"),
  46211. weight: math.unit(15, "lb"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/mochi/front.svg",
  46215. extra: 1022/852,
  46216. bottom: 435/1457
  46217. }
  46218. },
  46219. back: {
  46220. height: math.unit(2 + 8/12, "feet"),
  46221. weight: math.unit(15, "lb"),
  46222. name: "Back",
  46223. image: {
  46224. source: "./media/characters/mochi/back.svg",
  46225. extra: 1335/1119,
  46226. bottom: 39/1374
  46227. }
  46228. },
  46229. bird: {
  46230. height: math.unit(2 + 8/12, "feet"),
  46231. weight: math.unit(15, "lb"),
  46232. name: "Bird",
  46233. image: {
  46234. source: "./media/characters/mochi/bird.svg",
  46235. extra: 1251/1113,
  46236. bottom: 178/1429
  46237. }
  46238. },
  46239. kaiju: {
  46240. height: math.unit(154, "feet"),
  46241. weight: math.unit(1e7, "lb"),
  46242. name: "Kaiju",
  46243. image: {
  46244. source: "./media/characters/mochi/kaiju.svg",
  46245. extra: 460/324,
  46246. bottom: 40/500
  46247. }
  46248. },
  46249. head: {
  46250. height: math.unit(1.21, "feet"),
  46251. name: "Head",
  46252. image: {
  46253. source: "./media/characters/mochi/head.svg"
  46254. }
  46255. },
  46256. alternateTail: {
  46257. height: math.unit(2 + 8/12, "feet"),
  46258. weight: math.unit(45, "lb"),
  46259. name: "Alternate Tail",
  46260. image: {
  46261. source: "./media/characters/mochi/alternate-tail.svg",
  46262. extra: 139/76,
  46263. bottom: 45/184
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Micro",
  46270. height: math.unit(2, "inches")
  46271. },
  46272. {
  46273. name: "Normal",
  46274. height: math.unit(2 + 8/12, "feet"),
  46275. default: true
  46276. },
  46277. {
  46278. name: "Macro",
  46279. height: math.unit(106, "feet")
  46280. },
  46281. ]
  46282. ))
  46283. characterMakers.push(() => makeCharacter(
  46284. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46285. {
  46286. front: {
  46287. height: math.unit(5.67, "feet"),
  46288. weight: math.unit(135, "lb"),
  46289. name: "Front",
  46290. image: {
  46291. source: "./media/characters/sarel/front.svg",
  46292. extra: 865/788,
  46293. bottom: 97/962
  46294. }
  46295. },
  46296. back: {
  46297. height: math.unit(5.67, "feet"),
  46298. weight: math.unit(135, "lb"),
  46299. name: "Back",
  46300. image: {
  46301. source: "./media/characters/sarel/back.svg",
  46302. extra: 857/777,
  46303. bottom: 32/889
  46304. }
  46305. },
  46306. chozoan: {
  46307. height: math.unit(5.67, "feet"),
  46308. weight: math.unit(135, "lb"),
  46309. name: "Chozoan",
  46310. image: {
  46311. source: "./media/characters/sarel/chozoan.svg",
  46312. extra: 865/788,
  46313. bottom: 97/962
  46314. }
  46315. },
  46316. current: {
  46317. height: math.unit(5.67, "feet"),
  46318. weight: math.unit(135, "lb"),
  46319. name: "Current",
  46320. image: {
  46321. source: "./media/characters/sarel/current.svg",
  46322. extra: 865/788,
  46323. bottom: 97/962
  46324. }
  46325. },
  46326. head: {
  46327. height: math.unit(1.77, "feet"),
  46328. name: "Head",
  46329. image: {
  46330. source: "./media/characters/sarel/head.svg"
  46331. }
  46332. },
  46333. claws: {
  46334. height: math.unit(1.8, "feet"),
  46335. name: "Claws",
  46336. image: {
  46337. source: "./media/characters/sarel/claws.svg"
  46338. }
  46339. },
  46340. clawsAlt: {
  46341. height: math.unit(1.8, "feet"),
  46342. name: "Claws (Alt)",
  46343. image: {
  46344. source: "./media/characters/sarel/claws-alt.svg"
  46345. }
  46346. },
  46347. },
  46348. [
  46349. {
  46350. name: "Normal",
  46351. height: math.unit(5.67, "feet"),
  46352. default: true
  46353. },
  46354. ]
  46355. ))
  46356. characterMakers.push(() => makeCharacter(
  46357. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46358. {
  46359. front: {
  46360. height: math.unit(5500, "feet"),
  46361. name: "Front",
  46362. image: {
  46363. source: "./media/characters/alyonia/front.svg",
  46364. extra: 1200/1135,
  46365. bottom: 29/1229
  46366. }
  46367. },
  46368. back: {
  46369. height: math.unit(5500, "feet"),
  46370. name: "Back",
  46371. image: {
  46372. source: "./media/characters/alyonia/back.svg",
  46373. extra: 1205/1138,
  46374. bottom: 10/1215
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Small",
  46381. height: math.unit(10, "feet")
  46382. },
  46383. {
  46384. name: "Macro",
  46385. height: math.unit(500, "feet")
  46386. },
  46387. {
  46388. name: "Mega Macro",
  46389. height: math.unit(5500, "feet"),
  46390. default: true
  46391. },
  46392. {
  46393. name: "Mega Macro+",
  46394. height: math.unit(500000, "feet")
  46395. },
  46396. {
  46397. name: "Giga Macro",
  46398. height: math.unit(3000, "miles")
  46399. },
  46400. {
  46401. name: "Tera Macro",
  46402. height: math.unit(2.8e6, "miles")
  46403. },
  46404. {
  46405. name: "Galactic",
  46406. height: math.unit(120000, "lightyears")
  46407. },
  46408. ]
  46409. ))
  46410. characterMakers.push(() => makeCharacter(
  46411. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46412. {
  46413. werewolf: {
  46414. height: math.unit(8, "feet"),
  46415. weight: math.unit(425, "lb"),
  46416. name: "Werewolf",
  46417. image: {
  46418. source: "./media/characters/autumn/werewolf.svg",
  46419. extra: 2154/2031,
  46420. bottom: 160/2314
  46421. }
  46422. },
  46423. human: {
  46424. height: math.unit(5 + 8/12, "feet"),
  46425. weight: math.unit(150, "lb"),
  46426. name: "Human",
  46427. image: {
  46428. source: "./media/characters/autumn/human.svg",
  46429. extra: 1200/1149,
  46430. bottom: 30/1230
  46431. }
  46432. },
  46433. },
  46434. [
  46435. {
  46436. name: "Normal",
  46437. height: math.unit(8, "feet"),
  46438. default: true
  46439. },
  46440. ]
  46441. ))
  46442. characterMakers.push(() => makeCharacter(
  46443. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46444. {
  46445. front: {
  46446. height: math.unit(8 + 5/12, "feet"),
  46447. weight: math.unit(825, "lb"),
  46448. name: "Front",
  46449. image: {
  46450. source: "./media/characters/cobalt-charizard/front.svg",
  46451. extra: 1268/1155,
  46452. bottom: 122/1390
  46453. }
  46454. },
  46455. side: {
  46456. height: math.unit(8 + 5/12, "feet"),
  46457. weight: math.unit(825, "lb"),
  46458. name: "Side",
  46459. image: {
  46460. source: "./media/characters/cobalt-charizard/side.svg",
  46461. extra: 1348/1257,
  46462. bottom: 58/1406
  46463. }
  46464. },
  46465. gMax: {
  46466. height: math.unit(134 + 11/12, "feet"),
  46467. name: "G-Max",
  46468. image: {
  46469. source: "./media/characters/cobalt-charizard/g-max.svg",
  46470. extra: 1835/1541,
  46471. bottom: 151/1986
  46472. }
  46473. },
  46474. },
  46475. [
  46476. {
  46477. name: "Normal",
  46478. height: math.unit(8 + 5/12, "feet"),
  46479. default: true
  46480. },
  46481. ]
  46482. ))
  46483. characterMakers.push(() => makeCharacter(
  46484. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46485. {
  46486. front: {
  46487. height: math.unit(6 + 3/12, "feet"),
  46488. weight: math.unit(210, "lb"),
  46489. name: "Front",
  46490. image: {
  46491. source: "./media/characters/stella/front.svg",
  46492. extra: 3549/3335,
  46493. bottom: 51/3600
  46494. }
  46495. },
  46496. },
  46497. [
  46498. {
  46499. name: "Normal",
  46500. height: math.unit(6 + 3/12, "feet"),
  46501. default: true
  46502. },
  46503. ]
  46504. ))
  46505. characterMakers.push(() => makeCharacter(
  46506. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46507. {
  46508. front: {
  46509. height: math.unit(5, "feet"),
  46510. weight: math.unit(90, "lb"),
  46511. name: "Front",
  46512. image: {
  46513. source: "./media/characters/riley-bishop/front.svg",
  46514. extra: 1450/1428,
  46515. bottom: 152/1602
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(5, "feet"),
  46523. default: true
  46524. },
  46525. ]
  46526. ))
  46527. characterMakers.push(() => makeCharacter(
  46528. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46529. {
  46530. side: {
  46531. height: math.unit(8 + 2/12, "feet"),
  46532. weight: math.unit(500, "kg"),
  46533. name: "Side",
  46534. image: {
  46535. source: "./media/characters/theo-arcanine/side.svg",
  46536. extra: 1342/1074,
  46537. bottom: 111/1453
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(8 + 2/12, "feet"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46551. {
  46552. front: {
  46553. height: math.unit(4, "feet"),
  46554. name: "Front",
  46555. image: {
  46556. source: "./media/characters/kali/front.svg",
  46557. extra: 1074/867,
  46558. bottom: 34/1108
  46559. }
  46560. },
  46561. back: {
  46562. height: math.unit(4, "feet"),
  46563. name: "Back",
  46564. image: {
  46565. source: "./media/characters/kali/back.svg",
  46566. extra: 1068/863,
  46567. bottom: 26/1094
  46568. }
  46569. },
  46570. frontAlt: {
  46571. height: math.unit(4, "feet"),
  46572. name: "Front (Alt)",
  46573. image: {
  46574. source: "./media/characters/kali/front-alt.svg",
  46575. extra: 1921/1357,
  46576. bottom: 70/1991
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(4, "feet"),
  46584. default: true
  46585. },
  46586. {
  46587. name: "Big'vali",
  46588. height: math.unit(11, "feet")
  46589. },
  46590. {
  46591. name: "Macro",
  46592. height: math.unit(32, "meters")
  46593. },
  46594. {
  46595. name: "Macro+",
  46596. height: math.unit(150, "meters")
  46597. },
  46598. {
  46599. name: "Megamacro",
  46600. height: math.unit(7500, "meters")
  46601. },
  46602. {
  46603. name: "Megamacro+",
  46604. height: math.unit(80, "kilometers")
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46610. {
  46611. side: {
  46612. height: math.unit(5 + 11/12, "feet"),
  46613. weight: math.unit(236, "lb"),
  46614. name: "Side",
  46615. image: {
  46616. source: "./media/characters/gapp/side.svg",
  46617. extra: 775/340,
  46618. bottom: 58/833
  46619. }
  46620. },
  46621. mouth: {
  46622. height: math.unit(2.98, "feet"),
  46623. name: "Mouth",
  46624. image: {
  46625. source: "./media/characters/gapp/mouth.svg"
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Normal",
  46632. height: math.unit(5 + 1/12, "feet"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46639. {
  46640. front: {
  46641. height: math.unit(6, "feet"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/persephone/front.svg",
  46645. extra: 1895/1717,
  46646. bottom: 96/1991
  46647. }
  46648. },
  46649. back: {
  46650. height: math.unit(6, "feet"),
  46651. name: "Back",
  46652. image: {
  46653. source: "./media/characters/persephone/back.svg",
  46654. extra: 1868/1679,
  46655. bottom: 26/1894
  46656. }
  46657. },
  46658. casual: {
  46659. height: math.unit(6, "feet"),
  46660. name: "Casual",
  46661. image: {
  46662. source: "./media/characters/persephone/casual.svg",
  46663. extra: 1713/1541,
  46664. bottom: 76/1789
  46665. }
  46666. },
  46667. gaming: {
  46668. height: math.unit(3.55, "feet"),
  46669. name: "Gaming",
  46670. image: {
  46671. source: "./media/characters/persephone/gaming.svg",
  46672. extra: 1242/1038,
  46673. bottom: 66/1308
  46674. }
  46675. },
  46676. head: {
  46677. height: math.unit(2.15, "feet"),
  46678. name: "😐",
  46679. image: {
  46680. source: "./media/characters/persephone/head.svg"
  46681. }
  46682. },
  46683. talking: {
  46684. height: math.unit(2.5, "feet"),
  46685. name: "💬",
  46686. image: {
  46687. source: "./media/characters/persephone/talking.svg"
  46688. }
  46689. },
  46690. hmm: {
  46691. height: math.unit(2.28, "feet"),
  46692. name: "🤨",
  46693. image: {
  46694. source: "./media/characters/persephone/hmm.svg"
  46695. }
  46696. },
  46697. },
  46698. [
  46699. {
  46700. name: "Human Size",
  46701. height: math.unit(6, "feet")
  46702. },
  46703. {
  46704. name: "Big Steppy",
  46705. height: math.unit(600, "meters"),
  46706. default: true
  46707. },
  46708. {
  46709. name: "Galaxy Brain",
  46710. height: math.unit(1, "zettameter")
  46711. },
  46712. ]
  46713. ))
  46714. characterMakers.push(() => makeCharacter(
  46715. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46716. {
  46717. front: {
  46718. height: math.unit(1.85, "meters"),
  46719. name: "Front",
  46720. image: {
  46721. source: "./media/characters/riley-foxthing/front.svg",
  46722. extra: 1495/1354,
  46723. bottom: 122/1617
  46724. }
  46725. },
  46726. frontAlt: {
  46727. height: math.unit(1.85, "meters"),
  46728. name: "Front (Alt)",
  46729. image: {
  46730. source: "./media/characters/riley-foxthing/front-alt.svg",
  46731. extra: 1572/1389,
  46732. bottom: 116/1688
  46733. }
  46734. },
  46735. },
  46736. [
  46737. {
  46738. name: "Normal Sized",
  46739. height: math.unit(1.85, "meters"),
  46740. default: true
  46741. },
  46742. {
  46743. name: "Quite Sizable",
  46744. height: math.unit(5, "meters")
  46745. },
  46746. {
  46747. name: "Rather Large",
  46748. height: math.unit(20, "meters")
  46749. },
  46750. {
  46751. name: "Macro",
  46752. height: math.unit(450, "meters")
  46753. },
  46754. {
  46755. name: "Giga",
  46756. height: math.unit(5, "km")
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46762. {
  46763. front: {
  46764. height: math.unit(6, "feet"),
  46765. weight: math.unit(200, "lb"),
  46766. name: "Front",
  46767. image: {
  46768. source: "./media/characters/blizzard/front.svg",
  46769. extra: 1136/990,
  46770. bottom: 136/1272
  46771. }
  46772. },
  46773. back: {
  46774. height: math.unit(6, "feet"),
  46775. weight: math.unit(200, "lb"),
  46776. name: "Back",
  46777. image: {
  46778. source: "./media/characters/blizzard/back.svg",
  46779. extra: 1175/1034,
  46780. bottom: 97/1272
  46781. }
  46782. },
  46783. sitting: {
  46784. height: math.unit(3.725, "feet"),
  46785. weight: math.unit(200, "lb"),
  46786. name: "Sitting",
  46787. image: {
  46788. source: "./media/characters/blizzard/sitting.svg",
  46789. extra: 581/485,
  46790. bottom: 90/671
  46791. }
  46792. },
  46793. frontWizard: {
  46794. height: math.unit(7.9, "feet"),
  46795. weight: math.unit(200, "lb"),
  46796. name: "Front (Wizard)",
  46797. image: {
  46798. source: "./media/characters/blizzard/front-wizard.svg"
  46799. }
  46800. },
  46801. backWizard: {
  46802. height: math.unit(7.9, "feet"),
  46803. weight: math.unit(200, "lb"),
  46804. name: "Back (Wizard)",
  46805. image: {
  46806. source: "./media/characters/blizzard/back-wizard.svg"
  46807. }
  46808. },
  46809. frontNsfw: {
  46810. height: math.unit(6, "feet"),
  46811. weight: math.unit(200, "lb"),
  46812. name: "Front (NSFW)",
  46813. image: {
  46814. source: "./media/characters/blizzard/front-nsfw.svg",
  46815. extra: 1136/990,
  46816. bottom: 136/1272
  46817. }
  46818. },
  46819. backNsfw: {
  46820. height: math.unit(6, "feet"),
  46821. weight: math.unit(200, "lb"),
  46822. name: "Back (NSFW)",
  46823. image: {
  46824. source: "./media/characters/blizzard/back-nsfw.svg",
  46825. extra: 1175/1034,
  46826. bottom: 97/1272
  46827. }
  46828. },
  46829. sittingNsfw: {
  46830. height: math.unit(3.725, "feet"),
  46831. weight: math.unit(200, "lb"),
  46832. name: "Sitting (NSFW)",
  46833. image: {
  46834. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46835. extra: 581/485,
  46836. bottom: 90/671
  46837. }
  46838. },
  46839. wizardFrontNsfw: {
  46840. height: math.unit(7.9, "feet"),
  46841. weight: math.unit(200, "lb"),
  46842. name: "Wizard (Front, NSFW)",
  46843. image: {
  46844. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46845. }
  46846. },
  46847. },
  46848. [
  46849. {
  46850. name: "Normal",
  46851. height: math.unit(6, "feet"),
  46852. default: true
  46853. },
  46854. ]
  46855. ))
  46856. characterMakers.push(() => makeCharacter(
  46857. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46858. {
  46859. front: {
  46860. height: math.unit(5 + 2/12, "feet"),
  46861. name: "Front",
  46862. image: {
  46863. source: "./media/characters/lumi/front.svg",
  46864. extra: 1328/1268,
  46865. bottom: 103/1431
  46866. }
  46867. },
  46868. back: {
  46869. height: math.unit(5 + 2/12, "feet"),
  46870. name: "Back",
  46871. image: {
  46872. source: "./media/characters/lumi/back.svg",
  46873. extra: 1381/1327,
  46874. bottom: 43/1424
  46875. }
  46876. },
  46877. },
  46878. [
  46879. {
  46880. name: "Normal",
  46881. height: math.unit(5 + 2/12, "feet"),
  46882. default: true
  46883. },
  46884. ]
  46885. ))
  46886. characterMakers.push(() => makeCharacter(
  46887. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46888. {
  46889. front: {
  46890. height: math.unit(5 + 9/12, "feet"),
  46891. name: "Front",
  46892. image: {
  46893. source: "./media/characters/aliya-cotton/front.svg",
  46894. extra: 577/564,
  46895. bottom: 29/606
  46896. }
  46897. },
  46898. },
  46899. [
  46900. {
  46901. name: "Normal",
  46902. height: math.unit(5 + 9/12, "feet"),
  46903. default: true
  46904. },
  46905. ]
  46906. ))
  46907. characterMakers.push(() => makeCharacter(
  46908. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46909. {
  46910. front: {
  46911. height: math.unit(2.7, "meters"),
  46912. weight: math.unit(25000, "lb"),
  46913. name: "Front",
  46914. image: {
  46915. source: "./media/characters/noah-luxray/front.svg",
  46916. extra: 1644/825,
  46917. bottom: 339/1983
  46918. }
  46919. },
  46920. side: {
  46921. height: math.unit(2.97, "meters"),
  46922. weight: math.unit(25000, "lb"),
  46923. name: "Side",
  46924. image: {
  46925. source: "./media/characters/noah-luxray/side.svg",
  46926. extra: 1319/650,
  46927. bottom: 163/1482
  46928. }
  46929. },
  46930. dick: {
  46931. height: math.unit(7.4, "feet"),
  46932. weight: math.unit(2500, "lb"),
  46933. name: "Dick",
  46934. image: {
  46935. source: "./media/characters/noah-luxray/dick.svg"
  46936. }
  46937. },
  46938. dickAlt: {
  46939. height: math.unit(10.83, "feet"),
  46940. weight: math.unit(2500, "lb"),
  46941. name: "Dick (Alt)",
  46942. image: {
  46943. source: "./media/characters/noah-luxray/dick-alt.svg"
  46944. }
  46945. },
  46946. },
  46947. [
  46948. {
  46949. name: "BIG",
  46950. height: math.unit(2.7, "meters"),
  46951. default: true
  46952. },
  46953. ]
  46954. ))
  46955. characterMakers.push(() => makeCharacter(
  46956. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46957. {
  46958. standing: {
  46959. height: math.unit(183, "cm"),
  46960. weight: math.unit(68, "kg"),
  46961. name: "Standing",
  46962. image: {
  46963. source: "./media/characters/arion/standing.svg",
  46964. extra: 1869/1807,
  46965. bottom: 93/1962
  46966. }
  46967. },
  46968. reclining: {
  46969. height: math.unit(70.5, "cm"),
  46970. weight: math.unit(68, "lb"),
  46971. name: "Reclining",
  46972. image: {
  46973. source: "./media/characters/arion/reclining.svg",
  46974. extra: 937/870,
  46975. bottom: 63/1000
  46976. }
  46977. },
  46978. },
  46979. [
  46980. {
  46981. name: "Colossus Size, Low",
  46982. height: math.unit(33, "meters"),
  46983. default: true
  46984. },
  46985. {
  46986. name: "Colossus Size, Mid",
  46987. height: math.unit(52, "meters")
  46988. },
  46989. {
  46990. name: "Colossus Size, High",
  46991. height: math.unit(60, "meters")
  46992. },
  46993. {
  46994. name: "Titan Size, Low",
  46995. height: math.unit(91, "meters"),
  46996. },
  46997. {
  46998. name: "Titan Size, Mid",
  46999. height: math.unit(122, "meters")
  47000. },
  47001. {
  47002. name: "Titan Size, High",
  47003. height: math.unit(162, "meters")
  47004. },
  47005. ]
  47006. ))
  47007. characterMakers.push(() => makeCharacter(
  47008. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47009. {
  47010. front: {
  47011. height: math.unit(53, "meters"),
  47012. name: "Front",
  47013. image: {
  47014. source: "./media/characters/stellar-marbey/front.svg",
  47015. extra: 1913/1805,
  47016. bottom: 92/2005
  47017. }
  47018. },
  47019. back: {
  47020. height: math.unit(53, "meters"),
  47021. name: "Back",
  47022. image: {
  47023. source: "./media/characters/stellar-marbey/back.svg",
  47024. extra: 1960/1851,
  47025. bottom: 28/1988
  47026. }
  47027. },
  47028. mouth: {
  47029. height: math.unit(3.5, "meters"),
  47030. name: "Mouth",
  47031. image: {
  47032. source: "./media/characters/stellar-marbey/mouth.svg"
  47033. }
  47034. },
  47035. },
  47036. [
  47037. {
  47038. name: "Macro",
  47039. height: math.unit(53, "meters"),
  47040. default: true
  47041. },
  47042. ]
  47043. ))
  47044. characterMakers.push(() => makeCharacter(
  47045. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47046. {
  47047. front: {
  47048. height: math.unit(8 + 1/12, "feet"),
  47049. weight: math.unit(233, "lb"),
  47050. name: "Front",
  47051. image: {
  47052. source: "./media/characters/matsu/front.svg",
  47053. extra: 832/772,
  47054. bottom: 40/872
  47055. }
  47056. },
  47057. back: {
  47058. height: math.unit(8 + 1/12, "feet"),
  47059. weight: math.unit(233, "lb"),
  47060. name: "Back",
  47061. image: {
  47062. source: "./media/characters/matsu/back.svg",
  47063. extra: 839/780,
  47064. bottom: 47/886
  47065. }
  47066. },
  47067. },
  47068. [
  47069. {
  47070. name: "Normal",
  47071. height: math.unit(8 + 1/12, "feet"),
  47072. default: true
  47073. },
  47074. ]
  47075. ))
  47076. characterMakers.push(() => makeCharacter(
  47077. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47078. {
  47079. front: {
  47080. height: math.unit(4, "feet"),
  47081. weight: math.unit(148, "lb"),
  47082. name: "Front",
  47083. image: {
  47084. source: "./media/characters/thiz/front.svg",
  47085. extra: 1913/1748,
  47086. bottom: 62/1975
  47087. }
  47088. },
  47089. },
  47090. [
  47091. {
  47092. name: "Normal",
  47093. height: math.unit(4, "feet"),
  47094. default: true
  47095. },
  47096. ]
  47097. ))
  47098. characterMakers.push(() => makeCharacter(
  47099. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47100. {
  47101. front: {
  47102. height: math.unit(7 + 6/12, "feet"),
  47103. weight: math.unit(267, "lb"),
  47104. name: "Front",
  47105. image: {
  47106. source: "./media/characters/marcel/front.svg",
  47107. extra: 1221/1096,
  47108. bottom: 76/1297
  47109. }
  47110. },
  47111. },
  47112. [
  47113. {
  47114. name: "Normal",
  47115. height: math.unit(7 + 6/12, "feet"),
  47116. default: true
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47122. {
  47123. side: {
  47124. height: math.unit(42, "meters"),
  47125. name: "Side",
  47126. image: {
  47127. source: "./media/characters/flake/side.svg",
  47128. extra: 1525/1306,
  47129. bottom: 209/1734
  47130. }
  47131. },
  47132. },
  47133. [
  47134. {
  47135. name: "Normal",
  47136. height: math.unit(42, "meters"),
  47137. default: true
  47138. },
  47139. ]
  47140. ))
  47141. characterMakers.push(() => makeCharacter(
  47142. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47143. {
  47144. dressed: {
  47145. height: math.unit(6 + 4/12, "feet"),
  47146. weight: math.unit(520, "lb"),
  47147. name: "Dressed",
  47148. image: {
  47149. source: "./media/characters/someonne/dressed.svg",
  47150. extra: 1020/1010,
  47151. bottom: 178/1198
  47152. }
  47153. },
  47154. undressed: {
  47155. height: math.unit(6 + 4/12, "feet"),
  47156. weight: math.unit(520, "lb"),
  47157. name: "Undressed",
  47158. image: {
  47159. source: "./media/characters/someonne/undressed.svg",
  47160. extra: 1019/1014,
  47161. bottom: 169/1188
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Normal",
  47168. height: math.unit(6 + 4/12, "feet"),
  47169. default: true
  47170. },
  47171. ]
  47172. ))
  47173. characterMakers.push(() => makeCharacter(
  47174. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47175. {
  47176. front: {
  47177. height: math.unit(3, "feet"),
  47178. weight: math.unit(30, "lb"),
  47179. name: "Front",
  47180. image: {
  47181. source: "./media/characters/till/front.svg",
  47182. extra: 892/823,
  47183. bottom: 55/947
  47184. }
  47185. },
  47186. },
  47187. [
  47188. {
  47189. name: "Normal",
  47190. height: math.unit(3, "feet"),
  47191. default: true
  47192. },
  47193. ]
  47194. ))
  47195. characterMakers.push(() => makeCharacter(
  47196. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47197. {
  47198. front: {
  47199. height: math.unit(9 + 8/12, "feet"),
  47200. weight: math.unit(800, "lb"),
  47201. name: "Front",
  47202. image: {
  47203. source: "./media/characters/sydney-heki/front.svg",
  47204. extra: 1360/1300,
  47205. bottom: 22/1382
  47206. }
  47207. },
  47208. back: {
  47209. height: math.unit(9 + 8/12, "feet"),
  47210. weight: math.unit(800, "lb"),
  47211. name: "Back",
  47212. image: {
  47213. source: "./media/characters/sydney-heki/back.svg",
  47214. extra: 1356/1293,
  47215. bottom: 12/1368
  47216. }
  47217. },
  47218. frontDressed: {
  47219. height: math.unit(9 + 8/12, "feet"),
  47220. weight: math.unit(800, "lb"),
  47221. name: "Front (Dressed)",
  47222. image: {
  47223. source: "./media/characters/sydney-heki/front-dressed.svg",
  47224. extra: 1360/1300,
  47225. bottom: 22/1382
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Normal",
  47232. height: math.unit(9 + 8/12, "feet"),
  47233. default: true
  47234. },
  47235. {
  47236. name: "Macro",
  47237. height: math.unit(500, "feet")
  47238. },
  47239. {
  47240. name: "Megamacro",
  47241. height: math.unit(3.6, "miles")
  47242. },
  47243. ]
  47244. ))
  47245. characterMakers.push(() => makeCharacter(
  47246. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47247. {
  47248. front: {
  47249. height: math.unit(200, "cm"),
  47250. weight: math.unit(250, "lb"),
  47251. name: "Front",
  47252. image: {
  47253. source: "./media/characters/fowler-karlsson/front.svg",
  47254. extra: 897/845,
  47255. bottom: 123/1020
  47256. }
  47257. },
  47258. back: {
  47259. height: math.unit(200, "cm"),
  47260. weight: math.unit(250, "lb"),
  47261. name: "Back",
  47262. image: {
  47263. source: "./media/characters/fowler-karlsson/back.svg",
  47264. extra: 999/944,
  47265. bottom: 26/1025
  47266. }
  47267. },
  47268. dick: {
  47269. height: math.unit(1.92, "feet"),
  47270. weight: math.unit(150, "lb"),
  47271. name: "Dick",
  47272. image: {
  47273. source: "./media/characters/fowler-karlsson/dick.svg"
  47274. }
  47275. },
  47276. },
  47277. [
  47278. {
  47279. name: "Normal",
  47280. height: math.unit(200, "cm"),
  47281. default: true
  47282. },
  47283. {
  47284. name: "Smaller Macro",
  47285. height: math.unit(90, "m")
  47286. },
  47287. {
  47288. name: "Macro",
  47289. height: math.unit(150, "m")
  47290. },
  47291. {
  47292. name: "Bigger Macro",
  47293. height: math.unit(300, "m")
  47294. },
  47295. ]
  47296. ))
  47297. characterMakers.push(() => makeCharacter(
  47298. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47299. {
  47300. side: {
  47301. height: math.unit(8 + 2/12, "feet"),
  47302. weight: math.unit(1, "tonne"),
  47303. name: "Side",
  47304. image: {
  47305. source: "./media/characters/rylide/side.svg",
  47306. extra: 1318/1034,
  47307. bottom: 106/1424
  47308. }
  47309. },
  47310. sitting: {
  47311. height: math.unit(303, "cm"),
  47312. weight: math.unit(1, "tonne"),
  47313. name: "Sitting",
  47314. image: {
  47315. source: "./media/characters/rylide/sitting.svg",
  47316. extra: 1303/1103,
  47317. bottom: 36/1339
  47318. }
  47319. },
  47320. },
  47321. [
  47322. {
  47323. name: "Normal",
  47324. height: math.unit(8 + 2/12, "feet"),
  47325. default: true
  47326. },
  47327. ]
  47328. ))
  47329. characterMakers.push(() => makeCharacter(
  47330. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47331. {
  47332. front: {
  47333. height: math.unit(5 + 10/12, "feet"),
  47334. weight: math.unit(160, "lb"),
  47335. name: "Front",
  47336. image: {
  47337. source: "./media/characters/pudask/front.svg",
  47338. extra: 1616/1590,
  47339. bottom: 161/1777
  47340. }
  47341. },
  47342. },
  47343. [
  47344. {
  47345. name: "Ferret Height",
  47346. height: math.unit(2 + 5/12, "feet")
  47347. },
  47348. {
  47349. name: "Canon Height",
  47350. height: math.unit(5 + 10/12, "feet"),
  47351. default: true
  47352. },
  47353. ]
  47354. ))
  47355. characterMakers.push(() => makeCharacter(
  47356. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47357. {
  47358. front: {
  47359. height: math.unit(3 + 6/12, "feet"),
  47360. weight: math.unit(60, "lb"),
  47361. name: "Front",
  47362. image: {
  47363. source: "./media/characters/ramita/front.svg",
  47364. extra: 1402/1232,
  47365. bottom: 62/1464
  47366. }
  47367. },
  47368. dressed: {
  47369. height: math.unit(3 + 6/12, "feet"),
  47370. weight: math.unit(60, "lb"),
  47371. name: "Dressed",
  47372. image: {
  47373. source: "./media/characters/ramita/dressed.svg",
  47374. extra: 1534/1249,
  47375. bottom: 50/1584
  47376. }
  47377. },
  47378. },
  47379. [
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(3 + 6/12, "feet"),
  47383. default: true
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47389. {
  47390. front: {
  47391. height: math.unit(8, "feet"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/ark/front.svg",
  47395. extra: 772/693,
  47396. bottom: 45/817
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(8, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(6, "feet"),
  47413. weight: math.unit(250, "lb"),
  47414. volume: math.unit(5/8, "gallons"),
  47415. name: "Front",
  47416. image: {
  47417. source: "./media/characters/ludwig-horn/front.svg",
  47418. extra: 1782/1635,
  47419. bottom: 96/1878
  47420. }
  47421. },
  47422. back: {
  47423. height: math.unit(6, "feet"),
  47424. weight: math.unit(250, "lb"),
  47425. volume: math.unit(5/8, "gallons"),
  47426. name: "Back",
  47427. image: {
  47428. source: "./media/characters/ludwig-horn/back.svg",
  47429. extra: 1874/1729,
  47430. bottom: 27/1901
  47431. }
  47432. },
  47433. dick: {
  47434. height: math.unit(1.05, "feet"),
  47435. weight: math.unit(15, "lb"),
  47436. volume: math.unit(5/8, "gallons"),
  47437. name: "Dick",
  47438. image: {
  47439. source: "./media/characters/ludwig-horn/dick.svg"
  47440. }
  47441. },
  47442. },
  47443. [
  47444. {
  47445. name: "Small",
  47446. height: math.unit(6, "feet")
  47447. },
  47448. {
  47449. name: "Typical",
  47450. height: math.unit(12, "feet"),
  47451. default: true
  47452. },
  47453. {
  47454. name: "Building",
  47455. height: math.unit(80, "feet")
  47456. },
  47457. {
  47458. name: "Town",
  47459. height: math.unit(800, "feet")
  47460. },
  47461. {
  47462. name: "Kingdom",
  47463. height: math.unit(80000, "feet")
  47464. },
  47465. {
  47466. name: "Planet",
  47467. height: math.unit(8000000, "feet")
  47468. },
  47469. {
  47470. name: "Universe",
  47471. height: math.unit(8000000000, "feet")
  47472. },
  47473. {
  47474. name: "Transcended",
  47475. height: math.unit(8e27, "feet")
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(5, "feet"),
  47484. weight: math.unit(50, "kg"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/biot-avery/front.svg",
  47488. extra: 1295/1232,
  47489. bottom: 86/1381
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Normal",
  47496. height: math.unit(5, "feet"),
  47497. default: true
  47498. },
  47499. ]
  47500. ))
  47501. characterMakers.push(() => makeCharacter(
  47502. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47503. {
  47504. front: {
  47505. height: math.unit(6, "feet"),
  47506. name: "Front",
  47507. image: {
  47508. source: "./media/characters/kitsune-kiro/front.svg",
  47509. extra: 1270/1158,
  47510. bottom: 42/1312
  47511. }
  47512. },
  47513. frontAlt: {
  47514. height: math.unit(6, "feet"),
  47515. name: "Front (Alt)",
  47516. image: {
  47517. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47518. extra: 1130/1081,
  47519. bottom: 36/1166
  47520. }
  47521. },
  47522. },
  47523. [
  47524. {
  47525. name: "Smol",
  47526. height: math.unit(3, "feet")
  47527. },
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(6, "feet"),
  47531. default: true
  47532. },
  47533. ]
  47534. ))
  47535. characterMakers.push(() => makeCharacter(
  47536. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47537. {
  47538. front: {
  47539. height: math.unit(6, "feet"),
  47540. weight: math.unit(125, "lb"),
  47541. name: "Front",
  47542. image: {
  47543. source: "./media/characters/jack-thatcher/front.svg",
  47544. extra: 1474/1370,
  47545. bottom: 26/1500
  47546. }
  47547. },
  47548. back: {
  47549. height: math.unit(6, "feet"),
  47550. weight: math.unit(125, "lb"),
  47551. name: "Back",
  47552. image: {
  47553. source: "./media/characters/jack-thatcher/back.svg",
  47554. extra: 1489/1384,
  47555. bottom: 18/1507
  47556. }
  47557. },
  47558. },
  47559. [
  47560. {
  47561. name: "Normal",
  47562. height: math.unit(6, "feet"),
  47563. default: true
  47564. },
  47565. {
  47566. name: "Macro",
  47567. height: math.unit(75, "feet")
  47568. },
  47569. {
  47570. name: "Macro-er",
  47571. height: math.unit(250, "feet")
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(7, "feet"),
  47580. weight: math.unit(110, "kg"),
  47581. name: "Front",
  47582. image: {
  47583. source: "./media/characters/max-hyper/front.svg",
  47584. extra: 1969/1881,
  47585. bottom: 49/2018
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Normal",
  47592. height: math.unit(7, "feet"),
  47593. default: true
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(5 + 5/12, "feet"),
  47602. weight: math.unit(160, "lb"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/spook/front.svg",
  47606. extra: 794/791,
  47607. bottom: 54/848
  47608. }
  47609. },
  47610. back: {
  47611. height: math.unit(5 + 5/12, "feet"),
  47612. weight: math.unit(160, "lb"),
  47613. name: "Back",
  47614. image: {
  47615. source: "./media/characters/spook/back.svg",
  47616. extra: 812/798,
  47617. bottom: 32/844
  47618. }
  47619. },
  47620. },
  47621. [
  47622. {
  47623. name: "Normal",
  47624. height: math.unit(5 + 5/12, "feet"),
  47625. default: true
  47626. },
  47627. ]
  47628. ))
  47629. characterMakers.push(() => makeCharacter(
  47630. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47631. {
  47632. front: {
  47633. height: math.unit(18, "feet"),
  47634. name: "Front",
  47635. image: {
  47636. source: "./media/characters/xeaduulix/front.svg",
  47637. extra: 1380/1166,
  47638. bottom: 110/1490
  47639. }
  47640. },
  47641. back: {
  47642. height: math.unit(18, "feet"),
  47643. name: "Back",
  47644. image: {
  47645. source: "./media/characters/xeaduulix/back.svg",
  47646. extra: 1592/1170,
  47647. bottom: 128/1720
  47648. }
  47649. },
  47650. frontNsfw: {
  47651. height: math.unit(18, "feet"),
  47652. name: "Front (NSFW)",
  47653. image: {
  47654. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47655. extra: 1380/1166,
  47656. bottom: 110/1490
  47657. }
  47658. },
  47659. backNsfw: {
  47660. height: math.unit(18, "feet"),
  47661. name: "Back (NSFW)",
  47662. image: {
  47663. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47664. extra: 1592/1170,
  47665. bottom: 128/1720
  47666. }
  47667. },
  47668. },
  47669. [
  47670. {
  47671. name: "Normal",
  47672. height: math.unit(18, "feet"),
  47673. default: true
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47679. {
  47680. spreadWings: {
  47681. height: math.unit(20, "feet"),
  47682. name: "Spread Wings",
  47683. image: {
  47684. source: "./media/characters/fledge/spread-wings.svg",
  47685. extra: 693/635,
  47686. bottom: 26/719
  47687. }
  47688. },
  47689. front: {
  47690. height: math.unit(20, "feet"),
  47691. name: "Front",
  47692. image: {
  47693. source: "./media/characters/fledge/front.svg",
  47694. extra: 684/637,
  47695. bottom: 18/702
  47696. }
  47697. },
  47698. frontAlt: {
  47699. height: math.unit(20, "feet"),
  47700. name: "Front (Alt)",
  47701. image: {
  47702. source: "./media/characters/fledge/front-alt.svg",
  47703. extra: 708/664,
  47704. bottom: 13/721
  47705. }
  47706. },
  47707. back: {
  47708. height: math.unit(20, "feet"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/fledge/back.svg",
  47712. extra: 718/634,
  47713. bottom: 22/740
  47714. }
  47715. },
  47716. head: {
  47717. height: math.unit(5.55, "feet"),
  47718. name: "Head",
  47719. image: {
  47720. source: "./media/characters/fledge/head.svg"
  47721. }
  47722. },
  47723. headAlt: {
  47724. height: math.unit(5.1, "feet"),
  47725. name: "Head (Alt)",
  47726. image: {
  47727. source: "./media/characters/fledge/head-alt.svg"
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Small",
  47734. height: math.unit(6 + 2/12, "feet")
  47735. },
  47736. {
  47737. name: "Big",
  47738. height: math.unit(20, "feet"),
  47739. default: true
  47740. },
  47741. {
  47742. name: "Giant",
  47743. height: math.unit(100, "feet")
  47744. },
  47745. {
  47746. name: "Macro",
  47747. height: math.unit(200, "feet")
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(1, "meter"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/atlas-morenai/front.svg",
  47759. extra: 1275/1043,
  47760. bottom: 19/1294
  47761. }
  47762. },
  47763. back: {
  47764. height: math.unit(1, "meter"),
  47765. name: "Back",
  47766. image: {
  47767. source: "./media/characters/atlas-morenai/back.svg",
  47768. extra: 1141/1001,
  47769. bottom: 25/1166
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Normal",
  47776. height: math.unit(1, "meter"),
  47777. default: true
  47778. },
  47779. {
  47780. name: "Magic-Infused",
  47781. height: math.unit(5, "meters")
  47782. },
  47783. ]
  47784. ))
  47785. characterMakers.push(() => makeCharacter(
  47786. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47787. {
  47788. front: {
  47789. height: math.unit(5, "meters"),
  47790. name: "Front",
  47791. image: {
  47792. source: "./media/characters/cintia/front.svg",
  47793. extra: 1312/1228,
  47794. bottom: 38/1350
  47795. }
  47796. },
  47797. back: {
  47798. height: math.unit(5, "meters"),
  47799. name: "Back",
  47800. image: {
  47801. source: "./media/characters/cintia/back.svg",
  47802. extra: 1260/1166,
  47803. bottom: 98/1358
  47804. }
  47805. },
  47806. frontDick: {
  47807. height: math.unit(5, "meters"),
  47808. name: "Front (Dick)",
  47809. image: {
  47810. source: "./media/characters/cintia/front-dick.svg",
  47811. extra: 1312/1228,
  47812. bottom: 38/1350
  47813. }
  47814. },
  47815. backDick: {
  47816. height: math.unit(5, "meters"),
  47817. name: "Back (Dick)",
  47818. image: {
  47819. source: "./media/characters/cintia/back-dick.svg",
  47820. extra: 1260/1166,
  47821. bottom: 98/1358
  47822. }
  47823. },
  47824. bust: {
  47825. height: math.unit(1.97, "meters"),
  47826. name: "Bust",
  47827. image: {
  47828. source: "./media/characters/cintia/bust.svg",
  47829. extra: 617/565,
  47830. bottom: 0/617
  47831. }
  47832. },
  47833. },
  47834. [
  47835. {
  47836. name: "Normal",
  47837. height: math.unit(5, "meters"),
  47838. default: true
  47839. },
  47840. ]
  47841. ))
  47842. characterMakers.push(() => makeCharacter(
  47843. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47844. {
  47845. side: {
  47846. height: math.unit(100, "feet"),
  47847. name: "Side",
  47848. image: {
  47849. source: "./media/characters/denora/side.svg",
  47850. extra: 875/803,
  47851. bottom: 9/884
  47852. }
  47853. },
  47854. },
  47855. [
  47856. {
  47857. name: "Standard",
  47858. height: math.unit(100, "feet"),
  47859. default: true
  47860. },
  47861. {
  47862. name: "Grand",
  47863. height: math.unit(1000, "feet")
  47864. },
  47865. {
  47866. name: "Conquering",
  47867. height: math.unit(10000, "feet")
  47868. },
  47869. ]
  47870. ))
  47871. characterMakers.push(() => makeCharacter(
  47872. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47873. {
  47874. front: {
  47875. height: math.unit(8 + 5/12, "feet"),
  47876. weight: math.unit(700, "lb"),
  47877. name: "Front",
  47878. image: {
  47879. source: "./media/characters/kiva/front.svg",
  47880. extra: 419/406,
  47881. bottom: 30/449
  47882. }
  47883. },
  47884. sideDressed: {
  47885. height: math.unit(8 + 5/12, "feet"),
  47886. weight: math.unit(700, "lb"),
  47887. name: "Side (Dressed)",
  47888. image: {
  47889. source: "./media/characters/kiva/side-dressed.svg",
  47890. extra: 1102/1055,
  47891. bottom: 60/1162
  47892. }
  47893. },
  47894. sideNude: {
  47895. height: math.unit(8 + 5/12, "feet"),
  47896. weight: math.unit(700, "lb"),
  47897. name: "Side (Nude)",
  47898. image: {
  47899. source: "./media/characters/kiva/side-nude.svg",
  47900. extra: 1102/1055,
  47901. bottom: 60/1162
  47902. }
  47903. },
  47904. },
  47905. [
  47906. {
  47907. name: "Base Height",
  47908. height: math.unit(8 + 5/12, "feet"),
  47909. default: true
  47910. },
  47911. {
  47912. name: "Macro",
  47913. height: math.unit(100, "feet")
  47914. },
  47915. {
  47916. name: "Max",
  47917. height: math.unit(3280, "feet")
  47918. },
  47919. ]
  47920. ))
  47921. characterMakers.push(() => makeCharacter(
  47922. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47923. {
  47924. front: {
  47925. height: math.unit(6 + 8/12, "feet"),
  47926. weight: math.unit(250, "lb"),
  47927. name: "Front",
  47928. image: {
  47929. source: "./media/characters/ztragon/front.svg",
  47930. extra: 1825/1684,
  47931. bottom: 98/1923
  47932. }
  47933. },
  47934. },
  47935. [
  47936. {
  47937. name: "Normal",
  47938. height: math.unit(6 + 8/12, "feet"),
  47939. default: true
  47940. },
  47941. {
  47942. name: "Macro",
  47943. height: math.unit(80, "feet")
  47944. },
  47945. ]
  47946. ))
  47947. characterMakers.push(() => makeCharacter(
  47948. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47949. {
  47950. front: {
  47951. height: math.unit(10.4, "feet"),
  47952. weight: math.unit(2, "tons"),
  47953. name: "Front",
  47954. image: {
  47955. source: "./media/characters/yesenia/front.svg",
  47956. extra: 1479/1474,
  47957. bottom: 233/1712
  47958. }
  47959. },
  47960. },
  47961. [
  47962. {
  47963. name: "Normal",
  47964. height: math.unit(10.4, "feet"),
  47965. default: true
  47966. },
  47967. ]
  47968. ))
  47969. characterMakers.push(() => makeCharacter(
  47970. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47971. {
  47972. normal: {
  47973. height: math.unit(6 + 1/12, "feet"),
  47974. weight: math.unit(180, "lb"),
  47975. name: "Normal",
  47976. image: {
  47977. source: "./media/characters/leanne-lycheborne/normal.svg",
  47978. extra: 1748/1660,
  47979. bottom: 98/1846
  47980. }
  47981. },
  47982. were: {
  47983. height: math.unit(12, "feet"),
  47984. weight: math.unit(1600, "lb"),
  47985. name: "Were",
  47986. image: {
  47987. source: "./media/characters/leanne-lycheborne/were.svg",
  47988. extra: 1485/1432,
  47989. bottom: 66/1551
  47990. }
  47991. },
  47992. },
  47993. [
  47994. {
  47995. name: "Normal",
  47996. height: math.unit(6 + 1/12, "feet"),
  47997. default: true
  47998. },
  47999. ]
  48000. ))
  48001. characterMakers.push(() => makeCharacter(
  48002. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48003. {
  48004. side: {
  48005. height: math.unit(13, "feet"),
  48006. name: "Side",
  48007. image: {
  48008. source: "./media/characters/kira-tyler/side.svg",
  48009. extra: 693/393,
  48010. bottom: 58/751
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Normal",
  48017. height: math.unit(13, "feet"),
  48018. default: true
  48019. },
  48020. ]
  48021. ))
  48022. characterMakers.push(() => makeCharacter(
  48023. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48024. {
  48025. front: {
  48026. height: math.unit(10.3, "feet"),
  48027. weight: math.unit(150, "lb"),
  48028. name: "Front",
  48029. image: {
  48030. source: "./media/characters/blaze/front.svg",
  48031. extra: 1378/1286,
  48032. bottom: 172/1550
  48033. }
  48034. },
  48035. },
  48036. [
  48037. {
  48038. name: "Normal",
  48039. height: math.unit(10.3, "feet"),
  48040. default: true
  48041. },
  48042. ]
  48043. ))
  48044. characterMakers.push(() => makeCharacter(
  48045. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48046. {
  48047. side: {
  48048. height: math.unit(2, "meters"),
  48049. weight: math.unit(400, "kg"),
  48050. name: "Side",
  48051. image: {
  48052. source: "./media/characters/anu/side.svg",
  48053. extra: 506/394,
  48054. bottom: 18/524
  48055. }
  48056. },
  48057. },
  48058. [
  48059. {
  48060. name: "Humanoid",
  48061. height: math.unit(2, "meters")
  48062. },
  48063. {
  48064. name: "Normal",
  48065. height: math.unit(5, "meters"),
  48066. default: true
  48067. },
  48068. ]
  48069. ))
  48070. characterMakers.push(() => makeCharacter(
  48071. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48072. {
  48073. front: {
  48074. height: math.unit(5 + 5/12, "feet"),
  48075. weight: math.unit(170, "lb"),
  48076. name: "Front",
  48077. image: {
  48078. source: "./media/characters/synx-the-lynx/front.svg",
  48079. extra: 1893/1745,
  48080. bottom: 17/1910
  48081. }
  48082. },
  48083. side: {
  48084. height: math.unit(5 + 5/12, "feet"),
  48085. weight: math.unit(170, "lb"),
  48086. name: "Side",
  48087. image: {
  48088. source: "./media/characters/synx-the-lynx/side.svg",
  48089. extra: 1884/1740,
  48090. bottom: 39/1923
  48091. }
  48092. },
  48093. back: {
  48094. height: math.unit(5 + 5/12, "feet"),
  48095. weight: math.unit(170, "lb"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/synx-the-lynx/back.svg",
  48099. extra: 1903/1755,
  48100. bottom: 14/1917
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Normal",
  48107. height: math.unit(5 + 5/12, "feet"),
  48108. default: true
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48114. {
  48115. back: {
  48116. height: math.unit(15, "feet"),
  48117. name: "Back",
  48118. image: {
  48119. source: "./media/characters/nadezda-fex/back.svg",
  48120. extra: 1695/1481,
  48121. bottom: 25/1720
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(15, "feet"),
  48129. default: true
  48130. },
  48131. {
  48132. name: "Macro",
  48133. height: math.unit(2.5, "miles")
  48134. },
  48135. {
  48136. name: "Goddess",
  48137. height: math.unit(2, "multiverses")
  48138. },
  48139. ]
  48140. ))
  48141. characterMakers.push(() => makeCharacter(
  48142. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48143. {
  48144. front: {
  48145. height: math.unit(216, "cm"),
  48146. name: "Front",
  48147. image: {
  48148. source: "./media/characters/lev/front.svg",
  48149. extra: 1728/1670,
  48150. bottom: 82/1810
  48151. }
  48152. },
  48153. back: {
  48154. height: math.unit(216, "cm"),
  48155. name: "Back",
  48156. image: {
  48157. source: "./media/characters/lev/back.svg",
  48158. extra: 1738/1675,
  48159. bottom: 24/1762
  48160. }
  48161. },
  48162. dressed: {
  48163. height: math.unit(216, "cm"),
  48164. name: "Dressed",
  48165. image: {
  48166. source: "./media/characters/lev/dressed.svg",
  48167. extra: 1397/1351,
  48168. bottom: 73/1470
  48169. }
  48170. },
  48171. head: {
  48172. height: math.unit(0.51, "meter"),
  48173. name: "Head",
  48174. image: {
  48175. source: "./media/characters/lev/head.svg"
  48176. }
  48177. },
  48178. },
  48179. [
  48180. {
  48181. name: "Normal",
  48182. height: math.unit(216, "cm"),
  48183. default: true
  48184. },
  48185. {
  48186. name: "Relatively Macro",
  48187. height: math.unit(80, "meters")
  48188. },
  48189. {
  48190. name: "Megamacro",
  48191. height: math.unit(21600, "meters")
  48192. },
  48193. {
  48194. name: "Megamacro+",
  48195. height: math.unit(64800, "meters")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(2, "meters"),
  48204. weight: math.unit(80, "kg"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/moka/front.svg",
  48208. extra: 1337/1255,
  48209. bottom: 58/1395
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Micro",
  48216. height: math.unit(15, "cm")
  48217. },
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(2, "meters"),
  48221. default: true
  48222. },
  48223. {
  48224. name: "Macro",
  48225. height: math.unit(20, "meters"),
  48226. },
  48227. ]
  48228. ))
  48229. characterMakers.push(() => makeCharacter(
  48230. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48231. {
  48232. front: {
  48233. height: math.unit(9, "feet"),
  48234. weight: math.unit(240, "lb"),
  48235. name: "Front",
  48236. image: {
  48237. source: "./media/characters/kuzco/front.svg",
  48238. extra: 1593/1487,
  48239. bottom: 32/1625
  48240. }
  48241. },
  48242. side: {
  48243. height: math.unit(9, "feet"),
  48244. weight: math.unit(240, "lb"),
  48245. name: "Side",
  48246. image: {
  48247. source: "./media/characters/kuzco/side.svg",
  48248. extra: 1575/1485,
  48249. bottom: 30/1605
  48250. }
  48251. },
  48252. back: {
  48253. height: math.unit(9, "feet"),
  48254. weight: math.unit(240, "lb"),
  48255. name: "Back",
  48256. image: {
  48257. source: "./media/characters/kuzco/back.svg",
  48258. extra: 1603/1514,
  48259. bottom: 14/1617
  48260. }
  48261. },
  48262. },
  48263. [
  48264. {
  48265. name: "Normal",
  48266. height: math.unit(9, "feet"),
  48267. default: true
  48268. },
  48269. ]
  48270. ))
  48271. characterMakers.push(() => makeCharacter(
  48272. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48273. {
  48274. side: {
  48275. height: math.unit(2, "meters"),
  48276. weight: math.unit(300, "kg"),
  48277. name: "Side",
  48278. image: {
  48279. source: "./media/characters/ceruleus/side.svg",
  48280. extra: 1068/974,
  48281. bottom: 126/1194
  48282. }
  48283. },
  48284. maw: {
  48285. height: math.unit(0.8125, "meter"),
  48286. name: "Maw",
  48287. image: {
  48288. source: "./media/characters/ceruleus/maw.svg"
  48289. }
  48290. },
  48291. },
  48292. [
  48293. {
  48294. name: "Normal",
  48295. height: math.unit(16, "meters"),
  48296. default: true
  48297. },
  48298. ]
  48299. ))
  48300. characterMakers.push(() => makeCharacter(
  48301. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48302. {
  48303. front: {
  48304. height: math.unit(9, "feet"),
  48305. weight: math.unit(500, "kg"),
  48306. name: "Front",
  48307. image: {
  48308. source: "./media/characters/acouya/front.svg",
  48309. extra: 1660/1473,
  48310. bottom: 28/1688
  48311. }
  48312. },
  48313. },
  48314. [
  48315. {
  48316. name: "Normal",
  48317. height: math.unit(9, "feet"),
  48318. default: true
  48319. },
  48320. ]
  48321. ))
  48322. characterMakers.push(() => makeCharacter(
  48323. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48324. {
  48325. front: {
  48326. height: math.unit(5 + 6/12, "feet"),
  48327. weight: math.unit(195, "lb"),
  48328. name: "Front",
  48329. image: {
  48330. source: "./media/characters/vant/front.svg",
  48331. extra: 1396/1320,
  48332. bottom: 20/1416
  48333. }
  48334. },
  48335. back: {
  48336. height: math.unit(5 + 6/12, "feet"),
  48337. weight: math.unit(195, "lb"),
  48338. name: "Back",
  48339. image: {
  48340. source: "./media/characters/vant/back.svg",
  48341. extra: 1396/1320,
  48342. bottom: 20/1416
  48343. }
  48344. },
  48345. maw: {
  48346. height: math.unit(0.75, "feet"),
  48347. name: "Maw",
  48348. image: {
  48349. source: "./media/characters/vant/maw.svg"
  48350. }
  48351. },
  48352. paw: {
  48353. height: math.unit(1.07, "feet"),
  48354. name: "Paw",
  48355. image: {
  48356. source: "./media/characters/vant/paw.svg"
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Micro",
  48363. height: math.unit(0.25, "inches")
  48364. },
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(5 + 6/12, "feet"),
  48368. default: true
  48369. },
  48370. {
  48371. name: "Macro",
  48372. height: math.unit(75, "feet")
  48373. },
  48374. ]
  48375. ))
  48376. characterMakers.push(() => makeCharacter(
  48377. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48378. {
  48379. front: {
  48380. height: math.unit(30, "meters"),
  48381. weight: math.unit(363, "tons"),
  48382. name: "Front",
  48383. image: {
  48384. source: "./media/characters/ahra/front.svg",
  48385. extra: 1914/1814,
  48386. bottom: 46/1960
  48387. }
  48388. },
  48389. },
  48390. [
  48391. {
  48392. name: "Macro",
  48393. height: math.unit(30, "meters"),
  48394. default: true
  48395. },
  48396. ]
  48397. ))
  48398. characterMakers.push(() => makeCharacter(
  48399. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48400. {
  48401. undressed: {
  48402. height: math.unit(2, "m"),
  48403. weight: math.unit(250, "kg"),
  48404. name: "Undressed",
  48405. image: {
  48406. source: "./media/characters/coriander/undressed.svg",
  48407. extra: 1757/1606,
  48408. bottom: 107/1864
  48409. }
  48410. },
  48411. dressed: {
  48412. height: math.unit(2, "m"),
  48413. weight: math.unit(250, "kg"),
  48414. name: "Dressed",
  48415. image: {
  48416. source: "./media/characters/coriander/dressed.svg",
  48417. extra: 1757/1606,
  48418. bottom: 107/1864
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Normal",
  48425. height: math.unit(4, "meters"),
  48426. default: true
  48427. },
  48428. {
  48429. name: "XL",
  48430. height: math.unit(6, "meters")
  48431. },
  48432. {
  48433. name: "XXL",
  48434. height: math.unit(8, "meters")
  48435. },
  48436. ]
  48437. ))
  48438. characterMakers.push(() => makeCharacter(
  48439. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48440. {
  48441. front: {
  48442. height: math.unit(6, "feet"),
  48443. name: "Front",
  48444. image: {
  48445. source: "./media/characters/syrinx/front.svg",
  48446. extra: 1557/1259,
  48447. bottom: 171/1728
  48448. }
  48449. },
  48450. },
  48451. [
  48452. {
  48453. name: "Normal",
  48454. height: math.unit(6 + 3/12, "feet"),
  48455. default: true
  48456. },
  48457. ]
  48458. ))
  48459. characterMakers.push(() => makeCharacter(
  48460. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48461. {
  48462. front: {
  48463. height: math.unit(11 + 6/12, "feet"),
  48464. weight: math.unit(1.5, "tons"),
  48465. name: "Front",
  48466. image: {
  48467. source: "./media/characters/bor/front.svg",
  48468. extra: 1189/1109,
  48469. bottom: 170/1359
  48470. }
  48471. },
  48472. },
  48473. [
  48474. {
  48475. name: "Normal",
  48476. height: math.unit(11 + 6/12, "feet"),
  48477. default: true
  48478. },
  48479. {
  48480. name: "Macro",
  48481. height: math.unit(32 + 9/12, "feet")
  48482. },
  48483. ]
  48484. ))
  48485. characterMakers.push(() => makeCharacter(
  48486. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48487. {
  48488. anthro: {
  48489. height: math.unit(9, "feet"),
  48490. weight: math.unit(2076, "lb"),
  48491. name: "Anthro",
  48492. image: {
  48493. source: "./media/characters/abacus/anthro.svg",
  48494. extra: 1540/1494,
  48495. bottom: 233/1773
  48496. }
  48497. },
  48498. pigeon: {
  48499. height: math.unit(1, "feet"),
  48500. name: "Pigeon",
  48501. image: {
  48502. source: "./media/characters/abacus/pigeon.svg",
  48503. extra: 528/525,
  48504. bottom: 46/574
  48505. }
  48506. },
  48507. },
  48508. [
  48509. {
  48510. name: "Normal",
  48511. height: math.unit(9, "feet"),
  48512. default: true
  48513. },
  48514. ]
  48515. ))
  48516. characterMakers.push(() => makeCharacter(
  48517. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48518. {
  48519. side: {
  48520. height: math.unit(6, "feet"),
  48521. name: "Side",
  48522. image: {
  48523. source: "./media/characters/delkhan/side.svg",
  48524. extra: 1884/1786,
  48525. bottom: 308/2192
  48526. }
  48527. },
  48528. head: {
  48529. height: math.unit(3.38, "feet"),
  48530. name: "Head",
  48531. image: {
  48532. source: "./media/characters/delkhan/head.svg"
  48533. }
  48534. },
  48535. },
  48536. [
  48537. {
  48538. name: "Normal",
  48539. height: math.unit(72, "feet"),
  48540. default: true
  48541. },
  48542. {
  48543. name: "Giant",
  48544. height: math.unit(172, "feet")
  48545. },
  48546. ]
  48547. ))
  48548. characterMakers.push(() => makeCharacter(
  48549. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48550. {
  48551. standing: {
  48552. height: math.unit(6, "feet"),
  48553. name: "Standing",
  48554. image: {
  48555. source: "./media/characters/euchidat/standing.svg",
  48556. extra: 1612/1553,
  48557. bottom: 116/1728
  48558. }
  48559. },
  48560. leaning: {
  48561. height: math.unit(6, "feet"),
  48562. name: "Leaning",
  48563. image: {
  48564. source: "./media/characters/euchidat/leaning.svg",
  48565. extra: 1719/1674,
  48566. bottom: 27/1746
  48567. }
  48568. },
  48569. },
  48570. [
  48571. {
  48572. name: "Normal",
  48573. height: math.unit(175, "feet"),
  48574. default: true
  48575. },
  48576. {
  48577. name: "Megamacro",
  48578. height: math.unit(190, "miles")
  48579. },
  48580. {
  48581. name: "Gigamacro",
  48582. height: math.unit(190000, "miles")
  48583. },
  48584. ]
  48585. ))
  48586. characterMakers.push(() => makeCharacter(
  48587. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48588. {
  48589. front: {
  48590. height: math.unit(6, "feet"),
  48591. weight: math.unit(150, "lb"),
  48592. name: "Front",
  48593. image: {
  48594. source: "./media/characters/rebecca-stack/front.svg",
  48595. extra: 1256/1201,
  48596. bottom: 18/1274
  48597. }
  48598. },
  48599. },
  48600. [
  48601. {
  48602. name: "Normal",
  48603. height: math.unit(5 + 8/12, "feet"),
  48604. default: true
  48605. },
  48606. {
  48607. name: "Demolitionist",
  48608. height: math.unit(200, "feet")
  48609. },
  48610. {
  48611. name: "Out of Control",
  48612. height: math.unit(2, "miles")
  48613. },
  48614. {
  48615. name: "Giga",
  48616. height: math.unit(7200, "miles")
  48617. },
  48618. ]
  48619. ))
  48620. characterMakers.push(() => makeCharacter(
  48621. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48622. {
  48623. front: {
  48624. height: math.unit(6, "feet"),
  48625. weight: math.unit(150, "lb"),
  48626. name: "Front",
  48627. image: {
  48628. source: "./media/characters/jenny-cartwright/front.svg",
  48629. extra: 1384/1376,
  48630. bottom: 58/1442
  48631. }
  48632. },
  48633. },
  48634. [
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(6 + 7/12, "feet"),
  48638. default: true
  48639. },
  48640. {
  48641. name: "Librarian",
  48642. height: math.unit(55, "feet")
  48643. },
  48644. {
  48645. name: "Sightseer",
  48646. height: math.unit(50, "miles")
  48647. },
  48648. {
  48649. name: "Giga",
  48650. height: math.unit(30000, "miles")
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48656. {
  48657. nude: {
  48658. height: math.unit(8, "feet"),
  48659. weight: math.unit(225, "lb"),
  48660. name: "Nude",
  48661. image: {
  48662. source: "./media/characters/marvy/nude.svg",
  48663. extra: 1900/1683,
  48664. bottom: 89/1989
  48665. }
  48666. },
  48667. dressed: {
  48668. height: math.unit(8, "feet"),
  48669. weight: math.unit(225, "lb"),
  48670. name: "Dressed",
  48671. image: {
  48672. source: "./media/characters/marvy/dressed.svg",
  48673. extra: 1900/1683,
  48674. bottom: 89/1989
  48675. }
  48676. },
  48677. head: {
  48678. height: math.unit(2.85, "feet"),
  48679. name: "Head",
  48680. image: {
  48681. source: "./media/characters/marvy/head.svg"
  48682. }
  48683. },
  48684. },
  48685. [
  48686. {
  48687. name: "Normal",
  48688. height: math.unit(8, "feet"),
  48689. default: true
  48690. },
  48691. ]
  48692. ))
  48693. characterMakers.push(() => makeCharacter(
  48694. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48695. {
  48696. front: {
  48697. height: math.unit(8, "feet"),
  48698. weight: math.unit(250, "lb"),
  48699. name: "Front",
  48700. image: {
  48701. source: "./media/characters/leah/front.svg",
  48702. extra: 1257/1149,
  48703. bottom: 109/1366
  48704. }
  48705. },
  48706. },
  48707. [
  48708. {
  48709. name: "Normal",
  48710. height: math.unit(8, "feet"),
  48711. default: true
  48712. },
  48713. {
  48714. name: "Minimacro",
  48715. height: math.unit(40, "feet")
  48716. },
  48717. {
  48718. name: "Macro",
  48719. height: math.unit(124, "feet")
  48720. },
  48721. {
  48722. name: "Megamacro",
  48723. height: math.unit(850, "feet")
  48724. },
  48725. ]
  48726. ))
  48727. characterMakers.push(() => makeCharacter(
  48728. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48729. {
  48730. side: {
  48731. height: math.unit(13 + 6/12, "feet"),
  48732. weight: math.unit(3200, "lb"),
  48733. name: "Side",
  48734. image: {
  48735. source: "./media/characters/alvir/side.svg",
  48736. extra: 896/589,
  48737. bottom: 26/922
  48738. }
  48739. },
  48740. },
  48741. [
  48742. {
  48743. name: "Normal",
  48744. height: math.unit(13 + 6/12, "feet"),
  48745. default: true
  48746. },
  48747. ]
  48748. ))
  48749. characterMakers.push(() => makeCharacter(
  48750. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48751. {
  48752. front: {
  48753. height: math.unit(5 + 4/12, "feet"),
  48754. weight: math.unit(236, "lb"),
  48755. name: "Front",
  48756. image: {
  48757. source: "./media/characters/zaina-khalil/front.svg",
  48758. extra: 1533/1485,
  48759. bottom: 94/1627
  48760. }
  48761. },
  48762. side: {
  48763. height: math.unit(5 + 4/12, "feet"),
  48764. weight: math.unit(236, "lb"),
  48765. name: "Side",
  48766. image: {
  48767. source: "./media/characters/zaina-khalil/side.svg",
  48768. extra: 1537/1498,
  48769. bottom: 66/1603
  48770. }
  48771. },
  48772. back: {
  48773. height: math.unit(5 + 4/12, "feet"),
  48774. weight: math.unit(236, "lb"),
  48775. name: "Back",
  48776. image: {
  48777. source: "./media/characters/zaina-khalil/back.svg",
  48778. extra: 1546/1494,
  48779. bottom: 89/1635
  48780. }
  48781. },
  48782. },
  48783. [
  48784. {
  48785. name: "Normal",
  48786. height: math.unit(5 + 4/12, "feet"),
  48787. default: true
  48788. },
  48789. ]
  48790. ))
  48791. characterMakers.push(() => makeCharacter(
  48792. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48793. {
  48794. side: {
  48795. height: math.unit(12, "feet"),
  48796. weight: math.unit(4000, "lb"),
  48797. name: "Side",
  48798. image: {
  48799. source: "./media/characters/terry/side.svg",
  48800. extra: 1518/1439,
  48801. bottom: 149/1667
  48802. }
  48803. },
  48804. },
  48805. [
  48806. {
  48807. name: "Normal",
  48808. height: math.unit(12, "feet"),
  48809. default: true
  48810. },
  48811. ]
  48812. ))
  48813. characterMakers.push(() => makeCharacter(
  48814. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48815. {
  48816. front: {
  48817. height: math.unit(12, "feet"),
  48818. weight: math.unit(1500, "lb"),
  48819. name: "Front",
  48820. image: {
  48821. source: "./media/characters/kahea/front.svg",
  48822. extra: 1722/1617,
  48823. bottom: 179/1901
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(12, "feet"),
  48831. default: true
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48837. {
  48838. demonFront: {
  48839. height: math.unit(36, "feet"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/alex-xuria/demon-front.svg",
  48843. extra: 1705/1673,
  48844. bottom: 198/1903
  48845. },
  48846. form: "demon",
  48847. default: true
  48848. },
  48849. demonBack: {
  48850. height: math.unit(36, "feet"),
  48851. name: "Back",
  48852. image: {
  48853. source: "./media/characters/alex-xuria/demon-back.svg",
  48854. extra: 1725/1693,
  48855. bottom: 70/1795
  48856. },
  48857. form: "demon"
  48858. },
  48859. demonHead: {
  48860. height: math.unit(2.14, "meters"),
  48861. name: "Head",
  48862. image: {
  48863. source: "./media/characters/alex-xuria/demon-head.svg"
  48864. },
  48865. form: "demon"
  48866. },
  48867. demonHand: {
  48868. height: math.unit(1.61, "meters"),
  48869. name: "Hand",
  48870. image: {
  48871. source: "./media/characters/alex-xuria/demon-hand.svg"
  48872. },
  48873. form: "demon"
  48874. },
  48875. demonPaw: {
  48876. height: math.unit(1.35, "meters"),
  48877. name: "Paw",
  48878. image: {
  48879. source: "./media/characters/alex-xuria/demon-paw.svg"
  48880. },
  48881. form: "demon"
  48882. },
  48883. demonFoot: {
  48884. height: math.unit(2.2, "meters"),
  48885. name: "Foot",
  48886. image: {
  48887. source: "./media/characters/alex-xuria/demon-foot.svg"
  48888. },
  48889. form: "demon"
  48890. },
  48891. demonCock: {
  48892. height: math.unit(1.74, "meters"),
  48893. name: "Cock",
  48894. image: {
  48895. source: "./media/characters/alex-xuria/demon-cock.svg"
  48896. },
  48897. form: "demon"
  48898. },
  48899. demonTailClosed: {
  48900. height: math.unit(1.47, "meters"),
  48901. name: "Tail (Closed)",
  48902. image: {
  48903. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48904. },
  48905. form: "demon"
  48906. },
  48907. demonTailOpen: {
  48908. height: math.unit(2.85, "meters"),
  48909. name: "Tail (Open)",
  48910. image: {
  48911. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48912. },
  48913. form: "demon"
  48914. },
  48915. incubusFront: {
  48916. height: math.unit(12, "feet"),
  48917. name: "Front",
  48918. image: {
  48919. source: "./media/characters/alex-xuria/incubus-front.svg",
  48920. extra: 1754/1677,
  48921. bottom: 125/1879
  48922. },
  48923. form: "incubus",
  48924. default: true
  48925. },
  48926. incubusBack: {
  48927. height: math.unit(12, "feet"),
  48928. name: "Back",
  48929. image: {
  48930. source: "./media/characters/alex-xuria/incubus-back.svg",
  48931. extra: 1702/1647,
  48932. bottom: 30/1732
  48933. },
  48934. form: "incubus"
  48935. },
  48936. incubusHead: {
  48937. height: math.unit(3.45, "feet"),
  48938. name: "Head",
  48939. image: {
  48940. source: "./media/characters/alex-xuria/incubus-head.svg"
  48941. },
  48942. form: "incubus"
  48943. },
  48944. rabbitFront: {
  48945. height: math.unit(6, "feet"),
  48946. name: "Front",
  48947. image: {
  48948. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48949. extra: 1369/1349,
  48950. bottom: 45/1414
  48951. },
  48952. form: "rabbit",
  48953. default: true
  48954. },
  48955. rabbitSide: {
  48956. height: math.unit(6, "feet"),
  48957. name: "Side",
  48958. image: {
  48959. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48960. extra: 1370/1356,
  48961. bottom: 37/1407
  48962. },
  48963. form: "rabbit"
  48964. },
  48965. rabbitBack: {
  48966. height: math.unit(6, "feet"),
  48967. name: "Back",
  48968. image: {
  48969. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48970. extra: 1375/1358,
  48971. bottom: 43/1418
  48972. },
  48973. form: "rabbit"
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Normal",
  48979. height: math.unit(6, "feet"),
  48980. default: true,
  48981. form: "rabbit"
  48982. },
  48983. {
  48984. name: "Incubus",
  48985. height: math.unit(12, "feet"),
  48986. default: true,
  48987. form: "incubus"
  48988. },
  48989. {
  48990. name: "Demon",
  48991. height: math.unit(36, "feet"),
  48992. default: true,
  48993. form: "demon"
  48994. }
  48995. ],
  48996. {
  48997. "demon": {
  48998. name: "Demon",
  48999. default: true
  49000. },
  49001. "incubus": {
  49002. name: "Incubus",
  49003. },
  49004. "rabbit": {
  49005. name: "Rabbit"
  49006. }
  49007. }
  49008. ))
  49009. characterMakers.push(() => makeCharacter(
  49010. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49011. {
  49012. front: {
  49013. height: math.unit(7 + 5/12, "feet"),
  49014. weight: math.unit(510, "lb"),
  49015. name: "Front",
  49016. image: {
  49017. source: "./media/characters/syrup/front.svg",
  49018. extra: 932/916,
  49019. bottom: 26/958
  49020. }
  49021. },
  49022. },
  49023. [
  49024. {
  49025. name: "Normal",
  49026. height: math.unit(7 + 5/12, "feet"),
  49027. default: true
  49028. },
  49029. {
  49030. name: "Big",
  49031. height: math.unit(50, "feet")
  49032. },
  49033. {
  49034. name: "Macro",
  49035. height: math.unit(300, "feet")
  49036. },
  49037. {
  49038. name: "Megamacro",
  49039. height: math.unit(1, "mile")
  49040. },
  49041. ]
  49042. ))
  49043. characterMakers.push(() => makeCharacter(
  49044. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49045. {
  49046. front: {
  49047. height: math.unit(6 + 9/12, "feet"),
  49048. name: "Front",
  49049. image: {
  49050. source: "./media/characters/zeimne/front.svg",
  49051. extra: 1969/1806,
  49052. bottom: 53/2022
  49053. }
  49054. },
  49055. },
  49056. [
  49057. {
  49058. name: "Normal",
  49059. height: math.unit(6 + 9/12, "feet"),
  49060. default: true
  49061. },
  49062. {
  49063. name: "Giant",
  49064. height: math.unit(550, "feet")
  49065. },
  49066. {
  49067. name: "Mega",
  49068. height: math.unit(3, "miles")
  49069. },
  49070. {
  49071. name: "Giga",
  49072. height: math.unit(250, "miles")
  49073. },
  49074. {
  49075. name: "Tera",
  49076. height: math.unit(1, "AU")
  49077. },
  49078. ]
  49079. ))
  49080. characterMakers.push(() => makeCharacter(
  49081. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49082. {
  49083. front: {
  49084. height: math.unit(5 + 2/12, "feet"),
  49085. name: "Front",
  49086. image: {
  49087. source: "./media/characters/grar/front.svg",
  49088. extra: 1331/1119,
  49089. bottom: 60/1391
  49090. }
  49091. },
  49092. back: {
  49093. height: math.unit(5 + 2/12, "feet"),
  49094. name: "Back",
  49095. image: {
  49096. source: "./media/characters/grar/back.svg",
  49097. extra: 1385/1169,
  49098. bottom: 23/1408
  49099. }
  49100. },
  49101. },
  49102. [
  49103. {
  49104. name: "Normal",
  49105. height: math.unit(5 + 2/12, "feet"),
  49106. default: true
  49107. },
  49108. ]
  49109. ))
  49110. characterMakers.push(() => makeCharacter(
  49111. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49112. {
  49113. front: {
  49114. height: math.unit(13 + 7/12, "feet"),
  49115. weight: math.unit(2200, "lb"),
  49116. name: "Front",
  49117. image: {
  49118. source: "./media/characters/endraya/front.svg",
  49119. extra: 1289/1215,
  49120. bottom: 50/1339
  49121. }
  49122. },
  49123. nude: {
  49124. height: math.unit(13 + 7/12, "feet"),
  49125. weight: math.unit(2200, "lb"),
  49126. name: "Nude",
  49127. image: {
  49128. source: "./media/characters/endraya/nude.svg",
  49129. extra: 1247/1171,
  49130. bottom: 40/1287
  49131. }
  49132. },
  49133. head: {
  49134. height: math.unit(2.6, "feet"),
  49135. name: "Head",
  49136. image: {
  49137. source: "./media/characters/endraya/head.svg"
  49138. }
  49139. },
  49140. slit: {
  49141. height: math.unit(3.4, "feet"),
  49142. name: "Slit",
  49143. image: {
  49144. source: "./media/characters/endraya/slit.svg"
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Normal",
  49151. height: math.unit(13 + 7/12, "feet"),
  49152. default: true
  49153. },
  49154. {
  49155. name: "Macro",
  49156. height: math.unit(200, "feet")
  49157. },
  49158. ]
  49159. ))
  49160. characterMakers.push(() => makeCharacter(
  49161. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49162. {
  49163. front: {
  49164. height: math.unit(1.81, "meters"),
  49165. weight: math.unit(69, "kg"),
  49166. name: "Front",
  49167. image: {
  49168. source: "./media/characters/rodryana/front.svg",
  49169. extra: 2002/1921,
  49170. bottom: 53/2055
  49171. }
  49172. },
  49173. back: {
  49174. height: math.unit(1.81, "meters"),
  49175. weight: math.unit(69, "kg"),
  49176. name: "Back",
  49177. image: {
  49178. source: "./media/characters/rodryana/back.svg",
  49179. extra: 1993/1926,
  49180. bottom: 48/2041
  49181. }
  49182. },
  49183. maw: {
  49184. height: math.unit(0.19769417475, "meters"),
  49185. name: "Maw",
  49186. image: {
  49187. source: "./media/characters/rodryana/maw.svg"
  49188. }
  49189. },
  49190. slit: {
  49191. height: math.unit(0.31631067961, "meters"),
  49192. name: "Slit",
  49193. image: {
  49194. source: "./media/characters/rodryana/slit.svg"
  49195. }
  49196. },
  49197. },
  49198. [
  49199. {
  49200. name: "Normal",
  49201. height: math.unit(1.81, "meters")
  49202. },
  49203. {
  49204. name: "Mini Macro",
  49205. height: math.unit(181, "meters")
  49206. },
  49207. {
  49208. name: "Macro",
  49209. height: math.unit(452, "meters"),
  49210. default: true
  49211. },
  49212. {
  49213. name: "Mega Macro",
  49214. height: math.unit(1.375, "km")
  49215. },
  49216. {
  49217. name: "Giga Macro",
  49218. height: math.unit(13.575, "km")
  49219. },
  49220. ]
  49221. ))
  49222. characterMakers.push(() => makeCharacter(
  49223. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49224. {
  49225. front: {
  49226. height: math.unit(6, "feet"),
  49227. weight: math.unit(1000, "lb"),
  49228. name: "Front",
  49229. image: {
  49230. source: "./media/characters/asaya/front.svg",
  49231. extra: 1460/1200,
  49232. bottom: 71/1531
  49233. }
  49234. },
  49235. },
  49236. [
  49237. {
  49238. name: "Normal",
  49239. height: math.unit(8, "km"),
  49240. default: true
  49241. },
  49242. ]
  49243. ))
  49244. characterMakers.push(() => makeCharacter(
  49245. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49246. {
  49247. front: {
  49248. height: math.unit(3.5, "meters"),
  49249. name: "Front",
  49250. image: {
  49251. source: "./media/characters/sarzu-and-israz/front.svg",
  49252. extra: 1570/1558,
  49253. bottom: 150/1720
  49254. },
  49255. },
  49256. back: {
  49257. height: math.unit(3.5, "meters"),
  49258. name: "Back",
  49259. image: {
  49260. source: "./media/characters/sarzu-and-israz/back.svg",
  49261. extra: 1523/1509,
  49262. bottom: 132/1655
  49263. },
  49264. },
  49265. frontFemale: {
  49266. height: math.unit(3.5, "meters"),
  49267. name: "Front (Female)",
  49268. image: {
  49269. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49270. extra: 1570/1558,
  49271. bottom: 150/1720
  49272. },
  49273. },
  49274. frontHerm: {
  49275. height: math.unit(3.5, "meters"),
  49276. name: "Front (Herm)",
  49277. image: {
  49278. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49279. extra: 1570/1558,
  49280. bottom: 150/1720
  49281. },
  49282. },
  49283. },
  49284. [
  49285. {
  49286. name: "Normal",
  49287. height: math.unit(3.5, "meters"),
  49288. default: true,
  49289. },
  49290. {
  49291. name: "Macro",
  49292. height: math.unit(65.5, "meters"),
  49293. },
  49294. ],
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49298. {
  49299. front: {
  49300. height: math.unit(6, "feet"),
  49301. weight: math.unit(250, "lb"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/zenimma/front.svg",
  49305. extra: 1346/1320,
  49306. bottom: 58/1404
  49307. }
  49308. },
  49309. back: {
  49310. height: math.unit(6, "feet"),
  49311. weight: math.unit(250, "lb"),
  49312. name: "Back",
  49313. image: {
  49314. source: "./media/characters/zenimma/back.svg",
  49315. extra: 1324/1308,
  49316. bottom: 44/1368
  49317. }
  49318. },
  49319. dick: {
  49320. height: math.unit(1.44, "feet"),
  49321. name: "Dick",
  49322. image: {
  49323. source: "./media/characters/zenimma/dick.svg"
  49324. }
  49325. },
  49326. },
  49327. [
  49328. {
  49329. name: "Canon Height",
  49330. height: math.unit(66, "miles"),
  49331. default: true
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49337. {
  49338. nude: {
  49339. height: math.unit(6, "feet"),
  49340. weight: math.unit(150, "lb"),
  49341. name: "Nude",
  49342. image: {
  49343. source: "./media/characters/shavon/nude.svg",
  49344. extra: 1242/1096,
  49345. bottom: 98/1340
  49346. }
  49347. },
  49348. dressed: {
  49349. height: math.unit(6, "feet"),
  49350. weight: math.unit(150, "lb"),
  49351. name: "Dressed",
  49352. image: {
  49353. source: "./media/characters/shavon/dressed.svg",
  49354. extra: 1242/1096,
  49355. bottom: 98/1340
  49356. }
  49357. },
  49358. },
  49359. [
  49360. {
  49361. name: "Macro",
  49362. height: math.unit(255, "feet"),
  49363. default: true
  49364. },
  49365. ]
  49366. ))
  49367. characterMakers.push(() => makeCharacter(
  49368. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49369. {
  49370. front: {
  49371. height: math.unit(6, "feet"),
  49372. name: "Front",
  49373. image: {
  49374. source: "./media/characters/steph/front.svg",
  49375. extra: 1430/1330,
  49376. bottom: 54/1484
  49377. }
  49378. },
  49379. },
  49380. [
  49381. {
  49382. name: "Normal",
  49383. height: math.unit(6, "feet"),
  49384. default: true
  49385. },
  49386. ]
  49387. ))
  49388. characterMakers.push(() => makeCharacter(
  49389. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49390. {
  49391. front: {
  49392. height: math.unit(9, "feet"),
  49393. weight: math.unit(400, "lb"),
  49394. name: "Front",
  49395. image: {
  49396. source: "./media/characters/kil'aman/front.svg",
  49397. extra: 1210/1159,
  49398. bottom: 109/1319
  49399. }
  49400. },
  49401. head: {
  49402. height: math.unit(2.14, "feet"),
  49403. name: "Head",
  49404. image: {
  49405. source: "./media/characters/kil'aman/head.svg"
  49406. }
  49407. },
  49408. maw: {
  49409. height: math.unit(1.21, "feet"),
  49410. name: "Maw",
  49411. image: {
  49412. source: "./media/characters/kil'aman/maw.svg"
  49413. }
  49414. },
  49415. foot: {
  49416. height: math.unit(1.7, "feet"),
  49417. name: "Foot",
  49418. image: {
  49419. source: "./media/characters/kil'aman/foot.svg"
  49420. }
  49421. },
  49422. dick: {
  49423. height: math.unit(2.1, "feet"),
  49424. name: "Dick",
  49425. image: {
  49426. source: "./media/characters/kil'aman/dick.svg"
  49427. }
  49428. },
  49429. },
  49430. [
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(9, "feet")
  49434. },
  49435. {
  49436. name: "Canon Height",
  49437. height: math.unit(10, "miles"),
  49438. default: true
  49439. },
  49440. {
  49441. name: "Maximum",
  49442. height: math.unit(6e9, "miles")
  49443. },
  49444. ]
  49445. ))
  49446. characterMakers.push(() => makeCharacter(
  49447. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49448. {
  49449. front: {
  49450. height: math.unit(90, "feet"),
  49451. weight: math.unit(675000, "lb"),
  49452. name: "Front",
  49453. image: {
  49454. source: "./media/characters/qadan/front.svg",
  49455. extra: 1012/1004,
  49456. bottom: 78/1090
  49457. }
  49458. },
  49459. back: {
  49460. height: math.unit(90, "feet"),
  49461. weight: math.unit(675000, "lb"),
  49462. name: "Back",
  49463. image: {
  49464. source: "./media/characters/qadan/back.svg",
  49465. extra: 1042/1031,
  49466. bottom: 55/1097
  49467. }
  49468. },
  49469. armored: {
  49470. height: math.unit(90, "feet"),
  49471. weight: math.unit(675000, "lb"),
  49472. name: "Armored",
  49473. image: {
  49474. source: "./media/characters/qadan/armored.svg",
  49475. extra: 1047/1037,
  49476. bottom: 48/1095
  49477. }
  49478. },
  49479. },
  49480. [
  49481. {
  49482. name: "Normal",
  49483. height: math.unit(90, "feet"),
  49484. default: true
  49485. },
  49486. ]
  49487. ))
  49488. characterMakers.push(() => makeCharacter(
  49489. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49490. {
  49491. front: {
  49492. height: math.unit(6, "feet"),
  49493. weight: math.unit(225, "lb"),
  49494. name: "Front",
  49495. image: {
  49496. source: "./media/characters/brooke/front.svg",
  49497. extra: 1050/1010,
  49498. bottom: 66/1116
  49499. }
  49500. },
  49501. back: {
  49502. height: math.unit(6, "feet"),
  49503. weight: math.unit(225, "lb"),
  49504. name: "Back",
  49505. image: {
  49506. source: "./media/characters/brooke/back.svg",
  49507. extra: 1053/1013,
  49508. bottom: 41/1094
  49509. }
  49510. },
  49511. dressed: {
  49512. height: math.unit(6, "feet"),
  49513. weight: math.unit(225, "lb"),
  49514. name: "Dressed",
  49515. image: {
  49516. source: "./media/characters/brooke/dressed.svg",
  49517. extra: 1050/1010,
  49518. bottom: 66/1116
  49519. }
  49520. },
  49521. },
  49522. [
  49523. {
  49524. name: "Canon Height",
  49525. height: math.unit(500, "miles"),
  49526. default: true
  49527. },
  49528. ]
  49529. ))
  49530. characterMakers.push(() => makeCharacter(
  49531. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49532. {
  49533. front: {
  49534. height: math.unit(6 + 2/12, "feet"),
  49535. weight: math.unit(210, "lb"),
  49536. name: "Front",
  49537. image: {
  49538. source: "./media/characters/wubs/front.svg",
  49539. extra: 1345/1325,
  49540. bottom: 70/1415
  49541. }
  49542. },
  49543. back: {
  49544. height: math.unit(6 + 2/12, "feet"),
  49545. weight: math.unit(210, "lb"),
  49546. name: "Back",
  49547. image: {
  49548. source: "./media/characters/wubs/back.svg",
  49549. extra: 1296/1275,
  49550. bottom: 58/1354
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(6 + 2/12, "feet"),
  49558. default: true
  49559. },
  49560. {
  49561. name: "Macro",
  49562. height: math.unit(1000, "feet")
  49563. },
  49564. {
  49565. name: "Megamacro",
  49566. height: math.unit(1, "mile")
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49572. {
  49573. front: {
  49574. height: math.unit(4, "feet"),
  49575. weight: math.unit(120, "lb"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/blue/front.svg",
  49579. extra: 1636/1525,
  49580. bottom: 43/1679
  49581. }
  49582. },
  49583. back: {
  49584. height: math.unit(4, "feet"),
  49585. weight: math.unit(120, "lb"),
  49586. name: "Back",
  49587. image: {
  49588. source: "./media/characters/blue/back.svg",
  49589. extra: 1660/1560,
  49590. bottom: 57/1717
  49591. }
  49592. },
  49593. paws: {
  49594. height: math.unit(0.826, "feet"),
  49595. name: "Paws",
  49596. image: {
  49597. source: "./media/characters/blue/paws.svg"
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Micro",
  49604. height: math.unit(3, "inches")
  49605. },
  49606. {
  49607. name: "Normal",
  49608. height: math.unit(4, "feet"),
  49609. default: true
  49610. },
  49611. {
  49612. name: "Femenine Form",
  49613. height: math.unit(14, "feet")
  49614. },
  49615. {
  49616. name: "Werebat Form",
  49617. height: math.unit(18, "feet")
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49623. {
  49624. female: {
  49625. height: math.unit(7 + 4/12, "feet"),
  49626. weight: math.unit(243, "lb"),
  49627. name: "Female",
  49628. image: {
  49629. source: "./media/characters/kaya/female.svg",
  49630. extra: 975/898,
  49631. bottom: 34/1009
  49632. }
  49633. },
  49634. herm: {
  49635. height: math.unit(7 + 4/12, "feet"),
  49636. weight: math.unit(243, "lb"),
  49637. name: "Herm",
  49638. image: {
  49639. source: "./media/characters/kaya/herm.svg",
  49640. extra: 975/898,
  49641. bottom: 34/1009
  49642. }
  49643. },
  49644. },
  49645. [
  49646. {
  49647. name: "Normal",
  49648. height: math.unit(7 + 4/12, "feet"),
  49649. default: true
  49650. },
  49651. ]
  49652. ))
  49653. characterMakers.push(() => makeCharacter(
  49654. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49655. {
  49656. female: {
  49657. height: math.unit(9 + 4/12, "feet"),
  49658. weight: math.unit(398, "lb"),
  49659. name: "Female",
  49660. image: {
  49661. source: "./media/characters/kassandra/female.svg",
  49662. extra: 908/839,
  49663. bottom: 61/969
  49664. }
  49665. },
  49666. intersex: {
  49667. height: math.unit(9 + 4/12, "feet"),
  49668. weight: math.unit(398, "lb"),
  49669. name: "Intersex",
  49670. image: {
  49671. source: "./media/characters/kassandra/intersex.svg",
  49672. extra: 908/839,
  49673. bottom: 61/969
  49674. }
  49675. },
  49676. },
  49677. [
  49678. {
  49679. name: "Normal",
  49680. height: math.unit(9 + 4/12, "feet"),
  49681. default: true
  49682. },
  49683. ]
  49684. ))
  49685. characterMakers.push(() => makeCharacter(
  49686. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49687. {
  49688. front: {
  49689. height: math.unit(3, "meters"),
  49690. name: "Front",
  49691. image: {
  49692. source: "./media/characters/amy/front.svg",
  49693. extra: 1380/1343,
  49694. bottom: 70/1450
  49695. }
  49696. },
  49697. back: {
  49698. height: math.unit(3, "meters"),
  49699. name: "Back",
  49700. image: {
  49701. source: "./media/characters/amy/back.svg",
  49702. extra: 1380/1347,
  49703. bottom: 66/1446
  49704. }
  49705. },
  49706. },
  49707. [
  49708. {
  49709. name: "Normal",
  49710. height: math.unit(3, "meters"),
  49711. default: true
  49712. },
  49713. ]
  49714. ))
  49715. characterMakers.push(() => makeCharacter(
  49716. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49717. {
  49718. side: {
  49719. height: math.unit(47, "cm"),
  49720. weight: math.unit(10.8, "kg"),
  49721. name: "Side",
  49722. image: {
  49723. source: "./media/characters/alphaschakal/side.svg",
  49724. extra: 1058/568,
  49725. bottom: 62/1120
  49726. }
  49727. },
  49728. back: {
  49729. height: math.unit(78, "cm"),
  49730. weight: math.unit(10.8, "kg"),
  49731. name: "Back",
  49732. image: {
  49733. source: "./media/characters/alphaschakal/back.svg",
  49734. extra: 1102/942,
  49735. bottom: 185/1287
  49736. }
  49737. },
  49738. head: {
  49739. height: math.unit(28, "cm"),
  49740. name: "Head",
  49741. image: {
  49742. source: "./media/characters/alphaschakal/head.svg",
  49743. extra: 696/508,
  49744. bottom: 0/696
  49745. }
  49746. },
  49747. paw: {
  49748. height: math.unit(16, "cm"),
  49749. name: "Paw",
  49750. image: {
  49751. source: "./media/characters/alphaschakal/paw.svg"
  49752. }
  49753. },
  49754. },
  49755. [
  49756. {
  49757. name: "Normal",
  49758. height: math.unit(47, "cm"),
  49759. default: true
  49760. },
  49761. {
  49762. name: "Macro",
  49763. height: math.unit(340, "cm")
  49764. },
  49765. ]
  49766. ))
  49767. characterMakers.push(() => makeCharacter(
  49768. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49769. {
  49770. front: {
  49771. height: math.unit(36, "earths"),
  49772. name: "Front",
  49773. image: {
  49774. source: "./media/characters/ecobyss/front.svg",
  49775. extra: 1282/1215,
  49776. bottom: 11/1293
  49777. }
  49778. },
  49779. back: {
  49780. height: math.unit(36, "earths"),
  49781. name: "Back",
  49782. image: {
  49783. source: "./media/characters/ecobyss/back.svg",
  49784. extra: 1291/1222,
  49785. bottom: 8/1299
  49786. }
  49787. },
  49788. },
  49789. [
  49790. {
  49791. name: "Normal",
  49792. height: math.unit(36, "earths"),
  49793. default: true
  49794. },
  49795. ]
  49796. ))
  49797. characterMakers.push(() => makeCharacter(
  49798. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49799. {
  49800. front: {
  49801. height: math.unit(12, "feet"),
  49802. name: "Front",
  49803. image: {
  49804. source: "./media/characters/vasuk/front.svg",
  49805. extra: 1326/1207,
  49806. bottom: 64/1390
  49807. }
  49808. },
  49809. },
  49810. [
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(12, "feet"),
  49814. default: true
  49815. },
  49816. ]
  49817. ))
  49818. characterMakers.push(() => makeCharacter(
  49819. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49820. {
  49821. side: {
  49822. height: math.unit(100, "feet"),
  49823. name: "Side",
  49824. image: {
  49825. source: "./media/characters/linneaus/side.svg",
  49826. extra: 987/807,
  49827. bottom: 47/1034
  49828. }
  49829. },
  49830. },
  49831. [
  49832. {
  49833. name: "Macro",
  49834. height: math.unit(100, "feet"),
  49835. default: true
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49841. {
  49842. front: {
  49843. height: math.unit(8, "feet"),
  49844. weight: math.unit(1200, "lb"),
  49845. name: "Front",
  49846. image: {
  49847. source: "./media/characters/nyterious-daligdig/front.svg",
  49848. extra: 1284/1094,
  49849. bottom: 84/1368
  49850. }
  49851. },
  49852. back: {
  49853. height: math.unit(8, "feet"),
  49854. weight: math.unit(1200, "lb"),
  49855. name: "Back",
  49856. image: {
  49857. source: "./media/characters/nyterious-daligdig/back.svg",
  49858. extra: 1301/1121,
  49859. bottom: 129/1430
  49860. }
  49861. },
  49862. mouth: {
  49863. height: math.unit(1.464, "feet"),
  49864. name: "Mouth",
  49865. image: {
  49866. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49867. }
  49868. },
  49869. },
  49870. [
  49871. {
  49872. name: "Small",
  49873. height: math.unit(8, "feet"),
  49874. default: true
  49875. },
  49876. {
  49877. name: "Normal",
  49878. height: math.unit(15, "feet")
  49879. },
  49880. {
  49881. name: "Macro",
  49882. height: math.unit(90, "feet")
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(7 + 4/12, "feet"),
  49891. weight: math.unit(252, "lb"),
  49892. name: "Front",
  49893. image: {
  49894. source: "./media/characters/bandel/front.svg",
  49895. extra: 1946/1775,
  49896. bottom: 26/1972
  49897. }
  49898. },
  49899. back: {
  49900. height: math.unit(7 + 4/12, "feet"),
  49901. weight: math.unit(252, "lb"),
  49902. name: "Back",
  49903. image: {
  49904. source: "./media/characters/bandel/back.svg",
  49905. extra: 1940/1770,
  49906. bottom: 25/1965
  49907. }
  49908. },
  49909. maw: {
  49910. height: math.unit(2.15, "feet"),
  49911. name: "Maw",
  49912. image: {
  49913. source: "./media/characters/bandel/maw.svg"
  49914. }
  49915. },
  49916. stomach: {
  49917. height: math.unit(1.95, "feet"),
  49918. name: "Stomach",
  49919. image: {
  49920. source: "./media/characters/bandel/stomach.svg"
  49921. }
  49922. },
  49923. },
  49924. [
  49925. {
  49926. name: "Normal",
  49927. height: math.unit(7 + 4/12, "feet"),
  49928. default: true
  49929. },
  49930. ]
  49931. ))
  49932. characterMakers.push(() => makeCharacter(
  49933. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49934. {
  49935. front: {
  49936. height: math.unit(10 + 5/12, "feet"),
  49937. weight: math.unit(773.5, "kg"),
  49938. name: "Front",
  49939. image: {
  49940. source: "./media/characters/zed/front.svg",
  49941. extra: 987/941,
  49942. bottom: 52/1039
  49943. }
  49944. },
  49945. },
  49946. [
  49947. {
  49948. name: "Short",
  49949. height: math.unit(5 + 4/12, "feet")
  49950. },
  49951. {
  49952. name: "Average",
  49953. height: math.unit(10 + 5/12, "feet"),
  49954. default: true
  49955. },
  49956. {
  49957. name: "Mini-Macro",
  49958. height: math.unit(24 + 9/12, "feet")
  49959. },
  49960. {
  49961. name: "Macro",
  49962. height: math.unit(249, "feet")
  49963. },
  49964. {
  49965. name: "Mega-Macro",
  49966. height: math.unit(12490, "feet")
  49967. },
  49968. {
  49969. name: "Giga-Macro",
  49970. height: math.unit(24.9, "miles")
  49971. },
  49972. {
  49973. name: "Tera-Macro",
  49974. height: math.unit(24900, "miles")
  49975. },
  49976. {
  49977. name: "Cosmic Scale",
  49978. height: math.unit(38.9, "lightyears")
  49979. },
  49980. {
  49981. name: "Universal Scale",
  49982. height: math.unit(138e12, "lightyears")
  49983. },
  49984. ]
  49985. ))
  49986. characterMakers.push(() => makeCharacter(
  49987. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49988. {
  49989. front: {
  49990. height: math.unit(1561, "inches"),
  49991. name: "Front",
  49992. image: {
  49993. source: "./media/characters/ivan/front.svg",
  49994. extra: 1126/1071,
  49995. bottom: 26/1152
  49996. }
  49997. },
  49998. back: {
  49999. height: math.unit(1561, "inches"),
  50000. name: "Back",
  50001. image: {
  50002. source: "./media/characters/ivan/back.svg",
  50003. extra: 1134/1079,
  50004. bottom: 30/1164
  50005. }
  50006. },
  50007. },
  50008. [
  50009. {
  50010. name: "Normal",
  50011. height: math.unit(1561, "inches"),
  50012. default: true
  50013. },
  50014. ]
  50015. ))
  50016. characterMakers.push(() => makeCharacter(
  50017. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50018. {
  50019. front: {
  50020. height: math.unit(5 + 7/12, "feet"),
  50021. weight: math.unit(150, "lb"),
  50022. name: "Front",
  50023. image: {
  50024. source: "./media/characters/robin-arctic-hare/front.svg",
  50025. extra: 1148/974,
  50026. bottom: 20/1168
  50027. }
  50028. },
  50029. },
  50030. [
  50031. {
  50032. name: "Normal",
  50033. height: math.unit(5 + 7/12, "feet"),
  50034. default: true
  50035. },
  50036. ]
  50037. ))
  50038. characterMakers.push(() => makeCharacter(
  50039. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50040. {
  50041. side: {
  50042. height: math.unit(5, "feet"),
  50043. name: "Side",
  50044. image: {
  50045. source: "./media/characters/birch/side.svg",
  50046. extra: 985/796,
  50047. bottom: 111/1096
  50048. }
  50049. },
  50050. },
  50051. [
  50052. {
  50053. name: "Normal",
  50054. height: math.unit(5, "feet"),
  50055. default: true
  50056. },
  50057. ]
  50058. ))
  50059. characterMakers.push(() => makeCharacter(
  50060. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50061. {
  50062. front: {
  50063. height: math.unit(4, "feet"),
  50064. name: "Front",
  50065. image: {
  50066. source: "./media/characters/rasp/front.svg",
  50067. extra: 561/478,
  50068. bottom: 74/635
  50069. }
  50070. },
  50071. },
  50072. [
  50073. {
  50074. name: "Normal",
  50075. height: math.unit(4, "feet"),
  50076. default: true
  50077. },
  50078. ]
  50079. ))
  50080. characterMakers.push(() => makeCharacter(
  50081. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50082. {
  50083. front: {
  50084. height: math.unit(4 + 6/12, "feet"),
  50085. name: "Front",
  50086. image: {
  50087. source: "./media/characters/agatha/front.svg",
  50088. extra: 947/933,
  50089. bottom: 42/989
  50090. }
  50091. },
  50092. back: {
  50093. height: math.unit(4 + 6/12, "feet"),
  50094. name: "Back",
  50095. image: {
  50096. source: "./media/characters/agatha/back.svg",
  50097. extra: 935/922,
  50098. bottom: 48/983
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(4 + 6 /12, "feet"),
  50106. default: true
  50107. },
  50108. {
  50109. name: "Max Size",
  50110. height: math.unit(500, "feet")
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50116. {
  50117. side: {
  50118. height: math.unit(30, "feet"),
  50119. name: "Side",
  50120. image: {
  50121. source: "./media/characters/roggy/side.svg",
  50122. extra: 909/643,
  50123. bottom: 63/972
  50124. }
  50125. },
  50126. lounging: {
  50127. height: math.unit(20, "feet"),
  50128. name: "Lounging",
  50129. image: {
  50130. source: "./media/characters/roggy/lounging.svg",
  50131. extra: 643/479,
  50132. bottom: 145/788
  50133. }
  50134. },
  50135. handpaw: {
  50136. height: math.unit(13.1, "feet"),
  50137. name: "Handpaw",
  50138. image: {
  50139. source: "./media/characters/roggy/handpaw.svg"
  50140. }
  50141. },
  50142. footpaw: {
  50143. height: math.unit(15.8, "feet"),
  50144. name: "Footpaw",
  50145. image: {
  50146. source: "./media/characters/roggy/footpaw.svg"
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Menacing",
  50153. height: math.unit(30, "feet"),
  50154. default: true
  50155. },
  50156. ]
  50157. ))
  50158. characterMakers.push(() => makeCharacter(
  50159. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50160. {
  50161. front: {
  50162. height: math.unit(5 + 7/12, "feet"),
  50163. weight: math.unit(135, "lb"),
  50164. name: "Front",
  50165. image: {
  50166. source: "./media/characters/naomi/front.svg",
  50167. extra: 1209/1154,
  50168. bottom: 129/1338
  50169. }
  50170. },
  50171. back: {
  50172. height: math.unit(5 + 7/12, "feet"),
  50173. weight: math.unit(135, "lb"),
  50174. name: "Back",
  50175. image: {
  50176. source: "./media/characters/naomi/back.svg",
  50177. extra: 1252/1190,
  50178. bottom: 23/1275
  50179. }
  50180. },
  50181. },
  50182. [
  50183. {
  50184. name: "Normal",
  50185. height: math.unit(5 + 7 /12, "feet"),
  50186. default: true
  50187. },
  50188. ]
  50189. ))
  50190. characterMakers.push(() => makeCharacter(
  50191. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50192. {
  50193. side: {
  50194. height: math.unit(35, "meters"),
  50195. name: "Side",
  50196. image: {
  50197. source: "./media/characters/kimpi/side.svg",
  50198. extra: 419/382,
  50199. bottom: 63/482
  50200. }
  50201. },
  50202. hand: {
  50203. height: math.unit(8.96, "meters"),
  50204. name: "Hand",
  50205. image: {
  50206. source: "./media/characters/kimpi/hand.svg"
  50207. }
  50208. },
  50209. },
  50210. [
  50211. {
  50212. name: "Normal",
  50213. height: math.unit(35, "meters"),
  50214. default: true
  50215. },
  50216. ]
  50217. ))
  50218. characterMakers.push(() => makeCharacter(
  50219. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50220. {
  50221. front: {
  50222. height: math.unit(4 + 4/12, "feet"),
  50223. name: "Front",
  50224. image: {
  50225. source: "./media/characters/pepper-purrloin/front.svg",
  50226. extra: 1141/1024,
  50227. bottom: 21/1162
  50228. }
  50229. },
  50230. },
  50231. [
  50232. {
  50233. name: "Normal",
  50234. height: math.unit(4 + 4/12, "feet"),
  50235. default: true
  50236. },
  50237. ]
  50238. ))
  50239. characterMakers.push(() => makeCharacter(
  50240. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50241. {
  50242. front: {
  50243. height: math.unit(6 + 2/12, "feet"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/raphael/front.svg",
  50247. extra: 1101/962,
  50248. bottom: 59/1160
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(6 + 2/12, "feet"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50262. {
  50263. front: {
  50264. height: math.unit(6, "feet"),
  50265. weight: math.unit(150, "lb"),
  50266. name: "Front",
  50267. image: {
  50268. source: "./media/characters/victor-williams/front.svg",
  50269. extra: 1894/1825,
  50270. bottom: 67/1961
  50271. }
  50272. },
  50273. },
  50274. [
  50275. {
  50276. name: "Normal",
  50277. height: math.unit(6, "feet"),
  50278. default: true
  50279. },
  50280. ]
  50281. ))
  50282. characterMakers.push(() => makeCharacter(
  50283. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50284. {
  50285. front: {
  50286. height: math.unit(5 + 8/12, "feet"),
  50287. weight: math.unit(150, "lb"),
  50288. name: "Front",
  50289. image: {
  50290. source: "./media/characters/rachel/front.svg",
  50291. extra: 1902/1787,
  50292. bottom: 46/1948
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Base Height",
  50299. height: math.unit(5 + 8/12, "feet"),
  50300. default: true
  50301. },
  50302. {
  50303. name: "Macro",
  50304. height: math.unit(200, "feet")
  50305. },
  50306. {
  50307. name: "Mega Macro",
  50308. height: math.unit(1, "mile")
  50309. },
  50310. {
  50311. name: "Giga Macro",
  50312. height: math.unit(1500, "miles")
  50313. },
  50314. {
  50315. name: "Tera Macro",
  50316. height: math.unit(8000, "miles")
  50317. },
  50318. {
  50319. name: "Tera Macro+",
  50320. height: math.unit(2e5, "miles")
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50326. {
  50327. front: {
  50328. height: math.unit(6.5, "feet"),
  50329. name: "Front",
  50330. image: {
  50331. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50332. extra: 860/819,
  50333. bottom: 307/1167
  50334. }
  50335. },
  50336. back: {
  50337. height: math.unit(6.5, "feet"),
  50338. name: "Back",
  50339. image: {
  50340. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50341. extra: 880/837,
  50342. bottom: 395/1275
  50343. }
  50344. },
  50345. sleeping: {
  50346. height: math.unit(2.79, "feet"),
  50347. name: "Sleeping",
  50348. image: {
  50349. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50350. extra: 465/383,
  50351. bottom: 263/728
  50352. }
  50353. },
  50354. maw: {
  50355. height: math.unit(2.52, "feet"),
  50356. name: "Maw",
  50357. image: {
  50358. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50359. }
  50360. },
  50361. },
  50362. [
  50363. {
  50364. name: "Normal",
  50365. height: math.unit(6.5, "feet"),
  50366. default: true
  50367. },
  50368. ]
  50369. ))
  50370. characterMakers.push(() => makeCharacter(
  50371. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50372. {
  50373. front: {
  50374. height: math.unit(5, "feet"),
  50375. name: "Front",
  50376. image: {
  50377. source: "./media/characters/nova-nerium/front.svg",
  50378. extra: 1548/1392,
  50379. bottom: 374/1922
  50380. }
  50381. },
  50382. back: {
  50383. height: math.unit(5, "feet"),
  50384. name: "Back",
  50385. image: {
  50386. source: "./media/characters/nova-nerium/back.svg",
  50387. extra: 1658/1468,
  50388. bottom: 257/1915
  50389. }
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Normal",
  50395. height: math.unit(5, "feet"),
  50396. default: true
  50397. },
  50398. ]
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50402. {
  50403. front: {
  50404. height: math.unit(5 + 4/12, "feet"),
  50405. name: "Front",
  50406. image: {
  50407. source: "./media/characters/ashe-pyriph/front.svg",
  50408. extra: 1935/1747,
  50409. bottom: 60/1995
  50410. }
  50411. },
  50412. },
  50413. [
  50414. {
  50415. name: "Normal",
  50416. height: math.unit(5 + 4/12, "feet"),
  50417. default: true
  50418. },
  50419. ]
  50420. ))
  50421. characterMakers.push(() => makeCharacter(
  50422. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50423. {
  50424. front: {
  50425. height: math.unit(8.7, "feet"),
  50426. name: "Front",
  50427. image: {
  50428. source: "./media/characters/flicker-wisp/front.svg",
  50429. extra: 1835/1613,
  50430. bottom: 449/2284
  50431. }
  50432. },
  50433. side: {
  50434. height: math.unit(8.7, "feet"),
  50435. name: "Side",
  50436. image: {
  50437. source: "./media/characters/flicker-wisp/side.svg",
  50438. extra: 1841/1642,
  50439. bottom: 336/2177
  50440. },
  50441. default: true
  50442. },
  50443. maw: {
  50444. height: math.unit(3.35, "feet"),
  50445. name: "Maw",
  50446. image: {
  50447. source: "./media/characters/flicker-wisp/maw.svg",
  50448. extra: 2338/1506,
  50449. bottom: 0/2338
  50450. }
  50451. },
  50452. ovipositor: {
  50453. height: math.unit(4.95, "feet"),
  50454. name: "Ovipositor",
  50455. image: {
  50456. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50457. }
  50458. },
  50459. egg: {
  50460. height: math.unit(0.385, "feet"),
  50461. weight: math.unit(2, "lb"),
  50462. name: "Egg",
  50463. image: {
  50464. source: "./media/characters/flicker-wisp/egg.svg"
  50465. }
  50466. },
  50467. },
  50468. [
  50469. {
  50470. name: "Normal",
  50471. height: math.unit(8.7, "feet"),
  50472. default: true
  50473. },
  50474. ]
  50475. ))
  50476. characterMakers.push(() => makeCharacter(
  50477. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50478. {
  50479. side: {
  50480. height: math.unit(11, "feet"),
  50481. name: "Side",
  50482. image: {
  50483. source: "./media/characters/faefnul/side.svg",
  50484. extra: 1100/1007,
  50485. bottom: 0/1100
  50486. }
  50487. },
  50488. },
  50489. [
  50490. {
  50491. name: "Normal",
  50492. height: math.unit(11, "feet"),
  50493. default: true
  50494. },
  50495. ]
  50496. ))
  50497. characterMakers.push(() => makeCharacter(
  50498. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50499. {
  50500. front: {
  50501. height: math.unit(6 + 2/12, "feet"),
  50502. name: "Front",
  50503. image: {
  50504. source: "./media/characters/shady/front.svg",
  50505. extra: 502/461,
  50506. bottom: 9/511
  50507. }
  50508. },
  50509. kneeling: {
  50510. height: math.unit(4.6, "feet"),
  50511. name: "Kneeling",
  50512. image: {
  50513. source: "./media/characters/shady/kneeling.svg",
  50514. extra: 1328/1219,
  50515. bottom: 117/1445
  50516. }
  50517. },
  50518. maw: {
  50519. height: math.unit(2, "feet"),
  50520. name: "Maw",
  50521. image: {
  50522. source: "./media/characters/shady/maw.svg"
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Nano",
  50529. height: math.unit(1, "mm")
  50530. },
  50531. {
  50532. name: "Micro",
  50533. height: math.unit(12, "mm")
  50534. },
  50535. {
  50536. name: "Tiny",
  50537. height: math.unit(3, "inches")
  50538. },
  50539. {
  50540. name: "Normal",
  50541. height: math.unit(6 + 2/12, "feet"),
  50542. default: true
  50543. },
  50544. {
  50545. name: "Big",
  50546. height: math.unit(15, "feet")
  50547. },
  50548. {
  50549. name: "Macro",
  50550. height: math.unit(150, "feet")
  50551. },
  50552. {
  50553. name: "Titanic",
  50554. height: math.unit(500, "feet")
  50555. },
  50556. ]
  50557. ))
  50558. characterMakers.push(() => makeCharacter(
  50559. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50560. {
  50561. front: {
  50562. height: math.unit(12, "feet"),
  50563. name: "Front",
  50564. image: {
  50565. source: "./media/characters/fenrir/front.svg",
  50566. extra: 968/875,
  50567. bottom: 22/990
  50568. }
  50569. },
  50570. },
  50571. [
  50572. {
  50573. name: "Big",
  50574. height: math.unit(12, "feet"),
  50575. default: true
  50576. },
  50577. ]
  50578. ))
  50579. characterMakers.push(() => makeCharacter(
  50580. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50581. {
  50582. front: {
  50583. height: math.unit(5 + 4/12, "feet"),
  50584. name: "Front",
  50585. image: {
  50586. source: "./media/characters/makar/front.svg",
  50587. extra: 1181/1112,
  50588. bottom: 78/1259
  50589. }
  50590. },
  50591. },
  50592. [
  50593. {
  50594. name: "Normal",
  50595. height: math.unit(5 + 4/12, "feet"),
  50596. default: true
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50602. {
  50603. front: {
  50604. height: math.unit(5 + 7/12, "feet"),
  50605. name: "Front",
  50606. image: {
  50607. source: "./media/characters/callow/front.svg",
  50608. extra: 1482/1304,
  50609. bottom: 23/1505
  50610. }
  50611. },
  50612. back: {
  50613. height: math.unit(5 + 7/12, "feet"),
  50614. name: "Back",
  50615. image: {
  50616. source: "./media/characters/callow/back.svg",
  50617. extra: 1484/1296,
  50618. bottom: 25/1509
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Micro",
  50625. height: math.unit(3, "inches"),
  50626. default: true
  50627. },
  50628. {
  50629. name: "Normal",
  50630. height: math.unit(5 + 7/12, "feet")
  50631. },
  50632. ]
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50636. {
  50637. front: {
  50638. height: math.unit(6 + 2/12, "feet"),
  50639. name: "Front",
  50640. image: {
  50641. source: "./media/characters/natel/front.svg",
  50642. extra: 1833/1692,
  50643. bottom: 166/1999
  50644. }
  50645. },
  50646. },
  50647. [
  50648. {
  50649. name: "Normal",
  50650. height: math.unit(6 + 2/12, "feet"),
  50651. default: true
  50652. },
  50653. ]
  50654. ))
  50655. characterMakers.push(() => makeCharacter(
  50656. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50657. {
  50658. front: {
  50659. height: math.unit(1.75, "meters"),
  50660. name: "Front",
  50661. image: {
  50662. source: "./media/characters/misu/front.svg",
  50663. extra: 1690/1558,
  50664. bottom: 234/1924
  50665. }
  50666. },
  50667. back: {
  50668. height: math.unit(1.75, "meters"),
  50669. name: "Back",
  50670. image: {
  50671. source: "./media/characters/misu/back.svg",
  50672. extra: 1762/1618,
  50673. bottom: 146/1908
  50674. }
  50675. },
  50676. frontNude: {
  50677. height: math.unit(1.75, "meters"),
  50678. name: "Front (Nude)",
  50679. image: {
  50680. source: "./media/characters/misu/front-nude.svg",
  50681. extra: 1690/1558,
  50682. bottom: 234/1924
  50683. }
  50684. },
  50685. backNude: {
  50686. height: math.unit(1.75, "meters"),
  50687. name: "Back (Nude)",
  50688. image: {
  50689. source: "./media/characters/misu/back-nude.svg",
  50690. extra: 1762/1618,
  50691. bottom: 146/1908
  50692. }
  50693. },
  50694. frontErect: {
  50695. height: math.unit(1.75, "meters"),
  50696. name: "Front (Erect)",
  50697. image: {
  50698. source: "./media/characters/misu/front-erect.svg",
  50699. extra: 1690/1558,
  50700. bottom: 234/1924
  50701. }
  50702. },
  50703. maw: {
  50704. height: math.unit(0.47, "meters"),
  50705. name: "Maw",
  50706. image: {
  50707. source: "./media/characters/misu/maw.svg"
  50708. }
  50709. },
  50710. head: {
  50711. height: math.unit(0.35, "meters"),
  50712. name: "Head",
  50713. image: {
  50714. source: "./media/characters/misu/head.svg"
  50715. }
  50716. },
  50717. rear: {
  50718. height: math.unit(0.47, "meters"),
  50719. name: "Rear",
  50720. image: {
  50721. source: "./media/characters/misu/rear.svg"
  50722. }
  50723. },
  50724. },
  50725. [
  50726. {
  50727. name: "Normal",
  50728. height: math.unit(1.75, "meters")
  50729. },
  50730. {
  50731. name: "Not good for the people",
  50732. height: math.unit(42, "meters")
  50733. },
  50734. {
  50735. name: "Not good for the neighborhood",
  50736. height: math.unit(135, "meters")
  50737. },
  50738. {
  50739. name: "Bit bigger problem",
  50740. height: math.unit(380, "meters"),
  50741. default: true
  50742. },
  50743. {
  50744. name: "Not good for the city",
  50745. height: math.unit(1.5, "km")
  50746. },
  50747. {
  50748. name: "Not good for the county",
  50749. height: math.unit(5.5, "km")
  50750. },
  50751. {
  50752. name: "Not good for the state",
  50753. height: math.unit(25, "km")
  50754. },
  50755. {
  50756. name: "Not good for the country",
  50757. height: math.unit(125, "km")
  50758. },
  50759. {
  50760. name: "Not good for the continent",
  50761. height: math.unit(2100, "km")
  50762. },
  50763. {
  50764. name: "Not good for the planet",
  50765. height: math.unit(35000, "km")
  50766. },
  50767. {
  50768. name: "Just no",
  50769. height: math.unit(8.5e18, "km")
  50770. },
  50771. ]
  50772. ))
  50773. characterMakers.push(() => makeCharacter(
  50774. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50775. {
  50776. front: {
  50777. height: math.unit(6.5, "feet"),
  50778. name: "Front",
  50779. image: {
  50780. source: "./media/characters/poppy/front.svg",
  50781. extra: 1878/1812,
  50782. bottom: 43/1921
  50783. }
  50784. },
  50785. feet: {
  50786. height: math.unit(1.06, "feet"),
  50787. name: "Feet",
  50788. image: {
  50789. source: "./media/characters/poppy/feet.svg",
  50790. extra: 1083/1083,
  50791. bottom: 87/1170
  50792. }
  50793. },
  50794. },
  50795. [
  50796. {
  50797. name: "Human",
  50798. height: math.unit(6.5, "feet")
  50799. },
  50800. {
  50801. name: "Default",
  50802. height: math.unit(300, "feet"),
  50803. default: true
  50804. },
  50805. {
  50806. name: "Huge",
  50807. height: math.unit(850, "feet")
  50808. },
  50809. {
  50810. name: "Mega",
  50811. height: math.unit(8000, "feet")
  50812. },
  50813. {
  50814. name: "Giga",
  50815. height: math.unit(300, "miles")
  50816. },
  50817. ]
  50818. ))
  50819. characterMakers.push(() => makeCharacter(
  50820. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50821. {
  50822. bipedal: {
  50823. height: math.unit(7, "feet"),
  50824. name: "Bipedal",
  50825. image: {
  50826. source: "./media/characters/zener/bipedal.svg",
  50827. extra: 874/805,
  50828. bottom: 109/983
  50829. }
  50830. },
  50831. quadrupedal: {
  50832. height: math.unit(4.64, "feet"),
  50833. name: "Quadrupedal",
  50834. image: {
  50835. source: "./media/characters/zener/quadrupedal.svg",
  50836. extra: 638/507,
  50837. bottom: 190/828
  50838. }
  50839. },
  50840. cock: {
  50841. height: math.unit(18, "inches"),
  50842. name: "Cock",
  50843. image: {
  50844. source: "./media/characters/zener/cock.svg"
  50845. }
  50846. },
  50847. },
  50848. [
  50849. {
  50850. name: "Normal",
  50851. height: math.unit(7, "feet"),
  50852. default: true
  50853. },
  50854. ]
  50855. ))
  50856. characterMakers.push(() => makeCharacter(
  50857. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50858. {
  50859. nude: {
  50860. height: math.unit(5 + 6/12, "feet"),
  50861. name: "Nude",
  50862. image: {
  50863. source: "./media/characters/charlie-dog/nude.svg",
  50864. extra: 768/734,
  50865. bottom: 26/794
  50866. }
  50867. },
  50868. dressed: {
  50869. height: math.unit(5 + 6/12, "feet"),
  50870. name: "Dressed",
  50871. image: {
  50872. source: "./media/characters/charlie-dog/dressed.svg",
  50873. extra: 768/734,
  50874. bottom: 26/794
  50875. }
  50876. },
  50877. },
  50878. [
  50879. {
  50880. name: "Normal",
  50881. height: math.unit(5 + 6/12, "feet"),
  50882. default: true
  50883. },
  50884. ]
  50885. ))
  50886. characterMakers.push(() => makeCharacter(
  50887. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50888. {
  50889. front: {
  50890. height: math.unit(6 + 4/12, "feet"),
  50891. name: "Front",
  50892. image: {
  50893. source: "./media/characters/ir'istrasz/front.svg",
  50894. extra: 1014/977,
  50895. bottom: 65/1079
  50896. }
  50897. },
  50898. back: {
  50899. height: math.unit(6 + 4/12, "feet"),
  50900. name: "Back",
  50901. image: {
  50902. source: "./media/characters/ir'istrasz/back.svg",
  50903. extra: 1024/992,
  50904. bottom: 34/1058
  50905. }
  50906. },
  50907. },
  50908. [
  50909. {
  50910. name: "Normal",
  50911. height: math.unit(6 + 4/12, "feet"),
  50912. default: true
  50913. },
  50914. ]
  50915. ))
  50916. characterMakers.push(() => makeCharacter(
  50917. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50918. {
  50919. front: {
  50920. height: math.unit(5 + 8/12, "feet"),
  50921. name: "Front",
  50922. image: {
  50923. source: "./media/characters/dee-ditto/front.svg",
  50924. extra: 1874/1785,
  50925. bottom: 68/1942
  50926. }
  50927. },
  50928. back: {
  50929. height: math.unit(5 + 8/12, "feet"),
  50930. name: "Back",
  50931. image: {
  50932. source: "./media/characters/dee-ditto/back.svg",
  50933. extra: 1870/1783,
  50934. bottom: 77/1947
  50935. }
  50936. },
  50937. },
  50938. [
  50939. {
  50940. name: "Normal",
  50941. height: math.unit(5 + 8/12, "feet"),
  50942. default: true
  50943. },
  50944. ]
  50945. ))
  50946. characterMakers.push(() => makeCharacter(
  50947. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50948. {
  50949. front: {
  50950. height: math.unit(7 + 6/12, "feet"),
  50951. name: "Front",
  50952. image: {
  50953. source: "./media/characters/fey/front.svg",
  50954. extra: 995/979,
  50955. bottom: 30/1025
  50956. }
  50957. },
  50958. back: {
  50959. height: math.unit(7 + 6/12, "feet"),
  50960. name: "Back",
  50961. image: {
  50962. source: "./media/characters/fey/back.svg",
  50963. extra: 1079/1008,
  50964. bottom: 5/1084
  50965. }
  50966. },
  50967. dressed: {
  50968. height: math.unit(7 + 6/12, "feet"),
  50969. name: "Dressed",
  50970. image: {
  50971. source: "./media/characters/fey/dressed.svg",
  50972. extra: 995/979,
  50973. bottom: 30/1025
  50974. }
  50975. },
  50976. },
  50977. [
  50978. {
  50979. name: "Normal",
  50980. height: math.unit(7 + 6/12, "feet"),
  50981. default: true
  50982. },
  50983. ]
  50984. ))
  50985. characterMakers.push(() => makeCharacter(
  50986. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50987. {
  50988. standing: {
  50989. height: math.unit(17, "feet"),
  50990. name: "Standing",
  50991. image: {
  50992. source: "./media/characters/aster/standing.svg",
  50993. extra: 1798/1598,
  50994. bottom: 117/1915
  50995. }
  50996. },
  50997. },
  50998. [
  50999. {
  51000. name: "Normal",
  51001. height: math.unit(17, "feet"),
  51002. default: true
  51003. },
  51004. {
  51005. name: "Homewrecker",
  51006. height: math.unit(95, "feet")
  51007. },
  51008. {
  51009. name: "Planet Devourer",
  51010. height: math.unit(1008000, "miles")
  51011. },
  51012. ]
  51013. ))
  51014. characterMakers.push(() => makeCharacter(
  51015. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51016. {
  51017. front: {
  51018. height: math.unit(6 + 5/12, "feet"),
  51019. weight: math.unit(265, "lb"),
  51020. name: "Front",
  51021. image: {
  51022. source: "./media/characters/devon-childs/front.svg",
  51023. extra: 1795/1721,
  51024. bottom: 41/1836
  51025. }
  51026. },
  51027. side: {
  51028. height: math.unit(6 + 5/12, "feet"),
  51029. weight: math.unit(265, "lb"),
  51030. name: "Side",
  51031. image: {
  51032. source: "./media/characters/devon-childs/side.svg",
  51033. extra: 1812/1738,
  51034. bottom: 30/1842
  51035. }
  51036. },
  51037. back: {
  51038. height: math.unit(6 + 5/12, "feet"),
  51039. weight: math.unit(265, "lb"),
  51040. name: "Back",
  51041. image: {
  51042. source: "./media/characters/devon-childs/back.svg",
  51043. extra: 1808/1735,
  51044. bottom: 23/1831
  51045. }
  51046. },
  51047. hand: {
  51048. height: math.unit(1.464, "feet"),
  51049. name: "Hand",
  51050. image: {
  51051. source: "./media/characters/devon-childs/hand.svg"
  51052. }
  51053. },
  51054. foot: {
  51055. height: math.unit(1.6, "feet"),
  51056. name: "Foot",
  51057. image: {
  51058. source: "./media/characters/devon-childs/foot.svg"
  51059. }
  51060. },
  51061. },
  51062. [
  51063. {
  51064. name: "Micro",
  51065. height: math.unit(7, "cm")
  51066. },
  51067. {
  51068. name: "Normal",
  51069. height: math.unit(6 + 5/12, "feet"),
  51070. default: true
  51071. },
  51072. {
  51073. name: "Macro",
  51074. height: math.unit(154, "feet")
  51075. },
  51076. ]
  51077. ))
  51078. characterMakers.push(() => makeCharacter(
  51079. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51080. {
  51081. front: {
  51082. height: math.unit(6, "feet"),
  51083. weight: math.unit(180, "lb"),
  51084. name: "Front",
  51085. image: {
  51086. source: "./media/characters/lydemox-vir/front.svg",
  51087. extra: 1632/1435,
  51088. bottom: 58/1690
  51089. }
  51090. },
  51091. frontSFW: {
  51092. height: math.unit(6, "feet"),
  51093. weight: math.unit(180, "lb"),
  51094. name: "Front (SFW)",
  51095. image: {
  51096. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51097. extra: 1632/1435,
  51098. bottom: 58/1690
  51099. }
  51100. },
  51101. back: {
  51102. height: math.unit(6, "feet"),
  51103. weight: math.unit(180, "lb"),
  51104. name: "Back",
  51105. image: {
  51106. source: "./media/characters/lydemox-vir/back.svg",
  51107. extra: 1593/1408,
  51108. bottom: 31/1624
  51109. }
  51110. },
  51111. paw: {
  51112. height: math.unit(1.85, "feet"),
  51113. name: "Paw",
  51114. image: {
  51115. source: "./media/characters/lydemox-vir/paw.svg"
  51116. }
  51117. },
  51118. dick: {
  51119. height: math.unit(1.8, "feet"),
  51120. name: "Dick",
  51121. image: {
  51122. source: "./media/characters/lydemox-vir/dick.svg"
  51123. }
  51124. },
  51125. },
  51126. [
  51127. {
  51128. name: "Macro",
  51129. height: math.unit(100, "feet"),
  51130. default: true
  51131. },
  51132. {
  51133. name: "Teramacro",
  51134. height: math.unit(1, "earth")
  51135. },
  51136. {
  51137. name: "Planetary",
  51138. height: math.unit(20, "earths")
  51139. },
  51140. ]
  51141. ))
  51142. characterMakers.push(() => makeCharacter(
  51143. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51144. {
  51145. front: {
  51146. height: math.unit(15 + 8/12, "feet"),
  51147. weight: math.unit(1237, "kg"),
  51148. name: "Front",
  51149. image: {
  51150. source: "./media/characters/mia/front.svg",
  51151. extra: 1573/1446,
  51152. bottom: 58/1631
  51153. }
  51154. },
  51155. },
  51156. [
  51157. {
  51158. name: "Small",
  51159. height: math.unit(9 + 5/12, "feet")
  51160. },
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(15 + 8/12, "feet"),
  51164. default: true
  51165. },
  51166. ]
  51167. ))
  51168. characterMakers.push(() => makeCharacter(
  51169. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51170. {
  51171. front: {
  51172. height: math.unit(10 + 6/12, "feet"),
  51173. weight: math.unit(1.3, "tons"),
  51174. name: "Front",
  51175. image: {
  51176. source: "./media/characters/mr-graves/front.svg",
  51177. extra: 1779/1695,
  51178. bottom: 198/1977
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(10 + 6 /12, "feet"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51192. {
  51193. dressedFront: {
  51194. height: math.unit(5 + 8/12, "feet"),
  51195. weight: math.unit(125, "lb"),
  51196. name: "Dressed (Front)",
  51197. image: {
  51198. source: "./media/characters/jess/dressed-front.svg",
  51199. extra: 1176/1152,
  51200. bottom: 42/1218
  51201. }
  51202. },
  51203. dressedSide: {
  51204. height: math.unit(5 + 8/12, "feet"),
  51205. weight: math.unit(125, "lb"),
  51206. name: "Dressed (Side)",
  51207. image: {
  51208. source: "./media/characters/jess/dressed-side.svg",
  51209. extra: 1204/1190,
  51210. bottom: 6/1210
  51211. }
  51212. },
  51213. nudeFront: {
  51214. height: math.unit(5 + 8/12, "feet"),
  51215. weight: math.unit(125, "lb"),
  51216. name: "Nude (Front)",
  51217. image: {
  51218. source: "./media/characters/jess/nude-front.svg",
  51219. extra: 1176/1152,
  51220. bottom: 42/1218
  51221. }
  51222. },
  51223. nudeSide: {
  51224. height: math.unit(5 + 8/12, "feet"),
  51225. weight: math.unit(125, "lb"),
  51226. name: "Nude (Side)",
  51227. image: {
  51228. source: "./media/characters/jess/nude-side.svg",
  51229. extra: 1204/1190,
  51230. bottom: 6/1210
  51231. }
  51232. },
  51233. organsFront: {
  51234. height: math.unit(2.83799342105, "feet"),
  51235. name: "Organs (Front)",
  51236. image: {
  51237. source: "./media/characters/jess/organs-front.svg"
  51238. }
  51239. },
  51240. organsSide: {
  51241. height: math.unit(2.64225290474, "feet"),
  51242. name: "Organs (Side)",
  51243. image: {
  51244. source: "./media/characters/jess/organs-side.svg"
  51245. }
  51246. },
  51247. digestiveTractFront: {
  51248. height: math.unit(2.8106580871, "feet"),
  51249. name: "Digestive Tract (Front)",
  51250. image: {
  51251. source: "./media/characters/jess/digestive-tract-front.svg"
  51252. }
  51253. },
  51254. digestiveTractSide: {
  51255. height: math.unit(2.54365045014, "feet"),
  51256. name: "Digestive Tract (Side)",
  51257. image: {
  51258. source: "./media/characters/jess/digestive-tract-side.svg"
  51259. }
  51260. },
  51261. respiratorySystemFront: {
  51262. height: math.unit(1.11196233456, "feet"),
  51263. name: "Respiratory System (Front)",
  51264. image: {
  51265. source: "./media/characters/jess/respiratory-system-front.svg"
  51266. }
  51267. },
  51268. respiratorySystemSide: {
  51269. height: math.unit(0.89327966297, "feet"),
  51270. name: "Respiratory System (Side)",
  51271. image: {
  51272. source: "./media/characters/jess/respiratory-system-side.svg"
  51273. }
  51274. },
  51275. urinaryTractFront: {
  51276. height: math.unit(1.16126356186, "feet"),
  51277. name: "Urinary Tract (Front)",
  51278. image: {
  51279. source: "./media/characters/jess/urinary-tract-front.svg"
  51280. }
  51281. },
  51282. urinaryTractSide: {
  51283. height: math.unit(1.20910039627, "feet"),
  51284. name: "Urinary Tract (Side)",
  51285. image: {
  51286. source: "./media/characters/jess/urinary-tract-side.svg"
  51287. }
  51288. },
  51289. reproductiveOrgansFront: {
  51290. height: math.unit(0.48422591566, "feet"),
  51291. name: "Reproductive Organs (Front)",
  51292. image: {
  51293. source: "./media/characters/jess/reproductive-organs-front.svg"
  51294. }
  51295. },
  51296. reproductiveOrgansSide: {
  51297. height: math.unit(0.61553314481, "feet"),
  51298. name: "Reproductive Organs (Side)",
  51299. image: {
  51300. source: "./media/characters/jess/reproductive-organs-side.svg"
  51301. }
  51302. },
  51303. breastsFront: {
  51304. height: math.unit(0.47690395121, "feet"),
  51305. name: "Breasts (Front)",
  51306. image: {
  51307. source: "./media/characters/jess/breasts-front.svg"
  51308. }
  51309. },
  51310. breastsSide: {
  51311. height: math.unit(0.30556998307, "feet"),
  51312. name: "Breasts (Side)",
  51313. image: {
  51314. source: "./media/characters/jess/breasts-side.svg"
  51315. }
  51316. },
  51317. heartFront: {
  51318. height: math.unit(0.53011022622, "feet"),
  51319. name: "Heart (Front)",
  51320. image: {
  51321. source: "./media/characters/jess/heart-front.svg"
  51322. }
  51323. },
  51324. heartSide: {
  51325. height: math.unit(0.51790695213, "feet"),
  51326. name: "Heart (Side)",
  51327. image: {
  51328. source: "./media/characters/jess/heart-side.svg"
  51329. }
  51330. },
  51331. earsAndNoseFront: {
  51332. height: math.unit(0.29385483995, "feet"),
  51333. name: "Ears and Nose (Front)",
  51334. image: {
  51335. source: "./media/characters/jess/ears-and-nose-front.svg"
  51336. }
  51337. },
  51338. earsAndNoseSide: {
  51339. height: math.unit(0.18109658741, "feet"),
  51340. name: "Ears and Nose (Side)",
  51341. image: {
  51342. source: "./media/characters/jess/ears-and-nose-side.svg"
  51343. }
  51344. },
  51345. },
  51346. [
  51347. {
  51348. name: "Normal",
  51349. height: math.unit(5 + 8/12, "feet"),
  51350. default: true
  51351. },
  51352. ]
  51353. ))
  51354. characterMakers.push(() => makeCharacter(
  51355. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51356. {
  51357. front: {
  51358. height: math.unit(6, "feet"),
  51359. weight: math.unit(6.64467e-7, "grams"),
  51360. name: "Front",
  51361. image: {
  51362. source: "./media/characters/wimpering/front.svg",
  51363. extra: 597/587,
  51364. bottom: 34/631
  51365. }
  51366. },
  51367. },
  51368. [
  51369. {
  51370. name: "Micro",
  51371. height: math.unit(0.4, "mm"),
  51372. default: true
  51373. },
  51374. ]
  51375. ))
  51376. characterMakers.push(() => makeCharacter(
  51377. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51378. {
  51379. front: {
  51380. height: math.unit(5 + 2/12, "feet"),
  51381. weight: math.unit(110, "lb"),
  51382. name: "Front",
  51383. image: {
  51384. source: "./media/characters/keltre/front.svg",
  51385. extra: 1099/1057,
  51386. bottom: 22/1121
  51387. }
  51388. },
  51389. back: {
  51390. height: math.unit(5 + 2/12, "feet"),
  51391. weight: math.unit(110, "lb"),
  51392. name: "Back",
  51393. image: {
  51394. source: "./media/characters/keltre/back.svg",
  51395. extra: 1095/1053,
  51396. bottom: 17/1112
  51397. }
  51398. },
  51399. dressed: {
  51400. height: math.unit(5 + 2/12, "feet"),
  51401. weight: math.unit(110, "lb"),
  51402. name: "Dressed",
  51403. image: {
  51404. source: "./media/characters/keltre/dressed.svg",
  51405. extra: 1099/1057,
  51406. bottom: 22/1121
  51407. }
  51408. },
  51409. winter: {
  51410. height: math.unit(5 + 2/12, "feet"),
  51411. weight: math.unit(110, "lb"),
  51412. name: "Winter",
  51413. image: {
  51414. source: "./media/characters/keltre/winter.svg",
  51415. extra: 1099/1057,
  51416. bottom: 22/1121
  51417. }
  51418. },
  51419. head: {
  51420. height: math.unit(1.61 * 0.86, "feet"),
  51421. name: "Head",
  51422. image: {
  51423. source: "./media/characters/keltre/head.svg",
  51424. extra: 534/421,
  51425. bottom: 0/534
  51426. }
  51427. },
  51428. hand: {
  51429. height: math.unit(1.3 * 0.86, "feet"),
  51430. name: "Hand",
  51431. image: {
  51432. source: "./media/characters/keltre/hand.svg"
  51433. }
  51434. },
  51435. foot: {
  51436. height: math.unit(1.8 * 0.86, "feet"),
  51437. name: "Foot",
  51438. image: {
  51439. source: "./media/characters/keltre/foot.svg"
  51440. }
  51441. },
  51442. },
  51443. [
  51444. {
  51445. name: "Fine",
  51446. height: math.unit(1, "inch")
  51447. },
  51448. {
  51449. name: "Dimnutive",
  51450. height: math.unit(4, "inches")
  51451. },
  51452. {
  51453. name: "Tiny",
  51454. height: math.unit(1, "foot")
  51455. },
  51456. {
  51457. name: "Small",
  51458. height: math.unit(3, "feet")
  51459. },
  51460. {
  51461. name: "Normal",
  51462. height: math.unit(5 + 2/12, "feet"),
  51463. default: true
  51464. },
  51465. ]
  51466. ))
  51467. characterMakers.push(() => makeCharacter(
  51468. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51469. {
  51470. front: {
  51471. height: math.unit(6 + 2/12, "feet"),
  51472. name: "Front",
  51473. image: {
  51474. source: "./media/characters/nox/front.svg",
  51475. extra: 1917/1830,
  51476. bottom: 74/1991
  51477. }
  51478. },
  51479. back: {
  51480. height: math.unit(6 + 2/12, "feet"),
  51481. name: "Back",
  51482. image: {
  51483. source: "./media/characters/nox/back.svg",
  51484. extra: 1896/1815,
  51485. bottom: 21/1917
  51486. }
  51487. },
  51488. head: {
  51489. height: math.unit(1.1, "feet"),
  51490. name: "Head",
  51491. image: {
  51492. source: "./media/characters/nox/head.svg",
  51493. extra: 874/704,
  51494. bottom: 0/874
  51495. }
  51496. },
  51497. tattoo: {
  51498. height: math.unit(0.729, "feet"),
  51499. name: "Tattoo",
  51500. image: {
  51501. source: "./media/characters/nox/tattoo.svg"
  51502. }
  51503. },
  51504. },
  51505. [
  51506. {
  51507. name: "Normal",
  51508. height: math.unit(6 + 2/12, "feet")
  51509. },
  51510. {
  51511. name: "Gigamacro",
  51512. height: math.unit(2, "earths"),
  51513. default: true
  51514. },
  51515. {
  51516. name: "Cosmic",
  51517. height: math.unit(867, "yottameters")
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51523. {
  51524. front: {
  51525. height: math.unit(6, "feet"),
  51526. weight: math.unit(150, "lb"),
  51527. name: "Front",
  51528. image: {
  51529. source: "./media/characters/caspian/front.svg",
  51530. extra: 1443/1359,
  51531. bottom: 0/1443
  51532. }
  51533. },
  51534. back: {
  51535. height: math.unit(6, "feet"),
  51536. weight: math.unit(150, "lb"),
  51537. name: "Back",
  51538. image: {
  51539. source: "./media/characters/caspian/back.svg",
  51540. extra: 1379/1309,
  51541. bottom: 0/1379
  51542. }
  51543. },
  51544. head: {
  51545. height: math.unit(0.9, "feet"),
  51546. name: "Head",
  51547. image: {
  51548. source: "./media/characters/caspian/head.svg",
  51549. extra: 692/492,
  51550. bottom: 0/692
  51551. }
  51552. },
  51553. headAlt: {
  51554. height: math.unit(0.95, "feet"),
  51555. name: "Head (Alt)",
  51556. image: {
  51557. source: "./media/characters/caspian/head-alt.svg",
  51558. extra: 668/508,
  51559. bottom: 0/668
  51560. }
  51561. },
  51562. hand: {
  51563. height: math.unit(0.8, "feet"),
  51564. name: "Hand",
  51565. image: {
  51566. source: "./media/characters/caspian/hand.svg"
  51567. }
  51568. },
  51569. paw: {
  51570. height: math.unit(0.95, "feet"),
  51571. name: "Paw",
  51572. image: {
  51573. source: "./media/characters/caspian/paw.svg"
  51574. }
  51575. },
  51576. },
  51577. [
  51578. {
  51579. name: "Normal",
  51580. height: math.unit(162, "feet"),
  51581. default: true
  51582. },
  51583. ]
  51584. ))
  51585. characterMakers.push(() => makeCharacter(
  51586. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51587. {
  51588. front: {
  51589. height: math.unit(6, "feet"),
  51590. name: "Front",
  51591. image: {
  51592. source: "./media/characters/myra-aisling/front.svg",
  51593. extra: 1268/1166,
  51594. bottom: 73/1341
  51595. }
  51596. },
  51597. back: {
  51598. height: math.unit(6, "feet"),
  51599. name: "Back",
  51600. image: {
  51601. source: "./media/characters/myra-aisling/back.svg",
  51602. extra: 1249/1149,
  51603. bottom: 79/1328
  51604. }
  51605. },
  51606. dressed: {
  51607. height: math.unit(6, "feet"),
  51608. name: "Dressed",
  51609. image: {
  51610. source: "./media/characters/myra-aisling/dressed.svg",
  51611. extra: 1290/1189,
  51612. bottom: 47/1337
  51613. }
  51614. },
  51615. hand: {
  51616. height: math.unit(1.1, "feet"),
  51617. name: "Hand",
  51618. image: {
  51619. source: "./media/characters/myra-aisling/hand.svg"
  51620. }
  51621. },
  51622. paw: {
  51623. height: math.unit(1.23, "feet"),
  51624. name: "Paw",
  51625. image: {
  51626. source: "./media/characters/myra-aisling/paw.svg"
  51627. }
  51628. },
  51629. },
  51630. [
  51631. {
  51632. name: "Normal",
  51633. height: math.unit(160, "feet"),
  51634. default: true
  51635. },
  51636. ]
  51637. ))
  51638. characterMakers.push(() => makeCharacter(
  51639. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51640. {
  51641. front: {
  51642. height: math.unit(6, "feet"),
  51643. name: "Front",
  51644. image: {
  51645. source: "./media/characters/tenley-sidero/front.svg",
  51646. extra: 1365/1276,
  51647. bottom: 47/1412
  51648. }
  51649. },
  51650. back: {
  51651. height: math.unit(6, "feet"),
  51652. name: "Back",
  51653. image: {
  51654. source: "./media/characters/tenley-sidero/back.svg",
  51655. extra: 1383/1283,
  51656. bottom: 35/1418
  51657. }
  51658. },
  51659. dressed: {
  51660. height: math.unit(6, "feet"),
  51661. name: "Dressed",
  51662. image: {
  51663. source: "./media/characters/tenley-sidero/dressed.svg",
  51664. extra: 1364/1275,
  51665. bottom: 42/1406
  51666. }
  51667. },
  51668. head: {
  51669. height: math.unit(1.47, "feet"),
  51670. name: "Head",
  51671. image: {
  51672. source: "./media/characters/tenley-sidero/head.svg",
  51673. extra: 610/490,
  51674. bottom: 0/610
  51675. }
  51676. },
  51677. },
  51678. [
  51679. {
  51680. name: "Normal",
  51681. height: math.unit(154, "feet"),
  51682. default: true
  51683. },
  51684. ]
  51685. ))
  51686. characterMakers.push(() => makeCharacter(
  51687. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51688. {
  51689. front: {
  51690. height: math.unit(5, "inches"),
  51691. name: "Front",
  51692. image: {
  51693. source: "./media/characters/mallory/front.svg",
  51694. extra: 1919/1678,
  51695. bottom: 29/1948
  51696. }
  51697. },
  51698. hand: {
  51699. height: math.unit(0.73, "inches"),
  51700. name: "Hand",
  51701. image: {
  51702. source: "./media/characters/mallory/hand.svg"
  51703. }
  51704. },
  51705. paw: {
  51706. height: math.unit(0.68, "inches"),
  51707. name: "Paw",
  51708. image: {
  51709. source: "./media/characters/mallory/paw.svg"
  51710. }
  51711. },
  51712. },
  51713. [
  51714. {
  51715. name: "Small",
  51716. height: math.unit(5, "inches"),
  51717. default: true
  51718. },
  51719. ]
  51720. ))
  51721. characterMakers.push(() => makeCharacter(
  51722. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51723. {
  51724. naked: {
  51725. height: math.unit(6, "feet"),
  51726. name: "Naked",
  51727. image: {
  51728. source: "./media/characters/mab/naked.svg",
  51729. extra: 1855/1757,
  51730. bottom: 208/2063
  51731. }
  51732. },
  51733. outside: {
  51734. height: math.unit(6, "feet"),
  51735. name: "Outside",
  51736. image: {
  51737. source: "./media/characters/mab/outside.svg",
  51738. extra: 1855/1757,
  51739. bottom: 208/2063
  51740. }
  51741. },
  51742. party: {
  51743. height: math.unit(6, "feet"),
  51744. name: "Party",
  51745. image: {
  51746. source: "./media/characters/mab/party.svg",
  51747. extra: 1855/1757,
  51748. bottom: 208/2063
  51749. }
  51750. },
  51751. },
  51752. [
  51753. {
  51754. name: "Normal",
  51755. height: math.unit(165, "feet"),
  51756. default: true
  51757. },
  51758. ]
  51759. ))
  51760. characterMakers.push(() => makeCharacter(
  51761. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51762. {
  51763. feral: {
  51764. height: math.unit(12, "feet"),
  51765. weight: math.unit(20000, "lb"),
  51766. name: "Side",
  51767. image: {
  51768. source: "./media/characters/winter/feral.svg",
  51769. extra: 1286/943,
  51770. bottom: 112/1398
  51771. },
  51772. form: "feral",
  51773. default: true
  51774. },
  51775. feralNsfw: {
  51776. height: math.unit(12, "feet"),
  51777. weight: math.unit(20000, "lb"),
  51778. name: "Side (NSFW)",
  51779. image: {
  51780. source: "./media/characters/winter/feral-nsfw.svg",
  51781. extra: 1286/943,
  51782. bottom: 112/1398
  51783. },
  51784. form: "feral"
  51785. },
  51786. dick: {
  51787. height: math.unit(3.79, "feet"),
  51788. name: "Dick",
  51789. image: {
  51790. source: "./media/characters/winter/dick.svg"
  51791. },
  51792. form: "feral"
  51793. },
  51794. anthro: {
  51795. height: math.unit(12, "feet"),
  51796. weight: math.unit(10, "tons"),
  51797. name: "Anthro",
  51798. image: {
  51799. source: "./media/characters/winter/anthro.svg",
  51800. extra: 1701/1553,
  51801. bottom: 64/1765
  51802. },
  51803. form: "anthro",
  51804. default: true
  51805. },
  51806. },
  51807. [
  51808. {
  51809. name: "Big",
  51810. height: math.unit(12, "feet"),
  51811. default: true,
  51812. form: "feral"
  51813. },
  51814. {
  51815. name: "Big",
  51816. height: math.unit(12, "feet"),
  51817. default: true,
  51818. form: "anthro"
  51819. },
  51820. ],
  51821. {
  51822. "feral": {
  51823. name: "Feral",
  51824. default: true
  51825. },
  51826. "anthro": {
  51827. name: "Anthro"
  51828. }
  51829. }
  51830. ))
  51831. characterMakers.push(() => makeCharacter(
  51832. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51833. {
  51834. front: {
  51835. height: math.unit(4.1, "inches"),
  51836. name: "Front",
  51837. image: {
  51838. source: "./media/characters/alto/front.svg",
  51839. extra: 736/627,
  51840. bottom: 90/826
  51841. }
  51842. },
  51843. },
  51844. [
  51845. {
  51846. name: "Normal",
  51847. height: math.unit(4.1, "inches"),
  51848. default: true
  51849. },
  51850. ]
  51851. ))
  51852. characterMakers.push(() => makeCharacter(
  51853. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51854. {
  51855. sitting: {
  51856. height: math.unit(3, "feet"),
  51857. name: "Sitting",
  51858. image: {
  51859. source: "./media/characters/ratstrid-v/sitting.svg",
  51860. extra: 355/310,
  51861. bottom: 136/491
  51862. }
  51863. },
  51864. },
  51865. [
  51866. {
  51867. name: "Normal",
  51868. height: math.unit(3, "feet"),
  51869. default: true
  51870. },
  51871. ]
  51872. ))
  51873. characterMakers.push(() => makeCharacter(
  51874. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51875. {
  51876. back: {
  51877. height: math.unit(6, "feet"),
  51878. weight: math.unit(450, "lb"),
  51879. name: "Back",
  51880. image: {
  51881. source: "./media/characters/siz/back.svg",
  51882. extra: 1449/1274,
  51883. bottom: 13/1462
  51884. }
  51885. },
  51886. },
  51887. [
  51888. {
  51889. name: "Smallest",
  51890. height: math.unit(18 + 3/12, "feet")
  51891. },
  51892. {
  51893. name: "Modest",
  51894. height: math.unit(56 + 8/12, "feet"),
  51895. default: true
  51896. },
  51897. {
  51898. name: "Largest",
  51899. height: math.unit(3590, "feet")
  51900. },
  51901. ]
  51902. ))
  51903. characterMakers.push(() => makeCharacter(
  51904. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51905. {
  51906. front: {
  51907. height: math.unit(5 + 9/12, "feet"),
  51908. weight: math.unit(150, "lb"),
  51909. name: "Front",
  51910. image: {
  51911. source: "./media/characters/ven/front.svg",
  51912. extra: 1372/1320,
  51913. bottom: 73/1445
  51914. }
  51915. },
  51916. side: {
  51917. height: math.unit(5 + 9/12, "feet"),
  51918. weight: math.unit(1150, "lb"),
  51919. name: "Side",
  51920. image: {
  51921. source: "./media/characters/ven/side.svg",
  51922. extra: 1119/1070,
  51923. bottom: 42/1161
  51924. },
  51925. default: true
  51926. },
  51927. },
  51928. [
  51929. {
  51930. name: "Normal",
  51931. height: math.unit(5 + 9/12, "feet"),
  51932. default: true
  51933. },
  51934. ]
  51935. ))
  51936. characterMakers.push(() => makeCharacter(
  51937. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51938. {
  51939. front: {
  51940. height: math.unit(12, "feet"),
  51941. weight: math.unit(1000, "kg"),
  51942. name: "Front",
  51943. image: {
  51944. source: "./media/characters/maple/front.svg",
  51945. extra: 1193/1081,
  51946. bottom: 22/1215
  51947. }
  51948. },
  51949. },
  51950. [
  51951. {
  51952. name: "Compressed",
  51953. height: math.unit(7, "feet")
  51954. },
  51955. {
  51956. name: "Normal",
  51957. height: math.unit(12, "feet"),
  51958. default: true
  51959. },
  51960. ]
  51961. ))
  51962. characterMakers.push(() => makeCharacter(
  51963. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51964. {
  51965. front: {
  51966. height: math.unit(9, "feet"),
  51967. weight: math.unit(1500, "lb"),
  51968. name: "Front",
  51969. image: {
  51970. source: "./media/characters/nora/front.svg",
  51971. extra: 1348/1286,
  51972. bottom: 218/1566
  51973. }
  51974. },
  51975. erect: {
  51976. height: math.unit(9, "feet"),
  51977. weight: math.unit(11500, "lb"),
  51978. name: "Erect",
  51979. image: {
  51980. source: "./media/characters/nora/erect.svg",
  51981. extra: 1488/1433,
  51982. bottom: 133/1621
  51983. }
  51984. },
  51985. },
  51986. [
  51987. {
  51988. name: "Normal",
  51989. height: math.unit(9, "feet"),
  51990. default: true
  51991. },
  51992. ]
  51993. ))
  51994. characterMakers.push(() => makeCharacter(
  51995. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51996. {
  51997. front: {
  51998. height: math.unit(25, "feet"),
  51999. weight: math.unit(27500, "lb"),
  52000. name: "Front",
  52001. image: {
  52002. source: "./media/characters/north-caudin/front.svg",
  52003. extra: 1184/1082,
  52004. bottom: 23/1207
  52005. }
  52006. },
  52007. },
  52008. [
  52009. {
  52010. name: "Compressed",
  52011. height: math.unit(10, "feet")
  52012. },
  52013. {
  52014. name: "Normal",
  52015. height: math.unit(25, "feet"),
  52016. default: true
  52017. },
  52018. ]
  52019. ))
  52020. characterMakers.push(() => makeCharacter(
  52021. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52022. {
  52023. front: {
  52024. height: math.unit(9, "feet"),
  52025. weight: math.unit(1250, "lb"),
  52026. name: "Front",
  52027. image: {
  52028. source: "./media/characters/merrian/front.svg",
  52029. extra: 2393/2304,
  52030. bottom: 40/2433
  52031. }
  52032. },
  52033. },
  52034. [
  52035. {
  52036. name: "Normal",
  52037. height: math.unit(9, "feet"),
  52038. default: true
  52039. },
  52040. ]
  52041. ))
  52042. characterMakers.push(() => makeCharacter(
  52043. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52044. {
  52045. front: {
  52046. height: math.unit(9, "feet"),
  52047. weight: math.unit(1000, "lb"),
  52048. name: "Front",
  52049. image: {
  52050. source: "./media/characters/hazel/front.svg",
  52051. extra: 2351/2298,
  52052. bottom: 38/2389
  52053. }
  52054. },
  52055. },
  52056. [
  52057. {
  52058. name: "Normal",
  52059. height: math.unit(9, "feet"),
  52060. default: true
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52066. {
  52067. front: {
  52068. height: math.unit(13, "feet"),
  52069. weight: math.unit(3200, "lb"),
  52070. name: "Front",
  52071. image: {
  52072. source: "./media/characters/emma/front.svg",
  52073. extra: 2263/2029,
  52074. bottom: 68/2331
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(13, "feet"),
  52082. default: true
  52083. },
  52084. ]
  52085. ))
  52086. characterMakers.push(() => makeCharacter(
  52087. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52088. {
  52089. front: {
  52090. height: math.unit(11 + 9/12, "feet"),
  52091. weight: math.unit(2500, "lb"),
  52092. name: "Front",
  52093. image: {
  52094. source: "./media/characters/ilumina/front.svg",
  52095. extra: 2248/2209,
  52096. bottom: 164/2412
  52097. }
  52098. },
  52099. },
  52100. [
  52101. {
  52102. name: "Normal",
  52103. height: math.unit(11 + 9/12, "feet"),
  52104. default: true
  52105. },
  52106. ]
  52107. ))
  52108. characterMakers.push(() => makeCharacter(
  52109. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52110. {
  52111. front: {
  52112. height: math.unit(8 + 10/12, "feet"),
  52113. weight: math.unit(1350, "lb"),
  52114. name: "Front",
  52115. image: {
  52116. source: "./media/characters/moonshine/front.svg",
  52117. extra: 2395/2288,
  52118. bottom: 40/2435
  52119. }
  52120. },
  52121. },
  52122. [
  52123. {
  52124. name: "Normal",
  52125. height: math.unit(8 + 10/12, "feet"),
  52126. default: true
  52127. },
  52128. ]
  52129. ))
  52130. characterMakers.push(() => makeCharacter(
  52131. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52132. {
  52133. front: {
  52134. height: math.unit(14, "feet"),
  52135. weight: math.unit(3400, "lb"),
  52136. name: "Front",
  52137. image: {
  52138. source: "./media/characters/aletia/front.svg",
  52139. extra: 1185/1052,
  52140. bottom: 21/1206
  52141. }
  52142. },
  52143. },
  52144. [
  52145. {
  52146. name: "Compressed",
  52147. height: math.unit(8, "feet")
  52148. },
  52149. {
  52150. name: "Normal",
  52151. height: math.unit(14, "feet"),
  52152. default: true
  52153. },
  52154. ]
  52155. ))
  52156. characterMakers.push(() => makeCharacter(
  52157. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52158. {
  52159. front: {
  52160. height: math.unit(17, "feet"),
  52161. weight: math.unit(6500, "lb"),
  52162. name: "Front",
  52163. image: {
  52164. source: "./media/characters/deidra/front.svg",
  52165. extra: 1201/1081,
  52166. bottom: 16/1217
  52167. }
  52168. },
  52169. },
  52170. [
  52171. {
  52172. name: "Compressed",
  52173. height: math.unit(9 + 6/12, "feet")
  52174. },
  52175. {
  52176. name: "Normal",
  52177. height: math.unit(17, "feet"),
  52178. default: true
  52179. },
  52180. ]
  52181. ))
  52182. characterMakers.push(() => makeCharacter(
  52183. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52184. {
  52185. front: {
  52186. height: math.unit(7 + 4/12, "feet"),
  52187. weight: math.unit(280, "lb"),
  52188. name: "Front",
  52189. image: {
  52190. source: "./media/characters/freki-yrmori/front.svg",
  52191. extra: 1286/1182,
  52192. bottom: 29/1315
  52193. }
  52194. },
  52195. maw: {
  52196. height: math.unit(0.9, "feet"),
  52197. name: "Maw",
  52198. image: {
  52199. source: "./media/characters/freki-yrmori/maw.svg"
  52200. }
  52201. },
  52202. },
  52203. [
  52204. {
  52205. name: "Normal",
  52206. height: math.unit(7 + 4/12, "feet"),
  52207. default: true
  52208. },
  52209. {
  52210. name: "Macro",
  52211. height: math.unit(38.5, "meters")
  52212. },
  52213. ]
  52214. ))
  52215. characterMakers.push(() => makeCharacter(
  52216. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52217. {
  52218. side: {
  52219. height: math.unit(47.2, "meters"),
  52220. weight: math.unit(10000, "tons"),
  52221. name: "Side",
  52222. image: {
  52223. source: "./media/characters/aetherios/side.svg",
  52224. extra: 2363/642,
  52225. bottom: 221/2584
  52226. }
  52227. },
  52228. top: {
  52229. height: math.unit(240, "meters"),
  52230. weight: math.unit(10000, "tons"),
  52231. name: "Top",
  52232. image: {
  52233. source: "./media/characters/aetherios/top.svg"
  52234. }
  52235. },
  52236. bottom: {
  52237. height: math.unit(240, "meters"),
  52238. weight: math.unit(10000, "tons"),
  52239. name: "Bottom",
  52240. image: {
  52241. source: "./media/characters/aetherios/bottom.svg"
  52242. }
  52243. },
  52244. head: {
  52245. height: math.unit(38.6, "meters"),
  52246. name: "Head",
  52247. image: {
  52248. source: "./media/characters/aetherios/head.svg",
  52249. extra: 1335/1112,
  52250. bottom: 0/1335
  52251. }
  52252. },
  52253. front: {
  52254. height: math.unit(29, "meters"),
  52255. name: "Front",
  52256. image: {
  52257. source: "./media/characters/aetherios/front.svg",
  52258. extra: 1266/953,
  52259. bottom: 158/1424
  52260. }
  52261. },
  52262. maw: {
  52263. height: math.unit(16.37, "meters"),
  52264. name: "Maw",
  52265. image: {
  52266. source: "./media/characters/aetherios/maw.svg",
  52267. extra: 748/637,
  52268. bottom: 0/748
  52269. },
  52270. extraAttributes: {
  52271. preyCapacity: {
  52272. name: "Capacity",
  52273. power: 3,
  52274. type: "volume",
  52275. base: math.unit(1000, "people")
  52276. },
  52277. tongueSize: {
  52278. name: "Tongue Size",
  52279. power: 2,
  52280. type: "area",
  52281. base: math.unit(21, "m^2")
  52282. }
  52283. }
  52284. },
  52285. forepaw: {
  52286. height: math.unit(18, "meters"),
  52287. name: "Forepaw",
  52288. image: {
  52289. source: "./media/characters/aetherios/forepaw.svg"
  52290. }
  52291. },
  52292. hindpaw: {
  52293. height: math.unit(23, "meters"),
  52294. name: "Hindpaw",
  52295. image: {
  52296. source: "./media/characters/aetherios/hindpaw.svg"
  52297. }
  52298. },
  52299. genitals: {
  52300. height: math.unit(42, "meters"),
  52301. name: "Genitals",
  52302. image: {
  52303. source: "./media/characters/aetherios/genitals.svg"
  52304. }
  52305. },
  52306. },
  52307. [
  52308. {
  52309. name: "Normal",
  52310. height: math.unit(47.2, "meters"),
  52311. default: true
  52312. },
  52313. {
  52314. name: "Macro",
  52315. height: math.unit(160, "meters")
  52316. },
  52317. {
  52318. name: "Mega",
  52319. height: math.unit(1.87, "km")
  52320. },
  52321. {
  52322. name: "Giga",
  52323. height: math.unit(40000, "km")
  52324. },
  52325. {
  52326. name: "Stellar",
  52327. height: math.unit(158000000, "km")
  52328. },
  52329. {
  52330. name: "Cosmic",
  52331. height: math.unit(9.46e12, "km")
  52332. },
  52333. ]
  52334. ))
  52335. characterMakers.push(() => makeCharacter(
  52336. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52337. {
  52338. front: {
  52339. height: math.unit(5 + 4/12, "feet"),
  52340. weight: math.unit(80, "lb"),
  52341. name: "Front",
  52342. image: {
  52343. source: "./media/characters/mizu-gieeg/front.svg",
  52344. extra: 850/709,
  52345. bottom: 52/902
  52346. }
  52347. },
  52348. back: {
  52349. height: math.unit(5 + 4/12, "feet"),
  52350. weight: math.unit(80, "lb"),
  52351. name: "Back",
  52352. image: {
  52353. source: "./media/characters/mizu-gieeg/back.svg",
  52354. extra: 882/745,
  52355. bottom: 25/907
  52356. }
  52357. },
  52358. },
  52359. [
  52360. {
  52361. name: "Normal",
  52362. height: math.unit(5 + 4/12, "feet"),
  52363. default: true
  52364. },
  52365. ]
  52366. ))
  52367. characterMakers.push(() => makeCharacter(
  52368. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52369. {
  52370. front: {
  52371. height: math.unit(6, "feet"),
  52372. name: "Front",
  52373. image: {
  52374. source: "./media/characters/roselle-st-papier/front.svg",
  52375. extra: 1430/1280,
  52376. bottom: 37/1467
  52377. }
  52378. },
  52379. back: {
  52380. height: math.unit(6, "feet"),
  52381. name: "Back",
  52382. image: {
  52383. source: "./media/characters/roselle-st-papier/back.svg",
  52384. extra: 1491/1296,
  52385. bottom: 23/1514
  52386. }
  52387. },
  52388. ear: {
  52389. height: math.unit(1.26, "feet"),
  52390. name: "Ear",
  52391. image: {
  52392. source: "./media/characters/roselle-st-papier/ear.svg"
  52393. }
  52394. },
  52395. },
  52396. [
  52397. {
  52398. name: "Normal",
  52399. height: math.unit(150, "feet"),
  52400. default: true
  52401. },
  52402. ]
  52403. ))
  52404. characterMakers.push(() => makeCharacter(
  52405. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52406. {
  52407. front: {
  52408. height: math.unit(1, "inches"),
  52409. name: "Front",
  52410. image: {
  52411. source: "./media/characters/valargent/front.svg",
  52412. extra: 1825/1694,
  52413. bottom: 62/1887
  52414. }
  52415. },
  52416. back: {
  52417. height: math.unit(1, "inches"),
  52418. name: "Back",
  52419. image: {
  52420. source: "./media/characters/valargent/back.svg",
  52421. extra: 1775/1682,
  52422. bottom: 88/1863
  52423. }
  52424. },
  52425. },
  52426. [
  52427. {
  52428. name: "Micro",
  52429. height: math.unit(1, "inch"),
  52430. default: true
  52431. },
  52432. ]
  52433. ))
  52434. characterMakers.push(() => makeCharacter(
  52435. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52436. {
  52437. front: {
  52438. height: math.unit(3.4, "meters"),
  52439. name: "Front",
  52440. image: {
  52441. source: "./media/characters/zarina/front.svg",
  52442. extra: 1733/1425,
  52443. bottom: 93/1826
  52444. }
  52445. },
  52446. squatting: {
  52447. height: math.unit(2.14, "meters"),
  52448. name: "Squatting",
  52449. image: {
  52450. source: "./media/characters/zarina/squatting.svg",
  52451. extra: 1073/788,
  52452. bottom: 63/1136
  52453. }
  52454. },
  52455. back: {
  52456. height: math.unit(2.14, "meters"),
  52457. name: "Back",
  52458. image: {
  52459. source: "./media/characters/zarina/back.svg",
  52460. extra: 1128/885,
  52461. bottom: 0/1128
  52462. }
  52463. },
  52464. },
  52465. [
  52466. {
  52467. name: "Normal",
  52468. height: math.unit(3.4, "meters"),
  52469. default: true
  52470. },
  52471. {
  52472. name: "Big",
  52473. height: math.unit(5, "meters")
  52474. },
  52475. {
  52476. name: "Macro",
  52477. height: math.unit(110, "meters")
  52478. },
  52479. ]
  52480. ))
  52481. characterMakers.push(() => makeCharacter(
  52482. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52483. {
  52484. front: {
  52485. height: math.unit(7, "feet"),
  52486. name: "Front",
  52487. image: {
  52488. source: "./media/characters/ventus-astro-fox/front.svg",
  52489. extra: 1792/1623,
  52490. bottom: 28/1820
  52491. }
  52492. },
  52493. back: {
  52494. height: math.unit(7, "feet"),
  52495. name: "Back",
  52496. image: {
  52497. source: "./media/characters/ventus-astro-fox/back.svg",
  52498. extra: 1789/1620,
  52499. bottom: 31/1820
  52500. }
  52501. },
  52502. outfit: {
  52503. height: math.unit(7, "feet"),
  52504. name: "Outfit",
  52505. image: {
  52506. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52507. extra: 1054/925,
  52508. bottom: 15/1069
  52509. }
  52510. },
  52511. head: {
  52512. height: math.unit(1.12, "feet"),
  52513. name: "Head",
  52514. image: {
  52515. source: "./media/characters/ventus-astro-fox/head.svg",
  52516. extra: 866/504,
  52517. bottom: 0/866
  52518. }
  52519. },
  52520. hand: {
  52521. height: math.unit(1, "feet"),
  52522. name: "Hand",
  52523. image: {
  52524. source: "./media/characters/ventus-astro-fox/hand.svg"
  52525. }
  52526. },
  52527. paw: {
  52528. height: math.unit(1.5, "feet"),
  52529. name: "Paw",
  52530. image: {
  52531. source: "./media/characters/ventus-astro-fox/paw.svg"
  52532. }
  52533. },
  52534. },
  52535. [
  52536. {
  52537. name: "Normal",
  52538. height: math.unit(7, "feet"),
  52539. default: true
  52540. },
  52541. {
  52542. name: "Macro",
  52543. height: math.unit(200, "feet")
  52544. },
  52545. {
  52546. name: "Cosmic",
  52547. height: math.unit(3, "universes")
  52548. },
  52549. ]
  52550. ))
  52551. characterMakers.push(() => makeCharacter(
  52552. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52553. {
  52554. front: {
  52555. height: math.unit(3, "meters"),
  52556. weight: math.unit(7000, "lb"),
  52557. name: "Front",
  52558. image: {
  52559. source: "./media/characters/core-t/front.svg",
  52560. extra: 5729/4941,
  52561. bottom: 1129/6858
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Big",
  52568. height: math.unit(3, "meters"),
  52569. default: true
  52570. },
  52571. ]
  52572. ))
  52573. characterMakers.push(() => makeCharacter(
  52574. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52575. {
  52576. normal: {
  52577. height: math.unit(6 + 6/12, "feet"),
  52578. weight: math.unit(275, "lb"),
  52579. name: "Front",
  52580. image: {
  52581. source: "./media/characters/cadbunny/normal.svg",
  52582. extra: 1129/947,
  52583. bottom: 93/1222
  52584. },
  52585. default: true,
  52586. form: "normal"
  52587. },
  52588. gigantamax: {
  52589. height: math.unit(26, "feet"),
  52590. weight: math.unit(16000, "lb"),
  52591. name: "Front",
  52592. image: {
  52593. source: "./media/characters/cadbunny/gigantamax.svg",
  52594. extra: 1133/944,
  52595. bottom: 90/1223
  52596. },
  52597. default: true,
  52598. form: "gigantamax"
  52599. },
  52600. },
  52601. [
  52602. {
  52603. name: "Normal",
  52604. height: math.unit(6 + 6/12, "feet"),
  52605. default: true,
  52606. form: "normal"
  52607. },
  52608. {
  52609. name: "Small",
  52610. height: math.unit(26, "feet"),
  52611. default: true,
  52612. form: "gigantamax"
  52613. },
  52614. {
  52615. name: "Large",
  52616. height: math.unit(78, "feet"),
  52617. form: "gigantamax"
  52618. },
  52619. ],
  52620. {
  52621. "normal": {
  52622. name: "Normal",
  52623. default: true
  52624. },
  52625. "gigantamax": {
  52626. name: "Gigantamax"
  52627. }
  52628. }
  52629. ))
  52630. characterMakers.push(() => makeCharacter(
  52631. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52632. {
  52633. anthroFront: {
  52634. height: math.unit(8, "feet"),
  52635. weight: math.unit(300, "lb"),
  52636. name: "Front",
  52637. image: {
  52638. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52639. extra: 1272/1176,
  52640. bottom: 53/1325
  52641. },
  52642. form: "anthro",
  52643. default: true
  52644. },
  52645. feralSide: {
  52646. height: math.unit(4, "feet"),
  52647. weight: math.unit(250, "lb"),
  52648. name: "Side",
  52649. image: {
  52650. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52651. extra: 731/621,
  52652. bottom: 0/731
  52653. },
  52654. form: "feral",
  52655. default: true
  52656. },
  52657. },
  52658. [
  52659. {
  52660. name: "Regular",
  52661. height: math.unit(8, "feet"),
  52662. form: "anthro"
  52663. },
  52664. {
  52665. name: "Macro",
  52666. height: math.unit(250, "feet"),
  52667. form: "anthro",
  52668. default: true
  52669. },
  52670. {
  52671. name: "Regular",
  52672. height: math.unit(4, "feet"),
  52673. form: "feral"
  52674. },
  52675. {
  52676. name: "Macro",
  52677. height: math.unit(125, "feet"),
  52678. form: "feral",
  52679. default: true
  52680. },
  52681. ],
  52682. {
  52683. "anthro": {
  52684. name: "Anthro",
  52685. default: true
  52686. },
  52687. "feral": {
  52688. name: "Feral",
  52689. },
  52690. }
  52691. ))
  52692. characterMakers.push(() => makeCharacter(
  52693. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52694. {
  52695. front: {
  52696. height: math.unit(11 + 10/12, "feet"),
  52697. weight: math.unit(1587, "kg"),
  52698. name: "Front",
  52699. image: {
  52700. source: "./media/characters/maple-javira-dragon/front.svg",
  52701. extra: 1136/744,
  52702. bottom: 73/1209
  52703. }
  52704. },
  52705. side: {
  52706. height: math.unit(11 + 10/12, "feet"),
  52707. weight: math.unit(1587, "kg"),
  52708. name: "Side",
  52709. image: {
  52710. source: "./media/characters/maple-javira-dragon/side.svg",
  52711. extra: 712/505,
  52712. bottom: 17/729
  52713. }
  52714. },
  52715. head: {
  52716. height: math.unit(8.05, "feet"),
  52717. name: "Head",
  52718. image: {
  52719. source: "./media/characters/maple-javira-dragon/head.svg",
  52720. extra: 1420/1344,
  52721. bottom: 0/1420
  52722. }
  52723. },
  52724. },
  52725. [
  52726. {
  52727. name: "Normal",
  52728. height: math.unit(11 + 10/12, "feet"),
  52729. default: true
  52730. },
  52731. ]
  52732. ))
  52733. characterMakers.push(() => makeCharacter(
  52734. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52735. {
  52736. front: {
  52737. height: math.unit(117, "cm"),
  52738. weight: math.unit(50, "kg"),
  52739. name: "Front",
  52740. image: {
  52741. source: "./media/characters/sonia-wyverntail/front.svg",
  52742. extra: 708/592,
  52743. bottom: 25/733
  52744. }
  52745. },
  52746. },
  52747. [
  52748. {
  52749. name: "Normal",
  52750. height: math.unit(117, "cm"),
  52751. default: true
  52752. },
  52753. ]
  52754. ))
  52755. characterMakers.push(() => makeCharacter(
  52756. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52757. {
  52758. front: {
  52759. height: math.unit(6 + 5/12, "feet"),
  52760. name: "Front",
  52761. image: {
  52762. source: "./media/characters/micah/front.svg",
  52763. extra: 1758/1546,
  52764. bottom: 214/1972
  52765. }
  52766. },
  52767. },
  52768. [
  52769. {
  52770. name: "Normal",
  52771. height: math.unit(6 + 5/12, "feet"),
  52772. default: true
  52773. },
  52774. ]
  52775. ))
  52776. characterMakers.push(() => makeCharacter(
  52777. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52778. {
  52779. front: {
  52780. height: math.unit(1.75, "meters"),
  52781. weight: math.unit(100, "kg"),
  52782. name: "Front",
  52783. image: {
  52784. source: "./media/characters/zarya/front.svg",
  52785. extra: 741/735,
  52786. bottom: 44/785
  52787. },
  52788. extraAttributes: {
  52789. "tailLength": {
  52790. name: "Tail Length",
  52791. power: 1,
  52792. type: "length",
  52793. base: math.unit(180, "cm")
  52794. },
  52795. "pawLength": {
  52796. name: "Paw Length",
  52797. power: 1,
  52798. type: "length",
  52799. base: math.unit(31, "cm")
  52800. },
  52801. }
  52802. },
  52803. side: {
  52804. height: math.unit(1.75, "meters"),
  52805. weight: math.unit(100, "kg"),
  52806. name: "Side",
  52807. image: {
  52808. source: "./media/characters/zarya/side.svg",
  52809. extra: 776/770,
  52810. bottom: 17/793
  52811. },
  52812. extraAttributes: {
  52813. "tailLength": {
  52814. name: "Tail Length",
  52815. power: 1,
  52816. type: "length",
  52817. base: math.unit(180, "cm")
  52818. },
  52819. "pawLength": {
  52820. name: "Paw Length",
  52821. power: 1,
  52822. type: "length",
  52823. base: math.unit(31, "cm")
  52824. },
  52825. }
  52826. },
  52827. back: {
  52828. height: math.unit(1.75, "meters"),
  52829. weight: math.unit(100, "kg"),
  52830. name: "Back",
  52831. image: {
  52832. source: "./media/characters/zarya/back.svg",
  52833. extra: 741/735,
  52834. bottom: 44/785
  52835. },
  52836. extraAttributes: {
  52837. "tailLength": {
  52838. name: "Tail Length",
  52839. power: 1,
  52840. type: "length",
  52841. base: math.unit(180, "cm")
  52842. },
  52843. "pawLength": {
  52844. name: "Paw Length",
  52845. power: 1,
  52846. type: "length",
  52847. base: math.unit(31, "cm")
  52848. },
  52849. }
  52850. },
  52851. frontNoTail: {
  52852. height: math.unit(1.75, "meters"),
  52853. weight: math.unit(100, "kg"),
  52854. name: "Front (No Tail)",
  52855. image: {
  52856. source: "./media/characters/zarya/front-no-tail.svg",
  52857. extra: 741/735,
  52858. bottom: 44/785
  52859. },
  52860. extraAttributes: {
  52861. "tailLength": {
  52862. name: "Tail Length",
  52863. power: 1,
  52864. type: "length",
  52865. base: math.unit(180, "cm")
  52866. },
  52867. "pawLength": {
  52868. name: "Paw Length",
  52869. power: 1,
  52870. type: "length",
  52871. base: math.unit(31, "cm")
  52872. },
  52873. }
  52874. },
  52875. dressed: {
  52876. height: math.unit(1.75, "meters"),
  52877. weight: math.unit(100, "kg"),
  52878. name: "Dressed",
  52879. image: {
  52880. source: "./media/characters/zarya/dressed.svg",
  52881. extra: 683/672,
  52882. bottom: 79/762
  52883. },
  52884. extraAttributes: {
  52885. "tailLength": {
  52886. name: "Tail Length",
  52887. power: 1,
  52888. type: "length",
  52889. base: math.unit(180, "cm")
  52890. },
  52891. "pawLength": {
  52892. name: "Paw Length",
  52893. power: 1,
  52894. type: "length",
  52895. base: math.unit(31, "cm")
  52896. },
  52897. }
  52898. },
  52899. },
  52900. [
  52901. {
  52902. name: "Micro",
  52903. height: math.unit(5, "cm")
  52904. },
  52905. {
  52906. name: "Normal",
  52907. height: math.unit(1.75, "meters"),
  52908. default: true
  52909. },
  52910. {
  52911. name: "Macro",
  52912. height: math.unit(122, "meters")
  52913. },
  52914. ]
  52915. ))
  52916. characterMakers.push(() => makeCharacter(
  52917. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52918. {
  52919. front: {
  52920. height: math.unit(7.5, "feet"),
  52921. name: "Front",
  52922. image: {
  52923. source: "./media/characters/sven-hatisson/front.svg",
  52924. extra: 917/857,
  52925. bottom: 42/959
  52926. }
  52927. },
  52928. back: {
  52929. height: math.unit(7.5, "feet"),
  52930. name: "Back",
  52931. image: {
  52932. source: "./media/characters/sven-hatisson/back.svg",
  52933. extra: 903/856,
  52934. bottom: 15/918
  52935. }
  52936. },
  52937. },
  52938. [
  52939. {
  52940. name: "Base Height",
  52941. height: math.unit(7.5, "feet")
  52942. },
  52943. {
  52944. name: "Usual Height",
  52945. height: math.unit(13.5, "feet"),
  52946. default: true
  52947. },
  52948. {
  52949. name: "Smaller Macro",
  52950. height: math.unit(85, "feet")
  52951. },
  52952. {
  52953. name: "Moderate Macro",
  52954. height: math.unit(320, "feet")
  52955. },
  52956. {
  52957. name: "Large Macro",
  52958. height: math.unit(1000, "feet")
  52959. },
  52960. {
  52961. name: "Largest Size",
  52962. height: math.unit(2, "miles")
  52963. },
  52964. ]
  52965. ))
  52966. characterMakers.push(() => makeCharacter(
  52967. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52968. {
  52969. side: {
  52970. height: math.unit(1.8, "meters"),
  52971. weight: math.unit(275, "kg"),
  52972. name: "Side",
  52973. image: {
  52974. source: "./media/characters/terra/side.svg",
  52975. extra: 1273/1147,
  52976. bottom: 0/1273
  52977. }
  52978. },
  52979. },
  52980. [
  52981. {
  52982. name: "Normal",
  52983. height: math.unit(16.2, "meters"),
  52984. default: true
  52985. },
  52986. ]
  52987. ))
  52988. characterMakers.push(() => makeCharacter(
  52989. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52990. {
  52991. borzoiFront: {
  52992. height: math.unit(6 + 9/12, "feet"),
  52993. name: "Front",
  52994. image: {
  52995. source: "./media/characters/rae/borzoi-front.svg",
  52996. extra: 1161/1098,
  52997. bottom: 31/1192
  52998. },
  52999. form: "borzoi",
  53000. default: true
  53001. },
  53002. werewolfFront: {
  53003. height: math.unit(8 + 7/12, "feet"),
  53004. name: "Front",
  53005. image: {
  53006. source: "./media/characters/rae/werewolf-front.svg",
  53007. extra: 1411/1334,
  53008. bottom: 127/1538
  53009. },
  53010. form: "werewolf",
  53011. default: true
  53012. },
  53013. },
  53014. [
  53015. {
  53016. name: "Normal",
  53017. height: math.unit(6 + 9/12, "feet"),
  53018. default: true,
  53019. form: "borzoi"
  53020. },
  53021. {
  53022. name: "Normal",
  53023. height: math.unit(8 + 7/12, "feet"),
  53024. default: true,
  53025. form: "werewolf"
  53026. },
  53027. ],
  53028. {
  53029. "borzoi": {
  53030. name: "Borzoi",
  53031. default: true
  53032. },
  53033. "werewolf": {
  53034. name: "Werewolf",
  53035. },
  53036. }
  53037. ))
  53038. characterMakers.push(() => makeCharacter(
  53039. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53040. {
  53041. front: {
  53042. height: math.unit(8 + 7/12, "feet"),
  53043. weight: math.unit(482, "lb"),
  53044. name: "Front",
  53045. image: {
  53046. source: "./media/characters/kit/front.svg",
  53047. extra: 1247/1103,
  53048. bottom: 41/1288
  53049. }
  53050. },
  53051. back: {
  53052. height: math.unit(8 + 7/12, "feet"),
  53053. weight: math.unit(482, "lb"),
  53054. name: "Back",
  53055. image: {
  53056. source: "./media/characters/kit/back.svg",
  53057. extra: 1252/1123,
  53058. bottom: 21/1273
  53059. }
  53060. },
  53061. paw: {
  53062. height: math.unit(1.46, "feet"),
  53063. name: "Paw",
  53064. image: {
  53065. source: "./media/characters/kit/paw.svg"
  53066. }
  53067. },
  53068. },
  53069. [
  53070. {
  53071. name: "Normal",
  53072. height: math.unit(2.61, "meters"),
  53073. default: true
  53074. },
  53075. {
  53076. name: "\"Tall\"",
  53077. height: math.unit(8.21, "meters")
  53078. },
  53079. {
  53080. name: "Tall",
  53081. height: math.unit(19.6, "meters")
  53082. },
  53083. {
  53084. name: "Very Tall",
  53085. height: math.unit(57.91, "meters")
  53086. },
  53087. {
  53088. name: "Semi-Macro",
  53089. height: math.unit(138.64, "meters")
  53090. },
  53091. {
  53092. name: "Macro",
  53093. height: math.unit(831.99, "meters")
  53094. },
  53095. {
  53096. name: "EX-Macro",
  53097. height: math.unit(96451121, "meters")
  53098. },
  53099. {
  53100. name: "S1-Omnipotent",
  53101. height: math.unit(4.42074e+9, "meters")
  53102. },
  53103. {
  53104. name: "S2-Omnipotent",
  53105. height: math.unit(9.42074e+17, "meters")
  53106. },
  53107. {
  53108. name: "Omnipotent",
  53109. height: math.unit(4.23112e+24, "meters")
  53110. },
  53111. {
  53112. name: "Hypergod",
  53113. height: math.unit(5.05176e+27, "meters")
  53114. },
  53115. {
  53116. name: "Hypergod-EX",
  53117. height: math.unit(9.45532e+49, "meters")
  53118. },
  53119. {
  53120. name: "Hypergod-SP",
  53121. height: math.unit(9.45532e+195, "meters")
  53122. },
  53123. ]
  53124. ))
  53125. characterMakers.push(() => makeCharacter(
  53126. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53127. {
  53128. side: {
  53129. height: math.unit(0.6, "meters"),
  53130. weight: math.unit(24, "kg"),
  53131. name: "Side",
  53132. image: {
  53133. source: "./media/characters/celeste/side.svg",
  53134. extra: 810/517,
  53135. bottom: 53/863
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Velociraptor",
  53142. height: math.unit(0.6, "meters"),
  53143. default: true
  53144. },
  53145. {
  53146. name: "Utahraptor",
  53147. height: math.unit(1.8, "meters")
  53148. },
  53149. {
  53150. name: "Gallimimus",
  53151. height: math.unit(4.0, "meters")
  53152. },
  53153. {
  53154. name: "Large",
  53155. height: math.unit(20, "meters")
  53156. },
  53157. {
  53158. name: "Planetary",
  53159. height: math.unit(50, "megameters")
  53160. },
  53161. {
  53162. name: "Stellar",
  53163. height: math.unit(1.5, "gigameters")
  53164. },
  53165. {
  53166. name: "Galactic",
  53167. height: math.unit(100, "exameters")
  53168. },
  53169. ]
  53170. ))
  53171. characterMakers.push(() => makeCharacter(
  53172. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53173. {
  53174. front: {
  53175. height: math.unit(6, "feet"),
  53176. weight: math.unit(210, "lb"),
  53177. name: "Front",
  53178. image: {
  53179. source: "./media/characters/glacia/front.svg",
  53180. extra: 958/901,
  53181. bottom: 45/1003
  53182. }
  53183. },
  53184. },
  53185. [
  53186. {
  53187. name: "Macro",
  53188. height: math.unit(1000, "meters"),
  53189. default: true
  53190. },
  53191. ]
  53192. ))
  53193. characterMakers.push(() => makeCharacter(
  53194. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53195. {
  53196. front: {
  53197. height: math.unit(4, "meters"),
  53198. name: "Front",
  53199. image: {
  53200. source: "./media/characters/giri/front.svg",
  53201. extra: 966/894,
  53202. bottom: 21/987
  53203. }
  53204. },
  53205. },
  53206. [
  53207. {
  53208. name: "Normal",
  53209. height: math.unit(4, "meters"),
  53210. default: true
  53211. },
  53212. ]
  53213. ))
  53214. characterMakers.push(() => makeCharacter(
  53215. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53216. {
  53217. back: {
  53218. height: math.unit(4, "feet"),
  53219. weight: math.unit(37, "lb"),
  53220. name: "Back",
  53221. image: {
  53222. source: "./media/characters/tin/back.svg",
  53223. extra: 845/780,
  53224. bottom: 28/873
  53225. }
  53226. },
  53227. },
  53228. [
  53229. {
  53230. name: "Normal",
  53231. height: math.unit(4, "feet"),
  53232. default: true
  53233. },
  53234. ]
  53235. ))
  53236. characterMakers.push(() => makeCharacter(
  53237. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53238. {
  53239. front: {
  53240. height: math.unit(25, "feet"),
  53241. name: "Front",
  53242. image: {
  53243. source: "./media/characters/cadenza-vivace/front.svg",
  53244. extra: 1842/1578,
  53245. bottom: 30/1872
  53246. }
  53247. },
  53248. },
  53249. [
  53250. {
  53251. name: "Macro",
  53252. height: math.unit(25, "feet"),
  53253. default: true
  53254. },
  53255. ]
  53256. ))
  53257. characterMakers.push(() => makeCharacter(
  53258. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53259. {
  53260. front: {
  53261. height: math.unit(10, "feet"),
  53262. weight: math.unit(625, "kg"),
  53263. name: "Front",
  53264. image: {
  53265. source: "./media/characters/zain/front.svg",
  53266. extra: 1682/1498,
  53267. bottom: 223/1905
  53268. }
  53269. },
  53270. back: {
  53271. height: math.unit(10, "feet"),
  53272. weight: math.unit(625, "kg"),
  53273. name: "Back",
  53274. image: {
  53275. source: "./media/characters/zain/back.svg",
  53276. extra: 1814/1657,
  53277. bottom: 152/1966
  53278. }
  53279. },
  53280. head: {
  53281. height: math.unit(10, "feet"),
  53282. weight: math.unit(625, "kg"),
  53283. name: "Head",
  53284. image: {
  53285. source: "./media/characters/zain/head.svg",
  53286. extra: 1059/762,
  53287. bottom: 0/1059
  53288. }
  53289. },
  53290. },
  53291. [
  53292. {
  53293. name: "Normal",
  53294. height: math.unit(10, "feet"),
  53295. default: true
  53296. },
  53297. ]
  53298. ))
  53299. characterMakers.push(() => makeCharacter(
  53300. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53301. {
  53302. front: {
  53303. height: math.unit(6 + 5/12, "feet"),
  53304. weight: math.unit(750, "lb"),
  53305. name: "Front",
  53306. image: {
  53307. source: "./media/characters/ruchex/front.svg",
  53308. extra: 877/820,
  53309. bottom: 17/894
  53310. },
  53311. extraAttributes: {
  53312. "width": {
  53313. name: "Width",
  53314. power: 1,
  53315. type: "length",
  53316. base: math.unit(4.757, "feet")
  53317. },
  53318. }
  53319. },
  53320. },
  53321. [
  53322. {
  53323. name: "Normal",
  53324. height: math.unit(6 + 5/12, "feet"),
  53325. default: true
  53326. },
  53327. ]
  53328. ))
  53329. characterMakers.push(() => makeCharacter(
  53330. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53331. {
  53332. dressedFront: {
  53333. height: math.unit(191, "cm"),
  53334. weight: math.unit(80, "kg"),
  53335. name: "Front",
  53336. image: {
  53337. source: "./media/characters/buster/dressed-front.svg",
  53338. extra: 1022/973,
  53339. bottom: 69/1091
  53340. }
  53341. },
  53342. dressedBack: {
  53343. height: math.unit(191, "cm"),
  53344. weight: math.unit(80, "kg"),
  53345. name: "Back",
  53346. image: {
  53347. source: "./media/characters/buster/dressed-back.svg",
  53348. extra: 1018/970,
  53349. bottom: 55/1073
  53350. }
  53351. },
  53352. nudeFront: {
  53353. height: math.unit(191, "cm"),
  53354. weight: math.unit(80, "kg"),
  53355. name: "Front (Nude)",
  53356. image: {
  53357. source: "./media/characters/buster/nude-front.svg",
  53358. extra: 1022/973,
  53359. bottom: 69/1091
  53360. }
  53361. },
  53362. nudeBack: {
  53363. height: math.unit(191, "cm"),
  53364. weight: math.unit(80, "kg"),
  53365. name: "Back (Nude)",
  53366. image: {
  53367. source: "./media/characters/buster/nude-back.svg",
  53368. extra: 1018/970,
  53369. bottom: 55/1073
  53370. }
  53371. },
  53372. dick: {
  53373. height: math.unit(2.59, "feet"),
  53374. name: "Dick",
  53375. image: {
  53376. source: "./media/characters/buster/dick.svg"
  53377. }
  53378. },
  53379. ass: {
  53380. height: math.unit(1.2, "feet"),
  53381. name: "Ass",
  53382. image: {
  53383. source: "./media/characters/buster/ass.svg"
  53384. }
  53385. },
  53386. },
  53387. [
  53388. {
  53389. name: "Normal",
  53390. height: math.unit(191, "cm"),
  53391. default: true
  53392. },
  53393. ]
  53394. ))
  53395. characterMakers.push(() => makeCharacter(
  53396. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53397. {
  53398. side: {
  53399. height: math.unit(8.1, "feet"),
  53400. weight: math.unit(3500, "lb"),
  53401. name: "Side",
  53402. image: {
  53403. source: "./media/characters/sonya/side.svg",
  53404. extra: 1730/1317,
  53405. bottom: 86/1816
  53406. }
  53407. },
  53408. },
  53409. [
  53410. {
  53411. name: "Normal",
  53412. height: math.unit(8.1, "feet"),
  53413. default: true
  53414. },
  53415. ]
  53416. ))
  53417. characterMakers.push(() => makeCharacter(
  53418. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53419. {
  53420. front: {
  53421. height: math.unit(6, "feet"),
  53422. weight: math.unit(150, "lb"),
  53423. name: "Front",
  53424. image: {
  53425. source: "./media/characters/cadence-andrysiak/front.svg",
  53426. extra: 1164/1121,
  53427. bottom: 60/1224
  53428. }
  53429. },
  53430. back: {
  53431. height: math.unit(6, "feet"),
  53432. weight: math.unit(150, "lb"),
  53433. name: "Back",
  53434. image: {
  53435. source: "./media/characters/cadence-andrysiak/back.svg",
  53436. extra: 1200/1165,
  53437. bottom: 9/1209
  53438. }
  53439. },
  53440. dressed: {
  53441. height: math.unit(6, "feet"),
  53442. weight: math.unit(150, "lb"),
  53443. name: "Dressed",
  53444. image: {
  53445. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53446. extra: 1164/1121,
  53447. bottom: 60/1224
  53448. }
  53449. },
  53450. },
  53451. [
  53452. {
  53453. name: "Micro",
  53454. height: math.unit(1, "mm")
  53455. },
  53456. {
  53457. name: "Normal",
  53458. height: math.unit(6, "feet"),
  53459. default: true
  53460. },
  53461. ]
  53462. ))
  53463. characterMakers.push(() => makeCharacter(
  53464. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53465. {
  53466. front: {
  53467. height: math.unit(60, "inches"),
  53468. weight: math.unit(16, "lb"),
  53469. preyCapacity: math.unit(80, "liters"),
  53470. name: "Front",
  53471. image: {
  53472. source: "./media/characters/penny-lynx/front.svg",
  53473. extra: 1959/1769,
  53474. bottom: 49/2008
  53475. }
  53476. },
  53477. },
  53478. [
  53479. {
  53480. name: "Nokia",
  53481. height: math.unit(2, "inches")
  53482. },
  53483. {
  53484. name: "Desktop",
  53485. height: math.unit(24, "inches")
  53486. },
  53487. {
  53488. name: "TV",
  53489. height: math.unit(60, "inches")
  53490. },
  53491. {
  53492. name: "Jumbotron",
  53493. height: math.unit(12, "feet")
  53494. },
  53495. {
  53496. name: "Billboard",
  53497. height: math.unit(48, "feet"),
  53498. default: true
  53499. },
  53500. {
  53501. name: "IMAX",
  53502. height: math.unit(96, "feet")
  53503. },
  53504. {
  53505. name: "SINGULARITY",
  53506. height: math.unit(864938, "miles")
  53507. },
  53508. ]
  53509. ))
  53510. characterMakers.push(() => makeCharacter(
  53511. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53512. {
  53513. front: {
  53514. height: math.unit(5 + 4/12, "feet"),
  53515. weight: math.unit(230, "lb"),
  53516. name: "Front",
  53517. image: {
  53518. source: "./media/characters/sukebe/front.svg",
  53519. extra: 2130/2038,
  53520. bottom: 90/2220
  53521. }
  53522. },
  53523. back: {
  53524. height: math.unit(3.48, "feet"),
  53525. weight: math.unit(230, "lb"),
  53526. name: "Back",
  53527. image: {
  53528. source: "./media/characters/sukebe/back.svg",
  53529. extra: 1670/1604,
  53530. bottom: 0/1670
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Normal",
  53537. height: math.unit(5 + 4/12, "feet"),
  53538. default: true
  53539. },
  53540. ]
  53541. ))
  53542. characterMakers.push(() => makeCharacter(
  53543. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53544. {
  53545. front: {
  53546. height: math.unit(6, "feet"),
  53547. name: "Front",
  53548. image: {
  53549. source: "./media/characters/nylla/front.svg",
  53550. extra: 1868/1699,
  53551. bottom: 97/1965
  53552. }
  53553. },
  53554. back: {
  53555. height: math.unit(6, "feet"),
  53556. name: "Back",
  53557. image: {
  53558. source: "./media/characters/nylla/back.svg",
  53559. extra: 1889/1712,
  53560. bottom: 93/1982
  53561. }
  53562. },
  53563. frontNsfw: {
  53564. height: math.unit(6, "feet"),
  53565. name: "Front (NSFW)",
  53566. image: {
  53567. source: "./media/characters/nylla/front-nsfw.svg",
  53568. extra: 1868/1699,
  53569. bottom: 97/1965
  53570. },
  53571. extraAttributes: {
  53572. "dickLength": {
  53573. name: "Dick Length",
  53574. power: 1,
  53575. type: "length",
  53576. base: math.unit(1.4, "feet")
  53577. },
  53578. "cumVolume": {
  53579. name: "Cum Volume",
  53580. power: 3,
  53581. type: "volume",
  53582. base: math.unit(100, "mL")
  53583. },
  53584. }
  53585. },
  53586. backNsfw: {
  53587. height: math.unit(6, "feet"),
  53588. name: "Back (NSFW)",
  53589. image: {
  53590. source: "./media/characters/nylla/back-nsfw.svg",
  53591. extra: 1889/1712,
  53592. bottom: 93/1982
  53593. }
  53594. },
  53595. maw: {
  53596. height: math.unit(2.10, "feet"),
  53597. name: "Maw",
  53598. image: {
  53599. source: "./media/characters/nylla/maw.svg"
  53600. }
  53601. },
  53602. paws: {
  53603. height: math.unit(2.06, "feet"),
  53604. name: "Paws",
  53605. image: {
  53606. source: "./media/characters/nylla/paws.svg"
  53607. }
  53608. },
  53609. muzzle: {
  53610. height: math.unit(0.61, "feet"),
  53611. name: "Muzzle",
  53612. image: {
  53613. source: "./media/characters/nylla/muzzle.svg"
  53614. }
  53615. },
  53616. sheath: {
  53617. height: math.unit(1.305, "feet"),
  53618. name: "Sheath",
  53619. image: {
  53620. source: "./media/characters/nylla/sheath.svg"
  53621. }
  53622. },
  53623. },
  53624. [
  53625. {
  53626. name: "Micro",
  53627. height: math.unit(7.5, "inches")
  53628. },
  53629. {
  53630. name: "Normal",
  53631. height: math.unit(7, "feet"),
  53632. default: true
  53633. },
  53634. {
  53635. name: "Macro",
  53636. height: math.unit(60, "feet")
  53637. },
  53638. {
  53639. name: "Mega",
  53640. height: math.unit(200, "feet")
  53641. },
  53642. ]
  53643. ))
  53644. characterMakers.push(() => makeCharacter(
  53645. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53646. {
  53647. front: {
  53648. height: math.unit(10, "feet"),
  53649. weight: math.unit(2300, "lb"),
  53650. name: "Front",
  53651. image: {
  53652. source: "./media/characters/hunt3r/front.svg",
  53653. extra: 1909/1742,
  53654. bottom: 46/1955
  53655. }
  53656. },
  53657. },
  53658. [
  53659. {
  53660. name: "Normal",
  53661. height: math.unit(10, "feet"),
  53662. default: true
  53663. },
  53664. ]
  53665. ))
  53666. characterMakers.push(() => makeCharacter(
  53667. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53668. {
  53669. dressed: {
  53670. height: math.unit(11, "feet"),
  53671. weight: math.unit(18500, "lb"),
  53672. preyCapacity: math.unit(9, "people"),
  53673. name: "Dressed",
  53674. image: {
  53675. source: "./media/characters/cylphis/dressed.svg",
  53676. extra: 1028/1003,
  53677. bottom: 75/1103
  53678. },
  53679. },
  53680. undressed: {
  53681. height: math.unit(11, "feet"),
  53682. weight: math.unit(18500, "lb"),
  53683. preyCapacity: math.unit(9, "people"),
  53684. name: "Undressed",
  53685. image: {
  53686. source: "./media/characters/cylphis/undressed.svg",
  53687. extra: 1028/1003,
  53688. bottom: 75/1103
  53689. }
  53690. },
  53691. full: {
  53692. height: math.unit(11, "feet"),
  53693. weight: math.unit(18500 + 150*9, "lb"),
  53694. preyCapacity: math.unit(9, "people"),
  53695. name: "Full",
  53696. image: {
  53697. source: "./media/characters/cylphis/full.svg",
  53698. extra: 1028/1003,
  53699. bottom: 75/1103
  53700. }
  53701. },
  53702. },
  53703. [
  53704. {
  53705. name: "Small",
  53706. height: math.unit(8, "feet")
  53707. },
  53708. {
  53709. name: "Normal",
  53710. height: math.unit(11, "feet"),
  53711. default: true
  53712. },
  53713. ]
  53714. ))
  53715. characterMakers.push(() => makeCharacter(
  53716. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53717. {
  53718. front: {
  53719. height: math.unit(2 + 7/12, "feet"),
  53720. name: "Front",
  53721. image: {
  53722. source: "./media/characters/orishan/front.svg",
  53723. extra: 1058/1023,
  53724. bottom: 23/1081
  53725. }
  53726. },
  53727. back: {
  53728. height: math.unit(2 + 7/12, "feet"),
  53729. name: "Back",
  53730. image: {
  53731. source: "./media/characters/orishan/back.svg",
  53732. extra: 1058/1023,
  53733. bottom: 23/1081
  53734. }
  53735. },
  53736. },
  53737. [
  53738. {
  53739. name: "Micro",
  53740. height: math.unit(2, "cm")
  53741. },
  53742. {
  53743. name: "Normal",
  53744. height: math.unit(2 + 7/12, "feet"),
  53745. default: true
  53746. },
  53747. ]
  53748. ))
  53749. characterMakers.push(() => makeCharacter(
  53750. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53751. {
  53752. front: {
  53753. height: math.unit(3, "meters"),
  53754. weight: math.unit(508, "kg"),
  53755. name: "Front",
  53756. image: {
  53757. source: "./media/characters/seranis/front.svg",
  53758. extra: 1478/1454,
  53759. bottom: 41/1519
  53760. }
  53761. },
  53762. },
  53763. [
  53764. {
  53765. name: "Normal",
  53766. height: math.unit(3, "meters"),
  53767. default: true
  53768. },
  53769. {
  53770. name: "Macro",
  53771. height: math.unit(108, "meters")
  53772. },
  53773. {
  53774. name: "Megamacro",
  53775. height: math.unit(1250, "meters")
  53776. },
  53777. ]
  53778. ))
  53779. characterMakers.push(() => makeCharacter(
  53780. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53781. {
  53782. undressed: {
  53783. height: math.unit(5 + 3/12, "feet"),
  53784. name: "Undressed",
  53785. image: {
  53786. source: "./media/characters/ankou/undressed.svg",
  53787. extra: 1301/1213,
  53788. bottom: 87/1388
  53789. }
  53790. },
  53791. dressed: {
  53792. height: math.unit(5 + 3/12, "feet"),
  53793. name: "Dressed",
  53794. image: {
  53795. source: "./media/characters/ankou/dressed.svg",
  53796. extra: 1301/1213,
  53797. bottom: 87/1388
  53798. }
  53799. },
  53800. head: {
  53801. height: math.unit(1.61, "feet"),
  53802. name: "Head",
  53803. image: {
  53804. source: "./media/characters/ankou/head.svg"
  53805. }
  53806. },
  53807. },
  53808. [
  53809. {
  53810. name: "Normal",
  53811. height: math.unit(5 + 3/12, "feet"),
  53812. default: true
  53813. },
  53814. ]
  53815. ))
  53816. characterMakers.push(() => makeCharacter(
  53817. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53818. {
  53819. side: {
  53820. height: math.unit(6 + 3/12, "feet"),
  53821. weight: math.unit(200, "kg"),
  53822. name: "Side",
  53823. image: {
  53824. source: "./media/characters/juniper-skunktaur/side.svg",
  53825. extra: 1574/1229,
  53826. bottom: 38/1612
  53827. }
  53828. },
  53829. front: {
  53830. height: math.unit(6 + 3/12, "feet"),
  53831. weight: math.unit(200, "kg"),
  53832. name: "Front",
  53833. image: {
  53834. source: "./media/characters/juniper-skunktaur/front.svg",
  53835. extra: 1337/1278,
  53836. bottom: 22/1359
  53837. }
  53838. },
  53839. back: {
  53840. height: math.unit(6 + 3/12, "feet"),
  53841. weight: math.unit(200, "kg"),
  53842. name: "Back",
  53843. image: {
  53844. source: "./media/characters/juniper-skunktaur/back.svg",
  53845. extra: 1618/1273,
  53846. bottom: 13/1631
  53847. }
  53848. },
  53849. top: {
  53850. height: math.unit(2.62, "feet"),
  53851. weight: math.unit(200, "kg"),
  53852. name: "Top",
  53853. image: {
  53854. source: "./media/characters/juniper-skunktaur/top.svg"
  53855. }
  53856. },
  53857. },
  53858. [
  53859. {
  53860. name: "Normal",
  53861. height: math.unit(6 + 3/12, "feet"),
  53862. default: true
  53863. },
  53864. ]
  53865. ))
  53866. characterMakers.push(() => makeCharacter(
  53867. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53868. {
  53869. front: {
  53870. height: math.unit(20.5, "feet"),
  53871. name: "Front",
  53872. image: {
  53873. source: "./media/characters/rei/front.svg",
  53874. extra: 1349/1195,
  53875. bottom: 31/1380
  53876. }
  53877. },
  53878. back: {
  53879. height: math.unit(20.5, "feet"),
  53880. name: "Back",
  53881. image: {
  53882. source: "./media/characters/rei/back.svg",
  53883. extra: 1358/1204,
  53884. bottom: 22/1380
  53885. }
  53886. },
  53887. pawsDigi: {
  53888. height: math.unit(3.45, "feet"),
  53889. name: "Paws (Digi)",
  53890. image: {
  53891. source: "./media/characters/rei/paws-digi.svg"
  53892. }
  53893. },
  53894. pawsPlanti: {
  53895. height: math.unit(3.45, "feet"),
  53896. name: "Paws (Planti)",
  53897. image: {
  53898. source: "./media/characters/rei/paws-planti.svg"
  53899. }
  53900. },
  53901. },
  53902. [
  53903. {
  53904. name: "Normal",
  53905. height: math.unit(20.5, "feet"),
  53906. default: true
  53907. },
  53908. ]
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(5 + 11/12, "feet"),
  53915. name: "Front",
  53916. image: {
  53917. source: "./media/characters/carina/front.svg",
  53918. extra: 1720/1449,
  53919. bottom: 14/1734
  53920. }
  53921. },
  53922. back: {
  53923. height: math.unit(5 + 11/12, "feet"),
  53924. name: "Back",
  53925. image: {
  53926. source: "./media/characters/carina/back.svg",
  53927. extra: 1493/1445,
  53928. bottom: 17/1510
  53929. }
  53930. },
  53931. paw: {
  53932. height: math.unit(0.92, "feet"),
  53933. name: "Paw",
  53934. image: {
  53935. source: "./media/characters/carina/paw.svg"
  53936. }
  53937. },
  53938. },
  53939. [
  53940. {
  53941. name: "Normal",
  53942. height: math.unit(5 + 11/12, "feet"),
  53943. default: true
  53944. },
  53945. ]
  53946. ))
  53947. characterMakers.push(() => makeCharacter(
  53948. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53949. {
  53950. normal_front: {
  53951. height: math.unit(4.88, "meters"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/maya/normal-front.svg",
  53955. extra: 1222/1145,
  53956. bottom: 57/1279
  53957. },
  53958. form: "normal",
  53959. default: true
  53960. },
  53961. monstrous_front: {
  53962. height: math.unit(10, "meters"),
  53963. name: "Front",
  53964. image: {
  53965. source: "./media/characters/maya/monstrous-front.svg",
  53966. extra: 1523/1109,
  53967. bottom: 113/1636
  53968. },
  53969. form: "monstrous",
  53970. extraAttributes: {
  53971. "swallowSize": {
  53972. name: "Tailmaw Bite Size",
  53973. power: 3,
  53974. type: "volume",
  53975. base: math.unit(43000, "liters")
  53976. },
  53977. }
  53978. },
  53979. taur_front: {
  53980. height: math.unit(10, "meters"),
  53981. name: "Front",
  53982. image: {
  53983. source: "./media/characters/maya/taur-front.svg",
  53984. extra: 743/506,
  53985. bottom: 101/844
  53986. },
  53987. form: "taur",
  53988. },
  53989. },
  53990. [
  53991. {
  53992. name: "Normal",
  53993. height: math.unit(4.88, "meters"),
  53994. default: true,
  53995. form: "normal"
  53996. },
  53997. {
  53998. name: "Macro",
  53999. height: math.unit(38.1, "meters"),
  54000. form: "normal"
  54001. },
  54002. {
  54003. name: "Macro+",
  54004. height: math.unit(152.4, "meters"),
  54005. form: "normal"
  54006. },
  54007. {
  54008. name: "Macro++",
  54009. height: math.unit(16.09, "km"),
  54010. form: "normal"
  54011. },
  54012. {
  54013. name: "Mega-macro",
  54014. height: math.unit(700, "megameters"),
  54015. form: "normal"
  54016. },
  54017. {
  54018. name: "Satiated",
  54019. height: math.unit(10, "meters"),
  54020. default: true,
  54021. form: "monstrous"
  54022. },
  54023. {
  54024. name: "Hungry",
  54025. height: math.unit(75, "meters"),
  54026. form: "monstrous"
  54027. },
  54028. {
  54029. name: "Ravenous",
  54030. height: math.unit(500, "meters"),
  54031. form: "monstrous"
  54032. },
  54033. {
  54034. name: "\"Normal\"",
  54035. height: math.unit(10, "meters"),
  54036. form: "taur"
  54037. },
  54038. {
  54039. name: "Macro",
  54040. height: math.unit(50, "meters"),
  54041. form: "taur"
  54042. },
  54043. ],
  54044. {
  54045. "normal": {
  54046. name: "Normal",
  54047. default: true
  54048. },
  54049. "monstrous": {
  54050. name: "Monstrous",
  54051. },
  54052. "taur": {
  54053. name: "Taur",
  54054. },
  54055. }
  54056. ))
  54057. characterMakers.push(() => makeCharacter(
  54058. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54059. {
  54060. front: {
  54061. height: math.unit(6 + 2/12, "feet"),
  54062. weight: math.unit(500, "lb"),
  54063. preyCapacity: math.unit(4, "people"),
  54064. name: "Front",
  54065. image: {
  54066. source: "./media/characters/yepir/front.svg"
  54067. }
  54068. },
  54069. side: {
  54070. height: math.unit(6 + 2/12, "feet"),
  54071. weight: math.unit(500, "lb"),
  54072. preyCapacity: math.unit(4, "people"),
  54073. name: "Side",
  54074. image: {
  54075. source: "./media/characters/yepir/side.svg"
  54076. }
  54077. },
  54078. paw: {
  54079. height: math.unit(1.05, "feet"),
  54080. name: "Paw",
  54081. image: {
  54082. source: "./media/characters/yepir/paw.svg"
  54083. }
  54084. },
  54085. },
  54086. [
  54087. {
  54088. name: "Normal",
  54089. height: math.unit(6 + 2/12, "feet"),
  54090. default: true
  54091. },
  54092. ]
  54093. ))
  54094. characterMakers.push(() => makeCharacter(
  54095. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54096. {
  54097. front: {
  54098. height: math.unit(5 + 4/12, "feet"),
  54099. name: "Front",
  54100. image: {
  54101. source: "./media/characters/russec/front.svg",
  54102. extra: 1926/1626,
  54103. bottom: 72/1998
  54104. }
  54105. },
  54106. back: {
  54107. height: math.unit(5 + 4/12, "feet"),
  54108. name: "Back",
  54109. image: {
  54110. source: "./media/characters/russec/back.svg",
  54111. extra: 1910/1591,
  54112. bottom: 48/1958
  54113. }
  54114. },
  54115. },
  54116. [
  54117. {
  54118. name: "Small",
  54119. height: math.unit(5 + 4/12, "feet")
  54120. },
  54121. {
  54122. name: "Normal",
  54123. height: math.unit(72, "feet"),
  54124. default: true
  54125. },
  54126. ]
  54127. ))
  54128. characterMakers.push(() => makeCharacter(
  54129. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54130. {
  54131. side: {
  54132. height: math.unit(12, "feet"),
  54133. name: "Side",
  54134. image: {
  54135. source: "./media/characters/cianus/side.svg",
  54136. extra: 808/526,
  54137. bottom: 61/869
  54138. }
  54139. },
  54140. },
  54141. [
  54142. {
  54143. name: "Normal",
  54144. height: math.unit(12, "feet"),
  54145. default: true
  54146. },
  54147. ]
  54148. ))
  54149. characterMakers.push(() => makeCharacter(
  54150. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54151. {
  54152. front: {
  54153. height: math.unit(9 + 6/12, "feet"),
  54154. weight: math.unit(300, "lb"),
  54155. name: "Front",
  54156. image: {
  54157. source: "./media/characters/ahab/front.svg",
  54158. extra: 1897/1868,
  54159. bottom: 121/2018
  54160. }
  54161. },
  54162. frontNsfw: {
  54163. height: math.unit(9 + 6/12, "feet"),
  54164. weight: math.unit(300, "lb"),
  54165. name: "Front (NSFW)",
  54166. image: {
  54167. source: "./media/characters/ahab/front-nsfw.svg",
  54168. extra: 1897/1868,
  54169. bottom: 121/2018
  54170. }
  54171. },
  54172. },
  54173. [
  54174. {
  54175. name: "Normal",
  54176. height: math.unit(9 + 6/12, "feet")
  54177. },
  54178. {
  54179. name: "Macro",
  54180. height: math.unit(657, "feet"),
  54181. default: true
  54182. },
  54183. ]
  54184. ))
  54185. characterMakers.push(() => makeCharacter(
  54186. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54187. {
  54188. front: {
  54189. height: math.unit(2.69, "meters"),
  54190. weight: math.unit(132, "kg"),
  54191. name: "Front",
  54192. image: {
  54193. source: "./media/characters/aarkus/front.svg",
  54194. extra: 1400/1231,
  54195. bottom: 34/1434
  54196. }
  54197. },
  54198. back: {
  54199. height: math.unit(2.69, "meters"),
  54200. weight: math.unit(132, "kg"),
  54201. name: "Back",
  54202. image: {
  54203. source: "./media/characters/aarkus/back.svg",
  54204. extra: 1381/1218,
  54205. bottom: 30/1411
  54206. }
  54207. },
  54208. frontNsfw: {
  54209. height: math.unit(2.69, "meters"),
  54210. weight: math.unit(132, "kg"),
  54211. name: "Front (NSFW)",
  54212. image: {
  54213. source: "./media/characters/aarkus/front-nsfw.svg",
  54214. extra: 1400/1231,
  54215. bottom: 34/1434
  54216. }
  54217. },
  54218. foot: {
  54219. height: math.unit(1.45, "feet"),
  54220. name: "Foot",
  54221. image: {
  54222. source: "./media/characters/aarkus/foot.svg"
  54223. }
  54224. },
  54225. head: {
  54226. height: math.unit(2.85, "feet"),
  54227. name: "Head",
  54228. image: {
  54229. source: "./media/characters/aarkus/head.svg"
  54230. }
  54231. },
  54232. headAlt: {
  54233. height: math.unit(3.07, "feet"),
  54234. name: "Head (Alt)",
  54235. image: {
  54236. source: "./media/characters/aarkus/head-alt.svg"
  54237. }
  54238. },
  54239. mouth: {
  54240. height: math.unit(1.25, "feet"),
  54241. name: "Mouth",
  54242. image: {
  54243. source: "./media/characters/aarkus/mouth.svg"
  54244. }
  54245. },
  54246. dick: {
  54247. height: math.unit(1.77, "feet"),
  54248. name: "Dick",
  54249. image: {
  54250. source: "./media/characters/aarkus/dick.svg"
  54251. }
  54252. },
  54253. },
  54254. [
  54255. {
  54256. name: "Normal",
  54257. height: math.unit(2.69, "meters"),
  54258. default: true
  54259. },
  54260. {
  54261. name: "Macro",
  54262. height: math.unit(269, "meters")
  54263. },
  54264. {
  54265. name: "Macro+",
  54266. height: math.unit(672.5, "meters")
  54267. },
  54268. {
  54269. name: "Megamacro",
  54270. height: math.unit(2.017, "km")
  54271. },
  54272. ]
  54273. ))
  54274. characterMakers.push(() => makeCharacter(
  54275. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54276. {
  54277. front: {
  54278. height: math.unit(23.47, "cm"),
  54279. weight: math.unit(600, "grams"),
  54280. name: "Front",
  54281. image: {
  54282. source: "./media/characters/diode/front.svg",
  54283. extra: 1778/1396,
  54284. bottom: 95/1873
  54285. }
  54286. },
  54287. side: {
  54288. height: math.unit(23.47, "cm"),
  54289. weight: math.unit(600, "grams"),
  54290. name: "Side",
  54291. image: {
  54292. source: "./media/characters/diode/side.svg",
  54293. extra: 1831/1404,
  54294. bottom: 86/1917
  54295. }
  54296. },
  54297. wings: {
  54298. height: math.unit(0.683, "feet"),
  54299. name: "Wings",
  54300. image: {
  54301. source: "./media/characters/diode/wings.svg"
  54302. }
  54303. },
  54304. },
  54305. [
  54306. {
  54307. name: "Normal",
  54308. height: math.unit(23.47, "cm"),
  54309. default: true
  54310. },
  54311. ]
  54312. ))
  54313. characterMakers.push(() => makeCharacter(
  54314. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54315. {
  54316. front: {
  54317. height: math.unit(6 + 3/12, "feet"),
  54318. weight: math.unit(250, "lb"),
  54319. name: "Front",
  54320. image: {
  54321. source: "./media/characters/reika/front.svg",
  54322. extra: 1120/1078,
  54323. bottom: 86/1206
  54324. }
  54325. },
  54326. },
  54327. [
  54328. {
  54329. name: "Normal",
  54330. height: math.unit(6 + 3/12, "feet"),
  54331. default: true
  54332. },
  54333. ]
  54334. ))
  54335. characterMakers.push(() => makeCharacter(
  54336. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54337. {
  54338. front: {
  54339. height: math.unit(16 + 8/12, "feet"),
  54340. weight: math.unit(9000, "lb"),
  54341. name: "Front",
  54342. image: {
  54343. source: "./media/characters/lokuto-takama/front.svg",
  54344. extra: 1774/1632,
  54345. bottom: 147/1921
  54346. },
  54347. extraAttributes: {
  54348. "bustWidth": {
  54349. name: "Bust Width",
  54350. power: 1,
  54351. type: "length",
  54352. base: math.unit(2.4, "meters")
  54353. },
  54354. "breastWeight": {
  54355. name: "Breast Weight",
  54356. power: 3,
  54357. type: "mass",
  54358. base: math.unit(1000, "kg")
  54359. },
  54360. }
  54361. },
  54362. },
  54363. [
  54364. {
  54365. name: "Normal",
  54366. height: math.unit(16 + 8/12, "feet"),
  54367. default: true
  54368. },
  54369. ]
  54370. ))
  54371. characterMakers.push(() => makeCharacter(
  54372. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54373. {
  54374. front: {
  54375. height: math.unit(10, "cm"),
  54376. weight: math.unit(850, "grams"),
  54377. name: "Front",
  54378. image: {
  54379. source: "./media/characters/owak-bone/front.svg",
  54380. extra: 1965/1801,
  54381. bottom: 31/1996
  54382. }
  54383. },
  54384. },
  54385. [
  54386. {
  54387. name: "Normal",
  54388. height: math.unit(10, "cm"),
  54389. default: true
  54390. },
  54391. ]
  54392. ))
  54393. characterMakers.push(() => makeCharacter(
  54394. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54395. {
  54396. front: {
  54397. height: math.unit(2 + 6/12, "feet"),
  54398. weight: math.unit(9, "lb"),
  54399. name: "Front",
  54400. image: {
  54401. source: "./media/characters/muffin/front.svg",
  54402. extra: 1220/1195,
  54403. bottom: 84/1304
  54404. }
  54405. },
  54406. },
  54407. [
  54408. {
  54409. name: "Normal",
  54410. height: math.unit(2 + 6/12, "feet"),
  54411. default: true
  54412. },
  54413. ]
  54414. ))
  54415. characterMakers.push(() => makeCharacter(
  54416. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54417. {
  54418. front: {
  54419. height: math.unit(7, "feet"),
  54420. name: "Front",
  54421. image: {
  54422. source: "./media/characters/chimera/front.svg",
  54423. extra: 1752/1614,
  54424. bottom: 68/1820
  54425. }
  54426. },
  54427. },
  54428. [
  54429. {
  54430. name: "Normal",
  54431. height: math.unit(7, "feet")
  54432. },
  54433. {
  54434. name: "Gigamacro",
  54435. height: math.unit(2.9, "gigameters"),
  54436. default: true
  54437. },
  54438. {
  54439. name: "Universal",
  54440. height: math.unit(1.56e26, "yottameters")
  54441. },
  54442. ]
  54443. ))
  54444. characterMakers.push(() => makeCharacter(
  54445. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54446. {
  54447. front: {
  54448. height: math.unit(3, "feet"),
  54449. weight: math.unit(20, "lb"),
  54450. name: "Front",
  54451. image: {
  54452. source: "./media/characters/kit-fennec-fox/front.svg",
  54453. extra: 1027/932,
  54454. bottom: 16/1043
  54455. }
  54456. },
  54457. back: {
  54458. height: math.unit(3, "feet"),
  54459. weight: math.unit(20, "lb"),
  54460. name: "Back",
  54461. image: {
  54462. source: "./media/characters/kit-fennec-fox/back.svg",
  54463. extra: 1027/932,
  54464. bottom: 16/1043
  54465. }
  54466. },
  54467. },
  54468. [
  54469. {
  54470. name: "Normal",
  54471. height: math.unit(3, "feet"),
  54472. default: true
  54473. },
  54474. ]
  54475. ))
  54476. characterMakers.push(() => makeCharacter(
  54477. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54478. {
  54479. front: {
  54480. height: math.unit(167, "cm"),
  54481. name: "Front",
  54482. image: {
  54483. source: "./media/characters/blue-otter/front.svg",
  54484. extra: 1951/1920,
  54485. bottom: 31/1982
  54486. }
  54487. },
  54488. },
  54489. [
  54490. {
  54491. name: "Otter-Sized",
  54492. height: math.unit(100, "cm")
  54493. },
  54494. {
  54495. name: "Normal",
  54496. height: math.unit(167, "cm"),
  54497. default: true
  54498. },
  54499. ]
  54500. ))
  54501. characterMakers.push(() => makeCharacter(
  54502. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54503. {
  54504. front: {
  54505. height: math.unit(4 + 4/12, "feet"),
  54506. name: "Front",
  54507. image: {
  54508. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54509. extra: 1072/1067,
  54510. bottom: 117/1189
  54511. }
  54512. },
  54513. back: {
  54514. height: math.unit(4 + 4/12, "feet"),
  54515. name: "Back",
  54516. image: {
  54517. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54518. extra: 1135/1129,
  54519. bottom: 57/1192
  54520. }
  54521. },
  54522. head: {
  54523. height: math.unit(1.77, "feet"),
  54524. name: "Head",
  54525. image: {
  54526. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54527. }
  54528. },
  54529. },
  54530. [
  54531. {
  54532. name: "Normal",
  54533. height: math.unit(4 + 4/12, "feet"),
  54534. default: true
  54535. },
  54536. ]
  54537. ))
  54538. characterMakers.push(() => makeCharacter(
  54539. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54540. {
  54541. front: {
  54542. height: math.unit(2, "inches"),
  54543. name: "Front",
  54544. image: {
  54545. source: "./media/characters/carley-hartford/front.svg",
  54546. extra: 1035/988,
  54547. bottom: 23/1058
  54548. }
  54549. },
  54550. back: {
  54551. height: math.unit(2, "inches"),
  54552. name: "Back",
  54553. image: {
  54554. source: "./media/characters/carley-hartford/back.svg",
  54555. extra: 1035/988,
  54556. bottom: 23/1058
  54557. }
  54558. },
  54559. dressed: {
  54560. height: math.unit(2, "inches"),
  54561. name: "Dressed",
  54562. image: {
  54563. source: "./media/characters/carley-hartford/dressed.svg",
  54564. extra: 651/620,
  54565. bottom: 0/651
  54566. }
  54567. },
  54568. },
  54569. [
  54570. {
  54571. name: "Micro",
  54572. height: math.unit(2, "inches"),
  54573. default: true
  54574. },
  54575. {
  54576. name: "Macro",
  54577. height: math.unit(6 + 3/12, "feet")
  54578. },
  54579. ]
  54580. ))
  54581. characterMakers.push(() => makeCharacter(
  54582. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54583. {
  54584. front: {
  54585. height: math.unit(2 + 3/12, "feet"),
  54586. weight: math.unit(15 + 7/16, "lb"),
  54587. name: "Front",
  54588. image: {
  54589. source: "./media/characters/duke/front.svg",
  54590. extra: 910/815,
  54591. bottom: 30/940
  54592. }
  54593. },
  54594. },
  54595. [
  54596. {
  54597. name: "Normal",
  54598. height: math.unit(2 + 3/12, "feet"),
  54599. default: true
  54600. },
  54601. ]
  54602. ))
  54603. characterMakers.push(() => makeCharacter(
  54604. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54605. {
  54606. front: {
  54607. height: math.unit(5 + 4/12, "feet"),
  54608. weight: math.unit(156, "lb"),
  54609. name: "Front",
  54610. image: {
  54611. source: "./media/characters/dein/front.svg",
  54612. extra: 855/815,
  54613. bottom: 48/903
  54614. }
  54615. },
  54616. side: {
  54617. height: math.unit(5 + 4/12, "feet"),
  54618. weight: math.unit(156, "lb"),
  54619. name: "side",
  54620. image: {
  54621. source: "./media/characters/dein/side.svg",
  54622. extra: 846/803,
  54623. bottom: 25/871
  54624. }
  54625. },
  54626. maw: {
  54627. height: math.unit(1.45, "feet"),
  54628. name: "Maw",
  54629. image: {
  54630. source: "./media/characters/dein/maw.svg"
  54631. }
  54632. },
  54633. },
  54634. [
  54635. {
  54636. name: "Ferret Sized",
  54637. height: math.unit(2 + 5/12, "feet")
  54638. },
  54639. {
  54640. name: "Normal",
  54641. height: math.unit(5 + 4/12, "feet"),
  54642. default: true
  54643. },
  54644. ]
  54645. ))
  54646. characterMakers.push(() => makeCharacter(
  54647. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54648. {
  54649. front: {
  54650. height: math.unit(84 + 8/12, "feet"),
  54651. weight: math.unit(942180, "lb"),
  54652. name: "Front",
  54653. image: {
  54654. source: "./media/characters/daurine-arima/front.svg",
  54655. extra: 1989/1782,
  54656. bottom: 37/2026
  54657. }
  54658. },
  54659. side: {
  54660. height: math.unit(84 + 8/12, "feet"),
  54661. weight: math.unit(942180, "lb"),
  54662. name: "Side",
  54663. image: {
  54664. source: "./media/characters/daurine-arima/side.svg",
  54665. extra: 1997/1790,
  54666. bottom: 21/2018
  54667. }
  54668. },
  54669. back: {
  54670. height: math.unit(84 + 8/12, "feet"),
  54671. weight: math.unit(942180, "lb"),
  54672. name: "Back",
  54673. image: {
  54674. source: "./media/characters/daurine-arima/back.svg",
  54675. extra: 1992/1800,
  54676. bottom: 12/2004
  54677. }
  54678. },
  54679. head: {
  54680. height: math.unit(15.5, "feet"),
  54681. name: "Head",
  54682. image: {
  54683. source: "./media/characters/daurine-arima/head.svg"
  54684. }
  54685. },
  54686. headAlt: {
  54687. height: math.unit(19.19, "feet"),
  54688. name: "Head (Alt)",
  54689. image: {
  54690. source: "./media/characters/daurine-arima/head-alt.svg"
  54691. }
  54692. },
  54693. },
  54694. [
  54695. {
  54696. name: "Minimum height",
  54697. height: math.unit(8 + 10/12, "feet")
  54698. },
  54699. {
  54700. name: "Comfort height",
  54701. height: math.unit(19 + 6 /12, "feet")
  54702. },
  54703. {
  54704. name: "\"Normal\" height",
  54705. height: math.unit(28 + 10/12, "feet")
  54706. },
  54707. {
  54708. name: "Base height",
  54709. height: math.unit(84 + 8/12, "feet"),
  54710. default: true
  54711. },
  54712. {
  54713. name: "Mini-macro",
  54714. height: math.unit(2360, "feet")
  54715. },
  54716. {
  54717. name: "Macro",
  54718. height: math.unit(10, "miles")
  54719. },
  54720. {
  54721. name: "Goddess",
  54722. height: math.unit(9.99e40, "yottameters")
  54723. },
  54724. ]
  54725. ))
  54726. characterMakers.push(() => makeCharacter(
  54727. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54728. {
  54729. front: {
  54730. height: math.unit(2.3, "meters"),
  54731. name: "Front",
  54732. image: {
  54733. source: "./media/characters/cilenomon/front.svg",
  54734. extra: 1963/1778,
  54735. bottom: 54/2017
  54736. }
  54737. },
  54738. },
  54739. [
  54740. {
  54741. name: "Normal",
  54742. height: math.unit(2.3, "meters"),
  54743. default: true
  54744. },
  54745. {
  54746. name: "Big",
  54747. height: math.unit(5, "meters")
  54748. },
  54749. {
  54750. name: "Macro",
  54751. height: math.unit(30, "meters")
  54752. },
  54753. {
  54754. name: "True",
  54755. height: math.unit(1, "universe")
  54756. },
  54757. ]
  54758. ))
  54759. characterMakers.push(() => makeCharacter(
  54760. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54761. {
  54762. front: {
  54763. height: math.unit(5, "feet"),
  54764. name: "Front",
  54765. image: {
  54766. source: "./media/characters/sen-mink/front.svg",
  54767. extra: 1727/1675,
  54768. bottom: 35/1762
  54769. }
  54770. },
  54771. },
  54772. [
  54773. {
  54774. name: "Normal",
  54775. height: math.unit(5, "feet"),
  54776. default: true
  54777. },
  54778. ]
  54779. ))
  54780. characterMakers.push(() => makeCharacter(
  54781. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54782. {
  54783. front: {
  54784. height: math.unit(5.42999, "feet"),
  54785. weight: math.unit(100, "lb"),
  54786. name: "Front",
  54787. image: {
  54788. source: "./media/characters/ophois/front.svg",
  54789. extra: 1429/1286,
  54790. bottom: 60/1489
  54791. }
  54792. },
  54793. },
  54794. [
  54795. {
  54796. name: "Normal",
  54797. height: math.unit(5.42999, "feet"),
  54798. default: true
  54799. },
  54800. ]
  54801. ))
  54802. characterMakers.push(() => makeCharacter(
  54803. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54804. {
  54805. front: {
  54806. height: math.unit(2, "meters"),
  54807. name: "Front",
  54808. image: {
  54809. source: "./media/characters/riley/front.svg",
  54810. extra: 1779/1754,
  54811. bottom: 139/1918
  54812. }
  54813. },
  54814. },
  54815. [
  54816. {
  54817. name: "Normal",
  54818. height: math.unit(2, "meters"),
  54819. default: true
  54820. },
  54821. ]
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54825. {
  54826. front: {
  54827. height: math.unit(6 + 2/12, "feet"),
  54828. weight: math.unit(195, "lb"),
  54829. preyCapacity: math.unit(6, "people"),
  54830. name: "Front",
  54831. image: {
  54832. source: "./media/characters/shuken-flash/front.svg",
  54833. extra: 1905/1739,
  54834. bottom: 65/1970
  54835. }
  54836. },
  54837. back: {
  54838. height: math.unit(6 + 2/12, "feet"),
  54839. weight: math.unit(195, "lb"),
  54840. preyCapacity: math.unit(6, "people"),
  54841. name: "Back",
  54842. image: {
  54843. source: "./media/characters/shuken-flash/back.svg",
  54844. extra: 1912/1751,
  54845. bottom: 13/1925
  54846. }
  54847. },
  54848. },
  54849. [
  54850. {
  54851. name: "Normal",
  54852. height: math.unit(6 + 2/12, "feet"),
  54853. default: true
  54854. },
  54855. ]
  54856. ))
  54857. characterMakers.push(() => makeCharacter(
  54858. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54859. {
  54860. front: {
  54861. height: math.unit(5 + 9/12, "feet"),
  54862. weight: math.unit(150, "lb"),
  54863. name: "Front",
  54864. image: {
  54865. source: "./media/characters/plat/front.svg",
  54866. extra: 1816/1703,
  54867. bottom: 43/1859
  54868. }
  54869. },
  54870. side: {
  54871. height: math.unit(5 + 9/12, "feet"),
  54872. weight: math.unit(300, "lb"),
  54873. name: "Side",
  54874. image: {
  54875. source: "./media/characters/plat/side.svg",
  54876. extra: 1824/1699,
  54877. bottom: 18/1842
  54878. }
  54879. },
  54880. },
  54881. [
  54882. {
  54883. name: "Normal",
  54884. height: math.unit(5 + 9/12, "feet"),
  54885. default: true
  54886. },
  54887. ]
  54888. ))
  54889. characterMakers.push(() => makeCharacter(
  54890. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54891. {
  54892. front: {
  54893. height: math.unit(9, "feet"),
  54894. weight: math.unit(1800, "lb"),
  54895. name: "Front",
  54896. image: {
  54897. source: "./media/characters/elaine/front.svg",
  54898. extra: 1833/1354,
  54899. bottom: 25/1858
  54900. }
  54901. },
  54902. back: {
  54903. height: math.unit(8.8, "feet"),
  54904. weight: math.unit(1800, "lb"),
  54905. name: "Back",
  54906. image: {
  54907. source: "./media/characters/elaine/back.svg",
  54908. extra: 1641/1233,
  54909. bottom: 53/1694
  54910. }
  54911. },
  54912. },
  54913. [
  54914. {
  54915. name: "Normal",
  54916. height: math.unit(9, "feet"),
  54917. default: true
  54918. },
  54919. ]
  54920. ))
  54921. characterMakers.push(() => makeCharacter(
  54922. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54923. {
  54924. front: {
  54925. height: math.unit(17 + 9/12, "feet"),
  54926. weight: math.unit(8000, "lb"),
  54927. name: "Front",
  54928. image: {
  54929. source: "./media/characters/vera-raven/front.svg",
  54930. extra: 1457/1412,
  54931. bottom: 121/1578
  54932. }
  54933. },
  54934. side: {
  54935. height: math.unit(17 + 9/12, "feet"),
  54936. weight: math.unit(8000, "lb"),
  54937. name: "Side",
  54938. image: {
  54939. source: "./media/characters/vera-raven/side.svg",
  54940. extra: 1510/1464,
  54941. bottom: 54/1564
  54942. }
  54943. },
  54944. },
  54945. [
  54946. {
  54947. name: "Normal",
  54948. height: math.unit(17 + 9/12, "feet"),
  54949. default: true
  54950. },
  54951. ]
  54952. ))
  54953. characterMakers.push(() => makeCharacter(
  54954. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54955. {
  54956. dressed: {
  54957. height: math.unit(6 + 9/12, "feet"),
  54958. name: "Dressed",
  54959. image: {
  54960. source: "./media/characters/nakisha/dressed.svg",
  54961. extra: 1909/1757,
  54962. bottom: 48/1957
  54963. }
  54964. },
  54965. nude: {
  54966. height: math.unit(6 + 9/12, "feet"),
  54967. name: "Nude",
  54968. image: {
  54969. source: "./media/characters/nakisha/nude.svg",
  54970. extra: 1917/1765,
  54971. bottom: 34/1951
  54972. }
  54973. },
  54974. },
  54975. [
  54976. {
  54977. name: "Normal",
  54978. height: math.unit(6 + 9/12, "feet"),
  54979. default: true
  54980. },
  54981. ]
  54982. ))
  54983. characterMakers.push(() => makeCharacter(
  54984. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54985. {
  54986. front: {
  54987. height: math.unit(87, "meters"),
  54988. name: "Front",
  54989. image: {
  54990. source: "./media/characters/serafin/front.svg",
  54991. extra: 1919/1776,
  54992. bottom: 65/1984
  54993. }
  54994. },
  54995. },
  54996. [
  54997. {
  54998. name: "Normal",
  54999. height: math.unit(87, "meters"),
  55000. default: true
  55001. },
  55002. ]
  55003. ))
  55004. characterMakers.push(() => makeCharacter(
  55005. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55006. {
  55007. front: {
  55008. height: math.unit(6, "feet"),
  55009. weight: math.unit(200, "lb"),
  55010. name: "Front",
  55011. image: {
  55012. source: "./media/characters/poptart/front.svg",
  55013. extra: 615/583,
  55014. bottom: 23/638
  55015. }
  55016. },
  55017. back: {
  55018. height: math.unit(6, "feet"),
  55019. weight: math.unit(200, "lb"),
  55020. name: "Back",
  55021. image: {
  55022. source: "./media/characters/poptart/back.svg",
  55023. extra: 617/584,
  55024. bottom: 22/639
  55025. }
  55026. },
  55027. frontNsfw: {
  55028. height: math.unit(6, "feet"),
  55029. weight: math.unit(200, "lb"),
  55030. name: "Front (NSFW)",
  55031. image: {
  55032. source: "./media/characters/poptart/front-nsfw.svg",
  55033. extra: 615/583,
  55034. bottom: 23/638
  55035. }
  55036. },
  55037. backNsfw: {
  55038. height: math.unit(6, "feet"),
  55039. weight: math.unit(200, "lb"),
  55040. name: "Back (NSFW)",
  55041. image: {
  55042. source: "./media/characters/poptart/back-nsfw.svg",
  55043. extra: 617/584,
  55044. bottom: 22/639
  55045. }
  55046. },
  55047. hand: {
  55048. height: math.unit(1.14, "feet"),
  55049. name: "Hand",
  55050. image: {
  55051. source: "./media/characters/poptart/hand.svg"
  55052. }
  55053. },
  55054. foot: {
  55055. height: math.unit(1.5, "feet"),
  55056. name: "Foot",
  55057. image: {
  55058. source: "./media/characters/poptart/foot.svg"
  55059. }
  55060. },
  55061. },
  55062. [
  55063. {
  55064. name: "Normal",
  55065. height: math.unit(6, "feet"),
  55066. default: true
  55067. },
  55068. {
  55069. name: "Grande",
  55070. height: math.unit(350, "feet")
  55071. },
  55072. {
  55073. name: "Massif",
  55074. height: math.unit(967, "feet")
  55075. },
  55076. ]
  55077. ))
  55078. characterMakers.push(() => makeCharacter(
  55079. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55080. {
  55081. hyenaSide: {
  55082. height: math.unit(120, "cm"),
  55083. weight: math.unit(120, "lb"),
  55084. name: "Side",
  55085. image: {
  55086. source: "./media/characters/trance/hyena-side.svg",
  55087. extra: 998/904,
  55088. bottom: 76/1074
  55089. }
  55090. },
  55091. },
  55092. [
  55093. {
  55094. name: "Normal",
  55095. height: math.unit(120, "cm"),
  55096. default: true
  55097. },
  55098. {
  55099. name: "Dire",
  55100. height: math.unit(230, "cm")
  55101. },
  55102. {
  55103. name: "Macro",
  55104. height: math.unit(37, "feet")
  55105. },
  55106. ]
  55107. ))
  55108. characterMakers.push(() => makeCharacter(
  55109. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55110. {
  55111. front: {
  55112. height: math.unit(6 + 3/12, "feet"),
  55113. name: "Front",
  55114. image: {
  55115. source: "./media/characters/michael-berretta/front.svg",
  55116. extra: 515/494,
  55117. bottom: 20/535
  55118. }
  55119. },
  55120. back: {
  55121. height: math.unit(6 + 3/12, "feet"),
  55122. name: "Back",
  55123. image: {
  55124. source: "./media/characters/michael-berretta/back.svg",
  55125. extra: 520/497,
  55126. bottom: 21/541
  55127. }
  55128. },
  55129. frontNsfw: {
  55130. height: math.unit(6 + 3/12, "feet"),
  55131. name: "Front (NSFW)",
  55132. image: {
  55133. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55134. extra: 515/494,
  55135. bottom: 20/535
  55136. }
  55137. },
  55138. dick: {
  55139. height: math.unit(1, "feet"),
  55140. name: "Dick",
  55141. image: {
  55142. source: "./media/characters/michael-berretta/dick.svg"
  55143. }
  55144. },
  55145. },
  55146. [
  55147. {
  55148. name: "Normal",
  55149. height: math.unit(6 + 3/12, "feet"),
  55150. default: true
  55151. },
  55152. {
  55153. name: "Big",
  55154. height: math.unit(12, "feet")
  55155. },
  55156. {
  55157. name: "Macro",
  55158. height: math.unit(187.5, "feet")
  55159. },
  55160. ]
  55161. ))
  55162. characterMakers.push(() => makeCharacter(
  55163. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55164. {
  55165. front: {
  55166. height: math.unit(9 + 9/12, "feet"),
  55167. weight: math.unit(1244, "lb"),
  55168. name: "Front",
  55169. image: {
  55170. source: "./media/characters/stella-edgecomb/front.svg",
  55171. extra: 1835/1706,
  55172. bottom: 49/1884
  55173. }
  55174. },
  55175. pen: {
  55176. height: math.unit(0.95, "feet"),
  55177. name: "Pen",
  55178. image: {
  55179. source: "./media/characters/stella-edgecomb/pen.svg"
  55180. }
  55181. },
  55182. },
  55183. [
  55184. {
  55185. name: "Cozy Bear",
  55186. height: math.unit(0.5, "inches")
  55187. },
  55188. {
  55189. name: "Normal",
  55190. height: math.unit(9 + 9/12, "feet"),
  55191. default: true
  55192. },
  55193. {
  55194. name: "Giga Bear",
  55195. height: math.unit(1, "mile")
  55196. },
  55197. {
  55198. name: "Great Bear",
  55199. height: math.unit(53, "miles")
  55200. },
  55201. {
  55202. name: "Goddess Bear",
  55203. height: math.unit(40000, "miles")
  55204. },
  55205. {
  55206. name: "Sun Bear",
  55207. height: math.unit(900000, "miles")
  55208. },
  55209. ]
  55210. ))
  55211. characterMakers.push(() => makeCharacter(
  55212. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55213. {
  55214. anthroFront: {
  55215. height: math.unit(556, "cm"),
  55216. weight: math.unit(2650, "kg"),
  55217. preyCapacity: math.unit(3, "people"),
  55218. name: "Front",
  55219. image: {
  55220. source: "./media/characters/ash´iika/front.svg",
  55221. extra: 710/673,
  55222. bottom: 15/725
  55223. },
  55224. form: "anthro",
  55225. default: true
  55226. },
  55227. anthroSide: {
  55228. height: math.unit(556, "cm"),
  55229. weight: math.unit(2650, "kg"),
  55230. preyCapacity: math.unit(3, "people"),
  55231. name: "Side",
  55232. image: {
  55233. source: "./media/characters/ash´iika/side.svg",
  55234. extra: 696/676,
  55235. bottom: 13/709
  55236. },
  55237. form: "anthro"
  55238. },
  55239. anthroDressed: {
  55240. height: math.unit(556, "cm"),
  55241. weight: math.unit(2650, "kg"),
  55242. preyCapacity: math.unit(3, "people"),
  55243. name: "Dressed",
  55244. image: {
  55245. source: "./media/characters/ash´iika/dressed.svg",
  55246. extra: 710/673,
  55247. bottom: 15/725
  55248. },
  55249. form: "anthro"
  55250. },
  55251. anthroHead: {
  55252. height: math.unit(3.5, "feet"),
  55253. name: "Head",
  55254. image: {
  55255. source: "./media/characters/ash´iika/head.svg",
  55256. extra: 348/291,
  55257. bottom: 45/393
  55258. },
  55259. form: "anthro"
  55260. },
  55261. feralSide: {
  55262. height: math.unit(870, "cm"),
  55263. weight: math.unit(17500, "kg"),
  55264. preyCapacity: math.unit(15, "people"),
  55265. name: "Side",
  55266. image: {
  55267. source: "./media/characters/ash´iika/feral.svg",
  55268. extra: 595/199,
  55269. bottom: 7/602
  55270. },
  55271. form: "feral",
  55272. default: true,
  55273. },
  55274. },
  55275. [
  55276. {
  55277. name: "Normal",
  55278. height: math.unit(556, "cm"),
  55279. default: true,
  55280. form: "anthro"
  55281. },
  55282. {
  55283. name: "Macro",
  55284. height: math.unit(88, "meters"),
  55285. form: "anthro"
  55286. },
  55287. {
  55288. name: "Normal",
  55289. height: math.unit(870, "cm"),
  55290. default: true,
  55291. form: "feral"
  55292. },
  55293. {
  55294. name: "Large",
  55295. height: math.unit(25, "meters"),
  55296. form: "feral"
  55297. },
  55298. ],
  55299. {
  55300. "anthro": {
  55301. name: "Anthro",
  55302. default: true
  55303. },
  55304. "feral": {
  55305. name: "Feral",
  55306. },
  55307. }
  55308. ))
  55309. characterMakers.push(() => makeCharacter(
  55310. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55311. {
  55312. front: {
  55313. height: math.unit(10, "feet"),
  55314. weight: math.unit(800, "lb"),
  55315. name: "Front",
  55316. image: {
  55317. source: "./media/characters/yen/front.svg",
  55318. extra: 443/411,
  55319. bottom: 6/449
  55320. }
  55321. },
  55322. sleeping: {
  55323. height: math.unit(10, "feet"),
  55324. weight: math.unit(800, "lb"),
  55325. name: "Sleeping",
  55326. image: {
  55327. source: "./media/characters/yen/sleeping.svg",
  55328. extra: 470/422,
  55329. bottom: 0/470
  55330. }
  55331. },
  55332. head: {
  55333. height: math.unit(2.2, "feet"),
  55334. name: "Head",
  55335. image: {
  55336. source: "./media/characters/yen/head.svg"
  55337. }
  55338. },
  55339. headAlt: {
  55340. height: math.unit(2.1, "feet"),
  55341. name: "Head (Alt)",
  55342. image: {
  55343. source: "./media/characters/yen/head-alt.svg"
  55344. }
  55345. },
  55346. },
  55347. [
  55348. {
  55349. name: "Normal",
  55350. height: math.unit(10, "feet"),
  55351. default: true
  55352. },
  55353. ]
  55354. ))
  55355. characterMakers.push(() => makeCharacter(
  55356. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55357. {
  55358. front: {
  55359. height: math.unit(12, "feet"),
  55360. name: "Front",
  55361. image: {
  55362. source: "./media/characters/citra/front.svg",
  55363. extra: 1950/1710,
  55364. bottom: 47/1997
  55365. }
  55366. },
  55367. },
  55368. [
  55369. {
  55370. name: "Normal",
  55371. height: math.unit(12, "feet"),
  55372. default: true
  55373. },
  55374. ]
  55375. ))
  55376. characterMakers.push(() => makeCharacter(
  55377. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55378. {
  55379. side: {
  55380. height: math.unit(7 + 10/12, "feet"),
  55381. name: "Side",
  55382. image: {
  55383. source: "./media/characters/sholstim/side.svg",
  55384. extra: 786/682,
  55385. bottom: 40/826
  55386. }
  55387. },
  55388. },
  55389. [
  55390. {
  55391. name: "Normal",
  55392. height: math.unit(7 + 10/12, "feet"),
  55393. default: true
  55394. },
  55395. ]
  55396. ))
  55397. characterMakers.push(() => makeCharacter(
  55398. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55399. {
  55400. front: {
  55401. height: math.unit(3.10, "meters"),
  55402. name: "Front",
  55403. image: {
  55404. source: "./media/characters/aggyn/front.svg",
  55405. extra: 1188/963,
  55406. bottom: 24/1212
  55407. }
  55408. },
  55409. },
  55410. [
  55411. {
  55412. name: "Normal",
  55413. height: math.unit(3.10, "meters"),
  55414. default: true
  55415. },
  55416. ]
  55417. ))
  55418. characterMakers.push(() => makeCharacter(
  55419. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55420. {
  55421. front: {
  55422. height: math.unit(7 + 5/12, "feet"),
  55423. weight: math.unit(687, "lb"),
  55424. name: "Front",
  55425. image: {
  55426. source: "./media/characters/alsandair-hergenroether/front.svg",
  55427. extra: 1251/1186,
  55428. bottom: 75/1326
  55429. }
  55430. },
  55431. back: {
  55432. height: math.unit(7 + 5/12, "feet"),
  55433. weight: math.unit(687, "lb"),
  55434. name: "Back",
  55435. image: {
  55436. source: "./media/characters/alsandair-hergenroether/back.svg",
  55437. extra: 1290/1229,
  55438. bottom: 17/1307
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "Max Compression",
  55445. height: math.unit(7 + 5/12, "feet"),
  55446. default: true
  55447. },
  55448. {
  55449. name: "\"Normal\"",
  55450. height: math.unit(2, "universes")
  55451. },
  55452. ]
  55453. ))
  55454. characterMakers.push(() => makeCharacter(
  55455. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55456. {
  55457. front: {
  55458. height: math.unit(4 + 1/12, "feet"),
  55459. weight: math.unit(92, "lb"),
  55460. name: "Front",
  55461. image: {
  55462. source: "./media/characters/ie/front.svg",
  55463. extra: 1585/1352,
  55464. bottom: 91/1676
  55465. }
  55466. },
  55467. },
  55468. [
  55469. {
  55470. name: "Normal",
  55471. height: math.unit(4 + 1/12, "feet"),
  55472. default: true
  55473. },
  55474. ]
  55475. ))
  55476. characterMakers.push(() => makeCharacter(
  55477. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55478. {
  55479. anthro: {
  55480. height: math.unit(6, "feet"),
  55481. weight: math.unit(150, "lb"),
  55482. name: "Front",
  55483. image: {
  55484. source: "./media/characters/willow/anthro.svg",
  55485. extra: 1073/986,
  55486. bottom: 34/1107
  55487. },
  55488. form: "anthro",
  55489. default: true
  55490. },
  55491. taur: {
  55492. height: math.unit(6, "feet"),
  55493. weight: math.unit(150, "lb"),
  55494. name: "Side",
  55495. image: {
  55496. source: "./media/characters/willow/taur.svg",
  55497. extra: 647/512,
  55498. bottom: 136/783
  55499. },
  55500. form: "taur",
  55501. default: true
  55502. },
  55503. },
  55504. [
  55505. {
  55506. name: "Humanoid",
  55507. height: math.unit(2.7, "meters"),
  55508. form: "anthro"
  55509. },
  55510. {
  55511. name: "Normal",
  55512. height: math.unit(9, "meters"),
  55513. form: "anthro",
  55514. default: true
  55515. },
  55516. {
  55517. name: "Humanoid",
  55518. height: math.unit(2.1, "meters"),
  55519. form: "taur"
  55520. },
  55521. {
  55522. name: "Normal",
  55523. height: math.unit(7, "meters"),
  55524. form: "taur",
  55525. default: true
  55526. },
  55527. ],
  55528. {
  55529. "anthro": {
  55530. name: "Anthro",
  55531. default: true
  55532. },
  55533. "taur": {
  55534. name: "Taur",
  55535. },
  55536. }
  55537. ))
  55538. characterMakers.push(() => makeCharacter(
  55539. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55540. {
  55541. front: {
  55542. height: math.unit(2 + 5/12, "feet"),
  55543. name: "Front",
  55544. image: {
  55545. source: "./media/characters/kyan/front.svg",
  55546. extra: 460/334,
  55547. bottom: 23/483
  55548. },
  55549. extraAttributes: {
  55550. "toeLength": {
  55551. name: "Toe Length",
  55552. power: 1,
  55553. type: "length",
  55554. base: math.unit(7, "cm")
  55555. },
  55556. "toeclawLength": {
  55557. name: "Toeclaw Length",
  55558. power: 1,
  55559. type: "length",
  55560. base: math.unit(4.7, "cm")
  55561. },
  55562. "earHeight": {
  55563. name: "Ear Height",
  55564. power: 1,
  55565. type: "length",
  55566. base: math.unit(14.1, "cm")
  55567. },
  55568. }
  55569. },
  55570. paws: {
  55571. height: math.unit(0.45, "feet"),
  55572. name: "Paws",
  55573. image: {
  55574. source: "./media/characters/kyan/paws.svg",
  55575. extra: 581/581,
  55576. bottom: 114/695
  55577. }
  55578. },
  55579. },
  55580. [
  55581. {
  55582. name: "Normal",
  55583. height: math.unit(2 + 5/12, "feet"),
  55584. default: true
  55585. },
  55586. ]
  55587. ))
  55588. characterMakers.push(() => makeCharacter(
  55589. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55590. {
  55591. front: {
  55592. height: math.unit(2 + 2/3, "feet"),
  55593. name: "Front",
  55594. image: {
  55595. source: "./media/characters/xazzon/front.svg",
  55596. extra: 1109/984,
  55597. bottom: 42/1151
  55598. }
  55599. },
  55600. back: {
  55601. height: math.unit(2 + 2/3, "feet"),
  55602. name: "Back",
  55603. image: {
  55604. source: "./media/characters/xazzon/back.svg",
  55605. extra: 1095/971,
  55606. bottom: 23/1118
  55607. }
  55608. },
  55609. },
  55610. [
  55611. {
  55612. name: "Normal",
  55613. height: math.unit(2 + 2/3, "feet"),
  55614. default: true
  55615. },
  55616. ]
  55617. ))
  55618. characterMakers.push(() => makeCharacter(
  55619. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55620. {
  55621. front: {
  55622. height: math.unit(8, "feet"),
  55623. weight: math.unit(300, "lb"),
  55624. name: "Front",
  55625. image: {
  55626. source: "./media/characters/khyla-shadowsong/front.svg",
  55627. extra: 861/798,
  55628. bottom: 32/893
  55629. }
  55630. },
  55631. side: {
  55632. height: math.unit(8, "feet"),
  55633. weight: math.unit(300, "lb"),
  55634. name: "Side",
  55635. image: {
  55636. source: "./media/characters/khyla-shadowsong/side.svg",
  55637. extra: 790/750,
  55638. bottom: 87/877
  55639. }
  55640. },
  55641. back: {
  55642. height: math.unit(8, "feet"),
  55643. weight: math.unit(300, "lb"),
  55644. name: "Back",
  55645. image: {
  55646. source: "./media/characters/khyla-shadowsong/back.svg",
  55647. extra: 855/808,
  55648. bottom: 14/869
  55649. }
  55650. },
  55651. head: {
  55652. height: math.unit(2.7, "feet"),
  55653. name: "Head",
  55654. image: {
  55655. source: "./media/characters/khyla-shadowsong/head.svg"
  55656. }
  55657. },
  55658. },
  55659. [
  55660. {
  55661. name: "Micro",
  55662. height: math.unit(6, "inches")
  55663. },
  55664. {
  55665. name: "Normal",
  55666. height: math.unit(8, "feet"),
  55667. default: true
  55668. },
  55669. ]
  55670. ))
  55671. characterMakers.push(() => makeCharacter(
  55672. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55673. {
  55674. hyperFront: {
  55675. height: math.unit(9 + 4/12, "feet"),
  55676. weight: math.unit(2000, "lb"),
  55677. name: "Front",
  55678. image: {
  55679. source: "./media/characters/tiden/hyper-front.svg",
  55680. extra: 400/382,
  55681. bottom: 6/406
  55682. },
  55683. form: "hyper",
  55684. },
  55685. regularFront: {
  55686. height: math.unit(7 + 10/12, "feet"),
  55687. weight: math.unit(470, "lb"),
  55688. name: "Front",
  55689. image: {
  55690. source: "./media/characters/tiden/regular-front.svg",
  55691. extra: 468/442,
  55692. bottom: 6/474
  55693. },
  55694. form: "regular",
  55695. },
  55696. },
  55697. [
  55698. {
  55699. name: "Normal",
  55700. height: math.unit(9 + 4/12, "feet"),
  55701. default: true,
  55702. form: "hyper"
  55703. },
  55704. {
  55705. name: "Normal",
  55706. height: math.unit(7 + 10/12, "feet"),
  55707. default: true,
  55708. form: "regular"
  55709. },
  55710. ],
  55711. {
  55712. "hyper": {
  55713. name: "Hyper",
  55714. default: true
  55715. },
  55716. "regular": {
  55717. name: "Regular",
  55718. },
  55719. }
  55720. ))
  55721. characterMakers.push(() => makeCharacter(
  55722. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55723. {
  55724. side: {
  55725. height: math.unit(6, "feet"),
  55726. weight: math.unit(150, "lb"),
  55727. name: "Side",
  55728. image: {
  55729. source: "./media/characters/jason-crowe/side.svg",
  55730. extra: 1771/766,
  55731. bottom: 219/1990
  55732. }
  55733. },
  55734. },
  55735. [
  55736. {
  55737. name: "Pocket Gryphon",
  55738. height: math.unit(6, "cm")
  55739. },
  55740. {
  55741. name: "Raven",
  55742. height: math.unit(60, "cm")
  55743. },
  55744. {
  55745. name: "Normal",
  55746. height: math.unit(1, "meter"),
  55747. default: true
  55748. },
  55749. ]
  55750. ))
  55751. characterMakers.push(() => makeCharacter(
  55752. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55753. {
  55754. front: {
  55755. height: math.unit(9 + 6/12, "feet"),
  55756. weight: math.unit(1100, "lb"),
  55757. name: "Front",
  55758. image: {
  55759. source: "./media/characters/django/front.svg",
  55760. extra: 1231/1136,
  55761. bottom: 34/1265
  55762. }
  55763. },
  55764. side: {
  55765. height: math.unit(9 + 6/12, "feet"),
  55766. weight: math.unit(1100, "lb"),
  55767. name: "Side",
  55768. image: {
  55769. source: "./media/characters/django/side.svg",
  55770. extra: 1267/1174,
  55771. bottom: 9/1276
  55772. }
  55773. },
  55774. },
  55775. [
  55776. {
  55777. name: "Normal",
  55778. height: math.unit(9 + 6/12, "feet"),
  55779. default: true
  55780. },
  55781. {
  55782. name: "Macro 1",
  55783. height: math.unit(50, "feet")
  55784. },
  55785. {
  55786. name: "Macro 2",
  55787. height: math.unit(500, "feet")
  55788. },
  55789. {
  55790. name: "Mega Macro",
  55791. height: math.unit(5300, "feet")
  55792. },
  55793. ]
  55794. ))
  55795. characterMakers.push(() => makeCharacter(
  55796. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55797. {
  55798. frontSfw: {
  55799. height: math.unit(120, "cm"),
  55800. weight: math.unit(15, "kg"),
  55801. name: "Front (SFW)",
  55802. image: {
  55803. source: "./media/characters/eri/front-sfw.svg",
  55804. extra: 1014/939,
  55805. bottom: 37/1051
  55806. },
  55807. form: "moth",
  55808. },
  55809. frontNsfw: {
  55810. height: math.unit(120, "cm"),
  55811. weight: math.unit(15, "kg"),
  55812. name: "Front (NSFW)",
  55813. image: {
  55814. source: "./media/characters/eri/front-nsfw.svg",
  55815. extra: 1014/939,
  55816. bottom: 37/1051
  55817. },
  55818. form: "moth",
  55819. default: true
  55820. },
  55821. egg: {
  55822. height: math.unit(10, "cm"),
  55823. name: "Egg",
  55824. image: {
  55825. source: "./media/characters/eri/egg.svg"
  55826. },
  55827. form: "egg",
  55828. default: true
  55829. },
  55830. },
  55831. [
  55832. {
  55833. name: "Normal",
  55834. height: math.unit(120, "cm"),
  55835. default: true,
  55836. form: "moth"
  55837. },
  55838. {
  55839. name: "Normal",
  55840. height: math.unit(10, "cm"),
  55841. default: true,
  55842. form: "egg"
  55843. },
  55844. ],
  55845. {
  55846. "moth": {
  55847. name: "Moth",
  55848. default: true
  55849. },
  55850. "egg": {
  55851. name: "Egg",
  55852. },
  55853. }
  55854. ))
  55855. characterMakers.push(() => makeCharacter(
  55856. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55857. {
  55858. front: {
  55859. height: math.unit(200, "feet"),
  55860. name: "Front",
  55861. image: {
  55862. source: "./media/characters/bishop-dowser/front.svg",
  55863. extra: 933/868,
  55864. bottom: 106/1039
  55865. }
  55866. },
  55867. },
  55868. [
  55869. {
  55870. name: "Giant",
  55871. height: math.unit(200, "feet"),
  55872. default: true
  55873. },
  55874. ]
  55875. ))
  55876. characterMakers.push(() => makeCharacter(
  55877. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55878. {
  55879. front: {
  55880. height: math.unit(2, "meters"),
  55881. preyCapacity: math.unit(3, "people"),
  55882. name: "Front",
  55883. image: {
  55884. source: "./media/characters/fryra/front.svg",
  55885. extra: 1025/948,
  55886. bottom: 30/1055
  55887. },
  55888. extraAttributes: {
  55889. "breastVolume": {
  55890. name: "Breast Volume",
  55891. power: 3,
  55892. type: "volume",
  55893. base: math.unit(8, "liters")
  55894. },
  55895. }
  55896. },
  55897. back: {
  55898. height: math.unit(2, "meters"),
  55899. preyCapacity: math.unit(3, "people"),
  55900. name: "Back",
  55901. image: {
  55902. source: "./media/characters/fryra/back.svg",
  55903. extra: 993/938,
  55904. bottom: 38/1031
  55905. },
  55906. extraAttributes: {
  55907. "breastVolume": {
  55908. name: "Breast Volume",
  55909. power: 3,
  55910. type: "volume",
  55911. base: math.unit(8, "liters")
  55912. },
  55913. }
  55914. },
  55915. head: {
  55916. height: math.unit(1.33, "feet"),
  55917. name: "Head",
  55918. image: {
  55919. source: "./media/characters/fryra/head.svg"
  55920. }
  55921. },
  55922. maw: {
  55923. height: math.unit(0.56, "feet"),
  55924. name: "Maw",
  55925. image: {
  55926. source: "./media/characters/fryra/maw.svg"
  55927. }
  55928. },
  55929. },
  55930. [
  55931. {
  55932. name: "Micro",
  55933. height: math.unit(5, "cm")
  55934. },
  55935. {
  55936. name: "Normal",
  55937. height: math.unit(2, "meters"),
  55938. default: true
  55939. },
  55940. {
  55941. name: "Small Macro",
  55942. height: math.unit(8, "meters")
  55943. },
  55944. {
  55945. name: "Macro",
  55946. height: math.unit(50, "meters")
  55947. },
  55948. {
  55949. name: "Megamacro",
  55950. height: math.unit(1, "km")
  55951. },
  55952. {
  55953. name: "Planetary",
  55954. height: math.unit(300000, "km")
  55955. },
  55956. {
  55957. name: "Universal",
  55958. height: math.unit(250, "lightyears")
  55959. },
  55960. {
  55961. name: "Fabric of Reality",
  55962. height: math.unit(1000, "multiverses")
  55963. },
  55964. ]
  55965. ))
  55966. characterMakers.push(() => makeCharacter(
  55967. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55968. {
  55969. frontDressed: {
  55970. height: math.unit(6 + 2/12, "feet"),
  55971. name: "Front (Dressed)",
  55972. image: {
  55973. source: "./media/characters/fiera/front-dressed.svg",
  55974. extra: 1883/1793,
  55975. bottom: 70/1953
  55976. }
  55977. },
  55978. backDressed: {
  55979. height: math.unit(6 + 2/12, "feet"),
  55980. name: "Back (Dressed)",
  55981. image: {
  55982. source: "./media/characters/fiera/back-dressed.svg",
  55983. extra: 1847/1780,
  55984. bottom: 70/1917
  55985. }
  55986. },
  55987. frontNude: {
  55988. height: math.unit(6 + 2/12, "feet"),
  55989. name: "Front (Nude)",
  55990. image: {
  55991. source: "./media/characters/fiera/front-nude.svg",
  55992. extra: 1875/1785,
  55993. bottom: 66/1941
  55994. }
  55995. },
  55996. backNude: {
  55997. height: math.unit(6 + 2/12, "feet"),
  55998. name: "Back (Nude)",
  55999. image: {
  56000. source: "./media/characters/fiera/back-nude.svg",
  56001. extra: 1855/1788,
  56002. bottom: 44/1899
  56003. }
  56004. },
  56005. maw: {
  56006. height: math.unit(1.3, "feet"),
  56007. name: "Maw",
  56008. image: {
  56009. source: "./media/characters/fiera/maw.svg"
  56010. }
  56011. },
  56012. paw: {
  56013. height: math.unit(1, "feet"),
  56014. name: "Paw",
  56015. image: {
  56016. source: "./media/characters/fiera/paw.svg"
  56017. }
  56018. },
  56019. shoe: {
  56020. height: math.unit(1.05, "feet"),
  56021. name: "Shoe",
  56022. image: {
  56023. source: "./media/characters/fiera/shoe.svg"
  56024. }
  56025. },
  56026. },
  56027. [
  56028. {
  56029. name: "Normal",
  56030. height: math.unit(6 + 2/12, "feet"),
  56031. default: true
  56032. },
  56033. {
  56034. name: "Size Difference",
  56035. height: math.unit(13, "feet")
  56036. },
  56037. {
  56038. name: "Macro",
  56039. height: math.unit(60, "feet")
  56040. },
  56041. {
  56042. name: "Mega Macro",
  56043. height: math.unit(200, "feet")
  56044. },
  56045. ]
  56046. ))
  56047. characterMakers.push(() => makeCharacter(
  56048. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56049. {
  56050. back: {
  56051. height: math.unit(6, "feet"),
  56052. name: "Back",
  56053. image: {
  56054. source: "./media/characters/flare/back.svg",
  56055. extra: 1883/1765,
  56056. bottom: 32/1915
  56057. }
  56058. },
  56059. },
  56060. [
  56061. {
  56062. name: "Normal",
  56063. height: math.unit(6 + 2/12, "feet"),
  56064. default: true
  56065. },
  56066. {
  56067. name: "Size Difference",
  56068. height: math.unit(13, "feet")
  56069. },
  56070. {
  56071. name: "Macro",
  56072. height: math.unit(60, "feet")
  56073. },
  56074. {
  56075. name: "Macro 2",
  56076. height: math.unit(100, "feet")
  56077. },
  56078. {
  56079. name: "Mega Macro",
  56080. height: math.unit(200, "feet")
  56081. },
  56082. ]
  56083. ))
  56084. characterMakers.push(() => makeCharacter(
  56085. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56086. {
  56087. front: {
  56088. height: math.unit(2.2, "m"),
  56089. weight: math.unit(300, "kg"),
  56090. name: "Front",
  56091. image: {
  56092. source: "./media/characters/hanna/front.svg",
  56093. extra: 1696/1502,
  56094. bottom: 206/1902
  56095. }
  56096. },
  56097. },
  56098. [
  56099. {
  56100. name: "Humanoid",
  56101. height: math.unit(2.2, "meters")
  56102. },
  56103. {
  56104. name: "Normal",
  56105. height: math.unit(4.8, "meters"),
  56106. default: true
  56107. },
  56108. ]
  56109. ))
  56110. characterMakers.push(() => makeCharacter(
  56111. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56112. {
  56113. front: {
  56114. height: math.unit(2.8, "meters"),
  56115. name: "Front",
  56116. image: {
  56117. source: "./media/characters/argo/front.svg",
  56118. extra: 731/518,
  56119. bottom: 84/815
  56120. }
  56121. },
  56122. },
  56123. [
  56124. {
  56125. name: "Normal",
  56126. height: math.unit(3, "meters"),
  56127. default: true
  56128. },
  56129. ]
  56130. ))
  56131. characterMakers.push(() => makeCharacter(
  56132. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56133. {
  56134. side: {
  56135. height: math.unit(3.8, "meters"),
  56136. name: "Side",
  56137. image: {
  56138. source: "./media/characters/sybil/side.svg",
  56139. extra: 382/361,
  56140. bottom: 25/407
  56141. }
  56142. },
  56143. },
  56144. [
  56145. {
  56146. name: "Normal",
  56147. height: math.unit(3.8, "meters"),
  56148. default: true
  56149. },
  56150. ]
  56151. ))
  56152. characterMakers.push(() => makeCharacter(
  56153. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56154. {
  56155. side: {
  56156. height: math.unit(6, "meters"),
  56157. name: "Side",
  56158. image: {
  56159. source: "./media/characters/plum/side.svg",
  56160. extra: 858/755,
  56161. bottom: 45/903
  56162. },
  56163. form: "taur",
  56164. default: true
  56165. },
  56166. back: {
  56167. height: math.unit(6.3, "meters"),
  56168. name: "Back",
  56169. image: {
  56170. source: "./media/characters/plum/back.svg",
  56171. extra: 887/813,
  56172. bottom: 32/919
  56173. },
  56174. form: "taur",
  56175. },
  56176. feral: {
  56177. height: math.unit(5.5, "meter"),
  56178. name: "Front",
  56179. image: {
  56180. source: "./media/characters/plum/feral.svg",
  56181. extra: 568/403,
  56182. bottom: 51/619
  56183. },
  56184. form: "feral",
  56185. default: true
  56186. },
  56187. head: {
  56188. height: math.unit(1.46, "meter"),
  56189. name: "Head",
  56190. image: {
  56191. source: "./media/characters/plum/head.svg"
  56192. },
  56193. form: "taur"
  56194. },
  56195. tailTop: {
  56196. height: math.unit(5.6, "meter"),
  56197. name: "Tail (Top)",
  56198. image: {
  56199. source: "./media/characters/plum/tail-top.svg"
  56200. },
  56201. form: "taur",
  56202. },
  56203. tailBottom: {
  56204. height: math.unit(5.6, "meter"),
  56205. name: "Tail (Bottom)",
  56206. image: {
  56207. source: "./media/characters/plum/tail-bottom.svg"
  56208. },
  56209. form: "taur",
  56210. },
  56211. feralHead: {
  56212. height: math.unit(2.56549521, "meter"),
  56213. name: "Head",
  56214. image: {
  56215. source: "./media/characters/plum/head.svg"
  56216. },
  56217. form: "feral"
  56218. },
  56219. feralTailTop: {
  56220. height: math.unit(5.44728435, "meter"),
  56221. name: "Tail (Top)",
  56222. image: {
  56223. source: "./media/characters/plum/tail-top.svg"
  56224. },
  56225. form: "feral",
  56226. },
  56227. feralTailBottom: {
  56228. height: math.unit(5.44728435, "meter"),
  56229. name: "Tail (Bottom)",
  56230. image: {
  56231. source: "./media/characters/plum/tail-bottom.svg"
  56232. },
  56233. form: "feral",
  56234. },
  56235. },
  56236. [
  56237. {
  56238. name: "Normal",
  56239. height: math.unit(6, "meters"),
  56240. default: true,
  56241. form: "taur"
  56242. },
  56243. {
  56244. name: "Normal",
  56245. height: math.unit(5.5, "meters"),
  56246. default: true,
  56247. form: "feral"
  56248. },
  56249. ],
  56250. {
  56251. "taur": {
  56252. name: "Taur",
  56253. default: true
  56254. },
  56255. "feral": {
  56256. name: "Feral",
  56257. },
  56258. }
  56259. ))
  56260. characterMakers.push(() => makeCharacter(
  56261. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56262. {
  56263. front: {
  56264. height: math.unit(6, "feet"),
  56265. weight: math.unit(115, "lb"),
  56266. name: "Front",
  56267. image: {
  56268. source: "./media/characters/celeste-kitsune/front.svg",
  56269. extra: 393/366,
  56270. bottom: 7/400
  56271. }
  56272. },
  56273. side: {
  56274. height: math.unit(6, "feet"),
  56275. weight: math.unit(115, "lb"),
  56276. name: "Side",
  56277. image: {
  56278. source: "./media/characters/celeste-kitsune/side.svg",
  56279. extra: 818/765,
  56280. bottom: 40/858
  56281. }
  56282. },
  56283. },
  56284. [
  56285. {
  56286. name: "Megamacro",
  56287. height: math.unit(1500, "miles"),
  56288. default: true
  56289. },
  56290. ]
  56291. ))
  56292. characterMakers.push(() => makeCharacter(
  56293. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56294. {
  56295. front: {
  56296. height: math.unit(8, "meters"),
  56297. name: "Front",
  56298. image: {
  56299. source: "./media/characters/io/front.svg",
  56300. extra: 865/722,
  56301. bottom: 58/923
  56302. }
  56303. },
  56304. back: {
  56305. height: math.unit(8, "meters"),
  56306. name: "Back",
  56307. image: {
  56308. source: "./media/characters/io/back.svg",
  56309. extra: 920/776,
  56310. bottom: 42/962
  56311. }
  56312. },
  56313. head: {
  56314. height: math.unit(5.09, "meters"),
  56315. name: "Head",
  56316. image: {
  56317. source: "./media/characters/io/head.svg"
  56318. }
  56319. },
  56320. hand: {
  56321. height: math.unit(1.6, "meters"),
  56322. name: "Hand",
  56323. image: {
  56324. source: "./media/characters/io/hand.svg"
  56325. }
  56326. },
  56327. foot: {
  56328. height: math.unit(2.4, "meters"),
  56329. name: "Foot",
  56330. image: {
  56331. source: "./media/characters/io/foot.svg"
  56332. }
  56333. },
  56334. },
  56335. [
  56336. {
  56337. name: "Normal",
  56338. height: math.unit(8, "meters"),
  56339. default: true
  56340. },
  56341. ]
  56342. ))
  56343. characterMakers.push(() => makeCharacter(
  56344. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56345. {
  56346. side: {
  56347. height: math.unit(6 + 3/12, "feet"),
  56348. weight: math.unit(225, "lb"),
  56349. name: "Side",
  56350. image: {
  56351. source: "./media/characters/silas/side.svg",
  56352. extra: 703/653,
  56353. bottom: 23/726
  56354. },
  56355. extraAttributes: {
  56356. "pawLength": {
  56357. name: "Paw Length",
  56358. power: 1,
  56359. type: "length",
  56360. base: math.unit(12, "inches")
  56361. },
  56362. "pawWidth": {
  56363. name: "Paw Width",
  56364. power: 1,
  56365. type: "length",
  56366. base: math.unit(4.5, "inches")
  56367. },
  56368. "pawArea": {
  56369. name: "Paw Area",
  56370. power: 2,
  56371. type: "area",
  56372. base: math.unit(12 * 4.5, "inches^2")
  56373. },
  56374. }
  56375. },
  56376. },
  56377. [
  56378. {
  56379. name: "Normal",
  56380. height: math.unit(6 + 3/12, "feet"),
  56381. default: true
  56382. },
  56383. ]
  56384. ))
  56385. characterMakers.push(() => makeCharacter(
  56386. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56387. {
  56388. back: {
  56389. height: math.unit(1.6, "meters"),
  56390. weight: math.unit(150, "lb"),
  56391. name: "Back",
  56392. image: {
  56393. source: "./media/characters/zari/back.svg",
  56394. extra: 424/411,
  56395. bottom: 32/456
  56396. },
  56397. extraAttributes: {
  56398. "bladderCapacity": {
  56399. name: "Bladder Size",
  56400. power: 3,
  56401. type: "volume",
  56402. base: math.unit(500, "mL")
  56403. },
  56404. "bladderFlow": {
  56405. name: "Flow Rate",
  56406. power: 3,
  56407. type: "volume",
  56408. base: math.unit(25, "mL")
  56409. },
  56410. }
  56411. },
  56412. },
  56413. [
  56414. {
  56415. name: "Normal",
  56416. height: math.unit(1.6, "meters"),
  56417. default: true
  56418. },
  56419. ]
  56420. ))
  56421. characterMakers.push(() => makeCharacter(
  56422. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56423. {
  56424. front: {
  56425. height: math.unit(25, "feet"),
  56426. weight: math.unit(5, "tons"),
  56427. name: "Front",
  56428. image: {
  56429. source: "./media/characters/charlie-human/front.svg",
  56430. extra: 1870/1740,
  56431. bottom: 102/1972
  56432. },
  56433. extraAttributes: {
  56434. "dickLength": {
  56435. name: "Dick Length",
  56436. power: 1,
  56437. type: "length",
  56438. base: math.unit(9, "feet")
  56439. },
  56440. }
  56441. },
  56442. back: {
  56443. height: math.unit(25, "feet"),
  56444. weight: math.unit(5, "tons"),
  56445. name: "Back",
  56446. image: {
  56447. source: "./media/characters/charlie-human/back.svg",
  56448. extra: 1858/1733,
  56449. bottom: 105/1963
  56450. },
  56451. extraAttributes: {
  56452. "dickLength": {
  56453. name: "Dick Length",
  56454. power: 1,
  56455. type: "length",
  56456. base: math.unit(9, "feet")
  56457. },
  56458. }
  56459. },
  56460. },
  56461. [
  56462. {
  56463. name: "\"Normal\"",
  56464. height: math.unit(6 + 4/12, "feet")
  56465. },
  56466. {
  56467. name: "Big",
  56468. height: math.unit(25, "feet"),
  56469. default: true
  56470. },
  56471. ]
  56472. ))
  56473. characterMakers.push(() => makeCharacter(
  56474. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56475. {
  56476. front: {
  56477. height: math.unit(6 + 4/12, "feet"),
  56478. weight: math.unit(320, "lb"),
  56479. name: "Front",
  56480. image: {
  56481. source: "./media/characters/ookitsu/front.svg",
  56482. extra: 1160/976,
  56483. bottom: 38/1198
  56484. }
  56485. },
  56486. frontNsfw: {
  56487. height: math.unit(6 + 4/12, "feet"),
  56488. weight: math.unit(320, "lb"),
  56489. name: "Front (NSFW)",
  56490. image: {
  56491. source: "./media/characters/ookitsu/front-nsfw.svg",
  56492. extra: 1160/976,
  56493. bottom: 38/1198
  56494. }
  56495. },
  56496. back: {
  56497. height: math.unit(6 + 4/12, "feet"),
  56498. weight: math.unit(320, "lb"),
  56499. name: "Back",
  56500. image: {
  56501. source: "./media/characters/ookitsu/back.svg",
  56502. extra: 1030/975,
  56503. bottom: 70/1100
  56504. }
  56505. },
  56506. head: {
  56507. height: math.unit(1.79, "feet"),
  56508. name: "Head",
  56509. image: {
  56510. source: "./media/characters/ookitsu/head.svg"
  56511. }
  56512. },
  56513. hand: {
  56514. height: math.unit(0.92, "feet"),
  56515. name: "Hand",
  56516. image: {
  56517. source: "./media/characters/ookitsu/hand.svg"
  56518. }
  56519. },
  56520. tails: {
  56521. height: math.unit(3.3, "feet"),
  56522. name: "Tails",
  56523. image: {
  56524. source: "./media/characters/ookitsu/tails.svg"
  56525. }
  56526. },
  56527. dick: {
  56528. height: math.unit(1.10833, "feet"),
  56529. name: "Dick",
  56530. image: {
  56531. source: "./media/characters/ookitsu/dick.svg"
  56532. }
  56533. },
  56534. },
  56535. [
  56536. {
  56537. name: "Normal",
  56538. height: math.unit(6 + 4/12, "feet"),
  56539. default: true
  56540. },
  56541. {
  56542. name: "Macro",
  56543. height: math.unit(30, "feet")
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56549. {
  56550. anthroFront: {
  56551. height: math.unit(6, "feet"),
  56552. weight: math.unit(250, "lb"),
  56553. name: "Front",
  56554. image: {
  56555. source: "./media/characters/jhusky/anthro-front.svg",
  56556. extra: 474/439,
  56557. bottom: 7/481
  56558. },
  56559. form: "anthro",
  56560. default: true
  56561. },
  56562. taurSideSfw: {
  56563. height: math.unit(6 + 4/12, "feet"),
  56564. weight: math.unit(500, "lb"),
  56565. name: "Side (SFW)",
  56566. image: {
  56567. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56568. extra: 1741/1629,
  56569. bottom: 196/1937
  56570. },
  56571. form: "taur",
  56572. default: true
  56573. },
  56574. taurSideNsfw: {
  56575. height: math.unit(6 + 4/12, "feet"),
  56576. weight: math.unit(500, "lb"),
  56577. name: "Taur (NSFW)",
  56578. image: {
  56579. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56580. extra: 1741/1629,
  56581. bottom: 196/1937
  56582. },
  56583. form: "taur",
  56584. },
  56585. },
  56586. [
  56587. {
  56588. name: "Huge",
  56589. height: math.unit(500, "feet"),
  56590. form: "anthro"
  56591. },
  56592. {
  56593. name: "Macro",
  56594. height: math.unit(1000, "feet"),
  56595. default: true,
  56596. form: "anthro"
  56597. },
  56598. {
  56599. name: "Megamacro",
  56600. height: math.unit(10000, "feet"),
  56601. form: "anthro"
  56602. },
  56603. {
  56604. name: "Huge",
  56605. height: math.unit(528, "feet"),
  56606. form: "taur"
  56607. },
  56608. {
  56609. name: "Macro",
  56610. height: math.unit(1056, "feet"),
  56611. default: true,
  56612. form: "taur"
  56613. },
  56614. {
  56615. name: "Megamacro",
  56616. height: math.unit(10556, "feet"),
  56617. form: "taur"
  56618. },
  56619. ],
  56620. {
  56621. "anthro": {
  56622. name: "Anthro",
  56623. default: true
  56624. },
  56625. "taur": {
  56626. name: "Taur",
  56627. },
  56628. }
  56629. ))
  56630. characterMakers.push(() => makeCharacter(
  56631. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56632. {
  56633. front: {
  56634. height: math.unit(8, "feet"),
  56635. weight: math.unit(500, "lb"),
  56636. name: "Front",
  56637. image: {
  56638. source: "./media/characters/armail/front.svg",
  56639. extra: 1753/1669,
  56640. bottom: 155/1908
  56641. }
  56642. },
  56643. back: {
  56644. height: math.unit(8, "feet"),
  56645. weight: math.unit(500, "lb"),
  56646. name: "Back",
  56647. image: {
  56648. source: "./media/characters/armail/back.svg",
  56649. extra: 1872/1803,
  56650. bottom: 63/1935
  56651. }
  56652. },
  56653. },
  56654. [
  56655. {
  56656. name: "Micro",
  56657. height: math.unit(0.25, "feet")
  56658. },
  56659. {
  56660. name: "Normal",
  56661. height: math.unit(8, "feet"),
  56662. default: true
  56663. },
  56664. {
  56665. name: "Mini-macro",
  56666. height: math.unit(30, "feet")
  56667. },
  56668. {
  56669. name: "Macro",
  56670. height: math.unit(400, "feet")
  56671. },
  56672. {
  56673. name: "Mega-macro",
  56674. height: math.unit(6000, "feet")
  56675. },
  56676. ]
  56677. ))
  56678. characterMakers.push(() => makeCharacter(
  56679. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56680. {
  56681. front: {
  56682. height: math.unit(6 + 7/12, "feet"),
  56683. weight: math.unit(210, "lb"),
  56684. name: "Front",
  56685. image: {
  56686. source: "./media/characters/wilfred-t-buxton/front.svg",
  56687. extra: 1068/882,
  56688. bottom: 28/1096
  56689. }
  56690. },
  56691. },
  56692. [
  56693. {
  56694. name: "Normal",
  56695. height: math.unit(6 + 7/12, "feet"),
  56696. default: true
  56697. },
  56698. ]
  56699. ))
  56700. characterMakers.push(() => makeCharacter(
  56701. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56702. {
  56703. front: {
  56704. height: math.unit(5 + 2/12, "feet"),
  56705. weight: math.unit(120, "lb"),
  56706. name: "Front",
  56707. image: {
  56708. source: "./media/characters/leighton-marrow/front.svg",
  56709. extra: 441/409,
  56710. bottom: 37/478
  56711. }
  56712. },
  56713. },
  56714. [
  56715. {
  56716. name: "Normal",
  56717. height: math.unit(5 + 2/12, "feet"),
  56718. default: true
  56719. },
  56720. ]
  56721. ))
  56722. characterMakers.push(() => makeCharacter(
  56723. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56724. {
  56725. front: {
  56726. height: math.unit(4, "meters"),
  56727. weight: math.unit(1200, "kg"),
  56728. name: "Front",
  56729. image: {
  56730. source: "./media/characters/licos/front.svg",
  56731. extra: 1727/1604,
  56732. bottom: 101/1828
  56733. },
  56734. form: "anthro",
  56735. default: true
  56736. },
  56737. taur_side: {
  56738. height: math.unit(20, "meters"),
  56739. weight: math.unit(1100000, "kg"),
  56740. name: "Side",
  56741. image: {
  56742. source: "./media/characters/licos/taur.svg",
  56743. extra: 1158/1091,
  56744. bottom: 80/1238
  56745. },
  56746. form: "taur",
  56747. default: true
  56748. },
  56749. },
  56750. [
  56751. {
  56752. name: "Normal",
  56753. height: math.unit(4, "meters"),
  56754. default: true,
  56755. form: "anthro"
  56756. },
  56757. {
  56758. name: "Normal",
  56759. height: math.unit(20, "meters"),
  56760. default: true,
  56761. form: "taur"
  56762. },
  56763. ],
  56764. {
  56765. "anthro": {
  56766. name: "Anthro",
  56767. default: true
  56768. },
  56769. "taur": {
  56770. name: "Taur",
  56771. },
  56772. }
  56773. ))
  56774. characterMakers.push(() => makeCharacter(
  56775. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56776. {
  56777. front: {
  56778. height: math.unit(10 + 3/12, "feet"),
  56779. name: "Front",
  56780. image: {
  56781. source: "./media/characters/theo-monkey/front.svg",
  56782. extra: 1735/1658,
  56783. bottom: 73/1808
  56784. }
  56785. },
  56786. back: {
  56787. height: math.unit(10 + 3/12, "feet"),
  56788. name: "Back",
  56789. image: {
  56790. source: "./media/characters/theo-monkey/back.svg",
  56791. extra: 1742/1664,
  56792. bottom: 33/1775
  56793. }
  56794. },
  56795. head: {
  56796. height: math.unit(2.29, "feet"),
  56797. name: "Head",
  56798. image: {
  56799. source: "./media/characters/theo-monkey/head.svg"
  56800. }
  56801. },
  56802. handPalm: {
  56803. height: math.unit(1.73, "feet"),
  56804. name: "Hand (Palm)",
  56805. image: {
  56806. source: "./media/characters/theo-monkey/hand-palm.svg"
  56807. }
  56808. },
  56809. handBack: {
  56810. height: math.unit(1.63, "feet"),
  56811. name: "Hand (Back)",
  56812. image: {
  56813. source: "./media/characters/theo-monkey/hand-back.svg"
  56814. }
  56815. },
  56816. footSole: {
  56817. height: math.unit(2.15, "feet"),
  56818. name: "Foot (Sole)",
  56819. image: {
  56820. source: "./media/characters/theo-monkey/foot-sole.svg"
  56821. }
  56822. },
  56823. footSide: {
  56824. height: math.unit(1.6, "feet"),
  56825. name: "Foot (Side)",
  56826. image: {
  56827. source: "./media/characters/theo-monkey/foot-side.svg"
  56828. }
  56829. },
  56830. },
  56831. [
  56832. {
  56833. name: "Normal",
  56834. height: math.unit(10 + 3/12, "feet"),
  56835. default: true
  56836. },
  56837. ]
  56838. ))
  56839. characterMakers.push(() => makeCharacter(
  56840. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56841. {
  56842. front: {
  56843. height: math.unit(11, "feet"),
  56844. weight: math.unit(3000, "lb"),
  56845. preyCapacity: math.unit(10, "people"),
  56846. name: "Front",
  56847. image: {
  56848. source: "./media/characters/brook/front.svg",
  56849. extra: 909/835,
  56850. bottom: 108/1017
  56851. }
  56852. },
  56853. back: {
  56854. height: math.unit(11, "feet"),
  56855. weight: math.unit(3000, "lb"),
  56856. preyCapacity: math.unit(10, "people"),
  56857. name: "Back",
  56858. image: {
  56859. source: "./media/characters/brook/back.svg",
  56860. extra: 976/916,
  56861. bottom: 34/1010
  56862. }
  56863. },
  56864. backAlt: {
  56865. height: math.unit(11, "feet"),
  56866. weight: math.unit(3000, "lb"),
  56867. preyCapacity: math.unit(10, "people"),
  56868. name: "Back (Alt)",
  56869. image: {
  56870. source: "./media/characters/brook/back-alt.svg",
  56871. extra: 1283/1213,
  56872. bottom: 35/1318
  56873. }
  56874. },
  56875. bust: {
  56876. height: math.unit(9.0859030837, "feet"),
  56877. weight: math.unit(3000, "lb"),
  56878. preyCapacity: math.unit(10, "people"),
  56879. name: "Bust",
  56880. image: {
  56881. source: "./media/characters/brook/bust.svg",
  56882. extra: 2043/1923,
  56883. bottom: 0/2043
  56884. }
  56885. },
  56886. },
  56887. [
  56888. {
  56889. name: "Small",
  56890. height: math.unit(11, "feet"),
  56891. default: true
  56892. },
  56893. {
  56894. name: "Towering",
  56895. height: math.unit(5, "km")
  56896. },
  56897. {
  56898. name: "Enormous",
  56899. height: math.unit(25, "earths")
  56900. },
  56901. ]
  56902. ))
  56903. characterMakers.push(() => makeCharacter(
  56904. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56905. {
  56906. front: {
  56907. height: math.unit(4, "feet"),
  56908. weight: math.unit(150, "lb"),
  56909. name: "Front",
  56910. image: {
  56911. source: "./media/characters/squishi/front.svg",
  56912. extra: 1428/1271,
  56913. bottom: 30/1458
  56914. },
  56915. extraAttributes: {
  56916. "pawSize": {
  56917. name: "Paw Size",
  56918. power: 1,
  56919. type: "length",
  56920. base: math.unit(14, "ShoeSizeMensUS"),
  56921. defaultUnit: "ShoeSizeMensUS"
  56922. },
  56923. }
  56924. },
  56925. side: {
  56926. height: math.unit(4, "feet"),
  56927. weight: math.unit(150, "lb"),
  56928. name: "Side",
  56929. image: {
  56930. source: "./media/characters/squishi/side.svg",
  56931. extra: 1428/1271,
  56932. bottom: 30/1458
  56933. },
  56934. extraAttributes: {
  56935. "pawSize": {
  56936. name: "Paw Size",
  56937. power: 1,
  56938. type: "length",
  56939. base: math.unit(14, "ShoeSizeMensUS"),
  56940. defaultUnit: "ShoeSizeMensUS"
  56941. },
  56942. }
  56943. },
  56944. back: {
  56945. height: math.unit(4, "feet"),
  56946. weight: math.unit(150, "lb"),
  56947. name: "Back",
  56948. image: {
  56949. source: "./media/characters/squishi/back.svg",
  56950. extra: 1428/1271,
  56951. bottom: 30/1458
  56952. },
  56953. extraAttributes: {
  56954. "pawSize": {
  56955. name: "Paw Size",
  56956. power: 1,
  56957. type: "length",
  56958. base: math.unit(14, "ShoeSizeMensUS"),
  56959. defaultUnit: "ShoeSizeMensUS"
  56960. },
  56961. }
  56962. },
  56963. },
  56964. [
  56965. {
  56966. name: "Normal",
  56967. height: math.unit(4, "feet"),
  56968. default: true
  56969. },
  56970. ]
  56971. ))
  56972. characterMakers.push(() => makeCharacter(
  56973. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56974. {
  56975. front: {
  56976. height: math.unit(7 + 8/12, "feet"),
  56977. weight: math.unit(333, "lb"),
  56978. name: "Front",
  56979. image: {
  56980. source: "./media/characters/vincent-vasroc/front.svg",
  56981. extra: 1962/1860,
  56982. bottom: 41/2003
  56983. }
  56984. },
  56985. back: {
  56986. height: math.unit(7 + 8/12, "feet"),
  56987. weight: math.unit(333, "lb"),
  56988. name: "Back",
  56989. image: {
  56990. source: "./media/characters/vincent-vasroc/back.svg",
  56991. extra: 1952/1815,
  56992. bottom: 33/1985
  56993. }
  56994. },
  56995. paw: {
  56996. height: math.unit(1.24, "feet"),
  56997. name: "Paw",
  56998. image: {
  56999. source: "./media/characters/vincent-vasroc/paw.svg"
  57000. }
  57001. },
  57002. ear: {
  57003. height: math.unit(0.75, "feet"),
  57004. name: "Ear",
  57005. image: {
  57006. source: "./media/characters/vincent-vasroc/ear.svg"
  57007. }
  57008. },
  57009. },
  57010. [
  57011. {
  57012. name: "Nano",
  57013. height: math.unit(92, "micrometers")
  57014. },
  57015. {
  57016. name: "Normal",
  57017. height: math.unit(7 + 8/12, "feet"),
  57018. default: true
  57019. },
  57020. ]
  57021. ))
  57022. characterMakers.push(() => makeCharacter(
  57023. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57024. {
  57025. frontNsfw: {
  57026. height: math.unit(40, "feet"),
  57027. weight: math.unit(58, "tons"),
  57028. name: "Front (NSFW)",
  57029. image: {
  57030. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57031. extra: 1265/965,
  57032. bottom: 155/1420
  57033. }
  57034. },
  57035. frontSfw: {
  57036. height: math.unit(40, "feet"),
  57037. weight: math.unit(58, "tons"),
  57038. name: "Front (SFW)",
  57039. image: {
  57040. source: "./media/characters/ru-kahn/front-sfw.svg",
  57041. extra: 1265/965,
  57042. bottom: 80/1345
  57043. }
  57044. },
  57045. },
  57046. [
  57047. {
  57048. name: "Small",
  57049. height: math.unit(4, "feet")
  57050. },
  57051. {
  57052. name: "Normal",
  57053. height: math.unit(40, "feet"),
  57054. default: true
  57055. },
  57056. {
  57057. name: "Macro",
  57058. height: math.unit(400, "feet")
  57059. },
  57060. ]
  57061. ))
  57062. characterMakers.push(() => makeCharacter(
  57063. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57064. {
  57065. frontNude: {
  57066. height: math.unit(6 + 5/12, "feet"),
  57067. name: "Front (Nude)",
  57068. image: {
  57069. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57070. extra: 1369/1366,
  57071. bottom: 68/1437
  57072. }
  57073. },
  57074. frontDressed: {
  57075. height: math.unit(6 + 5/12, "feet"),
  57076. name: "Front (Dressed)",
  57077. image: {
  57078. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57079. extra: 1369/1366,
  57080. bottom: 68/1437
  57081. }
  57082. },
  57083. },
  57084. [
  57085. {
  57086. name: "Normal",
  57087. height: math.unit(6 + 5/12, "feet"),
  57088. default: true
  57089. },
  57090. {
  57091. name: "Maximum",
  57092. height: math.unit(1930, "feet")
  57093. },
  57094. ]
  57095. ))
  57096. characterMakers.push(() => makeCharacter(
  57097. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57098. {
  57099. front: {
  57100. height: math.unit(5 + 6/12, "feet"),
  57101. name: "Front",
  57102. image: {
  57103. source: "./media/characters/kaja/front.svg",
  57104. extra: 1874/1514,
  57105. bottom: 117/1991
  57106. }
  57107. },
  57108. },
  57109. [
  57110. {
  57111. name: "Normal",
  57112. height: math.unit(5 + 6/12, "feet"),
  57113. default: true
  57114. },
  57115. ]
  57116. ))
  57117. characterMakers.push(() => makeCharacter(
  57118. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57119. {
  57120. front: {
  57121. height: math.unit(5 + 9/12, "feet"),
  57122. weight: math.unit(200, "lb"),
  57123. name: "Front",
  57124. image: {
  57125. source: "./media/characters/mark-smith/front.svg",
  57126. extra: 1004/943,
  57127. bottom: 58/1062
  57128. }
  57129. },
  57130. back: {
  57131. height: math.unit(5 + 9/12, "feet"),
  57132. weight: math.unit(200, "lb"),
  57133. name: "Back",
  57134. image: {
  57135. source: "./media/characters/mark-smith/back.svg",
  57136. extra: 1023/953,
  57137. bottom: 24/1047
  57138. }
  57139. },
  57140. head: {
  57141. height: math.unit(1.82, "feet"),
  57142. name: "Head",
  57143. image: {
  57144. source: "./media/characters/mark-smith/head.svg"
  57145. }
  57146. },
  57147. hand: {
  57148. height: math.unit(1.4, "feet"),
  57149. name: "Hand",
  57150. image: {
  57151. source: "./media/characters/mark-smith/hand.svg"
  57152. }
  57153. },
  57154. paw: {
  57155. height: math.unit(1.69, "feet"),
  57156. name: "Paw",
  57157. image: {
  57158. source: "./media/characters/mark-smith/paw.svg"
  57159. }
  57160. },
  57161. },
  57162. [
  57163. {
  57164. name: "Micro",
  57165. height: math.unit(0.25, "inches")
  57166. },
  57167. {
  57168. name: "Normal",
  57169. height: math.unit(5 + 9/12, "feet"),
  57170. default: true
  57171. },
  57172. {
  57173. name: "Macro",
  57174. height: math.unit(500, "feet")
  57175. },
  57176. ]
  57177. ))
  57178. characterMakers.push(() => makeCharacter(
  57179. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57180. {
  57181. frontNude: {
  57182. height: math.unit(6, "feet"),
  57183. name: "Front (Nude)",
  57184. image: {
  57185. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57186. extra: 1384/1321,
  57187. bottom: 57/1441
  57188. }
  57189. },
  57190. frontDressed: {
  57191. height: math.unit(6, "feet"),
  57192. name: "Front (Dressed)",
  57193. image: {
  57194. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57195. extra: 1384/1321,
  57196. bottom: 57/1441
  57197. }
  57198. },
  57199. },
  57200. [
  57201. {
  57202. name: "Normal",
  57203. height: math.unit(6, "feet"),
  57204. default: true
  57205. },
  57206. {
  57207. name: "Maximum",
  57208. height: math.unit(1776, "feet")
  57209. },
  57210. ]
  57211. ))
  57212. characterMakers.push(() => makeCharacter(
  57213. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57214. {
  57215. front: {
  57216. height: math.unit(2 + 4/12, "feet"),
  57217. weight: math.unit(350, "lb"),
  57218. name: "Front",
  57219. image: {
  57220. source: "./media/characters/devos/front.svg",
  57221. extra: 958/852,
  57222. bottom: 143/1101
  57223. }
  57224. },
  57225. },
  57226. [
  57227. {
  57228. name: "Base",
  57229. height: math.unit(2 + 4/12, "feet"),
  57230. default: true
  57231. },
  57232. ]
  57233. ))
  57234. characterMakers.push(() => makeCharacter(
  57235. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57236. {
  57237. front: {
  57238. height: math.unit(9 + 2/12, "feet"),
  57239. name: "Front",
  57240. image: {
  57241. source: "./media/characters/hiveheart/front.svg",
  57242. extra: 394/364,
  57243. bottom: 65/459
  57244. }
  57245. },
  57246. back: {
  57247. height: math.unit(9 + 2/12, "feet"),
  57248. name: "Back",
  57249. image: {
  57250. source: "./media/characters/hiveheart/back.svg",
  57251. extra: 374/357,
  57252. bottom: 63/437
  57253. }
  57254. },
  57255. },
  57256. [
  57257. {
  57258. name: "Base",
  57259. height: math.unit(9 + 2/12, "feet"),
  57260. default: true
  57261. },
  57262. ]
  57263. ))
  57264. characterMakers.push(() => makeCharacter(
  57265. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57266. {
  57267. front: {
  57268. height: math.unit(2.5, "inches"),
  57269. weight: math.unit(0.6, "oz"),
  57270. name: "Front",
  57271. image: {
  57272. source: "./media/characters/bryn/front.svg",
  57273. extra: 1484/1119,
  57274. bottom: 66/1550
  57275. }
  57276. },
  57277. back: {
  57278. height: math.unit(2.5, "inches"),
  57279. weight: math.unit(0.6, "oz"),
  57280. name: "Back",
  57281. image: {
  57282. source: "./media/characters/bryn/back.svg",
  57283. extra: 1472/1170,
  57284. bottom: 32/1504
  57285. }
  57286. },
  57287. wings: {
  57288. height: math.unit(2.5, "inches"),
  57289. weight: math.unit(0.6, "oz"),
  57290. name: "Wings",
  57291. image: {
  57292. source: "./media/characters/bryn/wings.svg",
  57293. extra: 567/448,
  57294. bottom: 10/577
  57295. }
  57296. },
  57297. dressed: {
  57298. height: math.unit(2.5, "inches"),
  57299. weight: math.unit(0.6, "oz"),
  57300. name: "Dressed",
  57301. image: {
  57302. source: "./media/characters/bryn/dressed.svg",
  57303. extra: 719/589,
  57304. bottom: 54/773
  57305. }
  57306. },
  57307. head: {
  57308. height: math.unit(1.75, "inches"),
  57309. name: "Head",
  57310. image: {
  57311. source: "./media/characters/bryn/head.svg"
  57312. }
  57313. },
  57314. foot: {
  57315. height: math.unit(0.4, "inches"),
  57316. name: "Foot",
  57317. image: {
  57318. source: "./media/characters/bryn/foot.svg"
  57319. }
  57320. },
  57321. },
  57322. [
  57323. {
  57324. name: "Normal",
  57325. height: math.unit(2.5, "inches"),
  57326. default: true
  57327. },
  57328. ]
  57329. ))
  57330. characterMakers.push(() => makeCharacter(
  57331. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57332. {
  57333. side: {
  57334. height: math.unit(7, "feet"),
  57335. weight: math.unit(657, "kg"),
  57336. name: "Side",
  57337. image: {
  57338. source: "./media/characters/delta/side.svg",
  57339. extra: 781/212,
  57340. bottom: 7/788
  57341. },
  57342. extraAttributes: {
  57343. "wingspan": {
  57344. name: "Wingspan",
  57345. power: 1,
  57346. type: "length",
  57347. base: math.unit(48, "feet")
  57348. },
  57349. "length": {
  57350. name: "Length",
  57351. power: 1,
  57352. type: "length",
  57353. base: math.unit(21, "feet")
  57354. },
  57355. "pawSize": {
  57356. name: "Paw Size",
  57357. power: 2,
  57358. type: "area",
  57359. base: math.unit(1.5*1.4, "feet^2")
  57360. },
  57361. }
  57362. },
  57363. },
  57364. [
  57365. {
  57366. name: "Normal",
  57367. height: math.unit(6, "feet"),
  57368. default: true
  57369. },
  57370. ]
  57371. ))
  57372. characterMakers.push(() => makeCharacter(
  57373. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57374. {
  57375. front: {
  57376. height: math.unit(6, "feet"),
  57377. name: "Front",
  57378. image: {
  57379. source: "./media/characters/pyrow/front.svg",
  57380. extra: 513/486,
  57381. bottom: 14/527
  57382. }
  57383. },
  57384. frontWing: {
  57385. height: math.unit(6, "feet"),
  57386. name: "Front (Wing)",
  57387. image: {
  57388. source: "./media/characters/pyrow/front-wing.svg",
  57389. extra: 539/383,
  57390. bottom: 20/559
  57391. }
  57392. },
  57393. back: {
  57394. height: math.unit(6, "feet"),
  57395. name: "Back",
  57396. image: {
  57397. source: "./media/characters/pyrow/back.svg",
  57398. extra: 500/473,
  57399. bottom: 9/509
  57400. }
  57401. },
  57402. },
  57403. [
  57404. {
  57405. name: "Normal",
  57406. height: math.unit(6, "feet"),
  57407. default: true
  57408. },
  57409. ]
  57410. ))
  57411. characterMakers.push(() => makeCharacter(
  57412. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57413. {
  57414. front: {
  57415. height: math.unit(5, "meters"),
  57416. weight: math.unit(3, "tonnes"),
  57417. name: "Front",
  57418. image: {
  57419. source: "./media/characters/velikan/front.svg",
  57420. extra: 867/744,
  57421. bottom: 71/938
  57422. },
  57423. extraAttributes: {
  57424. "shoeSize": {
  57425. name: "Shoe Size",
  57426. power: 1,
  57427. type: "length",
  57428. base: math.unit(135, "ShoeSizeUK"),
  57429. defaultUnit: "ShoeSizeUK"
  57430. },
  57431. }
  57432. },
  57433. },
  57434. [
  57435. {
  57436. name: "Normal",
  57437. height: math.unit(5, "meters"),
  57438. default: true
  57439. },
  57440. {
  57441. name: "Macro",
  57442. height: math.unit(1, "km")
  57443. },
  57444. {
  57445. name: "Mega Macro",
  57446. height: math.unit(100, "km")
  57447. },
  57448. {
  57449. name: "Giga Macro",
  57450. height: math.unit(2, "megameters")
  57451. },
  57452. {
  57453. name: "Planetary",
  57454. height: math.unit(22, "megameters")
  57455. },
  57456. {
  57457. name: "Solar",
  57458. height: math.unit(8, "gigameters")
  57459. },
  57460. {
  57461. name: "Cosmic",
  57462. height: math.unit(10, "zettameters")
  57463. },
  57464. {
  57465. name: "Omni",
  57466. height: math.unit(9e260, "multiverses")
  57467. },
  57468. ]
  57469. ))
  57470. characterMakers.push(() => makeCharacter(
  57471. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57472. {
  57473. front: {
  57474. height: math.unit(4 + 3/12, "feet"),
  57475. weight: math.unit(90, "lb"),
  57476. name: "Front",
  57477. image: {
  57478. source: "./media/characters/sabiki/front.svg",
  57479. extra: 1662/1423,
  57480. bottom: 65/1727
  57481. }
  57482. },
  57483. },
  57484. [
  57485. {
  57486. name: "Normal",
  57487. height: math.unit(4 + 3/12, "feet"),
  57488. default: true
  57489. },
  57490. ]
  57491. ))
  57492. characterMakers.push(() => makeCharacter(
  57493. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57494. {
  57495. frontSfw: {
  57496. height: math.unit(2, "mm"),
  57497. name: "Front (SFW)",
  57498. image: {
  57499. source: "./media/characters/carmel/front-sfw.svg",
  57500. extra: 1131/1006,
  57501. bottom: 66/1197
  57502. }
  57503. },
  57504. frontNsfw: {
  57505. height: math.unit(2, "mm"),
  57506. name: "Front (NSFW)",
  57507. image: {
  57508. source: "./media/characters/carmel/front-nsfw.svg",
  57509. extra: 1131/1006,
  57510. bottom: 66/1197
  57511. }
  57512. },
  57513. foot: {
  57514. height: math.unit(0.3, "mm"),
  57515. name: "Foot",
  57516. image: {
  57517. source: "./media/characters/carmel/foot.svg"
  57518. }
  57519. },
  57520. tongue: {
  57521. height: math.unit(0.71, "mm"),
  57522. name: "Tongue",
  57523. image: {
  57524. source: "./media/characters/carmel/tongue.svg"
  57525. }
  57526. },
  57527. dick: {
  57528. height: math.unit(0.085, "mm"),
  57529. name: "Dick",
  57530. image: {
  57531. source: "./media/characters/carmel/dick.svg"
  57532. }
  57533. },
  57534. },
  57535. [
  57536. {
  57537. name: "Micro",
  57538. height: math.unit(2, "mm"),
  57539. default: true
  57540. },
  57541. {
  57542. name: "Normal",
  57543. height: math.unit(4 + 8/12, "feet")
  57544. },
  57545. {
  57546. name: "Mega Macro",
  57547. height: math.unit(250, "feet")
  57548. },
  57549. {
  57550. name: "BIGGER",
  57551. height: math.unit(1000, "feet")
  57552. },
  57553. {
  57554. name: "BIGGEST",
  57555. height: math.unit(2, "miles")
  57556. },
  57557. ]
  57558. ))
  57559. characterMakers.push(() => makeCharacter(
  57560. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57561. {
  57562. front: {
  57563. height: math.unit(6.5, "feet"),
  57564. weight: math.unit(198, "lb"),
  57565. name: "Front",
  57566. image: {
  57567. source: "./media/characters/tamani/anthro.svg",
  57568. extra: 930/890,
  57569. bottom: 34/964
  57570. },
  57571. form: "anthro",
  57572. default: true
  57573. },
  57574. side: {
  57575. height: math.unit(6, "feet"),
  57576. weight: math.unit(198*2, "lb"),
  57577. name: "Side",
  57578. image: {
  57579. source: "./media/characters/tamani/feral.svg",
  57580. extra: 559/519,
  57581. bottom: 43/602
  57582. },
  57583. form: "feral"
  57584. },
  57585. },
  57586. [
  57587. {
  57588. name: "Normal",
  57589. height: math.unit(6.5, "feet"),
  57590. default: true,
  57591. form: "anthro"
  57592. },
  57593. {
  57594. name: "Normal",
  57595. height: math.unit(6, "feet"),
  57596. default: true,
  57597. form: "feral"
  57598. },
  57599. ],
  57600. {
  57601. "anthro": {
  57602. name: "Anthro",
  57603. default: true
  57604. },
  57605. "feral": {
  57606. name: "Feral",
  57607. },
  57608. }
  57609. ))
  57610. characterMakers.push(() => makeCharacter(
  57611. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57612. {
  57613. front: {
  57614. height: math.unit(4 + 1/12, "feet"),
  57615. weight: math.unit(114, "lb"),
  57616. name: "Front",
  57617. image: {
  57618. source: "./media/characters/dex/front.svg",
  57619. extra: 787/680,
  57620. bottom: 18/805
  57621. }
  57622. },
  57623. side: {
  57624. height: math.unit(4 + 1/12, "feet"),
  57625. weight: math.unit(114, "lb"),
  57626. name: "Side",
  57627. image: {
  57628. source: "./media/characters/dex/side.svg",
  57629. extra: 785/680,
  57630. bottom: 12/797
  57631. }
  57632. },
  57633. back: {
  57634. height: math.unit(4 + 1/12, "feet"),
  57635. weight: math.unit(114, "lb"),
  57636. name: "Back",
  57637. image: {
  57638. source: "./media/characters/dex/back.svg",
  57639. extra: 785/681,
  57640. bottom: 17/802
  57641. }
  57642. },
  57643. loungewear: {
  57644. height: math.unit(4 + 1/12, "feet"),
  57645. weight: math.unit(114, "lb"),
  57646. name: "Loungewear",
  57647. image: {
  57648. source: "./media/characters/dex/loungewear.svg",
  57649. extra: 787/680,
  57650. bottom: 18/805
  57651. }
  57652. },
  57653. workout: {
  57654. height: math.unit(4 + 1/12, "feet"),
  57655. weight: math.unit(114, "lb"),
  57656. name: "Workout",
  57657. image: {
  57658. source: "./media/characters/dex/workout.svg",
  57659. extra: 787/680,
  57660. bottom: 18/805
  57661. }
  57662. },
  57663. schoolUniform: {
  57664. height: math.unit(4 + 1/12, "feet"),
  57665. weight: math.unit(114, "lb"),
  57666. name: "School Uniform",
  57667. image: {
  57668. source: "./media/characters/dex/school-uniform.svg",
  57669. extra: 787/680,
  57670. bottom: 18/805
  57671. }
  57672. },
  57673. maw: {
  57674. height: math.unit(0.55, "feet"),
  57675. name: "Maw",
  57676. image: {
  57677. source: "./media/characters/dex/maw.svg"
  57678. }
  57679. },
  57680. paw: {
  57681. height: math.unit(0.87, "feet"),
  57682. name: "Paw",
  57683. image: {
  57684. source: "./media/characters/dex/paw.svg"
  57685. }
  57686. },
  57687. bust: {
  57688. height: math.unit(1.67, "feet"),
  57689. name: "Bust",
  57690. image: {
  57691. source: "./media/characters/dex/bust.svg"
  57692. }
  57693. },
  57694. },
  57695. [
  57696. {
  57697. name: "Normal",
  57698. height: math.unit(4 + 1/12, "feet"),
  57699. default: true
  57700. },
  57701. ]
  57702. ))
  57703. characterMakers.push(() => makeCharacter(
  57704. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57705. {
  57706. front: {
  57707. height: math.unit(4 + 3/12, "feet"),
  57708. weight: math.unit(60, "lb"),
  57709. name: "Front",
  57710. image: {
  57711. source: "./media/characters/silke/front.svg",
  57712. extra: 1334/1122,
  57713. bottom: 21/1355
  57714. }
  57715. },
  57716. back: {
  57717. height: math.unit(4 + 3/12, "feet"),
  57718. weight: math.unit(60, "lb"),
  57719. name: "Back",
  57720. image: {
  57721. source: "./media/characters/silke/back.svg",
  57722. extra: 1328/1092,
  57723. bottom: 16/1344
  57724. }
  57725. },
  57726. dressed: {
  57727. height: math.unit(4 + 3/12, "feet"),
  57728. weight: math.unit(60, "lb"),
  57729. name: "Dressed",
  57730. image: {
  57731. source: "./media/characters/silke/dressed.svg",
  57732. extra: 1334/1122,
  57733. bottom: 43/1377
  57734. }
  57735. },
  57736. },
  57737. [
  57738. {
  57739. name: "Normal",
  57740. height: math.unit(4 + 3/12, "feet"),
  57741. default: true
  57742. },
  57743. ]
  57744. ))
  57745. characterMakers.push(() => makeCharacter(
  57746. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57747. {
  57748. front: {
  57749. height: math.unit(1.58, "meters"),
  57750. weight: math.unit(47, "kg"),
  57751. name: "Front",
  57752. image: {
  57753. source: "./media/characters/wireshark/front.svg",
  57754. extra: 883/838,
  57755. bottom: 66/949
  57756. }
  57757. },
  57758. },
  57759. [
  57760. {
  57761. name: "Normal",
  57762. height: math.unit(1.58, "meters"),
  57763. default: true
  57764. },
  57765. ]
  57766. ))
  57767. characterMakers.push(() => makeCharacter(
  57768. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57769. {
  57770. front: {
  57771. height: math.unit(6, "meters"),
  57772. weight: math.unit(15000, "kg"),
  57773. name: "Front",
  57774. image: {
  57775. source: "./media/characters/gallagher/front.svg",
  57776. extra: 532/493,
  57777. bottom: 0/532
  57778. }
  57779. },
  57780. },
  57781. [
  57782. {
  57783. name: "Normal",
  57784. height: math.unit(6, "meters"),
  57785. default: true
  57786. },
  57787. ]
  57788. ))
  57789. characterMakers.push(() => makeCharacter(
  57790. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57791. {
  57792. front: {
  57793. height: math.unit(2.4, "meters"),
  57794. weight: math.unit(270, "kg"),
  57795. name: "Front",
  57796. image: {
  57797. source: "./media/characters/alice/front.svg",
  57798. extra: 950/900,
  57799. bottom: 36/986
  57800. }
  57801. },
  57802. side: {
  57803. height: math.unit(2.4, "meters"),
  57804. weight: math.unit(270, "kg"),
  57805. name: "Side",
  57806. image: {
  57807. source: "./media/characters/alice/side.svg",
  57808. extra: 921/876,
  57809. bottom: 19/940
  57810. }
  57811. },
  57812. dressed: {
  57813. height: math.unit(2.4, "meters"),
  57814. weight: math.unit(270, "kg"),
  57815. name: "Dressed",
  57816. image: {
  57817. source: "./media/characters/alice/dressed.svg",
  57818. extra: 905/850,
  57819. bottom: 81/986
  57820. }
  57821. },
  57822. fishnet: {
  57823. height: math.unit(2.4, "meters"),
  57824. weight: math.unit(270, "kg"),
  57825. name: "Fishnet",
  57826. image: {
  57827. source: "./media/characters/alice/fishnet.svg",
  57828. extra: 905/850,
  57829. bottom: 81/986
  57830. }
  57831. },
  57832. },
  57833. [
  57834. {
  57835. name: "Normal",
  57836. height: math.unit(2.4, "meters"),
  57837. default: true
  57838. },
  57839. ]
  57840. ))
  57841. characterMakers.push(() => makeCharacter(
  57842. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57843. {
  57844. front: {
  57845. height: math.unit(175.25, "feet"),
  57846. name: "Front",
  57847. image: {
  57848. source: "./media/characters/fio/front.svg",
  57849. extra: 1883/1591,
  57850. bottom: 34/1917
  57851. }
  57852. },
  57853. },
  57854. [
  57855. {
  57856. name: "Normal",
  57857. height: math.unit(175.25, "cm"),
  57858. default: true
  57859. },
  57860. ]
  57861. ))
  57862. characterMakers.push(() => makeCharacter(
  57863. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57864. {
  57865. side: {
  57866. height: math.unit(6, "meters"),
  57867. weight: math.unit(3400, "kg"),
  57868. preyCapacity: math.unit(1700, "liters"),
  57869. name: "Side",
  57870. image: {
  57871. source: "./media/characters/hass/side.svg",
  57872. extra: 1058/997,
  57873. bottom: 177/1235
  57874. }
  57875. },
  57876. feeding: {
  57877. height: math.unit(6*0.63, "meters"),
  57878. weight: math.unit(3400, "kg"),
  57879. preyCapacity: math.unit(1700, "liters"),
  57880. name: "Feeding",
  57881. image: {
  57882. source: "./media/characters/hass/feeding.svg",
  57883. extra: 689/579,
  57884. bottom: 146/835
  57885. }
  57886. },
  57887. guts: {
  57888. height: math.unit(6, "meters"),
  57889. weight: math.unit(3400, "kg"),
  57890. name: "Guts",
  57891. image: {
  57892. source: "./media/characters/hass/guts.svg",
  57893. extra: 1223/1198,
  57894. bottom: 182/1405
  57895. }
  57896. },
  57897. dickFront: {
  57898. height: math.unit(1.4, "meters"),
  57899. name: "Dick (Front)",
  57900. image: {
  57901. source: "./media/characters/hass/dick-front.svg"
  57902. }
  57903. },
  57904. dickSide: {
  57905. height: math.unit(1.3, "meters"),
  57906. name: "Dick (Side)",
  57907. image: {
  57908. source: "./media/characters/hass/dick-side.svg"
  57909. }
  57910. },
  57911. dickBack: {
  57912. height: math.unit(1.4, "meters"),
  57913. name: "Dick (Back)",
  57914. image: {
  57915. source: "./media/characters/hass/dick-back.svg"
  57916. }
  57917. },
  57918. },
  57919. [
  57920. {
  57921. name: "Normal",
  57922. height: math.unit(6, "meters"),
  57923. default: true
  57924. },
  57925. ]
  57926. ))
  57927. characterMakers.push(() => makeCharacter(
  57928. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57929. {
  57930. front: {
  57931. height: math.unit(4, "feet"),
  57932. weight: math.unit(60, "lb"),
  57933. name: "Front",
  57934. image: {
  57935. source: "./media/characters/hickory-finnegan/front.svg",
  57936. extra: 444/411,
  57937. bottom: 10/454
  57938. }
  57939. },
  57940. side: {
  57941. height: math.unit(4, "feet"),
  57942. weight: math.unit(60, "lb"),
  57943. name: "Side",
  57944. image: {
  57945. source: "./media/characters/hickory-finnegan/side.svg",
  57946. extra: 444/411,
  57947. bottom: 10/454
  57948. }
  57949. },
  57950. back: {
  57951. height: math.unit(4, "feet"),
  57952. weight: math.unit(60, "lb"),
  57953. name: "Back",
  57954. image: {
  57955. source: "./media/characters/hickory-finnegan/back.svg",
  57956. extra: 444/411,
  57957. bottom: 10/454
  57958. }
  57959. },
  57960. },
  57961. [
  57962. {
  57963. name: "Normal",
  57964. height: math.unit(4, "feet"),
  57965. default: true
  57966. },
  57967. ]
  57968. ))
  57969. characterMakers.push(() => makeCharacter(
  57970. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57971. {
  57972. snivy_front: {
  57973. height: math.unit(2, "feet"),
  57974. weight: math.unit(17.9, "lb"),
  57975. name: "Front",
  57976. image: {
  57977. source: "./media/characters/robin-phox/snivy-front.svg",
  57978. extra: 569/504,
  57979. bottom: 33/602
  57980. },
  57981. form: "snivy",
  57982. default: true
  57983. },
  57984. snivy_frontNsfw: {
  57985. height: math.unit(2, "feet"),
  57986. weight: math.unit(17.9, "lb"),
  57987. name: "Front (NSFW)",
  57988. image: {
  57989. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57990. extra: 569/504,
  57991. bottom: 33/602
  57992. },
  57993. form: "snivy",
  57994. },
  57995. snivy_back: {
  57996. height: math.unit(2, "feet"),
  57997. weight: math.unit(17.9, "lb"),
  57998. name: "Back",
  57999. image: {
  58000. source: "./media/characters/robin-phox/snivy-back.svg",
  58001. extra: 577/508,
  58002. bottom: 21/598
  58003. },
  58004. form: "snivy",
  58005. },
  58006. snivy_foot: {
  58007. height: math.unit(0.68, "feet"),
  58008. name: "Foot",
  58009. image: {
  58010. source: "./media/characters/robin-phox/snivy-foot.svg"
  58011. },
  58012. form: "snivy",
  58013. },
  58014. snivy_sole: {
  58015. height: math.unit(0.68, "feet"),
  58016. name: "Sole",
  58017. image: {
  58018. source: "./media/characters/robin-phox/snivy-sole.svg"
  58019. },
  58020. form: "snivy",
  58021. },
  58022. yoshi_front: {
  58023. height: math.unit(6, "feet"),
  58024. weight: math.unit(150, "lb"),
  58025. name: "Front",
  58026. image: {
  58027. source: "./media/characters/robin-phox/yoshi-front.svg",
  58028. extra: 890/792,
  58029. bottom: 29/919
  58030. },
  58031. form: "yoshi",
  58032. default: true
  58033. },
  58034. yoshi_frontNsfw: {
  58035. height: math.unit(6, "feet"),
  58036. weight: math.unit(150, "lb"),
  58037. name: "Front (NSFW)",
  58038. image: {
  58039. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58040. extra: 890/792,
  58041. bottom: 29/919
  58042. },
  58043. form: "yoshi",
  58044. },
  58045. yoshi_back: {
  58046. height: math.unit(6, "feet"),
  58047. weight: math.unit(150, "lb"),
  58048. name: "Back",
  58049. image: {
  58050. source: "./media/characters/robin-phox/yoshi-back.svg",
  58051. extra: 890/792,
  58052. bottom: 29/919
  58053. },
  58054. form: "yoshi",
  58055. },
  58056. yoshi_foot: {
  58057. height: math.unit(1.5, "feet"),
  58058. name: "Foot",
  58059. image: {
  58060. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58061. },
  58062. form: "yoshi",
  58063. },
  58064. delphox_front: {
  58065. height: math.unit(4 + 11/12, "feet"),
  58066. weight: math.unit(86, "lb"),
  58067. name: "Front",
  58068. image: {
  58069. source: "./media/characters/robin-phox/delphox-front.svg",
  58070. extra: 1266/1069,
  58071. bottom: 32/1298
  58072. },
  58073. form: "delphox",
  58074. default: true
  58075. },
  58076. delphox_frontNsfw: {
  58077. height: math.unit(4 + 11/12, "feet"),
  58078. weight: math.unit(86, "lb"),
  58079. name: "Front (NSFW)",
  58080. image: {
  58081. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58082. extra: 1266/1069,
  58083. bottom: 32/1298
  58084. },
  58085. form: "delphox",
  58086. },
  58087. delphox_back: {
  58088. height: math.unit(4 + 11/12, "feet"),
  58089. weight: math.unit(86, "lb"),
  58090. name: "Back",
  58091. image: {
  58092. source: "./media/characters/robin-phox/delphox-back.svg",
  58093. extra: 1269/1083,
  58094. bottom: 15/1284
  58095. },
  58096. form: "delphox",
  58097. },
  58098. mienshao_front: {
  58099. height: math.unit(4 + 7/12, "feet"),
  58100. weight: math.unit(78.3, "lb"),
  58101. name: "Front",
  58102. image: {
  58103. source: "./media/characters/robin-phox/mienshao-front.svg",
  58104. extra: 1052/970,
  58105. bottom: 108/1160
  58106. },
  58107. form: "mienshao",
  58108. default: true
  58109. },
  58110. mienshao_frontNsfw: {
  58111. height: math.unit(4 + 7/12, "feet"),
  58112. weight: math.unit(78.3, "lb"),
  58113. name: "Front (NSFW)",
  58114. image: {
  58115. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58116. extra: 1052/970,
  58117. bottom: 108/1160
  58118. },
  58119. form: "mienshao",
  58120. },
  58121. mienshao_back: {
  58122. height: math.unit(4 + 7/12, "feet"),
  58123. weight: math.unit(78.3, "lb"),
  58124. name: "Back",
  58125. image: {
  58126. source: "./media/characters/robin-phox/mienshao-back.svg",
  58127. extra: 1102/982,
  58128. bottom: 32/1134
  58129. },
  58130. form: "mienshao",
  58131. },
  58132. inteleon_front: {
  58133. height: math.unit(6 + 3/12, "feet"),
  58134. weight: math.unit(99.6, "lb"),
  58135. name: "Front",
  58136. image: {
  58137. source: "./media/characters/robin-phox/inteleon-front.svg",
  58138. extra: 910/799,
  58139. bottom: 76/986
  58140. },
  58141. form: "inteleon",
  58142. default: true
  58143. },
  58144. inteleon_frontNsfw: {
  58145. height: math.unit(6 + 3/12, "feet"),
  58146. weight: math.unit(99.6, "lb"),
  58147. name: "Front (NSFW)",
  58148. image: {
  58149. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58150. extra: 910/799,
  58151. bottom: 76/986
  58152. },
  58153. form: "inteleon",
  58154. },
  58155. inteleon_back: {
  58156. height: math.unit(6 + 3/12, "feet"),
  58157. weight: math.unit(99.6, "lb"),
  58158. name: "Back",
  58159. image: {
  58160. source: "./media/characters/robin-phox/inteleon-back.svg",
  58161. extra: 907/796,
  58162. bottom: 25/932
  58163. },
  58164. form: "inteleon",
  58165. },
  58166. reshiram_front: {
  58167. height: math.unit(10 + 6/12, "feet"),
  58168. weight: math.unit(727.5, "lb"),
  58169. name: "Front",
  58170. image: {
  58171. source: "./media/characters/robin-phox/reshiram-front.svg",
  58172. extra: 1198/940,
  58173. bottom: 123/1321
  58174. },
  58175. form: "reshiram",
  58176. },
  58177. reshiram_frontNsfw: {
  58178. height: math.unit(10 + 6/12, "feet"),
  58179. weight: math.unit(727.5, "lb"),
  58180. name: "Front (NSFW)",
  58181. image: {
  58182. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58183. extra: 1198/940,
  58184. bottom: 123/1321
  58185. },
  58186. form: "reshiram",
  58187. },
  58188. reshiram_back: {
  58189. height: math.unit(10 + 6/12, "feet"),
  58190. weight: math.unit(727.5, "lb"),
  58191. name: "Back",
  58192. image: {
  58193. source: "./media/characters/robin-phox/reshiram-back.svg",
  58194. extra: 1024/904,
  58195. bottom: 85/1109
  58196. },
  58197. form: "reshiram",
  58198. },
  58199. samurott_front: {
  58200. height: math.unit(8, "feet"),
  58201. weight: math.unit(208.6, "lb"),
  58202. name: "Front",
  58203. image: {
  58204. source: "./media/characters/robin-phox/samurott-front.svg",
  58205. extra: 1048/984,
  58206. bottom: 100/1148
  58207. },
  58208. form: "samurott",
  58209. },
  58210. samurott_frontNsfw: {
  58211. height: math.unit(8, "feet"),
  58212. weight: math.unit(208.6, "lb"),
  58213. name: "Front NSFW",
  58214. image: {
  58215. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58216. extra: 1048/984,
  58217. bottom: 100/1148
  58218. },
  58219. form: "samurott",
  58220. },
  58221. samurott_back: {
  58222. height: math.unit(8, "feet"),
  58223. weight: math.unit(208.6, "lb"),
  58224. name: "Back",
  58225. image: {
  58226. source: "./media/characters/robin-phox/samurott-back.svg",
  58227. extra: 1110/1042,
  58228. bottom: 12/1122
  58229. },
  58230. form: "samurott",
  58231. },
  58232. samurott_feral: {
  58233. height: math.unit(4 + 11/12, "feet"),
  58234. weight: math.unit(208.6, "lb"),
  58235. name: "Feral",
  58236. image: {
  58237. source: "./media/characters/robin-phox/samurott-feral.svg",
  58238. extra: 766/681,
  58239. bottom: 108/874
  58240. },
  58241. form: "samurott",
  58242. },
  58243. },
  58244. [
  58245. {
  58246. name: "Normal",
  58247. height: math.unit(2, "feet"),
  58248. default: true,
  58249. form: "snivy"
  58250. },
  58251. {
  58252. name: "Normal",
  58253. height: math.unit(6, "feet"),
  58254. default: true,
  58255. form: "yoshi"
  58256. },
  58257. {
  58258. name: "Normal",
  58259. height: math.unit(4 + 11/12, "feet"),
  58260. default: true,
  58261. form: "delphox"
  58262. },
  58263. {
  58264. name: "Normal",
  58265. height: math.unit(4 + 7/12, "feet"),
  58266. default: true,
  58267. form: "mienshao"
  58268. },
  58269. {
  58270. name: "Normal",
  58271. height: math.unit(6 + 3/12, "feet"),
  58272. default: true,
  58273. form: "inteleon"
  58274. },
  58275. {
  58276. name: "Normal",
  58277. height: math.unit(10 + 6/12, "feet"),
  58278. default: true,
  58279. form: "reshiram"
  58280. },
  58281. {
  58282. name: "Normal",
  58283. height: math.unit(8, "feet"),
  58284. default: true,
  58285. form: "samurott"
  58286. },
  58287. {
  58288. name: "Macro",
  58289. height: math.unit(500, "feet"),
  58290. allForms: true
  58291. },
  58292. {
  58293. name: "Mega Macro",
  58294. height: math.unit(10, "earths"),
  58295. allForms: true
  58296. },
  58297. {
  58298. name: "Giga Macro",
  58299. height: math.unit(1, "galaxy"),
  58300. allForms: true
  58301. },
  58302. {
  58303. name: "Godly Macro",
  58304. height: math.unit(1e10, "multiverses"),
  58305. allForms: true
  58306. },
  58307. ],
  58308. {
  58309. "snivy": {
  58310. name: "Snivy",
  58311. default: true
  58312. },
  58313. "yoshi": {
  58314. name: "Yoshi",
  58315. },
  58316. "delphox": {
  58317. name: "Delphox",
  58318. },
  58319. "mienshao": {
  58320. name: "Mienshao",
  58321. },
  58322. "inteleon": {
  58323. name: "Inteleon",
  58324. },
  58325. "reshiram": {
  58326. name: "Reshiram",
  58327. },
  58328. "samurott": {
  58329. name: "Samurott",
  58330. },
  58331. }
  58332. ))
  58333. characterMakers.push(() => makeCharacter(
  58334. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58335. {
  58336. front: {
  58337. height: math.unit(4, "feet"),
  58338. name: "Front",
  58339. image: {
  58340. source: "./media/characters/ash-leung/front.svg",
  58341. extra: 1916/1792,
  58342. bottom: 50/1966
  58343. }
  58344. },
  58345. },
  58346. [
  58347. {
  58348. name: "Atomic",
  58349. height: math.unit(1, "angstrom")
  58350. },
  58351. {
  58352. name: "Microscopic",
  58353. height: math.unit(4000, "angstroms")
  58354. },
  58355. {
  58356. name: "Speck",
  58357. height: math.unit(1, "mm")
  58358. },
  58359. {
  58360. name: "Small",
  58361. height: math.unit(1, "inch")
  58362. },
  58363. {
  58364. name: "Normal",
  58365. height: math.unit(4, "feet"),
  58366. default: true
  58367. },
  58368. ]
  58369. ))
  58370. characterMakers.push(() => makeCharacter(
  58371. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58372. {
  58373. frontDressed: {
  58374. height: math.unit(2.08, "meters"),
  58375. weight: math.unit(175, "lb"),
  58376. name: "Front (Dressed)",
  58377. image: {
  58378. source: "./media/characters/carie/front-dressed.svg",
  58379. extra: 456/417,
  58380. bottom: 7/463
  58381. }
  58382. },
  58383. backDressed: {
  58384. height: math.unit(2.08, "meters"),
  58385. weight: math.unit(175, "lb"),
  58386. name: "Back (Dressed)",
  58387. image: {
  58388. source: "./media/characters/carie/back-dressed.svg",
  58389. extra: 455/414,
  58390. bottom: 11/466
  58391. }
  58392. },
  58393. front: {
  58394. height: math.unit(2, "meters"),
  58395. weight: math.unit(175, "lb"),
  58396. name: "Front",
  58397. image: {
  58398. source: "./media/characters/carie/front.svg",
  58399. extra: 438/399,
  58400. bottom: 12/450
  58401. }
  58402. },
  58403. back: {
  58404. height: math.unit(2, "meters"),
  58405. weight: math.unit(175, "lb"),
  58406. name: "Back",
  58407. image: {
  58408. source: "./media/characters/carie/back.svg",
  58409. extra: 438/397,
  58410. bottom: 7/445
  58411. }
  58412. },
  58413. },
  58414. [
  58415. {
  58416. name: "Normal",
  58417. height: math.unit(2.08, "meters"),
  58418. default: true
  58419. },
  58420. {
  58421. name: "Macro",
  58422. height: math.unit(2.08e3, "meters")
  58423. },
  58424. {
  58425. name: "Mega Macro",
  58426. height: math.unit(2.08e6, "meters")
  58427. },
  58428. {
  58429. name: "Giga Macro",
  58430. height: math.unit(2.08e9, "meters")
  58431. },
  58432. {
  58433. name: "Tera Macro",
  58434. height: math.unit(2.08e12, "meters")
  58435. },
  58436. {
  58437. name: "Peta Macro",
  58438. height: math.unit(2.08e15, "meters")
  58439. },
  58440. {
  58441. name: "Exa Macro",
  58442. height: math.unit(2.08e18, "meters")
  58443. },
  58444. {
  58445. name: "Zetta Macro",
  58446. height: math.unit(2.08e21, "meters")
  58447. },
  58448. {
  58449. name: "Yotta Macro",
  58450. height: math.unit(2.08e24, "meters")
  58451. },
  58452. ]
  58453. ))
  58454. characterMakers.push(() => makeCharacter(
  58455. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58456. {
  58457. front: {
  58458. height: math.unit(5 + 2/12, "feet"),
  58459. weight: math.unit(120, "lb"),
  58460. name: "Front",
  58461. image: {
  58462. source: "./media/characters/sai-bree/front.svg",
  58463. extra: 1843/1702,
  58464. bottom: 91/1934
  58465. }
  58466. },
  58467. back: {
  58468. height: math.unit(5 + 2/12, "feet"),
  58469. weight: math.unit(120, "lb"),
  58470. name: "Back",
  58471. image: {
  58472. source: "./media/characters/sai-bree/back.svg",
  58473. extra: 1809/1637,
  58474. bottom: 56/1865
  58475. }
  58476. },
  58477. },
  58478. [
  58479. {
  58480. name: "Normal",
  58481. height: math.unit(5 + 2/12, "feet"),
  58482. default: true
  58483. },
  58484. {
  58485. name: "Macro",
  58486. height: math.unit(500, "feet")
  58487. },
  58488. ]
  58489. ))
  58490. characterMakers.push(() => makeCharacter(
  58491. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58492. {
  58493. side: {
  58494. height: math.unit(0.77, "meters"),
  58495. weight: math.unit(120, "lb"),
  58496. name: "Side",
  58497. image: {
  58498. source: "./media/characters/davwyn/side.svg",
  58499. extra: 1557/1225,
  58500. bottom: 131/1688
  58501. }
  58502. },
  58503. front: {
  58504. height: math.unit(0.835410, "meters"),
  58505. weight: math.unit(120, "lb"),
  58506. name: "Front",
  58507. image: {
  58508. source: "./media/characters/davwyn/front.svg",
  58509. extra: 870/843,
  58510. bottom: 175/1045
  58511. }
  58512. },
  58513. },
  58514. [
  58515. {
  58516. name: "Minidrake",
  58517. height: math.unit(0.77/4, "meters")
  58518. },
  58519. {
  58520. name: "Normal",
  58521. height: math.unit(0.77, "meters"),
  58522. default: true
  58523. },
  58524. ]
  58525. ))
  58526. characterMakers.push(() => makeCharacter(
  58527. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58528. {
  58529. front: {
  58530. height: math.unit(10 + 3/12, "feet"),
  58531. weight: math.unit(2857, "lb"),
  58532. name: "Front",
  58533. image: {
  58534. source: "./media/characters/balans/front.svg",
  58535. extra: 427/402,
  58536. bottom: 26/453
  58537. }
  58538. },
  58539. side: {
  58540. height: math.unit(10 + 3/12, "feet"),
  58541. weight: math.unit(2857, "lb"),
  58542. name: "Side",
  58543. image: {
  58544. source: "./media/characters/balans/side.svg",
  58545. extra: 397/371,
  58546. bottom: 17/414
  58547. }
  58548. },
  58549. back: {
  58550. height: math.unit(10 + 3/12, "feet"),
  58551. weight: math.unit(2857, "lb"),
  58552. name: "Back",
  58553. image: {
  58554. source: "./media/characters/balans/back.svg",
  58555. extra: 408/381,
  58556. bottom: 14/422
  58557. }
  58558. },
  58559. hand: {
  58560. height: math.unit(1.15, "feet"),
  58561. name: "Hand",
  58562. image: {
  58563. source: "./media/characters/balans/hand.svg"
  58564. }
  58565. },
  58566. footRest: {
  58567. height: math.unit(3.1, "feet"),
  58568. name: "Foot (Rest)",
  58569. image: {
  58570. source: "./media/characters/balans/foot-rest.svg"
  58571. }
  58572. },
  58573. footActive: {
  58574. height: math.unit(3.5, "feet"),
  58575. name: "Foot (Active)",
  58576. image: {
  58577. source: "./media/characters/balans/foot-active.svg"
  58578. }
  58579. },
  58580. },
  58581. [
  58582. {
  58583. name: "Normal",
  58584. height: math.unit(10 + 3/12, "feet"),
  58585. default: true
  58586. },
  58587. ]
  58588. ))
  58589. characterMakers.push(() => makeCharacter(
  58590. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58591. {
  58592. side: {
  58593. height: math.unit(9, "meters"),
  58594. weight: math.unit(114, "tonnes"),
  58595. name: "Side",
  58596. image: {
  58597. source: "./media/characters/eldkveikir/side.svg",
  58598. extra: 1927/338,
  58599. bottom: 42/1969
  58600. }
  58601. },
  58602. sitting: {
  58603. height: math.unit(13.4, "meters"),
  58604. weight: math.unit(114, "tonnes"),
  58605. name: "Sitting",
  58606. image: {
  58607. source: "./media/characters/eldkveikir/sitting.svg",
  58608. extra: 1108/963,
  58609. bottom: 610/1718
  58610. }
  58611. },
  58612. maw: {
  58613. height: math.unit(8.36, "meters"),
  58614. name: "Maw",
  58615. image: {
  58616. source: "./media/characters/eldkveikir/maw.svg"
  58617. }
  58618. },
  58619. hand: {
  58620. height: math.unit(4.84, "meters"),
  58621. name: "Hand",
  58622. image: {
  58623. source: "./media/characters/eldkveikir/hand.svg"
  58624. }
  58625. },
  58626. foot: {
  58627. height: math.unit(6.9, "meters"),
  58628. name: "Foot",
  58629. image: {
  58630. source: "./media/characters/eldkveikir/foot.svg"
  58631. }
  58632. },
  58633. genitals: {
  58634. height: math.unit(9.6, "meters"),
  58635. name: "Genitals",
  58636. image: {
  58637. source: "./media/characters/eldkveikir/genitals.svg"
  58638. }
  58639. },
  58640. },
  58641. [
  58642. {
  58643. name: "Normal",
  58644. height: math.unit(9, "meters"),
  58645. default: true
  58646. },
  58647. ]
  58648. ))
  58649. characterMakers.push(() => makeCharacter(
  58650. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58651. {
  58652. front: {
  58653. height: math.unit(14, "feet"),
  58654. weight: math.unit(4100, "lb"),
  58655. name: "Front",
  58656. image: {
  58657. source: "./media/characters/arrow/front.svg",
  58658. extra: 330/318,
  58659. bottom: 56/386
  58660. }
  58661. },
  58662. },
  58663. [
  58664. {
  58665. name: "Normal",
  58666. height: math.unit(14, "feet"),
  58667. default: true
  58668. },
  58669. {
  58670. name: "Minimacro",
  58671. height: math.unit(63, "feet")
  58672. },
  58673. {
  58674. name: "Macro",
  58675. height: math.unit(630, "feet")
  58676. },
  58677. {
  58678. name: "Megamacro",
  58679. height: math.unit(12600, "feet")
  58680. },
  58681. {
  58682. name: "Gigamacro",
  58683. height: math.unit(18000, "miles")
  58684. },
  58685. ]
  58686. ))
  58687. characterMakers.push(() => makeCharacter(
  58688. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58689. {
  58690. front: {
  58691. height: math.unit(10, "feet"),
  58692. weight: math.unit(2.4, "tons"),
  58693. name: "Front",
  58694. image: {
  58695. source: "./media/characters/3yk-k0-unit/front.svg",
  58696. extra: 573/561,
  58697. bottom: 33/606
  58698. }
  58699. },
  58700. back: {
  58701. height: math.unit(10, "feet"),
  58702. weight: math.unit(2.4, "tons"),
  58703. name: "Back",
  58704. image: {
  58705. source: "./media/characters/3yk-k0-unit/back.svg",
  58706. extra: 614/573,
  58707. bottom: 32/646
  58708. }
  58709. },
  58710. maw: {
  58711. height: math.unit(2.15, "feet"),
  58712. name: "Maw",
  58713. image: {
  58714. source: "./media/characters/3yk-k0-unit/maw.svg"
  58715. }
  58716. },
  58717. },
  58718. [
  58719. {
  58720. name: "Normal",
  58721. height: math.unit(10, "feet"),
  58722. default: true
  58723. },
  58724. ]
  58725. ))
  58726. characterMakers.push(() => makeCharacter(
  58727. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58728. {
  58729. front: {
  58730. height: math.unit(8 + 8/12, "feet"),
  58731. name: "Front",
  58732. image: {
  58733. source: "./media/characters/nemo/front.svg",
  58734. extra: 1308/1217,
  58735. bottom: 57/1365
  58736. }
  58737. },
  58738. },
  58739. [
  58740. {
  58741. name: "Normal",
  58742. height: math.unit(8 + 8/12, "feet"),
  58743. default: true
  58744. },
  58745. ]
  58746. ))
  58747. characterMakers.push(() => makeCharacter(
  58748. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58749. {
  58750. front: {
  58751. height: math.unit(8, "feet"),
  58752. weight: math.unit(760, "lb"),
  58753. name: "Front",
  58754. image: {
  58755. source: "./media/characters/rexx/front.svg",
  58756. extra: 786/750,
  58757. bottom: 17/803
  58758. },
  58759. extraAttributes: {
  58760. "pawLength": {
  58761. name: "Paw Length",
  58762. power: 1,
  58763. type: "length",
  58764. base: math.unit(27, "inches")
  58765. },
  58766. }
  58767. },
  58768. },
  58769. [
  58770. {
  58771. name: "Micro",
  58772. height: math.unit(2, "inches")
  58773. },
  58774. {
  58775. name: "Normal",
  58776. height: math.unit(8, "feet"),
  58777. default: true
  58778. },
  58779. {
  58780. name: "Macro",
  58781. height: math.unit(150, "feet")
  58782. },
  58783. ]
  58784. ))
  58785. characterMakers.push(() => makeCharacter(
  58786. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58787. {
  58788. front: {
  58789. height: math.unit(18, "feet"),
  58790. weight: math.unit(1975, "lb"),
  58791. name: "Front",
  58792. image: {
  58793. source: "./media/characters/draco/front.svg",
  58794. extra: 1325/1241,
  58795. bottom: 83/1408
  58796. }
  58797. },
  58798. back: {
  58799. height: math.unit(18, "feet"),
  58800. weight: math.unit(1975, "lb"),
  58801. name: "Back",
  58802. image: {
  58803. source: "./media/characters/draco/back.svg",
  58804. extra: 1332/1250,
  58805. bottom: 43/1375
  58806. }
  58807. },
  58808. dick: {
  58809. height: math.unit(7.5, "feet"),
  58810. name: "Dick",
  58811. image: {
  58812. source: "./media/characters/draco/dick.svg"
  58813. }
  58814. },
  58815. },
  58816. [
  58817. {
  58818. name: "Normal",
  58819. height: math.unit(18, "feet"),
  58820. default: true
  58821. },
  58822. ]
  58823. ))
  58824. characterMakers.push(() => makeCharacter(
  58825. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58826. {
  58827. front: {
  58828. height: math.unit(3.2, "meters"),
  58829. name: "Front",
  58830. image: {
  58831. source: "./media/characters/harriett/front.svg",
  58832. extra: 1966/1915,
  58833. bottom: 9/1975
  58834. }
  58835. },
  58836. },
  58837. [
  58838. {
  58839. name: "Normal",
  58840. height: math.unit(3.2, "meters"),
  58841. default: true
  58842. },
  58843. ]
  58844. ))
  58845. characterMakers.push(() => makeCharacter(
  58846. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58847. {
  58848. standing: {
  58849. height: math.unit(180, "cm"),
  58850. weight: math.unit(185, "lb"),
  58851. name: "Standing",
  58852. image: {
  58853. source: "./media/characters/serpentus/standing.svg",
  58854. extra: 882/878,
  58855. bottom: 16/898
  58856. }
  58857. },
  58858. sitting: {
  58859. height: math.unit(0.8, "meter"),
  58860. weight: math.unit(155, "lb"),
  58861. name: "Sitting",
  58862. image: {
  58863. source: "./media/characters/serpentus/sitting.svg",
  58864. extra: 293/290,
  58865. bottom: 140/433
  58866. }
  58867. },
  58868. },
  58869. [
  58870. {
  58871. name: "Normal",
  58872. height: math.unit(1.8, "meter"),
  58873. default: true
  58874. },
  58875. ]
  58876. ))
  58877. characterMakers.push(() => makeCharacter(
  58878. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58879. {
  58880. front: {
  58881. height: math.unit(5.7174385736, "feet"),
  58882. name: "Front",
  58883. image: {
  58884. source: "./media/characters/nova-polecat/front.svg",
  58885. extra: 1317/1216,
  58886. bottom: 92/1409
  58887. }
  58888. },
  58889. },
  58890. [
  58891. {
  58892. name: "Normal",
  58893. height: math.unit(5.7174385736, "feet"),
  58894. default: true
  58895. },
  58896. ]
  58897. ))
  58898. characterMakers.push(() => makeCharacter(
  58899. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58900. {
  58901. front: {
  58902. height: math.unit(5 + 4/12, "feet"),
  58903. weight: math.unit(250, "lb"),
  58904. name: "Front",
  58905. image: {
  58906. source: "./media/characters/mook/front.svg",
  58907. extra: 1088/1037,
  58908. bottom: 132/1220
  58909. }
  58910. },
  58911. back: {
  58912. height: math.unit(5 + 1/12, "feet"),
  58913. weight: math.unit(250, "lb"),
  58914. name: "Back",
  58915. image: {
  58916. source: "./media/characters/mook/back.svg",
  58917. extra: 1184/905,
  58918. bottom: 96/1280
  58919. }
  58920. },
  58921. head: {
  58922. height: math.unit(1.85, "feet"),
  58923. name: "Head",
  58924. image: {
  58925. source: "./media/characters/mook/head.svg"
  58926. }
  58927. },
  58928. hand: {
  58929. height: math.unit(1.9, "feet"),
  58930. name: "Hand",
  58931. image: {
  58932. source: "./media/characters/mook/hand.svg"
  58933. }
  58934. },
  58935. palm: {
  58936. height: math.unit(1.84, "feet"),
  58937. name: "Palm",
  58938. image: {
  58939. source: "./media/characters/mook/palm.svg"
  58940. }
  58941. },
  58942. foot: {
  58943. height: math.unit(1.44, "feet"),
  58944. name: "Foot",
  58945. image: {
  58946. source: "./media/characters/mook/foot.svg"
  58947. }
  58948. },
  58949. sole: {
  58950. height: math.unit(1.44, "feet"),
  58951. name: "Sole",
  58952. image: {
  58953. source: "./media/characters/mook/sole.svg"
  58954. }
  58955. },
  58956. },
  58957. [
  58958. {
  58959. name: "Normal",
  58960. height: math.unit(5 + 4/12, "feet"),
  58961. default: true
  58962. },
  58963. {
  58964. name: "Big",
  58965. height: math.unit(12, "feet")
  58966. },
  58967. ]
  58968. ))
  58969. characterMakers.push(() => makeCharacter(
  58970. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58971. {
  58972. front: {
  58973. height: math.unit(6 + 10/12, "feet"),
  58974. weight: math.unit(233, "lb"),
  58975. name: "Front",
  58976. image: {
  58977. source: "./media/characters/kayla/front.svg",
  58978. extra: 1850/1775,
  58979. bottom: 65/1915
  58980. }
  58981. },
  58982. },
  58983. [
  58984. {
  58985. name: "Normal",
  58986. height: math.unit(6 + 10/12, "feet"),
  58987. default: true
  58988. },
  58989. {
  58990. name: "Amazonian",
  58991. height: math.unit(12 + 5/12, "feet")
  58992. },
  58993. {
  58994. name: "Mini Giantess",
  58995. height: math.unit(26, "feet")
  58996. },
  58997. {
  58998. name: "Giantess",
  58999. height: math.unit(200, "feet")
  59000. },
  59001. {
  59002. name: "Mega Giantess",
  59003. height: math.unit(2500, "feet")
  59004. },
  59005. {
  59006. name: "City Sized",
  59007. height: math.unit(50, "miles")
  59008. },
  59009. {
  59010. name: "Country Sized",
  59011. height: math.unit(500, "miles")
  59012. },
  59013. {
  59014. name: "Continent Sized",
  59015. height: math.unit(2500, "miles")
  59016. },
  59017. {
  59018. name: "Planet Sized",
  59019. height: math.unit(10000, "miles")
  59020. },
  59021. {
  59022. name: "Star Sized",
  59023. height: math.unit(5e6, "miles")
  59024. },
  59025. {
  59026. name: "Solar System Sized",
  59027. height: math.unit(125, "AU")
  59028. },
  59029. {
  59030. name: "Galaxy Sized",
  59031. height: math.unit(300e3, "lightyears")
  59032. },
  59033. {
  59034. name: "Universe Sized",
  59035. height: math.unit(200e9, "lightyears")
  59036. },
  59037. {
  59038. name: "Multiverse Sized",
  59039. height: math.unit(20, "exauniverses")
  59040. },
  59041. {
  59042. name: "Mother of Existence",
  59043. height: math.unit(1e6, "yottauniverses")
  59044. },
  59045. ]
  59046. ))
  59047. characterMakers.push(() => makeCharacter(
  59048. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59049. {
  59050. side: {
  59051. height: math.unit(9.5, "meters"),
  59052. name: "Side",
  59053. image: {
  59054. source: "./media/characters/kulve-ragnarok/side.svg",
  59055. extra: 364/326,
  59056. bottom: 50/414
  59057. }
  59058. },
  59059. },
  59060. [
  59061. {
  59062. name: "Normal",
  59063. height: math.unit(9.5, "meters"),
  59064. default: true
  59065. },
  59066. ]
  59067. ))
  59068. characterMakers.push(() => makeCharacter(
  59069. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59070. {
  59071. front: {
  59072. height: math.unit(8 + 9/12, "feet"),
  59073. name: "Front",
  59074. image: {
  59075. source: "./media/characters/atlas-goat/front.svg",
  59076. extra: 1462/1323,
  59077. bottom: 12/1474
  59078. }
  59079. },
  59080. },
  59081. [
  59082. {
  59083. name: "Normal",
  59084. height: math.unit(8 + 9/12, "feet"),
  59085. default: true
  59086. },
  59087. {
  59088. name: "Skyline",
  59089. height: math.unit(845, "feet")
  59090. },
  59091. {
  59092. name: "Orbital",
  59093. height: math.unit(93000, "miles")
  59094. },
  59095. {
  59096. name: "Constellation",
  59097. height: math.unit(27000, "lightyears")
  59098. },
  59099. ]
  59100. ))
  59101. characterMakers.push(() => makeCharacter(
  59102. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59103. {
  59104. side: {
  59105. height: math.unit(1.8, "meters"),
  59106. weight: math.unit(120, "kg"),
  59107. name: "Side",
  59108. image: {
  59109. source: "./media/characters/xie-ling/side.svg",
  59110. extra: 646/574,
  59111. bottom: 44/690
  59112. }
  59113. },
  59114. },
  59115. [
  59116. {
  59117. name: "Tiny",
  59118. height: math.unit(1.80, "meters")
  59119. },
  59120. {
  59121. name: "Small",
  59122. height: math.unit(6, "meters")
  59123. },
  59124. {
  59125. name: "Medium",
  59126. height: math.unit(15, "meters")
  59127. },
  59128. {
  59129. name: "Normal",
  59130. height: math.unit(30, "meters"),
  59131. default: true
  59132. },
  59133. {
  59134. name: "Above Normal",
  59135. height: math.unit(60, "meters")
  59136. },
  59137. {
  59138. name: "Big",
  59139. height: math.unit(220, "meters")
  59140. },
  59141. {
  59142. name: "Giant",
  59143. height: math.unit(2.2, "km")
  59144. },
  59145. {
  59146. name: "Macro",
  59147. height: math.unit(25, "km")
  59148. },
  59149. {
  59150. name: "Mega Macro",
  59151. height: math.unit(350, "km")
  59152. },
  59153. {
  59154. name: "Mega Macro+",
  59155. height: math.unit(5000, "km")
  59156. },
  59157. {
  59158. name: "Goddess",
  59159. height: math.unit(3, "multiverses")
  59160. },
  59161. ]
  59162. ))
  59163. characterMakers.push(() => makeCharacter(
  59164. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59165. {
  59166. frontSfw: {
  59167. height: math.unit(5 + 11/12, "feet"),
  59168. weight: math.unit(210, "lb"),
  59169. name: "Front",
  59170. image: {
  59171. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59172. extra: 1928/1821,
  59173. bottom: 45/1973
  59174. }
  59175. },
  59176. backSfw: {
  59177. height: math.unit(5 + 11/12, "feet"),
  59178. weight: math.unit(210, "lb"),
  59179. name: "Back",
  59180. image: {
  59181. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59182. extra: 1920/1813,
  59183. bottom: 34/1954
  59184. }
  59185. },
  59186. frontNsfw: {
  59187. height: math.unit(5 + 11/12, "feet"),
  59188. weight: math.unit(210, "lb"),
  59189. name: "Front (NSFW)",
  59190. image: {
  59191. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59192. extra: 1928/1821,
  59193. bottom: 45/1973
  59194. }
  59195. },
  59196. backNsfw: {
  59197. height: math.unit(5 + 11/12, "feet"),
  59198. weight: math.unit(210, "lb"),
  59199. name: "Back (NSFW)",
  59200. image: {
  59201. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59202. extra: 1920/1813,
  59203. bottom: 34/1954
  59204. }
  59205. },
  59206. },
  59207. [
  59208. {
  59209. name: "Normal",
  59210. height: math.unit(5 + 11/12, "feet"),
  59211. default: true
  59212. },
  59213. {
  59214. name: "Goddess",
  59215. height: math.unit(20 + 3/12, "feet")
  59216. },
  59217. {
  59218. name: "Breaker of Man",
  59219. height: math.unit(329 + 9/12, "feet")
  59220. },
  59221. {
  59222. name: "Solar Justice",
  59223. height: math.unit(0.6, "solarradii")
  59224. },
  59225. {
  59226. name: "She Who Judges",
  59227. height: math.unit(1, "universe")
  59228. },
  59229. ]
  59230. ))
  59231. characterMakers.push(() => makeCharacter(
  59232. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59233. {
  59234. casual_front: {
  59235. height: math.unit(6 + 1/12, "feet"),
  59236. weight: math.unit(190, "lb"),
  59237. preyCapacity: math.unit(1, "people"),
  59238. name: "Front",
  59239. image: {
  59240. source: "./media/characters/managarmr/casual-front.svg",
  59241. extra: 411/381,
  59242. bottom: 15/426
  59243. },
  59244. extraAttributes: {
  59245. "pawSize": {
  59246. name: "Paw Size",
  59247. power: 1,
  59248. type: "length",
  59249. base: math.unit(0.2, "meters")
  59250. },
  59251. },
  59252. form: "casual",
  59253. },
  59254. casual_back: {
  59255. height: math.unit(6 + 1/12, "feet"),
  59256. weight: math.unit(190, "lb"),
  59257. preyCapacity: math.unit(1, "people"),
  59258. name: "Back",
  59259. image: {
  59260. source: "./media/characters/managarmr/casual-back.svg",
  59261. extra: 413/383,
  59262. bottom: 13/426
  59263. },
  59264. extraAttributes: {
  59265. "pawSize": {
  59266. name: "Paw Size",
  59267. power: 1,
  59268. type: "length",
  59269. base: math.unit(0.2, "meters")
  59270. },
  59271. },
  59272. form: "casual",
  59273. },
  59274. base_front: {
  59275. height: math.unit(7, "feet"),
  59276. weight: math.unit(210, "lb"),
  59277. preyCapacity: math.unit(2, "people"),
  59278. name: "Front",
  59279. image: {
  59280. source: "./media/characters/managarmr/base-front.svg",
  59281. extra: 580/485,
  59282. bottom: 32/612
  59283. },
  59284. extraAttributes: {
  59285. "wingspan": {
  59286. name: "Wingspan",
  59287. power: 1,
  59288. type: "length",
  59289. base: math.unit(4, "meters")
  59290. },
  59291. "pawSize": {
  59292. name: "Paw Size",
  59293. power: 1,
  59294. type: "length",
  59295. base: math.unit(0.2, "meters")
  59296. },
  59297. },
  59298. form: "base",
  59299. },
  59300. "true-divine_front": {
  59301. height: math.unit(40, "feet"),
  59302. weight: math.unit(39000, "lb"),
  59303. preyCapacity: math.unit(375, "people"),
  59304. name: "Front",
  59305. image: {
  59306. source: "./media/characters/managarmr/true-divine-front.svg",
  59307. extra: 725/573,
  59308. bottom: 120/845
  59309. },
  59310. extraAttributes: {
  59311. "wingspan": {
  59312. name: "Wingspan",
  59313. power: 1,
  59314. type: "length",
  59315. base: math.unit(20, "meters")
  59316. },
  59317. "pawSize": {
  59318. name: "Paw Size",
  59319. power: 1,
  59320. type: "length",
  59321. base: math.unit(1.5, "meters")
  59322. },
  59323. },
  59324. form: "true-divine",
  59325. },
  59326. },
  59327. [
  59328. {
  59329. name: "Normal",
  59330. height: math.unit(6 + 1/12, "feet"),
  59331. form: "casual",
  59332. default: true
  59333. },
  59334. {
  59335. name: "Normal",
  59336. height: math.unit(7, "feet"),
  59337. form: "base",
  59338. default: true
  59339. },
  59340. ],
  59341. {
  59342. "casual": {
  59343. name: "Casual",
  59344. default: true
  59345. },
  59346. "base": {
  59347. name: "Base",
  59348. },
  59349. "true-divine": {
  59350. name: "True Divine",
  59351. },
  59352. }
  59353. ))
  59354. characterMakers.push(() => makeCharacter(
  59355. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59356. {
  59357. front: {
  59358. height: math.unit(1.8, "meters"),
  59359. weight: math.unit(110, "kg"),
  59360. name: "Front",
  59361. image: {
  59362. source: "./media/characters/mystra/front.svg",
  59363. extra: 529/442,
  59364. bottom: 31/560
  59365. }
  59366. },
  59367. frontLewd: {
  59368. height: math.unit(1.8, "meters"),
  59369. weight: math.unit(110, "kg"),
  59370. name: "Front (Lewd)",
  59371. image: {
  59372. source: "./media/characters/mystra/front-lewd.svg",
  59373. extra: 529/442,
  59374. bottom: 31/560
  59375. }
  59376. },
  59377. head: {
  59378. height: math.unit(1.63, "feet"),
  59379. name: "Head",
  59380. image: {
  59381. source: "./media/characters/mystra/head.svg"
  59382. }
  59383. },
  59384. paw: {
  59385. height: math.unit(1.9, "feet"),
  59386. name: "Paw",
  59387. image: {
  59388. source: "./media/characters/mystra/paw.svg"
  59389. }
  59390. },
  59391. },
  59392. [
  59393. {
  59394. name: "Incognito",
  59395. height: math.unit(2.3, "meters")
  59396. },
  59397. {
  59398. name: "Small Macro",
  59399. height: math.unit(300, "meters")
  59400. },
  59401. {
  59402. name: "Small Mega",
  59403. height: math.unit(2, "km")
  59404. },
  59405. {
  59406. name: "Mega",
  59407. height: math.unit(30, "km")
  59408. },
  59409. {
  59410. name: "Small Giga",
  59411. height: math.unit(100, "km")
  59412. },
  59413. {
  59414. name: "Giga",
  59415. height: math.unit(1000, "km"),
  59416. default: true
  59417. },
  59418. {
  59419. name: "Continental",
  59420. height: math.unit(5000, "km")
  59421. },
  59422. {
  59423. name: "Terra",
  59424. height: math.unit(20000, "km")
  59425. },
  59426. {
  59427. name: "Solar",
  59428. height: math.unit(2e6, "km")
  59429. },
  59430. {
  59431. name: "Galactic",
  59432. height: math.unit(528502, "lightyears")
  59433. },
  59434. {
  59435. name: "Universal",
  59436. height: math.unit(20, "universes")
  59437. },
  59438. ]
  59439. ))
  59440. characterMakers.push(() => makeCharacter(
  59441. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59442. {
  59443. front: {
  59444. height: math.unit(2, "meters"),
  59445. weight: math.unit(140, "kg"),
  59446. name: "Front",
  59447. image: {
  59448. source: "./media/characters/caleb/front.svg",
  59449. extra: 873/817,
  59450. bottom: 47/920
  59451. }
  59452. },
  59453. back: {
  59454. height: math.unit(2, "meters"),
  59455. weight: math.unit(140, "kg"),
  59456. name: "Back",
  59457. image: {
  59458. source: "./media/characters/caleb/back.svg",
  59459. extra: 877/828,
  59460. bottom: 24/901
  59461. }
  59462. },
  59463. snakeTail: {
  59464. height: math.unit(1.44, "feet"),
  59465. name: "Snake Tail",
  59466. image: {
  59467. source: "./media/characters/caleb/snake-tail.svg"
  59468. }
  59469. },
  59470. dick: {
  59471. height: math.unit(2.6, "feet"),
  59472. name: "Dick",
  59473. image: {
  59474. source: "./media/characters/caleb/dick.svg"
  59475. }
  59476. },
  59477. },
  59478. [
  59479. {
  59480. name: "Incognito",
  59481. height: math.unit(3, "meters")
  59482. },
  59483. {
  59484. name: "Home Size",
  59485. height: math.unit(200, "meters"),
  59486. default: true
  59487. },
  59488. {
  59489. name: "Macro",
  59490. height: math.unit(500, "meters")
  59491. },
  59492. {
  59493. name: "Big Macro",
  59494. height: math.unit(5, "km")
  59495. },
  59496. {
  59497. name: "Giga",
  59498. height: math.unit(250, "km")
  59499. },
  59500. {
  59501. name: "Giga+",
  59502. height: math.unit(5000, "km")
  59503. },
  59504. {
  59505. name: "Small Terra",
  59506. height: math.unit(35e3, "km")
  59507. },
  59508. {
  59509. name: "Terra",
  59510. height: math.unit(2e6, "km")
  59511. },
  59512. {
  59513. name: "Terra+",
  59514. height: math.unit(1.5e6, "km")
  59515. },
  59516. ]
  59517. ))
  59518. characterMakers.push(() => makeCharacter(
  59519. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59520. {
  59521. front: {
  59522. height: math.unit(2, "meters"),
  59523. weight: math.unit(120, "kg"),
  59524. name: "Front",
  59525. image: {
  59526. source: "./media/characters/gilirian/front.svg",
  59527. extra: 805/737,
  59528. bottom: 13/818
  59529. }
  59530. },
  59531. side: {
  59532. height: math.unit(2, "meters"),
  59533. weight: math.unit(120, "kg"),
  59534. name: "Side",
  59535. image: {
  59536. source: "./media/characters/gilirian/side.svg",
  59537. extra: 810/746,
  59538. bottom: 6/816
  59539. }
  59540. },
  59541. back: {
  59542. height: math.unit(2, "meters"),
  59543. weight: math.unit(120, "kg"),
  59544. name: "Back",
  59545. image: {
  59546. source: "./media/characters/gilirian/back.svg",
  59547. extra: 815/745,
  59548. bottom: 15/830
  59549. }
  59550. },
  59551. frontNsfw: {
  59552. height: math.unit(2, "meters"),
  59553. weight: math.unit(120, "kg"),
  59554. name: "Front (NSFW)",
  59555. image: {
  59556. source: "./media/characters/gilirian/front-nsfw.svg",
  59557. extra: 805/737,
  59558. bottom: 13/818
  59559. }
  59560. },
  59561. sideNsfw: {
  59562. height: math.unit(2, "meters"),
  59563. weight: math.unit(120, "kg"),
  59564. name: "Side (NSFW)",
  59565. image: {
  59566. source: "./media/characters/gilirian/side-nsfw.svg",
  59567. extra: 810/746,
  59568. bottom: 6/816
  59569. }
  59570. },
  59571. },
  59572. [
  59573. {
  59574. name: "Incognito",
  59575. height: math.unit(2, "meters"),
  59576. default: true
  59577. },
  59578. {
  59579. name: "Macro",
  59580. height: math.unit(250, "meters")
  59581. },
  59582. {
  59583. name: "Big Macro",
  59584. height: math.unit(1500, "meters")
  59585. },
  59586. {
  59587. name: "Mega",
  59588. height: math.unit(40, "km")
  59589. },
  59590. {
  59591. name: "Giga",
  59592. height: math.unit(300, "km")
  59593. },
  59594. {
  59595. name: "Extra Giga",
  59596. height: math.unit(5000, "km")
  59597. },
  59598. {
  59599. name: "Small Terra",
  59600. height: math.unit(10e3, "km")
  59601. },
  59602. {
  59603. name: "Terra",
  59604. height: math.unit(3e5, "km")
  59605. },
  59606. {
  59607. name: "Galactic",
  59608. height: math.unit(369950, "lightyears")
  59609. },
  59610. ]
  59611. ))
  59612. characterMakers.push(() => makeCharacter(
  59613. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59614. {
  59615. front: {
  59616. height: math.unit(2.5, "meters"),
  59617. weight: math.unit(230, "lb"),
  59618. name: "Front",
  59619. image: {
  59620. source: "./media/characters/tarken/front.svg",
  59621. extra: 764/720,
  59622. bottom: 49/813
  59623. }
  59624. },
  59625. back: {
  59626. height: math.unit(2.5, "meters"),
  59627. weight: math.unit(230, "lb"),
  59628. name: "Back",
  59629. image: {
  59630. source: "./media/characters/tarken/back.svg",
  59631. extra: 756/720,
  59632. bottom: 35/791
  59633. }
  59634. },
  59635. frontNsfw: {
  59636. height: math.unit(2.5, "meters"),
  59637. weight: math.unit(230, "lb"),
  59638. name: "Front (NSFW)",
  59639. image: {
  59640. source: "./media/characters/tarken/front-nsfw.svg",
  59641. extra: 764/720,
  59642. bottom: 49/813
  59643. }
  59644. },
  59645. backNsfw: {
  59646. height: math.unit(2.5, "meters"),
  59647. weight: math.unit(230, "lb"),
  59648. name: "Back (NSFW)",
  59649. image: {
  59650. source: "./media/characters/tarken/back-nsfw.svg",
  59651. extra: 756/720,
  59652. bottom: 35/791
  59653. }
  59654. },
  59655. head: {
  59656. height: math.unit(2.22, "feet"),
  59657. name: "Head",
  59658. image: {
  59659. source: "./media/characters/tarken/head.svg"
  59660. }
  59661. },
  59662. tail: {
  59663. height: math.unit(5.25, "feet"),
  59664. name: "Tail",
  59665. image: {
  59666. source: "./media/characters/tarken/tail.svg"
  59667. }
  59668. },
  59669. dick: {
  59670. height: math.unit(1.95, "feet"),
  59671. name: "Dick",
  59672. image: {
  59673. source: "./media/characters/tarken/dick.svg"
  59674. }
  59675. },
  59676. hand: {
  59677. height: math.unit(1.78, "feet"),
  59678. name: "Hand",
  59679. image: {
  59680. source: "./media/characters/tarken/hand.svg"
  59681. }
  59682. },
  59683. beam: {
  59684. height: math.unit(1.5, "feet"),
  59685. name: "Beam",
  59686. image: {
  59687. source: "./media/characters/tarken/beam.svg"
  59688. }
  59689. },
  59690. },
  59691. [
  59692. {
  59693. name: "Original Size",
  59694. height: math.unit(2.5, "meters")
  59695. },
  59696. {
  59697. name: "Macro",
  59698. height: math.unit(150, "meters"),
  59699. default: true
  59700. },
  59701. {
  59702. name: "Macro+",
  59703. height: math.unit(300, "meters")
  59704. },
  59705. {
  59706. name: "Mega",
  59707. height: math.unit(2, "km")
  59708. },
  59709. {
  59710. name: "Mega+",
  59711. height: math.unit(35, "km")
  59712. },
  59713.  {
  59714. name: "Mega++",
  59715. height: math.unit(60, "km")
  59716. },
  59717. {
  59718. name: "Giga",
  59719. height: math.unit(200, "km")
  59720. },
  59721. {
  59722. name: "Giga+",
  59723. height: math.unit(2500, "km")
  59724. },
  59725. {
  59726. name: "Giga++",
  59727. height: math.unit(6600, "km")
  59728. },
  59729. {
  59730. name: "Terra",
  59731. height: math.unit(20000, "km")
  59732. },
  59733. {
  59734. name: "Terra+",
  59735. height: math.unit(300000, "km")
  59736. },
  59737. ]
  59738. ))
  59739. characterMakers.push(() => makeCharacter(
  59740. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59741. {
  59742. magpie_dressed: {
  59743. height: math.unit(1.7, "meters"),
  59744. weight: math.unit(70, "kg"),
  59745. name: "Dressed",
  59746. image: {
  59747. source: "./media/characters/otreus/magpie-dressed.svg",
  59748. extra: 691/672,
  59749. bottom: 116/807
  59750. },
  59751. form: "magpie",
  59752. default: true
  59753. },
  59754. magpie_nude: {
  59755. height: math.unit(1.7, "meters"),
  59756. weight: math.unit(70, "kg"),
  59757. name: "Nude",
  59758. image: {
  59759. source: "./media/characters/otreus/magpie-nude.svg",
  59760. extra: 691/672,
  59761. bottom: 116/807
  59762. },
  59763. form: "magpie",
  59764. },
  59765. magpie_dressedLewd: {
  59766. height: math.unit(1.7, "meters"),
  59767. weight: math.unit(70, "kg"),
  59768. name: "Dressed (Lewd)",
  59769. image: {
  59770. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59771. extra: 691/672,
  59772. bottom: 116/807
  59773. },
  59774. form: "magpie",
  59775. },
  59776. magpie_nudeLewd: {
  59777. height: math.unit(1.7, "meters"),
  59778. weight: math.unit(70, "kg"),
  59779. name: "Nude (Lewd)",
  59780. image: {
  59781. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59782. extra: 691/672,
  59783. bottom: 116/807
  59784. },
  59785. form: "magpie",
  59786. },
  59787. magpie_leftFoot: {
  59788. height: math.unit(1.58, "feet"),
  59789. name: "Left Foot",
  59790. image: {
  59791. source: "./media/characters/otreus/magpie-left-foot.svg"
  59792. },
  59793. form: "magpie",
  59794. },
  59795. magpie_rightFoot: {
  59796. height: math.unit(1.58, "feet"),
  59797. name: "Right Foot",
  59798. image: {
  59799. source: "./media/characters/otreus/magpie-right-foot.svg"
  59800. },
  59801. form: "magpie",
  59802. },
  59803. magpie_wingspan: {
  59804. height: math.unit(2, "meters"),
  59805. weight: math.unit(70, "kg"),
  59806. name: "Wingspan",
  59807. image: {
  59808. source: "./media/characters/otreus/magpie-wingspan.svg"
  59809. },
  59810. extraAttributes: {
  59811. "wingspan": {
  59812. name: "Wingspan",
  59813. power: 1,
  59814. type: "length",
  59815. base: math.unit(3.35, "meters")
  59816. },
  59817. },
  59818. form: "magpie",
  59819. },
  59820. hippogriff_dressed: {
  59821. height: math.unit(1.7, "meters"),
  59822. weight: math.unit(70, "kg"),
  59823. name: "Dressed",
  59824. image: {
  59825. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59826. extra: 710/689,
  59827. bottom: 67/777
  59828. },
  59829. form: "hippogriff",
  59830. default: true
  59831. },
  59832. hippogriff_nude: {
  59833. height: math.unit(1.7, "meters"),
  59834. weight: math.unit(70, "kg"),
  59835. name: "Nude",
  59836. image: {
  59837. source: "./media/characters/otreus/hippogriff-nude.svg",
  59838. extra: 710/689,
  59839. bottom: 67/777
  59840. },
  59841. form: "hippogriff",
  59842. },
  59843. hippogriff_dressedLewd: {
  59844. height: math.unit(1.7, "meters"),
  59845. weight: math.unit(70, "kg"),
  59846. name: "Dressed (Lewd)",
  59847. image: {
  59848. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59849. extra: 710/689,
  59850. bottom: 67/777
  59851. },
  59852. form: "hippogriff",
  59853. },
  59854. hippogriff_nudeLewd: {
  59855. height: math.unit(1.7, "meters"),
  59856. weight: math.unit(70, "kg"),
  59857. name: "Nude (Lewd)",
  59858. image: {
  59859. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59860. extra: 710/689,
  59861. bottom: 67/777
  59862. },
  59863. form: "hippogriff",
  59864. },
  59865. },
  59866. [
  59867. {
  59868. name: "Original Size",
  59869. height: math.unit(1.7, "meters"),
  59870. allForms: true
  59871. },
  59872. {
  59873. name: "Incognito Size",
  59874. height: math.unit(2, "meters"),
  59875. allForms: true
  59876. },
  59877. {
  59878. name: "Mega",
  59879. height: math.unit(2, "km"),
  59880. allForms: true
  59881. },
  59882. {
  59883. name: "Mega+",
  59884. height: math.unit(40, "km"),
  59885. allForms: true
  59886. },
  59887. {
  59888. name: "Giga",
  59889. height: math.unit(250, "km"),
  59890. allForms: true
  59891. },
  59892. {
  59893. name: "Giga+",
  59894. height: math.unit(3000, "km"),
  59895. allForms: true
  59896. },
  59897. {
  59898. name: "Terra",
  59899. height: math.unit(20000, "km"),
  59900. allForms: true
  59901. },
  59902. {
  59903. name: "Solar (Home Size)",
  59904. height: math.unit(3e6, "km"),
  59905. allForms: true,
  59906. default: true
  59907. },
  59908. ],
  59909. {
  59910. "magpie": {
  59911. name: "Magpie",
  59912. default: true
  59913. },
  59914. "hippogriff": {
  59915. name: "Hippogriff",
  59916. },
  59917. }
  59918. ))
  59919. characterMakers.push(() => makeCharacter(
  59920. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59921. {
  59922. frontDressed: {
  59923. height: math.unit(1.8, "meters"),
  59924. weight: math.unit(90, "kg"),
  59925. name: "Front (Dressed)",
  59926. image: {
  59927. source: "./media/characters/thalia/front-dressed.svg",
  59928. extra: 478/402,
  59929. bottom: 55/533
  59930. }
  59931. },
  59932. backDressed: {
  59933. height: math.unit(1.8, "meters"),
  59934. weight: math.unit(90, "kg"),
  59935. name: "Back (Dressed)",
  59936. image: {
  59937. source: "./media/characters/thalia/back-dressed.svg",
  59938. extra: 500/424,
  59939. bottom: 15/515
  59940. }
  59941. },
  59942. frontNude: {
  59943. height: math.unit(1.8, "meters"),
  59944. weight: math.unit(90, "kg"),
  59945. name: "Front (Nude)",
  59946. image: {
  59947. source: "./media/characters/thalia/front-nude.svg",
  59948. extra: 478/402,
  59949. bottom: 55/533
  59950. }
  59951. },
  59952. backNude: {
  59953. height: math.unit(1.8, "meters"),
  59954. weight: math.unit(90, "kg"),
  59955. name: "Back (Nude)",
  59956. image: {
  59957. source: "./media/characters/thalia/back-nude.svg",
  59958. extra: 500/424,
  59959. bottom: 15/515
  59960. }
  59961. },
  59962. },
  59963. [
  59964. {
  59965. name: "Incognito",
  59966. height: math.unit(3, "meters")
  59967. },
  59968. {
  59969. name: "Macro",
  59970. height: math.unit(500, "meters")
  59971. },
  59972. {
  59973. name: "Mega",
  59974. height: math.unit(5, "km")
  59975. },
  59976. {
  59977. name: "Mega+",
  59978. height: math.unit(30, "km")
  59979. },
  59980. {
  59981. name: "Giga",
  59982. height: math.unit(350, "km")
  59983. },
  59984. {
  59985. name: "Giga+",
  59986. height: math.unit(4000, "km")
  59987. },
  59988. {
  59989. name: "Terra",
  59990. height: math.unit(35000, "km")
  59991. },
  59992. {
  59993. name: "Original Size",
  59994. height: math.unit(130000, "km")
  59995. },
  59996. {
  59997. name: "Solar (Home Size)",
  59998. height: math.unit(4e6, "km"),
  59999. default: true
  60000. },
  60001. ]
  60002. ))
  60003. characterMakers.push(() => makeCharacter(
  60004. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60005. {
  60006. front: {
  60007. height: math.unit(1.8, "meters"),
  60008. weight: math.unit(95, "kg"),
  60009. name: "Front",
  60010. image: {
  60011. source: "./media/characters/shango/front.svg",
  60012. extra: 1925/1774,
  60013. bottom: 67/1992
  60014. }
  60015. },
  60016. back: {
  60017. height: math.unit(1.8, "meters"),
  60018. weight: math.unit(95, "kg"),
  60019. name: "Back",
  60020. image: {
  60021. source: "./media/characters/shango/back.svg",
  60022. extra: 1915/1766,
  60023. bottom: 52/1967
  60024. }
  60025. },
  60026. frontLewd: {
  60027. height: math.unit(1.8, "meters"),
  60028. weight: math.unit(95, "kg"),
  60029. name: "Front (Lewd)",
  60030. image: {
  60031. source: "./media/characters/shango/front-lewd.svg",
  60032. extra: 1925/1774,
  60033. bottom: 67/1992
  60034. }
  60035. },
  60036. backLewd: {
  60037. height: math.unit(1.8, "meters"),
  60038. weight: math.unit(95, "kg"),
  60039. name: "Back (Lewd)",
  60040. image: {
  60041. source: "./media/characters/shango/back-lewd.svg",
  60042. extra: 1915/1766,
  60043. bottom: 52/1967
  60044. }
  60045. },
  60046. maw: {
  60047. height: math.unit(1.64, "feet"),
  60048. name: "Maw",
  60049. image: {
  60050. source: "./media/characters/shango/maw.svg"
  60051. }
  60052. },
  60053. dick: {
  60054. height: math.unit(2.14, "feet"),
  60055. name: "Dick",
  60056. image: {
  60057. source: "./media/characters/shango/dick.svg"
  60058. }
  60059. },
  60060. },
  60061. [
  60062. {
  60063. name: "Incognito",
  60064. height: math.unit(1.8, "meters")
  60065. },
  60066. {
  60067. name: "Home Size",
  60068. height: math.unit(60, "meters"),
  60069. default: true
  60070. },
  60071. {
  60072. name: "Macro",
  60073. height: math.unit(450, "meters")
  60074. },
  60075. {
  60076. name: "Mega",
  60077. height: math.unit(6, "km")
  60078. },
  60079. {
  60080. name: "Mega+",
  60081. height: math.unit(35, "km")
  60082. },
  60083. {
  60084. name: "Giga",
  60085. height: math.unit(500, "km")
  60086. },
  60087. {
  60088. name: "Giga+",
  60089. height: math.unit(5000, "km")
  60090. },
  60091. {
  60092. name: "Terra",
  60093. height: math.unit(60000, "km")
  60094. },
  60095. {
  60096. name: "Terra+",
  60097. height: math.unit(400000, "km")
  60098. },
  60099. ]
  60100. ))
  60101. characterMakers.push(() => makeCharacter(
  60102. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60103. {
  60104. front: {
  60105. height: math.unit(2, "meters"),
  60106. weight: math.unit(95, "kg"),
  60107. name: "Front",
  60108. image: {
  60109. source: "./media/characters/osiris-gryphon/front.svg",
  60110. extra: 1508/1313,
  60111. bottom: 87/1595
  60112. }
  60113. },
  60114. back: {
  60115. height: math.unit(2, "meters"),
  60116. weight: math.unit(95, "kg"),
  60117. name: "Back",
  60118. image: {
  60119. source: "./media/characters/osiris-gryphon/back.svg",
  60120. extra: 1436/1309,
  60121. bottom: 64/1500
  60122. }
  60123. },
  60124. frontLewd: {
  60125. height: math.unit(2, "meters"),
  60126. weight: math.unit(95, "kg"),
  60127. name: "Front (Lewd)",
  60128. image: {
  60129. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60130. extra: 1508/1313,
  60131. bottom: 87/1595
  60132. }
  60133. },
  60134. wing: {
  60135. height: math.unit(6.3333, "feet"),
  60136. name: "Wing",
  60137. image: {
  60138. source: "./media/characters/osiris-gryphon/wing.svg"
  60139. }
  60140. },
  60141. },
  60142. [
  60143. {
  60144. name: "Incognito",
  60145. height: math.unit(2, "meters")
  60146. },
  60147. {
  60148. name: "Home Size",
  60149. height: math.unit(30, "meters"),
  60150. default: true
  60151. },
  60152. {
  60153. name: "Macro",
  60154. height: math.unit(100, "meters")
  60155. },
  60156. {
  60157. name: "Macro+",
  60158. height: math.unit(350, "meters")
  60159. },
  60160. {
  60161. name: "Mega",
  60162. height: math.unit(40, "km")
  60163. },
  60164. {
  60165. name: "Giga",
  60166. height: math.unit(300, "km")
  60167. },
  60168. {
  60169. name: "Giga+",
  60170. height: math.unit(2000, "km")
  60171. },
  60172. {
  60173. name: "Terra",
  60174. height: math.unit(30000, "km")
  60175. },
  60176. ]
  60177. ))
  60178. characterMakers.push(() => makeCharacter(
  60179. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60180. {
  60181. front: {
  60182. height: math.unit(2.5, "meters"),
  60183. weight: math.unit(200, "kg"),
  60184. name: "Front",
  60185. image: {
  60186. source: "./media/characters/atlas-dragon/front.svg",
  60187. extra: 745/462,
  60188. bottom: 36/781
  60189. }
  60190. },
  60191. back: {
  60192. height: math.unit(2.5, "meters"),
  60193. weight: math.unit(200, "kg"),
  60194. name: "Back",
  60195. image: {
  60196. source: "./media/characters/atlas-dragon/back.svg",
  60197. extra: 848/822,
  60198. bottom: 57/905
  60199. }
  60200. },
  60201. frontLewd: {
  60202. height: math.unit(2.5, "meters"),
  60203. weight: math.unit(200, "kg"),
  60204. name: "Front (Lewd)",
  60205. image: {
  60206. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60207. extra: 745/462,
  60208. bottom: 36/781
  60209. }
  60210. },
  60211. backLewd: {
  60212. height: math.unit(2.5, "meters"),
  60213. weight: math.unit(200, "kg"),
  60214. name: "Back (Lewd)",
  60215. image: {
  60216. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60217. extra: 848/822,
  60218. bottom: 57/905
  60219. }
  60220. },
  60221. },
  60222. [
  60223. {
  60224. name: "Incognito",
  60225. height: math.unit(2.5, "meters")
  60226. },
  60227. {
  60228. name: "Small Macro",
  60229. height: math.unit(50, "meters")
  60230. },
  60231. {
  60232. name: "Macro",
  60233. height: math.unit(350, "meters")
  60234. },
  60235. {
  60236. name: "Mega",
  60237. height: math.unit(5.5, "kilometers")
  60238. },
  60239. {
  60240. name: "Mega+",
  60241. height: math.unit(50, "km")
  60242. },
  60243. {
  60244. name: "Giga",
  60245. height: math.unit(350, "km")
  60246. },
  60247. {
  60248. name: "Giga+",
  60249. height: math.unit(2000, "km")
  60250. },
  60251. {
  60252. name: "Giga++",
  60253. height: math.unit(6500, "km")
  60254. },
  60255. {
  60256. name: "Terra",
  60257. height: math.unit(30000, "km")
  60258. },
  60259. {
  60260. name: "Terra+",
  60261. height: math.unit(250000, "km")
  60262. },
  60263. {
  60264. name: "True Size",
  60265. height: math.unit(100, "multiverses"),
  60266. default: true
  60267. },
  60268. ]
  60269. ))
  60270. characterMakers.push(() => makeCharacter(
  60271. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60272. {
  60273. front: {
  60274. height: math.unit(1.8, "m"),
  60275. weight: math.unit(120, "kg"),
  60276. name: "Front",
  60277. image: {
  60278. source: "./media/characters/chey/front.svg",
  60279. extra: 1359/1270,
  60280. bottom: 18/1377
  60281. }
  60282. },
  60283. arm: {
  60284. height: math.unit(2.05, "feet"),
  60285. name: "Arm",
  60286. image: {
  60287. source: "./media/characters/chey/arm.svg"
  60288. }
  60289. },
  60290. head: {
  60291. height: math.unit(1.89, "feet"),
  60292. name: "Head",
  60293. image: {
  60294. source: "./media/characters/chey/head.svg"
  60295. }
  60296. },
  60297. },
  60298. [
  60299. {
  60300. name: "Original Size",
  60301. height: math.unit(5, "cm")
  60302. },
  60303. {
  60304. name: "Incognito Size",
  60305. height: math.unit(2.4, "m")
  60306. },
  60307. {
  60308. name: "Home Size",
  60309. height: math.unit(200, "meters"),
  60310. default: true
  60311. },
  60312. {
  60313. name: "Mega",
  60314. height: math.unit(2, "km")
  60315. },
  60316. {
  60317. name: "Giga (Preferred Size)",
  60318. height: math.unit(2000, "km")
  60319. },
  60320. {
  60321. name: "Giga+",
  60322. height: math.unit(6000, "km")
  60323. },
  60324. {
  60325. name: "Terra",
  60326. height: math.unit(17000, "km")
  60327. },
  60328. {
  60329. name: "Terra+",
  60330. height: math.unit(75000, "km")
  60331. },
  60332. {
  60333. name: "Terra++",
  60334. height: math.unit(225000, "km")
  60335. },
  60336. ]
  60337. ))
  60338. characterMakers.push(() => makeCharacter(
  60339. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60340. {
  60341. side: {
  60342. height: math.unit(7.8, "meters"),
  60343. name: "Side",
  60344. image: {
  60345. source: "./media/characters/ragnarok/side.svg",
  60346. extra: 725/621,
  60347. bottom: 72/797
  60348. }
  60349. },
  60350. },
  60351. [
  60352. {
  60353. name: "Normal",
  60354. height: math.unit(7.8, "meters"),
  60355. default: true
  60356. },
  60357. ]
  60358. ))
  60359. characterMakers.push(() => makeCharacter(
  60360. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60361. {
  60362. hyena_front: {
  60363. height: math.unit(2.1, "meters"),
  60364. weight: math.unit(110, "kg"),
  60365. name: "Front",
  60366. image: {
  60367. source: "./media/characters/nima/hyena-front.svg",
  60368. extra: 1904/1796,
  60369. bottom: 67/1971
  60370. },
  60371. form: "hyena",
  60372. },
  60373. hyena_back: {
  60374. height: math.unit(2.1, "meters"),
  60375. weight: math.unit(110, "kg"),
  60376. name: "Back",
  60377. image: {
  60378. source: "./media/characters/nima/hyena-back.svg",
  60379. extra: 1964/1884,
  60380. bottom: 35/1999
  60381. },
  60382. form: "hyena",
  60383. },
  60384. shark_front: {
  60385. height: math.unit(1.95, "meters"),
  60386. weight: math.unit(110, "kg"),
  60387. name: "Front",
  60388. image: {
  60389. source: "./media/characters/nima/shark-front.svg",
  60390. extra: 2238/2013,
  60391. bottom: 0/223
  60392. },
  60393. form: "shark",
  60394. },
  60395. paw: {
  60396. height: math.unit(1, "feet"),
  60397. name: "Paw",
  60398. image: {
  60399. source: "./media/characters/nima/paw.svg"
  60400. }
  60401. },
  60402. circlet: {
  60403. height: math.unit(0.3, "feet"),
  60404. name: "Circlet",
  60405. image: {
  60406. source: "./media/characters/nima/circlet.svg"
  60407. }
  60408. },
  60409. necklace: {
  60410. height: math.unit(1.2, "feet"),
  60411. name: "Necklace",
  60412. image: {
  60413. source: "./media/characters/nima/necklace.svg"
  60414. }
  60415. },
  60416. bracelet: {
  60417. height: math.unit(0.51, "feet"),
  60418. name: "Bracelet",
  60419. image: {
  60420. source: "./media/characters/nima/bracelet.svg"
  60421. }
  60422. },
  60423. armband: {
  60424. height: math.unit(1.3, "feet"),
  60425. name: "Armband",
  60426. image: {
  60427. source: "./media/characters/nima/armband.svg"
  60428. }
  60429. },
  60430. },
  60431. [
  60432. {
  60433. name: "Incognito",
  60434. height: math.unit(2.1, "meters"),
  60435. allForms: true
  60436. },
  60437. {
  60438. name: "Small Macro",
  60439. height: math.unit(50, "meters"),
  60440. allForms: true
  60441. },
  60442. {
  60443. name: "Macro",
  60444. height: math.unit(200, "meters"),
  60445. allForms: true
  60446. },
  60447. {
  60448. name: "Mega",
  60449. height: math.unit(2.5, "km"),
  60450. allForms: true
  60451. },
  60452. {
  60453. name: "Mega+",
  60454. height: math.unit(30, "km"),
  60455. allForms: true
  60456. },
  60457. {
  60458. name: "Giga (Home Size)",
  60459. height: math.unit(400, "km"),
  60460. allForms: true,
  60461. default: true
  60462. },
  60463. {
  60464. name: "Giga+",
  60465. height: math.unit(2500, "km"),
  60466. allForms: true
  60467. },
  60468. {
  60469. name: "Giga++",
  60470. height: math.unit(8000, "km"),
  60471. allForms: true
  60472. },
  60473. {
  60474. name: "Terra",
  60475. height: math.unit(20000, "km"),
  60476. allForms: true
  60477. },
  60478. {
  60479. name: "Terra+",
  60480. height: math.unit(70000, "km"),
  60481. allForms: true
  60482. },
  60483. {
  60484. name: "Terra++",
  60485. height: math.unit(600000, "km"),
  60486. allForms: true
  60487. },
  60488. {
  60489. name: "Galactic",
  60490. height: math.unit(40, "galaxies"),
  60491. allForms: true
  60492. },
  60493. {
  60494. name: "Universal",
  60495. height: math.unit(40, "universes"),
  60496. allForms: true
  60497. },
  60498. ],
  60499. {
  60500. "hyena": {
  60501. name: "Hyena",
  60502. default: true
  60503. },
  60504. "shark": {
  60505. name: "Shark",
  60506. },
  60507. }
  60508. ))
  60509. characterMakers.push(() => makeCharacter(
  60510. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60511. {
  60512. anthro_front: {
  60513. height: math.unit(1.5, "meters"),
  60514. name: "Front",
  60515. image: {
  60516. source: "./media/characters/adelaide/anthro-front.svg",
  60517. extra: 860/783,
  60518. bottom: 60/920
  60519. },
  60520. form: "anthro",
  60521. default: true
  60522. },
  60523. hand: {
  60524. height: math.unit(0.65, "feet"),
  60525. name: "Hand",
  60526. image: {
  60527. source: "./media/characters/adelaide/hand.svg"
  60528. },
  60529. form: "anthro"
  60530. },
  60531. foot: {
  60532. height: math.unit(1.38 * 259 / 314, "feet"),
  60533. name: "Foot",
  60534. image: {
  60535. source: "./media/characters/adelaide/foot.svg",
  60536. extra: 259/259,
  60537. bottom: 55/314
  60538. },
  60539. form: "anthro"
  60540. },
  60541. feather: {
  60542. height: math.unit(0.85, "feet"),
  60543. name: "Feather",
  60544. image: {
  60545. source: "./media/characters/adelaide/feather.svg"
  60546. },
  60547. form: "anthro"
  60548. },
  60549. feral_side: {
  60550. height: math.unit(1, "meters"),
  60551. name: "Side",
  60552. image: {
  60553. source: "./media/characters/adelaide/feral-side.svg",
  60554. extra: 550/467,
  60555. bottom: 37/587
  60556. },
  60557. form: "feral",
  60558. default: true
  60559. },
  60560. feral_hand: {
  60561. height: math.unit(0.58, "feet"),
  60562. name: "Hand",
  60563. image: {
  60564. source: "./media/characters/adelaide/hand.svg"
  60565. },
  60566. form: "feral"
  60567. },
  60568. feral_foot: {
  60569. height: math.unit(1.2 * 259 / 314, "feet"),
  60570. name: "Foot",
  60571. image: {
  60572. source: "./media/characters/adelaide/foot.svg",
  60573. extra: 259/259,
  60574. bottom: 55/314
  60575. },
  60576. form: "feral"
  60577. },
  60578. feral_feather: {
  60579. height: math.unit(0.63, "feet"),
  60580. name: "Feather",
  60581. image: {
  60582. source: "./media/characters/adelaide/feather.svg"
  60583. },
  60584. form: "feral"
  60585. },
  60586. },
  60587. [
  60588. {
  60589. name: "Normal",
  60590. height: math.unit(1.5, "meters"),
  60591. form: "anthro",
  60592. default: true
  60593. },
  60594. {
  60595. name: "Normal",
  60596. height: math.unit(1, "meters"),
  60597. form: "feral",
  60598. default: true
  60599. },
  60600. ],
  60601. {
  60602. "anthro": {
  60603. name: "Anthro",
  60604. default: true
  60605. },
  60606. "feral": {
  60607. name: "Feral",
  60608. },
  60609. }
  60610. ))
  60611. characterMakers.push(() => makeCharacter(
  60612. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60613. {
  60614. front: {
  60615. height: math.unit(2.5, "meters"),
  60616. name: "Front",
  60617. image: {
  60618. source: "./media/characters/goa/front.svg",
  60619. extra: 1109/1013,
  60620. bottom: 150/1259
  60621. }
  60622. },
  60623. },
  60624. [
  60625. {
  60626. name: "Normal",
  60627. height: math.unit(2.5, "meters"),
  60628. default: true
  60629. },
  60630. ]
  60631. ))
  60632. characterMakers.push(() => makeCharacter(
  60633. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60634. {
  60635. front: {
  60636. height: math.unit(2, "meters"),
  60637. weight: math.unit(100, "kg"),
  60638. name: "Front",
  60639. image: {
  60640. source: "./media/characters/kiki-weavile/front.svg",
  60641. extra: 357/332,
  60642. bottom: 60/417
  60643. }
  60644. },
  60645. },
  60646. [
  60647. {
  60648. name: "Normal",
  60649. height: math.unit(2, "meters"),
  60650. default: true
  60651. },
  60652. ]
  60653. ))
  60654. characterMakers.push(() => makeCharacter(
  60655. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60656. {
  60657. side: {
  60658. height: math.unit(1.6, "meters"),
  60659. name: "Side",
  60660. image: {
  60661. source: "./media/characters/liza/side.svg",
  60662. extra: 943/915,
  60663. bottom: 72/1015
  60664. }
  60665. },
  60666. },
  60667. [
  60668. {
  60669. name: "Normal",
  60670. height: math.unit(1.6, "meters"),
  60671. default: true
  60672. },
  60673. ]
  60674. ))
  60675. characterMakers.push(() => makeCharacter(
  60676. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60677. {
  60678. side: {
  60679. height: math.unit(2.5, "meters"),
  60680. preyCapacity: math.unit(1, "people"),
  60681. name: "Side",
  60682. image: {
  60683. source: "./media/characters/persephone-sweetbreath/side.svg",
  60684. extra: 796/700,
  60685. bottom: 44/840
  60686. }
  60687. },
  60688. sideVore: {
  60689. height: math.unit(2.5, "meters"),
  60690. preyCapacity: math.unit(1, "people"),
  60691. name: "Side (Full)",
  60692. image: {
  60693. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60694. extra: 796/700,
  60695. bottom: 44/840
  60696. }
  60697. },
  60698. },
  60699. [
  60700. {
  60701. name: "Normal",
  60702. height: math.unit(2.5, "meters"),
  60703. default: true
  60704. },
  60705. ]
  60706. ))
  60707. characterMakers.push(() => makeCharacter(
  60708. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60709. {
  60710. front: {
  60711. height: math.unit(32, "meters"),
  60712. name: "Front",
  60713. image: {
  60714. source: "./media/characters/pierce/front.svg",
  60715. extra: 1695/1475,
  60716. bottom: 185/1880
  60717. }
  60718. },
  60719. side: {
  60720. height: math.unit(32, "meters"),
  60721. name: "Side",
  60722. image: {
  60723. source: "./media/characters/pierce/side.svg",
  60724. extra: 974/859,
  60725. bottom: 43/1017
  60726. }
  60727. },
  60728. frontWingless: {
  60729. height: math.unit(32, "meters"),
  60730. name: "Front (Wingless)",
  60731. image: {
  60732. source: "./media/characters/pierce/front-wingless.svg",
  60733. extra: 1695/1475,
  60734. bottom: 185/1880
  60735. }
  60736. },
  60737. sideWingless: {
  60738. height: math.unit(32, "meters"),
  60739. name: "Side (Wingless)",
  60740. image: {
  60741. source: "./media/characters/pierce/side-wingless.svg",
  60742. extra: 974/859,
  60743. bottom: 43/1017
  60744. }
  60745. },
  60746. maw: {
  60747. height: math.unit(19.3, "meters"),
  60748. name: "Maw",
  60749. image: {
  60750. source: "./media/characters/pierce/maw.svg"
  60751. }
  60752. },
  60753. },
  60754. [
  60755. {
  60756. name: "Small",
  60757. height: math.unit(8.5, "meters")
  60758. },
  60759. {
  60760. name: "Normal",
  60761. height: math.unit(32, "meters"),
  60762. default: true
  60763. },
  60764. ]
  60765. ))
  60766. characterMakers.push(() => makeCharacter(
  60767. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60768. {
  60769. front: {
  60770. height: math.unit(2.3, "meters"),
  60771. weight: math.unit(165, "kg"),
  60772. name: "Front",
  60773. image: {
  60774. source: "./media/characters/shira/front.svg",
  60775. extra: 924/919,
  60776. bottom: 17/941
  60777. },
  60778. form: "cobra",
  60779. default: true
  60780. },
  60781. back: {
  60782. height: math.unit(2.3, "meters"),
  60783. weight: math.unit(165, "kg"),
  60784. name: "Back",
  60785. image: {
  60786. source: "./media/characters/shira/back.svg",
  60787. extra: 928/922,
  60788. bottom: 18/946
  60789. },
  60790. form: "cobra"
  60791. },
  60792. frontLewd: {
  60793. height: math.unit(2.3, "meters"),
  60794. weight: math.unit(165, "kg"),
  60795. name: "Front (Lewd)",
  60796. image: {
  60797. source: "./media/characters/shira/front-lewd.svg",
  60798. extra: 924/919,
  60799. bottom: 17/941
  60800. },
  60801. form: "cobra"
  60802. },
  60803. backLewd: {
  60804. height: math.unit(2.3, "meters"),
  60805. weight: math.unit(165, "kg"),
  60806. name: "Back (Lewd)",
  60807. image: {
  60808. source: "./media/characters/shira/back-lewd.svg",
  60809. extra: 928/922,
  60810. bottom: 18/946
  60811. },
  60812. form: "cobra"
  60813. },
  60814. maw: {
  60815. height: math.unit(1.14, "feet"),
  60816. name: "Maw",
  60817. image: {
  60818. source: "./media/characters/shira/maw.svg"
  60819. },
  60820. form: "cobra"
  60821. },
  60822. magma_front: {
  60823. height: math.unit(2.3, "meters"),
  60824. weight: math.unit(165, "kg"),
  60825. name: "Front",
  60826. image: {
  60827. source: "./media/characters/shira/magma-front.svg",
  60828. extra: 1870/1693,
  60829. bottom: 24/1894
  60830. },
  60831. form: "magma",
  60832. },
  60833. magma_back: {
  60834. height: math.unit(2.3, "meters"),
  60835. weight: math.unit(165, "kg"),
  60836. name: "Back",
  60837. image: {
  60838. source: "./media/characters/shira/magma-back.svg",
  60839. extra: 1918/1756,
  60840. bottom: 46/1964
  60841. },
  60842. form: "magma",
  60843. },
  60844. },
  60845. [
  60846. {
  60847. name: "Incognito",
  60848. height: math.unit(2.3, "meters"),
  60849. allForms: true
  60850. },
  60851. {
  60852. name: "Home Size",
  60853. height: math.unit(150, "meters"),
  60854. default: true,
  60855. allForms: true
  60856. },
  60857. {
  60858. name: "Macro",
  60859. height: math.unit(2, "km"),
  60860. allForms: true
  60861. },
  60862. {
  60863. name: "Mega",
  60864. height: math.unit(30, "km"),
  60865. allForms: true
  60866. },
  60867. {
  60868. name: "Giga",
  60869. height: math.unit(450, "km"),
  60870. allForms: true
  60871. },
  60872. {
  60873. name: "Giga+",
  60874. height: math.unit(3000, "km"),
  60875. allForms: true
  60876. },
  60877. {
  60878. name: "Giga++",
  60879. height: math.unit(6000, "km"),
  60880. allForms: true
  60881. },
  60882. {
  60883. name: "Terra",
  60884. height: math.unit(80000, "km"),
  60885. allForms: true
  60886. },
  60887. {
  60888. name: "Terra+",
  60889. height: math.unit(350000, "km"),
  60890. allForms: true
  60891. },
  60892. {
  60893. name: "Solar",
  60894. height: math.unit(1e6, "km"),
  60895. allForms: true
  60896. },
  60897. ],
  60898. {
  60899. "cobra": {
  60900. name: "Cobra",
  60901. default: true
  60902. },
  60903. "magma": {
  60904. name: "Magma Dragon",
  60905. },
  60906. }
  60907. ))
  60908. characterMakers.push(() => makeCharacter(
  60909. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60910. {
  60911. front: {
  60912. height: math.unit(2, "meters"),
  60913. weight: math.unit(160, "kg"),
  60914. name: "Front",
  60915. image: {
  60916. source: "./media/characters/daxerios/front.svg",
  60917. extra: 1334/1277,
  60918. bottom: 45/1379
  60919. }
  60920. },
  60921. frontLewd: {
  60922. height: math.unit(2, "meters"),
  60923. weight: math.unit(160, "kg"),
  60924. name: "Front (Lewd)",
  60925. image: {
  60926. source: "./media/characters/daxerios/front-lewd.svg",
  60927. extra: 1334/1277,
  60928. bottom: 45/1379
  60929. }
  60930. },
  60931. dick: {
  60932. height: math.unit(2.35, "feet"),
  60933. name: "Dick",
  60934. image: {
  60935. source: "./media/characters/daxerios/dick.svg"
  60936. }
  60937. },
  60938. },
  60939. [
  60940. {
  60941. name: "\"Small\"",
  60942. height: math.unit(5, "meters")
  60943. },
  60944. {
  60945. name: "Original Size",
  60946. height: math.unit(500, "meters"),
  60947. default: true
  60948. },
  60949. {
  60950. name: "Mega",
  60951. height: math.unit(2, "km")
  60952. },
  60953. {
  60954. name: "Mega+",
  60955. height: math.unit(35, "km")
  60956. },
  60957. {
  60958. name: "Giga",
  60959. height: math.unit(250, "km")
  60960. },
  60961. {
  60962. name: "Giga+",
  60963. height: math.unit(3000, "km")
  60964. },
  60965. {
  60966. name: "Terra",
  60967. height: math.unit(25000, "km")
  60968. },
  60969. {
  60970. name: "Terra+",
  60971. height: math.unit(300000, "km")
  60972. },
  60973. {
  60974. name: "Solar",
  60975. height: math.unit(1e6, "km")
  60976. },
  60977. ]
  60978. ))
  60979. characterMakers.push(() => makeCharacter(
  60980. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60981. {
  60982. front: {
  60983. height: math.unit(8 + 4/12, "feet"),
  60984. weight: math.unit(464, "lb"),
  60985. name: "Front",
  60986. image: {
  60987. source: "./media/characters/caveat/front.svg",
  60988. extra: 1861/1678,
  60989. bottom: 40/1901
  60990. }
  60991. },
  60992. },
  60993. [
  60994. {
  60995. name: "Normal",
  60996. height: math.unit(8 + 4/12, "feet"),
  60997. default: true
  60998. },
  60999. ]
  61000. ))
  61001. characterMakers.push(() => makeCharacter(
  61002. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61003. {
  61004. front: {
  61005. height: math.unit(12, "feet"),
  61006. weight: math.unit(1800, "lb"),
  61007. name: "Front",
  61008. image: {
  61009. source: "./media/characters/centbair/front.svg",
  61010. extra: 781/663,
  61011. bottom: 25/806
  61012. }
  61013. },
  61014. frontNsfw: {
  61015. height: math.unit(12, "feet"),
  61016. weight: math.unit(1800, "lb"),
  61017. name: "Front (NSFW)",
  61018. image: {
  61019. source: "./media/characters/centbair/front-nsfw.svg",
  61020. extra: 781/663,
  61021. bottom: 25/806
  61022. }
  61023. },
  61024. back: {
  61025. height: math.unit(12, "feet"),
  61026. weight: math.unit(1800, "lb"),
  61027. name: "Back",
  61028. image: {
  61029. source: "./media/characters/centbair/back.svg",
  61030. extra: 808/761,
  61031. bottom: 19/827
  61032. }
  61033. },
  61034. dick: {
  61035. height: math.unit(6.5, "feet"),
  61036. name: "Dick",
  61037. image: {
  61038. source: "./media/characters/centbair/dick.svg"
  61039. }
  61040. },
  61041. slit: {
  61042. height: math.unit(3.25, "feet"),
  61043. name: "Slit",
  61044. image: {
  61045. source: "./media/characters/centbair/slit.svg"
  61046. }
  61047. },
  61048. },
  61049. [
  61050. {
  61051. name: "Normal",
  61052. height: math.unit(12, "feet"),
  61053. default: true
  61054. },
  61055. ]
  61056. ))
  61057. characterMakers.push(() => makeCharacter(
  61058. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61059. {
  61060. front: {
  61061. height: math.unit(5 + 7/12, "feet"),
  61062. name: "Front",
  61063. image: {
  61064. source: "./media/characters/andy/front.svg",
  61065. extra: 634/588,
  61066. bottom: 36/670
  61067. },
  61068. extraAttributes: {
  61069. "pawLength": {
  61070. name: "Paw Length",
  61071. power: 1,
  61072. type: "length",
  61073. base: math.unit(1, "feet")
  61074. },
  61075. }
  61076. },
  61077. side: {
  61078. height: math.unit(5 + 7/12, "feet"),
  61079. name: "Side",
  61080. image: {
  61081. source: "./media/characters/andy/side.svg",
  61082. extra: 641/596,
  61083. bottom: 34/675
  61084. },
  61085. extraAttributes: {
  61086. "pawLength": {
  61087. name: "Paw Length",
  61088. power: 1,
  61089. type: "length",
  61090. base: math.unit(1, "feet")
  61091. },
  61092. }
  61093. },
  61094. back: {
  61095. height: math.unit(5 + 7/12, "feet"),
  61096. name: "Back",
  61097. image: {
  61098. source: "./media/characters/andy/back.svg",
  61099. extra: 618/583,
  61100. bottom: 39/657
  61101. },
  61102. extraAttributes: {
  61103. "pawLength": {
  61104. name: "Paw Length",
  61105. power: 1,
  61106. type: "length",
  61107. base: math.unit(1, "feet")
  61108. },
  61109. }
  61110. },
  61111. paw: {
  61112. height: math.unit(1.13, "feet"),
  61113. name: "Paw",
  61114. image: {
  61115. source: "./media/characters/andy/paw.svg"
  61116. }
  61117. },
  61118. },
  61119. [
  61120. {
  61121. name: "Micro",
  61122. height: math.unit(4, "inches")
  61123. },
  61124. {
  61125. name: "Normal",
  61126. height: math.unit(5 + 7/12, "feet"),
  61127. default: true
  61128. },
  61129. {
  61130. name: "Macro",
  61131. height: math.unit(390.42, "feet")
  61132. },
  61133. ]
  61134. ))
  61135. characterMakers.push(() => makeCharacter(
  61136. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61137. {
  61138. front: {
  61139. height: math.unit(7, "feet"),
  61140. weight: math.unit(250, "lb"),
  61141. name: "Front",
  61142. image: {
  61143. source: "./media/characters/vix-titan/front.svg",
  61144. extra: 460/428,
  61145. bottom: 15/475
  61146. },
  61147. extraAttributes: {
  61148. "pawWidth": {
  61149. name: "Paw Width",
  61150. power: 1,
  61151. type: "length",
  61152. base: math.unit(0.75, "feet")
  61153. },
  61154. }
  61155. },
  61156. },
  61157. [
  61158. {
  61159. name: "Normal",
  61160. height: math.unit(7, "feet"),
  61161. default: true
  61162. },
  61163. {
  61164. name: "Giant",
  61165. height: math.unit(1500, "feet")
  61166. },
  61167. {
  61168. name: "Mega",
  61169. height: math.unit(10, "miles")
  61170. },
  61171. {
  61172. name: "Giga",
  61173. height: math.unit(150, "miles")
  61174. },
  61175. {
  61176. name: "Tera",
  61177. height: math.unit(144000, "miles")
  61178. },
  61179. ]
  61180. ))
  61181. characterMakers.push(() => makeCharacter(
  61182. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61183. {
  61184. front: {
  61185. height: math.unit(6 + 2/12, "feet"),
  61186. name: "Front",
  61187. image: {
  61188. source: "./media/characters/reiku/front.svg",
  61189. extra: 1910/1757,
  61190. bottom: 103/2013
  61191. },
  61192. extraAttributes: {
  61193. "thighThickness": {
  61194. name: "Thigh Thickness",
  61195. power: 1,
  61196. type: "length",
  61197. base: math.unit(1.12, "feet")
  61198. },
  61199. "assThickness": {
  61200. name: "Ass Thickness",
  61201. power: 1,
  61202. type: "length",
  61203. base: math.unit(1.12*2, "feet")
  61204. },
  61205. }
  61206. },
  61207. side: {
  61208. height: math.unit(6 + 2/12, "feet"),
  61209. name: "Side",
  61210. image: {
  61211. source: "./media/characters/reiku/side.svg",
  61212. extra: 1846/1748,
  61213. bottom: 99/1945
  61214. },
  61215. extraAttributes: {
  61216. "thighThickness": {
  61217. name: "Thigh Thickness",
  61218. power: 1,
  61219. type: "length",
  61220. base: math.unit(1.12, "feet")
  61221. },
  61222. "assThickness": {
  61223. name: "Ass Thickness",
  61224. power: 1,
  61225. type: "length",
  61226. base: math.unit(1.12*2, "feet")
  61227. },
  61228. }
  61229. },
  61230. back: {
  61231. height: math.unit(6 + 2/12, "feet"),
  61232. name: "Back",
  61233. image: {
  61234. source: "./media/characters/reiku/back.svg",
  61235. extra: 1941/1786,
  61236. bottom: 34/1975
  61237. },
  61238. extraAttributes: {
  61239. "thighThickness": {
  61240. name: "Thigh Thickness",
  61241. power: 1,
  61242. type: "length",
  61243. base: math.unit(1.12, "feet")
  61244. },
  61245. "assThickness": {
  61246. name: "Ass Thickness",
  61247. power: 1,
  61248. type: "length",
  61249. base: math.unit(1.12*2, "feet")
  61250. },
  61251. }
  61252. },
  61253. head: {
  61254. height: math.unit(1.8, "feet"),
  61255. name: "Head",
  61256. image: {
  61257. source: "./media/characters/reiku/head.svg"
  61258. }
  61259. },
  61260. tailTop: {
  61261. height: math.unit(8.4, "feet"),
  61262. name: "Tail (Top)",
  61263. image: {
  61264. source: "./media/characters/reiku/tail-top.svg"
  61265. }
  61266. },
  61267. tailBottom: {
  61268. height: math.unit(8.4, "feet"),
  61269. name: "Tail (Bottom)",
  61270. image: {
  61271. source: "./media/characters/reiku/tail-bottom.svg"
  61272. }
  61273. },
  61274. foot: {
  61275. height: math.unit(2.6, "feet"),
  61276. name: "Foot",
  61277. image: {
  61278. source: "./media/characters/reiku/foot.svg"
  61279. }
  61280. },
  61281. footCurled: {
  61282. height: math.unit(2.3, "feet"),
  61283. name: "Foot (Curled)",
  61284. image: {
  61285. source: "./media/characters/reiku/foot-curled.svg"
  61286. }
  61287. },
  61288. footSide: {
  61289. height: math.unit(1.26, "feet"),
  61290. name: "Foot (Side)",
  61291. image: {
  61292. source: "./media/characters/reiku/foot-side.svg"
  61293. }
  61294. },
  61295. },
  61296. [
  61297. {
  61298. name: "Normal",
  61299. height: math.unit(6 + 2/12, "feet"),
  61300. default: true
  61301. },
  61302. ]
  61303. ))
  61304. characterMakers.push(() => makeCharacter(
  61305. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61306. {
  61307. front: {
  61308. height: math.unit(7, "feet"),
  61309. weight: math.unit(500, "kg"),
  61310. name: "Front",
  61311. image: {
  61312. source: "./media/characters/cialda/front.svg",
  61313. extra: 912/745,
  61314. bottom: 55/967
  61315. }
  61316. },
  61317. },
  61318. [
  61319. {
  61320. name: "Normal",
  61321. height: math.unit(7, "feet"),
  61322. default: true
  61323. },
  61324. ]
  61325. ))
  61326. characterMakers.push(() => makeCharacter(
  61327. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61328. {
  61329. side: {
  61330. height: math.unit(6, "feet"),
  61331. weight: math.unit(600, "lb"),
  61332. preyCapacity: math.unit(25, "liters"),
  61333. name: "Side",
  61334. image: {
  61335. source: "./media/characters/darkkin/side.svg",
  61336. extra: 1597/1447,
  61337. bottom: 101/1698
  61338. }
  61339. },
  61340. },
  61341. [
  61342. {
  61343. name: "Canon Height",
  61344. height: math.unit(568, "feet"),
  61345. default: true
  61346. },
  61347. ]
  61348. ))
  61349. characterMakers.push(() => makeCharacter(
  61350. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61351. {
  61352. front: {
  61353. height: math.unit(6, "feet"),
  61354. weight: math.unit(1500, "lb"),
  61355. preyCapacity: math.unit(3, "people"),
  61356. name: "Front",
  61357. image: {
  61358. source: "./media/characters/livnia/front.svg",
  61359. extra: 934/932,
  61360. bottom: 83/1017
  61361. }
  61362. },
  61363. back: {
  61364. height: math.unit(6, "feet"),
  61365. weight: math.unit(1500, "lb"),
  61366. preyCapacity: math.unit(3, "people"),
  61367. name: "Back",
  61368. image: {
  61369. source: "./media/characters/livnia/back.svg",
  61370. extra: 916/915,
  61371. bottom: 58/974
  61372. }
  61373. },
  61374. head: {
  61375. height: math.unit(1.53, "feet"),
  61376. name: "Head",
  61377. image: {
  61378. source: "./media/characters/livnia/head.svg"
  61379. }
  61380. },
  61381. maw: {
  61382. height: math.unit(0.78, "feet"),
  61383. name: "Maw",
  61384. image: {
  61385. source: "./media/characters/livnia/maw.svg"
  61386. }
  61387. },
  61388. genitals: {
  61389. height: math.unit(0.35, "feet"),
  61390. name: "Genitals",
  61391. image: {
  61392. source: "./media/characters/livnia/genitals.svg"
  61393. }
  61394. },
  61395. },
  61396. [
  61397. {
  61398. name: "Normal",
  61399. height: math.unit(1000, "feet"),
  61400. default: true
  61401. },
  61402. ]
  61403. ))
  61404. characterMakers.push(() => makeCharacter(
  61405. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61406. {
  61407. front: {
  61408. height: math.unit(4, "feet"),
  61409. weight: math.unit(73, "lb"),
  61410. name: "Front",
  61411. image: {
  61412. source: "./media/characters/hayaku/front.svg",
  61413. extra: 1011/888,
  61414. bottom: 33/1044
  61415. }
  61416. },
  61417. back: {
  61418. height: math.unit(4, "feet"),
  61419. weight: math.unit(73, "lb"),
  61420. name: "Back",
  61421. image: {
  61422. source: "./media/characters/hayaku/back.svg",
  61423. extra: 1040/930,
  61424. bottom: 20/1060
  61425. }
  61426. },
  61427. },
  61428. [
  61429. {
  61430. name: "Normal",
  61431. height: math.unit(4, "feet"),
  61432. default: true
  61433. },
  61434. ]
  61435. ))
  61436. characterMakers.push(() => makeCharacter(
  61437. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61438. {
  61439. front: {
  61440. height: math.unit(6 + 7/12, "feet"),
  61441. weight: math.unit(300, "lb"),
  61442. name: "Front",
  61443. image: {
  61444. source: "./media/characters/athena-bryzant/front.svg",
  61445. extra: 870/835,
  61446. bottom: 33/903
  61447. }
  61448. },
  61449. back: {
  61450. height: math.unit(6 + 7/12, "feet"),
  61451. weight: math.unit(300, "lb"),
  61452. name: "Back",
  61453. image: {
  61454. source: "./media/characters/athena-bryzant/back.svg",
  61455. extra: 858/823,
  61456. bottom: 30/888
  61457. }
  61458. },
  61459. head: {
  61460. height: math.unit(2.38, "feet"),
  61461. name: "Head",
  61462. image: {
  61463. source: "./media/characters/athena-bryzant/head.svg"
  61464. }
  61465. },
  61466. wings: {
  61467. height: math.unit(2.85, "feet"),
  61468. name: "Wings",
  61469. image: {
  61470. source: "./media/characters/athena-bryzant/wings.svg"
  61471. }
  61472. },
  61473. },
  61474. [
  61475. {
  61476. name: "Normal",
  61477. height: math.unit(6 + 7/12, "feet"),
  61478. default: true
  61479. },
  61480. {
  61481. name: "Big",
  61482. height: math.unit(8, "feet")
  61483. },
  61484. {
  61485. name: "Very Big",
  61486. height: math.unit(11, "feet")
  61487. },
  61488. ]
  61489. ))
  61490. characterMakers.push(() => makeCharacter(
  61491. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61492. {
  61493. side: {
  61494. height: math.unit(3, "meters"),
  61495. weight: math.unit(7500, "kg"),
  61496. preyCapacity: math.unit(1e12, "people"),
  61497. name: "Side",
  61498. image: {
  61499. source: "./media/characters/zel-kesh/side.svg",
  61500. extra: 910/407,
  61501. bottom: 147/1057
  61502. }
  61503. },
  61504. },
  61505. [
  61506. {
  61507. name: "Normal",
  61508. height: math.unit(3, "meters"),
  61509. default: true
  61510. },
  61511. ]
  61512. ))
  61513. characterMakers.push(() => makeCharacter(
  61514. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61515. {
  61516. front: {
  61517. height: math.unit(2, "meters"),
  61518. weight: math.unit(95, "kg"),
  61519. name: "Front",
  61520. image: {
  61521. source: "./media/characters/kane-fox/front.svg",
  61522. extra: 945/888,
  61523. bottom: 27/972
  61524. }
  61525. },
  61526. back: {
  61527. height: math.unit(2, "meters"),
  61528. weight: math.unit(95, "kg"),
  61529. name: "Back",
  61530. image: {
  61531. source: "./media/characters/kane-fox/back.svg",
  61532. extra: 959/914,
  61533. bottom: 15/974
  61534. }
  61535. },
  61536. frontLewd: {
  61537. height: math.unit(2, "meters"),
  61538. weight: math.unit(95, "kg"),
  61539. name: "Front (Lewd)",
  61540. image: {
  61541. source: "./media/characters/kane-fox/front-lewd.svg",
  61542. extra: 945/888,
  61543. bottom: 27/972
  61544. }
  61545. },
  61546. },
  61547. [
  61548. {
  61549. name: "Home Size",
  61550. height: math.unit(2, "meters"),
  61551. default: true
  61552. },
  61553. {
  61554. name: "Macro",
  61555. height: math.unit(200, "meters")
  61556. },
  61557. {
  61558. name: "Small Mega",
  61559. height: math.unit(3, "km")
  61560. },
  61561. {
  61562. name: "Mega",
  61563. height: math.unit(50, "km")
  61564. },
  61565. {
  61566. name: "Giga",
  61567. height: math.unit(200, "km")
  61568. },
  61569. {
  61570. name: "Giga+",
  61571. height: math.unit(2500, "km")
  61572. },
  61573. {
  61574. name: "Terra",
  61575. height: math.unit(70000, "km")
  61576. },
  61577. {
  61578. name: "Terra+",
  61579. height: math.unit(150000, "km")
  61580. },
  61581. {
  61582. name: "Terra++",
  61583. height: math.unit(400000, "km")
  61584. },
  61585. ]
  61586. ))
  61587. characterMakers.push(() => makeCharacter(
  61588. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61589. {
  61590. otter_front: {
  61591. height: math.unit(1.8, "meters"),
  61592. weight: math.unit(90, "kg"),
  61593. name: "Front",
  61594. image: {
  61595. source: "./media/characters/ayranus/otter-front.svg",
  61596. extra: 468/452,
  61597. bottom: 43/511
  61598. },
  61599. form: "otter",
  61600. },
  61601. otter_frontLewd: {
  61602. height: math.unit(1.8, "meters"),
  61603. weight: math.unit(90, "kg"),
  61604. name: "Front (Lewd)",
  61605. image: {
  61606. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61607. extra: 468/452,
  61608. bottom: 43/511
  61609. },
  61610. form: "otter",
  61611. },
  61612. lionbat_front: {
  61613. height: math.unit(1.8, "meters"),
  61614. weight: math.unit(90, "kg"),
  61615. name: "Front (Lewd)",
  61616. image: {
  61617. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61618. extra: 797/740,
  61619. bottom: 78/875
  61620. },
  61621. form: "lionbat",
  61622. },
  61623. paw: {
  61624. height: math.unit(1.5, "feet"),
  61625. name: "Paw",
  61626. image: {
  61627. source: "./media/characters/ayranus/paw.svg"
  61628. },
  61629. },
  61630. },
  61631. [
  61632. {
  61633. name: "Incognito",
  61634. height: math.unit(1.8, "meters"),
  61635. allForms: true
  61636. },
  61637. {
  61638. name: "Macro",
  61639. height: math.unit(60, "meters"),
  61640. allForms: true
  61641. },
  61642. {
  61643. name: "Macro+",
  61644. height: math.unit(200, "meters"),
  61645. allForms: true
  61646. },
  61647. {
  61648. name: "Mega",
  61649. height: math.unit(35, "km"),
  61650. allForms: true
  61651. },
  61652. {
  61653. name: "Giga",
  61654. height: math.unit(220, "km"),
  61655. allForms: true
  61656. },
  61657. {
  61658. name: "Giga+",
  61659. height: math.unit(1500, "km"),
  61660. allForms: true
  61661. },
  61662. {
  61663. name: "Terra",
  61664. height: math.unit(13000, "km"),
  61665. allForms: true
  61666. },
  61667. {
  61668. name: "Terra+",
  61669. height: math.unit(500000, "km"),
  61670. allForms: true
  61671. },
  61672. {
  61673. name: "Galactic",
  61674. height: math.unit(486080, "parsecs"),
  61675. default: true,
  61676. allForms: true
  61677. },
  61678. ],
  61679. {
  61680. "otter": {
  61681. name: "Otter",
  61682. default: true
  61683. },
  61684. "lionbat": {
  61685. name: "Lionbat",
  61686. },
  61687. }
  61688. ))
  61689. characterMakers.push(() => makeCharacter(
  61690. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61691. {
  61692. front: {
  61693. height: math.unit(7 + 4/12, "feet"),
  61694. weight: math.unit(400, "lb"),
  61695. name: "Front",
  61696. image: {
  61697. source: "./media/characters/proxy/front.svg",
  61698. extra: 1605/1542,
  61699. bottom: 55/1660
  61700. }
  61701. },
  61702. side: {
  61703. height: math.unit(7 + 4/12, "feet"),
  61704. weight: math.unit(400, "lb"),
  61705. name: "Side",
  61706. image: {
  61707. source: "./media/characters/proxy/side.svg",
  61708. extra: 794/759,
  61709. bottom: 6/800
  61710. }
  61711. },
  61712. hand: {
  61713. height: math.unit(1.54, "feet"),
  61714. name: "Hand",
  61715. image: {
  61716. source: "./media/characters/proxy/hand.svg"
  61717. }
  61718. },
  61719. paw: {
  61720. height: math.unit(1.53, "feet"),
  61721. name: "Paw",
  61722. image: {
  61723. source: "./media/characters/proxy/paw.svg"
  61724. }
  61725. },
  61726. maw: {
  61727. height: math.unit(1.9, "feet"),
  61728. name: "Maw",
  61729. image: {
  61730. source: "./media/characters/proxy/maw.svg"
  61731. }
  61732. },
  61733. },
  61734. [
  61735. {
  61736. name: "Normal",
  61737. height: math.unit(7 + 4/12, "feet"),
  61738. default: true
  61739. },
  61740. ]
  61741. ))
  61742. characterMakers.push(() => makeCharacter(
  61743. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61744. {
  61745. front: {
  61746. height: math.unit(4, "meters"),
  61747. name: "Front",
  61748. image: {
  61749. source: "./media/characters/crocozilla/front.svg",
  61750. extra: 1790/1742,
  61751. bottom: 78/1868
  61752. }
  61753. },
  61754. },
  61755. [
  61756. {
  61757. name: "Normal",
  61758. height: math.unit(4, "meters"),
  61759. default: true
  61760. },
  61761. ]
  61762. ))
  61763. characterMakers.push(() => makeCharacter(
  61764. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61765. {
  61766. front: {
  61767. height: math.unit(1.8, "meters"),
  61768. weight: math.unit(120, "kg"),
  61769. name: "Front",
  61770. image: {
  61771. source: "./media/characters/kurz/front.svg",
  61772. extra: 1960/1824,
  61773. bottom: 41/2001
  61774. }
  61775. },
  61776. back: {
  61777. height: math.unit(1.8, "meters"),
  61778. weight: math.unit(120, "kg"),
  61779. name: "Back",
  61780. image: {
  61781. source: "./media/characters/kurz/back.svg",
  61782. extra: 1906/1787,
  61783. bottom: 60/1966
  61784. }
  61785. },
  61786. frontLewd: {
  61787. height: math.unit(1.8, "meters"),
  61788. weight: math.unit(120, "kg"),
  61789. name: "Front (Lewd)",
  61790. image: {
  61791. source: "./media/characters/kurz/front-lewd.svg",
  61792. extra: 1960/1824,
  61793. bottom: 41/2001
  61794. }
  61795. },
  61796. maw: {
  61797. height: math.unit(0.69, "meters"),
  61798. name: "Maw",
  61799. image: {
  61800. source: "./media/characters/kurz/maw.svg"
  61801. }
  61802. },
  61803. },
  61804. [
  61805. {
  61806. name: "Original Size",
  61807. height: math.unit(1.8, "meters")
  61808. },
  61809. {
  61810. name: "Incognito Size",
  61811. height: math.unit(2.4, "meters"),
  61812. default: true
  61813. },
  61814. {
  61815. name: "Macro",
  61816. height: math.unit(30, "meters")
  61817. },
  61818. {
  61819. name: "Macro+",
  61820. height: math.unit(250, "meters")
  61821. },
  61822. {
  61823. name: "Mega",
  61824. height: math.unit(2, "km")
  61825. },
  61826. {
  61827. name: "Mega+",
  61828. height: math.unit(35, "km")
  61829. },
  61830. {
  61831. name: "Mega++",
  61832. height: math.unit(75, "km")
  61833. },
  61834. {
  61835. name: "Giga",
  61836. height: math.unit(250, "km")
  61837. },
  61838. {
  61839. name: "Terra",
  61840. height: math.unit(15000, "km")
  61841. },
  61842. {
  61843. name: "Terra+",
  61844. height: math.unit(2250000, "km")
  61845. },
  61846. ]
  61847. ))
  61848. characterMakers.push(() => makeCharacter(
  61849. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61850. {
  61851. front: {
  61852. height: math.unit(16 + 3/12, "feet"),
  61853. weight: math.unit(3575, "lb"),
  61854. name: "Front",
  61855. image: {
  61856. source: "./media/characters/nikita/front.svg",
  61857. extra: 1064/955,
  61858. bottom: 47/1111
  61859. }
  61860. },
  61861. },
  61862. [
  61863. {
  61864. name: "Normal",
  61865. height: math.unit(16 + 3/12, "feet"),
  61866. default: true
  61867. },
  61868. {
  61869. name: "Big",
  61870. height: math.unit(21, "feet")
  61871. },
  61872. {
  61873. name: "Biggest",
  61874. height: math.unit(50, "feet")
  61875. },
  61876. ]
  61877. ))
  61878. characterMakers.push(() => makeCharacter(
  61879. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61880. {
  61881. front: {
  61882. height: math.unit(1.92, "m"),
  61883. weight: math.unit(76, "kg"),
  61884. name: "Front",
  61885. image: {
  61886. source: "./media/characters/kyara/front.svg",
  61887. extra: 1550/1438,
  61888. bottom: 139/1689
  61889. }
  61890. },
  61891. back: {
  61892. height: math.unit(1.92, "m"),
  61893. weight: math.unit(76, "kg"),
  61894. name: "Back",
  61895. image: {
  61896. source: "./media/characters/kyara/back.svg",
  61897. extra: 1523/1427,
  61898. bottom: 83/1606
  61899. }
  61900. },
  61901. head: {
  61902. height: math.unit(1.22, "feet"),
  61903. name: "Head",
  61904. image: {
  61905. source: "./media/characters/kyara/head.svg"
  61906. }
  61907. },
  61908. maw: {
  61909. height: math.unit(0.73, "feet"),
  61910. name: "Maw",
  61911. image: {
  61912. source: "./media/characters/kyara/maw.svg"
  61913. }
  61914. },
  61915. paws: {
  61916. height: math.unit(0.95, "feet"),
  61917. name: "Paws",
  61918. image: {
  61919. source: "./media/characters/kyara/paws.svg"
  61920. }
  61921. },
  61922. },
  61923. [
  61924. {
  61925. name: "Normal",
  61926. height: math.unit(1.92, "meters"),
  61927. default: true
  61928. },
  61929. {
  61930. name: "Mini Macro",
  61931. height: math.unit(192, "meters")
  61932. },
  61933. {
  61934. name: "Macro",
  61935. height: math.unit(480, "meters")
  61936. },
  61937. {
  61938. name: "Mega Macro",
  61939. height: math.unit(1440, "meters")
  61940. },
  61941. ]
  61942. ))
  61943. characterMakers.push(() => makeCharacter(
  61944. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61945. {
  61946. front: {
  61947. height: math.unit(6, "feet"),
  61948. weight: math.unit(160, "lbs"),
  61949. preyCapacity: math.unit(0.05, "people"),
  61950. name: "Front",
  61951. image: {
  61952. source: "./media/characters/layla-amari/front.svg",
  61953. extra: 1922/1723,
  61954. bottom: 90/2012
  61955. }
  61956. },
  61957. back: {
  61958. height: math.unit(6, "feet"),
  61959. weight: math.unit(160, "lbs"),
  61960. preyCapacity: math.unit(0.05, "people"),
  61961. name: "Back",
  61962. image: {
  61963. source: "./media/characters/layla-amari/back.svg",
  61964. extra: 1917/1718,
  61965. bottom: 50/1967
  61966. }
  61967. },
  61968. frontDressed: {
  61969. height: math.unit(6, "feet"),
  61970. weight: math.unit(160, "lbs"),
  61971. preyCapacity: math.unit(0.05, "people"),
  61972. name: "Front (Dressed)",
  61973. image: {
  61974. source: "./media/characters/layla-amari/front-dressed.svg",
  61975. extra: 1922/1723,
  61976. bottom: 90/2012
  61977. }
  61978. },
  61979. face: {
  61980. height: math.unit(0.93, "feet"),
  61981. name: "Face",
  61982. image: {
  61983. source: "./media/characters/layla-amari/face.svg"
  61984. }
  61985. },
  61986. hand: {
  61987. height: math.unit(0.66 , "feet"),
  61988. name: "Hand",
  61989. image: {
  61990. source: "./media/characters/layla-amari/hand.svg"
  61991. }
  61992. },
  61993. foot: {
  61994. height: math.unit(1, "feet"),
  61995. name: "Foot",
  61996. image: {
  61997. source: "./media/characters/layla-amari/foot.svg"
  61998. }
  61999. },
  62000. necklace: {
  62001. height: math.unit(0.32, "feet"),
  62002. name: "Necklace",
  62003. image: {
  62004. source: "./media/characters/layla-amari/necklace.svg"
  62005. }
  62006. },
  62007. nipple: {
  62008. height: math.unit(0.2, "feet"),
  62009. name: "Nipple",
  62010. image: {
  62011. source: "./media/characters/layla-amari/nipple.svg"
  62012. }
  62013. },
  62014. slit: {
  62015. height: math.unit(0.26, "feet"),
  62016. name: "Slit",
  62017. image: {
  62018. source: "./media/characters/layla-amari/slit.svg"
  62019. }
  62020. },
  62021. },
  62022. [
  62023. {
  62024. name: "Natural",
  62025. height: math.unit(825, "feet"),
  62026. default: true
  62027. },
  62028. {
  62029. name: "Enhanced",
  62030. height: math.unit(8250, "feet")
  62031. },
  62032. {
  62033. name: "Apparent Size",
  62034. height: math.unit(9.04363e+8, "meters")
  62035. },
  62036. ]
  62037. ))
  62038. characterMakers.push(() => makeCharacter(
  62039. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62040. {
  62041. front: {
  62042. height: math.unit(1.3, "meters"),
  62043. name: "Front",
  62044. image: {
  62045. source: "./media/characters/percy/front.svg",
  62046. extra: 1444/1289,
  62047. bottom: 54/1498
  62048. }
  62049. },
  62050. },
  62051. [
  62052. {
  62053. name: "Normal",
  62054. height: math.unit(1.3, "meters"),
  62055. default: true
  62056. },
  62057. ]
  62058. ))
  62059. characterMakers.push(() => makeCharacter(
  62060. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62061. {
  62062. side: {
  62063. height: math.unit(10, "meters"),
  62064. name: "Side",
  62065. image: {
  62066. source: "./media/characters/grev/side.svg",
  62067. extra: 653/266,
  62068. bottom: 77/730
  62069. }
  62070. },
  62071. head: {
  62072. height: math.unit(16.2, "m"),
  62073. name: "Head",
  62074. image: {
  62075. source: "./media/characters/grev/head.svg"
  62076. }
  62077. },
  62078. dick: {
  62079. height: math.unit(2.8135932034, "m"),
  62080. name: "Dick",
  62081. image: {
  62082. source: "./media/characters/grev/dick.svg"
  62083. }
  62084. },
  62085. },
  62086. [
  62087. {
  62088. name: "Friend-Sized",
  62089. height: math.unit(80, "cm")
  62090. },
  62091. {
  62092. name: "Normal",
  62093. height: math.unit(10, "meters"),
  62094. default: true
  62095. },
  62096. {
  62097. name: "Macro",
  62098. height: math.unit(200, "meters")
  62099. },
  62100. ]
  62101. ))
  62102. characterMakers.push(() => makeCharacter(
  62103. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62104. {
  62105. front: {
  62106. height: math.unit(19.75, "feet"),
  62107. weight: math.unit(20000, "lb"),
  62108. name: "Front",
  62109. image: {
  62110. source: "./media/characters/azuuca/front.svg",
  62111. extra: 1593/1511,
  62112. bottom: 55/1648
  62113. }
  62114. },
  62115. },
  62116. [
  62117. {
  62118. name: "Normal",
  62119. height: math.unit(19.75, "feet"),
  62120. default: true
  62121. },
  62122. ]
  62123. ))
  62124. characterMakers.push(() => makeCharacter(
  62125. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62126. {
  62127. front: {
  62128. height: math.unit(15, "feet"),
  62129. weight: math.unit(1500, "lb"),
  62130. name: "Front",
  62131. image: {
  62132. source: "./media/characters/valuria/front.svg",
  62133. extra: 1588/1486,
  62134. bottom: 31/1619
  62135. }
  62136. },
  62137. },
  62138. [
  62139. {
  62140. name: "Normal",
  62141. height: math.unit(15, "feet"),
  62142. default: true
  62143. },
  62144. {
  62145. name: "Small",
  62146. height: math.unit(500, "feet")
  62147. },
  62148. {
  62149. name: "Macro",
  62150. height: math.unit(4000, "feet")
  62151. },
  62152. {
  62153. name: "Mega Macro",
  62154. height: math.unit(2000, "miles")
  62155. },
  62156. {
  62157. name: "Giga Macro",
  62158. height: math.unit(3e6, "miles")
  62159. },
  62160. ]
  62161. ))
  62162. characterMakers.push(() => makeCharacter(
  62163. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62164. {
  62165. front: {
  62166. height: math.unit(3500, "solarradii"),
  62167. name: "Front",
  62168. image: {
  62169. source: "./media/characters/terigaia/front.svg",
  62170. extra: 1531/1451,
  62171. bottom: 98/1629
  62172. }
  62173. },
  62174. },
  62175. [
  62176. {
  62177. name: "Normal",
  62178. height: math.unit(3500, "solarradii"),
  62179. default: true
  62180. },
  62181. ]
  62182. ))
  62183. characterMakers.push(() => makeCharacter(
  62184. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62185. {
  62186. front: {
  62187. height: math.unit(9.34, "feet"),
  62188. weight: math.unit(600, "lb"),
  62189. name: "Front",
  62190. image: {
  62191. source: "./media/characters/blair-blaziken/front.svg",
  62192. extra: 1557/1462,
  62193. bottom: 55/1612
  62194. }
  62195. },
  62196. },
  62197. [
  62198. {
  62199. name: "Normal",
  62200. height: math.unit(9.34, "feet"),
  62201. default: true
  62202. },
  62203. ]
  62204. ))
  62205. characterMakers.push(() => makeCharacter(
  62206. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62207. {
  62208. pistrogre_front: {
  62209. height: math.unit(10, "feet"),
  62210. weight: math.unit(10, "tons"),
  62211. name: "Front",
  62212. image: {
  62213. source: "./media/characters/braxia/pistrogre-front.svg",
  62214. extra: 1531/1334,
  62215. bottom: 114/1645
  62216. },
  62217. form: "pistrogre",
  62218. default: true
  62219. },
  62220. human_front: {
  62221. height: math.unit(10, "feet"),
  62222. weight: math.unit(10, "tons"),
  62223. name: "Front",
  62224. image: {
  62225. source: "./media/characters/braxia/human-front.svg",
  62226. extra: 1574/1501,
  62227. bottom: 37/1611
  62228. },
  62229. form: "human",
  62230. default: true
  62231. },
  62232. },
  62233. [
  62234. {
  62235. name: "Normal",
  62236. height: math.unit(10, "feet"),
  62237. default: true,
  62238. allForms: true
  62239. },
  62240. {
  62241. name: "Macro",
  62242. height: math.unit(1000, "feet"),
  62243. allForms: true
  62244. },
  62245. {
  62246. name: "Mega Macro",
  62247. height: math.unit(100, "miles"),
  62248. allForms: true
  62249. },
  62250. {
  62251. name: "Cosmic",
  62252. height: math.unit(1000000, "lightyears"),
  62253. allForms: true
  62254. },
  62255. {
  62256. name: "ϐѮԆԬӁꭍϞԢ",
  62257. height: math.unit(1000, "multiverses"),
  62258. allForms: true
  62259. },
  62260. ],
  62261. {
  62262. "pistrogre": {
  62263. name: "Pistrogre",
  62264. default: true
  62265. },
  62266. "human": {
  62267. name: "Human",
  62268. },
  62269. }
  62270. ))
  62271. characterMakers.push(() => makeCharacter(
  62272. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62273. {
  62274. front: {
  62275. height: math.unit(6 + 1/12, "feet"),
  62276. weight: math.unit(280, "lb"),
  62277. name: "Front",
  62278. image: {
  62279. source: "./media/characters/kiriga-yato/front.svg",
  62280. extra: 445/394,
  62281. bottom: 11/456
  62282. }
  62283. },
  62284. },
  62285. [
  62286. {
  62287. name: "Descended",
  62288. height: math.unit(3, "feet")
  62289. },
  62290. {
  62291. name: "Average",
  62292. height: math.unit(6 + 1/12, "feet"),
  62293. default: true
  62294. },
  62295. {
  62296. name: "Ascended",
  62297. height: math.unit(9 + 2/12, "feet")
  62298. },
  62299. ]
  62300. ))
  62301. characterMakers.push(() => makeCharacter(
  62302. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62303. {
  62304. front: {
  62305. height: math.unit(6, "feet"),
  62306. weight: math.unit(150, "lb"),
  62307. name: "Front",
  62308. image: {
  62309. source: "./media/characters/kylie/front.svg",
  62310. extra: 1114/1046,
  62311. bottom: 65/1179
  62312. },
  62313. extraAttributes: {
  62314. "hoofSize": {
  62315. name: "Hoof Size",
  62316. power: 2,
  62317. type: "area",
  62318. base: math.unit(0.034, "m^2")
  62319. },
  62320. "footSize": {
  62321. name: "Foot Size",
  62322. power: 2,
  62323. type: "area",
  62324. base: math.unit(0.75, "m^2")
  62325. },
  62326. }
  62327. },
  62328. side: {
  62329. height: math.unit(6, "feet"),
  62330. weight: math.unit(150, "lb"),
  62331. name: "Side",
  62332. image: {
  62333. source: "./media/characters/kylie/side.svg",
  62334. extra: 1178/1110,
  62335. bottom: 21/1199
  62336. },
  62337. extraAttributes: {
  62338. "hoofSize": {
  62339. name: "Hoof Size",
  62340. power: 2,
  62341. type: "area",
  62342. base: math.unit(0.034, "m^2")
  62343. },
  62344. "footSize": {
  62345. name: "Foot Size",
  62346. power: 2,
  62347. type: "area",
  62348. base: math.unit(0.75, "m^2")
  62349. },
  62350. }
  62351. },
  62352. back: {
  62353. height: math.unit(6, "feet"),
  62354. weight: math.unit(150, "lb"),
  62355. name: "Back",
  62356. image: {
  62357. source: "./media/characters/kylie/back.svg",
  62358. extra: 1115/1047,
  62359. bottom: 66/1181
  62360. },
  62361. extraAttributes: {
  62362. "hoofSize": {
  62363. name: "Hoof Size",
  62364. power: 2,
  62365. type: "area",
  62366. base: math.unit(0.034, "m^2")
  62367. },
  62368. "footSize": {
  62369. name: "Foot Size",
  62370. power: 2,
  62371. type: "area",
  62372. base: math.unit(0.75, "m^2")
  62373. },
  62374. }
  62375. },
  62376. head: {
  62377. height: math.unit(1.85, "feet"),
  62378. name: "Head",
  62379. image: {
  62380. source: "./media/characters/kylie/head.svg"
  62381. }
  62382. },
  62383. },
  62384. [
  62385. {
  62386. name: "Normal",
  62387. height: math.unit(90, "meters"),
  62388. default: true
  62389. },
  62390. ]
  62391. ))
  62392. characterMakers.push(() => makeCharacter(
  62393. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62394. {
  62395. front: {
  62396. height: math.unit(245, "feet"),
  62397. weight: math.unit(400000, "lb"),
  62398. name: "Front",
  62399. image: {
  62400. source: "./media/characters/sabado/front.svg",
  62401. extra: 1309/1164,
  62402. bottom: 29/1338
  62403. }
  62404. },
  62405. },
  62406. [
  62407. {
  62408. name: "Normal",
  62409. height: math.unit(245, "feet"),
  62410. default: true
  62411. },
  62412. ]
  62413. ))
  62414. characterMakers.push(() => makeCharacter(
  62415. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62416. {
  62417. shark_front: {
  62418. height: math.unit(2, "meters"),
  62419. weight: math.unit(200, "kg"),
  62420. name: "Front",
  62421. image: {
  62422. source: "./media/characters/zechal/shark-front.svg",
  62423. extra: 969/925,
  62424. bottom: 74/1043
  62425. },
  62426. form: "shark",
  62427. },
  62428. shark_back: {
  62429. height: math.unit(2, "meters"),
  62430. weight: math.unit(200, "kg"),
  62431. name: "Back",
  62432. image: {
  62433. source: "./media/characters/zechal/shark-back.svg",
  62434. extra: 994/949,
  62435. bottom: 176/1170
  62436. },
  62437. form: "shark",
  62438. },
  62439. shark_frontLewd: {
  62440. height: math.unit(2, "meters"),
  62441. weight: math.unit(200, "kg"),
  62442. name: "Front (Lewd)",
  62443. image: {
  62444. source: "./media/characters/zechal/shark-front-lewd.svg",
  62445. extra: 969/925,
  62446. bottom: 74/1043
  62447. },
  62448. form: "shark",
  62449. },
  62450. shark_side: {
  62451. height: math.unit(1.56, "meters"),
  62452. weight: math.unit(200, "kg"),
  62453. name: "Side",
  62454. image: {
  62455. source: "./media/characters/zechal/shark-side.svg"
  62456. },
  62457. form: "shark",
  62458. },
  62459. dragon_front: {
  62460. height: math.unit(2, "meters"),
  62461. weight: math.unit(200, "kg"),
  62462. name: "Front",
  62463. image: {
  62464. source: "./media/characters/zechal/dragon-front.svg",
  62465. extra: 1041/925,
  62466. bottom: 74/1115
  62467. },
  62468. form: "dragon",
  62469. },
  62470. dragon_back: {
  62471. height: math.unit(2, "meters"),
  62472. weight: math.unit(200, "kg"),
  62473. name: "Back",
  62474. image: {
  62475. source: "./media/characters/zechal/dragon-back.svg",
  62476. extra: 1061/949,
  62477. bottom: 176/1237
  62478. },
  62479. form: "dragon",
  62480. },
  62481. dragon_frontLewd: {
  62482. height: math.unit(2, "meters"),
  62483. weight: math.unit(200, "kg"),
  62484. name: "Front (Lewd)",
  62485. image: {
  62486. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62487. extra: 1041/925,
  62488. bottom: 74/1115
  62489. },
  62490. form: "dragon",
  62491. },
  62492. dragon_side: {
  62493. height: math.unit(1.56, "meters"),
  62494. weight: math.unit(200, "kg"),
  62495. name: "Side",
  62496. image: {
  62497. source: "./media/characters/zechal/dragon-side.svg"
  62498. },
  62499. form: "dragon",
  62500. },
  62501. foot: {
  62502. height: math.unit(0.5, "meters"),
  62503. name: "Foot",
  62504. image: {
  62505. source: "./media/characters/zechal/foot.svg"
  62506. }
  62507. },
  62508. sheathFront: {
  62509. height: math.unit(0.45, "meters"),
  62510. name: "Sheath (Front)",
  62511. image: {
  62512. source: "./media/characters/zechal/sheath-front.svg"
  62513. }
  62514. },
  62515. sheathSide: {
  62516. height: math.unit(0.45, "meters"),
  62517. name: "Sheath (Side)",
  62518. image: {
  62519. source: "./media/characters/zechal/sheath-side.svg"
  62520. }
  62521. },
  62522. },
  62523. [
  62524. {
  62525. name: "Incognito",
  62526. height: math.unit(2, "meters"),
  62527. allForms: true
  62528. },
  62529. {
  62530. name: "Small Rampage",
  62531. height: math.unit(25, "meters"),
  62532. allForms: true
  62533. },
  62534. {
  62535. name: "Home Size",
  62536. height: math.unit(250, "meters"),
  62537. allForms: true,
  62538. default: true
  62539. },
  62540. {
  62541. name: "Macro+",
  62542. height: math.unit(700, "meters"),
  62543. allForms: true
  62544. },
  62545. {
  62546. name: "Small Mega",
  62547. height: math.unit(3, "km"),
  62548. allForms: true
  62549. },
  62550. {
  62551. name: "Mega",
  62552. height: math.unit(15, "km"),
  62553. allForms: true
  62554. },
  62555. {
  62556. name: "Giga",
  62557. height: math.unit(300, "km"),
  62558. allForms: true
  62559. },
  62560. {
  62561. name: "Giga+",
  62562. height: math.unit(1750, "km"),
  62563. allForms: true
  62564. },
  62565. {
  62566. name: "Continental",
  62567. height: math.unit(5000, "km"),
  62568. allForms: true
  62569. },
  62570. {
  62571. name: "Terra",
  62572. height: math.unit(20000, "km"),
  62573. allForms: true
  62574. },
  62575. {
  62576. name: "Terra+",
  62577. height: math.unit(300000, "km"),
  62578. allForms: true
  62579. },
  62580. {
  62581. name: "Solar",
  62582. height: math.unit(40000000, "km"),
  62583. allForms: true
  62584. },
  62585. {
  62586. name: "Galactic",
  62587. height: math.unit(810133, "parsecs"),
  62588. allForms: true
  62589. },
  62590. {
  62591. name: "Universal",
  62592. height: math.unit(25, "universes"),
  62593. allForms: true
  62594. },
  62595. ],
  62596. {
  62597. "shark": {
  62598. name: "Shark",
  62599. default: true
  62600. },
  62601. "dragon": {
  62602. name: "Dragon",
  62603. },
  62604. }
  62605. ))
  62606. characterMakers.push(() => makeCharacter(
  62607. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62608. {
  62609. front: {
  62610. height: math.unit(2.2, "meters"),
  62611. weight: math.unit(150, "kg"),
  62612. name: "Front",
  62613. image: {
  62614. source: "./media/characters/sergis/front.svg",
  62615. extra: 1314/1312,
  62616. bottom: 112/1426
  62617. }
  62618. },
  62619. back: {
  62620. height: math.unit(2.2, "meters"),
  62621. weight: math.unit(150, "kg"),
  62622. name: "Back",
  62623. image: {
  62624. source: "./media/characters/sergis/back.svg",
  62625. extra: 1335/1333,
  62626. bottom: 19/1354
  62627. }
  62628. },
  62629. frontLewd: {
  62630. height: math.unit(2.2, "meters"),
  62631. weight: math.unit(150, "kg"),
  62632. name: "Front (Lewd)",
  62633. image: {
  62634. source: "./media/characters/sergis/front-lewd.svg",
  62635. extra: 1314/1312,
  62636. bottom: 112/1426
  62637. }
  62638. },
  62639. frontDressed: {
  62640. height: math.unit(2.2, "meters"),
  62641. weight: math.unit(150, "kg"),
  62642. name: "Front (Dressed)",
  62643. image: {
  62644. source: "./media/characters/sergis/front-dressed.svg",
  62645. extra: 1330/1328,
  62646. bottom: 95/1425
  62647. }
  62648. },
  62649. frontDressedLewd: {
  62650. height: math.unit(2.2, "meters"),
  62651. weight: math.unit(150, "kg"),
  62652. name: "Front (Dressed, Lewd)",
  62653. image: {
  62654. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62655. extra: 1330/1328,
  62656. bottom: 95/1425
  62657. }
  62658. },
  62659. maw: {
  62660. height: math.unit(0.48, "meters"),
  62661. name: "Maw",
  62662. image: {
  62663. source: "./media/characters/sergis/maw.svg"
  62664. }
  62665. },
  62666. sheath: {
  62667. height: math.unit(0.38, "meters"),
  62668. name: "Sheath",
  62669. image: {
  62670. source: "./media/characters/sergis/sheath.svg"
  62671. }
  62672. },
  62673. },
  62674. [
  62675. {
  62676. name: "Incognito Size",
  62677. height: math.unit(2.2, "meters")
  62678. },
  62679. {
  62680. name: "Small Macro",
  62681. height: math.unit(40, "meters")
  62682. },
  62683. {
  62684. name: "Macro",
  62685. height: math.unit(150, "meters")
  62686. },
  62687. {
  62688. name: "Macro+",
  62689. height: math.unit(300, "meters")
  62690. },
  62691. {
  62692. name: "Mega",
  62693. height: math.unit(2.5, "km")
  62694. },
  62695. {
  62696. name: "Mega+",
  62697. height: math.unit(30, "km")
  62698. },
  62699. {
  62700. name: "Home Size",
  62701. height: math.unit(300, "km"),
  62702. default: true
  62703. },
  62704. {
  62705. name: "Giga+",
  62706. height: math.unit(1000, "km")
  62707. },
  62708. {
  62709. name: "Giga++",
  62710. height: math.unit(6000, "km")
  62711. },
  62712. {
  62713. name: "Terra",
  62714. height: math.unit(70000, "km")
  62715. },
  62716. {
  62717. name: "Terra+",
  62718. height: math.unit(200000, "km")
  62719. },
  62720. {
  62721. name: "Galactic",
  62722. height: math.unit(634200, "lightyears")
  62723. },
  62724. ]
  62725. ))
  62726. characterMakers.push(() => makeCharacter(
  62727. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62728. {
  62729. standard: {
  62730. height: math.unit(1 + 5/12, "feet"),
  62731. name: "Standard",
  62732. image: {
  62733. source: "./media/characters/spade/standard.svg",
  62734. extra: 1794/1703,
  62735. bottom: 115/1909
  62736. }
  62737. },
  62738. disguised: {
  62739. height: math.unit(1 + 5/12, "feet"),
  62740. name: "Disguised",
  62741. image: {
  62742. source: "./media/characters/spade/disguised.svg",
  62743. extra: 1794/1700,
  62744. bottom: 98/1892
  62745. }
  62746. },
  62747. },
  62748. [
  62749. {
  62750. name: "Normal",
  62751. height: math.unit(1 + 5/12, "feet"),
  62752. default: true
  62753. },
  62754. ]
  62755. ))
  62756. characterMakers.push(() => makeCharacter(
  62757. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62758. {
  62759. frontNsfw: {
  62760. height: math.unit(5, "meters"),
  62761. weight: math.unit(2000, "kg"),
  62762. preyCapacity: math.unit(5, "people"),
  62763. name: "Front (NSFW)",
  62764. image: {
  62765. source: "./media/characters/zeanlain/front-nsfw.svg",
  62766. extra: 1087/938,
  62767. bottom: 93/1180
  62768. },
  62769. extraAttributes: {
  62770. "wingspan": {
  62771. name: "Wingspan",
  62772. power: 1,
  62773. type: "length",
  62774. base: math.unit(10, "meters")
  62775. },
  62776. "footSize": {
  62777. name: "Foot Size",
  62778. power: 1,
  62779. type: "length",
  62780. base: math.unit(0.68, "meters")
  62781. },
  62782. "cockLength": {
  62783. name: "Cock Length",
  62784. power: 1,
  62785. type: "length",
  62786. base: math.unit(1.69, "meters")
  62787. },
  62788. "ballVolume": {
  62789. name: "Ball Volume",
  62790. power: 3,
  62791. type: "volume",
  62792. base: math.unit(0.028, "m^3")
  62793. },
  62794. }
  62795. },
  62796. front: {
  62797. height: math.unit(5, "meters"),
  62798. weight: math.unit(2000, "kg"),
  62799. preyCapacity: math.unit(3, "people"),
  62800. name: "Front",
  62801. image: {
  62802. source: "./media/characters/zeanlain/front.svg",
  62803. extra: 1087/938,
  62804. bottom: 93/1180
  62805. },
  62806. extraAttributes: {
  62807. "wingspan": {
  62808. name: "Wingspan",
  62809. power: 1,
  62810. type: "length",
  62811. base: math.unit(10, "meters")
  62812. },
  62813. "footSize": {
  62814. name: "Foot Size",
  62815. power: 1,
  62816. type: "length",
  62817. base: math.unit(0.68, "meters")
  62818. },
  62819. }
  62820. },
  62821. dick: {
  62822. height: math.unit(5.15, "feet"),
  62823. name: "Dick",
  62824. image: {
  62825. source: "./media/characters/zeanlain/dick.svg"
  62826. }
  62827. },
  62828. },
  62829. [
  62830. {
  62831. name: "Normal",
  62832. height: math.unit(5, "meters"),
  62833. default: true
  62834. },
  62835. ]
  62836. ))
  62837. characterMakers.push(() => makeCharacter(
  62838. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62839. {
  62840. front: {
  62841. height: math.unit(10, "meters"),
  62842. weight: math.unit(250000, "kg"),
  62843. name: "Front",
  62844. image: {
  62845. source: "./media/characters/airamis/front.svg",
  62846. extra: 865/835,
  62847. bottom: 13/878
  62848. }
  62849. },
  62850. },
  62851. [
  62852. {
  62853. name: "Normal",
  62854. height: math.unit(10, "meters"),
  62855. default: true
  62856. },
  62857. ]
  62858. ))
  62859. characterMakers.push(() => makeCharacter(
  62860. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62861. {
  62862. front: {
  62863. height: math.unit(3 + 3/12, "feet"),
  62864. weight: math.unit(75, "lb"),
  62865. name: "Front",
  62866. image: {
  62867. source: "./media/characters/corra-tourmaline/front.svg",
  62868. extra: 1037/864,
  62869. bottom: 39/1076
  62870. }
  62871. },
  62872. back: {
  62873. height: math.unit(3 + 3/12, "feet"),
  62874. weight: math.unit(75, "lb"),
  62875. name: "Back",
  62876. image: {
  62877. source: "./media/characters/corra-tourmaline/back.svg",
  62878. extra: 1022/849,
  62879. bottom: 26/1048
  62880. }
  62881. },
  62882. dressed: {
  62883. height: math.unit(3 + 3/12, "feet"),
  62884. weight: math.unit(75, "lb"),
  62885. name: "Dressed",
  62886. image: {
  62887. source: "./media/characters/corra-tourmaline/dressed.svg",
  62888. extra: 1037/864,
  62889. bottom: 39/1076
  62890. }
  62891. },
  62892. beans: {
  62893. height: math.unit(0.37, "feet"),
  62894. name: "Beans",
  62895. image: {
  62896. source: "./media/characters/corra-tourmaline/beans.svg"
  62897. }
  62898. },
  62899. },
  62900. [
  62901. {
  62902. name: "Normal",
  62903. height: math.unit(3 + 3/12, "feet"),
  62904. default: true
  62905. },
  62906. {
  62907. name: "Macro",
  62908. height: math.unit(32, "feet")
  62909. },
  62910. ]
  62911. ))
  62912. characterMakers.push(() => makeCharacter(
  62913. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62914. {
  62915. front: {
  62916. height: math.unit(6 + 2/12, "feet"),
  62917. weight: math.unit(203, "lb"),
  62918. name: "Front",
  62919. image: {
  62920. source: "./media/characters/maki-kawa/front.svg",
  62921. extra: 950/890,
  62922. bottom: 62/1012
  62923. }
  62924. },
  62925. back: {
  62926. height: math.unit(6 + 2/12, "feet"),
  62927. weight: math.unit(203, "lb"),
  62928. name: "Back",
  62929. image: {
  62930. source: "./media/characters/maki-kawa/back.svg",
  62931. extra: 953/878,
  62932. bottom: 49/1002
  62933. }
  62934. },
  62935. frontBarista: {
  62936. height: math.unit(6 + 2/12, "feet"),
  62937. weight: math.unit(203, "lb"),
  62938. name: "Front (Barista)",
  62939. image: {
  62940. source: "./media/characters/maki-kawa/front-barista.svg",
  62941. extra: 943/883,
  62942. bottom: 69/1012
  62943. }
  62944. },
  62945. backBarista: {
  62946. height: math.unit(6 + 2/12, "feet"),
  62947. weight: math.unit(203, "lb"),
  62948. name: "Back (Barista)",
  62949. image: {
  62950. source: "./media/characters/maki-kawa/back-barista.svg",
  62951. extra: 953/878,
  62952. bottom: 49/1002
  62953. }
  62954. },
  62955. frontWrestler: {
  62956. height: math.unit(6 + 2/12, "feet"),
  62957. weight: math.unit(203, "lb"),
  62958. name: "Front (Wrestler)",
  62959. image: {
  62960. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62961. extra: 950/890,
  62962. bottom: 62/1012
  62963. }
  62964. },
  62965. backWrestler: {
  62966. height: math.unit(6 + 2/12, "feet"),
  62967. weight: math.unit(203, "lb"),
  62968. name: "Back (Wrestler)",
  62969. image: {
  62970. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62971. extra: 953/878,
  62972. bottom: 49/1002
  62973. }
  62974. },
  62975. headFront: {
  62976. height: math.unit(1.64, "feet"),
  62977. name: "Head (Front)",
  62978. image: {
  62979. source: "./media/characters/maki-kawa/head-front.svg"
  62980. }
  62981. },
  62982. headSide: {
  62983. height: math.unit(1.59, "feet"),
  62984. name: "Head (Side)",
  62985. image: {
  62986. source: "./media/characters/maki-kawa/head-side.svg"
  62987. }
  62988. },
  62989. paw: {
  62990. height: math.unit(0.9, "feet"),
  62991. name: "Paw",
  62992. image: {
  62993. source: "./media/characters/maki-kawa/paw.svg"
  62994. }
  62995. },
  62996. },
  62997. [
  62998. {
  62999. name: "Normal",
  63000. height: math.unit(6 + 2/12, "feet"),
  63001. default: true
  63002. },
  63003. {
  63004. name: "Macro",
  63005. height: math.unit(617, "feet")
  63006. },
  63007. ]
  63008. ))
  63009. characterMakers.push(() => makeCharacter(
  63010. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63011. {
  63012. frontNsfw: {
  63013. height: math.unit(10, "feet"),
  63014. weight: math.unit(1500, "lb"),
  63015. name: "Front (NSFW)",
  63016. image: {
  63017. source: "./media/characters/lennox/front-nsfw.svg",
  63018. extra: 1623/1496,
  63019. bottom: 18/1641
  63020. },
  63021. extraAttributes: {
  63022. "cumVolume": {
  63023. name: "Cum Volume",
  63024. power: 3,
  63025. type: "volume",
  63026. base: math.unit(75, "liters")
  63027. },
  63028. }
  63029. },
  63030. backNsfw: {
  63031. height: math.unit(10, "feet"),
  63032. weight: math.unit(1500, "lb"),
  63033. name: "Back (NSFW)",
  63034. image: {
  63035. source: "./media/characters/lennox/back-nsfw.svg",
  63036. extra: 1641/1481,
  63037. bottom: 13/1654
  63038. },
  63039. extraAttributes: {
  63040. "cumVolume": {
  63041. name: "Cum Volume",
  63042. power: 3,
  63043. type: "volume",
  63044. base: math.unit(75, "liters")
  63045. },
  63046. }
  63047. },
  63048. frontSfw: {
  63049. height: math.unit(10, "feet"),
  63050. weight: math.unit(1500, "lb"),
  63051. name: "Front (SFW)",
  63052. image: {
  63053. source: "./media/characters/lennox/front-sfw.svg",
  63054. extra: 1623/1496,
  63055. bottom: 18/1641
  63056. }
  63057. },
  63058. backSfw: {
  63059. height: math.unit(10, "feet"),
  63060. weight: math.unit(1500, "lb"),
  63061. name: "Back (SFW)",
  63062. image: {
  63063. source: "./media/characters/lennox/back-sfw.svg",
  63064. extra: 1641/1481,
  63065. bottom: 13/1654
  63066. }
  63067. },
  63068. maw: {
  63069. height: math.unit(2.94, "feet"),
  63070. name: "Maw",
  63071. image: {
  63072. source: "./media/characters/lennox/maw.svg"
  63073. }
  63074. },
  63075. dick: {
  63076. height: math.unit(0.8323, "meters"),
  63077. weight: math.unit(0.07315728637*1000, "kg"),
  63078. name: "Dick",
  63079. image: {
  63080. source: "./media/characters/lennox/dick.svg"
  63081. },
  63082. extraAttributes: {
  63083. "thickness": {
  63084. name: "Thickness",
  63085. power: 1,
  63086. type: "length",
  63087. base: math.unit(0.330, "meters")
  63088. },
  63089. "length": {
  63090. name: "Length",
  63091. power: 1,
  63092. type: "length",
  63093. base: math.unit(0.8, "meters")
  63094. },
  63095. "cumVolume": {
  63096. name: "Cum Volume",
  63097. power: 3,
  63098. type: "volume",
  63099. base: math.unit(75, "liters")
  63100. },
  63101. }
  63102. },
  63103. },
  63104. [
  63105. {
  63106. name: "Micro",
  63107. height: math.unit(1, "inch")
  63108. },
  63109. {
  63110. name: "Normal",
  63111. height: math.unit(10, "feet"),
  63112. default: true
  63113. },
  63114. {
  63115. name: "Macro",
  63116. height: math.unit(200, "feet")
  63117. },
  63118. ]
  63119. ))
  63120. characterMakers.push(() => makeCharacter(
  63121. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63122. {
  63123. frontDressed: {
  63124. height: math.unit(15 + 7/12, "feet"),
  63125. weight: math.unit(5000, "lb"),
  63126. name: "Front (Dressed)",
  63127. image: {
  63128. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63129. extra: 1136/1023,
  63130. bottom: 51/1187
  63131. }
  63132. },
  63133. backDressed: {
  63134. height: math.unit(15 + 7/12, "feet"),
  63135. weight: math.unit(5000, "lb"),
  63136. name: "Back (Dressed)",
  63137. image: {
  63138. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63139. extra: 2359/2143,
  63140. bottom: 103/2462
  63141. }
  63142. },
  63143. front: {
  63144. height: math.unit(15 + 7/12, "feet"),
  63145. weight: math.unit(5000, "lb"),
  63146. name: "Front",
  63147. image: {
  63148. source: "./media/characters/vyse-iron-thunder/front.svg",
  63149. extra: 1136/1023,
  63150. bottom: 51/1187
  63151. }
  63152. },
  63153. hand: {
  63154. height: math.unit(2.36, "feet"),
  63155. name: "Hand",
  63156. image: {
  63157. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63158. }
  63159. },
  63160. foot: {
  63161. height: math.unit(1.72, "feet"),
  63162. name: "Foot",
  63163. image: {
  63164. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63165. }
  63166. },
  63167. mouth: {
  63168. height: math.unit(2, "feet"),
  63169. name: "Mouth",
  63170. image: {
  63171. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63172. }
  63173. },
  63174. eye: {
  63175. height: math.unit(0.58, "feet"),
  63176. name: "Eye",
  63177. image: {
  63178. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63179. }
  63180. },
  63181. },
  63182. [
  63183. {
  63184. name: "Normal",
  63185. height: math.unit(15 + 7/12, "feet"),
  63186. default: true
  63187. },
  63188. {
  63189. name: "Macro",
  63190. height: math.unit(157, "feet")
  63191. },
  63192. {
  63193. name: "Macro+",
  63194. height: math.unit(1570, "feet")
  63195. },
  63196. {
  63197. name: "Macro++",
  63198. height: math.unit(15700, "feet")
  63199. },
  63200. {
  63201. name: "Macro+++",
  63202. height: math.unit(157000, "feet")
  63203. },
  63204. {
  63205. name: "Macro++++",
  63206. height: math.unit(1570000, "feet")
  63207. },
  63208. ]
  63209. ))
  63210. characterMakers.push(() => makeCharacter(
  63211. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63212. {
  63213. side: {
  63214. height: math.unit(6, "feet"),
  63215. weight: math.unit(115, "lb"),
  63216. name: "Side",
  63217. image: {
  63218. source: "./media/characters/moonbeam/side.svg",
  63219. extra: 839/485,
  63220. bottom: 60/899
  63221. }
  63222. },
  63223. },
  63224. [
  63225. {
  63226. name: "Normal",
  63227. height: math.unit(6, "feet"),
  63228. default: true
  63229. },
  63230. ]
  63231. ))
  63232. characterMakers.push(() => makeCharacter(
  63233. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63234. {
  63235. front: {
  63236. height: math.unit(3500, "miles"),
  63237. weight: math.unit(1659, "petatonnes"),
  63238. name: "Front",
  63239. image: {
  63240. source: "./media/characters/baltica/front.svg",
  63241. extra: 429/428,
  63242. bottom: 41/470
  63243. }
  63244. },
  63245. back: {
  63246. height: math.unit(3500, "miles"),
  63247. weight: math.unit(1659, "petatonnes"),
  63248. name: "Back",
  63249. image: {
  63250. source: "./media/characters/baltica/back.svg",
  63251. extra: 452/451,
  63252. bottom: 8/460
  63253. }
  63254. },
  63255. },
  63256. [
  63257. {
  63258. name: "Gigamacro",
  63259. height: math.unit(3500, "miles"),
  63260. default: true
  63261. },
  63262. ]
  63263. ))
  63264. characterMakers.push(() => makeCharacter(
  63265. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63266. {
  63267. front: {
  63268. height: math.unit(6 + 10/12, "feet"),
  63269. weight: math.unit(200, "lb"),
  63270. name: "Front",
  63271. image: {
  63272. source: "./media/characters/shadow-wolf/front.svg",
  63273. extra: 1931/1760,
  63274. bottom: 88/2019
  63275. }
  63276. },
  63277. },
  63278. [
  63279. {
  63280. name: "Normal",
  63281. height: math.unit(6 + 10/12, "feet"),
  63282. default: true
  63283. },
  63284. ]
  63285. ))
  63286. characterMakers.push(() => makeCharacter(
  63287. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63288. {
  63289. front: {
  63290. height: math.unit(5 + 10/12, "feet"),
  63291. name: "Front",
  63292. image: {
  63293. source: "./media/characters/quincy-praying-mantis/front.svg",
  63294. extra: 1055/891,
  63295. bottom: 92/1147
  63296. }
  63297. },
  63298. soles: {
  63299. height: math.unit(0.85, "feet"),
  63300. name: "Soles",
  63301. image: {
  63302. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63303. extra: 429/324,
  63304. bottom: 89/518
  63305. },
  63306. extraAttributes: {
  63307. "shoeSize": {
  63308. name: "Shoe Size",
  63309. power: 1,
  63310. type: "length",
  63311. base: math.unit(23, "ShoeSizeMensUS"),
  63312. defaultUnit: "ShoeSizeMensUS"
  63313. },
  63314. }
  63315. },
  63316. foot: {
  63317. height: math.unit(0.72, "feet"),
  63318. name: "Foot",
  63319. image: {
  63320. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63321. extra: 349/349,
  63322. bottom: 76/425
  63323. }
  63324. },
  63325. },
  63326. [
  63327. {
  63328. name: "Normal",
  63329. height: math.unit(5 + 10/12, "feet"),
  63330. default: true
  63331. },
  63332. ]
  63333. ))
  63334. characterMakers.push(() => makeCharacter(
  63335. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63336. {
  63337. front: {
  63338. height: math.unit(6, "feet"),
  63339. name: "Front",
  63340. image: {
  63341. source: "./media/characters/christopher-redwood/front.svg",
  63342. extra: 1402/1341,
  63343. bottom: 23/1425
  63344. }
  63345. },
  63346. back: {
  63347. height: math.unit(6, "feet"),
  63348. name: "Back",
  63349. image: {
  63350. source: "./media/characters/christopher-redwood/back.svg",
  63351. extra: 1406/1345,
  63352. bottom: 36/1442
  63353. }
  63354. },
  63355. head: {
  63356. height: math.unit(1.685, "feet"),
  63357. name: "Head",
  63358. image: {
  63359. source: "./media/characters/christopher-redwood/head.svg"
  63360. }
  63361. },
  63362. },
  63363. [
  63364. {
  63365. name: "Normal",
  63366. height: math.unit(6, "feet"),
  63367. default: true
  63368. },
  63369. ]
  63370. ))
  63371. characterMakers.push(() => makeCharacter(
  63372. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63373. {
  63374. front: {
  63375. height: math.unit(1.9, "meters"),
  63376. weight: math.unit(140, "lb"),
  63377. name: "Front",
  63378. image: {
  63379. source: "./media/characters/kara-fox/front.svg",
  63380. extra: 766/711,
  63381. bottom: 41/807
  63382. }
  63383. },
  63384. back: {
  63385. height: math.unit(1.9, "meters"),
  63386. weight: math.unit(140, "lb"),
  63387. name: "Back",
  63388. image: {
  63389. source: "./media/characters/kara-fox/back.svg",
  63390. extra: 766/596,
  63391. bottom: 29/795
  63392. }
  63393. },
  63394. maw: {
  63395. height: math.unit(0.78, "feet"),
  63396. name: "Maw",
  63397. image: {
  63398. source: "./media/characters/kara-fox/maw.svg"
  63399. }
  63400. },
  63401. pawpads: {
  63402. height: math.unit(0.96, "feet"),
  63403. name: "Pawpads",
  63404. image: {
  63405. source: "./media/characters/kara-fox/pawpads.svg"
  63406. }
  63407. },
  63408. },
  63409. [
  63410. {
  63411. name: "Normal",
  63412. height: math.unit(1.9, "meters"),
  63413. default: true
  63414. },
  63415. {
  63416. name: "Giantess",
  63417. height: math.unit(80, "meters")
  63418. },
  63419. ]
  63420. ))
  63421. characterMakers.push(() => makeCharacter(
  63422. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63423. {
  63424. front: {
  63425. height: math.unit(12, "feet"),
  63426. name: "Front",
  63427. image: {
  63428. source: "./media/characters/naomi-espeon/front.svg",
  63429. extra: 892/797,
  63430. bottom: 5/897
  63431. }
  63432. },
  63433. back: {
  63434. height: math.unit(12, "feet"),
  63435. name: "Back",
  63436. image: {
  63437. source: "./media/characters/naomi-espeon/back.svg",
  63438. extra: 890/785,
  63439. bottom: 12/902
  63440. }
  63441. },
  63442. },
  63443. [
  63444. {
  63445. name: "Normal",
  63446. height: math.unit(12, "feet"),
  63447. default: true
  63448. },
  63449. ]
  63450. ))
  63451. characterMakers.push(() => makeCharacter(
  63452. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63453. {
  63454. anthro_front: {
  63455. height: math.unit(8, "feet"),
  63456. weight: math.unit(625, "lb"),
  63457. name: "Front",
  63458. image: {
  63459. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63460. extra: 638/574,
  63461. bottom: 73/711
  63462. },
  63463. form: "anthro",
  63464. default: true
  63465. },
  63466. anthro_back: {
  63467. height: math.unit(8, "feet"),
  63468. weight: math.unit(625, "lb"),
  63469. name: "Back",
  63470. image: {
  63471. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63472. extra: 674/614,
  63473. bottom: 7/681
  63474. },
  63475. form: "anthro",
  63476. },
  63477. taur_side: {
  63478. height: math.unit(16, "feet"),
  63479. weight: math.unit(4.5, "tons"),
  63480. name: "Side",
  63481. image: {
  63482. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63483. extra: 704/646,
  63484. bottom: 132/836
  63485. },
  63486. form: "taur",
  63487. default: true
  63488. },
  63489. },
  63490. [
  63491. {
  63492. name: "Normal",
  63493. height: math.unit(8, "feet"),
  63494. default: true,
  63495. form: "anthro"
  63496. },
  63497. {
  63498. name: "Normal",
  63499. height: math.unit(16, "feet"),
  63500. default: true,
  63501. form: "taur"
  63502. },
  63503. ],
  63504. {
  63505. "anthro": {
  63506. name: "Anthro",
  63507. default: true
  63508. },
  63509. "taur": {
  63510. name: "Taur",
  63511. },
  63512. }
  63513. ))
  63514. characterMakers.push(() => makeCharacter(
  63515. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63516. {
  63517. front: {
  63518. height: math.unit(190, "cm"),
  63519. weight: math.unit(110, "kg"),
  63520. name: "Front",
  63521. image: {
  63522. source: "./media/characters/amelie/front.svg",
  63523. extra: 530/442,
  63524. bottom: 35/565
  63525. }
  63526. },
  63527. },
  63528. [
  63529. {
  63530. name: "Normal",
  63531. height: math.unit(190, "cm"),
  63532. default: true
  63533. },
  63534. ]
  63535. ))
  63536. characterMakers.push(() => makeCharacter(
  63537. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63538. {
  63539. front: {
  63540. height: math.unit(21, "feet"),
  63541. weight: math.unit(30000, "lb"),
  63542. name: "Front",
  63543. image: {
  63544. source: "./media/characters/valence/front.svg",
  63545. extra: 1430/1306,
  63546. bottom: 51/1481
  63547. }
  63548. },
  63549. },
  63550. [
  63551. {
  63552. name: "Normal",
  63553. height: math.unit(21, "feet"),
  63554. default: true
  63555. },
  63556. ]
  63557. ))
  63558. characterMakers.push(() => makeCharacter(
  63559. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63560. {
  63561. front: {
  63562. height: math.unit(5 + 9/12, "feet"),
  63563. weight: math.unit(170, "lb"),
  63564. name: "Front",
  63565. image: {
  63566. source: "./media/characters/aurora-adkins/front.svg",
  63567. extra: 1141/1089,
  63568. bottom: 41/1182
  63569. }
  63570. },
  63571. },
  63572. [
  63573. {
  63574. name: "Tiny",
  63575. height: math.unit(7, "mm")
  63576. },
  63577. {
  63578. name: "Small",
  63579. height: math.unit(3.4, "inches")
  63580. },
  63581. {
  63582. name: "Normal",
  63583. height: math.unit(5 + 9/12, "feet"),
  63584. default: true
  63585. },
  63586. {
  63587. name: "Big",
  63588. height: math.unit(31, "feet")
  63589. },
  63590. {
  63591. name: "Giant",
  63592. height: math.unit(300, "feet")
  63593. },
  63594. ]
  63595. ))
  63596. characterMakers.push(() => makeCharacter(
  63597. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63598. {
  63599. front: {
  63600. height: math.unit(5 + 6/12, "feet"),
  63601. weight: math.unit(210, "lb"),
  63602. name: "Front",
  63603. image: {
  63604. source: "./media/characters/cyber/front.svg",
  63605. extra: 1968/1798,
  63606. bottom: 10/1978
  63607. },
  63608. extraAttributes: {
  63609. "shoeSize": {
  63610. name: "Shoe Size",
  63611. power: 1,
  63612. type: "length",
  63613. base: math.unit(30, "ShoeSizeMensUS")
  63614. },
  63615. }
  63616. },
  63617. },
  63618. [
  63619. {
  63620. name: "Normal",
  63621. height: math.unit(5 + 6/12, "feet"),
  63622. default: true
  63623. },
  63624. ]
  63625. ))
  63626. characterMakers.push(() => makeCharacter(
  63627. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63628. {
  63629. front: {
  63630. height: math.unit(6 + 6/12, "feet"),
  63631. weight: math.unit(140, "lb"),
  63632. name: "Front",
  63633. image: {
  63634. source: "./media/characters/sapphire-wairimea/front.svg",
  63635. extra: 475/458,
  63636. bottom: 14/489
  63637. }
  63638. },
  63639. },
  63640. [
  63641. {
  63642. name: "Normal",
  63643. height: math.unit(6 + 6/12, "feet")
  63644. },
  63645. {
  63646. name: "Macro",
  63647. height: math.unit(132, "feet"),
  63648. default: true
  63649. },
  63650. ]
  63651. ))
  63652. characterMakers.push(() => makeCharacter(
  63653. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63654. {
  63655. front: {
  63656. height: math.unit(1.6, "meters"),
  63657. weight: math.unit(100, "lb"),
  63658. name: "Front",
  63659. image: {
  63660. source: "./media/characters/cirkazi/front.svg",
  63661. extra: 489/477,
  63662. bottom: 0/489
  63663. }
  63664. },
  63665. },
  63666. [
  63667. {
  63668. name: "Normal",
  63669. height: math.unit(1.6, "meters")
  63670. },
  63671. {
  63672. name: "Macro",
  63673. height: math.unit(800, "feet"),
  63674. default: true
  63675. },
  63676. ]
  63677. ))
  63678. characterMakers.push(() => makeCharacter(
  63679. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63680. {
  63681. front: {
  63682. height: math.unit(5 + 10/12, "feet"),
  63683. weight: math.unit(145, "lb"),
  63684. name: "Front",
  63685. image: {
  63686. source: "./media/characters/corrin-cavelli/front.svg",
  63687. extra: 483/464,
  63688. bottom: 6/489
  63689. }
  63690. },
  63691. },
  63692. [
  63693. {
  63694. name: "Human",
  63695. height: math.unit(5 + 10/12, "feet")
  63696. },
  63697. {
  63698. name: "Giant",
  63699. height: math.unit(210, "feet"),
  63700. default: true
  63701. },
  63702. ]
  63703. ))
  63704. characterMakers.push(() => makeCharacter(
  63705. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63706. {
  63707. back: {
  63708. height: math.unit(5 + 6/12, "feet"),
  63709. weight: math.unit(115, "lb"),
  63710. name: "Back",
  63711. image: {
  63712. source: "./media/characters/lori-lopez/back.svg",
  63713. extra: 483/474,
  63714. bottom: 6/489
  63715. }
  63716. },
  63717. },
  63718. [
  63719. {
  63720. name: "Human",
  63721. height: math.unit(5 + 6/12, "feet")
  63722. },
  63723. {
  63724. name: "Macro",
  63725. height: math.unit(198, "feet"),
  63726. default: true
  63727. },
  63728. ]
  63729. ))
  63730. characterMakers.push(() => makeCharacter(
  63731. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63732. {
  63733. front: {
  63734. height: math.unit(6, "feet"),
  63735. weight: math.unit(220, "lb"),
  63736. name: "Front",
  63737. image: {
  63738. source: "./media/characters/sylvia-beauregard/front.svg",
  63739. extra: 483/479,
  63740. bottom: 6/489
  63741. }
  63742. },
  63743. },
  63744. [
  63745. {
  63746. name: "Macro",
  63747. height: math.unit(2071, "feet"),
  63748. default: true
  63749. },
  63750. ]
  63751. ))
  63752. characterMakers.push(() => makeCharacter(
  63753. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63754. {
  63755. back: {
  63756. height: math.unit(5 + 6/12, "feet"),
  63757. weight: math.unit(160, "lb"),
  63758. name: "Back",
  63759. image: {
  63760. source: "./media/characters/akiko-takahashi/back.svg",
  63761. extra: 459/454,
  63762. bottom: 27/486
  63763. }
  63764. },
  63765. },
  63766. [
  63767. {
  63768. name: "Human",
  63769. height: math.unit(5 + 6/12, "feet")
  63770. },
  63771. {
  63772. name: "Macro",
  63773. height: math.unit(198, "feet"),
  63774. default: true
  63775. },
  63776. {
  63777. name: "Megamacro",
  63778. height: math.unit(7128, "feet")
  63779. },
  63780. ]
  63781. ))
  63782. characterMakers.push(() => makeCharacter(
  63783. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63784. {
  63785. front: {
  63786. height: math.unit(6, "feet"),
  63787. weight: math.unit(140, "lb"),
  63788. name: "Front",
  63789. image: {
  63790. source: "./media/characters/velvet-garza/front.svg",
  63791. extra: 480/462,
  63792. bottom: 7/487
  63793. }
  63794. },
  63795. },
  63796. [
  63797. {
  63798. name: "Macro",
  63799. height: math.unit(37, "feet"),
  63800. default: true
  63801. },
  63802. ]
  63803. ))
  63804. characterMakers.push(() => makeCharacter(
  63805. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63806. {
  63807. front: {
  63808. height: math.unit(7 + 6/12, "feet"),
  63809. weight: math.unit(400, "lb"),
  63810. name: "Front",
  63811. image: {
  63812. source: "./media/characters/gaia/front.svg",
  63813. extra: 474/463,
  63814. bottom: 13/487
  63815. }
  63816. },
  63817. },
  63818. [
  63819. {
  63820. name: "MiniMacro",
  63821. height: math.unit(7 + 6/12, "feet")
  63822. },
  63823. {
  63824. name: "GigaMacro",
  63825. height: math.unit(14500, "feet"),
  63826. default: true
  63827. },
  63828. ]
  63829. ))
  63830. characterMakers.push(() => makeCharacter(
  63831. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63832. {
  63833. front: {
  63834. height: math.unit(6, "feet"),
  63835. weight: math.unit(150, "lb"),
  63836. name: "Front",
  63837. image: {
  63838. source: "./media/characters/tim/front.svg",
  63839. extra: 1878/1743,
  63840. bottom: 9/1887
  63841. }
  63842. },
  63843. frontDressed: {
  63844. height: math.unit(6, "feet"),
  63845. weight: math.unit(150, "lb"),
  63846. name: "Front (Dressed)",
  63847. image: {
  63848. source: "./media/characters/tim/front-dressed.svg",
  63849. extra: 1765/1485,
  63850. bottom: 48/1813
  63851. }
  63852. },
  63853. backDressed: {
  63854. height: math.unit(6, "feet"),
  63855. weight: math.unit(150, "lb"),
  63856. name: "Back (Dressed)",
  63857. image: {
  63858. source: "./media/characters/tim/back-dressed.svg",
  63859. extra: 1750/1465,
  63860. bottom: 25/1775
  63861. }
  63862. },
  63863. dick: {
  63864. height: math.unit(1.5, "feet"),
  63865. weight: math.unit(6, "lb"),
  63866. name: "Dick",
  63867. image: {
  63868. source: "./media/characters/tim/dick.svg"
  63869. }
  63870. },
  63871. hand: {
  63872. height: math.unit(0.522, "feet"),
  63873. name: "Hand",
  63874. image: {
  63875. source: "./media/characters/tim/hand.svg"
  63876. }
  63877. },
  63878. palm: {
  63879. height: math.unit(0.48, "feet"),
  63880. name: "Palm",
  63881. image: {
  63882. source: "./media/characters/tim/palm.svg"
  63883. }
  63884. },
  63885. paw: {
  63886. height: math.unit(0.9, "feet"),
  63887. name: "Paw",
  63888. image: {
  63889. source: "./media/characters/tim/paw.svg"
  63890. }
  63891. },
  63892. sole: {
  63893. height: math.unit(0.88, "feet"),
  63894. name: "Sole",
  63895. image: {
  63896. source: "./media/characters/tim/sole.svg"
  63897. }
  63898. },
  63899. },
  63900. [
  63901. {
  63902. name: "Macro",
  63903. height: math.unit(1000, "feet")
  63904. },
  63905. {
  63906. name: "Megamacro",
  63907. height: math.unit(10000, "feet"),
  63908. default: true
  63909. },
  63910. {
  63911. name: "Megamacro+",
  63912. height: math.unit(50000, "feet")
  63913. },
  63914. {
  63915. name: "Gigamacro",
  63916. height: math.unit(150000, "km")
  63917. },
  63918. ]
  63919. ))
  63920. characterMakers.push(() => makeCharacter(
  63921. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63922. {
  63923. front: {
  63924. height: math.unit(5 + 8/12, "feet"),
  63925. weight: math.unit(170, "lb"),
  63926. name: "Front",
  63927. image: {
  63928. source: "./media/characters/abel-delreoux/front.svg",
  63929. extra: 1615/1500,
  63930. bottom: 82/1697
  63931. }
  63932. },
  63933. back: {
  63934. height: math.unit(5 + 8/12, "feet"),
  63935. weight: math.unit(170, "lb"),
  63936. name: "Back",
  63937. image: {
  63938. source: "./media/characters/abel-delreoux/back.svg",
  63939. extra: 1644/1534,
  63940. bottom: 24/1668
  63941. }
  63942. },
  63943. casual: {
  63944. height: math.unit(5 + 8/12, "feet"),
  63945. weight: math.unit(170, "lb"),
  63946. name: "Casual",
  63947. image: {
  63948. source: "./media/characters/abel-delreoux/casual.svg",
  63949. extra: 1716/1598,
  63950. bottom: 29/1745
  63951. }
  63952. },
  63953. sleepy: {
  63954. height: math.unit(5 + 8/12, "feet"),
  63955. weight: math.unit(170, "lb"),
  63956. name: "Sleepy",
  63957. image: {
  63958. source: "./media/characters/abel-delreoux/sleepy.svg",
  63959. extra: 1649/1573,
  63960. bottom: 22/1671
  63961. }
  63962. },
  63963. fem: {
  63964. height: math.unit(5 + 8/12, "feet"),
  63965. weight: math.unit(170, "lb"),
  63966. name: "Fem",
  63967. image: {
  63968. source: "./media/characters/abel-delreoux/fem.svg",
  63969. extra: 1680/1564,
  63970. bottom: 17/1697
  63971. }
  63972. },
  63973. hand: {
  63974. height: math.unit(0.78, "feet"),
  63975. name: "Hand",
  63976. image: {
  63977. source: "./media/characters/abel-delreoux/hand.svg"
  63978. }
  63979. },
  63980. paw: {
  63981. height: math.unit(0.78, "feet"),
  63982. name: "Paw",
  63983. image: {
  63984. source: "./media/characters/abel-delreoux/paw.svg"
  63985. }
  63986. },
  63987. },
  63988. [
  63989. {
  63990. name: "Normal",
  63991. height: math.unit(5 + 8/12, "feet"),
  63992. default: true
  63993. },
  63994. ]
  63995. ))
  63996. characterMakers.push(() => makeCharacter(
  63997. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63998. {
  63999. front: {
  64000. height: math.unit(6, "feet"),
  64001. weight: math.unit(159, "lb"),
  64002. name: "Front",
  64003. image: {
  64004. source: "./media/characters/meus/front.svg",
  64005. extra: 938/843,
  64006. bottom: 37/975
  64007. }
  64008. },
  64009. back: {
  64010. height: math.unit(6, "feet"),
  64011. weight: math.unit(159, "lb"),
  64012. name: "Back",
  64013. image: {
  64014. source: "./media/characters/meus/back.svg",
  64015. extra: 967/873,
  64016. bottom: 12/979
  64017. }
  64018. },
  64019. },
  64020. [
  64021. {
  64022. name: "Micro",
  64023. height: math.unit(2, "inches")
  64024. },
  64025. {
  64026. name: "Mini",
  64027. height: math.unit(6, "inches")
  64028. },
  64029. {
  64030. name: "Normal",
  64031. height: math.unit(6, "feet"),
  64032. default: true
  64033. },
  64034. {
  64035. name: "Macro",
  64036. height: math.unit(84, "feet")
  64037. },
  64038. ]
  64039. ))
  64040. characterMakers.push(() => makeCharacter(
  64041. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64042. {
  64043. front: {
  64044. height: math.unit(60, "cm"),
  64045. weight: math.unit(18, "kg"),
  64046. name: "Front",
  64047. image: {
  64048. source: "./media/characters/yamato/front.svg",
  64049. extra: 733/688,
  64050. bottom: 29/762
  64051. }
  64052. },
  64053. },
  64054. [
  64055. {
  64056. name: "Micro",
  64057. height: math.unit(6, "cm")
  64058. },
  64059. {
  64060. name: "Normal",
  64061. height: math.unit(60, "cm"),
  64062. default: true
  64063. },
  64064. ]
  64065. ))
  64066. characterMakers.push(() => makeCharacter(
  64067. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64068. {
  64069. front: {
  64070. height: math.unit(9, "feet"),
  64071. weight: math.unit(518, "lb"),
  64072. name: "Front",
  64073. image: {
  64074. source: "./media/characters/barus/front.svg",
  64075. extra: 1877/1795,
  64076. bottom: 55/1932
  64077. }
  64078. },
  64079. },
  64080. [
  64081. {
  64082. name: "Base Height",
  64083. height: math.unit(9, "feet"),
  64084. default: true
  64085. },
  64086. {
  64087. name: "Large",
  64088. height: math.unit(18, "feet")
  64089. },
  64090. {
  64091. name: "Giant",
  64092. height: math.unit(100, "feet")
  64093. },
  64094. {
  64095. name: "Huge",
  64096. height: math.unit(500, "feet")
  64097. },
  64098. {
  64099. name: "Enormous",
  64100. height: math.unit(300, "meters")
  64101. },
  64102. {
  64103. name: "Deity Among Man",
  64104. height: math.unit(3000, "meters")
  64105. },
  64106. ]
  64107. ))
  64108. characterMakers.push(() => makeCharacter(
  64109. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64110. {
  64111. front: {
  64112. height: math.unit(1.7, "meters"),
  64113. name: "Front",
  64114. image: {
  64115. source: "./media/characters/yari/front.svg",
  64116. extra: 1210/1125,
  64117. bottom: 283/1493
  64118. }
  64119. },
  64120. back: {
  64121. height: math.unit(1.7, "meters"),
  64122. name: "Back",
  64123. image: {
  64124. source: "./media/characters/yari/back.svg",
  64125. extra: 1240/1195,
  64126. bottom: 180/1420
  64127. }
  64128. },
  64129. head: {
  64130. height: math.unit(1.26, "feet"),
  64131. name: "Head",
  64132. image: {
  64133. source: "./media/characters/yari/head.svg"
  64134. }
  64135. },
  64136. },
  64137. [
  64138. {
  64139. name: "Nano",
  64140. height: math.unit(0.5, "mm")
  64141. },
  64142. {
  64143. name: "Micro",
  64144. height: math.unit(3, "inches")
  64145. },
  64146. {
  64147. name: "Short",
  64148. height: math.unit(1.5, "meters")
  64149. },
  64150. {
  64151. name: "Norm",
  64152. height: math.unit(1.7, "meters"),
  64153. default: true
  64154. },
  64155. ]
  64156. ))
  64157. characterMakers.push(() => makeCharacter(
  64158. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64159. {
  64160. front: {
  64161. height: math.unit(5 + 2/12, "feet"),
  64162. weight: math.unit(110, "lb"),
  64163. name: "Front",
  64164. image: {
  64165. source: "./media/characters/salem/front.svg",
  64166. extra: 1895/1800,
  64167. bottom: 23/1918
  64168. }
  64169. },
  64170. back: {
  64171. height: math.unit(5 + 2/12, "feet"),
  64172. weight: math.unit(110, "lb"),
  64173. name: "Back",
  64174. image: {
  64175. source: "./media/characters/salem/back.svg",
  64176. extra: 1875/1802,
  64177. bottom: 20/1895
  64178. }
  64179. },
  64180. head: {
  64181. height: math.unit(1, "feet"),
  64182. name: "Head",
  64183. image: {
  64184. source: "./media/characters/salem/head.svg"
  64185. }
  64186. },
  64187. paw: {
  64188. height: math.unit(0.59, "feet"),
  64189. name: "Paw",
  64190. image: {
  64191. source: "./media/characters/salem/paw.svg"
  64192. }
  64193. },
  64194. beans: {
  64195. height: math.unit(0.66, "feet"),
  64196. name: "Beans",
  64197. image: {
  64198. source: "./media/characters/salem/beans.svg"
  64199. }
  64200. },
  64201. eye: {
  64202. height: math.unit(0.224, "feet"),
  64203. name: "Eye",
  64204. image: {
  64205. source: "./media/characters/salem/eye.svg"
  64206. }
  64207. },
  64208. semiferal: {
  64209. height: math.unit(2.3, "feet"),
  64210. name: "Semiferal",
  64211. image: {
  64212. source: "./media/characters/salem/semiferal.svg",
  64213. extra: 914/839,
  64214. bottom: 32/946
  64215. }
  64216. },
  64217. },
  64218. [
  64219. {
  64220. name: "Micro",
  64221. height: math.unit(4, "inches")
  64222. },
  64223. {
  64224. name: "Normal",
  64225. height: math.unit(5 + 2/12, "feet"),
  64226. default: true
  64227. },
  64228. {
  64229. name: "Macro",
  64230. height: math.unit(108, "feet")
  64231. },
  64232. {
  64233. name: "Macro+",
  64234. height: math.unit(1500, "feet")
  64235. },
  64236. ]
  64237. ))
  64238. characterMakers.push(() => makeCharacter(
  64239. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64240. {
  64241. front: {
  64242. height: math.unit(7 + 6/12, "feet"),
  64243. weight: math.unit(600, "kg"),
  64244. preyCapacity: math.unit(10, "people"),
  64245. name: "Front",
  64246. image: {
  64247. source: "./media/characters/kii/front.svg",
  64248. extra: 3296/3087,
  64249. bottom: 130/3426
  64250. }
  64251. },
  64252. },
  64253. [
  64254. {
  64255. name: "Normal",
  64256. height: math.unit(7 + 6/12, "feet"),
  64257. default: true
  64258. },
  64259. ]
  64260. ))
  64261. characterMakers.push(() => makeCharacter(
  64262. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64263. {
  64264. front: {
  64265. height: math.unit(2, "meters"),
  64266. weight: math.unit(200, "lb"),
  64267. name: "Front",
  64268. image: {
  64269. source: "./media/characters/taffy/front.svg",
  64270. extra: 1666/1618,
  64271. bottom: 157/1823
  64272. }
  64273. },
  64274. back: {
  64275. height: math.unit(2, "meters"),
  64276. weight: math.unit(200, "lb"),
  64277. name: "Back",
  64278. image: {
  64279. source: "./media/characters/taffy/back.svg",
  64280. extra: 1635/1583,
  64281. bottom: 153/1788
  64282. }
  64283. },
  64284. },
  64285. [
  64286. {
  64287. name: "Normal",
  64288. height: math.unit(2, "meters"),
  64289. default: true
  64290. },
  64291. ]
  64292. ))
  64293. characterMakers.push(() => makeCharacter(
  64294. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64295. {
  64296. front: {
  64297. height: math.unit(1.55, "meters"),
  64298. weight: math.unit(60, "kg"),
  64299. name: "Front",
  64300. image: {
  64301. source: "./media/characters/barley/front.svg",
  64302. extra: 1520/1340,
  64303. bottom: 47/1567
  64304. }
  64305. },
  64306. back: {
  64307. height: math.unit(1.55, "meters"),
  64308. weight: math.unit(60, "kg"),
  64309. name: "Back",
  64310. image: {
  64311. source: "./media/characters/barley/back.svg",
  64312. extra: 1543/1341,
  64313. bottom: 12/1555
  64314. }
  64315. },
  64316. feet: {
  64317. height: math.unit(2.18, "feet"),
  64318. name: "Feet",
  64319. image: {
  64320. source: "./media/characters/barley/feet.svg"
  64321. }
  64322. },
  64323. },
  64324. [
  64325. {
  64326. name: "Normal",
  64327. height: math.unit(1.55, "meters"),
  64328. default: true
  64329. },
  64330. ]
  64331. ))
  64332. characterMakers.push(() => makeCharacter(
  64333. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64334. {
  64335. dressed: {
  64336. height: math.unit(6, "feet"),
  64337. name: "Dressed",
  64338. image: {
  64339. source: "./media/characters/lydia-lopez/dressed.svg",
  64340. extra: 1319/1277,
  64341. bottom: 90/1409
  64342. }
  64343. },
  64344. nude: {
  64345. height: math.unit(6, "feet"),
  64346. name: "Nude",
  64347. image: {
  64348. source: "./media/characters/lydia-lopez/nude.svg",
  64349. extra: 1319/1277,
  64350. bottom: 90/1409
  64351. }
  64352. },
  64353. },
  64354. [
  64355. {
  64356. name: "Normal",
  64357. height: math.unit(6, "feet"),
  64358. default: true
  64359. },
  64360. {
  64361. name: "Maximum",
  64362. height: math.unit(2101, "feet")
  64363. },
  64364. ]
  64365. ))
  64366. characterMakers.push(() => makeCharacter(
  64367. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64368. {
  64369. front: {
  64370. height: math.unit(5 + 4/12, "feet"),
  64371. weight: math.unit(250, "lb"),
  64372. volume: math.unit(20, "gallons"),
  64373. name: "Front",
  64374. image: {
  64375. source: "./media/characters/kira-slime/front.svg",
  64376. extra: 442/403,
  64377. bottom: 18/460
  64378. }
  64379. },
  64380. frontNsfw: {
  64381. height: math.unit(5 + 4/12, "feet"),
  64382. weight: math.unit(250, "lb"),
  64383. volume: math.unit(20, "gallons"),
  64384. name: "Front (NSFW)",
  64385. image: {
  64386. source: "./media/characters/kira-slime/front-nsfw.svg",
  64387. extra: 442/403,
  64388. bottom: 18/460
  64389. }
  64390. },
  64391. },
  64392. [
  64393. {
  64394. name: "Droplet",
  64395. height: math.unit(0.0464452, "feet")
  64396. },
  64397. {
  64398. name: "Pint",
  64399. height: math.unit(0.9824, "feet")
  64400. },
  64401. {
  64402. name: "Bucket",
  64403. height: math.unit(2.83, "feet")
  64404. },
  64405. {
  64406. name: "Normal",
  64407. height: math.unit(5 + 4/12, "feet"),
  64408. default: true
  64409. },
  64410. {
  64411. name: "Tub",
  64412. height: math.unit(8.46614, "feet")
  64413. },
  64414. {
  64415. name: "Pool",
  64416. height: math.unit(31.1895, "feet")
  64417. },
  64418. {
  64419. name: "Pond",
  64420. height: math.unit(170.349, "feet")
  64421. },
  64422. {
  64423. name: "Lake",
  64424. height: math.unit(289334, "feet")
  64425. },
  64426. {
  64427. name: "Ocean",
  64428. height: math.unit(1.11940e+7, "feet")
  64429. },
  64430. ]
  64431. ))
  64432. characterMakers.push(() => makeCharacter(
  64433. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64434. {
  64435. front: {
  64436. height: math.unit(5 + 6/12, "feet"),
  64437. weight: math.unit(120, "lb"),
  64438. name: "Front",
  64439. image: {
  64440. source: "./media/characters/holiday/front.svg",
  64441. extra: 456/403,
  64442. bottom: 4/460
  64443. }
  64444. },
  64445. back: {
  64446. height: math.unit(5 + 6/12, "feet"),
  64447. weight: math.unit(120, "lb"),
  64448. name: "Back",
  64449. image: {
  64450. source: "./media/characters/holiday/back.svg",
  64451. extra: 450/404,
  64452. bottom: 12/462
  64453. }
  64454. },
  64455. head: {
  64456. height: math.unit(2.3, "feet"),
  64457. name: "Head",
  64458. image: {
  64459. source: "./media/characters/holiday/head.svg"
  64460. }
  64461. },
  64462. scifi_front: {
  64463. height: math.unit(145, "km"),
  64464. name: "Front",
  64465. image: {
  64466. source: "./media/characters/holiday/scifi-front.svg"
  64467. },
  64468. form: "scifi",
  64469. },
  64470. },
  64471. [
  64472. {
  64473. name: "Normal",
  64474. height: math.unit(5 + 6/12, "feet"),
  64475. default: true
  64476. },
  64477. {
  64478. name: "Macro",
  64479. height: math.unit(6574.25, "feet")
  64480. },
  64481. ]
  64482. ))
  64483. characterMakers.push(() => makeCharacter(
  64484. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64485. {
  64486. front: {
  64487. height: math.unit(6 + 2/12, "feet"),
  64488. weight: math.unit(200, "lb"),
  64489. name: "Front",
  64490. image: {
  64491. source: "./media/characters/camina/front.svg",
  64492. extra: 1048/985,
  64493. bottom: 30/1078
  64494. }
  64495. },
  64496. },
  64497. [
  64498. {
  64499. name: "Normal",
  64500. height: math.unit(6 + 2/12, "feet"),
  64501. default: true
  64502. },
  64503. ]
  64504. ))
  64505. characterMakers.push(() => makeCharacter(
  64506. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64507. {
  64508. front: {
  64509. height: math.unit(30, "cm"),
  64510. weight: math.unit(420, "grams"),
  64511. name: "Front",
  64512. image: {
  64513. source: "./media/characters/smuck/front.svg",
  64514. extra: 379/345,
  64515. bottom: 36/415
  64516. }
  64517. },
  64518. },
  64519. [
  64520. {
  64521. name: "Smuck-Sized",
  64522. height: math.unit(30, "cm"),
  64523. default: true
  64524. },
  64525. ]
  64526. ))
  64527. characterMakers.push(() => makeCharacter(
  64528. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64529. {
  64530. frontSfw: {
  64531. height: math.unit(10, "feet"),
  64532. weight: math.unit(1000, "kg"),
  64533. preyCapacity: math.unit(2, "people"),
  64534. name: "Front (SFW)",
  64535. image: {
  64536. source: "./media/characters/bylur/front-sfw.svg",
  64537. extra: 419/343,
  64538. bottom: 3/422
  64539. },
  64540. default: true
  64541. },
  64542. frontSheath: {
  64543. height: math.unit(10, "feet"),
  64544. weight: math.unit(1000, "kg"),
  64545. preyCapacity: math.unit(2, "people"),
  64546. name: "Front (Sheath)",
  64547. image: {
  64548. source: "./media/characters/bylur/front-sheath.svg",
  64549. extra: 419/343,
  64550. bottom: 3/422
  64551. }
  64552. },
  64553. frontErect: {
  64554. height: math.unit(10, "feet"),
  64555. weight: math.unit(1000, "kg"),
  64556. preyCapacity: math.unit(2, "people"),
  64557. name: "Front (Erect)",
  64558. image: {
  64559. source: "./media/characters/bylur/front-erect.svg",
  64560. extra: 419/343,
  64561. bottom: 3/422
  64562. }
  64563. },
  64564. back: {
  64565. height: math.unit(10, "feet"),
  64566. weight: math.unit(1000, "kg"),
  64567. preyCapacity: math.unit(2, "people"),
  64568. name: "Back",
  64569. image: {
  64570. source: "./media/characters/bylur/back.svg",
  64571. extra: 392/315,
  64572. bottom: 3/395
  64573. }
  64574. },
  64575. maw: {
  64576. height: math.unit(3.65, "feet"),
  64577. name: "Maw",
  64578. image: {
  64579. source: "./media/characters/bylur/maw.svg"
  64580. }
  64581. },
  64582. },
  64583. [
  64584. {
  64585. name: "Slightly Human Sized",
  64586. height: math.unit(10, "feet")
  64587. },
  64588. {
  64589. name: "Normal",
  64590. height: math.unit(35, "feet"),
  64591. default: true
  64592. },
  64593. {
  64594. name: "Macro",
  64595. height: math.unit(130, "feet")
  64596. },
  64597. ]
  64598. ))
  64599. characterMakers.push(() => makeCharacter(
  64600. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64601. {
  64602. frontNsfw: {
  64603. height: math.unit(6, "feet"),
  64604. weight: math.unit(250, "lb"),
  64605. preyCapacity: math.unit(0.05, "people"),
  64606. name: "Front (NSFW)",
  64607. image: {
  64608. source: "./media/characters/oarven/front-nsfw.svg",
  64609. extra: 1795/1783,
  64610. bottom: 142/1937
  64611. }
  64612. },
  64613. frontSfw: {
  64614. height: math.unit(6, "feet"),
  64615. weight: math.unit(250, "lb"),
  64616. preyCapacity: math.unit(0.05, "people"),
  64617. name: "Front (SFW)",
  64618. image: {
  64619. source: "./media/characters/oarven/front-sfw.svg",
  64620. extra: 1795/1783,
  64621. bottom: 142/1937
  64622. }
  64623. },
  64624. },
  64625. [
  64626. {
  64627. name: "Megamacro",
  64628. height: math.unit(5, "miles"),
  64629. default: true
  64630. },
  64631. {
  64632. name: "Maximum Height",
  64633. height: math.unit(5, "AUs")
  64634. },
  64635. ]
  64636. ))
  64637. characterMakers.push(() => makeCharacter(
  64638. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64639. {
  64640. side: {
  64641. height: math.unit(1065, "meters"),
  64642. weight: math.unit(1e12, "kg"),
  64643. volume: math.unit(3265000000, "m^3"),
  64644. name: "Side",
  64645. image: {
  64646. source: "./media/characters/solidarity/side.svg"
  64647. }
  64648. },
  64649. front: {
  64650. height: math.unit(1065, "meters"),
  64651. weight: math.unit(3265000000000, "kg"),
  64652. volume: math.unit(3265000000, "m^3"),
  64653. name: "Front",
  64654. image: {
  64655. source: "./media/characters/solidarity/front.svg"
  64656. }
  64657. },
  64658. top: {
  64659. height: math.unit(5823, "meters"),
  64660. weight: math.unit(3265000000000, "kg"),
  64661. volume: math.unit(3265000000, "m^3"),
  64662. name: "Top",
  64663. image: {
  64664. source: "./media/characters/solidarity/top.svg"
  64665. }
  64666. },
  64667. },
  64668. [
  64669. {
  64670. name: "Normal",
  64671. height: math.unit(1065, "meters"),
  64672. default: true
  64673. },
  64674. ]
  64675. ))
  64676. characterMakers.push(() => makeCharacter(
  64677. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64678. {
  64679. side: {
  64680. height: math.unit(18 + 4/12, "feet"),
  64681. weight: math.unit(13000, "kg"),
  64682. name: "Side",
  64683. image: {
  64684. source: "./media/characters/ani'szi/side.svg",
  64685. extra: 468/459,
  64686. bottom: 60/528
  64687. }
  64688. },
  64689. head: {
  64690. height: math.unit(4.8, "feet"),
  64691. name: "Head",
  64692. image: {
  64693. source: "./media/characters/ani'szi/head.svg"
  64694. }
  64695. },
  64696. jaws: {
  64697. height: math.unit(2.25, "feet"),
  64698. name: "Jaws",
  64699. image: {
  64700. source: "./media/characters/ani'szi/jaws.svg"
  64701. }
  64702. },
  64703. bust: {
  64704. height: math.unit(8.9, "feet"),
  64705. name: "Bust",
  64706. image: {
  64707. source: "./media/characters/ani'szi/bust.svg"
  64708. }
  64709. },
  64710. back: {
  64711. height: math.unit(13.53, "feet"),
  64712. name: "Back",
  64713. image: {
  64714. source: "./media/characters/ani'szi/back.svg"
  64715. }
  64716. },
  64717. eye: {
  64718. height: math.unit(0.44, "feet"),
  64719. name: "Eye",
  64720. image: {
  64721. source: "./media/characters/ani'szi/eye.svg"
  64722. }
  64723. },
  64724. },
  64725. [
  64726. {
  64727. name: "Normal",
  64728. height: math.unit(18 + 4/12, "feet"),
  64729. default: true
  64730. },
  64731. ]
  64732. ))
  64733. characterMakers.push(() => makeCharacter(
  64734. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64735. {
  64736. front: {
  64737. height: math.unit(7 + 6/12, "feet"),
  64738. weight: math.unit(300, "lb"),
  64739. name: "Front",
  64740. image: {
  64741. source: "./media/characters/rain/front.svg",
  64742. extra: 2955/2698,
  64743. bottom: 235/3190
  64744. }
  64745. },
  64746. dressed: {
  64747. height: math.unit(7 + 6/12, "feet"),
  64748. weight: math.unit(300, "lb"),
  64749. name: "Dressed",
  64750. image: {
  64751. source: "./media/characters/rain/dressed.svg",
  64752. extra: 2783/2572,
  64753. bottom: 430/3213
  64754. }
  64755. },
  64756. },
  64757. [
  64758. {
  64759. name: "Normal",
  64760. height: math.unit(7 + 6/12, "feet"),
  64761. default: true
  64762. },
  64763. {
  64764. name: "Macro",
  64765. height: math.unit(200, "feet")
  64766. },
  64767. {
  64768. name: "Macro+",
  64769. height: math.unit(500, "feet")
  64770. },
  64771. {
  64772. name: "Megamacro",
  64773. height: math.unit(5, "miles")
  64774. },
  64775. ]
  64776. ))
  64777. characterMakers.push(() => makeCharacter(
  64778. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64779. {
  64780. taur_side: {
  64781. height: math.unit(3, "meters"),
  64782. name: "Side",
  64783. image: {
  64784. source: "./media/characters/anise/taur-side.svg",
  64785. extra: 1833/926,
  64786. bottom: 134/1967
  64787. },
  64788. form: "taur",
  64789. default: true
  64790. },
  64791. feral_side: {
  64792. height: math.unit(3, "meters"),
  64793. name: "Side",
  64794. image: {
  64795. source: "./media/characters/anise/feral-side.svg",
  64796. extra: 681/349,
  64797. bottom: 26/707
  64798. },
  64799. form: "feral"
  64800. },
  64801. },
  64802. [
  64803. {
  64804. name: "Normal",
  64805. height: math.unit(3, "meters"),
  64806. default: true,
  64807. allForms: true
  64808. },
  64809. ],
  64810. {
  64811. "taur": {
  64812. name: "Taur",
  64813. default: true
  64814. },
  64815. "feral": {
  64816. name: "Feral",
  64817. },
  64818. }
  64819. ))
  64820. characterMakers.push(() => makeCharacter(
  64821. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64822. {
  64823. front: {
  64824. height: math.unit(1.9, "meters"),
  64825. weight: math.unit(75, "kg"),
  64826. name: "Front",
  64827. image: {
  64828. source: "./media/characters/sarina/front.svg",
  64829. extra: 1275/1200,
  64830. bottom: 49/1324
  64831. }
  64832. },
  64833. back: {
  64834. height: math.unit(1.9, "meters"),
  64835. weight: math.unit(75, "kg"),
  64836. name: "Back",
  64837. image: {
  64838. source: "./media/characters/sarina/back.svg",
  64839. extra: 1279/1209,
  64840. bottom: 14/1293
  64841. }
  64842. },
  64843. dressed: {
  64844. height: math.unit(1.9, "meters"),
  64845. weight: math.unit(75, "kg"),
  64846. name: "Dressed",
  64847. image: {
  64848. source: "./media/characters/sarina/dressed.svg",
  64849. extra: 1256/1187,
  64850. bottom: 56/1312
  64851. }
  64852. },
  64853. paw: {
  64854. height: math.unit(0.57, "feet"),
  64855. name: "Paw",
  64856. image: {
  64857. source: "./media/characters/sarina/paw.svg"
  64858. }
  64859. },
  64860. toering: {
  64861. height: math.unit(0.27, "feet"),
  64862. name: "Toering",
  64863. image: {
  64864. source: "./media/characters/sarina/toering.svg"
  64865. }
  64866. },
  64867. },
  64868. [
  64869. {
  64870. name: "Incognito",
  64871. height: math.unit(1.9, "meters")
  64872. },
  64873. {
  64874. name: "Home Size",
  64875. height: math.unit(160, "meters"),
  64876. default: true
  64877. },
  64878. {
  64879. name: "Mega",
  64880. height: math.unit(50, "km")
  64881. },
  64882. {
  64883. name: "Small Giga",
  64884. height: math.unit(250, "km")
  64885. },
  64886. {
  64887. name: "Giga (Preferred Size)",
  64888. height: math.unit(3000, "km")
  64889. },
  64890. {
  64891. name: "Terra",
  64892. height: math.unit(40000, "km")
  64893. },
  64894. {
  64895. name: "Terra+",
  64896. height: math.unit(400000, "km")
  64897. },
  64898. {
  64899. name: "Solar",
  64900. height: math.unit(35e6, "km")
  64901. },
  64902. {
  64903. name: "Galactic",
  64904. height: math.unit(648106, "parsecs")
  64905. },
  64906. {
  64907. name: "Universal",
  64908. height: math.unit(7, "universes")
  64909. },
  64910. {
  64911. name: "Universal+",
  64912. height: math.unit(30, "universes")
  64913. },
  64914. ]
  64915. ))
  64916. characterMakers.push(() => makeCharacter(
  64917. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64918. {
  64919. front: {
  64920. height: math.unit(5 + 6/12, "feet"),
  64921. name: "Front",
  64922. image: {
  64923. source: "./media/characters/sifray/front.svg",
  64924. extra: 722/691,
  64925. bottom: 64/786
  64926. }
  64927. },
  64928. },
  64929. [
  64930. {
  64931. name: "Normal",
  64932. height: math.unit(5 + 6/12, "feet"),
  64933. default: true
  64934. },
  64935. ]
  64936. ))
  64937. characterMakers.push(() => makeCharacter(
  64938. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64939. {
  64940. side: {
  64941. height: math.unit(2.64, "feet"),
  64942. weight: math.unit(100, "lb"),
  64943. preyCapacity: math.unit(3, "people"),
  64944. name: "Side",
  64945. image: {
  64946. source: "./media/characters/spots/side.svg",
  64947. extra: 1859/977,
  64948. bottom: 19/1878
  64949. },
  64950. extraAttributes: {
  64951. "preyPerMinute": {
  64952. name: "Prey Per Minute",
  64953. power: 3,
  64954. type: "volume",
  64955. base: math.unit(6, "people"),
  64956. defaultUnit: "people"
  64957. },
  64958. "preyPerDay": {
  64959. name: "Prey Per Day",
  64960. power: 3,
  64961. type: "volume",
  64962. base: math.unit(6 * 60 * 24, "people"),
  64963. defaultUnit: "people"
  64964. },
  64965. }
  64966. },
  64967. },
  64968. [
  64969. {
  64970. name: "Normal",
  64971. height: math.unit(2.64, "feet"),
  64972. default: true
  64973. },
  64974. ]
  64975. ))
  64976. characterMakers.push(() => makeCharacter(
  64977. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64978. {
  64979. front: {
  64980. height: math.unit(29 + 11/12, "feet"),
  64981. weight: math.unit(40, "tons"),
  64982. name: "Front",
  64983. image: {
  64984. source: "./media/characters/mona/front.svg",
  64985. extra: 1257/1116,
  64986. bottom: 34/1291
  64987. }
  64988. },
  64989. },
  64990. [
  64991. {
  64992. name: "Normal",
  64993. height: math.unit(29 + 11/12, "feet"),
  64994. default: true
  64995. },
  64996. ]
  64997. ))
  64998. characterMakers.push(() => makeCharacter(
  64999. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65000. {
  65001. front: {
  65002. height: math.unit(15, "feet"),
  65003. weight: math.unit(3000, "kg"),
  65004. preyCapacity: math.unit(5, "people"),
  65005. name: "Front",
  65006. image: {
  65007. source: "./media/characters/frostfire/front.svg",
  65008. extra: 675/558,
  65009. bottom: 73/748
  65010. }
  65011. },
  65012. side: {
  65013. height: math.unit(15, "feet"),
  65014. weight: math.unit(3000, "kg"),
  65015. preyCapacity: math.unit(5, "people"),
  65016. name: "Side",
  65017. image: {
  65018. source: "./media/characters/frostfire/side.svg",
  65019. extra: 687/585,
  65020. bottom: 50/737
  65021. }
  65022. },
  65023. back: {
  65024. height: math.unit(15, "feet"),
  65025. weight: math.unit(3000, "kg"),
  65026. preyCapacity: math.unit(5, "people"),
  65027. name: "Back",
  65028. image: {
  65029. source: "./media/characters/frostfire/back.svg",
  65030. extra: 707/607,
  65031. bottom: 16/723
  65032. }
  65033. },
  65034. head: {
  65035. height: math.unit(9.35, "feet"),
  65036. name: "Head",
  65037. image: {
  65038. source: "./media/characters/frostfire/head.svg"
  65039. }
  65040. },
  65041. maw: {
  65042. height: math.unit(3.32, "feet"),
  65043. name: "Maw",
  65044. image: {
  65045. source: "./media/characters/frostfire/maw.svg"
  65046. }
  65047. },
  65048. hand: {
  65049. height: math.unit(3.7, "feet"),
  65050. name: "Hand",
  65051. image: {
  65052. source: "./media/characters/frostfire/hand.svg"
  65053. }
  65054. },
  65055. paw: {
  65056. height: math.unit(5.8, "feet"),
  65057. name: "Paw",
  65058. image: {
  65059. source: "./media/characters/frostfire/paw.svg"
  65060. }
  65061. },
  65062. },
  65063. [
  65064. {
  65065. name: "Normal",
  65066. height: math.unit(15, "feet"),
  65067. default: true
  65068. },
  65069. ]
  65070. ))
  65071. characterMakers.push(() => makeCharacter(
  65072. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65073. {
  65074. front: {
  65075. height: math.unit(5 + 2/12, "feet"),
  65076. weight: math.unit(122, "lb"),
  65077. name: "Front",
  65078. image: {
  65079. source: "./media/characters/valeroo/front.svg",
  65080. extra: 1789/1534,
  65081. bottom: 66/1855
  65082. }
  65083. },
  65084. back: {
  65085. height: math.unit(5 + 2/12, "feet"),
  65086. weight: math.unit(122, "lb"),
  65087. name: "Back",
  65088. image: {
  65089. source: "./media/characters/valeroo/back.svg",
  65090. extra: 1848/1588,
  65091. bottom: 68/1916
  65092. }
  65093. },
  65094. head: {
  65095. height: math.unit(1.87, "feet"),
  65096. name: "Head",
  65097. image: {
  65098. source: "./media/characters/valeroo/head.svg"
  65099. }
  65100. },
  65101. hand: {
  65102. height: math.unit(0.82, "feet"),
  65103. name: "Hand",
  65104. image: {
  65105. source: "./media/characters/valeroo/hand.svg"
  65106. }
  65107. },
  65108. foot: {
  65109. height: math.unit(2.42, "feet"),
  65110. name: "Foot",
  65111. image: {
  65112. source: "./media/characters/valeroo/foot.svg"
  65113. }
  65114. },
  65115. },
  65116. [
  65117. {
  65118. name: "Normal",
  65119. height: math.unit(5 + 2/12, "feet"),
  65120. default: true
  65121. },
  65122. ]
  65123. ))
  65124. characterMakers.push(() => makeCharacter(
  65125. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65126. {
  65127. front: {
  65128. height: math.unit(11 + 3/12, "feet"),
  65129. name: "Front",
  65130. image: {
  65131. source: "./media/characters/corrin/front.svg",
  65132. extra: 665/597,
  65133. bottom: 74/739
  65134. }
  65135. },
  65136. },
  65137. [
  65138. {
  65139. name: "Standard",
  65140. height: math.unit(11 + 3/12, "feet"),
  65141. default: true
  65142. },
  65143. {
  65144. name: "The Boss",
  65145. height: math.unit(110, "feet")
  65146. },
  65147. {
  65148. name: "Shipbreaker",
  65149. height: math.unit(38, "km")
  65150. },
  65151. ]
  65152. ))
  65153. characterMakers.push(() => makeCharacter(
  65154. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65155. {
  65156. front: {
  65157. height: math.unit(10, "feet"),
  65158. weight: math.unit(1750, "lb"),
  65159. name: "Front",
  65160. image: {
  65161. source: "./media/characters/kiba-ulrich/front.svg",
  65162. extra: 1037/973,
  65163. bottom: 36/1073
  65164. }
  65165. },
  65166. },
  65167. [
  65168. {
  65169. name: "Normal",
  65170. height: math.unit(10, "feet"),
  65171. default: true
  65172. },
  65173. {
  65174. name: "Minimacro",
  65175. height: math.unit(20, "feet")
  65176. },
  65177. {
  65178. name: "Macro",
  65179. height: math.unit(200, "feet")
  65180. },
  65181. {
  65182. name: "Megamacro",
  65183. height: math.unit(22500, "feet")
  65184. },
  65185. {
  65186. name: "Gigamacro",
  65187. height: math.unit(2700, "miles")
  65188. },
  65189. {
  65190. name: "Teramacro",
  65191. height: math.unit(10000, "miles")
  65192. },
  65193. ]
  65194. ))
  65195. characterMakers.push(() => makeCharacter(
  65196. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65197. {
  65198. gryphon_front: {
  65199. height: math.unit(220, "cm"),
  65200. weight: math.unit(160, "kg"),
  65201. name: "Front",
  65202. image: {
  65203. source: "./media/characters/ceanoth/gryphon-front.svg",
  65204. extra: 616/552,
  65205. bottom: 33/649
  65206. },
  65207. form: "gryphon",
  65208. default: true
  65209. },
  65210. },
  65211. [
  65212. {
  65213. name: "Normal",
  65214. height: math.unit(220, "cm"),
  65215. form: "gryphon",
  65216. default: true
  65217. },
  65218. ],
  65219. {
  65220. "gryphon": {
  65221. name: "Grpyhon",
  65222. default: true
  65223. },
  65224. }
  65225. ))
  65226. characterMakers.push(() => makeCharacter(
  65227. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65228. {
  65229. dressed: {
  65230. height: math.unit(2.2 * 0.79, "meters"),
  65231. weight: math.unit(0.5, "tonnes"),
  65232. name: "Dressed",
  65233. image: {
  65234. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65235. extra: 665/315,
  65236. bottom: 106/771
  65237. },
  65238. extraAttributes: {
  65239. "bodyLength": {
  65240. name: "Body Length",
  65241. power: 1,
  65242. type: "length",
  65243. base: math.unit(2.5, "meters")
  65244. },
  65245. "tailLength": {
  65246. name: "Tail Length",
  65247. power: 1,
  65248. type: "length",
  65249. base: math.unit(4.5, "meters")
  65250. },
  65251. "wingspan": {
  65252. name: "Wingspan",
  65253. power: 1,
  65254. type: "length",
  65255. base: math.unit(6, "meters")
  65256. },
  65257. "taurStomachCapacity": {
  65258. name: "Taur Stomach Capacity",
  65259. power: 3,
  65260. type: "volume",
  65261. base: math.unit(4, "people"),
  65262. defaultUnit: "people"
  65263. },
  65264. "anthroStomachCapacity": {
  65265. name: "Anthro Stomach Capacity",
  65266. power: 3,
  65267. type: "volume",
  65268. base: math.unit(1, "people"),
  65269. defaultUnit: "people"
  65270. },
  65271. }
  65272. },
  65273. nude: {
  65274. height: math.unit(2.2 * 0.79, "meters"),
  65275. weight: math.unit(0.5, "tonnes"),
  65276. name: "Nude",
  65277. image: {
  65278. source: "./media/characters/vanadiya-athelya/nude.svg",
  65279. extra: 665/315,
  65280. bottom: 106/771
  65281. },
  65282. extraAttributes: {
  65283. "bodyLength": {
  65284. name: "Body Length",
  65285. power: 1,
  65286. type: "length",
  65287. base: math.unit(2.5, "meters")
  65288. },
  65289. "tailLength": {
  65290. name: "Tail Length",
  65291. power: 1,
  65292. type: "length",
  65293. base: math.unit(4.5, "meters")
  65294. },
  65295. "wingspan": {
  65296. name: "Wingspan",
  65297. power: 1,
  65298. type: "length",
  65299. base: math.unit(6, "meters")
  65300. },
  65301. "taurStomachCapacity": {
  65302. name: "Taur Stomach Capacity",
  65303. power: 3,
  65304. type: "volume",
  65305. base: math.unit(4, "people"),
  65306. defaultUnit: "people"
  65307. },
  65308. "anthroStomachCapacity": {
  65309. name: "Anthro Stomach Capacity",
  65310. power: 3,
  65311. type: "volume",
  65312. base: math.unit(1, "people"),
  65313. defaultUnit: "people"
  65314. },
  65315. }
  65316. },
  65317. },
  65318. [
  65319. {
  65320. name: "Handheld",
  65321. height: math.unit(0.79 * 0.06, "meters")
  65322. },
  65323. {
  65324. name: "Mini",
  65325. height: math.unit(0.79 * 0.7, "meters")
  65326. },
  65327. {
  65328. name: "Short",
  65329. height: math.unit(0.79 * 1.4, "meters")
  65330. },
  65331. {
  65332. name: "Imposing",
  65333. height: math.unit(0.79 * 2.2, "meters"),
  65334. default: true
  65335. },
  65336. {
  65337. name: "Big",
  65338. height: math.unit(0.79 * 3.8, "meters")
  65339. },
  65340. {
  65341. name: "Giant",
  65342. height: math.unit(0.79 * 6.7, "meters")
  65343. },
  65344. {
  65345. name: "Airliner",
  65346. height: math.unit(0.79 * 64, "meters")
  65347. },
  65348. {
  65349. name: "Skyscraper",
  65350. height: math.unit(0.79 * 220, "meters")
  65351. },
  65352. {
  65353. name: "Mountain",
  65354. height: math.unit(0.79 * 3.6, "km")
  65355. },
  65356. {
  65357. name: "Spacescraper",
  65358. height: math.unit(0.79 * 70, "km")
  65359. },
  65360. {
  65361. name: "Continental",
  65362. height: math.unit(0.79 * 1290, "km")
  65363. },
  65364. {
  65365. name: "Moon",
  65366. height: math.unit(0.79 * 32200, "km")
  65367. },
  65368. {
  65369. name: "Planetary",
  65370. height: math.unit(0.79 * 145000, "km")
  65371. },
  65372. {
  65373. name: "Stellar",
  65374. height: math.unit(0.79 * 19e6, "km")
  65375. },
  65376. {
  65377. name: "Solar",
  65378. height: math.unit(0.79 * 40, "AU")
  65379. },
  65380. {
  65381. name: "Intersteller",
  65382. height: math.unit(0.79 * 3, "lightyears")
  65383. },
  65384. {
  65385. name: "Star Cluster",
  65386. height: math.unit(0.79 * 80, "lightyears")
  65387. },
  65388. {
  65389. name: "Ecumenical",
  65390. height: math.unit(0.79 * 2e3, "lightyears")
  65391. },
  65392. {
  65393. name: "Galactic",
  65394. height: math.unit(0.79 * 175000, "lightyears")
  65395. },
  65396. {
  65397. name: "Galaxy Cluster",
  65398. height: math.unit(0.79 * 25e6, "lightyears")
  65399. },
  65400. ]
  65401. ))
  65402. characterMakers.push(() => makeCharacter(
  65403. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65404. {
  65405. front: {
  65406. height: math.unit(6 + 2/12, "feet"),
  65407. weight: math.unit(160, "lb"),
  65408. name: "Front",
  65409. image: {
  65410. source: "./media/characters/yana-amelin/front.svg",
  65411. extra: 1413/1295,
  65412. bottom: 42/1455
  65413. }
  65414. },
  65415. back: {
  65416. height: math.unit(6 + 2/12, "feet"),
  65417. weight: math.unit(160, "lb"),
  65418. name: "Back",
  65419. image: {
  65420. source: "./media/characters/yana-amelin/back.svg",
  65421. extra: 1424/1310,
  65422. bottom: 24/1448
  65423. }
  65424. },
  65425. paws: {
  65426. height: math.unit(1.48, "feet"),
  65427. name: "Paws",
  65428. image: {
  65429. source: "./media/characters/yana-amelin/paws.svg",
  65430. extra: 304/304,
  65431. bottom: 49/353
  65432. }
  65433. },
  65434. },
  65435. [
  65436. {
  65437. name: "Micro",
  65438. height: math.unit(4, "inches")
  65439. },
  65440. {
  65441. name: "Normal",
  65442. height: math.unit(6 + 2/12, "feet"),
  65443. default: true
  65444. },
  65445. {
  65446. name: "Minimacro",
  65447. height: math.unit(20, "feet")
  65448. },
  65449. {
  65450. name: "Macro",
  65451. height: math.unit(70, "feet")
  65452. },
  65453. ]
  65454. ))
  65455. characterMakers.push(() => makeCharacter(
  65456. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65457. {
  65458. frontNsfw: {
  65459. height: math.unit(2.48, "meters"),
  65460. weight: math.unit(112, "kg"),
  65461. name: "Front (NSFW)",
  65462. image: {
  65463. source: "./media/characters/titania/front-nsfw.svg",
  65464. extra: 1302/1232,
  65465. bottom: 90/1392
  65466. }
  65467. },
  65468. backNsfw: {
  65469. height: math.unit(2.48, "meters"),
  65470. weight: math.unit(112, "kg"),
  65471. name: "Back (NSFW)",
  65472. image: {
  65473. source: "./media/characters/titania/back-nsfw.svg",
  65474. extra: 1355/1288,
  65475. bottom: 18/1373
  65476. }
  65477. },
  65478. frontSfw: {
  65479. height: math.unit(2.48, "meters"),
  65480. weight: math.unit(112, "kg"),
  65481. name: "Front (SFW)",
  65482. image: {
  65483. source: "./media/characters/titania/front-sfw.svg",
  65484. extra: 1302/1232,
  65485. bottom: 90/1392
  65486. }
  65487. },
  65488. backSfw: {
  65489. height: math.unit(2.48, "meters"),
  65490. weight: math.unit(112, "kg"),
  65491. name: "Back (SFW)",
  65492. image: {
  65493. source: "./media/characters/titania/back-sfw.svg",
  65494. extra: 1355/1288,
  65495. bottom: 18/1373
  65496. }
  65497. },
  65498. head: {
  65499. height: math.unit(2.06, "feet"),
  65500. name: "Head",
  65501. image: {
  65502. source: "./media/characters/titania/head.svg"
  65503. }
  65504. },
  65505. maw: {
  65506. height: math.unit(0.8, "feet"),
  65507. name: "Maw",
  65508. image: {
  65509. source: "./media/characters/titania/maw.svg"
  65510. }
  65511. },
  65512. foot: {
  65513. height: math.unit(1.65, "feet"),
  65514. name: "Foot",
  65515. image: {
  65516. source: "./media/characters/titania/foot.svg"
  65517. }
  65518. },
  65519. nethers: {
  65520. height: math.unit(1.7, "feet"),
  65521. name: "Nethers",
  65522. image: {
  65523. source: "./media/characters/titania/nethers.svg"
  65524. }
  65525. },
  65526. },
  65527. [
  65528. {
  65529. name: "Normal",
  65530. height: math.unit(2.48, "meters"),
  65531. default: true
  65532. },
  65533. {
  65534. name: "Mini Macro",
  65535. height: math.unit(248, "meters")
  65536. },
  65537. {
  65538. name: "Macro",
  65539. height: math.unit(620, "meters")
  65540. },
  65541. {
  65542. name: "Mega Macro",
  65543. height: math.unit(1860, "meters")
  65544. },
  65545. ]
  65546. ))
  65547. characterMakers.push(() => makeCharacter(
  65548. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65549. {
  65550. front: {
  65551. height: math.unit(5 + 9/12, "feet"),
  65552. weight: math.unit(1500, "lb"),
  65553. name: "Front",
  65554. image: {
  65555. source: "./media/characters/tony-gray/front.svg",
  65556. extra: 700/575,
  65557. bottom: 71/771
  65558. }
  65559. },
  65560. },
  65561. [
  65562. {
  65563. name: "Normal",
  65564. height: math.unit(5 + 9/12, "feet"),
  65565. default: true
  65566. },
  65567. ]
  65568. ))
  65569. characterMakers.push(() => makeCharacter(
  65570. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65571. {
  65572. side: {
  65573. height: math.unit(8 + 2/12, "feet"),
  65574. name: "Side",
  65575. image: {
  65576. source: "./media/characters/kelby/side.svg",
  65577. extra: 804/578,
  65578. bottom: 70/874
  65579. },
  65580. form: "regular",
  65581. default: true
  65582. },
  65583. lounging: {
  65584. height: math.unit(12.41, "feet"),
  65585. name: "Lounging",
  65586. image: {
  65587. source: "./media/characters/kelby/lounging.svg"
  65588. },
  65589. form: "regular"
  65590. },
  65591. maw: {
  65592. height: math.unit(5, "feet"),
  65593. name: "Maw",
  65594. image: {
  65595. source: "./media/characters/kelby/maw.svg"
  65596. },
  65597. form: "regular"
  65598. },
  65599. dick: {
  65600. height: math.unit(2.4, "feet"),
  65601. name: "Dick",
  65602. image: {
  65603. source: "./media/characters/kelby/dick.svg"
  65604. },
  65605. form: "regular"
  65606. },
  65607. slit: {
  65608. height: math.unit(1.2, "feet"),
  65609. name: "Slit",
  65610. image: {
  65611. source: "./media/characters/kelby/slit.svg"
  65612. },
  65613. form: "regular"
  65614. },
  65615. chibi: {
  65616. height: math.unit(5, "feet"),
  65617. name: "Chibi",
  65618. image: {
  65619. source: "./media/characters/kelby/chibi.svg",
  65620. extra: 245/200,
  65621. bottom: 43/288
  65622. },
  65623. form: "chibi",
  65624. default: true
  65625. },
  65626. },
  65627. [
  65628. {
  65629. name: "Normal",
  65630. height: math.unit(8 + 2/12, "feet"),
  65631. default: true,
  65632. form: "regular"
  65633. },
  65634. {
  65635. name: "Normal",
  65636. height: math.unit(5, "feet"),
  65637. default: true,
  65638. form: "chibi"
  65639. },
  65640. ],
  65641. {
  65642. "regular": {
  65643. name: "Regular",
  65644. default: true
  65645. },
  65646. "chibi": {
  65647. name: "Chibi",
  65648. },
  65649. }
  65650. ))
  65651. characterMakers.push(() => makeCharacter(
  65652. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65653. {
  65654. front: {
  65655. height: math.unit(7 + 10/12, "feet"),
  65656. weight: math.unit(300, "lb"),
  65657. name: "Front",
  65658. image: {
  65659. source: "./media/characters/elisa-mitchell/front.svg",
  65660. extra: 2562/2355,
  65661. bottom: 62/2624
  65662. }
  65663. },
  65664. maw: {
  65665. height: math.unit(2.37, "feet"),
  65666. name: "Maw",
  65667. image: {
  65668. source: "./media/characters/elisa-mitchell/maw.svg"
  65669. }
  65670. },
  65671. },
  65672. [
  65673. {
  65674. name: "Normal",
  65675. height: math.unit(7 + 10/12, "feet"),
  65676. default: true
  65677. },
  65678. {
  65679. name: "Macro",
  65680. height: math.unit(1490, "feet"),
  65681. default: true
  65682. },
  65683. ]
  65684. ))
  65685. characterMakers.push(() => makeCharacter(
  65686. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65687. {
  65688. front: {
  65689. height: math.unit(122, "cm"),
  65690. weight: math.unit(40, "lb"),
  65691. name: "Front",
  65692. image: {
  65693. source: "./media/characters/camia-vertigo-zott/front.svg",
  65694. extra: 2112/1902,
  65695. bottom: 21/2133
  65696. }
  65697. },
  65698. },
  65699. [
  65700. {
  65701. name: "Base Height",
  65702. height: math.unit(122, "cm")
  65703. },
  65704. {
  65705. name: "Macro Height",
  65706. height: math.unit(345, "meters"),
  65707. default: true
  65708. },
  65709. ]
  65710. ))
  65711. characterMakers.push(() => makeCharacter(
  65712. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65713. {
  65714. front: {
  65715. height: math.unit(6 + 3/12, "feet"),
  65716. weight: math.unit(180, "lb"),
  65717. name: "Front",
  65718. image: {
  65719. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65720. extra: 2580/2457,
  65721. bottom: 131/2711
  65722. }
  65723. },
  65724. },
  65725. [
  65726. {
  65727. name: "Normal",
  65728. height: math.unit(6 + 3/12, "feet"),
  65729. default: true
  65730. },
  65731. ]
  65732. ))
  65733. characterMakers.push(() => makeCharacter(
  65734. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65735. {
  65736. front: {
  65737. height: math.unit(165, "cm"),
  65738. weight: math.unit(130, "lb"),
  65739. name: "Front",
  65740. image: {
  65741. source: "./media/characters/sleeka/front.svg",
  65742. extra: 1252/1200,
  65743. bottom: 46/1298
  65744. }
  65745. },
  65746. },
  65747. [
  65748. {
  65749. name: "Normal",
  65750. height: math.unit(165, "cm")
  65751. },
  65752. {
  65753. name: "Galactic",
  65754. height: math.unit(5.8e22, "meters"),
  65755. default: true
  65756. },
  65757. {
  65758. name: "Universal",
  65759. height: math.unit(1.02e29, "meters")
  65760. },
  65761. ]
  65762. ))
  65763. characterMakers.push(() => makeCharacter(
  65764. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65765. {
  65766. front: {
  65767. height: math.unit(5 + 11/12, "feet"),
  65768. weight: math.unit(145, "lb"),
  65769. name: "Front",
  65770. image: {
  65771. source: "./media/characters/emily-whitetail/front.svg",
  65772. extra: 2510/2280,
  65773. bottom: 128/2638
  65774. }
  65775. },
  65776. },
  65777. [
  65778. {
  65779. name: "Normal",
  65780. height: math.unit(5 + 11/12, "feet")
  65781. },
  65782. {
  65783. name: "Galactic",
  65784. height: math.unit(6.3e22, "meters"),
  65785. default: true
  65786. },
  65787. {
  65788. name: "Universal",
  65789. height: math.unit(1.12e29, "meters")
  65790. },
  65791. ]
  65792. ))
  65793. characterMakers.push(() => makeCharacter(
  65794. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65795. {
  65796. front: {
  65797. height: math.unit(5 + 4/12, "feet"),
  65798. weight: math.unit(110, "lb"),
  65799. name: "Front",
  65800. image: {
  65801. source: "./media/characters/buck-whitetail/front.svg",
  65802. extra: 2430/2186,
  65803. bottom: 125/2555
  65804. }
  65805. },
  65806. },
  65807. [
  65808. {
  65809. name: "Normal",
  65810. height: math.unit(5 + 4/12, "feet")
  65811. },
  65812. {
  65813. name: "Galactic",
  65814. height: math.unit(5.4e22, "meters"),
  65815. default: true
  65816. },
  65817. {
  65818. name: "Universal",
  65819. height: math.unit(9.6e28, "meters")
  65820. },
  65821. ]
  65822. ))
  65823. characterMakers.push(() => makeCharacter(
  65824. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65825. {
  65826. front: {
  65827. height: math.unit(5 + 3/12, "feet"),
  65828. name: "Front",
  65829. image: {
  65830. source: "./media/characters/zoey-frisk/front.svg",
  65831. extra: 2825/2646,
  65832. bottom: 57/2882
  65833. }
  65834. },
  65835. },
  65836. [
  65837. {
  65838. name: "Normal",
  65839. height: math.unit(5 + 3/12, "feet"),
  65840. default: true
  65841. },
  65842. {
  65843. name: "Macro",
  65844. height: math.unit(800, "feet")
  65845. },
  65846. ]
  65847. ))
  65848. characterMakers.push(() => makeCharacter(
  65849. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65850. {
  65851. front: {
  65852. height: math.unit(210, "cm"),
  65853. weight: math.unit(102, "kg"),
  65854. name: "Front",
  65855. image: {
  65856. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65857. extra: 831/790,
  65858. bottom: 19/850
  65859. }
  65860. },
  65861. },
  65862. [
  65863. {
  65864. name: "Micro",
  65865. height: math.unit(1, "mm")
  65866. },
  65867. {
  65868. name: "Small",
  65869. height: math.unit(1, "cm")
  65870. },
  65871. {
  65872. name: "Short",
  65873. height: math.unit(1, "foot")
  65874. },
  65875. {
  65876. name: "Normal",
  65877. height: math.unit(210, "cm"),
  65878. default: true
  65879. },
  65880. {
  65881. name: "Big",
  65882. height: math.unit(15, "feet")
  65883. },
  65884. {
  65885. name: "Macro",
  65886. height: math.unit(50, "feet")
  65887. },
  65888. ]
  65889. ))
  65890. characterMakers.push(() => makeCharacter(
  65891. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65892. {
  65893. front: {
  65894. height: math.unit(80, "feet"),
  65895. weight: math.unit(410000, "lb"),
  65896. name: "Front",
  65897. image: {
  65898. source: "./media/characters/trouble/front.svg",
  65899. extra: 780/723,
  65900. bottom: 11/791
  65901. },
  65902. extraAttributes: {
  65903. "pawArea": {
  65904. name: "Paw Area",
  65905. power: 2,
  65906. type: "area",
  65907. base: math.unit(49, "feet^2")
  65908. },
  65909. }
  65910. },
  65911. },
  65912. [
  65913. {
  65914. name: "Normal",
  65915. height: math.unit(80, "feet"),
  65916. default: true
  65917. },
  65918. ]
  65919. ))
  65920. characterMakers.push(() => makeCharacter(
  65921. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65922. {
  65923. front: {
  65924. height: math.unit(5 + 7/12, "feet"),
  65925. weight: math.unit(140, "lb"),
  65926. name: "Front",
  65927. image: {
  65928. source: "./media/characters/bastion-aralus/front.svg",
  65929. extra: 1122/1045,
  65930. bottom: 24/1146
  65931. }
  65932. },
  65933. back: {
  65934. height: math.unit(5 + 7/12, "feet"),
  65935. weight: math.unit(140, "lb"),
  65936. name: "Back",
  65937. image: {
  65938. source: "./media/characters/bastion-aralus/back.svg",
  65939. extra: 1158/1078,
  65940. bottom: 39/1197
  65941. }
  65942. },
  65943. dick: {
  65944. height: math.unit(1.16, "feet"),
  65945. name: "Dick",
  65946. image: {
  65947. source: "./media/characters/bastion-aralus/dick.svg"
  65948. }
  65949. },
  65950. },
  65951. [
  65952. {
  65953. name: "Micro",
  65954. height: math.unit(1, "mm")
  65955. },
  65956. {
  65957. name: "Normal",
  65958. height: math.unit(5 + 7/12, "feet"),
  65959. default: true
  65960. },
  65961. {
  65962. name: "Macro",
  65963. height: math.unit(57, "feet")
  65964. },
  65965. ]
  65966. ))
  65967. characterMakers.push(() => makeCharacter(
  65968. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65969. {
  65970. sona_front: {
  65971. height: math.unit(6, "feet"),
  65972. weight: math.unit(350, "lb"),
  65973. name: "Front",
  65974. image: {
  65975. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65976. extra: 1099/1005,
  65977. bottom: 22/1121
  65978. },
  65979. form: "sona",
  65980. default: true
  65981. },
  65982. sona_side: {
  65983. height: math.unit(6, "feet"),
  65984. weight: math.unit(350, "lb"),
  65985. name: "Side",
  65986. image: {
  65987. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65988. extra: 1075/1017,
  65989. bottom: 20/1095
  65990. },
  65991. form: "sona",
  65992. },
  65993. character_front: {
  65994. height: math.unit(6, "feet"),
  65995. weight: math.unit(300, "lb"),
  65996. name: "Front",
  65997. image: {
  65998. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65999. extra: 1099/1005,
  66000. bottom: 22/1121
  66001. },
  66002. form: "character",
  66003. default: true
  66004. },
  66005. character_side: {
  66006. height: math.unit(6, "feet"),
  66007. weight: math.unit(300, "lb"),
  66008. name: "Side",
  66009. image: {
  66010. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66011. extra: 1075/1017,
  66012. bottom: 20/1095
  66013. },
  66014. form: "character",
  66015. },
  66016. },
  66017. [
  66018. {
  66019. name: "Normal",
  66020. height: math.unit(500, "feet"),
  66021. default: true,
  66022. form: "sona"
  66023. },
  66024. {
  66025. name: "Normal",
  66026. height: math.unit(50, "feet"),
  66027. default: true,
  66028. form: "character"
  66029. },
  66030. ],
  66031. {
  66032. "sona": {
  66033. name: "Sona",
  66034. default: true
  66035. },
  66036. "character": {
  66037. name: "Character",
  66038. },
  66039. }
  66040. ))
  66041. characterMakers.push(() => makeCharacter(
  66042. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66043. {
  66044. front: {
  66045. height: math.unit(5 + 4/12, "feet"),
  66046. weight: math.unit(58, "kg"),
  66047. name: "Front",
  66048. image: {
  66049. source: "./media/characters/hood/front.svg",
  66050. extra: 1474/1309,
  66051. bottom: 0/1474
  66052. }
  66053. },
  66054. },
  66055. [
  66056. {
  66057. name: "Normal",
  66058. height: math.unit(5 + 4/12, "feet"),
  66059. default: true
  66060. },
  66061. ]
  66062. ))
  66063. characterMakers.push(() => makeCharacter(
  66064. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66065. {
  66066. front: {
  66067. height: math.unit(8 + 2/12, "feet"),
  66068. name: "Front",
  66069. image: {
  66070. source: "./media/characters/rena/front.svg",
  66071. extra: 1768/1632,
  66072. bottom: 57/1825
  66073. }
  66074. },
  66075. },
  66076. [
  66077. {
  66078. name: "Normal",
  66079. height: math.unit(8 + 2/12, "feet"),
  66080. default: true
  66081. },
  66082. ]
  66083. ))
  66084. characterMakers.push(() => makeCharacter(
  66085. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66086. {
  66087. front: {
  66088. height: math.unit(5 + 3/12, "feet"),
  66089. name: "Front",
  66090. image: {
  66091. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66092. extra: 1209/1159,
  66093. bottom: 33/1242
  66094. }
  66095. },
  66096. maw: {
  66097. height: math.unit(1.75, "feet"),
  66098. name: "Maw",
  66099. image: {
  66100. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66101. }
  66102. },
  66103. },
  66104. [
  66105. {
  66106. name: "Micro",
  66107. height: math.unit(3, "inches")
  66108. },
  66109. {
  66110. name: "Regular",
  66111. height: math.unit(5 + 3/12, "feet"),
  66112. default: true
  66113. },
  66114. {
  66115. name: "Imagined",
  66116. height: math.unit(90, "meters")
  66117. },
  66118. ]
  66119. ))
  66120. characterMakers.push(() => makeCharacter(
  66121. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66122. {
  66123. front: {
  66124. height: math.unit(11.75, "feet"),
  66125. weight: math.unit(4346, "lb"),
  66126. preyCapacity: math.unit(20, "people"),
  66127. name: "Front",
  66128. image: {
  66129. source: "./media/characters/suma-roo/front.svg",
  66130. extra: 1370/1365,
  66131. bottom: 164/1534
  66132. }
  66133. },
  66134. },
  66135. [
  66136. {
  66137. name: "Normal",
  66138. height: math.unit(11.75, "feet"),
  66139. default: true
  66140. },
  66141. ]
  66142. ))
  66143. characterMakers.push(() => makeCharacter(
  66144. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66145. {
  66146. front: {
  66147. height: math.unit(2.35, "meters"),
  66148. weight: math.unit(240, "kg"),
  66149. name: "Front",
  66150. image: {
  66151. source: "./media/characters/hymmanios/front.svg",
  66152. extra: 2032/1994,
  66153. bottom: 194/2226
  66154. }
  66155. },
  66156. },
  66157. [
  66158. {
  66159. name: "Normal",
  66160. height: math.unit(2.35, "meters"),
  66161. default: true
  66162. },
  66163. {
  66164. name: "Macro",
  66165. height: math.unit(75, "meters")
  66166. },
  66167. {
  66168. name: "Mega",
  66169. height: math.unit(1250, "meters")
  66170. },
  66171. {
  66172. name: "Giga",
  66173. height: math.unit(235000, "meters")
  66174. },
  66175. ]
  66176. ))
  66177. characterMakers.push(() => makeCharacter(
  66178. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66179. {
  66180. front: {
  66181. height: math.unit(134, "feet"),
  66182. weight: math.unit(932.635, "tons"),
  66183. name: "Front",
  66184. image: {
  66185. source: "./media/characters/azalea/front.svg",
  66186. extra: 703/687,
  66187. bottom: 75/778
  66188. }
  66189. },
  66190. },
  66191. [
  66192. {
  66193. name: "Normal",
  66194. height: math.unit(134, "feet"),
  66195. default: true
  66196. },
  66197. ]
  66198. ))
  66199. characterMakers.push(() => makeCharacter(
  66200. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66201. {
  66202. front: {
  66203. height: math.unit(6.4, "feet"),
  66204. weight: math.unit(167.5, "lb"),
  66205. name: "Front",
  66206. image: {
  66207. source: "./media/characters/lizzy/front.svg",
  66208. extra: 1916/1791,
  66209. bottom: 103/2019
  66210. }
  66211. },
  66212. back: {
  66213. height: math.unit(6.4, "feet"),
  66214. weight: math.unit(167.5, "lb"),
  66215. name: "Back",
  66216. image: {
  66217. source: "./media/characters/lizzy/back.svg",
  66218. extra: 1995/1856,
  66219. bottom: 11/2006
  66220. }
  66221. },
  66222. },
  66223. [
  66224. {
  66225. name: "Normal",
  66226. height: math.unit(6.4, "feet"),
  66227. default: true
  66228. },
  66229. ]
  66230. ))
  66231. characterMakers.push(() => makeCharacter(
  66232. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66233. {
  66234. front: {
  66235. height: math.unit(66, "inches"),
  66236. name: "Front",
  66237. image: {
  66238. source: "./media/characters/sasha/front.svg",
  66239. extra: 620/571,
  66240. bottom: 33/653
  66241. }
  66242. },
  66243. back: {
  66244. height: math.unit(66, "inches"),
  66245. name: "Back",
  66246. image: {
  66247. source: "./media/characters/sasha/back.svg",
  66248. extra: 615/564,
  66249. bottom: 38/653
  66250. }
  66251. },
  66252. },
  66253. [
  66254. {
  66255. name: "IRL",
  66256. height: math.unit(2, "inches")
  66257. },
  66258. {
  66259. name: "Normal",
  66260. height: math.unit(66, "inches"),
  66261. default: true
  66262. },
  66263. {
  66264. name: "Macro",
  66265. height: math.unit(400, "feet")
  66266. },
  66267. {
  66268. name: "Mega Macro",
  66269. height: math.unit(500000, "feet")
  66270. },
  66271. {
  66272. name: "Giga Macro",
  66273. height: math.unit(50000, "miles")
  66274. },
  66275. ]
  66276. ))
  66277. characterMakers.push(() => makeCharacter(
  66278. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66279. {
  66280. front: {
  66281. height: math.unit(52, "inches"),
  66282. name: "Front",
  66283. image: {
  66284. source: "./media/characters/autumn-avali/front.svg",
  66285. extra: 1031/908,
  66286. bottom: 38/1069
  66287. }
  66288. },
  66289. back: {
  66290. height: math.unit(52, "inches"),
  66291. name: "Back",
  66292. image: {
  66293. source: "./media/characters/autumn-avali/back.svg",
  66294. extra: 1047/923,
  66295. bottom: 11/1058
  66296. }
  66297. },
  66298. maw: {
  66299. height: math.unit(0.59, "feet"),
  66300. name: "Maw",
  66301. image: {
  66302. source: "./media/characters/autumn-avali/maw.svg"
  66303. }
  66304. },
  66305. },
  66306. [
  66307. {
  66308. name: "Normal",
  66309. height: math.unit(52, "inches"),
  66310. default: true
  66311. },
  66312. {
  66313. name: "Big'vali",
  66314. height: math.unit(3.5, "meters")
  66315. },
  66316. {
  66317. name: "Macro",
  66318. height: math.unit(35, "meters")
  66319. },
  66320. {
  66321. name: "Macro+",
  66322. height: math.unit(165, "meters")
  66323. },
  66324. {
  66325. name: "Megamacro",
  66326. height: math.unit(8250, "meters")
  66327. },
  66328. {
  66329. name: "Megamacro+",
  66330. height: math.unit(88000, "meters")
  66331. },
  66332. {
  66333. name: "Gigamacro",
  66334. height: math.unit(1.32, "megameters")
  66335. },
  66336. {
  66337. name: "Planet Cracker",
  66338. height: math.unit(77, "megameters")
  66339. },
  66340. ]
  66341. ))
  66342. characterMakers.push(() => makeCharacter(
  66343. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66344. {
  66345. front: {
  66346. height: math.unit(200, "feet"),
  66347. name: "Front",
  66348. image: {
  66349. source: "./media/characters/sophie/front.svg",
  66350. extra: 710/680,
  66351. bottom: 3/713
  66352. },
  66353. extraAttributes: {
  66354. "milkProduction": {
  66355. name: "Milk Production",
  66356. power: 3,
  66357. type: "volume",
  66358. base: math.unit(27000, "liters")
  66359. },
  66360. }
  66361. },
  66362. },
  66363. [
  66364. {
  66365. name: "Normal",
  66366. height: math.unit(200, "feet"),
  66367. default: true
  66368. },
  66369. ]
  66370. ))
  66371. characterMakers.push(() => makeCharacter(
  66372. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66373. {
  66374. front: {
  66375. height: math.unit(23, "feet"),
  66376. name: "Front",
  66377. image: {
  66378. source: "./media/characters/adelaide-spireborn/front.svg",
  66379. extra: 671/625,
  66380. bottom: 18/689
  66381. }
  66382. },
  66383. maw: {
  66384. height: math.unit(7.8, "feet"),
  66385. name: "Maw",
  66386. image: {
  66387. source: "./media/characters/adelaide-spireborn/maw.svg"
  66388. }
  66389. },
  66390. sword: {
  66391. height: math.unit(13.4, "feet"),
  66392. name: "Sword",
  66393. image: {
  66394. source: "./media/characters/adelaide-spireborn/sword.svg"
  66395. }
  66396. },
  66397. },
  66398. [
  66399. {
  66400. name: "Magically Induced",
  66401. height: math.unit(8.5, "feet")
  66402. },
  66403. {
  66404. name: "Normal",
  66405. height: math.unit(23, "feet"),
  66406. default: true
  66407. },
  66408. ]
  66409. ))
  66410. characterMakers.push(() => makeCharacter(
  66411. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66412. {
  66413. side: {
  66414. height: math.unit(8, "feet"),
  66415. name: "Side",
  66416. image: {
  66417. source: "./media/characters/artemus/side.svg",
  66418. extra: 800/397,
  66419. bottom: 83/883
  66420. }
  66421. },
  66422. front: {
  66423. height: math.unit(8, "feet"),
  66424. name: "Front",
  66425. image: {
  66426. source: "./media/characters/artemus/front.svg",
  66427. extra: 763/348,
  66428. bottom: 89/852
  66429. }
  66430. },
  66431. maw: {
  66432. height: math.unit(5.63, "feet"),
  66433. name: "Maw",
  66434. image: {
  66435. source: "./media/characters/artemus/maw.svg"
  66436. }
  66437. },
  66438. forepaw: {
  66439. height: math.unit(3.13, "feet"),
  66440. name: "Forepaw",
  66441. image: {
  66442. source: "./media/characters/artemus/forepaw.svg"
  66443. }
  66444. },
  66445. hindpaw: {
  66446. height: math.unit(4.85, "feet"),
  66447. name: "Hindpaw",
  66448. image: {
  66449. source: "./media/characters/artemus/hindpaw.svg"
  66450. }
  66451. },
  66452. },
  66453. [
  66454. {
  66455. name: "Normal",
  66456. height: math.unit(8, "feet"),
  66457. default: true
  66458. },
  66459. ]
  66460. ))
  66461. characterMakers.push(() => makeCharacter(
  66462. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66463. {
  66464. front: {
  66465. height: math.unit(4, "feet"),
  66466. name: "Front",
  66467. image: {
  66468. source: "./media/characters/flynn/front.svg",
  66469. extra: 427/404,
  66470. bottom: 14/441
  66471. },
  66472. extraAttributes: {
  66473. "tailLength": {
  66474. name: "Tail Length",
  66475. power: 1,
  66476. type: "length",
  66477. base: math.unit(2.7, "feet")
  66478. },
  66479. }
  66480. },
  66481. frontNsfw: {
  66482. height: math.unit(4, "feet"),
  66483. name: "Front NSFW",
  66484. image: {
  66485. source: "./media/characters/flynn/front-nsfw.svg",
  66486. extra: 427/404,
  66487. bottom: 14/441
  66488. },
  66489. extraAttributes: {
  66490. "tailLength": {
  66491. name: "Tail Length",
  66492. power: 1,
  66493. type: "length",
  66494. base: math.unit(2.7, "feet")
  66495. },
  66496. "dickLength": {
  66497. name: "Dick Length",
  66498. power: 1,
  66499. type: "length",
  66500. base: math.unit(0.7, "feet")
  66501. },
  66502. }
  66503. },
  66504. back: {
  66505. height: math.unit(4, "feet"),
  66506. name: "Back",
  66507. image: {
  66508. source: "./media/characters/flynn/back.svg",
  66509. extra: 420/400,
  66510. bottom: 12/432
  66511. },
  66512. extraAttributes: {
  66513. "tailLength": {
  66514. name: "Tail Length",
  66515. power: 1,
  66516. type: "length",
  66517. base: math.unit(2.7, "feet")
  66518. },
  66519. }
  66520. },
  66521. },
  66522. [
  66523. {
  66524. name: "Normal",
  66525. height: math.unit(4, "feet"),
  66526. default: true
  66527. },
  66528. ]
  66529. ))
  66530. characterMakers.push(() => makeCharacter(
  66531. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66532. {
  66533. frontSfw: {
  66534. height: math.unit(1.9, "meters"),
  66535. name: "Front (SFW)",
  66536. image: {
  66537. source: "./media/characters/orun/front-sfw.svg",
  66538. extra: 1684/1625,
  66539. bottom: 64/1748
  66540. }
  66541. },
  66542. frontNsfw: {
  66543. height: math.unit(1.9, "meters"),
  66544. name: "Front (NSFW)",
  66545. image: {
  66546. source: "./media/characters/orun/front-nsfw.svg",
  66547. extra: 1684/1625,
  66548. bottom: 64/1748
  66549. }
  66550. },
  66551. frontErect: {
  66552. height: math.unit(1.9, "meters"),
  66553. name: "Front (Erect)",
  66554. image: {
  66555. source: "./media/characters/orun/front-erect.svg",
  66556. extra: 1684/1625,
  66557. bottom: 64/1748
  66558. }
  66559. },
  66560. },
  66561. [
  66562. {
  66563. name: "Normal",
  66564. height: math.unit(1.9, "meters"),
  66565. default: true
  66566. },
  66567. {
  66568. name: "Giant",
  66569. height: math.unit(45, "meters")
  66570. },
  66571. {
  66572. name: "Bigger Giant",
  66573. height: math.unit(155, "meters")
  66574. },
  66575. {
  66576. name: "Macro",
  66577. height: math.unit(550, "meters")
  66578. },
  66579. {
  66580. name: "Bigger Macro",
  66581. height: math.unit(1050, "meters")
  66582. },
  66583. {
  66584. name: "Titan",
  66585. height: math.unit(5, "km")
  66586. },
  66587. {
  66588. name: "Bigger Titan",
  66589. height: math.unit(15, "km")
  66590. },
  66591. ]
  66592. ))
  66593. characterMakers.push(() => makeCharacter(
  66594. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66595. {
  66596. clothed: {
  66597. height: math.unit(5 + 6/12, "feet"),
  66598. name: "Clothed",
  66599. image: {
  66600. source: "./media/characters/catherine-busch/clothed.svg",
  66601. extra: 1330/1273,
  66602. bottom: 45/1375
  66603. }
  66604. },
  66605. nude: {
  66606. height: math.unit(5 + 6/12, "feet"),
  66607. name: "Nude",
  66608. image: {
  66609. source: "./media/characters/catherine-busch/nude.svg",
  66610. extra: 1330/1273,
  66611. bottom: 45/1375
  66612. }
  66613. },
  66614. },
  66615. [
  66616. {
  66617. name: "Normal",
  66618. height: math.unit(5 + 6/12, "feet"),
  66619. default: true
  66620. },
  66621. {
  66622. name: "Maximum",
  66623. height: math.unit(1644, "feet")
  66624. },
  66625. ]
  66626. ))
  66627. characterMakers.push(() => makeCharacter(
  66628. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66629. {
  66630. front: {
  66631. height: math.unit(5 + 4/12, "feet"),
  66632. weight: math.unit(160, "lb"),
  66633. name: "Front",
  66634. image: {
  66635. source: "./media/characters/carter/front.svg",
  66636. extra: 1007/940,
  66637. bottom: 37/1044
  66638. }
  66639. },
  66640. back: {
  66641. height: math.unit(5 + 4/12, "feet"),
  66642. weight: math.unit(160, "lb"),
  66643. name: "Back",
  66644. image: {
  66645. source: "./media/characters/carter/back.svg",
  66646. extra: 1010/941,
  66647. bottom: 25/1035
  66648. }
  66649. },
  66650. frontErect: {
  66651. height: math.unit(5 + 4/12, "feet"),
  66652. weight: math.unit(160, "lb"),
  66653. name: "Front (Erect)",
  66654. image: {
  66655. source: "./media/characters/carter/front-erect.svg",
  66656. extra: 1015/948,
  66657. bottom: 33/1048
  66658. }
  66659. },
  66660. },
  66661. [
  66662. {
  66663. name: "Normal",
  66664. height: math.unit(5 + 4/12, "feet"),
  66665. default: true
  66666. },
  66667. ]
  66668. ))
  66669. characterMakers.push(() => makeCharacter(
  66670. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66671. {
  66672. front: {
  66673. height: math.unit(90, "feet"),
  66674. name: "Front",
  66675. image: {
  66676. source: "./media/characters/yula/front.svg",
  66677. extra: 686/641,
  66678. bottom: 5/691
  66679. }
  66680. },
  66681. },
  66682. [
  66683. {
  66684. name: "Normal",
  66685. height: math.unit(90, "feet"),
  66686. default: true
  66687. },
  66688. ]
  66689. ))
  66690. characterMakers.push(() => makeCharacter(
  66691. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66692. {
  66693. front: {
  66694. height: math.unit(2.16, "meters"),
  66695. weight: math.unit(105, "kg"),
  66696. name: "Front",
  66697. image: {
  66698. source: "./media/characters/thomas-bakes/front.svg",
  66699. extra: 333/283,
  66700. bottom: 46/379
  66701. },
  66702. extraAttributes: {
  66703. "pawLength": {
  66704. name: "Paw Length",
  66705. power: 1,
  66706. type: "length",
  66707. base: math.unit(35, "cm")
  66708. },
  66709. "pawWidth": {
  66710. name: "Paw Width",
  66711. power: 1,
  66712. type: "length",
  66713. base: math.unit(30, "cm")
  66714. },
  66715. "handLength": {
  66716. name: "Hand Length",
  66717. power: 1,
  66718. type: "length",
  66719. base: math.unit(30, "cm")
  66720. },
  66721. "handWidth": {
  66722. name: "Hand Width",
  66723. power: 1,
  66724. type: "length",
  66725. base: math.unit(25, "cm")
  66726. },
  66727. "preyCapacity": {
  66728. name: "Prey Capacity",
  66729. power: 3,
  66730. type: "volume",
  66731. base: math.unit(40*20*20, "cm^3")
  66732. },
  66733. "swallowSize": {
  66734. name: "Swallow Size",
  66735. power: 1,
  66736. type: "length",
  66737. base: math.unit(13, "cm")
  66738. },
  66739. "energyIntake": {
  66740. name: "Food Intake",
  66741. power: 3,
  66742. type: "energy",
  66743. base: math.unit(3250, "kcal")
  66744. },
  66745. "wingspan": {
  66746. name: "Wingspan",
  66747. power: 1,
  66748. type: "length",
  66749. base: math.unit(3.7, "meters")
  66750. },
  66751. "wingWidth": {
  66752. name: "Wing Width",
  66753. power: 1,
  66754. type: "length",
  66755. base: math.unit(1.7, "meters")
  66756. },
  66757. }
  66758. },
  66759. },
  66760. [
  66761. {
  66762. name: "Normal",
  66763. height: math.unit(2.16, "meters"),
  66764. default: true
  66765. },
  66766. ]
  66767. ))
  66768. //characters
  66769. function makeCharacters() {
  66770. const results = [];
  66771. characterMakers.forEach(character => {
  66772. results.push(character());
  66773. });
  66774. return results;
  66775. }