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.
 
 
 

67902 line
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. }
  2459. //species
  2460. function getSpeciesInfo(speciesList) {
  2461. let result = new Set();
  2462. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2463. result.add(entry)
  2464. });
  2465. return Array.from(result);
  2466. };
  2467. function getSpeciesInfoHelper(species) {
  2468. if (!speciesData[species]) {
  2469. console.warn(species + " doesn't exist");
  2470. return [];
  2471. }
  2472. if (speciesData[species].parents) {
  2473. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2474. } else {
  2475. return [species];
  2476. }
  2477. }
  2478. characterMakers.push(() => makeCharacter(
  2479. {
  2480. name: "Fen",
  2481. species: ["crux"],
  2482. description: {
  2483. title: "Bio",
  2484. text: "Very furry. Sheds on everything."
  2485. },
  2486. tags: [
  2487. "anthro",
  2488. "goo"
  2489. ]
  2490. },
  2491. {
  2492. front: {
  2493. height: math.unit(12, "feet"),
  2494. weight: math.unit(2400, "lb"),
  2495. preyCapacity: math.unit(1, "people"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/fen/front.svg",
  2499. extra: 1804/1562,
  2500. bottom: 205/2009
  2501. },
  2502. extraAttributes: {
  2503. pawSize: {
  2504. name: "Paw Size",
  2505. power: 2,
  2506. type: "area",
  2507. base: math.unit(0.35, "m^2")
  2508. }
  2509. }
  2510. },
  2511. diving: {
  2512. height: math.unit(4.9, "meters"),
  2513. weight: math.unit(2400, "lb"),
  2514. name: "Diving",
  2515. image: {
  2516. source: "./media/characters/fen/diving.svg"
  2517. }
  2518. },
  2519. sleeby: {
  2520. height: math.unit(3.45, "meters"),
  2521. weight: math.unit(2400, "lb"),
  2522. name: "Sleeby",
  2523. image: {
  2524. source: "./media/characters/fen/sleeby.svg"
  2525. }
  2526. },
  2527. goo: {
  2528. height: math.unit(12, "feet"),
  2529. weight: math.unit(3600, "lb"),
  2530. volume: math.unit(1000, "liters"),
  2531. preyCapacity: math.unit(6, "people"),
  2532. name: "Goo",
  2533. image: {
  2534. source: "./media/characters/fen/goo.svg",
  2535. extra: 1307/1071,
  2536. bottom: 134/1441
  2537. }
  2538. },
  2539. horror: {
  2540. height: math.unit(13.6, "feet"),
  2541. weight: math.unit(2400, "lb"),
  2542. preyCapacity: math.unit(1, "people"),
  2543. name: "Horror",
  2544. image: {
  2545. source: "./media/characters/fen/horror.svg",
  2546. extra: 893/797,
  2547. bottom: 0/893
  2548. }
  2549. },
  2550. gooNsfw: {
  2551. height: math.unit(12, "feet"),
  2552. weight: math.unit(3750, "lb"),
  2553. volume: math.unit(1000, "liters"),
  2554. preyCapacity: math.unit(6, "people"),
  2555. name: "Goo (NSFW)",
  2556. image: {
  2557. source: "./media/characters/fen/goo-nsfw.svg",
  2558. extra: 1875/1734,
  2559. bottom: 122/1997
  2560. }
  2561. },
  2562. maw: {
  2563. height: math.unit(5.03, "feet"),
  2564. name: "Maw",
  2565. image: {
  2566. source: "./media/characters/fen/maw.svg"
  2567. }
  2568. },
  2569. gooCeiling: {
  2570. height: math.unit(6.6, "feet"),
  2571. weight: math.unit(3000, "lb"),
  2572. volume: math.unit(1000, "liters"),
  2573. preyCapacity: math.unit(6, "people"),
  2574. name: "Maw (Goo)",
  2575. image: {
  2576. source: "./media/characters/fen/goo-maw.svg"
  2577. }
  2578. },
  2579. paw: {
  2580. height: math.unit(3.77, "feet"),
  2581. name: "Paw",
  2582. image: {
  2583. source: "./media/characters/fen/paw.svg"
  2584. },
  2585. extraAttributes: {
  2586. "toeSize": {
  2587. name: "Toe Size",
  2588. power: 2,
  2589. type: "area",
  2590. base: math.unit(0.02875, "m^2")
  2591. },
  2592. "pawSize": {
  2593. name: "Paw Size",
  2594. power: 2,
  2595. type: "area",
  2596. base: math.unit(0.378, "m^2")
  2597. },
  2598. }
  2599. },
  2600. tail: {
  2601. height: math.unit(12.1, "feet"),
  2602. name: "Tail",
  2603. image: {
  2604. source: "./media/characters/fen/tail.svg"
  2605. }
  2606. },
  2607. tailFull: {
  2608. height: math.unit(12.1, "feet"),
  2609. name: "Full Tail",
  2610. image: {
  2611. source: "./media/characters/fen/tail-full.svg"
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(12, "feet"),
  2616. weight: math.unit(2400, "lb"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/fen/back.svg",
  2620. },
  2621. info: {
  2622. description: {
  2623. mode: "append",
  2624. text: "\n\nHe is not currently looking at you."
  2625. }
  2626. }
  2627. },
  2628. full: {
  2629. height: math.unit(1.85, "meter"),
  2630. weight: math.unit(3200, "lb"),
  2631. preyCapacity: math.unit(3, "people"),
  2632. name: "Full",
  2633. image: {
  2634. source: "./media/characters/fen/full.svg",
  2635. extra: 1133/859,
  2636. bottom: 145/1278
  2637. },
  2638. info: {
  2639. description: {
  2640. mode: "append",
  2641. text: "\n\nMunch."
  2642. }
  2643. }
  2644. },
  2645. gooLounging: {
  2646. height: math.unit(4.53, "feet"),
  2647. weight: math.unit(3000, "lb"),
  2648. preyCapacity: math.unit(6, "people"),
  2649. name: "Goo (Lounging)",
  2650. image: {
  2651. source: "./media/characters/fen/goo-lounging.svg",
  2652. bottom: 116 / 613
  2653. }
  2654. },
  2655. lounging: {
  2656. height: math.unit(10.52, "feet"),
  2657. weight: math.unit(2400, "lb"),
  2658. name: "Lounging",
  2659. image: {
  2660. source: "./media/characters/fen/lounging.svg"
  2661. }
  2662. },
  2663. },
  2664. [
  2665. {
  2666. name: "Small",
  2667. height: math.unit(2.2428, "meter")
  2668. },
  2669. {
  2670. name: "Normal",
  2671. height: math.unit(12, "feet"),
  2672. default: true,
  2673. },
  2674. {
  2675. name: "Big",
  2676. height: math.unit(20, "feet")
  2677. },
  2678. {
  2679. name: "Minimacro",
  2680. height: math.unit(40, "feet"),
  2681. info: {
  2682. description: {
  2683. mode: "append",
  2684. text: "\n\nTOO DAMN BIG"
  2685. }
  2686. }
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(100, "feet"),
  2691. info: {
  2692. description: {
  2693. mode: "append",
  2694. text: "\n\nTOO DAMN BIG"
  2695. }
  2696. }
  2697. },
  2698. {
  2699. name: "Megamacro",
  2700. height: math.unit(2, "miles")
  2701. },
  2702. {
  2703. name: "Gigamacro",
  2704. height: math.unit(10, "earths")
  2705. },
  2706. ]
  2707. ))
  2708. characterMakers.push(() => makeCharacter(
  2709. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2710. {
  2711. front: {
  2712. height: math.unit(183, "cm"),
  2713. weight: math.unit(80, "kg"),
  2714. name: "Front",
  2715. image: {
  2716. source: "./media/characters/sofia-fluttertail/front.svg",
  2717. bottom: 0.01,
  2718. extra: 2154 / 2081
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(183, "cm"),
  2723. weight: math.unit(80, "kg"),
  2724. name: "Front (alt)",
  2725. image: {
  2726. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2727. }
  2728. },
  2729. back: {
  2730. height: math.unit(183, "cm"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Back",
  2733. image: {
  2734. source: "./media/characters/sofia-fluttertail/back.svg"
  2735. }
  2736. },
  2737. kneeling: {
  2738. height: math.unit(125, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Kneeling",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2743. extra: 1033 / 977,
  2744. bottom: 23.7 / 1057
  2745. }
  2746. },
  2747. maw: {
  2748. height: math.unit(183 / 5, "cm"),
  2749. name: "Maw",
  2750. image: {
  2751. source: "./media/characters/sofia-fluttertail/maw.svg"
  2752. }
  2753. },
  2754. mawcloseup: {
  2755. height: math.unit(183 / 5 * 0.41, "cm"),
  2756. name: "Maw (Closeup)",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2759. }
  2760. },
  2761. paws: {
  2762. height: math.unit(1.17, "feet"),
  2763. name: "Paws",
  2764. image: {
  2765. source: "./media/characters/sofia-fluttertail/paws.svg",
  2766. extra: 851 / 851,
  2767. bottom: 17 / 868
  2768. }
  2769. },
  2770. },
  2771. [
  2772. {
  2773. name: "Normal",
  2774. height: math.unit(1.83, "meter")
  2775. },
  2776. {
  2777. name: "Size Thief",
  2778. height: math.unit(18, "feet")
  2779. },
  2780. {
  2781. name: "50 Foot Collie",
  2782. height: math.unit(50, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(96, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Megamerger",
  2791. height: math.unit(650, "feet")
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2797. {
  2798. front: {
  2799. height: math.unit(7, "feet"),
  2800. weight: math.unit(100, "kg"),
  2801. name: "Front",
  2802. image: {
  2803. source: "./media/characters/march/front.svg",
  2804. extra: 1992/1851,
  2805. bottom: 39/2031
  2806. }
  2807. },
  2808. foot: {
  2809. height: math.unit(0.9, "feet"),
  2810. name: "Foot",
  2811. image: {
  2812. source: "./media/characters/march/foot.svg"
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Normal",
  2819. height: math.unit(7.9, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(220, "meters")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(2.98, "km"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Gigamacro",
  2832. height: math.unit(15963, "km")
  2833. },
  2834. {
  2835. name: "Teramacro",
  2836. height: math.unit(2980000000, "km")
  2837. },
  2838. {
  2839. name: "Examacro",
  2840. height: math.unit(250, "parsecs")
  2841. },
  2842. ]
  2843. ))
  2844. characterMakers.push(() => makeCharacter(
  2845. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2846. {
  2847. front: {
  2848. height: math.unit(6, "feet"),
  2849. weight: math.unit(60, "kg"),
  2850. name: "Front",
  2851. image: {
  2852. source: "./media/characters/noir/front.svg",
  2853. extra: 1793/1668,
  2854. bottom: 74/1867
  2855. }
  2856. },
  2857. },
  2858. [
  2859. {
  2860. name: "Normal",
  2861. height: math.unit(6.6, "feet")
  2862. },
  2863. {
  2864. name: "Macro",
  2865. height: math.unit(500, "feet")
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(2.5, "km"),
  2870. default: true
  2871. },
  2872. {
  2873. name: "Gigamacro",
  2874. height: math.unit(22500, "km")
  2875. },
  2876. {
  2877. name: "Teramacro",
  2878. height: math.unit(2500000000, "km")
  2879. },
  2880. {
  2881. name: "Examacro",
  2882. height: math.unit(200, "parsecs")
  2883. },
  2884. ]
  2885. ))
  2886. characterMakers.push(() => makeCharacter(
  2887. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2888. {
  2889. front: {
  2890. height: math.unit(7, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Front",
  2893. image: {
  2894. source: "./media/characters/okuri/front.svg",
  2895. extra: 739/665,
  2896. bottom: 39/778
  2897. }
  2898. },
  2899. back: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Back",
  2903. image: {
  2904. source: "./media/characters/okuri/back.svg",
  2905. extra: 734/653,
  2906. bottom: 13/747
  2907. }
  2908. },
  2909. sitting: {
  2910. height: math.unit(2.95, "feet"),
  2911. weight: math.unit(100, "kg"),
  2912. name: "Sitting",
  2913. image: {
  2914. source: "./media/characters/okuri/sitting.svg",
  2915. extra: 370/318,
  2916. bottom: 99/469
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Smallest",
  2923. height: math.unit(5 + 2/12, "feet")
  2924. },
  2925. {
  2926. name: "Smaller",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Small",
  2931. height: math.unit(1000, "feet")
  2932. },
  2933. {
  2934. name: "Macro",
  2935. height: math.unit(1, "mile")
  2936. },
  2937. {
  2938. name: "Mega Macro (Small)",
  2939. height: math.unit(20, "km")
  2940. },
  2941. {
  2942. name: "Mega Macro (Large)",
  2943. height: math.unit(600, "km")
  2944. },
  2945. {
  2946. name: "Giga Macro",
  2947. height: math.unit(10000, "km")
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(577560, "km"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Large",
  2956. height: math.unit(4, "galaxies")
  2957. },
  2958. {
  2959. name: "Largest",
  2960. height: math.unit(15, "multiverses")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/manny/front.svg",
  2973. extra: 1,
  2974. bottom: 0.06
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(7, "feet"),
  2979. weight: math.unit(100, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/manny/back.svg",
  2983. extra: 1,
  2984. bottom: 0.014
  2985. }
  2986. },
  2987. },
  2988. [
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(7, "feet"),
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(78, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(300, "meters")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(2400, "meters")
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(5167, "meters")
  3009. },
  3010. {
  3011. name: "Gigamacro",
  3012. height: math.unit(41769, "miles")
  3013. },
  3014. ]
  3015. ))
  3016. characterMakers.push(() => makeCharacter(
  3017. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3018. {
  3019. front: {
  3020. height: math.unit(7, "feet"),
  3021. weight: math.unit(100, "kg"),
  3022. name: "Front",
  3023. image: {
  3024. source: "./media/characters/adake/front-1.svg"
  3025. }
  3026. },
  3027. frontAlt: {
  3028. height: math.unit(7, "feet"),
  3029. weight: math.unit(100, "kg"),
  3030. name: "Front (Alt)",
  3031. image: {
  3032. source: "./media/characters/adake/front-2.svg",
  3033. extra: 1,
  3034. bottom: 0.01
  3035. }
  3036. },
  3037. back: {
  3038. height: math.unit(7, "feet"),
  3039. weight: math.unit(100, "kg"),
  3040. name: "Back",
  3041. image: {
  3042. source: "./media/characters/adake/back.svg",
  3043. }
  3044. },
  3045. kneel: {
  3046. height: math.unit(5.385, "feet"),
  3047. weight: math.unit(100, "kg"),
  3048. name: "Kneeling",
  3049. image: {
  3050. source: "./media/characters/adake/kneel.svg",
  3051. bottom: 0.052
  3052. }
  3053. },
  3054. },
  3055. [
  3056. {
  3057. name: "Normal",
  3058. height: math.unit(7, "feet"),
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(78, "feet"),
  3063. default: true
  3064. },
  3065. {
  3066. name: "Macro+",
  3067. height: math.unit(300, "meters")
  3068. },
  3069. {
  3070. name: "Macro++",
  3071. height: math.unit(2400, "meters")
  3072. },
  3073. {
  3074. name: "Megamacro",
  3075. height: math.unit(5167, "meters")
  3076. },
  3077. {
  3078. name: "Gigamacro",
  3079. height: math.unit(41769, "miles")
  3080. },
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3085. {
  3086. front: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front",
  3090. image: {
  3091. source: "./media/characters/elijah/front.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. back: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back",
  3100. image: {
  3101. source: "./media/characters/elijah/back.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. frontNsfw: {
  3107. height: math.unit(1.65, "meters"),
  3108. weight: math.unit(50, "kg"),
  3109. name: "Front (NSFW)",
  3110. image: {
  3111. source: "./media/characters/elijah/front-nsfw.svg",
  3112. extra: 858 / 830,
  3113. bottom: 95.5 / 953.8559
  3114. }
  3115. },
  3116. backNsfw: {
  3117. height: math.unit(1.65, "meters"),
  3118. weight: math.unit(50, "kg"),
  3119. name: "Back (NSFW)",
  3120. image: {
  3121. source: "./media/characters/elijah/back-nsfw.svg",
  3122. extra: 895 / 850,
  3123. bottom: 5.3 / 897.956
  3124. }
  3125. },
  3126. dick: {
  3127. height: math.unit(1, "feet"),
  3128. name: "Dick",
  3129. image: {
  3130. source: "./media/characters/elijah/dick.svg"
  3131. }
  3132. },
  3133. beakOpen: {
  3134. height: math.unit(1.25, "feet"),
  3135. name: "Beak (Open)",
  3136. image: {
  3137. source: "./media/characters/elijah/beak-open.svg"
  3138. }
  3139. },
  3140. beakShut: {
  3141. height: math.unit(1.25, "feet"),
  3142. name: "Beak (Shut)",
  3143. image: {
  3144. source: "./media/characters/elijah/beak-shut.svg"
  3145. }
  3146. },
  3147. footFlexing: {
  3148. height: math.unit(1.61, "feet"),
  3149. name: "Foot (Flexing)",
  3150. image: {
  3151. source: "./media/characters/elijah/foot-flexing.svg"
  3152. }
  3153. },
  3154. footStepping: {
  3155. height: math.unit(1.44, "feet"),
  3156. name: "Foot (Stepping)",
  3157. image: {
  3158. source: "./media/characters/elijah/foot-stepping.svg"
  3159. }
  3160. },
  3161. plantigradeLeg: {
  3162. height: math.unit(2.34, "feet"),
  3163. name: "Plantigrade Leg",
  3164. image: {
  3165. source: "./media/characters/elijah/plantigrade-leg.svg"
  3166. }
  3167. },
  3168. plantigradeFootLeft: {
  3169. height: math.unit(0.9, "feet"),
  3170. name: "Plantigrade Foot (Left)",
  3171. image: {
  3172. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3173. }
  3174. },
  3175. plantigradeFootRight: {
  3176. height: math.unit(0.9, "feet"),
  3177. name: "Plantigrade Foot (Right)",
  3178. image: {
  3179. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3180. }
  3181. },
  3182. },
  3183. [
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(1.65, "meters")
  3187. },
  3188. {
  3189. name: "Macro",
  3190. height: math.unit(55, "meters"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(105, "meters")
  3196. },
  3197. ]
  3198. ))
  3199. characterMakers.push(() => makeCharacter(
  3200. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3201. {
  3202. front: {
  3203. height: math.unit(7 + 2/12, "feet"),
  3204. weight: math.unit(320, "kg"),
  3205. preyCapacity: math.unit(0.276549935, "people"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/rai/front.svg",
  3209. extra: 1802/1696,
  3210. bottom: 68/1870
  3211. },
  3212. form: "anthro",
  3213. default: true
  3214. },
  3215. frontDressed: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Front (Dressed)",
  3220. image: {
  3221. source: "./media/characters/rai/front-dressed.svg",
  3222. extra: 1802/1696,
  3223. bottom: 68/1870
  3224. },
  3225. form: "anthro"
  3226. },
  3227. side: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Side",
  3232. image: {
  3233. source: "./media/characters/rai/side.svg",
  3234. extra: 1789/1710,
  3235. bottom: 115/1904
  3236. },
  3237. form: "anthro"
  3238. },
  3239. back: {
  3240. height: math.unit(7 + 2/12, "feet"),
  3241. weight: math.unit(320, "kg"),
  3242. preyCapacity: math.unit(0.276549935, "people"),
  3243. name: "Back",
  3244. image: {
  3245. source: "./media/characters/rai/back.svg",
  3246. extra: 1770/1707,
  3247. bottom: 28/1798
  3248. },
  3249. form: "anthro"
  3250. },
  3251. feral: {
  3252. height: math.unit(9.5, "feet"),
  3253. weight: math.unit(640, "kg"),
  3254. preyCapacity: math.unit(4, "people"),
  3255. name: "Feral",
  3256. image: {
  3257. source: "./media/characters/rai/feral.svg",
  3258. extra: 945/553,
  3259. bottom: 176/1121
  3260. },
  3261. form: "feral",
  3262. default: true
  3263. },
  3264. dragon: {
  3265. height: math.unit(23, "feet"),
  3266. weight: math.unit(50000, "lb"),
  3267. name: "Dragon",
  3268. image: {
  3269. source: "./media/characters/rai/dragon.svg",
  3270. extra: 2498 / 2030,
  3271. bottom: 85.2 / 2584
  3272. },
  3273. form: "dragon",
  3274. default: true
  3275. },
  3276. maw: {
  3277. height: math.unit(1.69, "feet"),
  3278. name: "Maw",
  3279. image: {
  3280. source: "./media/characters/rai/maw.svg"
  3281. },
  3282. form: "anthro"
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(7 + 2/12, "feet"),
  3289. form: "anthro"
  3290. },
  3291. {
  3292. name: "Big",
  3293. height: math.unit(11, "feet"),
  3294. form: "anthro"
  3295. },
  3296. {
  3297. name: "Minimacro",
  3298. height: math.unit(77, "feet"),
  3299. form: "anthro"
  3300. },
  3301. {
  3302. name: "Macro",
  3303. height: math.unit(302, "feet"),
  3304. default: true,
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Normal",
  3309. height: math.unit(9.5, "feet"),
  3310. form: "feral",
  3311. default: true
  3312. },
  3313. {
  3314. name: "Normal",
  3315. height: math.unit(23, "feet"),
  3316. form: "dragon",
  3317. default: true
  3318. }
  3319. ],
  3320. {
  3321. "anthro": {
  3322. name: "Anthro",
  3323. default: true
  3324. },
  3325. "feral": {
  3326. name: "Feral",
  3327. },
  3328. "dragon": {
  3329. name: "Dragon",
  3330. },
  3331. }
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3335. {
  3336. frontDressed: {
  3337. height: math.unit(216, "feet"),
  3338. weight: math.unit(7000000, "lb"),
  3339. preyCapacity: math.unit(1321, "people"),
  3340. name: "Front (Dressed)",
  3341. image: {
  3342. source: "./media/characters/jazzy/front-dressed.svg",
  3343. extra: 2738 / 2651,
  3344. bottom: 41.8 / 2786
  3345. }
  3346. },
  3347. backDressed: {
  3348. height: math.unit(216, "feet"),
  3349. weight: math.unit(7000000, "lb"),
  3350. preyCapacity: math.unit(1321, "people"),
  3351. name: "Back (Dressed)",
  3352. image: {
  3353. source: "./media/characters/jazzy/back-dressed.svg",
  3354. extra: 2775 / 2673,
  3355. bottom: 36.8 / 2817
  3356. }
  3357. },
  3358. front: {
  3359. height: math.unit(216, "feet"),
  3360. weight: math.unit(7000000, "lb"),
  3361. preyCapacity: math.unit(1321, "people"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/jazzy/front.svg",
  3365. extra: 2738 / 2651,
  3366. bottom: 41.8 / 2786
  3367. }
  3368. },
  3369. back: {
  3370. height: math.unit(216, "feet"),
  3371. weight: math.unit(7000000, "lb"),
  3372. preyCapacity: math.unit(1321, "people"),
  3373. name: "Back",
  3374. image: {
  3375. source: "./media/characters/jazzy/back.svg",
  3376. extra: 2775 / 2673,
  3377. bottom: 36.8 / 2817
  3378. }
  3379. },
  3380. maw: {
  3381. height: math.unit(20, "feet"),
  3382. name: "Maw",
  3383. image: {
  3384. source: "./media/characters/jazzy/maw.svg"
  3385. }
  3386. },
  3387. paws: {
  3388. height: math.unit(27.5, "feet"),
  3389. name: "Paws",
  3390. image: {
  3391. source: "./media/characters/jazzy/paws.svg"
  3392. }
  3393. },
  3394. eye: {
  3395. height: math.unit(4.4, "feet"),
  3396. name: "Eye",
  3397. image: {
  3398. source: "./media/characters/jazzy/eye.svg"
  3399. }
  3400. },
  3401. droneOffense: {
  3402. height: math.unit(9.5, "inches"),
  3403. name: "Drone (Offense)",
  3404. image: {
  3405. source: "./media/characters/jazzy/drone-offense.svg"
  3406. }
  3407. },
  3408. droneRecon: {
  3409. height: math.unit(9.5, "inches"),
  3410. name: "Drone (Recon)",
  3411. image: {
  3412. source: "./media/characters/jazzy/drone-recon.svg"
  3413. }
  3414. },
  3415. droneDefense: {
  3416. height: math.unit(9.5, "inches"),
  3417. name: "Drone (Defense)",
  3418. image: {
  3419. source: "./media/characters/jazzy/drone-defense.svg"
  3420. }
  3421. },
  3422. },
  3423. [
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(216, "feet"),
  3427. default: true
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(9 + 6/12, "feet"),
  3436. weight: math.unit(700, "lb"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/flamm/front.svg",
  3440. extra: 1736/1596,
  3441. bottom: 93/1829
  3442. }
  3443. },
  3444. buff: {
  3445. height: math.unit(9 + 6/12, "feet"),
  3446. weight: math.unit(950, "lb"),
  3447. name: "Buff",
  3448. image: {
  3449. source: "./media/characters/flamm/buff.svg",
  3450. extra: 3018/2874,
  3451. bottom: 221/3239
  3452. }
  3453. },
  3454. },
  3455. [
  3456. {
  3457. name: "Normal",
  3458. height: math.unit(9.5, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(200, "feet"),
  3463. default: true
  3464. },
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/zephiro/front.svg",
  3476. extra: 1873/1761,
  3477. bottom: 147/2020
  3478. }
  3479. },
  3480. side: {
  3481. height: math.unit(5 + 3/12, "feet"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Side",
  3484. image: {
  3485. source: "./media/characters/zephiro/side.svg",
  3486. extra: 1929/1827,
  3487. bottom: 65/1994
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(5 + 3/12, "feet"),
  3492. weight: math.unit(60, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/zephiro/back.svg",
  3496. extra: 1926/1816,
  3497. bottom: 41/1967
  3498. }
  3499. },
  3500. hand: {
  3501. height: math.unit(0.68, "feet"),
  3502. name: "Hand",
  3503. image: {
  3504. source: "./media/characters/zephiro/hand.svg"
  3505. }
  3506. },
  3507. paw: {
  3508. height: math.unit(1, "feet"),
  3509. name: "Paw",
  3510. image: {
  3511. source: "./media/characters/zephiro/paw.svg"
  3512. }
  3513. },
  3514. beans: {
  3515. height: math.unit(0.93, "feet"),
  3516. name: "Beans",
  3517. image: {
  3518. source: "./media/characters/zephiro/beans.svg"
  3519. }
  3520. },
  3521. },
  3522. [
  3523. {
  3524. name: "Micro",
  3525. height: math.unit(3, "inches")
  3526. },
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(5 + 3 / 12, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(118, "feet")
  3535. },
  3536. ]
  3537. ))
  3538. characterMakers.push(() => makeCharacter(
  3539. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3540. {
  3541. front: {
  3542. height: math.unit(5, "feet"),
  3543. weight: math.unit(90, "kg"),
  3544. preyCapacity: math.unit(14, "people"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/fory/front.svg",
  3548. extra: 2862 / 2674,
  3549. bottom: 180 / 3043.8
  3550. },
  3551. form: "weaselbun",
  3552. default: true,
  3553. extraAttributes: {
  3554. "pawSize": {
  3555. name: "Paw Size",
  3556. power: 2,
  3557. type: "area",
  3558. base: math.unit(0.1596, "m^2")
  3559. },
  3560. "pawLength": {
  3561. name: "Paw Length",
  3562. power: 1,
  3563. type: "length",
  3564. base: math.unit(0.7, "m")
  3565. }
  3566. }
  3567. },
  3568. back: {
  3569. height: math.unit(5, "feet"),
  3570. weight: math.unit(90, "kg"),
  3571. preyCapacity: math.unit(14, "people"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/fory/back.svg",
  3575. extra: 1790/1672,
  3576. bottom: 84/1874
  3577. },
  3578. form: "weaselbun",
  3579. extraAttributes: {
  3580. "pawSize": {
  3581. name: "Paw Size",
  3582. power: 2,
  3583. type: "area",
  3584. base: math.unit(0.1596, "m^2")
  3585. },
  3586. "pawLength": {
  3587. name: "Paw Length",
  3588. power: 1,
  3589. type: "length",
  3590. base: math.unit(0.7, "m")
  3591. }
  3592. }
  3593. },
  3594. paw: {
  3595. height: math.unit(2.14, "feet"),
  3596. name: "Paw",
  3597. image: {
  3598. source: "./media/characters/fory/paw.svg"
  3599. },
  3600. form: "weaselbun",
  3601. extraAttributes: {
  3602. "pawSize": {
  3603. name: "Paw Size",
  3604. power: 2,
  3605. type: "area",
  3606. base: math.unit(0.1596, "m^2")
  3607. },
  3608. "pawLength": {
  3609. name: "Paw Length",
  3610. power: 1,
  3611. type: "length",
  3612. base: math.unit(0.48, "m")
  3613. }
  3614. }
  3615. },
  3616. bunBack: {
  3617. height: math.unit(3, "feet"),
  3618. weight: math.unit(20, "kg"),
  3619. preyCapacity: math.unit(3, "people"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/fory/bun-back.svg",
  3623. extra: 1749/1564,
  3624. bottom: 246/1995
  3625. },
  3626. form: "bun",
  3627. default: true,
  3628. extraAttributes: {
  3629. "pawSize": {
  3630. name: "Paw Size",
  3631. power: 2,
  3632. type: "area",
  3633. base: math.unit(0.072, "m^2")
  3634. },
  3635. "pawLength": {
  3636. name: "Paw Length",
  3637. power: 1,
  3638. type: "length",
  3639. base: math.unit(0.45, "m")
  3640. }
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(5, "feet"),
  3648. form: "weaselbun"
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(50, "feet"),
  3653. default: true,
  3654. form: "weaselbun"
  3655. },
  3656. {
  3657. name: "Megamacro",
  3658. height: math.unit(10, "miles"),
  3659. form: "weaselbun"
  3660. },
  3661. {
  3662. name: "Gigamacro",
  3663. height: math.unit(5, "earths"),
  3664. form: "weaselbun"
  3665. },
  3666. {
  3667. name: "Normal",
  3668. height: math.unit(3, "feet"),
  3669. default: true,
  3670. form: "bun"
  3671. },
  3672. {
  3673. name: "Fun-Size",
  3674. height: math.unit(12, "feet"),
  3675. form: "bun"
  3676. },
  3677. {
  3678. name: "Macro",
  3679. height: math.unit(100, "feet"),
  3680. form: "bun"
  3681. },
  3682. {
  3683. name: "Planetary",
  3684. height: math.unit(3, "earths"),
  3685. form: "bun"
  3686. },
  3687. ],
  3688. {
  3689. "weaselbun": {
  3690. name: "Weaselbun",
  3691. default: true
  3692. },
  3693. "bun": {
  3694. name: "Bun",
  3695. },
  3696. }
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/kurrikage/front.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. back: {
  3712. height: math.unit(7, "feet"),
  3713. weight: math.unit(90, "kg"),
  3714. name: "Back",
  3715. image: {
  3716. source: "./media/characters/kurrikage/back.svg",
  3717. extra: 1790/1677,
  3718. bottom: 61/1851
  3719. }
  3720. },
  3721. dressed: {
  3722. height: math.unit(7, "feet"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Dressed",
  3725. image: {
  3726. source: "./media/characters/kurrikage/dressed.svg",
  3727. extra: 1845/1733,
  3728. bottom: 119/1964
  3729. }
  3730. },
  3731. foot: {
  3732. height: math.unit(1.5, "feet"),
  3733. name: "Foot",
  3734. image: {
  3735. source: "./media/characters/kurrikage/foot.svg"
  3736. }
  3737. },
  3738. staff: {
  3739. height: math.unit(6.7, "feet"),
  3740. name: "Staff",
  3741. image: {
  3742. source: "./media/characters/kurrikage/staff.svg"
  3743. }
  3744. },
  3745. peek: {
  3746. height: math.unit(1.05, "feet"),
  3747. name: "Peeking",
  3748. image: {
  3749. source: "./media/characters/kurrikage/peek.svg",
  3750. bottom: 0.08
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Normal",
  3757. height: math.unit(12, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Big",
  3762. height: math.unit(20, "feet")
  3763. },
  3764. {
  3765. name: "Macro",
  3766. height: math.unit(500, "feet")
  3767. },
  3768. {
  3769. name: "Megamacro",
  3770. height: math.unit(20, "miles")
  3771. },
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/shingo/front.svg",
  3783. extra: 1900/1825,
  3784. bottom: 82/1982
  3785. }
  3786. },
  3787. side: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/shingo/side.svg",
  3793. extra: 1930/1865,
  3794. bottom: 16/1946
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(6, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/shingo/back.svg",
  3803. extra: 1922/1852,
  3804. bottom: 16/1938
  3805. }
  3806. },
  3807. frontDressed: {
  3808. height: math.unit(6, "feet"),
  3809. weight: math.unit(150, "lb"),
  3810. name: "Front (Dressed)",
  3811. image: {
  3812. source: "./media/characters/shingo/front-dressed.svg",
  3813. extra: 1900/1825,
  3814. bottom: 82/1982
  3815. }
  3816. },
  3817. paw: {
  3818. height: math.unit(1.29, "feet"),
  3819. name: "Paw",
  3820. image: {
  3821. source: "./media/characters/shingo/paw.svg"
  3822. }
  3823. },
  3824. hand: {
  3825. height: math.unit(1.07, "feet"),
  3826. name: "Hand",
  3827. image: {
  3828. source: "./media/characters/shingo/hand.svg"
  3829. }
  3830. },
  3831. frontAlt: {
  3832. height: math.unit(6, "feet"),
  3833. weight: math.unit(75, "kg"),
  3834. name: "Front (Alt)",
  3835. image: {
  3836. source: "./media/characters/shingo/front-alt.svg",
  3837. extra: 3511 / 3338,
  3838. bottom: 0.005
  3839. }
  3840. },
  3841. frontAlt2: {
  3842. height: math.unit(6, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Front (Alt 2)",
  3845. image: {
  3846. source: "./media/characters/shingo/front-alt-2.svg",
  3847. extra: 706/681,
  3848. bottom: 11/717
  3849. }
  3850. },
  3851. pawAlt: {
  3852. height: math.unit(1, "feet"),
  3853. name: "Paw (Alt)",
  3854. image: {
  3855. source: "./media/characters/shingo/paw-alt.svg"
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Micro",
  3862. height: math.unit(4, "inches")
  3863. },
  3864. {
  3865. name: "Normal",
  3866. height: math.unit(6, "feet"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(108, "feet")
  3872. },
  3873. {
  3874. name: "Macro+",
  3875. height: math.unit(1500, "feet")
  3876. },
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3881. {
  3882. side: {
  3883. height: math.unit(6, "feet"),
  3884. weight: math.unit(75, "kg"),
  3885. name: "Side",
  3886. image: {
  3887. source: "./media/characters/aigey/side.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Macro",
  3894. height: math.unit(200, "feet"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Megamacro",
  3899. height: math.unit(100, "miles")
  3900. },
  3901. ]
  3902. )
  3903. )
  3904. characterMakers.push(() => makeCharacter(
  3905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3906. {
  3907. front: {
  3908. height: math.unit(13, "feet"),
  3909. weight: math.unit(1036.80, "kg"),
  3910. name: "Front",
  3911. image: {
  3912. source: "./media/characters/natasha/front.svg",
  3913. extra: 1301/1210,
  3914. bottom: 39/1340
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(13, "feet"),
  3919. weight: math.unit(1036.80, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/natasha/back.svg",
  3923. extra: 1342/1252,
  3924. bottom: 20/1362
  3925. }
  3926. },
  3927. head: {
  3928. height: math.unit(3.48, "feet"),
  3929. name: "Head",
  3930. image: {
  3931. source: "./media/characters/natasha/head.svg"
  3932. }
  3933. },
  3934. jaws: {
  3935. height: math.unit(3.52, "feet"),
  3936. name: "Jaws",
  3937. image: {
  3938. source: "./media/characters/natasha/jaws.svg"
  3939. }
  3940. },
  3941. paws: {
  3942. height: math.unit(2.7, "feet"),
  3943. name: "Paws",
  3944. image: {
  3945. source: "./media/characters/natasha/paws.svg"
  3946. }
  3947. },
  3948. collar: {
  3949. height: math.unit(0.89, "feet"),
  3950. name: "Collar",
  3951. image: {
  3952. source: "./media/characters/natasha/collar.svg"
  3953. }
  3954. },
  3955. gauge: {
  3956. height: math.unit(0.36, "feet"),
  3957. name: "Gauge",
  3958. image: {
  3959. source: "./media/characters/natasha/gauge.svg"
  3960. }
  3961. },
  3962. },
  3963. [
  3964. {
  3965. name: "Shortstack",
  3966. height: math.unit(3, "feet")
  3967. },
  3968. {
  3969. name: "Normal",
  3970. height: math.unit(13, "feet"),
  3971. default: true
  3972. },
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(100, "feet")
  3976. },
  3977. {
  3978. name: "Macro+",
  3979. height: math.unit(260, "feet")
  3980. },
  3981. {
  3982. name: "Macro++",
  3983. height: math.unit(1, "mile")
  3984. },
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3989. {
  3990. front: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(75, "kg"),
  3993. name: "Front",
  3994. image: {
  3995. source: "./media/characters/malik/front.svg",
  3996. extra: 1750/1561,
  3997. bottom: 80/1830
  3998. },
  3999. extraAttributes: {
  4000. "toeSize": {
  4001. name: "Toe Size",
  4002. power: 2,
  4003. type: "area",
  4004. base: math.unit(0.0159, "m^2")
  4005. },
  4006. "pawSize": {
  4007. name: "Paw Size",
  4008. power: 2,
  4009. type: "area",
  4010. base: math.unit(0.09834, "m^2")
  4011. },
  4012. }
  4013. },
  4014. side: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(75, "kg"),
  4017. name: "Side",
  4018. image: {
  4019. source: "./media/characters/malik/side.svg",
  4020. extra: 1802/1685,
  4021. bottom: 42/1844
  4022. },
  4023. extraAttributes: {
  4024. "toeSize": {
  4025. name: "Toe Size",
  4026. power: 2,
  4027. type: "area",
  4028. base: math.unit(0.0159, "m^2")
  4029. },
  4030. "pawSize": {
  4031. name: "Paw Size",
  4032. power: 2,
  4033. type: "area",
  4034. base: math.unit(0.09834, "m^2")
  4035. },
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/malik/back.svg",
  4044. extra: 1803/1607,
  4045. bottom: 33/1836
  4046. },
  4047. extraAttributes: {
  4048. "toeSize": {
  4049. name: "Toe Size",
  4050. power: 2,
  4051. type: "area",
  4052. base: math.unit(0.0159, "m^2")
  4053. },
  4054. "pawSize": {
  4055. name: "Paw Size",
  4056. power: 2,
  4057. type: "area",
  4058. base: math.unit(0.09834, "m^2")
  4059. },
  4060. }
  4061. },
  4062. },
  4063. [
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(156, "feet"),
  4067. default: true
  4068. },
  4069. {
  4070. name: "Macro+",
  4071. height: math.unit(1188, "feet")
  4072. },
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/sefer/front.svg",
  4084. extra: 848 / 659,
  4085. bottom: 28.3 / 876.442
  4086. }
  4087. },
  4088. back: {
  4089. height: math.unit(6, "feet"),
  4090. weight: math.unit(75, "kg"),
  4091. name: "Back",
  4092. image: {
  4093. source: "./media/characters/sefer/back.svg",
  4094. extra: 864 / 695,
  4095. bottom: 10 / 871
  4096. }
  4097. },
  4098. frontDressed: {
  4099. height: math.unit(6, "feet"),
  4100. weight: math.unit(75, "kg"),
  4101. name: "Dressed",
  4102. image: {
  4103. source: "./media/characters/sefer/dressed.svg",
  4104. extra: 839 / 653,
  4105. bottom: 37.6 / 878
  4106. }
  4107. },
  4108. },
  4109. [
  4110. {
  4111. name: "Normal",
  4112. height: math.unit(6, "feet"),
  4113. default: true
  4114. },
  4115. {
  4116. name: "Big",
  4117. height: math.unit(8, "meters")
  4118. },
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4123. {
  4124. body: {
  4125. height: math.unit(2.2428, "meter"),
  4126. weight: math.unit(124.738, "kg"),
  4127. name: "Body",
  4128. image: {
  4129. extra: 1225 / 1050,
  4130. source: "./media/characters/north/front.svg"
  4131. }
  4132. }
  4133. },
  4134. [
  4135. {
  4136. name: "Micro",
  4137. height: math.unit(4, "inches")
  4138. },
  4139. {
  4140. name: "Macro",
  4141. height: math.unit(63, "meters")
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(101, "miles"),
  4146. default: true
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4152. {
  4153. angled: {
  4154. height: math.unit(4, "meter"),
  4155. weight: math.unit(150, "kg"),
  4156. name: "Angled",
  4157. image: {
  4158. source: "./media/characters/talan/angled-sfw.svg",
  4159. bottom: 29 / 3734
  4160. }
  4161. },
  4162. angledNsfw: {
  4163. height: math.unit(4, "meter"),
  4164. weight: math.unit(150, "kg"),
  4165. name: "Angled (NSFW)",
  4166. image: {
  4167. source: "./media/characters/talan/angled-nsfw.svg",
  4168. bottom: 29 / 3734
  4169. }
  4170. },
  4171. frontNsfw: {
  4172. height: math.unit(4, "meter"),
  4173. weight: math.unit(150, "kg"),
  4174. name: "Front (NSFW)",
  4175. image: {
  4176. source: "./media/characters/talan/front-nsfw.svg",
  4177. bottom: 29 / 3734
  4178. }
  4179. },
  4180. sideNsfw: {
  4181. height: math.unit(4, "meter"),
  4182. weight: math.unit(150, "kg"),
  4183. name: "Side (NSFW)",
  4184. image: {
  4185. source: "./media/characters/talan/side-nsfw.svg",
  4186. bottom: 29 / 3734
  4187. }
  4188. },
  4189. back: {
  4190. height: math.unit(4, "meter"),
  4191. weight: math.unit(150, "kg"),
  4192. name: "Back",
  4193. image: {
  4194. source: "./media/characters/talan/back.svg"
  4195. }
  4196. },
  4197. dickBottom: {
  4198. height: math.unit(0.621, "meter"),
  4199. name: "Dick (Bottom)",
  4200. image: {
  4201. source: "./media/characters/talan/dick-bottom.svg"
  4202. }
  4203. },
  4204. dickTop: {
  4205. height: math.unit(0.621, "meter"),
  4206. name: "Dick (Top)",
  4207. image: {
  4208. source: "./media/characters/talan/dick-top.svg"
  4209. }
  4210. },
  4211. dickSide: {
  4212. height: math.unit(0.305, "meter"),
  4213. name: "Dick (Side)",
  4214. image: {
  4215. source: "./media/characters/talan/dick-side.svg"
  4216. }
  4217. },
  4218. dickFront: {
  4219. height: math.unit(0.305, "meter"),
  4220. name: "Dick (Front)",
  4221. image: {
  4222. source: "./media/characters/talan/dick-front.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(4, "meters")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(100, "meters")
  4234. },
  4235. {
  4236. name: "Megamacro",
  4237. height: math.unit(2, "miles"),
  4238. default: true
  4239. },
  4240. {
  4241. name: "Gigamacro",
  4242. height: math.unit(5000, "miles")
  4243. },
  4244. {
  4245. name: "Teramacro",
  4246. height: math.unit(100, "parsecs")
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(2, "meter"),
  4255. weight: math.unit(90, "kg"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/gael'rathus/front.svg"
  4259. }
  4260. },
  4261. frontAlt: {
  4262. height: math.unit(2, "meter"),
  4263. weight: math.unit(90, "kg"),
  4264. name: "Front (alt)",
  4265. image: {
  4266. source: "./media/characters/gael'rathus/front-alt.svg"
  4267. }
  4268. },
  4269. frontAlt2: {
  4270. height: math.unit(2, "meter"),
  4271. weight: math.unit(90, "kg"),
  4272. name: "Front (alt 2)",
  4273. image: {
  4274. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(9, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Large",
  4286. height: math.unit(25, "feet")
  4287. },
  4288. {
  4289. name: "Macro",
  4290. height: math.unit(0.25, "miles")
  4291. },
  4292. {
  4293. name: "Megamacro",
  4294. height: math.unit(10, "miles")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(140, "kg"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/sosha/side.svg",
  4307. extra: 1170/1006,
  4308. bottom: 94/1264
  4309. }
  4310. },
  4311. maw: {
  4312. height: math.unit(2.87, "feet"),
  4313. name: "Maw",
  4314. image: {
  4315. source: "./media/characters/sosha/maw.svg",
  4316. extra: 966/865,
  4317. bottom: 0/966
  4318. }
  4319. },
  4320. cooch: {
  4321. height: math.unit(5.6, "feet"),
  4322. name: "Cooch",
  4323. image: {
  4324. source: "./media/characters/sosha/cooch.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(12, "feet"),
  4332. default: true
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4338. {
  4339. side: {
  4340. height: math.unit(5 + 5 / 12, "feet"),
  4341. weight: math.unit(170, "kg"),
  4342. name: "Side",
  4343. image: {
  4344. source: "./media/characters/runnola/side.svg",
  4345. extra: 741 / 448,
  4346. bottom: 0.05
  4347. }
  4348. },
  4349. },
  4350. [
  4351. {
  4352. name: "Small",
  4353. height: math.unit(3, "feet")
  4354. },
  4355. {
  4356. name: "Normal",
  4357. height: math.unit(5 + 5 / 12, "feet"),
  4358. default: true
  4359. },
  4360. {
  4361. name: "Big",
  4362. height: math.unit(10, "feet")
  4363. },
  4364. ]
  4365. ))
  4366. characterMakers.push(() => makeCharacter(
  4367. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4368. {
  4369. front: {
  4370. height: math.unit(2, "meter"),
  4371. weight: math.unit(50, "kg"),
  4372. name: "Front",
  4373. image: {
  4374. source: "./media/characters/kurribird/front.svg",
  4375. bottom: 0.015
  4376. }
  4377. },
  4378. frontAlt: {
  4379. height: math.unit(1.5, "meter"),
  4380. weight: math.unit(50, "kg"),
  4381. name: "Front (Alt)",
  4382. image: {
  4383. source: "./media/characters/kurribird/front-alt.svg",
  4384. extra: 1.45
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(7, "feet")
  4392. },
  4393. {
  4394. name: "Big",
  4395. height: math.unit(12, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Macro",
  4400. height: math.unit(1500, "feet")
  4401. },
  4402. {
  4403. name: "Megamacro",
  4404. height: math.unit(2, "miles")
  4405. }
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4410. {
  4411. front: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Front",
  4415. image: {
  4416. source: "./media/characters/elbial/front.svg",
  4417. extra: 1643 / 1556,
  4418. bottom: 60.2 / 1696
  4419. }
  4420. },
  4421. side: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Side",
  4425. image: {
  4426. source: "./media/characters/elbial/side.svg",
  4427. extra: 1601/1528,
  4428. bottom: 97/1698
  4429. }
  4430. },
  4431. back: {
  4432. height: math.unit(2, "meter"),
  4433. weight: math.unit(80, "kg"),
  4434. name: "Back",
  4435. image: {
  4436. source: "./media/characters/elbial/back.svg",
  4437. extra: 1653/1569,
  4438. bottom: 20/1673
  4439. }
  4440. },
  4441. frontDressed: {
  4442. height: math.unit(2, "meter"),
  4443. weight: math.unit(80, "kg"),
  4444. name: "Front (Dressed)",
  4445. image: {
  4446. source: "./media/characters/elbial/front-dressed.svg",
  4447. extra: 1638/1569,
  4448. bottom: 70/1708
  4449. }
  4450. },
  4451. genitals: {
  4452. height: math.unit(2 / 3.367, "meter"),
  4453. name: "Genitals",
  4454. image: {
  4455. source: "./media/characters/elbial/genitals.svg"
  4456. }
  4457. },
  4458. },
  4459. [
  4460. {
  4461. name: "Large",
  4462. height: math.unit(100, "feet")
  4463. },
  4464. {
  4465. name: "Macro",
  4466. height: math.unit(500, "feet"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Megamacro",
  4471. height: math.unit(10, "miles")
  4472. },
  4473. {
  4474. name: "Gigamacro",
  4475. height: math.unit(25000, "miles")
  4476. },
  4477. {
  4478. name: "Full-Size",
  4479. height: math.unit(8000000, "gigaparsecs")
  4480. }
  4481. ]
  4482. ))
  4483. characterMakers.push(() => makeCharacter(
  4484. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4485. {
  4486. front: {
  4487. height: math.unit(2, "meter"),
  4488. weight: math.unit(60, "kg"),
  4489. name: "Front",
  4490. image: {
  4491. source: "./media/characters/noah/front.svg",
  4492. extra: 1383/1313,
  4493. bottom: 104/1487
  4494. }
  4495. },
  4496. hand: {
  4497. height: math.unit(0.6, "feet"),
  4498. name: "Hand",
  4499. image: {
  4500. source: "./media/characters/noah/hand.svg"
  4501. }
  4502. },
  4503. talons: {
  4504. height: math.unit(1.385, "feet"),
  4505. name: "Talons",
  4506. image: {
  4507. source: "./media/characters/noah/talons.svg"
  4508. }
  4509. },
  4510. beak: {
  4511. height: math.unit(0.43, "feet"),
  4512. name: "Beak",
  4513. image: {
  4514. source: "./media/characters/noah/beak.svg"
  4515. }
  4516. },
  4517. collar: {
  4518. height: math.unit(0.88, "feet"),
  4519. name: "Collar",
  4520. image: {
  4521. source: "./media/characters/noah/collar.svg"
  4522. }
  4523. },
  4524. eyeNarrow: {
  4525. height: math.unit(0.18, "feet"),
  4526. name: "Eye (Narrow)",
  4527. image: {
  4528. source: "./media/characters/noah/eye-narrow.svg"
  4529. }
  4530. },
  4531. eyeNormal: {
  4532. height: math.unit(0.18, "feet"),
  4533. name: "Eye (Normal)",
  4534. image: {
  4535. source: "./media/characters/noah/eye-normal.svg"
  4536. }
  4537. },
  4538. eyeWide: {
  4539. height: math.unit(0.18, "feet"),
  4540. name: "Eye (Wide)",
  4541. image: {
  4542. source: "./media/characters/noah/eye-wide.svg"
  4543. }
  4544. },
  4545. ear: {
  4546. height: math.unit(0.64, "feet"),
  4547. name: "Ear",
  4548. image: {
  4549. source: "./media/characters/noah/ear.svg"
  4550. }
  4551. },
  4552. },
  4553. [
  4554. {
  4555. name: "Large",
  4556. height: math.unit(50, "feet")
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(750, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Megamacro",
  4565. height: math.unit(50, "miles")
  4566. },
  4567. {
  4568. name: "Gigamacro",
  4569. height: math.unit(100000, "miles")
  4570. },
  4571. {
  4572. name: "Full-Size",
  4573. height: math.unit(3000000000, "miles")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(80, "kg"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/natalya/front.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(2, "meter"),
  4590. weight: math.unit(80, "kg"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/natalya/back.svg"
  4594. }
  4595. }
  4596. },
  4597. [
  4598. {
  4599. name: "Normal",
  4600. height: math.unit(150, "feet"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(5, "miles")
  4606. },
  4607. {
  4608. name: "Full-Size",
  4609. height: math.unit(600, "kiloparsecs")
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4615. {
  4616. front: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Front",
  4620. image: {
  4621. source: "./media/characters/erestrebah/front.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. back: {
  4627. height: math.unit(2, "meter"),
  4628. weight: math.unit(50, "kg"),
  4629. name: "Back",
  4630. image: {
  4631. source: "./media/characters/erestrebah/back.svg",
  4632. extra: 1257/1139,
  4633. bottom: 13/1270
  4634. }
  4635. },
  4636. wing: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(50, "kg"),
  4639. name: "Wing",
  4640. image: {
  4641. source: "./media/characters/erestrebah/wing.svg",
  4642. extra: 1262/1162,
  4643. bottom: 96/1358
  4644. }
  4645. },
  4646. mouth: {
  4647. height: math.unit(0.39, "feet"),
  4648. name: "Mouth",
  4649. image: {
  4650. source: "./media/characters/erestrebah/mouth.svg"
  4651. }
  4652. }
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(10, "feet")
  4658. },
  4659. {
  4660. name: "Large",
  4661. height: math.unit(50, "feet"),
  4662. default: true
  4663. },
  4664. {
  4665. name: "Macro",
  4666. height: math.unit(300, "feet")
  4667. },
  4668. {
  4669. name: "Macro+",
  4670. height: math.unit(750, "feet")
  4671. },
  4672. {
  4673. name: "Megamacro",
  4674. height: math.unit(3, "miles")
  4675. }
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meter"),
  4683. weight: math.unit(80, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/jennifer/front.svg",
  4687. bottom: 0.11,
  4688. extra: 1.16
  4689. }
  4690. },
  4691. frontAlt: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(80, "kg"),
  4694. name: "Front (Alt)",
  4695. image: {
  4696. source: "./media/characters/jennifer/front-alt.svg"
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Canon Height",
  4703. height: math.unit(120, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Macro+",
  4708. height: math.unit(300, "feet")
  4709. },
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(20000, "feet")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(2, "meter"),
  4721. weight: math.unit(50, "kg"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/kalista/front.svg",
  4725. extra: 1314/1145,
  4726. bottom: 101/1415
  4727. }
  4728. },
  4729. back: {
  4730. height: math.unit(2, "meter"),
  4731. weight: math.unit(50, "kg"),
  4732. name: "Back",
  4733. image: {
  4734. source: "./media/characters/kalista/back.svg",
  4735. extra: 1366 / 1156,
  4736. bottom: 33.9 / 1362.78
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Uncomfortably Small",
  4743. height: math.unit(10, "feet")
  4744. },
  4745. {
  4746. name: "Small",
  4747. height: math.unit(30, "feet")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(100, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(2000, "feet")
  4757. },
  4758. {
  4759. name: "True Form",
  4760. height: math.unit(8924, "miles")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(120, "kg"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/ggv/front.svg"
  4773. }
  4774. },
  4775. side: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(120, "kg"),
  4778. name: "Side",
  4779. image: {
  4780. source: "./media/characters/ggv/side.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Extremely Puny",
  4787. height: math.unit(9 + 5 / 12, "feet")
  4788. },
  4789. {
  4790. name: "Horribly Small",
  4791. height: math.unit(47.7, "miles"),
  4792. default: true
  4793. },
  4794. {
  4795. name: "Reasonably Sized",
  4796. height: math.unit(25000, "parsecs")
  4797. },
  4798. {
  4799. name: "Slightly Uncompressed",
  4800. height: math.unit(7.77e31, "parsecs")
  4801. },
  4802. {
  4803. name: "Omniversal",
  4804. height: math.unit(1e300, "meters")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(2, "meter"),
  4813. weight: math.unit(75, "lb"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/napalm/front.svg"
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(2, "meter"),
  4821. weight: math.unit(75, "lb"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/napalm/back.svg"
  4825. }
  4826. }
  4827. },
  4828. [
  4829. {
  4830. name: "Standard",
  4831. height: math.unit(55, "feet"),
  4832. default: true
  4833. }
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/asana/front.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/asana/back.svg",
  4855. extra: 1114 / 1043,
  4856. bottom: 5 / 1120
  4857. }
  4858. },
  4859. dressedDark: {
  4860. height: math.unit(7 + 5 / 6, "feet"),
  4861. weight: math.unit(325, "lb"),
  4862. name: "Dressed (Dark)",
  4863. image: {
  4864. source: "./media/characters/asana/dressed-dark.svg",
  4865. extra: 1133 / 1060,
  4866. bottom: 15.2 / 1148.6
  4867. }
  4868. },
  4869. dressedLight: {
  4870. height: math.unit(7 + 5 / 6, "feet"),
  4871. weight: math.unit(325, "lb"),
  4872. name: "Dressed (Light)",
  4873. image: {
  4874. source: "./media/characters/asana/dressed-light.svg",
  4875. extra: 1133 / 1060,
  4876. bottom: 15.2 / 1148.6
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Standard",
  4883. height: math.unit(7 + 5 / 6, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Large",
  4888. height: math.unit(10, "meters")
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "meters")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(5e6, "meters")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(5e12, "lightyears")
  4901. },
  4902. {
  4903. name: "Max Size",
  4904. height: math.unit(1e31, "lightyears")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/ebony/front.svg",
  4917. bottom: 0.03,
  4918. extra: 1045 / 810 + 0.03
  4919. }
  4920. },
  4921. side: {
  4922. height: math.unit(2, "meter"),
  4923. weight: math.unit(60, "kg"),
  4924. name: "Side",
  4925. image: {
  4926. source: "./media/characters/ebony/side.svg",
  4927. bottom: 0.03,
  4928. extra: 1045 / 810 + 0.03
  4929. }
  4930. },
  4931. back: {
  4932. height: math.unit(2, "meter"),
  4933. weight: math.unit(60, "kg"),
  4934. name: "Back",
  4935. image: {
  4936. source: "./media/characters/ebony/back.svg",
  4937. bottom: 0.01,
  4938. extra: 1045 / 810 + 0.01
  4939. }
  4940. },
  4941. },
  4942. [
  4943. // TODO check why I did this lol
  4944. {
  4945. name: "Standard",
  4946. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(200, "feet")
  4952. },
  4953. {
  4954. name: "Gigamacro",
  4955. height: math.unit(13000, "km")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4961. {
  4962. front: {
  4963. height: math.unit(6, "feet"),
  4964. weight: math.unit(175, "lb"),
  4965. name: "Front",
  4966. image: {
  4967. source: "./media/characters/mountain/front.svg",
  4968. extra: 972 / 955,
  4969. bottom: 64 / 1036.6
  4970. }
  4971. },
  4972. back: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(175, "lb"),
  4975. name: "Back",
  4976. image: {
  4977. source: "./media/characters/mountain/back.svg",
  4978. extra: 970 / 950,
  4979. bottom: 28.25 / 999
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Large",
  4986. height: math.unit(20, "meters")
  4987. },
  4988. {
  4989. name: "Macro",
  4990. height: math.unit(300, "meters")
  4991. },
  4992. {
  4993. name: "Gigamacro",
  4994. height: math.unit(10000, "km"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Examacro",
  4999. height: math.unit(10e9, "lightyears")
  5000. }
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(8, "feet"),
  5008. weight: math.unit(500, "lb"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/rick/front.svg"
  5012. }
  5013. }
  5014. },
  5015. [
  5016. {
  5017. name: "Normal",
  5018. height: math.unit(8, "feet"),
  5019. default: true
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(5, "km")
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(8, "feet"),
  5032. weight: math.unit(120, "lb"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/ona/front.svg"
  5036. }
  5037. },
  5038. frontAlt: {
  5039. height: math.unit(8, "feet"),
  5040. weight: math.unit(120, "lb"),
  5041. name: "Front (Alt)",
  5042. image: {
  5043. source: "./media/characters/ona/front-alt.svg"
  5044. }
  5045. },
  5046. back: {
  5047. height: math.unit(8, "feet"),
  5048. weight: math.unit(120, "lb"),
  5049. name: "Back",
  5050. image: {
  5051. source: "./media/characters/ona/back.svg"
  5052. }
  5053. },
  5054. foot: {
  5055. height: math.unit(1.1, "feet"),
  5056. name: "Foot",
  5057. image: {
  5058. source: "./media/characters/ona/foot.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Megamacro",
  5065. height: math.unit(70, "km"),
  5066. default: true
  5067. },
  5068. {
  5069. name: "Gigamacro",
  5070. height: math.unit(681818, "miles")
  5071. },
  5072. {
  5073. name: "Examacro",
  5074. height: math.unit(3800000, "lightyears")
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5080. {
  5081. front: {
  5082. height: math.unit(12, "feet"),
  5083. weight: math.unit(3000, "lb"),
  5084. name: "Front",
  5085. image: {
  5086. source: "./media/characters/mech/front.svg",
  5087. extra: 2900 / 2770,
  5088. bottom: 110 / 3010
  5089. }
  5090. },
  5091. back: {
  5092. height: math.unit(12, "feet"),
  5093. weight: math.unit(3000, "lb"),
  5094. name: "Back",
  5095. image: {
  5096. source: "./media/characters/mech/back.svg",
  5097. extra: 3011 / 2890,
  5098. bottom: 94 / 3105
  5099. }
  5100. },
  5101. maw: {
  5102. height: math.unit(3.07, "feet"),
  5103. name: "Maw",
  5104. image: {
  5105. source: "./media/characters/mech/maw.svg"
  5106. }
  5107. },
  5108. head: {
  5109. height: math.unit(3.07, "feet"),
  5110. name: "Head",
  5111. image: {
  5112. source: "./media/characters/mech/head.svg"
  5113. }
  5114. },
  5115. dick: {
  5116. height: math.unit(1.43, "feet"),
  5117. name: "Dick",
  5118. image: {
  5119. source: "./media/characters/mech/dick.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(12, "feet")
  5127. },
  5128. {
  5129. name: "Macro",
  5130. height: math.unit(300, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro+",
  5135. height: math.unit(1500, "feet")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(1.3, "meter"),
  5144. weight: math.unit(30, "kg"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/gregory/front.svg",
  5148. }
  5149. }
  5150. },
  5151. [
  5152. {
  5153. name: "Normal",
  5154. height: math.unit(1.3, "meter"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Macro",
  5159. height: math.unit(20, "meter")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5165. {
  5166. front: {
  5167. height: math.unit(2.8, "meter"),
  5168. weight: math.unit(200, "kg"),
  5169. name: "Front",
  5170. image: {
  5171. source: "./media/characters/elory/front.svg",
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(2.8, "meter"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro",
  5183. height: math.unit(38, "meter")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(470, "feet"),
  5192. weight: math.unit(924, "tons"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/angelpatamon/front.svg",
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(470, "feet"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Deity Size I",
  5207. height: math.unit(28651.2, "km")
  5208. },
  5209. {
  5210. name: "Deity Size II",
  5211. height: math.unit(171907.2, "km")
  5212. }
  5213. ]
  5214. ))
  5215. characterMakers.push(() => makeCharacter(
  5216. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5217. {
  5218. side: {
  5219. height: math.unit(7.2, "meter"),
  5220. weight: math.unit(8.2, "tons"),
  5221. name: "Side",
  5222. image: {
  5223. source: "./media/characters/cryae/side.svg",
  5224. extra: 3500 / 1500
  5225. }
  5226. }
  5227. },
  5228. [
  5229. {
  5230. name: "Normal",
  5231. height: math.unit(7.2, "meter"),
  5232. default: true
  5233. }
  5234. ]
  5235. ))
  5236. characterMakers.push(() => makeCharacter(
  5237. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5238. {
  5239. front: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Front",
  5243. image: {
  5244. source: "./media/characters/xera/front.svg",
  5245. extra: 2377 / 1972,
  5246. bottom: 75.5 / 2452
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(175, "lb"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/xera/side.svg",
  5255. extra: 2345 / 2019,
  5256. bottom: 39.7 / 2384
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(175, "lb"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/xera/back.svg",
  5265. extra: 2095 / 1984,
  5266. bottom: 67 / 2166
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Small",
  5273. height: math.unit(10, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(500, "meters"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro+",
  5282. height: math.unit(10, "km")
  5283. },
  5284. {
  5285. name: "Gigamacro",
  5286. height: math.unit(25000, "km")
  5287. },
  5288. {
  5289. name: "Teramacro",
  5290. height: math.unit(3e6, "km")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(175, "lb"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/nebula/front.svg",
  5303. extra: 2566 / 2362,
  5304. bottom: 81 / 2644
  5305. }
  5306. }
  5307. },
  5308. [
  5309. {
  5310. name: "Small",
  5311. height: math.unit(4.5, "meters")
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(1500, "meters"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Megamacro",
  5320. height: math.unit(150, "km")
  5321. },
  5322. {
  5323. name: "Gigamacro",
  5324. height: math.unit(27000, "km")
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/abysgar/front.svg",
  5337. extra: 1739/1614,
  5338. bottom: 71/1810
  5339. }
  5340. },
  5341. frontNsfw: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(225, "lb"),
  5344. name: "Front (NSFW)",
  5345. image: {
  5346. source: "./media/characters/abysgar/front-nsfw.svg",
  5347. extra: 1739/1614,
  5348. bottom: 71/1810
  5349. }
  5350. },
  5351. back: {
  5352. height: math.unit(4.6, "feet"),
  5353. weight: math.unit(225, "lb"),
  5354. name: "Back",
  5355. image: {
  5356. source: "./media/characters/abysgar/back.svg",
  5357. extra: 1384/1327,
  5358. bottom: 0/1384
  5359. }
  5360. },
  5361. head: {
  5362. height: math.unit(1.25, "feet"),
  5363. name: "Head",
  5364. image: {
  5365. source: "./media/characters/abysgar/head.svg",
  5366. extra: 669/569,
  5367. bottom: 0/669
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Small",
  5374. height: math.unit(4.5, "meters")
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1250, "meters"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Megamacro",
  5383. height: math.unit(125, "km")
  5384. },
  5385. {
  5386. name: "Gigamacro",
  5387. height: math.unit(26000, "km")
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(180, "lb"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/yakuz/front.svg"
  5400. }
  5401. }
  5402. },
  5403. [
  5404. {
  5405. name: "Small",
  5406. height: math.unit(5, "meters")
  5407. },
  5408. {
  5409. name: "Macro",
  5410. height: math.unit(1500, "meters"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Megamacro",
  5415. height: math.unit(200, "km")
  5416. },
  5417. {
  5418. name: "Gigamacro",
  5419. height: math.unit(100000, "km")
  5420. }
  5421. ]
  5422. ))
  5423. characterMakers.push(() => makeCharacter(
  5424. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5425. {
  5426. front: {
  5427. height: math.unit(6, "feet"),
  5428. weight: math.unit(175, "lb"),
  5429. name: "Front",
  5430. image: {
  5431. source: "./media/characters/mirova/front.svg",
  5432. extra: 3334 / 3071,
  5433. bottom: 42 / 3375.6
  5434. }
  5435. }
  5436. },
  5437. [
  5438. {
  5439. name: "Small",
  5440. height: math.unit(5, "meters")
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(900, "meters"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Megamacro",
  5449. height: math.unit(135, "km")
  5450. },
  5451. {
  5452. name: "Gigamacro",
  5453. height: math.unit(20000, "km")
  5454. }
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5459. {
  5460. side: {
  5461. height: math.unit(28.35, "feet"),
  5462. weight: math.unit(99.75, "tons"),
  5463. name: "Side",
  5464. image: {
  5465. source: "./media/characters/asana-mech/side.svg",
  5466. extra: 923 / 699,
  5467. bottom: 50 / 975
  5468. }
  5469. },
  5470. chaingun: {
  5471. height: math.unit(7, "feet"),
  5472. weight: math.unit(2400, "lb"),
  5473. name: "Chaingun",
  5474. image: {
  5475. source: "./media/characters/asana-mech/chaingun.svg"
  5476. }
  5477. },
  5478. laser: {
  5479. height: math.unit(7.12, "feet"),
  5480. weight: math.unit(2000, "lb"),
  5481. name: "Laser",
  5482. image: {
  5483. source: "./media/characters/asana-mech/laser.svg"
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "Normal",
  5490. height: math.unit(28.35, "feet"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Macro",
  5495. height: math.unit(2500, "feet")
  5496. },
  5497. {
  5498. name: "Megamacro",
  5499. height: math.unit(25, "miles")
  5500. },
  5501. {
  5502. name: "Examacro",
  5503. height: math.unit(6e8, "lightyears")
  5504. },
  5505. ]
  5506. ))
  5507. characterMakers.push(() => makeCharacter(
  5508. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5509. {
  5510. front: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front",
  5514. image: {
  5515. source: "./media/characters/asche/front.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontUnderwear: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Underwear)",
  5524. image: {
  5525. source: "./media/characters/asche/front-underwear.svg",
  5526. extra: 1258 / 1190,
  5527. bottom: 47 / 1305
  5528. }
  5529. },
  5530. frontDressed: {
  5531. height: math.unit(5, "meters"),
  5532. weight: math.unit(1000, "kg"),
  5533. name: "Front (Dressed)",
  5534. image: {
  5535. source: "./media/characters/asche/front-dressed.svg",
  5536. extra: 1258 / 1190,
  5537. bottom: 47 / 1305
  5538. }
  5539. },
  5540. frontArmor: {
  5541. height: math.unit(5, "meters"),
  5542. weight: math.unit(1000, "kg"),
  5543. name: "Front (Armored)",
  5544. image: {
  5545. source: "./media/characters/asche/front-armored.svg",
  5546. extra: 1374 / 1308,
  5547. bottom: 23 / 1397
  5548. }
  5549. },
  5550. mp724: {
  5551. height: math.unit(0.96, "meters"),
  5552. weight: math.unit(38, "kg"),
  5553. name: "H&K MP724",
  5554. image: {
  5555. source: "./media/characters/asche/h&k-mp724.svg"
  5556. }
  5557. },
  5558. side: {
  5559. height: math.unit(5, "meters"),
  5560. weight: math.unit(1000, "kg"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/asche/side.svg",
  5564. extra: 1717 / 1609,
  5565. bottom: 0.005
  5566. }
  5567. },
  5568. back: {
  5569. height: math.unit(5, "meters"),
  5570. weight: math.unit(1000, "kg"),
  5571. name: "Back",
  5572. image: {
  5573. source: "./media/characters/asche/back.svg",
  5574. extra: 1570 / 1501
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "DEFCON 5",
  5581. height: math.unit(5, "meters")
  5582. },
  5583. {
  5584. name: "DEFCON 4",
  5585. height: math.unit(500, "meters"),
  5586. default: true
  5587. },
  5588. {
  5589. name: "DEFCON 3",
  5590. height: math.unit(5, "km")
  5591. },
  5592. {
  5593. name: "DEFCON 2",
  5594. height: math.unit(500, "km")
  5595. },
  5596. {
  5597. name: "DEFCON 1",
  5598. height: math.unit(500000, "km")
  5599. },
  5600. {
  5601. name: "DEFCON 0",
  5602. height: math.unit(3, "gigaparsecs")
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5608. {
  5609. front: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Front",
  5613. image: {
  5614. source: "./media/characters/gale/front.svg",
  5615. extra: 977/919,
  5616. bottom: 105/1082
  5617. }
  5618. },
  5619. side: {
  5620. height: math.unit(6.7, "feet"),
  5621. weight: math.unit(92.7, "kg"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/gale/side.svg",
  5625. extra: 978/922,
  5626. bottom: 140/1118
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(7, "feet"),
  5631. weight: math.unit(92.7, "kg"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/gale/back.svg",
  5635. extra: 966/920,
  5636. bottom: 61/1027
  5637. }
  5638. },
  5639. maw: {
  5640. height: math.unit(2.23, "feet"),
  5641. name: "Maw",
  5642. image: {
  5643. source: "./media/characters/gale/maw.svg"
  5644. }
  5645. },
  5646. foot: {
  5647. height: math.unit(2.1, "feet"),
  5648. name: "Foot",
  5649. image: {
  5650. source: "./media/characters/gale/foot.svg"
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(7, "feet")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(150, "feet"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(300, "feet")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(5 + 10/12, "feet"),
  5675. weight: math.unit(67, "kg"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/draylen/front.svg",
  5679. extra: 832/777,
  5680. bottom: 85/917
  5681. }
  5682. }
  5683. },
  5684. [
  5685. {
  5686. name: "Normal",
  5687. height: math.unit(5 + 10/12, "feet")
  5688. },
  5689. {
  5690. name: "Macro",
  5691. height: math.unit(150, "feet"),
  5692. default: true
  5693. }
  5694. ]
  5695. ))
  5696. characterMakers.push(() => makeCharacter(
  5697. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5698. {
  5699. front: {
  5700. height: math.unit(7 + 9 / 12, "feet"),
  5701. weight: math.unit(379, "lbs"),
  5702. name: "Front",
  5703. image: {
  5704. source: "./media/characters/chez/front.svg"
  5705. }
  5706. },
  5707. side: {
  5708. height: math.unit(7 + 9 / 12, "feet"),
  5709. weight: math.unit(379, "lbs"),
  5710. name: "Side",
  5711. image: {
  5712. source: "./media/characters/chez/side.svg"
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(7 + 9 / 12, "feet"),
  5720. default: true
  5721. },
  5722. {
  5723. name: "God King",
  5724. height: math.unit(9750000, "meters")
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(6, "feet"),
  5733. weight: math.unit(275, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/kaylum/front.svg",
  5737. bottom: 0.01,
  5738. extra: 1166 / 1031
  5739. }
  5740. },
  5741. frontWingless: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(275, "lbs"),
  5744. name: "Front (Wingless)",
  5745. image: {
  5746. source: "./media/characters/kaylum/front-wingless.svg",
  5747. bottom: 0.01,
  5748. extra: 1117 / 1031
  5749. }
  5750. }
  5751. },
  5752. [
  5753. {
  5754. name: "Normal",
  5755. height: math.unit(3.05, "meters")
  5756. },
  5757. {
  5758. name: "Master",
  5759. height: math.unit(5.5, "meters")
  5760. },
  5761. {
  5762. name: "Rampage",
  5763. height: math.unit(19, "meters")
  5764. },
  5765. {
  5766. name: "Macro Lite",
  5767. height: math.unit(37, "meters")
  5768. },
  5769. {
  5770. name: "Hyper Predator",
  5771. height: math.unit(61, "meters")
  5772. },
  5773. {
  5774. name: "Macro",
  5775. height: math.unit(138, "meters"),
  5776. default: true
  5777. }
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(5 + 5 / 12, "feet"),
  5785. weight: math.unit(120, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/geta/front.svg",
  5789. extra: 1003/933,
  5790. bottom: 21/1024
  5791. }
  5792. },
  5793. paw: {
  5794. height: math.unit(0.35, "feet"),
  5795. name: "Paw",
  5796. image: {
  5797. source: "./media/characters/geta/paw.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Micro",
  5804. height: math.unit(3, "inches"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Normal",
  5809. height: math.unit(5 + 5 / 12, "feet")
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(300, "lbs"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/tyrnn/front.svg"
  5822. }
  5823. }
  5824. },
  5825. [
  5826. {
  5827. name: "Main Height",
  5828. height: math.unit(355, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Fave. Height",
  5833. height: math.unit(2400, "feet")
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(300, "lbs"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/appledectomy/front.svg"
  5846. }
  5847. }
  5848. },
  5849. [
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(2500, "feet")
  5853. },
  5854. {
  5855. name: "Megamacro",
  5856. height: math.unit(50, "miles"),
  5857. default: true
  5858. },
  5859. {
  5860. name: "Gigamacro",
  5861. height: math.unit(5000, "miles")
  5862. },
  5863. {
  5864. name: "Teramacro",
  5865. height: math.unit(250000, "miles")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/vulpes/front.svg",
  5878. extra: 573 / 543,
  5879. bottom: 0.033
  5880. }
  5881. },
  5882. side: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(200, "lbs"),
  5885. name: "Side",
  5886. image: {
  5887. source: "./media/characters/vulpes/side.svg",
  5888. extra: 577 / 549,
  5889. bottom: 11 / 588
  5890. }
  5891. },
  5892. back: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(200, "lbs"),
  5895. name: "Back",
  5896. image: {
  5897. source: "./media/characters/vulpes/back.svg",
  5898. extra: 573 / 549,
  5899. bottom: 20 / 593
  5900. }
  5901. },
  5902. feet: {
  5903. height: math.unit(1.276, "feet"),
  5904. name: "Feet",
  5905. image: {
  5906. source: "./media/characters/vulpes/feet.svg"
  5907. }
  5908. },
  5909. maw: {
  5910. height: math.unit(1.18, "feet"),
  5911. name: "Maw",
  5912. image: {
  5913. source: "./media/characters/vulpes/maw.svg"
  5914. }
  5915. },
  5916. },
  5917. [
  5918. {
  5919. name: "Micro",
  5920. height: math.unit(2, "inches")
  5921. },
  5922. {
  5923. name: "Normal",
  5924. height: math.unit(6.3, "feet")
  5925. },
  5926. {
  5927. name: "Macro",
  5928. height: math.unit(850, "feet")
  5929. },
  5930. {
  5931. name: "Megamacro",
  5932. height: math.unit(7500, "feet"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Gigamacro",
  5937. height: math.unit(570000, "miles")
  5938. }
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(210, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/rain-fallen/front.svg"
  5950. }
  5951. },
  5952. side: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(210, "lbs"),
  5955. name: "Side",
  5956. image: {
  5957. source: "./media/characters/rain-fallen/side.svg"
  5958. }
  5959. },
  5960. back: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(210, "lbs"),
  5963. name: "Back",
  5964. image: {
  5965. source: "./media/characters/rain-fallen/back.svg"
  5966. }
  5967. },
  5968. feral: {
  5969. height: math.unit(9, "feet"),
  5970. weight: math.unit(700, "lbs"),
  5971. name: "Feral",
  5972. image: {
  5973. source: "./media/characters/rain-fallen/feral.svg"
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Meddling with Mortals",
  5980. height: math.unit(8 + 8/12, "feet")
  5981. },
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5, "meter")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(150, "meter"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Megamacro",
  5993. height: math.unit(278e6, "meter")
  5994. },
  5995. {
  5996. name: "Gigamacro",
  5997. height: math.unit(2e9, "meter")
  5998. },
  5999. {
  6000. name: "Teramacro",
  6001. height: math.unit(8e12, "meter")
  6002. },
  6003. {
  6004. name: "Devourer",
  6005. height: math.unit(14, "zettameters")
  6006. },
  6007. {
  6008. name: "Scarlet King",
  6009. height: math.unit(18, "yottameters")
  6010. },
  6011. {
  6012. name: "Void",
  6013. height: math.unit(1e88, "yottameters")
  6014. }
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6019. {
  6020. standing: {
  6021. height: math.unit(6, "feet"),
  6022. weight: math.unit(180, "lbs"),
  6023. name: "Standing",
  6024. image: {
  6025. source: "./media/characters/zaakira/standing.svg",
  6026. extra: 1599/1504,
  6027. bottom: 39/1638
  6028. }
  6029. },
  6030. laying: {
  6031. height: math.unit(3.3, "feet"),
  6032. weight: math.unit(180, "lbs"),
  6033. name: "Laying",
  6034. image: {
  6035. source: "./media/characters/zaakira/laying.svg"
  6036. }
  6037. },
  6038. },
  6039. [
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(12, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(279, "feet"),
  6047. default: true
  6048. }
  6049. ]
  6050. ))
  6051. characterMakers.push(() => makeCharacter(
  6052. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6053. {
  6054. femSfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Fem",
  6058. image: {
  6059. source: "./media/characters/sigvald/fem-sfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. femNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Fem (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/fem-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. maleNsfw: {
  6075. height: math.unit(8, "feet"),
  6076. weight: math.unit(350, "lb"),
  6077. name: "Male (NSFW)",
  6078. image: {
  6079. source: "./media/characters/sigvald/male-nsfw.svg",
  6080. extra: 182 / 164,
  6081. bottom: 8.7 / 190.5
  6082. }
  6083. },
  6084. hermNsfw: {
  6085. height: math.unit(8, "feet"),
  6086. weight: math.unit(350, "lb"),
  6087. name: "Herm (NSFW)",
  6088. image: {
  6089. source: "./media/characters/sigvald/herm-nsfw.svg",
  6090. extra: 182 / 164,
  6091. bottom: 8.7 / 190.5
  6092. }
  6093. },
  6094. dick: {
  6095. height: math.unit(2.36, "feet"),
  6096. name: "Dick",
  6097. image: {
  6098. source: "./media/characters/sigvald/dick.svg"
  6099. }
  6100. },
  6101. eye: {
  6102. height: math.unit(0.31, "feet"),
  6103. name: "Eye",
  6104. image: {
  6105. source: "./media/characters/sigvald/eye.svg"
  6106. }
  6107. },
  6108. mouth: {
  6109. height: math.unit(0.92, "feet"),
  6110. name: "Mouth",
  6111. image: {
  6112. source: "./media/characters/sigvald/mouth.svg"
  6113. }
  6114. },
  6115. paws: {
  6116. height: math.unit(2.2, "feet"),
  6117. name: "Paws",
  6118. image: {
  6119. source: "./media/characters/sigvald/paws.svg"
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(8, "feet")
  6127. },
  6128. {
  6129. name: "Large",
  6130. height: math.unit(12, "feet")
  6131. },
  6132. {
  6133. name: "Larger",
  6134. height: math.unit(20, "feet")
  6135. },
  6136. {
  6137. name: "Macro",
  6138. height: math.unit(150, "feet")
  6139. },
  6140. {
  6141. name: "Macro+",
  6142. height: math.unit(200, "feet"),
  6143. default: true
  6144. },
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6149. {
  6150. anthro_front: {
  6151. height: math.unit(5 + 11/12, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-front.svg",
  6156. extra: 851/781,
  6157. bottom: 54/905
  6158. },
  6159. form: "anthro",
  6160. default: true
  6161. },
  6162. anthro_side: {
  6163. height: math.unit(5.1, "feet"),
  6164. weight: math.unit(250, "lb"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/scott/anthro-side.svg"
  6168. },
  6169. form: "anthro",
  6170. },
  6171. anthro_dick: {
  6172. height: math.unit(1.33, "feet"),
  6173. name: "Dick",
  6174. image: {
  6175. source: "./media/characters/scott/anthro-dick.svg"
  6176. },
  6177. form: "anthro",
  6178. },
  6179. side: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/scott/side.svg",
  6185. extra: 754 / 724,
  6186. bottom: 0.069
  6187. },
  6188. form: "taur",
  6189. default: true
  6190. },
  6191. upright: {
  6192. height: math.unit(12, "feet"),
  6193. weight: math.unit(2000, "kg"),
  6194. name: "Upright",
  6195. image: {
  6196. source: "./media/characters/scott/upright.svg",
  6197. extra: 3881 / 3722,
  6198. bottom: 0.05
  6199. },
  6200. form: "taur",
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5 + 11/12, "feet"),
  6207. default: true,
  6208. form: "anthro"
  6209. },
  6210. {
  6211. name: "Normal",
  6212. height: math.unit(12, "feet"),
  6213. default: true,
  6214. form: "taur"
  6215. },
  6216. ],
  6217. {
  6218. "anthro": {
  6219. name: "Anthro",
  6220. default: true
  6221. },
  6222. "taur": {
  6223. name: "Taur",
  6224. },
  6225. }
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6229. {
  6230. side: {
  6231. height: math.unit(8, "meters"),
  6232. weight: math.unit(84755, "lbs"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/tobias/side.svg",
  6236. extra: 1474 / 1096,
  6237. bottom: 38.9 / 1513.1235
  6238. }
  6239. },
  6240. maw: {
  6241. height: math.unit(2.3, "meters"),
  6242. name: "Maw",
  6243. image: {
  6244. source: "./media/characters/tobias/maw.svg"
  6245. }
  6246. },
  6247. burp: {
  6248. height: math.unit(2.85, "meters"),
  6249. name: "Burp",
  6250. image: {
  6251. source: "./media/characters/tobias/burp.svg"
  6252. }
  6253. },
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(8, "meters"),
  6259. default: true
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6265. {
  6266. front: {
  6267. height: math.unit(5.5, "feet"),
  6268. weight: math.unit(400, "lbs"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/kieran/front.svg",
  6272. extra: 2694 / 2364,
  6273. bottom: 217 / 2908
  6274. }
  6275. },
  6276. side: {
  6277. height: math.unit(5.5, "feet"),
  6278. weight: math.unit(400, "lbs"),
  6279. name: "Side",
  6280. image: {
  6281. source: "./media/characters/kieran/side.svg",
  6282. extra: 875 / 777,
  6283. bottom: 84.6 / 959
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(5.5, "feet"),
  6291. default: true
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6297. {
  6298. side: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(70, "kg"),
  6301. name: "Side",
  6302. image: {
  6303. source: "./media/characters/sanya/side.svg",
  6304. bottom: 0.02,
  6305. extra: 1.02
  6306. }
  6307. },
  6308. },
  6309. [
  6310. {
  6311. name: "Small",
  6312. height: math.unit(2, "meters")
  6313. },
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(3, "meters")
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(16, "meters"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(2, "meters"),
  6330. weight: math.unit(120, "kg"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/miranda/front.svg",
  6334. extra: 195 / 185,
  6335. bottom: 10.9 / 206.5
  6336. }
  6337. },
  6338. back: {
  6339. height: math.unit(2, "meters"),
  6340. weight: math.unit(120, "kg"),
  6341. name: "Back",
  6342. image: {
  6343. source: "./media/characters/miranda/back.svg",
  6344. extra: 201 / 193,
  6345. bottom: 2.3 / 203.7
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(10, "feet"),
  6353. default: true
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "James", species: ["deer"], tags: ["anthro"] },
  6359. {
  6360. side: {
  6361. height: math.unit(2, "meters"),
  6362. weight: math.unit(100, "kg"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/james/front.svg",
  6366. extra: 10 / 8.5
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(8.5, "feet"),
  6374. default: true
  6375. }
  6376. ]
  6377. ))
  6378. characterMakers.push(() => makeCharacter(
  6379. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6380. {
  6381. side: {
  6382. height: math.unit(9.5, "feet"),
  6383. weight: math.unit(2500, "lbs"),
  6384. name: "Side",
  6385. image: {
  6386. source: "./media/characters/heather/side.svg"
  6387. }
  6388. },
  6389. },
  6390. [
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(9.5, "feet"),
  6394. default: true
  6395. }
  6396. ]
  6397. ))
  6398. characterMakers.push(() => makeCharacter(
  6399. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6400. {
  6401. side: {
  6402. height: math.unit(6.5, "feet"),
  6403. weight: math.unit(400, "lbs"),
  6404. name: "Side",
  6405. image: {
  6406. source: "./media/characters/lukas/side.svg",
  6407. extra: 7.25 / 6.5
  6408. }
  6409. },
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6.5, "feet"),
  6415. default: true
  6416. }
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6421. {
  6422. side: {
  6423. height: math.unit(5, "feet"),
  6424. weight: math.unit(3000, "lbs"),
  6425. name: "Side",
  6426. image: {
  6427. source: "./media/characters/louise/side.svg"
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(5, "feet"),
  6435. default: true
  6436. }
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6441. {
  6442. side: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(150, "lbs"),
  6445. name: "Side",
  6446. image: {
  6447. source: "./media/characters/ramona/side.svg",
  6448. extra: 871/854,
  6449. bottom: 41/912
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(6 + 4/12, "feet")
  6457. },
  6458. {
  6459. name: "Minimacro",
  6460. height: math.unit(5.3, "meters"),
  6461. default: true
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(20, "stories")
  6466. },
  6467. {
  6468. name: "Macro+",
  6469. height: math.unit(50, "stories")
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6475. {
  6476. standing: {
  6477. height: math.unit(5.75, "feet"),
  6478. weight: math.unit(160, "lbs"),
  6479. name: "Standing",
  6480. image: {
  6481. source: "./media/characters/deerpuff/standing.svg",
  6482. extra: 682 / 624
  6483. }
  6484. },
  6485. sitting: {
  6486. height: math.unit(5.75 / 1.79, "feet"),
  6487. weight: math.unit(160, "lbs"),
  6488. name: "Sitting",
  6489. image: {
  6490. source: "./media/characters/deerpuff/sitting.svg",
  6491. bottom: 44 / 400,
  6492. extra: 1
  6493. }
  6494. },
  6495. taurLaying: {
  6496. height: math.unit(6, "feet"),
  6497. weight: math.unit(400, "lbs"),
  6498. name: "Taur (Laying)",
  6499. image: {
  6500. source: "./media/characters/deerpuff/taur-laying.svg"
  6501. }
  6502. },
  6503. },
  6504. [
  6505. {
  6506. name: "Puffball",
  6507. height: math.unit(6, "inches")
  6508. },
  6509. {
  6510. name: "Normalpuff",
  6511. height: math.unit(5.75, "feet")
  6512. },
  6513. {
  6514. name: "Macropuff",
  6515. height: math.unit(1500, "feet"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Megapuff",
  6520. height: math.unit(500, "miles")
  6521. },
  6522. {
  6523. name: "Gigapuff",
  6524. height: math.unit(250000, "miles")
  6525. },
  6526. {
  6527. name: "Omegapuff",
  6528. height: math.unit(1000, "lightyears")
  6529. },
  6530. ]
  6531. ))
  6532. characterMakers.push(() => makeCharacter(
  6533. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6534. {
  6535. stomping: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(170, "lbs"),
  6538. name: "Stomping",
  6539. image: {
  6540. source: "./media/characters/vivian/stomping.svg"
  6541. }
  6542. },
  6543. sitting: {
  6544. height: math.unit(6 / 1.75, "feet"),
  6545. weight: math.unit(170, "lbs"),
  6546. name: "Sitting",
  6547. image: {
  6548. source: "./media/characters/vivian/sitting.svg",
  6549. bottom: 1 / 6.4,
  6550. extra: 1,
  6551. }
  6552. },
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(7, "feet"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Macro",
  6562. height: math.unit(10, "stories")
  6563. },
  6564. {
  6565. name: "Macro+",
  6566. height: math.unit(30, "stories")
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(10, "miles")
  6571. },
  6572. {
  6573. name: "Megamacro+",
  6574. height: math.unit(2750000, "meters")
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(160, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/prince/front.svg",
  6587. extra: 1938/1682,
  6588. bottom: 45/1983
  6589. }
  6590. },
  6591. back: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(160, "lbs"),
  6594. name: "Back",
  6595. image: {
  6596. source: "./media/characters/prince/back.svg",
  6597. extra: 1955/1726,
  6598. bottom: 6/1961
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(7.75, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Not cute",
  6610. height: math.unit(17, "feet")
  6611. },
  6612. {
  6613. name: "I said NOT",
  6614. height: math.unit(91, "feet")
  6615. },
  6616. {
  6617. name: "Please stop",
  6618. height: math.unit(560, "feet")
  6619. },
  6620. {
  6621. name: "What have you done",
  6622. height: math.unit(2200, "feet")
  6623. },
  6624. {
  6625. name: "Deer God",
  6626. height: math.unit(3.6, "miles")
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6632. {
  6633. standing: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(300, "lbs"),
  6636. name: "Standing",
  6637. image: {
  6638. source: "./media/characters/psymon/standing.svg",
  6639. extra: 1888 / 1810,
  6640. bottom: 0.05
  6641. }
  6642. },
  6643. slithering: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(300, "lbs"),
  6646. name: "Slithering",
  6647. image: {
  6648. source: "./media/characters/psymon/slithering.svg",
  6649. extra: 1330 / 1224
  6650. }
  6651. },
  6652. slitheringAlt: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(300, "lbs"),
  6655. name: "Slithering (Alt)",
  6656. image: {
  6657. source: "./media/characters/psymon/slithering-alt.svg",
  6658. extra: 1330 / 1224
  6659. }
  6660. },
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(11.25, "feet"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Large",
  6670. height: math.unit(27, "feet")
  6671. },
  6672. {
  6673. name: "Giant",
  6674. height: math.unit(87, "feet")
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(365, "feet")
  6679. },
  6680. {
  6681. name: "Megamacro",
  6682. height: math.unit(3, "miles")
  6683. },
  6684. {
  6685. name: "World Serpent",
  6686. height: math.unit(8000, "miles")
  6687. },
  6688. ]
  6689. ))
  6690. characterMakers.push(() => makeCharacter(
  6691. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6692. {
  6693. front: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(180, "lbs"),
  6696. name: "Front",
  6697. image: {
  6698. source: "./media/characters/daimos/front.svg",
  6699. extra: 4160 / 3897,
  6700. bottom: 0.021
  6701. }
  6702. }
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(8, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Big Dog",
  6712. height: math.unit(22, "feet")
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(127, "feet")
  6717. },
  6718. {
  6719. name: "Megamacro",
  6720. height: math.unit(3600, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6726. {
  6727. side: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Side",
  6731. image: {
  6732. source: "./media/characters/blake/side.svg",
  6733. extra: 1212 / 1120,
  6734. bottom: 0.05
  6735. }
  6736. },
  6737. crouched: {
  6738. height: math.unit(6 * 0.57, "feet"),
  6739. weight: math.unit(180, "lbs"),
  6740. name: "Crouched",
  6741. image: {
  6742. source: "./media/characters/blake/crouched.svg",
  6743. extra: 840 / 587,
  6744. bottom: 0.04
  6745. }
  6746. },
  6747. bent: {
  6748. height: math.unit(6 * 0.75, "feet"),
  6749. weight: math.unit(180, "lbs"),
  6750. name: "Bent",
  6751. image: {
  6752. source: "./media/characters/blake/bent.svg",
  6753. extra: 592 / 544,
  6754. bottom: 0.035
  6755. }
  6756. },
  6757. },
  6758. [
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(8 + 1 / 6, "feet"),
  6762. default: true
  6763. },
  6764. {
  6765. name: "Big Backside",
  6766. height: math.unit(37, "feet")
  6767. },
  6768. {
  6769. name: "Subway Shredder",
  6770. height: math.unit(72, "feet")
  6771. },
  6772. {
  6773. name: "City Carver",
  6774. height: math.unit(1675, "feet")
  6775. },
  6776. {
  6777. name: "Tectonic Tweaker",
  6778. height: math.unit(2300, "miles")
  6779. },
  6780. ]
  6781. ))
  6782. characterMakers.push(() => makeCharacter(
  6783. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6784. {
  6785. front: {
  6786. height: math.unit(6, "feet"),
  6787. weight: math.unit(180, "lbs"),
  6788. name: "Front",
  6789. image: {
  6790. source: "./media/characters/guisetto/front.svg",
  6791. extra: 856 / 817,
  6792. bottom: 0.06
  6793. }
  6794. },
  6795. airborne: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Airborne",
  6799. image: {
  6800. source: "./media/characters/guisetto/airborne.svg",
  6801. extra: 584 / 525
  6802. }
  6803. },
  6804. },
  6805. [
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(10 + 11 / 12, "feet"),
  6809. default: true
  6810. },
  6811. {
  6812. name: "Large",
  6813. height: math.unit(35, "feet")
  6814. },
  6815. {
  6816. name: "Macro",
  6817. height: math.unit(475, "feet")
  6818. },
  6819. ]
  6820. ))
  6821. characterMakers.push(() => makeCharacter(
  6822. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6823. {
  6824. front: {
  6825. height: math.unit(6, "feet"),
  6826. weight: math.unit(180, "lbs"),
  6827. name: "Front",
  6828. image: {
  6829. source: "./media/characters/luxor/front.svg",
  6830. extra: 2940 / 2152
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(180, "lbs"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/luxor/back.svg",
  6839. extra: 1083 / 960
  6840. }
  6841. },
  6842. },
  6843. [
  6844. {
  6845. name: "Normal",
  6846. height: math.unit(5 + 5 / 6, "feet"),
  6847. default: true
  6848. },
  6849. {
  6850. name: "Lamp",
  6851. height: math.unit(50, "feet")
  6852. },
  6853. {
  6854. name: "Lämp",
  6855. height: math.unit(300, "feet")
  6856. },
  6857. {
  6858. name: "The sun is a lamp",
  6859. height: math.unit(250000, "miles")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(50, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/huoyan/front.svg"
  6872. }
  6873. },
  6874. side: {
  6875. height: math.unit(6, "feet"),
  6876. weight: math.unit(180, "lbs"),
  6877. name: "Side",
  6878. image: {
  6879. source: "./media/characters/huoyan/side.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Chef",
  6886. height: math.unit(9, "feet")
  6887. },
  6888. {
  6889. name: "Normal",
  6890. height: math.unit(65, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(780, "feet")
  6896. },
  6897. {
  6898. name: "Flaming Mountain",
  6899. height: math.unit(4.8, "miles")
  6900. },
  6901. {
  6902. name: "Celestial",
  6903. height: math.unit(765000, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(5 + 3 / 4, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/tails/front.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Normal",
  6922. height: math.unit(5 + 3 / 4, "feet"),
  6923. default: true
  6924. }
  6925. ]
  6926. ))
  6927. characterMakers.push(() => makeCharacter(
  6928. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6929. {
  6930. front: {
  6931. height: math.unit(4, "feet"),
  6932. weight: math.unit(50, "lbs"),
  6933. name: "Front",
  6934. image: {
  6935. source: "./media/characters/rainy/front.svg"
  6936. }
  6937. }
  6938. },
  6939. [
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(800, "feet"),
  6943. default: true
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(150, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/rainier/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Micro",
  6962. height: math.unit(2, "mm"),
  6963. default: true
  6964. }
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(8 + 4/12, "feet"),
  6972. weight: math.unit(450, "kilograms"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/andy-renard/front.svg",
  6976. extra: 862/809,
  6977. bottom: 85/947
  6978. },
  6979. extraAttributes: {
  6980. "pawSize": {
  6981. name: "Paw Size",
  6982. power: 2,
  6983. type: "area",
  6984. base: math.unit(0.45*0.3, "meters^2")
  6985. },
  6986. "handSize": {
  6987. name: "Hand Size",
  6988. power: 2,
  6989. type: "area",
  6990. base: math.unit(0.4 * 0.3, "meters^2")
  6991. },
  6992. "cockSize": {
  6993. name: "Cock Length",
  6994. power: 1,
  6995. type: "length",
  6996. base: math.unit(0.75, "meters")
  6997. },
  6998. "ballDiameter": {
  6999. name: "Ball Diameter",
  7000. power: 1,
  7001. type: "length",
  7002. base: math.unit(0.3, "meters")
  7003. },
  7004. "ballVolume": {
  7005. name: "Ball Volume",
  7006. power: 3,
  7007. type: "volume",
  7008. base: math.unit(0.01413716694, "meters^3")
  7009. },
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(8 + 4/12, "feet"),
  7014. weight: math.unit(450, "kilograms"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/andy-renard/back.svg",
  7018. extra: 1112/1033,
  7019. bottom: 64/1176
  7020. },
  7021. extraAttributes: {
  7022. "pawSize": {
  7023. name: "Paw Size",
  7024. power: 2,
  7025. type: "area",
  7026. base: math.unit(0.45*0.3, "meters^2")
  7027. },
  7028. "handSize": {
  7029. name: "Hand Size",
  7030. power: 2,
  7031. type: "area",
  7032. base: math.unit(0.4 * 0.3, "meters^2")
  7033. },
  7034. "cockSize": {
  7035. name: "Cock Length",
  7036. power: 1,
  7037. type: "length",
  7038. base: math.unit(0.75, "meters")
  7039. },
  7040. "ballDiameter": {
  7041. name: "Ball Diameter",
  7042. power: 1,
  7043. type: "length",
  7044. base: math.unit(0.3, "meters")
  7045. },
  7046. "ballVolume": {
  7047. name: "Ball Volume",
  7048. power: 3,
  7049. type: "volume",
  7050. base: math.unit(0.01413716694, "meters^3")
  7051. },
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Tall",
  7058. height: math.unit(6 + 8/12, "feet")
  7059. },
  7060. {
  7061. name: "Very Tall",
  7062. height: math.unit(8 + 4/12, "feet")
  7063. },
  7064. {
  7065. name: "Mini Macro",
  7066. height: math.unit(15, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Giant",
  7071. height: math.unit(50, "feet")
  7072. },
  7073. {
  7074. name: "Nice",
  7075. height: math.unit(69, "feet")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(100, "feet")
  7080. },
  7081. {
  7082. name: "Enormous",
  7083. height: math.unit(500, "feet")
  7084. },
  7085. {
  7086. name: "Gargantuan",
  7087. height: math.unit(1000, "feet")
  7088. },
  7089. {
  7090. name: "Mega",
  7091. height: math.unit(1, "mile")
  7092. },
  7093. {
  7094. name: "Giga",
  7095. height: math.unit(50, "miles")
  7096. },
  7097. {
  7098. name: "Tera",
  7099. height: math.unit(1000, "miles")
  7100. },
  7101. {
  7102. name: "Cosmic",
  7103. height: math.unit(1.5, "galaxies")
  7104. },
  7105. {
  7106. name: "God",
  7107. height: math.unit(1.5, "universes")
  7108. },
  7109. {
  7110. name: "Chief Execute God",
  7111. height: math.unit(1.5, "multiverses")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(210, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/cimmaron/front-sfw.svg",
  7124. extra: 701 / 676,
  7125. bottom: 0.046
  7126. }
  7127. },
  7128. back: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(210, "lbs"),
  7131. name: "Back",
  7132. image: {
  7133. source: "./media/characters/cimmaron/back-sfw.svg",
  7134. extra: 701 / 676,
  7135. bottom: 0.046
  7136. }
  7137. },
  7138. frontNsfw: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(210, "lbs"),
  7141. name: "Front (NSFW)",
  7142. image: {
  7143. source: "./media/characters/cimmaron/front-nsfw.svg",
  7144. extra: 701 / 676,
  7145. bottom: 0.046
  7146. }
  7147. },
  7148. backNsfw: {
  7149. height: math.unit(6, "feet"),
  7150. weight: math.unit(210, "lbs"),
  7151. name: "Back (NSFW)",
  7152. image: {
  7153. source: "./media/characters/cimmaron/back-nsfw.svg",
  7154. extra: 701 / 676,
  7155. bottom: 0.046
  7156. }
  7157. },
  7158. dick: {
  7159. height: math.unit(1.714, "feet"),
  7160. name: "Dick",
  7161. image: {
  7162. source: "./media/characters/cimmaron/dick.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(6, "feet"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro Mayor",
  7174. height: math.unit(350, "meters")
  7175. },
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(200, "lbs"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/akari/front.svg",
  7187. extra: 962 / 901,
  7188. bottom: 0.04
  7189. }
  7190. }
  7191. },
  7192. [
  7193. {
  7194. name: "Micro",
  7195. height: math.unit(5, "inches"),
  7196. default: true
  7197. },
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(7, "feet")
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7206. {
  7207. front: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(140, "lbs"),
  7210. name: "Front",
  7211. image: {
  7212. source: "./media/characters/cynosura/front.svg",
  7213. extra: 437/410,
  7214. bottom: 9/446
  7215. }
  7216. },
  7217. back: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(140, "lbs"),
  7220. name: "Back",
  7221. image: {
  7222. source: "./media/characters/cynosura/back.svg",
  7223. extra: 1304/1160,
  7224. bottom: 71/1375
  7225. }
  7226. },
  7227. },
  7228. [
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(4, "inches")
  7232. },
  7233. {
  7234. name: "Normal",
  7235. height: math.unit(5.75, "feet"),
  7236. default: true
  7237. },
  7238. {
  7239. name: "Tall",
  7240. height: math.unit(10, "feet")
  7241. },
  7242. {
  7243. name: "Big",
  7244. height: math.unit(20, "feet")
  7245. },
  7246. {
  7247. name: "Macro",
  7248. height: math.unit(50, "feet")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(13 + 2/12, "feet"),
  7257. weight: math.unit(800, "kg"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/gin/front.svg",
  7261. extra: 1312/1191,
  7262. bottom: 45/1357
  7263. }
  7264. },
  7265. mouth: {
  7266. height: math.unit(2.39 * 1.8, "feet"),
  7267. name: "Mouth",
  7268. image: {
  7269. source: "./media/characters/gin/mouth.svg"
  7270. }
  7271. },
  7272. hand: {
  7273. height: math.unit(1.57 * 2.19, "feet"),
  7274. name: "Hand",
  7275. image: {
  7276. source: "./media/characters/gin/hand.svg"
  7277. }
  7278. },
  7279. foot: {
  7280. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7281. name: "Foot",
  7282. image: {
  7283. source: "./media/characters/gin/foot.svg"
  7284. }
  7285. },
  7286. sole: {
  7287. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7288. name: "Sole",
  7289. image: {
  7290. source: "./media/characters/gin/sole.svg"
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Very Small",
  7297. height: math.unit(13 + 2 / 12, "feet")
  7298. },
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(600, "miles")
  7302. },
  7303. {
  7304. name: "Regular",
  7305. height: math.unit(20, "earths"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(2.2, "solarradii")
  7311. },
  7312. {
  7313. name: "Teramacro",
  7314. height: math.unit(1.2, "galaxies")
  7315. },
  7316. {
  7317. name: "Omegamacro",
  7318. height: math.unit(200, "universes")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6 + 1 / 6, "feet"),
  7327. weight: math.unit(178, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/guy/front.svg"
  7331. }
  7332. }
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(6 + 1 / 6, "feet"),
  7338. default: true
  7339. },
  7340. {
  7341. name: "Large",
  7342. height: math.unit(25 + 7 / 12, "feet")
  7343. },
  7344. {
  7345. name: "Macro",
  7346. height: math.unit(60 + 9 / 12, "feet")
  7347. },
  7348. {
  7349. name: "Macro+",
  7350. height: math.unit(246, "feet")
  7351. },
  7352. {
  7353. name: "Macro++",
  7354. height: math.unit(878, "feet")
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7360. {
  7361. front: {
  7362. height: math.unit(9, "feet"),
  7363. weight: math.unit(800, "lbs"),
  7364. name: "Front",
  7365. image: {
  7366. source: "./media/characters/tiberius/front.svg",
  7367. extra: 2295 / 2071
  7368. }
  7369. },
  7370. back: {
  7371. height: math.unit(9, "feet"),
  7372. weight: math.unit(800, "lbs"),
  7373. name: "Back",
  7374. image: {
  7375. source: "./media/characters/tiberius/back.svg",
  7376. extra: 2373 / 2160
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Normal",
  7383. height: math.unit(9, "feet"),
  7384. default: true
  7385. }
  7386. ]
  7387. ))
  7388. characterMakers.push(() => makeCharacter(
  7389. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7390. {
  7391. front: {
  7392. height: math.unit(6, "feet"),
  7393. weight: math.unit(600, "lbs"),
  7394. name: "Front",
  7395. image: {
  7396. source: "./media/characters/surgo/front.svg",
  7397. extra: 3591 / 2227
  7398. }
  7399. },
  7400. back: {
  7401. height: math.unit(6, "feet"),
  7402. weight: math.unit(600, "lbs"),
  7403. name: "Back",
  7404. image: {
  7405. source: "./media/characters/surgo/back.svg",
  7406. extra: 3557 / 2228
  7407. }
  7408. },
  7409. laying: {
  7410. height: math.unit(6 * 0.85, "feet"),
  7411. weight: math.unit(600, "lbs"),
  7412. name: "Laying",
  7413. image: {
  7414. source: "./media/characters/surgo/laying.svg"
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(6, "feet"),
  7422. default: true
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7428. {
  7429. side: {
  7430. height: math.unit(6, "feet"),
  7431. weight: math.unit(150, "lbs"),
  7432. name: "Side",
  7433. image: {
  7434. source: "./media/characters/cibus/side.svg",
  7435. extra: 800 / 400
  7436. }
  7437. },
  7438. },
  7439. [
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(6, "feet"),
  7443. default: true
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(240, "lbs"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/nibbles/front.svg"
  7456. }
  7457. },
  7458. side: {
  7459. height: math.unit(6, "feet"),
  7460. weight: math.unit(240, "lbs"),
  7461. name: "Side",
  7462. image: {
  7463. source: "./media/characters/nibbles/side.svg"
  7464. }
  7465. },
  7466. },
  7467. [
  7468. {
  7469. name: "Normal",
  7470. height: math.unit(9, "feet"),
  7471. default: true
  7472. }
  7473. ]
  7474. ))
  7475. characterMakers.push(() => makeCharacter(
  7476. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7477. {
  7478. side: {
  7479. height: math.unit(5 + 1 / 6, "feet"),
  7480. weight: math.unit(130, "lbs"),
  7481. name: "Side",
  7482. image: {
  7483. source: "./media/characters/rikky/side.svg",
  7484. extra: 851 / 801
  7485. }
  7486. },
  7487. },
  7488. [
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(5 + 1 / 6, "feet")
  7492. },
  7493. {
  7494. name: "Macro",
  7495. height: math.unit(152, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Megamacro",
  7500. height: math.unit(7, "miles")
  7501. }
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7506. {
  7507. side: {
  7508. height: math.unit(370, "cm"),
  7509. weight: math.unit(350, "lbs"),
  7510. name: "Side",
  7511. image: {
  7512. source: "./media/characters/malfressa/side.svg"
  7513. }
  7514. },
  7515. walking: {
  7516. height: math.unit(370, "cm"),
  7517. weight: math.unit(350, "lbs"),
  7518. name: "Walking",
  7519. image: {
  7520. source: "./media/characters/malfressa/walking.svg"
  7521. }
  7522. },
  7523. feral: {
  7524. height: math.unit(2500, "cm"),
  7525. weight: math.unit(100000, "lbs"),
  7526. name: "Feral",
  7527. image: {
  7528. source: "./media/characters/malfressa/feral.svg",
  7529. extra: 2108 / 837,
  7530. bottom: 0.02
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Normal",
  7537. height: math.unit(370, "cm")
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(300, "meters"),
  7542. default: true
  7543. }
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(60, "kg"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/jaro/front.svg",
  7555. extra: 845/817,
  7556. bottom: 45/890
  7557. }
  7558. },
  7559. back: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(60, "kg"),
  7562. name: "Back",
  7563. image: {
  7564. source: "./media/characters/jaro/back.svg",
  7565. extra: 847/817,
  7566. bottom: 34/881
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Micro",
  7573. height: math.unit(7, "inches")
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(5.5, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Minimacro",
  7582. height: math.unit(20, "feet")
  7583. },
  7584. {
  7585. name: "Macro",
  7586. height: math.unit(200, "meters")
  7587. }
  7588. ]
  7589. ))
  7590. characterMakers.push(() => makeCharacter(
  7591. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7592. {
  7593. front: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(195, "lb"),
  7596. name: "Front",
  7597. image: {
  7598. source: "./media/characters/rogue/front.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(90, "feet"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7612. {
  7613. standing: {
  7614. height: math.unit(5 + 8 / 12, "feet"),
  7615. weight: math.unit(140, "lb"),
  7616. name: "Standing",
  7617. image: {
  7618. source: "./media/characters/piper/standing.svg",
  7619. extra: 1440/1284,
  7620. bottom: 66/1506
  7621. }
  7622. },
  7623. running: {
  7624. height: math.unit(5 + 8 / 12, "feet"),
  7625. weight: math.unit(140, "lb"),
  7626. name: "Running",
  7627. image: {
  7628. source: "./media/characters/piper/running.svg",
  7629. extra: 3948/3655,
  7630. bottom: 0/3948
  7631. }
  7632. },
  7633. sole: {
  7634. height: math.unit(0.81, "feet"),
  7635. weight: math.unit(2, "kg"),
  7636. name: "Sole",
  7637. image: {
  7638. source: "./media/characters/piper/sole.svg"
  7639. }
  7640. },
  7641. nipple: {
  7642. height: math.unit(0.25, "feet"),
  7643. weight: math.unit(1.5, "lb"),
  7644. name: "Nipple",
  7645. image: {
  7646. source: "./media/characters/piper/nipple.svg"
  7647. }
  7648. },
  7649. head: {
  7650. height: math.unit(1.1, "feet"),
  7651. name: "Head",
  7652. image: {
  7653. source: "./media/characters/piper/head.svg"
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(2, "inches")
  7661. },
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(5 + 8 / 12, "feet")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(250, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(7, "miles")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(220, "lb"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/gemini/front.svg"
  7686. }
  7687. },
  7688. back: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(220, "lb"),
  7691. name: "Back",
  7692. image: {
  7693. source: "./media/characters/gemini/back.svg"
  7694. }
  7695. },
  7696. kneeling: {
  7697. height: math.unit(6 / 1.5, "feet"),
  7698. weight: math.unit(220, "lb"),
  7699. name: "Kneeling",
  7700. image: {
  7701. source: "./media/characters/gemini/kneeling.svg",
  7702. bottom: 0.02
  7703. }
  7704. },
  7705. },
  7706. [
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(300, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(6900, "meters")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7720. {
  7721. anthro: {
  7722. height: math.unit(2.35, "meters"),
  7723. weight: math.unit(73, "kg"),
  7724. name: "Anthro",
  7725. image: {
  7726. source: "./media/characters/alicia/anthro.svg",
  7727. extra: 2571 / 2385,
  7728. bottom: 75 / 2648
  7729. }
  7730. },
  7731. paw: {
  7732. height: math.unit(1.32, "feet"),
  7733. name: "Paw",
  7734. image: {
  7735. source: "./media/characters/alicia/paw.svg"
  7736. }
  7737. },
  7738. feral: {
  7739. height: math.unit(1.69, "meters"),
  7740. weight: math.unit(73, "kg"),
  7741. name: "Feral",
  7742. image: {
  7743. source: "./media/characters/alicia/feral.svg",
  7744. extra: 2123 / 1715,
  7745. bottom: 222 / 2349
  7746. }
  7747. },
  7748. },
  7749. [
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(2.35, "meters")
  7753. },
  7754. {
  7755. name: "Macro",
  7756. height: math.unit(60, "meters"),
  7757. default: true
  7758. },
  7759. {
  7760. name: "Megamacro",
  7761. height: math.unit(10000, "kilometers")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(7, "feet"),
  7770. weight: math.unit(250, "lbs"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/archy/front.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Micro",
  7780. height: math.unit(1, "inch")
  7781. },
  7782. {
  7783. name: "Shorty",
  7784. height: math.unit(5, "feet")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(7, "feet")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(600, "meters"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(1, "mile")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(1.65, "meters"),
  7806. weight: math.unit(74, "kg"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/berri/front.svg",
  7810. extra: 857 / 837,
  7811. bottom: 18 / 877
  7812. }
  7813. },
  7814. bum: {
  7815. height: math.unit(1.46, "feet"),
  7816. name: "Bum",
  7817. image: {
  7818. source: "./media/characters/berri/bum.svg"
  7819. }
  7820. },
  7821. mouth: {
  7822. height: math.unit(0.44, "feet"),
  7823. name: "Mouth",
  7824. image: {
  7825. source: "./media/characters/berri/mouth.svg"
  7826. }
  7827. },
  7828. paw: {
  7829. height: math.unit(0.826, "feet"),
  7830. name: "Paw",
  7831. image: {
  7832. source: "./media/characters/berri/paw.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(1.65, "meters")
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(60, "m"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(9.213, "km")
  7849. },
  7850. {
  7851. name: "Planet Eater",
  7852. height: math.unit(489, "megameters")
  7853. },
  7854. {
  7855. name: "Teramacro",
  7856. height: math.unit(2471635000000, "meters")
  7857. },
  7858. {
  7859. name: "Examacro",
  7860. height: math.unit(8.0624e+26, "meters")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(1.72, "meters"),
  7869. weight: math.unit(68, "kg"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/lexi/front.svg"
  7873. }
  7874. }
  7875. },
  7876. [
  7877. {
  7878. name: "Very Smol",
  7879. height: math.unit(10, "mm")
  7880. },
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(6.8, "cm"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Normal",
  7888. height: math.unit(1.72, "m")
  7889. }
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(1.69, "meters"),
  7897. weight: math.unit(68, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/martin/front.svg",
  7901. extra: 596 / 581
  7902. }
  7903. }
  7904. },
  7905. [
  7906. {
  7907. name: "Micro",
  7908. height: math.unit(6.85, "cm"),
  7909. default: true
  7910. },
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(1.69, "m")
  7914. }
  7915. ]
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(1.69, "meters"),
  7922. weight: math.unit(68, "kg"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/juno/front.svg"
  7926. }
  7927. }
  7928. },
  7929. [
  7930. {
  7931. name: "Micro",
  7932. height: math.unit(7, "cm")
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(1.89, "m")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(353, "meters"),
  7941. default: true
  7942. }
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(1.93, "meters"),
  7950. weight: math.unit(83, "kg"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/samantha/front.svg"
  7954. }
  7955. },
  7956. frontClothed: {
  7957. height: math.unit(1.93, "meters"),
  7958. weight: math.unit(83, "kg"),
  7959. name: "Front (Clothed)",
  7960. image: {
  7961. source: "./media/characters/samantha/front-clothed.svg"
  7962. }
  7963. },
  7964. back: {
  7965. height: math.unit(1.93, "meters"),
  7966. weight: math.unit(83, "kg"),
  7967. name: "Back",
  7968. image: {
  7969. source: "./media/characters/samantha/back.svg"
  7970. }
  7971. },
  7972. },
  7973. [
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(1.93, "m")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(74, "meters"),
  7981. default: true
  7982. },
  7983. {
  7984. name: "Macro+",
  7985. height: math.unit(223, "meters"),
  7986. },
  7987. {
  7988. name: "Megamacro",
  7989. height: math.unit(8381, "meters"),
  7990. },
  7991. {
  7992. name: "Megamacro+",
  7993. height: math.unit(12000, "kilometers")
  7994. },
  7995. ]
  7996. ))
  7997. characterMakers.push(() => makeCharacter(
  7998. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7999. {
  8000. front: {
  8001. height: math.unit(1.92, "meters"),
  8002. weight: math.unit(80, "kg"),
  8003. name: "Front",
  8004. image: {
  8005. source: "./media/characters/dr-clay/front.svg"
  8006. }
  8007. },
  8008. frontClothed: {
  8009. height: math.unit(1.92, "meters"),
  8010. weight: math.unit(80, "kg"),
  8011. name: "Front (Clothed)",
  8012. image: {
  8013. source: "./media/characters/dr-clay/front-clothed.svg"
  8014. }
  8015. }
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(1.92, "m")
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(214, "meters"),
  8025. default: true
  8026. },
  8027. {
  8028. name: "Macro+",
  8029. height: math.unit(12.237, "meters"),
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(557, "megameters"),
  8034. },
  8035. {
  8036. name: "Unimaginable",
  8037. height: math.unit(120e9, "lightyears")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(80, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8050. }
  8051. }
  8052. },
  8053. [
  8054. {
  8055. name: "Teramacro",
  8056. height: math.unit(500000, "lightyears"),
  8057. default: true
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8063. {
  8064. crux: {
  8065. height: math.unit(2, "meters"),
  8066. weight: math.unit(150, "kg"),
  8067. name: "Crux",
  8068. image: {
  8069. source: "./media/characters/vemus/crux.svg",
  8070. extra: 1074/936,
  8071. bottom: 23/1097
  8072. }
  8073. },
  8074. skunkTanuki: {
  8075. height: math.unit(2, "meters"),
  8076. weight: math.unit(150, "kg"),
  8077. name: "Skunk-Tanuki",
  8078. image: {
  8079. source: "./media/characters/vemus/skunk-tanuki.svg",
  8080. extra: 926/893,
  8081. bottom: 20/946
  8082. }
  8083. },
  8084. },
  8085. [
  8086. {
  8087. name: "Normal",
  8088. height: math.unit(4, "meters"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Big",
  8093. height: math.unit(8, "meters")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(100, "meters")
  8098. },
  8099. {
  8100. name: "Macro+",
  8101. height: math.unit(1500, "meters")
  8102. },
  8103. {
  8104. name: "Stellar",
  8105. height: math.unit(14e8, "meters")
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(70, "kg"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/beherit/front.svg",
  8118. extra: 1234/1109,
  8119. bottom: 55/1289
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Normal",
  8126. height: math.unit(6, "feet")
  8127. },
  8128. {
  8129. name: "Lorg",
  8130. height: math.unit(25, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Lorger",
  8135. height: math.unit(75, "feet")
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(200, "meters")
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(2, "meters"),
  8148. weight: math.unit(150, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/everett/front.svg",
  8152. extra: 1017/866,
  8153. bottom: 86/1103
  8154. }
  8155. },
  8156. paw: {
  8157. height: math.unit(2 / 3.6, "meters"),
  8158. name: "Paw",
  8159. image: {
  8160. source: "./media/characters/everett/paw.svg"
  8161. }
  8162. },
  8163. },
  8164. [
  8165. {
  8166. name: "Normal",
  8167. height: math.unit(15, "feet"),
  8168. default: true
  8169. },
  8170. {
  8171. name: "Lorg",
  8172. height: math.unit(70, "feet"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Lorger",
  8177. height: math.unit(250, "feet")
  8178. },
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(500, "meters")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/rose/front.svg",
  8194. extra: 1785/1636,
  8195. bottom: 30/1815
  8196. },
  8197. form: "liom",
  8198. default: true
  8199. },
  8200. frontSporty: {
  8201. height: math.unit(2, "meters"),
  8202. weight: math.unit(86, "kg"),
  8203. name: "Front (Sporty)",
  8204. image: {
  8205. source: "./media/characters/rose/front-sporty.svg",
  8206. extra: 350/335,
  8207. bottom: 10/360
  8208. },
  8209. form: "liom"
  8210. },
  8211. frontAlt: {
  8212. height: math.unit(1.6, "meters"),
  8213. weight: math.unit(86, "kg"),
  8214. name: "Front (Alt)",
  8215. image: {
  8216. source: "./media/characters/rose/front-alt.svg",
  8217. extra: 299/283,
  8218. bottom: 3/302
  8219. },
  8220. form: "liom"
  8221. },
  8222. plush: {
  8223. height: math.unit(2, "meters"),
  8224. weight: math.unit(86/3, "kg"),
  8225. name: "Plush",
  8226. image: {
  8227. source: "./media/characters/rose/plush.svg",
  8228. extra: 361/337,
  8229. bottom: 11/372
  8230. },
  8231. form: "plush",
  8232. default: true
  8233. },
  8234. faeStanding: {
  8235. height: math.unit(10, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Standing",
  8238. image: {
  8239. source: "./media/characters/rose/fae-standing.svg",
  8240. extra: 1189/1060,
  8241. bottom: 27/1216
  8242. },
  8243. form: "fae",
  8244. default: true
  8245. },
  8246. faeSitting: {
  8247. height: math.unit(5, "cm"),
  8248. weight: math.unit(10, "grams"),
  8249. name: "Sitting",
  8250. image: {
  8251. source: "./media/characters/rose/fae-sitting.svg",
  8252. extra: 737/577,
  8253. bottom: 356/1093
  8254. },
  8255. form: "fae"
  8256. },
  8257. faePaw: {
  8258. height: math.unit(1.35, "cm"),
  8259. name: "Paw",
  8260. image: {
  8261. source: "./media/characters/rose/fae-paw.svg"
  8262. },
  8263. form: "fae"
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "True Micro",
  8269. height: math.unit(9, "cm"),
  8270. form: "liom"
  8271. },
  8272. {
  8273. name: "Micro",
  8274. height: math.unit(16, "cm"),
  8275. form: "liom"
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(1.85, "meters"),
  8280. default: true,
  8281. form: "liom"
  8282. },
  8283. {
  8284. name: "Mini-Macro",
  8285. height: math.unit(5, "meters"),
  8286. form: "liom"
  8287. },
  8288. {
  8289. name: "Macro",
  8290. height: math.unit(15, "meters"),
  8291. form: "liom"
  8292. },
  8293. {
  8294. name: "True Macro",
  8295. height: math.unit(40, "meters"),
  8296. form: "liom"
  8297. },
  8298. {
  8299. name: "City Scale",
  8300. height: math.unit(1, "km"),
  8301. form: "liom"
  8302. },
  8303. {
  8304. name: "Plushie",
  8305. height: math.unit(9, "cm"),
  8306. form: "plush",
  8307. default: true
  8308. },
  8309. {
  8310. name: "Fae",
  8311. height: math.unit(10, "cm"),
  8312. form: "fae",
  8313. default: true
  8314. },
  8315. ],
  8316. {
  8317. "liom": {
  8318. name: "Liom"
  8319. },
  8320. "plush": {
  8321. name: "Plush"
  8322. },
  8323. "fae": {
  8324. name: "Fae Fox",
  8325. default: true
  8326. }
  8327. }
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(2, "meters"),
  8334. weight: math.unit(350, "lbs"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/regal/front.svg"
  8338. }
  8339. },
  8340. back: {
  8341. height: math.unit(2, "meters"),
  8342. weight: math.unit(350, "lbs"),
  8343. name: "Back",
  8344. image: {
  8345. source: "./media/characters/regal/back.svg"
  8346. }
  8347. },
  8348. },
  8349. [
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(350, "feet"),
  8353. default: true
  8354. }
  8355. ]
  8356. ))
  8357. characterMakers.push(() => makeCharacter(
  8358. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8359. {
  8360. standing: {
  8361. height: math.unit(4 + 11/12, "feet"),
  8362. weight: math.unit(100, "lb"),
  8363. name: "Standing",
  8364. image: {
  8365. source: "./media/characters/opal/standing.svg",
  8366. extra: 1588/1513,
  8367. bottom: 23/1611
  8368. }
  8369. },
  8370. sitting: {
  8371. height: math.unit(2.3, "feet"),
  8372. weight: math.unit(100, "lb"),
  8373. name: "Sitting",
  8374. image: {
  8375. source: "./media/characters/opal/sitting.svg",
  8376. extra: 1031/892,
  8377. bottom: 142/1173
  8378. }
  8379. },
  8380. hand: {
  8381. height: math.unit(0.59, "feet"),
  8382. name: "Hand",
  8383. image: {
  8384. source: "./media/characters/opal/hand.svg"
  8385. }
  8386. },
  8387. foot: {
  8388. height: math.unit(0.61, "feet"),
  8389. name: "Foot",
  8390. image: {
  8391. source: "./media/characters/opal/foot.svg"
  8392. }
  8393. },
  8394. },
  8395. [
  8396. {
  8397. name: "Small",
  8398. height: math.unit(4 + 11 / 12, "feet")
  8399. },
  8400. {
  8401. name: "Normal",
  8402. height: math.unit(20, "feet"),
  8403. default: true
  8404. },
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(120, "feet")
  8408. },
  8409. {
  8410. name: "Megamacro",
  8411. height: math.unit(80, "miles")
  8412. },
  8413. {
  8414. name: "True Size",
  8415. height: math.unit(100000, "lightyears")
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/vector-wuff/front.svg"
  8428. }
  8429. }
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2.8, "meters")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(450, "meters"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Megamacro",
  8443. height: math.unit(15, "kilometers")
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(256, "lbs"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/dannik/front.svg"
  8456. }
  8457. }
  8458. },
  8459. [
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(69.57, "meters"),
  8463. default: true
  8464. },
  8465. ]
  8466. ))
  8467. characterMakers.push(() => makeCharacter(
  8468. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8469. {
  8470. front: {
  8471. height: math.unit(6, "feet"),
  8472. weight: math.unit(120, "lbs"),
  8473. name: "Front",
  8474. image: {
  8475. source: "./media/characters/azura-saharah/front.svg"
  8476. }
  8477. },
  8478. back: {
  8479. height: math.unit(6, "feet"),
  8480. weight: math.unit(120, "lbs"),
  8481. name: "Back",
  8482. image: {
  8483. source: "./media/characters/azura-saharah/back.svg"
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(100, "feet"),
  8491. default: true
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8497. {
  8498. side: {
  8499. height: math.unit(5 + 4 / 12, "feet"),
  8500. weight: math.unit(163, "lbs"),
  8501. name: "Side",
  8502. image: {
  8503. source: "./media/characters/kennedy/side.svg"
  8504. }
  8505. }
  8506. },
  8507. [
  8508. {
  8509. name: "Standard Doggo",
  8510. height: math.unit(5 + 4 / 12, "feet")
  8511. },
  8512. {
  8513. name: "Big Doggo",
  8514. height: math.unit(25 + 3 / 12, "feet"),
  8515. default: true
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(5 + 5/12, "feet"),
  8524. weight: math.unit(100, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/odios-de-lunar/front.svg",
  8528. extra: 1468/1323,
  8529. bottom: 22/1490
  8530. }
  8531. }
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(3, "inches")
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5.5, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(100, "feet")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8551. {
  8552. back: {
  8553. height: math.unit(6, "feet"),
  8554. weight: math.unit(220, "lbs"),
  8555. name: "Back",
  8556. image: {
  8557. source: "./media/characters/mandake/back.svg"
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(7, "feet"),
  8565. default: true
  8566. },
  8567. {
  8568. name: "Macro",
  8569. height: math.unit(78, "feet")
  8570. },
  8571. {
  8572. name: "Macro+",
  8573. height: math.unit(300, "meters")
  8574. },
  8575. {
  8576. name: "Macro++",
  8577. height: math.unit(2400, "feet")
  8578. },
  8579. {
  8580. name: "Megamacro",
  8581. height: math.unit(5167, "meters")
  8582. },
  8583. {
  8584. name: "Gigamacro",
  8585. height: math.unit(41769, "miles")
  8586. },
  8587. ]
  8588. ))
  8589. characterMakers.push(() => makeCharacter(
  8590. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8591. {
  8592. front: {
  8593. height: math.unit(6, "feet"),
  8594. weight: math.unit(120, "lbs"),
  8595. name: "Front",
  8596. image: {
  8597. source: "./media/characters/yozey/front.svg"
  8598. }
  8599. },
  8600. frontAlt: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lbs"),
  8603. name: "Front (Alt)",
  8604. image: {
  8605. source: "./media/characters/yozey/front-alt.svg"
  8606. }
  8607. },
  8608. side: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(120, "lbs"),
  8611. name: "Side",
  8612. image: {
  8613. source: "./media/characters/yozey/side.svg"
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Micro",
  8620. height: math.unit(3, "inches"),
  8621. default: true
  8622. },
  8623. {
  8624. name: "Normal",
  8625. height: math.unit(6, "feet")
  8626. }
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(103, "lbs"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/valeska-voss/front.svg"
  8638. }
  8639. }
  8640. },
  8641. [
  8642. {
  8643. name: "Mini-Sized Sub",
  8644. height: math.unit(3.1, "inches")
  8645. },
  8646. {
  8647. name: "Mid-Sized Sub",
  8648. height: math.unit(6.2, "inches")
  8649. },
  8650. {
  8651. name: "Full-Sized Sub",
  8652. height: math.unit(9.3, "inches")
  8653. },
  8654. {
  8655. name: "Normal",
  8656. height: math.unit(5 + 2 / 12, "foot"),
  8657. default: true
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8663. {
  8664. front: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(160, "lbs"),
  8667. name: "Front",
  8668. image: {
  8669. source: "./media/characters/gene-zeta/front.svg",
  8670. extra: 3006 / 2826,
  8671. bottom: 182 / 3188
  8672. }
  8673. }
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(6, "inches")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 11 / 12, "foot"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(140, "feet")
  8688. },
  8689. {
  8690. name: "Supercharged",
  8691. height: math.unit(2500, "feet")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(350, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/razinox/front.svg",
  8704. extra: 1686 / 1548,
  8705. bottom: 28.2 / 1868
  8706. }
  8707. },
  8708. back: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(350, "lbs"),
  8711. name: "Back",
  8712. image: {
  8713. source: "./media/characters/razinox/back.svg",
  8714. extra: 1660 / 1590,
  8715. bottom: 15 / 1665
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(10 + 8 / 12, "foot")
  8723. },
  8724. {
  8725. name: "Minimacro",
  8726. height: math.unit(15, "foot")
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(60, "foot"),
  8731. default: true
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(5, "miles")
  8736. },
  8737. {
  8738. name: "Gigamacro",
  8739. height: math.unit(6000, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lbs"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/cobalt/front.svg"
  8752. }
  8753. }
  8754. },
  8755. [
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(8 + 1 / 12, "foot")
  8759. },
  8760. {
  8761. name: "Macro",
  8762. height: math.unit(111, "foot"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Supracosmic",
  8767. height: math.unit(1e42, "feet")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(5, "inches"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/amanda/front.svg",
  8779. extra: 926/791,
  8780. bottom: 38/964
  8781. }
  8782. },
  8783. back: {
  8784. height: math.unit(5, "inches"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/amanda/back.svg",
  8788. extra: 909/805,
  8789. bottom: 43/952
  8790. }
  8791. },
  8792. },
  8793. [
  8794. {
  8795. name: "Micro",
  8796. height: math.unit(5, "inches"),
  8797. default: true
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8803. {
  8804. front: {
  8805. height: math.unit(2.75, "meters"),
  8806. weight: math.unit(1200, "lb"),
  8807. name: "Front",
  8808. image: {
  8809. source: "./media/characters/teal/front.svg",
  8810. extra: 2463 / 2320,
  8811. bottom: 166 / 2629
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(2.75, "meters"),
  8816. weight: math.unit(1200, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/teal/back.svg",
  8820. extra: 2580 / 2489,
  8821. bottom: 151 / 2731
  8822. }
  8823. },
  8824. sitting: {
  8825. height: math.unit(1.9, "meters"),
  8826. weight: math.unit(1200, "lb"),
  8827. name: "Sitting",
  8828. image: {
  8829. source: "./media/characters/teal/sitting.svg",
  8830. extra: 623 / 590,
  8831. bottom: 121 / 744
  8832. }
  8833. },
  8834. standing: {
  8835. height: math.unit(2.75, "meters"),
  8836. weight: math.unit(1200, "lb"),
  8837. name: "Standing",
  8838. image: {
  8839. source: "./media/characters/teal/standing.svg",
  8840. extra: 923 / 893,
  8841. bottom: 60 / 983
  8842. }
  8843. },
  8844. stretching: {
  8845. height: math.unit(3.65, "meters"),
  8846. weight: math.unit(1200, "lb"),
  8847. name: "Stretching",
  8848. image: {
  8849. source: "./media/characters/teal/stretching.svg",
  8850. extra: 1276 / 1244,
  8851. bottom: 0 / 1276
  8852. }
  8853. },
  8854. legged: {
  8855. height: math.unit(1.3, "meters"),
  8856. weight: math.unit(100, "lb"),
  8857. name: "Legged",
  8858. image: {
  8859. source: "./media/characters/teal/legged.svg",
  8860. extra: 462 / 437,
  8861. bottom: 24 / 486
  8862. }
  8863. },
  8864. naga: {
  8865. height: math.unit(5.4, "meters"),
  8866. weight: math.unit(4000, "lb"),
  8867. name: "Naga",
  8868. image: {
  8869. source: "./media/characters/teal/naga.svg",
  8870. extra: 1902 / 1858,
  8871. bottom: 0 / 1902
  8872. }
  8873. },
  8874. hand: {
  8875. height: math.unit(0.52, "meters"),
  8876. name: "Hand",
  8877. image: {
  8878. source: "./media/characters/teal/hand.svg"
  8879. }
  8880. },
  8881. maw: {
  8882. height: math.unit(0.43, "meters"),
  8883. name: "Maw",
  8884. image: {
  8885. source: "./media/characters/teal/maw.svg"
  8886. }
  8887. },
  8888. slit: {
  8889. height: math.unit(0.25, "meters"),
  8890. name: "Slit",
  8891. image: {
  8892. source: "./media/characters/teal/slit.svg"
  8893. }
  8894. },
  8895. },
  8896. [
  8897. {
  8898. name: "Normal",
  8899. height: math.unit(2.75, "meters"),
  8900. default: true
  8901. },
  8902. {
  8903. name: "Macro",
  8904. height: math.unit(300, "feet")
  8905. },
  8906. {
  8907. name: "Macro+",
  8908. height: math.unit(2000, "feet")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8914. {
  8915. frontCat: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Front (Cat)",
  8919. image: {
  8920. source: "./media/characters/ravin-amulet/front-cat.svg"
  8921. }
  8922. },
  8923. frontCatAlt: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(180, "lbs"),
  8926. name: "Front (Alt, Cat)",
  8927. image: {
  8928. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8929. }
  8930. },
  8931. frontWerewolf: {
  8932. height: math.unit(6 * 1.2, "feet"),
  8933. weight: math.unit(225, "lbs"),
  8934. name: "Front (Werewolf)",
  8935. image: {
  8936. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8937. }
  8938. },
  8939. backWerewolf: {
  8940. height: math.unit(6 * 1.2, "feet"),
  8941. weight: math.unit(225, "lbs"),
  8942. name: "Back (Werewolf)",
  8943. image: {
  8944. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Nano",
  8951. height: math.unit(1, "micrometer")
  8952. },
  8953. {
  8954. name: "Micro",
  8955. height: math.unit(1, "inch")
  8956. },
  8957. {
  8958. name: "Normal",
  8959. height: math.unit(6, "feet"),
  8960. default: true
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(60, "feet")
  8965. }
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(6, "feet"),
  8973. weight: math.unit(165, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/fluoresce/front.svg"
  8977. }
  8978. }
  8979. },
  8980. [
  8981. {
  8982. name: "Micro",
  8983. height: math.unit(6, "cm")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(5 + 7 / 12, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(56, "feet")
  8993. },
  8994. {
  8995. name: "Megamacro",
  8996. height: math.unit(1.9, "miles")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(9 + 6 / 12, "feet"),
  9005. weight: math.unit(523, "lbs"),
  9006. name: "Side",
  9007. image: {
  9008. source: "./media/characters/aurora/side.svg",
  9009. extra: 474/393,
  9010. bottom: 5/479
  9011. }
  9012. }
  9013. },
  9014. [
  9015. {
  9016. name: "Normal",
  9017. height: math.unit(9 + 6 / 12, "feet")
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(96, "feet"),
  9022. default: true
  9023. },
  9024. {
  9025. name: "Macro+",
  9026. height: math.unit(243, "feet")
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(194, "cm"),
  9035. weight: math.unit(90, "kg"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/ranek/front.svg",
  9039. extra: 1862/1791,
  9040. bottom: 80/1942
  9041. }
  9042. },
  9043. back: {
  9044. height: math.unit(194, "cm"),
  9045. weight: math.unit(90, "kg"),
  9046. name: "Back",
  9047. image: {
  9048. source: "./media/characters/ranek/back.svg",
  9049. extra: 1853/1787,
  9050. bottom: 74/1927
  9051. }
  9052. },
  9053. feral: {
  9054. height: math.unit(30, "cm"),
  9055. weight: math.unit(1.6, "lbs"),
  9056. name: "Feral",
  9057. image: {
  9058. source: "./media/characters/ranek/feral.svg",
  9059. extra: 990/631,
  9060. bottom: 29/1019
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(194, "cm"),
  9068. default: true
  9069. },
  9070. {
  9071. name: "Macro",
  9072. height: math.unit(100, "meters")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(5 + 6 / 12, "feet"),
  9081. weight: math.unit(153, "lbs"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/andrew-cooper/front.svg"
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Nano",
  9091. height: math.unit(1, "mm")
  9092. },
  9093. {
  9094. name: "Micro",
  9095. height: math.unit(2, "inches")
  9096. },
  9097. {
  9098. name: "Normal",
  9099. height: math.unit(5 + 6 / 12, "feet"),
  9100. default: true
  9101. }
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(180, "lbs"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/akane-sato/front.svg",
  9113. extra: 1219 / 1140
  9114. }
  9115. },
  9116. back: {
  9117. height: math.unit(6, "feet"),
  9118. weight: math.unit(180, "lbs"),
  9119. name: "Back",
  9120. image: {
  9121. source: "./media/characters/akane-sato/back.svg",
  9122. extra: 1219 / 1170
  9123. }
  9124. },
  9125. },
  9126. [
  9127. {
  9128. name: "Normal",
  9129. height: math.unit(2.5, "meters")
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(250, "meters"),
  9134. default: true
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(25, "km")
  9139. },
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9144. {
  9145. front: {
  9146. height: math.unit(6, "feet"),
  9147. weight: math.unit(65, "kg"),
  9148. name: "Front",
  9149. image: {
  9150. source: "./media/characters/rook/front.svg",
  9151. extra: 960 / 950
  9152. }
  9153. }
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(8.8, "feet")
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(88, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(8, "miles")
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(12 + 2 / 12, "feet"),
  9176. weight: math.unit(808, "lbs"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/prodigy/front.svg"
  9180. }
  9181. }
  9182. },
  9183. [
  9184. {
  9185. name: "Normal",
  9186. height: math.unit(12 + 2 / 12, "feet"),
  9187. default: true
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(143, "feet")
  9192. },
  9193. {
  9194. name: "Macro+",
  9195. height: math.unit(400, "feet")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(6, "feet"),
  9204. weight: math.unit(225, "lbs"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/daniel/front.svg"
  9208. }
  9209. },
  9210. leaning: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(225, "lbs"),
  9213. name: "Leaning",
  9214. image: {
  9215. source: "./media/characters/daniel/leaning.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1000, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(88, "lbs"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/chiros/front.svg",
  9236. extra: 306 / 226
  9237. }
  9238. },
  9239. side: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(88, "lbs"),
  9242. name: "Side",
  9243. image: {
  9244. source: "./media/characters/chiros/side.svg",
  9245. extra: 306 / 226
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(6, "cm"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(100, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/selka/front.svg",
  9266. extra: 947 / 887
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Normal",
  9273. height: math.unit(5, "cm"),
  9274. default: true
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(8 + 3 / 12, "feet"),
  9283. weight: math.unit(424, "lbs"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/verin/front.svg",
  9287. extra: 1845 / 1550
  9288. }
  9289. },
  9290. frontArmored: {
  9291. height: math.unit(8 + 3 / 12, "feet"),
  9292. weight: math.unit(424, "lbs"),
  9293. name: "Front (Armored)",
  9294. image: {
  9295. source: "./media/characters/verin/front-armor.svg",
  9296. extra: 1845 / 1550,
  9297. bottom: 0.01
  9298. }
  9299. },
  9300. back: {
  9301. height: math.unit(8 + 3 / 12, "feet"),
  9302. weight: math.unit(424, "lbs"),
  9303. name: "Back",
  9304. image: {
  9305. source: "./media/characters/verin/back.svg",
  9306. bottom: 0.1,
  9307. extra: 1
  9308. }
  9309. },
  9310. foot: {
  9311. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9312. name: "Foot",
  9313. image: {
  9314. source: "./media/characters/verin/foot.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(8 + 3 / 12, "feet")
  9322. },
  9323. {
  9324. name: "Minimacro",
  9325. height: math.unit(21, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(626, "feet")
  9331. },
  9332. ]
  9333. ))
  9334. characterMakers.push(() => makeCharacter(
  9335. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9336. {
  9337. front: {
  9338. height: math.unit(2.718, "meters"),
  9339. weight: math.unit(150, "lbs"),
  9340. name: "Front",
  9341. image: {
  9342. source: "./media/characters/sovrim-terraquian/front.svg",
  9343. extra: 1752/1689,
  9344. bottom: 36/1788
  9345. }
  9346. },
  9347. back: {
  9348. height: math.unit(2.718, "meters"),
  9349. weight: math.unit(150, "lbs"),
  9350. name: "Back",
  9351. image: {
  9352. source: "./media/characters/sovrim-terraquian/back.svg",
  9353. extra: 1698/1657,
  9354. bottom: 58/1756
  9355. }
  9356. },
  9357. tongue: {
  9358. height: math.unit(2.865, "feet"),
  9359. name: "Tongue",
  9360. image: {
  9361. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9362. }
  9363. },
  9364. hand: {
  9365. height: math.unit(1.61, "feet"),
  9366. name: "Hand",
  9367. image: {
  9368. source: "./media/characters/sovrim-terraquian/hand.svg"
  9369. }
  9370. },
  9371. foot: {
  9372. height: math.unit(1.05, "feet"),
  9373. name: "Foot",
  9374. image: {
  9375. source: "./media/characters/sovrim-terraquian/foot.svg"
  9376. }
  9377. },
  9378. footAlt: {
  9379. height: math.unit(0.88, "feet"),
  9380. name: "Foot (Alt)",
  9381. image: {
  9382. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(2, "inches")
  9390. },
  9391. {
  9392. name: "Small",
  9393. height: math.unit(1, "meter")
  9394. },
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(Math.E, "meters"),
  9398. default: true
  9399. },
  9400. {
  9401. name: "Macro",
  9402. height: math.unit(20, "meters")
  9403. },
  9404. {
  9405. name: "Macro+",
  9406. height: math.unit(400, "meters")
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9412. {
  9413. front: {
  9414. height: math.unit(7, "feet"),
  9415. weight: math.unit(489, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/reece-silvermane/front.svg",
  9419. bottom: 0.02,
  9420. extra: 1
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Macro",
  9427. height: math.unit(1.5, "miles"),
  9428. default: true
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(78, "kg"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/kane/front.svg",
  9441. extra: 978 / 899
  9442. }
  9443. },
  9444. back: {
  9445. height: math.unit(6, "feet"),
  9446. weight: math.unit(78, "kg"),
  9447. name: "Back",
  9448. image: {
  9449. source: "./media/characters/kane/back.svg",
  9450. extra: 1966/1800,
  9451. bottom: 0/1966
  9452. }
  9453. },
  9454. head: {
  9455. height: math.unit(1.4, "feet"),
  9456. name: "Head",
  9457. image: {
  9458. source: "./media/characters/kane/head.svg"
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(2.1, "m"),
  9466. },
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9476. {
  9477. frontSfw: {
  9478. name: "Front (SFW)",
  9479. height: math.unit(6 + 3/12, "feet"),
  9480. weight: math.unit(200, "kg"),
  9481. image: {
  9482. source: "./media/characters/tegon/front-sfw.svg",
  9483. extra: 1105/1087,
  9484. bottom: 86/1191
  9485. }
  9486. },
  9487. backSfw: {
  9488. name: "Back (SFW)",
  9489. height: math.unit(6 + 3/12, "feet"),
  9490. weight: math.unit(200, "kg"),
  9491. image: {
  9492. source: "./media/characters/tegon/back-sfw.svg",
  9493. extra: 1107/1087,
  9494. bottom: 21/1128
  9495. }
  9496. },
  9497. frontNsfw: {
  9498. name: "Front (NSFW)",
  9499. height: math.unit(6 + 3/12, "feet"),
  9500. weight: math.unit(200, "kg"),
  9501. image: {
  9502. source: "./media/characters/tegon/front-nsfw.svg",
  9503. extra: 1105/1087,
  9504. bottom: 86/1191
  9505. }
  9506. },
  9507. maw: {
  9508. height: math.unit(1.23, "feet"),
  9509. name: "Maw",
  9510. image: {
  9511. source: "./media/characters/tegon/maw.svg"
  9512. }
  9513. },
  9514. dick: {
  9515. height: math.unit(1.18, "feet"),
  9516. name: "Dick",
  9517. image: {
  9518. source: "./media/characters/tegon/dick.svg"
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(1, "inch")
  9526. },
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(6 + 3 / 12, "feet"),
  9530. default: true
  9531. },
  9532. {
  9533. name: "Macro",
  9534. height: math.unit(300, "feet")
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(69, "miles")
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9544. {
  9545. side: {
  9546. height: math.unit(6, "feet"),
  9547. weight: math.unit(2304, "lbs"),
  9548. name: "Side",
  9549. image: {
  9550. source: "./media/characters/arcturax/side.svg",
  9551. extra: 790 / 376,
  9552. bottom: 0.01
  9553. }
  9554. },
  9555. },
  9556. [
  9557. {
  9558. name: "Micro",
  9559. height: math.unit(2, "inch")
  9560. },
  9561. {
  9562. name: "Normal",
  9563. height: math.unit(6, "feet")
  9564. },
  9565. {
  9566. name: "Macro",
  9567. height: math.unit(39, "feet"),
  9568. default: true
  9569. },
  9570. {
  9571. name: "Megamacro",
  9572. height: math.unit(7, "miles")
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9578. {
  9579. front: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(50, "lbs"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/sentri/front.svg",
  9585. extra: 1750 / 1570,
  9586. bottom: 0.025
  9587. }
  9588. },
  9589. frontAlt: {
  9590. height: math.unit(6, "feet"),
  9591. weight: math.unit(50, "lbs"),
  9592. name: "Front (Alt)",
  9593. image: {
  9594. source: "./media/characters/sentri/front-alt.svg",
  9595. extra: 1750 / 1570,
  9596. bottom: 0.025
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Normal",
  9603. height: math.unit(15, "feet"),
  9604. default: true
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(2500, "feet")
  9609. }
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(5 + 8 / 12, "feet"),
  9617. weight: math.unit(130, "lbs"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/corvin/front.svg",
  9621. extra: 1803 / 1629
  9622. }
  9623. },
  9624. frontShirt: {
  9625. height: math.unit(5 + 8 / 12, "feet"),
  9626. weight: math.unit(130, "lbs"),
  9627. name: "Front (Shirt)",
  9628. image: {
  9629. source: "./media/characters/corvin/front-shirt.svg",
  9630. extra: 1803 / 1629
  9631. }
  9632. },
  9633. frontPoncho: {
  9634. height: math.unit(5 + 8 / 12, "feet"),
  9635. weight: math.unit(130, "lbs"),
  9636. name: "Front (Poncho)",
  9637. image: {
  9638. source: "./media/characters/corvin/front-poncho.svg",
  9639. extra: 1803 / 1629
  9640. }
  9641. },
  9642. side: {
  9643. height: math.unit(5 + 8 / 12, "feet"),
  9644. weight: math.unit(130, "lbs"),
  9645. name: "Side",
  9646. image: {
  9647. source: "./media/characters/corvin/side.svg",
  9648. extra: 1012 / 945
  9649. }
  9650. },
  9651. back: {
  9652. height: math.unit(5 + 8 / 12, "feet"),
  9653. weight: math.unit(130, "lbs"),
  9654. name: "Back",
  9655. image: {
  9656. source: "./media/characters/corvin/back.svg",
  9657. extra: 1803 / 1629
  9658. }
  9659. },
  9660. },
  9661. [
  9662. {
  9663. name: "Micro",
  9664. height: math.unit(3, "inches")
  9665. },
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(5 + 8 / 12, "feet")
  9669. },
  9670. {
  9671. name: "Macro",
  9672. height: math.unit(300, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(500, "miles")
  9678. }
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(135, "lbs"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/q/front.svg",
  9690. extra: 854 / 752,
  9691. bottom: 0.005
  9692. }
  9693. },
  9694. back: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(130, "lbs"),
  9697. name: "Back",
  9698. image: {
  9699. source: "./media/characters/q/back.svg",
  9700. extra: 854 / 752
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(90, "feet"),
  9708. default: true
  9709. },
  9710. {
  9711. name: "Extra Macro",
  9712. height: math.unit(300, "feet"),
  9713. },
  9714. {
  9715. name: "BIG WALF",
  9716. height: math.unit(750, "feet"),
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(3, "feet"),
  9725. weight: math.unit(28, "lbs"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/citrine/front.svg"
  9729. }
  9730. }
  9731. },
  9732. [
  9733. {
  9734. name: "Normal",
  9735. height: math.unit(3, "feet"),
  9736. default: true
  9737. }
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9742. {
  9743. front: {
  9744. height: math.unit(14, "feet"),
  9745. weight: math.unit(1450, "kg"),
  9746. preyCapacity: math.unit(15, "people"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/aura-starwind/front.svg",
  9750. extra: 1440/1327,
  9751. bottom: 11/1451
  9752. }
  9753. },
  9754. side: {
  9755. height: math.unit(14, "feet"),
  9756. weight: math.unit(1450, "kg"),
  9757. preyCapacity: math.unit(15, "people"),
  9758. name: "Side",
  9759. image: {
  9760. source: "./media/characters/aura-starwind/side.svg",
  9761. extra: 1654 / 1497
  9762. }
  9763. },
  9764. taur: {
  9765. height: math.unit(18, "feet"),
  9766. weight: math.unit(5500, "kg"),
  9767. preyCapacity: math.unit(50, "people"),
  9768. name: "Taur",
  9769. image: {
  9770. source: "./media/characters/aura-starwind/taur.svg",
  9771. extra: 1760 / 1650
  9772. }
  9773. },
  9774. feral: {
  9775. height: math.unit(46, "feet"),
  9776. weight: math.unit(25000, "kg"),
  9777. preyCapacity: math.unit(120, "people"),
  9778. name: "Feral",
  9779. image: {
  9780. source: "./media/characters/aura-starwind/feral.svg"
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(14, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(50, "meters")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(5000, "meters")
  9797. },
  9798. {
  9799. name: "Gigamacro",
  9800. height: math.unit(100000, "kilometers")
  9801. },
  9802. ]
  9803. ))
  9804. characterMakers.push(() => makeCharacter(
  9805. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9806. {
  9807. front: {
  9808. height: math.unit(2 + 7 / 12, "feet"),
  9809. weight: math.unit(32, "lbs"),
  9810. name: "Front",
  9811. image: {
  9812. source: "./media/characters/rivet/front.svg",
  9813. extra: 1716 / 1658,
  9814. bottom: 0.03
  9815. }
  9816. },
  9817. foot: {
  9818. height: math.unit(0.551, "feet"),
  9819. name: "Rivet's Foot",
  9820. image: {
  9821. source: "./media/characters/rivet/foot.svg"
  9822. },
  9823. rename: true
  9824. }
  9825. },
  9826. [
  9827. {
  9828. name: "Micro",
  9829. height: math.unit(1.5, "inches"),
  9830. },
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(2 + 7 / 12, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Macro",
  9838. height: math.unit(85, "feet")
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(2.2, "km")
  9843. }
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(5 + 9 / 12, "feet"),
  9851. weight: math.unit(150, "lbs"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/coffee/front.svg",
  9855. extra: 946/880,
  9856. bottom: 66/1012
  9857. }
  9858. },
  9859. foot: {
  9860. height: math.unit(1.29, "feet"),
  9861. name: "Foot",
  9862. image: {
  9863. source: "./media/characters/coffee/foot.svg"
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Micro",
  9870. height: math.unit(2, "inches"),
  9871. },
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(5 + 9 / 12, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Macro",
  9879. height: math.unit(800, "feet")
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(25, "miles")
  9884. }
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(200, "lbs"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/chari-gal/front.svg",
  9896. extra: 735/649,
  9897. bottom: 55/790
  9898. },
  9899. form: "normal",
  9900. default: true
  9901. },
  9902. back: {
  9903. height: math.unit(6, "feet"),
  9904. weight: math.unit(200, "lb"),
  9905. name: "Back",
  9906. image: {
  9907. source: "./media/characters/chari-gal/back.svg",
  9908. extra: 762/666,
  9909. bottom: 31/793
  9910. },
  9911. form: "normal"
  9912. },
  9913. mouth: {
  9914. height: math.unit(1.35, "feet"),
  9915. name: "Mouth",
  9916. image: {
  9917. source: "./media/characters/chari-gal/mouth.svg"
  9918. },
  9919. form: "normal"
  9920. },
  9921. gigantamax: {
  9922. height: math.unit(6 * 16, "feet"),
  9923. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9924. name: "Gigantamax",
  9925. image: {
  9926. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9927. extra: 1507/1149,
  9928. bottom: 254/1761
  9929. },
  9930. form: "gigantamax",
  9931. default: true
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(5 + 7 / 12, "feet"),
  9938. form: "normal",
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(200, "feet"),
  9943. default: true,
  9944. form: "normal"
  9945. },
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9949. form: "gigantamax",
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(16 * 200, "feet"),
  9954. default: true,
  9955. form: "gigantamax"
  9956. },
  9957. ],
  9958. {
  9959. "normal": {
  9960. name: "Normal",
  9961. default: true
  9962. },
  9963. "gigantamax": {
  9964. name: "Gigantamax",
  9965. },
  9966. }
  9967. ))
  9968. characterMakers.push(() => makeCharacter(
  9969. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9970. {
  9971. front: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(150, "lbs"),
  9974. name: "Front",
  9975. image: {
  9976. source: "./media/characters/nova/front.svg",
  9977. extra: 5000 / 4722,
  9978. bottom: 0.02
  9979. }
  9980. }
  9981. },
  9982. [
  9983. {
  9984. name: "Micro-",
  9985. height: math.unit(0.8, "inches")
  9986. },
  9987. {
  9988. name: "Micro",
  9989. height: math.unit(2, "inches"),
  9990. default: true
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9996. {
  9997. koboldFront: {
  9998. height: math.unit(3 + 1 / 12, "feet"),
  9999. weight: math.unit(21.7, "lbs"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/argent/kobold-front.svg",
  10003. extra: 1471 / 1331,
  10004. bottom: 100.8 / 1575.5
  10005. },
  10006. form: "kobold",
  10007. default: true
  10008. },
  10009. dragonFront: {
  10010. height: math.unit(75, "inches"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/argent/dragon-front.svg",
  10014. extra: 1389/1248,
  10015. bottom: 54/1443
  10016. },
  10017. form: "dragon",
  10018. },
  10019. dragonBack: {
  10020. height: math.unit(75, "inches"),
  10021. name: "Back",
  10022. image: {
  10023. source: "./media/characters/argent/dragon-back.svg",
  10024. extra: 1399/1271,
  10025. bottom: 23/1422
  10026. },
  10027. form: "dragon",
  10028. },
  10029. dragonDressed: {
  10030. height: math.unit(75, "inches"),
  10031. name: "Dressed",
  10032. image: {
  10033. source: "./media/characters/argent/dragon-dressed.svg",
  10034. extra: 1350/1215,
  10035. bottom: 26/1376
  10036. },
  10037. form: "dragon"
  10038. },
  10039. dragonHead: {
  10040. height: math.unit(23.5, "inches"),
  10041. name: "Head",
  10042. image: {
  10043. source: "./media/characters/argent/dragon-head.svg"
  10044. },
  10045. form: "dragon",
  10046. },
  10047. },
  10048. [
  10049. {
  10050. name: "Micro",
  10051. height: math.unit(2, "inches"),
  10052. form: "kobold",
  10053. },
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(3 + 1 / 12, "feet"),
  10057. form: "kobold",
  10058. default: true
  10059. },
  10060. {
  10061. name: "Macro",
  10062. height: math.unit(120, "feet"),
  10063. form: "kobold",
  10064. },
  10065. {
  10066. name: "Speck",
  10067. height: math.unit(1, "mm"),
  10068. form: "dragon",
  10069. },
  10070. {
  10071. name: "Tiny",
  10072. height: math.unit(1, "cm"),
  10073. form: "dragon",
  10074. },
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(5, "cm"),
  10078. form: "dragon",
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(75, "inches"),
  10083. form: "dragon",
  10084. default: true
  10085. },
  10086. {
  10087. name: "Extra Tall",
  10088. height: math.unit(9, "feet"),
  10089. form: "dragon",
  10090. },
  10091. {
  10092. name: "Inconvenient",
  10093. height: math.unit(5, "meters"),
  10094. form: "dragon",
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(70, "meters"),
  10099. form: "dragon",
  10100. },
  10101. {
  10102. name: "Macro+",
  10103. height: math.unit(250, "meters"),
  10104. form: "dragon",
  10105. },
  10106. {
  10107. name: "Megamacro",
  10108. height: math.unit(20, "km"),
  10109. form: "dragon",
  10110. },
  10111. {
  10112. name: "Mountainous",
  10113. height: math.unit(100, "km"),
  10114. form: "dragon",
  10115. },
  10116. {
  10117. name: "Continental",
  10118. height: math.unit(2, "megameters"),
  10119. form: "dragon",
  10120. },
  10121. {
  10122. name: "Too Big",
  10123. height: math.unit(900, "megameters"),
  10124. form: "dragon",
  10125. },
  10126. ],
  10127. {
  10128. "kobold": {
  10129. name: "Kobold",
  10130. default: true
  10131. },
  10132. "dragon": {
  10133. name: "Dragon",
  10134. },
  10135. }
  10136. ))
  10137. characterMakers.push(() => makeCharacter(
  10138. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10139. {
  10140. lamp: {
  10141. height: math.unit(7 * 1559 / 989, "feet"),
  10142. name: "Magic Lamp",
  10143. image: {
  10144. source: "./media/characters/mira-al-cul/lamp.svg",
  10145. extra: 1617 / 1559
  10146. }
  10147. },
  10148. front: {
  10149. height: math.unit(7, "feet"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/mira-al-cul/front.svg",
  10153. extra: 1044 / 990
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Heavily Restricted",
  10160. height: math.unit(7 * 1559 / 989, "feet")
  10161. },
  10162. {
  10163. name: "Freshly Freed",
  10164. height: math.unit(50 * 1559 / 989, "feet")
  10165. },
  10166. {
  10167. name: "World Encompassing",
  10168. height: math.unit(10000 * 1559 / 989, "miles")
  10169. },
  10170. {
  10171. name: "Galactic",
  10172. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10173. },
  10174. {
  10175. name: "Palmed Universe",
  10176. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10177. default: true
  10178. },
  10179. {
  10180. name: "Multiversal Matriarch",
  10181. height: math.unit(8.87e10, "yottameters")
  10182. },
  10183. {
  10184. name: "Void Mother",
  10185. height: math.unit(3.14e110, "yottaparsecs")
  10186. },
  10187. {
  10188. name: "Toying with Transcendence",
  10189. height: math.unit(1e307, "meters")
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10195. {
  10196. front: {
  10197. height: math.unit(17 + 1 / 12, "feet"),
  10198. weight: math.unit(476.2 * 5, "lbs"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/kuro-shi-uchū/front.svg",
  10202. extra: 2329 / 1835,
  10203. bottom: 0.02
  10204. }
  10205. },
  10206. },
  10207. [
  10208. {
  10209. name: "Micro",
  10210. height: math.unit(2, "inches")
  10211. },
  10212. {
  10213. name: "Normal",
  10214. height: math.unit(12, "meters")
  10215. },
  10216. {
  10217. name: "Planetary",
  10218. height: math.unit(0.00929, "AU"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Universal",
  10223. height: math.unit(20, "gigaparsecs")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(5 + 2 / 12, "feet"),
  10232. weight: math.unit(120, "lbs"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/katherine/front.svg",
  10236. extra: 2075 / 1969
  10237. }
  10238. },
  10239. dress: {
  10240. height: math.unit(5 + 2 / 12, "feet"),
  10241. weight: math.unit(120, "lbs"),
  10242. name: "Dress",
  10243. image: {
  10244. source: "./media/characters/katherine/dress.svg",
  10245. extra: 2258 / 2064
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Micro",
  10252. height: math.unit(1, "inches"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(5 + 2 / 12, "feet")
  10258. },
  10259. {
  10260. name: "Macro",
  10261. height: math.unit(100, "meters")
  10262. },
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(80, "miles")
  10266. },
  10267. ]
  10268. ))
  10269. characterMakers.push(() => makeCharacter(
  10270. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10271. {
  10272. front: {
  10273. height: math.unit(7 + 8 / 12, "feet"),
  10274. weight: math.unit(250, "lbs"),
  10275. name: "Front",
  10276. image: {
  10277. source: "./media/characters/yevis/front.svg",
  10278. extra: 1938 / 1755
  10279. }
  10280. }
  10281. },
  10282. [
  10283. {
  10284. name: "Mortal",
  10285. height: math.unit(7 + 8 / 12, "feet")
  10286. },
  10287. {
  10288. name: "Battle",
  10289. height: math.unit(25 + 11 / 12, "feet")
  10290. },
  10291. {
  10292. name: "Wrath",
  10293. height: math.unit(1654 + 11 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Planet Destroyer",
  10297. height: math.unit(12000, "miles")
  10298. },
  10299. {
  10300. name: "Galaxy Conqueror",
  10301. height: math.unit(1.45, "zettameters"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Universal War",
  10306. height: math.unit(184, "gigaparsecs")
  10307. },
  10308. {
  10309. name: "Eternity War",
  10310. height: math.unit(1.98e55, "yottaparsecs")
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(5 + 8 / 12, "feet"),
  10319. weight: math.unit(63, "kg"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/xavier/front.svg",
  10323. extra: 944 / 883
  10324. }
  10325. },
  10326. frontStretch: {
  10327. height: math.unit(5 + 8 / 12, "feet"),
  10328. weight: math.unit(63, "kg"),
  10329. name: "Stretching",
  10330. image: {
  10331. source: "./media/characters/xavier/front-stretch.svg",
  10332. extra: 962 / 820
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Normal",
  10339. height: math.unit(5 + 8 / 12, "feet")
  10340. },
  10341. {
  10342. name: "Macro",
  10343. height: math.unit(100, "meters"),
  10344. default: true
  10345. },
  10346. {
  10347. name: "McLargeHuge",
  10348. height: math.unit(10, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(5 + 5 / 12, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/joshii/front.svg",
  10361. extra: 765 / 653,
  10362. bottom: 51 / 816
  10363. }
  10364. },
  10365. foot: {
  10366. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10367. name: "Foot",
  10368. image: {
  10369. source: "./media/characters/joshii/foot.svg"
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Micro",
  10376. height: math.unit(2, "inches")
  10377. },
  10378. {
  10379. name: "Normal",
  10380. height: math.unit(5 + 5 / 12, "feet")
  10381. },
  10382. {
  10383. name: "Macro",
  10384. height: math.unit(785, "feet"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Megamacro",
  10389. height: math.unit(24.5, "miles")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(6, "feet"),
  10398. weight: math.unit(150, "lb"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/goddess-elizabeth/front.svg",
  10402. extra: 1800 / 1525,
  10403. bottom: 0.005
  10404. }
  10405. },
  10406. foot: {
  10407. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10408. name: "Foot",
  10409. image: {
  10410. source: "./media/characters/goddess-elizabeth/foot.svg"
  10411. }
  10412. },
  10413. mouth: {
  10414. height: math.unit(6, "feet"),
  10415. name: "Mouth",
  10416. image: {
  10417. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10418. }
  10419. },
  10420. },
  10421. [
  10422. {
  10423. name: "Micro",
  10424. height: math.unit(12, "feet")
  10425. },
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(80, "miles"),
  10429. default: true
  10430. },
  10431. {
  10432. name: "Macro",
  10433. height: math.unit(15000, "parsecs")
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(5 + 9 / 12, "feet"),
  10442. weight: math.unit(144, "lb"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/kara/front.svg"
  10446. }
  10447. },
  10448. feet: {
  10449. height: math.unit(6 / 6.765, "feet"),
  10450. name: "Kara's Feet",
  10451. rename: true,
  10452. image: {
  10453. source: "./media/characters/kara/feet.svg"
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(5 + 9 / 12, "feet")
  10461. },
  10462. {
  10463. name: "Macro",
  10464. height: math.unit(174, "feet"),
  10465. default: true
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(18, "feet"),
  10474. weight: math.unit(4050, "lb"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/tyrone/front.svg",
  10478. extra: 2405 / 2270,
  10479. bottom: 182 / 2587
  10480. }
  10481. },
  10482. },
  10483. [
  10484. {
  10485. name: "Normal",
  10486. height: math.unit(18, "feet"),
  10487. default: true
  10488. },
  10489. {
  10490. name: "Macro",
  10491. height: math.unit(300, "feet")
  10492. },
  10493. {
  10494. name: "Megamacro",
  10495. height: math.unit(15, "km")
  10496. },
  10497. {
  10498. name: "Gigamacro",
  10499. height: math.unit(500, "km")
  10500. },
  10501. {
  10502. name: "Teramacro",
  10503. height: math.unit(0.5, "gigameters")
  10504. },
  10505. {
  10506. name: "Omnimacro",
  10507. height: math.unit(1e252, "yottauniverse")
  10508. },
  10509. ]
  10510. ))
  10511. characterMakers.push(() => makeCharacter(
  10512. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10513. {
  10514. front: {
  10515. height: math.unit(7 + 8 / 12, "feet"),
  10516. weight: math.unit(120, "lb"),
  10517. name: "Front",
  10518. image: {
  10519. source: "./media/characters/danny/front.svg",
  10520. extra: 1490 / 1350
  10521. }
  10522. },
  10523. back: {
  10524. height: math.unit(7 + 8 / 12, "feet"),
  10525. weight: math.unit(120, "lb"),
  10526. name: "Back",
  10527. image: {
  10528. source: "./media/characters/danny/back.svg",
  10529. extra: 1490 / 1350
  10530. }
  10531. },
  10532. },
  10533. [
  10534. {
  10535. name: "Normal",
  10536. height: math.unit(7 + 8 / 12, "feet"),
  10537. default: true
  10538. },
  10539. ]
  10540. ))
  10541. characterMakers.push(() => makeCharacter(
  10542. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10543. {
  10544. front: {
  10545. height: math.unit(3.5, "inches"),
  10546. weight: math.unit(19, "grams"),
  10547. name: "Front",
  10548. image: {
  10549. source: "./media/characters/mallow/front.svg",
  10550. extra: 471 / 431
  10551. }
  10552. },
  10553. back: {
  10554. height: math.unit(3.5, "inches"),
  10555. weight: math.unit(19, "grams"),
  10556. name: "Back",
  10557. image: {
  10558. source: "./media/characters/mallow/back.svg",
  10559. extra: 471 / 431
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(3.5, "inches"),
  10567. default: true
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(9, "feet"),
  10576. weight: math.unit(230, "kg"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/starry-aqua/front.svg"
  10580. }
  10581. },
  10582. back: {
  10583. height: math.unit(9, "feet"),
  10584. weight: math.unit(230, "kg"),
  10585. name: "Back",
  10586. image: {
  10587. source: "./media/characters/starry-aqua/back.svg"
  10588. }
  10589. },
  10590. hand: {
  10591. height: math.unit(9 * 0.1168, "feet"),
  10592. name: "Hand",
  10593. image: {
  10594. source: "./media/characters/starry-aqua/hand.svg"
  10595. }
  10596. },
  10597. foot: {
  10598. height: math.unit(9 * 0.18, "feet"),
  10599. name: "Foot",
  10600. image: {
  10601. source: "./media/characters/starry-aqua/foot.svg"
  10602. }
  10603. }
  10604. },
  10605. [
  10606. {
  10607. name: "Micro",
  10608. height: math.unit(3, "inches")
  10609. },
  10610. {
  10611. name: "Normal",
  10612. height: math.unit(9, "feet")
  10613. },
  10614. {
  10615. name: "Macro",
  10616. height: math.unit(300, "feet"),
  10617. default: true
  10618. },
  10619. {
  10620. name: "Megamacro",
  10621. height: math.unit(3200, "feet")
  10622. }
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(15, "feet"),
  10630. weight: math.unit(5026, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/luka-towers/front.svg",
  10634. extra: 1269/1133,
  10635. bottom: 51/1320
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(15, "feet"),
  10643. default: true
  10644. },
  10645. {
  10646. name: "Minimacro",
  10647. height: math.unit(25, "feet")
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(320, "feet")
  10652. },
  10653. {
  10654. name: "Megamacro",
  10655. height: math.unit(35000, "feet")
  10656. },
  10657. {
  10658. name: "Gigamacro",
  10659. height: math.unit(4000, "miles")
  10660. },
  10661. {
  10662. name: "Teramacro",
  10663. height: math.unit(15000, "miles")
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(6, "feet"),
  10672. weight: math.unit(150, "lb"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/natalie-nightring/front.svg",
  10676. extra: 1,
  10677. bottom: 0.06
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Uh Oh",
  10684. height: math.unit(0.1, "mm")
  10685. },
  10686. {
  10687. name: "Small",
  10688. height: math.unit(3, "inches")
  10689. },
  10690. {
  10691. name: "Human Scale",
  10692. height: math.unit(6, "feet")
  10693. },
  10694. {
  10695. name: "Librarian",
  10696. height: math.unit(50, "feet"),
  10697. default: true
  10698. },
  10699. {
  10700. name: "Immense",
  10701. height: math.unit(200, "miles")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(180, "lbs"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/danni-rosie/front.svg",
  10714. extra: 1260 / 1128,
  10715. bottom: 0.022
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Micro",
  10722. height: math.unit(2, "inches"),
  10723. default: true
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10729. {
  10730. front: {
  10731. height: math.unit(5 + 9 / 12, "feet"),
  10732. weight: math.unit(220, "lb"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/samantha-kruse/front.svg",
  10736. extra: (985 / 935),
  10737. bottom: 0.03
  10738. }
  10739. },
  10740. frontUndressed: {
  10741. height: math.unit(5 + 9 / 12, "feet"),
  10742. weight: math.unit(220, "lb"),
  10743. name: "Front (Undressed)",
  10744. image: {
  10745. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10746. extra: (973 / 923),
  10747. bottom: 0.025
  10748. }
  10749. },
  10750. fat: {
  10751. height: math.unit(5 + 9 / 12, "feet"),
  10752. weight: math.unit(900, "lb"),
  10753. name: "Front (Fat)",
  10754. image: {
  10755. source: "./media/characters/samantha-kruse/fat.svg",
  10756. extra: 2688 / 2561
  10757. }
  10758. },
  10759. },
  10760. [
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(5 + 9 / 12, "feet"),
  10764. default: true
  10765. }
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10770. {
  10771. back: {
  10772. height: math.unit(5 + 4 / 12, "feet"),
  10773. weight: math.unit(4963, "lb"),
  10774. name: "Back",
  10775. image: {
  10776. source: "./media/characters/amelia-rosie/back.svg",
  10777. extra: 1113 / 963,
  10778. bottom: 0.01
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Level 0",
  10785. height: math.unit(5 + 4 / 12, "feet")
  10786. },
  10787. {
  10788. name: "Level 1",
  10789. height: math.unit(164597, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Level 2",
  10794. height: math.unit(956243, "miles")
  10795. },
  10796. {
  10797. name: "Level 3",
  10798. height: math.unit(29421709423, "miles")
  10799. },
  10800. {
  10801. name: "Level 4",
  10802. height: math.unit(154, "lightyears")
  10803. },
  10804. {
  10805. name: "Level 5",
  10806. height: math.unit(4738272, "lightyears")
  10807. },
  10808. {
  10809. name: "Level 6",
  10810. height: math.unit(145787152896, "lightyears")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(5 + 11 / 12, "feet"),
  10819. weight: math.unit(65, "kg"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/rook-kitara/front.svg",
  10823. extra: 1347 / 1274,
  10824. bottom: 0.005
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Totally Unfair",
  10831. height: math.unit(1.8, "mm")
  10832. },
  10833. {
  10834. name: "Lap Rookie",
  10835. height: math.unit(1.4, "feet")
  10836. },
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(5 + 11 / 12, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "How Did This Happen",
  10844. height: math.unit(80, "miles")
  10845. }
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(7, "feet"),
  10853. weight: math.unit(300, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/pisces/front.svg",
  10857. extra: 2255 / 2115,
  10858. bottom: 0.03
  10859. }
  10860. },
  10861. back: {
  10862. height: math.unit(7, "feet"),
  10863. weight: math.unit(300, "lb"),
  10864. name: "Back",
  10865. image: {
  10866. source: "./media/characters/pisces/back.svg",
  10867. extra: 2146 / 2055,
  10868. bottom: 0.04
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Normal",
  10875. height: math.unit(7, "feet"),
  10876. default: true
  10877. },
  10878. {
  10879. name: "Swimming Pool",
  10880. height: math.unit(12.2, "meters")
  10881. },
  10882. {
  10883. name: "Olympic Swimming Pool",
  10884. height: math.unit(56.3, "meters")
  10885. },
  10886. {
  10887. name: "Lake Superior",
  10888. height: math.unit(93900, "meters")
  10889. },
  10890. {
  10891. name: "Mediterranean Sea",
  10892. height: math.unit(644457, "meters")
  10893. },
  10894. {
  10895. name: "World's Oceans",
  10896. height: math.unit(4567491, "meters")
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10902. {
  10903. front: {
  10904. height: math.unit(2.3, "meters"),
  10905. weight: math.unit(120, "kg"),
  10906. name: "Front",
  10907. image: {
  10908. source: "./media/characters/zelas/front.svg"
  10909. }
  10910. },
  10911. side: {
  10912. height: math.unit(2.3, "meters"),
  10913. weight: math.unit(120, "kg"),
  10914. name: "Side",
  10915. image: {
  10916. source: "./media/characters/zelas/side.svg"
  10917. }
  10918. },
  10919. back: {
  10920. height: math.unit(2.3, "meters"),
  10921. weight: math.unit(120, "kg"),
  10922. name: "Back",
  10923. image: {
  10924. source: "./media/characters/zelas/back.svg"
  10925. }
  10926. },
  10927. foot: {
  10928. height: math.unit(1.116, "feet"),
  10929. name: "Foot",
  10930. image: {
  10931. source: "./media/characters/zelas/foot.svg"
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(2.3, "meters")
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(30, "meters"),
  10943. default: true
  10944. },
  10945. ]
  10946. ))
  10947. characterMakers.push(() => makeCharacter(
  10948. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10949. {
  10950. front: {
  10951. height: math.unit(1, "inch"),
  10952. weight: math.unit(0.21, "grams"),
  10953. name: "Front",
  10954. image: {
  10955. source: "./media/characters/talbot/front.svg",
  10956. extra: 594 / 544
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Micro",
  10963. height: math.unit(1, "inch"),
  10964. default: true
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10970. {
  10971. front: {
  10972. height: math.unit(3 + 3 / 12, "feet"),
  10973. weight: math.unit(51.8, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/fliss/front.svg",
  10977. extra: 840 / 640
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Teeny Tiny",
  10984. height: math.unit(1, "mm")
  10985. },
  10986. {
  10987. name: "Small",
  10988. height: math.unit(1, "inch"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Standard Sylveon",
  10993. height: math.unit(3 + 3 / 12, "feet")
  10994. },
  10995. {
  10996. name: "Large Nuisance",
  10997. height: math.unit(33, "feet")
  10998. },
  10999. {
  11000. name: "City Filler",
  11001. height: math.unit(3000, "feet")
  11002. },
  11003. {
  11004. name: "New Horizon",
  11005. height: math.unit(6000, "miles")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(5, "cm"),
  11014. weight: math.unit(1.94, "g"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/fleta/front.svg",
  11018. extra: 835 / 803
  11019. }
  11020. },
  11021. back: {
  11022. height: math.unit(5, "cm"),
  11023. weight: math.unit(1.94, "g"),
  11024. name: "Back",
  11025. image: {
  11026. source: "./media/characters/fleta/back.svg",
  11027. extra: 835 / 803
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Micro",
  11034. height: math.unit(5, "cm"),
  11035. default: true
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(225, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/dominic/front.svg",
  11048. extra: 1770 / 1620,
  11049. bottom: 0.025
  11050. }
  11051. },
  11052. back: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(225, "lb"),
  11055. name: "Back",
  11056. image: {
  11057. source: "./media/characters/dominic/back.svg",
  11058. extra: 1745 / 1620,
  11059. bottom: 0.065
  11060. }
  11061. },
  11062. },
  11063. [
  11064. {
  11065. name: "Nano",
  11066. height: math.unit(0.1, "mm")
  11067. },
  11068. {
  11069. name: "Micro-",
  11070. height: math.unit(1, "mm")
  11071. },
  11072. {
  11073. name: "Micro",
  11074. height: math.unit(4, "inches")
  11075. },
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(6 + 4 / 12, "feet"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Macro",
  11083. height: math.unit(115, "feet")
  11084. },
  11085. {
  11086. name: "Macro+",
  11087. height: math.unit(955, "feet")
  11088. },
  11089. {
  11090. name: "Megamacro",
  11091. height: math.unit(8990, "feet")
  11092. },
  11093. {
  11094. name: "Gigmacro",
  11095. height: math.unit(9310, "miles")
  11096. },
  11097. {
  11098. name: "Teramacro",
  11099. height: math.unit(1567005010, "miles")
  11100. },
  11101. {
  11102. name: "Examacro",
  11103. height: math.unit(1425, "parsecs")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(400, "feet"),
  11112. weight: math.unit(44444444, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/major-colonel/front.svg"
  11116. }
  11117. },
  11118. back: {
  11119. height: math.unit(400, "feet"),
  11120. weight: math.unit(44444444, "lb"),
  11121. name: "Back",
  11122. image: {
  11123. source: "./media/characters/major-colonel/back.svg"
  11124. }
  11125. },
  11126. },
  11127. [
  11128. {
  11129. name: "Macro",
  11130. height: math.unit(400, "feet"),
  11131. default: true
  11132. },
  11133. ]
  11134. ))
  11135. characterMakers.push(() => makeCharacter(
  11136. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11137. {
  11138. catFront: {
  11139. height: math.unit(6, "feet"),
  11140. weight: math.unit(120, "lb"),
  11141. name: "Front (Cat Side)",
  11142. image: {
  11143. source: "./media/characters/axel-lycan/cat-front.svg",
  11144. extra: 430 / 402,
  11145. bottom: 43 / 472.35
  11146. }
  11147. },
  11148. catBack: {
  11149. height: math.unit(6, "feet"),
  11150. weight: math.unit(120, "lb"),
  11151. name: "Back (Cat Side)",
  11152. image: {
  11153. source: "./media/characters/axel-lycan/cat-back.svg",
  11154. extra: 447 / 419,
  11155. bottom: 23.3 / 469
  11156. }
  11157. },
  11158. wolfFront: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(120, "lb"),
  11161. name: "Front (Wolf Side)",
  11162. image: {
  11163. source: "./media/characters/axel-lycan/wolf-front.svg",
  11164. extra: 485 / 456,
  11165. bottom: 19 / 504
  11166. }
  11167. },
  11168. wolfBack: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(120, "lb"),
  11171. name: "Back (Wolf Side)",
  11172. image: {
  11173. source: "./media/characters/axel-lycan/wolf-back.svg",
  11174. extra: 475 / 438,
  11175. bottom: 39.2 / 514
  11176. }
  11177. },
  11178. },
  11179. [
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(1, "km"),
  11183. default: true
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(5 + 9 / 12, "feet"),
  11192. weight: math.unit(175, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/vanrel-hyena/front.svg",
  11196. extra: 1086 / 1010,
  11197. bottom: 0.04
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(5 + 9 / 12, "feet"),
  11205. default: true
  11206. },
  11207. ]
  11208. ))
  11209. characterMakers.push(() => makeCharacter(
  11210. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11211. {
  11212. front: {
  11213. height: math.unit(6, "feet"),
  11214. weight: math.unit(103, "lb"),
  11215. name: "Front",
  11216. image: {
  11217. source: "./media/characters/abbott-absol/front.svg",
  11218. extra: 765/694,
  11219. bottom: 47/812
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Megamicro",
  11226. height: math.unit(0.1, "mm")
  11227. },
  11228. {
  11229. name: "Micro",
  11230. height: math.unit(1, "inch")
  11231. },
  11232. {
  11233. name: "Normal",
  11234. height: math.unit(6, "feet"),
  11235. default: true
  11236. },
  11237. ]
  11238. ))
  11239. characterMakers.push(() => makeCharacter(
  11240. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11241. {
  11242. front: {
  11243. height: math.unit(6, "feet"),
  11244. weight: math.unit(264, "lb"),
  11245. name: "Front",
  11246. image: {
  11247. source: "./media/characters/hector/front.svg",
  11248. extra: 2280 / 2130,
  11249. bottom: 0.07
  11250. }
  11251. },
  11252. },
  11253. [
  11254. {
  11255. name: "Normal",
  11256. height: math.unit(12.25, "foot"),
  11257. default: true
  11258. },
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(160, "feet")
  11262. },
  11263. ]
  11264. ))
  11265. characterMakers.push(() => makeCharacter(
  11266. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11267. {
  11268. front: {
  11269. height: math.unit(6, "feet"),
  11270. weight: math.unit(150, "lb"),
  11271. name: "Front",
  11272. image: {
  11273. source: "./media/characters/sal/front.svg",
  11274. extra: 1846 / 1699,
  11275. bottom: 0.04
  11276. }
  11277. },
  11278. },
  11279. [
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(10, "miles"),
  11283. default: true
  11284. },
  11285. ]
  11286. ))
  11287. characterMakers.push(() => makeCharacter(
  11288. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11289. {
  11290. front: {
  11291. height: math.unit(3, "meters"),
  11292. weight: math.unit(450, "kg"),
  11293. name: "front",
  11294. image: {
  11295. source: "./media/characters/ranger/front.svg",
  11296. extra: 2401 / 2243,
  11297. bottom: 0.05
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(3, "meters"),
  11305. default: true
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(14, "feet"),
  11314. weight: math.unit(800, "kg"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/theresa/front.svg",
  11318. extra: 3575 / 3346,
  11319. bottom: 0.03
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Normal",
  11326. height: math.unit(14, "feet"),
  11327. default: true
  11328. },
  11329. ]
  11330. ))
  11331. characterMakers.push(() => makeCharacter(
  11332. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11333. {
  11334. front: {
  11335. height: math.unit(6, "feet"),
  11336. weight: math.unit(3, "kg"),
  11337. name: "Front",
  11338. image: {
  11339. source: "./media/characters/ine/front.svg",
  11340. extra: 678 / 539,
  11341. bottom: 0.023
  11342. }
  11343. },
  11344. },
  11345. [
  11346. {
  11347. name: "Normal",
  11348. height: math.unit(2.265, "feet"),
  11349. default: true
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(5, "feet"),
  11358. weight: math.unit(30, "kg"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/vial/front.svg",
  11362. extra: 1365 / 1277,
  11363. bottom: 0.04
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(5, "feet"),
  11371. default: true
  11372. },
  11373. ]
  11374. ))
  11375. characterMakers.push(() => makeCharacter(
  11376. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11377. {
  11378. side: {
  11379. height: math.unit(3.4, "meters"),
  11380. weight: math.unit(1000, "lb"),
  11381. name: "Side",
  11382. image: {
  11383. source: "./media/characters/rovoska/side.svg",
  11384. extra: 4403 / 1515
  11385. }
  11386. },
  11387. },
  11388. [
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(3.4, "meters"),
  11392. default: true
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11398. {
  11399. front: {
  11400. height: math.unit(8, "feet"),
  11401. weight: math.unit(315, "lb"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/gunner-rotthbauer/front.svg"
  11405. }
  11406. },
  11407. back: {
  11408. height: math.unit(8, "feet"),
  11409. weight: math.unit(315, "lb"),
  11410. name: "Back",
  11411. image: {
  11412. source: "./media/characters/gunner-rotthbauer/back.svg"
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Micro",
  11419. height: math.unit(3.5, "inches")
  11420. },
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(8, "feet"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(250, "feet")
  11429. },
  11430. {
  11431. name: "Megamacro",
  11432. height: math.unit(1, "AU")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(5 + 5 / 12, "feet"),
  11441. weight: math.unit(140, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/allatia/front.svg",
  11445. extra: 1227 / 1180,
  11446. bottom: 0.027
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(5 + 5 / 12, "feet")
  11454. },
  11455. {
  11456. name: "Macro",
  11457. height: math.unit(250, "feet"),
  11458. default: true
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(8, "miles")
  11463. }
  11464. ]
  11465. ))
  11466. characterMakers.push(() => makeCharacter(
  11467. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11468. {
  11469. front: {
  11470. height: math.unit(6, "feet"),
  11471. weight: math.unit(120, "lb"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/tene/front.svg",
  11475. extra: 814/750,
  11476. bottom: 36/850
  11477. }
  11478. },
  11479. stomping: {
  11480. height: math.unit(2.025, "meters"),
  11481. weight: math.unit(120, "lb"),
  11482. name: "Stomping",
  11483. image: {
  11484. source: "./media/characters/tene/stomping.svg",
  11485. extra: 885/821,
  11486. bottom: 15/900
  11487. }
  11488. },
  11489. sitting: {
  11490. height: math.unit(1, "meter"),
  11491. weight: math.unit(120, "lb"),
  11492. name: "Sitting",
  11493. image: {
  11494. source: "./media/characters/tene/sitting.svg",
  11495. extra: 396/366,
  11496. bottom: 79/475
  11497. }
  11498. },
  11499. smiling: {
  11500. height: math.unit(1.2, "feet"),
  11501. name: "Smiling",
  11502. image: {
  11503. source: "./media/characters/tene/smiling.svg",
  11504. extra: 1364/1071,
  11505. bottom: 0/1364
  11506. }
  11507. },
  11508. smug: {
  11509. height: math.unit(1.3, "feet"),
  11510. name: "Smug",
  11511. image: {
  11512. source: "./media/characters/tene/smug.svg",
  11513. extra: 1323/1082,
  11514. bottom: 0/1323
  11515. }
  11516. },
  11517. feral: {
  11518. height: math.unit(3.9, "feet"),
  11519. weight: math.unit(250, "lb"),
  11520. name: "Feral",
  11521. image: {
  11522. source: "./media/characters/tene/feral.svg",
  11523. extra: 717 / 458,
  11524. bottom: 0.179
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(6, "feet")
  11532. },
  11533. {
  11534. name: "Macro",
  11535. height: math.unit(300, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(5, "miles")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11546. {
  11547. side: {
  11548. height: math.unit(6, "feet"),
  11549. name: "Side",
  11550. image: {
  11551. source: "./media/characters/evander/side.svg",
  11552. extra: 877 / 477
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(0.83, "meters"),
  11560. default: true
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(12, "feet"),
  11569. weight: math.unit(1000, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11573. extra: 1762 / 1611
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(12, "feet"),
  11578. weight: math.unit(1000, "lb"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11582. extra: 1762 / 1611
  11583. }
  11584. },
  11585. },
  11586. [
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(12, "feet"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Kaiju",
  11594. height: math.unit(150, "feet")
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(5 + 11/12, "feet"),
  11603. weight: math.unit(180, "lb"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/zero-alurus/front.svg",
  11607. extra: 1032/957,
  11608. bottom: 10/1042
  11609. }
  11610. },
  11611. back: {
  11612. height: math.unit(5 + 11/12, "feet"),
  11613. weight: math.unit(180, "lb"),
  11614. name: "Back",
  11615. image: {
  11616. source: "./media/characters/zero-alurus/back.svg",
  11617. extra: 1027/950,
  11618. bottom: 12/1039
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Normal",
  11625. height: math.unit(5 + 11 / 12, "feet")
  11626. },
  11627. {
  11628. name: "Mini-Macro",
  11629. height: math.unit(25, "feet")
  11630. },
  11631. {
  11632. name: "Macro",
  11633. height: math.unit(90, "feet"),
  11634. default: true
  11635. },
  11636. {
  11637. name: "Macro+",
  11638. height: math.unit(500, "feet")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(1200, "feet")
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(200, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/mega-shi/front.svg",
  11655. extra: 1279 / 1250,
  11656. bottom: 0.02
  11657. }
  11658. },
  11659. back: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(200, "lb"),
  11662. name: "Back",
  11663. image: {
  11664. source: "./media/characters/mega-shi/back.svg",
  11665. extra: 1279 / 1250,
  11666. bottom: 0.02
  11667. }
  11668. },
  11669. },
  11670. [
  11671. {
  11672. name: "Micro",
  11673. height: math.unit(16 + 6 / 12, "feet")
  11674. },
  11675. {
  11676. name: "Third Dimension",
  11677. height: math.unit(40, "meters")
  11678. },
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(660, "feet"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Megamacro",
  11686. height: math.unit(10, "miles")
  11687. },
  11688. {
  11689. name: "Planetary Launch",
  11690. height: math.unit(500, "miles")
  11691. },
  11692. {
  11693. name: "Interstellar",
  11694. height: math.unit(1e9, "miles")
  11695. },
  11696. {
  11697. name: "Leaving the Universe",
  11698. height: math.unit(1, "gigaparsec")
  11699. },
  11700. {
  11701. name: "Travelling Universes",
  11702. height: math.unit(30e15, "parsecs")
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(5 + 4/12, "feet"),
  11711. weight: math.unit(120, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/odyssey/front.svg",
  11715. extra: 1747/1571,
  11716. bottom: 47/1794
  11717. }
  11718. },
  11719. side: {
  11720. height: math.unit(5.1, "feet"),
  11721. weight: math.unit(120, "lb"),
  11722. name: "Side",
  11723. image: {
  11724. source: "./media/characters/odyssey/side.svg",
  11725. extra: 1847/1619,
  11726. bottom: 47/1894
  11727. }
  11728. },
  11729. lounging: {
  11730. height: math.unit(1.464, "feet"),
  11731. weight: math.unit(120, "lb"),
  11732. name: "Lounging",
  11733. image: {
  11734. source: "./media/characters/odyssey/lounging.svg",
  11735. extra: 1235/837,
  11736. bottom: 551/1786
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(5 + 4 / 12, "feet")
  11744. },
  11745. {
  11746. name: "Macro",
  11747. height: math.unit(1, "km")
  11748. },
  11749. {
  11750. name: "Megamacro",
  11751. height: math.unit(3000, "km")
  11752. },
  11753. {
  11754. name: "Gigamacro",
  11755. height: math.unit(1, "AU"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Omniversal",
  11760. height: math.unit(100e14, "lightyears")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(5 + 10/12, "feet"),
  11769. name: "Front",
  11770. image: {
  11771. source: "./media/characters/mekuto/front.svg",
  11772. extra: 875/835,
  11773. bottom: 46/921
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Minimicro",
  11780. height: math.unit(0.2, "inches")
  11781. },
  11782. {
  11783. name: "Micro",
  11784. height: math.unit(1.5, "inches")
  11785. },
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(5 + 10 / 12, "feet"),
  11789. default: true
  11790. },
  11791. {
  11792. name: "Minimacro",
  11793. height: math.unit(17 + 9 / 12, "feet")
  11794. },
  11795. {
  11796. name: "Macro",
  11797. height: math.unit(177.5, "feet")
  11798. },
  11799. {
  11800. name: "Megamacro",
  11801. height: math.unit(152, "miles")
  11802. },
  11803. ]
  11804. ))
  11805. characterMakers.push(() => makeCharacter(
  11806. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11807. {
  11808. front: {
  11809. height: math.unit(6.5, "inches"),
  11810. weight: math.unit(13, "oz"),
  11811. name: "Front",
  11812. image: {
  11813. source: "./media/characters/dafydd-tomos/front.svg",
  11814. extra: 2990 / 2603,
  11815. bottom: 0.03
  11816. }
  11817. },
  11818. },
  11819. [
  11820. {
  11821. name: "Micro",
  11822. height: math.unit(6.5, "inches"),
  11823. default: true
  11824. },
  11825. ]
  11826. ))
  11827. characterMakers.push(() => makeCharacter(
  11828. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11829. {
  11830. front: {
  11831. height: math.unit(6, "feet"),
  11832. weight: math.unit(150, "lb"),
  11833. name: "Front",
  11834. image: {
  11835. source: "./media/characters/splinter/front.svg",
  11836. extra: 2990 / 2882,
  11837. bottom: 0.04
  11838. }
  11839. },
  11840. back: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(150, "lb"),
  11843. name: "Back",
  11844. image: {
  11845. source: "./media/characters/splinter/back.svg",
  11846. extra: 2990 / 2882,
  11847. bottom: 0.04
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Normal",
  11854. height: math.unit(6, "feet")
  11855. },
  11856. {
  11857. name: "Macro",
  11858. height: math.unit(230, "meters"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(4 + 10 / 12, "feet"),
  11868. weight: math.unit(480, "lb"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/snow-gabumon/front.svg",
  11872. extra: 1140 / 963,
  11873. bottom: 0.058
  11874. }
  11875. },
  11876. back: {
  11877. height: math.unit(4 + 10 / 12, "feet"),
  11878. weight: math.unit(480, "lb"),
  11879. name: "Back",
  11880. image: {
  11881. source: "./media/characters/snow-gabumon/back.svg",
  11882. extra: 1115 / 962,
  11883. bottom: 0.041
  11884. }
  11885. },
  11886. frontUndresed: {
  11887. height: math.unit(4 + 10 / 12, "feet"),
  11888. weight: math.unit(480, "lb"),
  11889. name: "Front (Undressed)",
  11890. image: {
  11891. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11892. extra: 1061 / 960,
  11893. bottom: 0.045
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Micro",
  11900. height: math.unit(1, "inch")
  11901. },
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(4 + 10 / 12, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Macro",
  11909. height: math.unit(200, "feet")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(120, "miles")
  11914. },
  11915. {
  11916. name: "Gigamacro",
  11917. height: math.unit(9800, "miles")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(1.7, "meters"),
  11926. weight: math.unit(140, "lb"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/moody/front.svg",
  11930. extra: 3226 / 3007,
  11931. bottom: 0.087
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(1, "mm")
  11939. },
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(1.7, "meters"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Macro",
  11947. height: math.unit(80, "meters")
  11948. },
  11949. {
  11950. name: "Macro+",
  11951. height: math.unit(500, "meters")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/zyas/front.svg",
  11964. extra: 1180 / 1120,
  11965. bottom: 0.045
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(10, "feet"),
  11973. default: true
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(500, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(5, "miles")
  11982. },
  11983. {
  11984. name: "Teramacro",
  11985. height: math.unit(150000, "miles")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/cuon/front.svg",
  11998. extra: 1390 / 1320,
  11999. bottom: 0.008
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(3, "inches")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(18 + 9 / 12, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(360, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(360, "miles")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(2.4, "meters"),
  12028. weight: math.unit(70, "kg"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/nyanuxk/front.svg",
  12032. extra: 1172 / 1084,
  12033. bottom: 0.065
  12034. }
  12035. },
  12036. side: {
  12037. height: math.unit(2.4, "meters"),
  12038. weight: math.unit(70, "kg"),
  12039. name: "Side",
  12040. image: {
  12041. source: "./media/characters/nyanuxk/side.svg",
  12042. extra: 1190 / 1132,
  12043. bottom: 0.007
  12044. }
  12045. },
  12046. back: {
  12047. height: math.unit(2.4, "meters"),
  12048. weight: math.unit(70, "kg"),
  12049. name: "Back",
  12050. image: {
  12051. source: "./media/characters/nyanuxk/back.svg",
  12052. extra: 1200 / 1141,
  12053. bottom: 0.015
  12054. }
  12055. },
  12056. foot: {
  12057. height: math.unit(0.52, "meters"),
  12058. name: "Foot",
  12059. image: {
  12060. source: "./media/characters/nyanuxk/foot.svg"
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Micro",
  12067. height: math.unit(2, "cm")
  12068. },
  12069. {
  12070. name: "Normal",
  12071. height: math.unit(2.4, "meters"),
  12072. default: true
  12073. },
  12074. {
  12075. name: "Smaller Macro",
  12076. height: math.unit(120, "meters")
  12077. },
  12078. {
  12079. name: "Bigger Macro",
  12080. height: math.unit(1.2, "km")
  12081. },
  12082. {
  12083. name: "Megamacro",
  12084. height: math.unit(15, "kilometers")
  12085. },
  12086. {
  12087. name: "Gigamacro",
  12088. height: math.unit(2000, "km")
  12089. },
  12090. {
  12091. name: "Teramacro",
  12092. height: math.unit(500000, "km")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12098. {
  12099. side: {
  12100. height: math.unit(6, "feet"),
  12101. name: "Side",
  12102. image: {
  12103. source: "./media/characters/ailbhe/side.svg",
  12104. extra: 757 / 464,
  12105. bottom: 0.041
  12106. }
  12107. },
  12108. },
  12109. [
  12110. {
  12111. name: "Normal",
  12112. height: math.unit(1.07, "meters"),
  12113. default: true
  12114. },
  12115. ]
  12116. ))
  12117. characterMakers.push(() => makeCharacter(
  12118. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12119. {
  12120. front: {
  12121. height: math.unit(6, "feet"),
  12122. weight: math.unit(120, "kg"),
  12123. name: "Front",
  12124. image: {
  12125. source: "./media/characters/zevulfius/front.svg",
  12126. extra: 965 / 903
  12127. }
  12128. },
  12129. side: {
  12130. height: math.unit(6, "feet"),
  12131. weight: math.unit(120, "kg"),
  12132. name: "Side",
  12133. image: {
  12134. source: "./media/characters/zevulfius/side.svg",
  12135. extra: 939 / 900
  12136. }
  12137. },
  12138. back: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(120, "kg"),
  12141. name: "Back",
  12142. image: {
  12143. source: "./media/characters/zevulfius/back.svg",
  12144. extra: 918 / 854,
  12145. bottom: 0.005
  12146. }
  12147. },
  12148. foot: {
  12149. height: math.unit(6 / 3.72, "feet"),
  12150. name: "Foot",
  12151. image: {
  12152. source: "./media/characters/zevulfius/foot.svg"
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Macro",
  12159. height: math.unit(750, "meters")
  12160. },
  12161. {
  12162. name: "Megamacro",
  12163. height: math.unit(20, "km"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Gigamacro",
  12168. height: math.unit(2000, "km")
  12169. },
  12170. {
  12171. name: "Teramacro",
  12172. height: math.unit(250000, "km")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(100, "feet"),
  12181. weight: math.unit(350, "kg"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/rikes/front.svg",
  12185. extra: 1565 / 1483,
  12186. bottom: 0.017
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Macro",
  12193. height: math.unit(100, "feet"),
  12194. default: true
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(8, "feet"),
  12203. weight: math.unit(356, "lb"),
  12204. name: "Front",
  12205. image: {
  12206. source: "./media/characters/adam-silver-mane/front.svg",
  12207. extra: 1036/937,
  12208. bottom: 63/1099
  12209. }
  12210. },
  12211. side: {
  12212. height: math.unit(8, "feet"),
  12213. weight: math.unit(356, "lb"),
  12214. name: "Side",
  12215. image: {
  12216. source: "./media/characters/adam-silver-mane/side.svg",
  12217. extra: 997/901,
  12218. bottom: 59/1056
  12219. }
  12220. },
  12221. frontNsfw: {
  12222. height: math.unit(8, "feet"),
  12223. weight: math.unit(356, "lb"),
  12224. name: "Front (NSFW)",
  12225. image: {
  12226. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12227. extra: 1036/937,
  12228. bottom: 63/1099
  12229. }
  12230. },
  12231. sideNsfw: {
  12232. height: math.unit(8, "feet"),
  12233. weight: math.unit(356, "lb"),
  12234. name: "Side (NSFW)",
  12235. image: {
  12236. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12237. extra: 997/901,
  12238. bottom: 59/1056
  12239. }
  12240. },
  12241. dick: {
  12242. height: math.unit(2.1, "feet"),
  12243. name: "Dick",
  12244. image: {
  12245. source: "./media/characters/adam-silver-mane/dick.svg"
  12246. }
  12247. },
  12248. taur: {
  12249. height: math.unit(16, "feet"),
  12250. weight: math.unit(1500, "kg"),
  12251. name: "Taur",
  12252. image: {
  12253. source: "./media/characters/adam-silver-mane/taur.svg",
  12254. extra: 1713 / 1571,
  12255. bottom: 0.01
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(8, "feet")
  12263. },
  12264. {
  12265. name: "Minimacro",
  12266. height: math.unit(80, "feet")
  12267. },
  12268. {
  12269. name: "MDA",
  12270. height: math.unit(80, "meters")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(800, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(8000, "feet")
  12280. },
  12281. {
  12282. name: "Gigamacro",
  12283. height: math.unit(800, "miles")
  12284. },
  12285. {
  12286. name: "Teramacro",
  12287. height: math.unit(80000, "miles")
  12288. },
  12289. {
  12290. name: "Celestial",
  12291. height: math.unit(8e6, "miles")
  12292. },
  12293. {
  12294. name: "Star Dragon",
  12295. height: math.unit(800000, "parsecs")
  12296. },
  12297. {
  12298. name: "Godly",
  12299. height: math.unit(800, "teraparsecs")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(6, "feet"),
  12308. weight: math.unit(150, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/ky'owin/front.svg",
  12312. extra: 3862/3053,
  12313. bottom: 74/3936
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(6 + 8 / 12, "feet")
  12321. },
  12322. {
  12323. name: "Large",
  12324. height: math.unit(68, "feet")
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(132, "feet")
  12329. },
  12330. {
  12331. name: "Macro+",
  12332. height: math.unit(340, "feet")
  12333. },
  12334. {
  12335. name: "Macro++",
  12336. height: math.unit(680, "feet"),
  12337. default: true
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(1, "mile")
  12342. },
  12343. {
  12344. name: "Megamacro+",
  12345. height: math.unit(10, "miles")
  12346. },
  12347. ]
  12348. ))
  12349. characterMakers.push(() => makeCharacter(
  12350. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12351. {
  12352. front: {
  12353. height: math.unit(4, "feet"),
  12354. weight: math.unit(50, "lb"),
  12355. name: "Front",
  12356. image: {
  12357. source: "./media/characters/mal/front.svg",
  12358. extra: 785 / 724,
  12359. bottom: 0.07
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Micro",
  12366. height: math.unit(4, "inches")
  12367. },
  12368. {
  12369. name: "Normal",
  12370. height: math.unit(4, "feet"),
  12371. default: true
  12372. },
  12373. {
  12374. name: "Macro",
  12375. height: math.unit(200, "feet")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12381. {
  12382. front: {
  12383. height: math.unit(6, "feet"),
  12384. weight: math.unit(150, "lb"),
  12385. name: "Front",
  12386. image: {
  12387. source: "./media/characters/jordan-deware/front.svg",
  12388. extra: 1191 / 1012
  12389. }
  12390. },
  12391. },
  12392. [
  12393. {
  12394. name: "Nano",
  12395. height: math.unit(0.01, "mm")
  12396. },
  12397. {
  12398. name: "Minimicro",
  12399. height: math.unit(1, "mm")
  12400. },
  12401. {
  12402. name: "Micro",
  12403. height: math.unit(0.5, "inches")
  12404. },
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(4, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Minimacro",
  12412. height: math.unit(40, "meters")
  12413. },
  12414. {
  12415. name: "Small Macro",
  12416. height: math.unit(400, "meters")
  12417. },
  12418. {
  12419. name: "Macro",
  12420. height: math.unit(4, "miles")
  12421. },
  12422. {
  12423. name: "Megamacro",
  12424. height: math.unit(40, "miles")
  12425. },
  12426. {
  12427. name: "Megamacro+",
  12428. height: math.unit(400, "miles")
  12429. },
  12430. {
  12431. name: "Gigamacro",
  12432. height: math.unit(400000, "miles")
  12433. },
  12434. ]
  12435. ))
  12436. characterMakers.push(() => makeCharacter(
  12437. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12438. {
  12439. front: {
  12440. height: math.unit(15, "feet"),
  12441. weight: math.unit(3000, "kg"),
  12442. preyCapacity: math.unit(450, "people"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/kimiko/front.svg",
  12446. extra: 875/832,
  12447. bottom: 36/911
  12448. },
  12449. extraAttributes: {
  12450. "pawSize": {
  12451. name: "Paw Size",
  12452. power: 1,
  12453. type: "length",
  12454. base: math.unit(0.9, "meters")
  12455. },
  12456. }
  12457. },
  12458. side: {
  12459. height: math.unit(15, "feet"),
  12460. weight: math.unit(3000, "kg"),
  12461. preyCapacity: math.unit(400, "people"),
  12462. name: "Side",
  12463. image: {
  12464. source: "./media/characters/kimiko/side.svg",
  12465. extra: 448/270,
  12466. bottom: 7/455
  12467. },
  12468. extraAttributes: {
  12469. "pawSize": {
  12470. name: "Paw Size",
  12471. power: 1,
  12472. type: "length",
  12473. base: math.unit(0.9, "meters")
  12474. },
  12475. }
  12476. },
  12477. maw: {
  12478. height: math.unit(0.81, "feet"),
  12479. name: "Maw",
  12480. image: {
  12481. source: "./media/characters/kimiko/maw.svg"
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(15, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(220, "feet")
  12494. },
  12495. {
  12496. name: "Macro+",
  12497. height: math.unit(1450, "feet")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(11500, "feet")
  12502. },
  12503. {
  12504. name: "Gigamacro",
  12505. height: math.unit(9500, "miles")
  12506. },
  12507. {
  12508. name: "Teramacro",
  12509. height: math.unit(2208005005, "miles")
  12510. },
  12511. {
  12512. name: "Examacro",
  12513. height: math.unit(2750, "parsecs")
  12514. },
  12515. {
  12516. name: "Zettamacro",
  12517. height: math.unit(101500, "parsecs")
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(6, "feet"),
  12526. weight: math.unit(70, "kg"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/andrew-sleepy/front.svg"
  12530. }
  12531. },
  12532. side: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(70, "kg"),
  12535. name: "Side",
  12536. image: {
  12537. source: "./media/characters/andrew-sleepy/side.svg"
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Micro",
  12544. height: math.unit(1, "mm"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(6, "feet"),
  12554. weight: math.unit(150, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/judio/front.svg",
  12558. extra: 1258 / 1110
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(5 + 6 / 12, "feet")
  12566. },
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(1000, "feet"),
  12570. default: true
  12571. },
  12572. {
  12573. name: "Megamacro",
  12574. height: math.unit(10, "miles")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12580. {
  12581. frontDressed: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(68, "kg"),
  12584. name: "Front (Dressed)",
  12585. image: {
  12586. source: "./media/characters/nomaxice/front-dressed.svg",
  12587. extra: 1137/824,
  12588. bottom: 74/1211
  12589. }
  12590. },
  12591. frontShorts: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(68, "kg"),
  12594. name: "Front (Shorts)",
  12595. image: {
  12596. source: "./media/characters/nomaxice/front-shorts.svg",
  12597. extra: 1137/824,
  12598. bottom: 74/1211
  12599. }
  12600. },
  12601. back: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(68, "kg"),
  12604. name: "Back",
  12605. image: {
  12606. source: "./media/characters/nomaxice/back.svg",
  12607. extra: 822/786,
  12608. bottom: 39/861
  12609. }
  12610. },
  12611. hand: {
  12612. height: math.unit(0.565, "feet"),
  12613. name: "Hand",
  12614. image: {
  12615. source: "./media/characters/nomaxice/hand.svg"
  12616. }
  12617. },
  12618. foot: {
  12619. height: math.unit(1, "feet"),
  12620. name: "Foot",
  12621. image: {
  12622. source: "./media/characters/nomaxice/foot.svg"
  12623. }
  12624. },
  12625. },
  12626. [
  12627. {
  12628. name: "Micro",
  12629. height: math.unit(8, "cm")
  12630. },
  12631. {
  12632. name: "Norm",
  12633. height: math.unit(1.82, "m")
  12634. },
  12635. {
  12636. name: "Norm+",
  12637. height: math.unit(8.8, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Big",
  12642. height: math.unit(8, "meters")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(18, "meters")
  12647. },
  12648. {
  12649. name: "Macro+",
  12650. height: math.unit(88, "meters")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12656. {
  12657. front: {
  12658. height: math.unit(12, "feet"),
  12659. weight: math.unit(1.5, "tons"),
  12660. name: "Front",
  12661. image: {
  12662. source: "./media/characters/dydros/front.svg",
  12663. extra: 863 / 800,
  12664. bottom: 0.015
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(12, "feet"),
  12669. weight: math.unit(1.5, "tons"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/dydros/back.svg",
  12673. extra: 900 / 843,
  12674. bottom: 0.005
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Normal",
  12681. height: math.unit(12, "feet"),
  12682. default: true
  12683. },
  12684. ]
  12685. ))
  12686. characterMakers.push(() => makeCharacter(
  12687. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12688. {
  12689. front: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(100, "kg"),
  12692. name: "Front",
  12693. image: {
  12694. source: "./media/characters/riggi/front.svg",
  12695. extra: 5787 / 5303
  12696. }
  12697. },
  12698. hyper: {
  12699. height: math.unit(6 * 5 / 3, "feet"),
  12700. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12701. name: "Hyper",
  12702. image: {
  12703. source: "./media/characters/riggi/hyper.svg",
  12704. extra: 3595 / 3485
  12705. }
  12706. },
  12707. },
  12708. [
  12709. {
  12710. name: "Small Macro",
  12711. height: math.unit(50, "feet")
  12712. },
  12713. {
  12714. name: "Default",
  12715. height: math.unit(200, "feet"),
  12716. default: true
  12717. },
  12718. {
  12719. name: "Loom",
  12720. height: math.unit(10000, "feet")
  12721. },
  12722. {
  12723. name: "Cruising Altitude",
  12724. height: math.unit(30000, "feet")
  12725. },
  12726. {
  12727. name: "Megamacro",
  12728. height: math.unit(100, "miles")
  12729. },
  12730. {
  12731. name: "Continent Sized",
  12732. height: math.unit(2800, "miles")
  12733. },
  12734. {
  12735. name: "Earth Sized",
  12736. height: math.unit(8000, "miles")
  12737. },
  12738. ]
  12739. ))
  12740. characterMakers.push(() => makeCharacter(
  12741. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12742. {
  12743. front: {
  12744. height: math.unit(6, "feet"),
  12745. weight: math.unit(250, "lb"),
  12746. name: "Front",
  12747. image: {
  12748. source: "./media/characters/alexi/front.svg",
  12749. extra: 3483 / 3291,
  12750. bottom: 0.04
  12751. }
  12752. },
  12753. back: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(250, "lb"),
  12756. name: "Back",
  12757. image: {
  12758. source: "./media/characters/alexi/back.svg",
  12759. extra: 3533 / 3356,
  12760. bottom: 0.021
  12761. }
  12762. },
  12763. frontTransforming: {
  12764. height: math.unit(8.58, "feet"),
  12765. weight: math.unit(1300, "lb"),
  12766. name: "Transforming",
  12767. image: {
  12768. source: "./media/characters/alexi/front-transforming.svg",
  12769. extra: 437 / 409,
  12770. bottom: 19 / 458.66
  12771. }
  12772. },
  12773. frontTransformed: {
  12774. height: math.unit(12.5, "feet"),
  12775. weight: math.unit(4000, "lb"),
  12776. name: "Transformed",
  12777. image: {
  12778. source: "./media/characters/alexi/front-transformed.svg",
  12779. extra: 639 / 614,
  12780. bottom: 30.55 / 671
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(14, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Minimacro",
  12792. height: math.unit(30, "meters")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(500, "meters")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(9000, "km")
  12801. },
  12802. {
  12803. name: "Teramacro",
  12804. height: math.unit(384000, "km")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/kayroo/front.svg",
  12817. extra: 1153 / 1038,
  12818. bottom: 0.06
  12819. }
  12820. },
  12821. foot: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Foot",
  12825. image: {
  12826. source: "./media/characters/kayroo/foot.svg"
  12827. }
  12828. },
  12829. },
  12830. [
  12831. {
  12832. name: "Normal",
  12833. height: math.unit(8, "feet"),
  12834. default: true
  12835. },
  12836. {
  12837. name: "Minimacro",
  12838. height: math.unit(250, "feet")
  12839. },
  12840. {
  12841. name: "Macro",
  12842. height: math.unit(2800, "feet")
  12843. },
  12844. {
  12845. name: "Megamacro",
  12846. height: math.unit(5200, "feet")
  12847. },
  12848. {
  12849. name: "Gigamacro",
  12850. height: math.unit(27000, "feet")
  12851. },
  12852. {
  12853. name: "Omega",
  12854. height: math.unit(45000, "feet")
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12860. {
  12861. front: {
  12862. height: math.unit(18, "feet"),
  12863. weight: math.unit(5800, "lb"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/rhys/front.svg",
  12867. extra: 3386 / 3090,
  12868. bottom: 0.07
  12869. }
  12870. },
  12871. },
  12872. [
  12873. {
  12874. name: "Normal",
  12875. height: math.unit(18, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Working Size",
  12880. height: math.unit(200, "feet")
  12881. },
  12882. {
  12883. name: "Demolition Size",
  12884. height: math.unit(2000, "feet")
  12885. },
  12886. {
  12887. name: "Maximum Licensed Size",
  12888. height: math.unit(5, "miles")
  12889. },
  12890. {
  12891. name: "Maximum Observed Size",
  12892. height: math.unit(10, "yottameters")
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12898. {
  12899. front: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(250, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/toto/front.svg",
  12905. extra: 527 / 479,
  12906. bottom: 0.05
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Micro",
  12913. height: math.unit(3, "feet")
  12914. },
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(10, "feet")
  12918. },
  12919. {
  12920. name: "Macro",
  12921. height: math.unit(150, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Megamacro",
  12926. height: math.unit(1200, "feet")
  12927. },
  12928. ]
  12929. ))
  12930. characterMakers.push(() => makeCharacter(
  12931. { name: "King", species: ["lion"], tags: ["anthro"] },
  12932. {
  12933. back: {
  12934. height: math.unit(6, "feet"),
  12935. weight: math.unit(150, "lb"),
  12936. name: "Back",
  12937. image: {
  12938. source: "./media/characters/king/back.svg"
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Micro",
  12945. height: math.unit(2, "inches")
  12946. },
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(8, "feet")
  12950. },
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(200, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(50, "miles")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12964. {
  12965. front: {
  12966. height: math.unit(11, "feet"),
  12967. weight: math.unit(1400, "lb"),
  12968. name: "Front",
  12969. image: {
  12970. source: "./media/characters/cordite/front.svg",
  12971. extra: 1919/1827,
  12972. bottom: 40/1959
  12973. }
  12974. },
  12975. side: {
  12976. height: math.unit(11, "feet"),
  12977. weight: math.unit(1400, "lb"),
  12978. name: "Side",
  12979. image: {
  12980. source: "./media/characters/cordite/side.svg",
  12981. extra: 1908/1793,
  12982. bottom: 38/1946
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(11, "feet"),
  12987. weight: math.unit(1400, "lb"),
  12988. name: "Back",
  12989. image: {
  12990. source: "./media/characters/cordite/back.svg",
  12991. extra: 1938/1837,
  12992. bottom: 10/1948
  12993. }
  12994. },
  12995. feral: {
  12996. height: math.unit(2, "feet"),
  12997. weight: math.unit(90, "lb"),
  12998. name: "Feral",
  12999. image: {
  13000. source: "./media/characters/cordite/feral.svg",
  13001. extra: 1260 / 755,
  13002. bottom: 0.05
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(11, "feet"),
  13010. default: true
  13011. },
  13012. ]
  13013. ))
  13014. characterMakers.push(() => makeCharacter(
  13015. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13016. {
  13017. front: {
  13018. height: math.unit(6, "feet"),
  13019. weight: math.unit(150, "lb"),
  13020. name: "Front",
  13021. image: {
  13022. source: "./media/characters/pianostrong/front.svg",
  13023. extra: 6577 / 6254,
  13024. bottom: 0.02
  13025. }
  13026. },
  13027. side: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(150, "lb"),
  13030. name: "Side",
  13031. image: {
  13032. source: "./media/characters/pianostrong/side.svg",
  13033. extra: 6106 / 5730
  13034. }
  13035. },
  13036. back: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Back",
  13040. image: {
  13041. source: "./media/characters/pianostrong/back.svg",
  13042. extra: 6085 / 5733,
  13043. bottom: 0.01
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(100, "feet")
  13051. },
  13052. {
  13053. name: "Macro+",
  13054. height: math.unit(300, "feet"),
  13055. default: true
  13056. },
  13057. {
  13058. name: "Macro++",
  13059. height: math.unit(1000, "feet")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/kona/front.svg",
  13072. extra: 2960 / 2629,
  13073. bottom: 0.005
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(11 + 8 / 12, "feet")
  13081. },
  13082. {
  13083. name: "Macro",
  13084. height: math.unit(850, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Macro+",
  13089. height: math.unit(1.5, "km"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(80, "miles")
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(3500, "miles")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13104. {
  13105. side: {
  13106. height: math.unit(1.9, "meters"),
  13107. weight: math.unit(326, "kg"),
  13108. name: "Side",
  13109. image: {
  13110. source: "./media/characters/levi/side.svg",
  13111. extra: 1704 / 1334,
  13112. bottom: 0.02
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Normal",
  13119. height: math.unit(1.9, "meters"),
  13120. default: true
  13121. },
  13122. {
  13123. name: "Macro",
  13124. height: math.unit(20, "meters")
  13125. },
  13126. {
  13127. name: "Macro+",
  13128. height: math.unit(200, "meters")
  13129. },
  13130. {
  13131. name: "Megamacro",
  13132. height: math.unit(2, "km")
  13133. },
  13134. {
  13135. name: "Megamacro+",
  13136. height: math.unit(20, "km")
  13137. },
  13138. {
  13139. name: "Gigamacro",
  13140. height: math.unit(2500, "km")
  13141. },
  13142. {
  13143. name: "Gigamacro+",
  13144. height: math.unit(120000, "km")
  13145. },
  13146. {
  13147. name: "Teramacro",
  13148. height: math.unit(7.77e6, "km")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(6 + 4/12, "feet"),
  13157. weight: math.unit(190, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/bmc/front.svg",
  13161. extra: 1626/1472,
  13162. bottom: 79/1705
  13163. }
  13164. },
  13165. back: {
  13166. height: math.unit(6 + 4/12, "feet"),
  13167. weight: math.unit(190, "lb"),
  13168. name: "Back",
  13169. image: {
  13170. source: "./media/characters/bmc/back.svg",
  13171. extra: 1640/1479,
  13172. bottom: 45/1685
  13173. }
  13174. },
  13175. frontArmor: {
  13176. height: math.unit(6 + 4/12, "feet"),
  13177. weight: math.unit(190, "lb"),
  13178. name: "Front-armor",
  13179. image: {
  13180. source: "./media/characters/bmc/front-armor.svg",
  13181. extra: 1538/1468,
  13182. bottom: 79/1617
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Human-sized",
  13189. height: math.unit(6 + 4 / 12, "feet")
  13190. },
  13191. {
  13192. name: "Interactive Size",
  13193. height: math.unit(25, "feet")
  13194. },
  13195. {
  13196. name: "Small",
  13197. height: math.unit(250, "feet")
  13198. },
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(1250, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Good Day",
  13206. height: math.unit(88, "miles")
  13207. },
  13208. {
  13209. name: "Largest Measured Size",
  13210. height: math.unit(105.960, "galaxies")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(20, "feet"),
  13219. weight: math.unit(2016, "kg"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/sven-the-kaiju/front.svg",
  13223. extra: 1277/1250,
  13224. bottom: 35/1312
  13225. }
  13226. },
  13227. mouth: {
  13228. height: math.unit(1.85, "feet"),
  13229. name: "Mouth",
  13230. image: {
  13231. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13232. }
  13233. },
  13234. },
  13235. [
  13236. {
  13237. name: "Fairy",
  13238. height: math.unit(6, "inches")
  13239. },
  13240. {
  13241. name: "Normal",
  13242. height: math.unit(20, "feet"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Rampage",
  13247. height: math.unit(200, "feet")
  13248. },
  13249. {
  13250. name: "Archfey Forest Guardian",
  13251. height: math.unit(1, "mile")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13257. {
  13258. front: {
  13259. height: math.unit(4, "meters"),
  13260. weight: math.unit(2, "tons"),
  13261. name: "Front",
  13262. image: {
  13263. source: "./media/characters/marik/front.svg",
  13264. extra: 1057 / 1003,
  13265. bottom: 0.08
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(4, "meters"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(20, "meters")
  13278. },
  13279. {
  13280. name: "Megamacro",
  13281. height: math.unit(50, "km")
  13282. },
  13283. {
  13284. name: "Gigamacro",
  13285. height: math.unit(100, "km")
  13286. },
  13287. {
  13288. name: "Alpha Macro",
  13289. height: math.unit(7.88e7, "yottameters")
  13290. },
  13291. ]
  13292. ))
  13293. characterMakers.push(() => makeCharacter(
  13294. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13295. {
  13296. front: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(110, "lb"),
  13299. name: "Front",
  13300. image: {
  13301. source: "./media/characters/mel/front.svg",
  13302. extra: 736 / 617,
  13303. bottom: 0.017
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Pico",
  13310. height: math.unit(3, "pm")
  13311. },
  13312. {
  13313. name: "Nano",
  13314. height: math.unit(3, "nm")
  13315. },
  13316. {
  13317. name: "Micro",
  13318. height: math.unit(0.3, "mm"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Micro+",
  13323. height: math.unit(3, "mm")
  13324. },
  13325. {
  13326. name: "Normal",
  13327. height: math.unit(5 + 10.5 / 12, "feet")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13333. {
  13334. kaiju: {
  13335. height: math.unit(1.75, "meters"),
  13336. weight: math.unit(55, "kg"),
  13337. name: "Kaiju",
  13338. image: {
  13339. source: "./media/characters/lykonous/kaiju.svg",
  13340. extra: 1055 / 946,
  13341. bottom: 0.135
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(2.5, "meters"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Kaiju Dragon",
  13353. height: math.unit(60, "meters")
  13354. },
  13355. {
  13356. name: "Mega Kaiju",
  13357. height: math.unit(120, "km")
  13358. },
  13359. {
  13360. name: "Giga Kaiju",
  13361. height: math.unit(200, "megameters")
  13362. },
  13363. {
  13364. name: "Terra Kaiju",
  13365. height: math.unit(400, "gigameters")
  13366. },
  13367. {
  13368. name: "Kaiju Dragon God",
  13369. height: math.unit(13000, "exaparsecs")
  13370. },
  13371. ]
  13372. ))
  13373. characterMakers.push(() => makeCharacter(
  13374. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13375. {
  13376. front: {
  13377. height: math.unit(6, "feet"),
  13378. weight: math.unit(150, "lb"),
  13379. name: "Front",
  13380. image: {
  13381. source: "./media/characters/blü/front.svg",
  13382. extra: 1883 / 1564,
  13383. bottom: 0.031
  13384. }
  13385. },
  13386. },
  13387. [
  13388. {
  13389. name: "Normal",
  13390. height: math.unit(13, "feet"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Big Boi",
  13395. height: math.unit(150, "meters")
  13396. },
  13397. {
  13398. name: "Mini Stomper",
  13399. height: math.unit(300, "meters")
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(1000, "meters")
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(11000, "meters")
  13408. },
  13409. {
  13410. name: "Gigamacro",
  13411. height: math.unit(11000, "km")
  13412. },
  13413. {
  13414. name: "Teramacro",
  13415. height: math.unit(420000, "km")
  13416. },
  13417. {
  13418. name: "Examacro",
  13419. height: math.unit(120, "parsecs")
  13420. },
  13421. {
  13422. name: "God Tho",
  13423. height: math.unit(98000000000, "parsecs")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13429. {
  13430. taurFront: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(200, "lb"),
  13433. name: "Taur (Front)",
  13434. image: {
  13435. source: "./media/characters/scales/taur-front.svg",
  13436. extra: 1,
  13437. bottom: 0.05
  13438. }
  13439. },
  13440. taurBack: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(200, "lb"),
  13443. name: "Taur (Back)",
  13444. image: {
  13445. source: "./media/characters/scales/taur-back.svg",
  13446. extra: 1,
  13447. bottom: 0.08
  13448. }
  13449. },
  13450. anthro: {
  13451. height: math.unit(6 * 7 / 12, "feet"),
  13452. weight: math.unit(100, "lb"),
  13453. name: "Anthro",
  13454. image: {
  13455. source: "./media/characters/scales/anthro.svg",
  13456. extra: 1,
  13457. bottom: 0.06
  13458. }
  13459. },
  13460. },
  13461. [
  13462. {
  13463. name: "Normal",
  13464. height: math.unit(12, "feet"),
  13465. default: true
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(150, "lb"),
  13475. name: "Front",
  13476. image: {
  13477. source: "./media/characters/koragos/front.svg",
  13478. extra: 841 / 794,
  13479. bottom: 0.035
  13480. }
  13481. },
  13482. back: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Back",
  13486. image: {
  13487. source: "./media/characters/koragos/back.svg",
  13488. extra: 841 / 810,
  13489. bottom: 0.022
  13490. }
  13491. },
  13492. },
  13493. [
  13494. {
  13495. name: "Normal",
  13496. height: math.unit(6 + 11 / 12, "feet"),
  13497. default: true
  13498. },
  13499. {
  13500. name: "Macro",
  13501. height: math.unit(490, "feet")
  13502. },
  13503. {
  13504. name: "Megamacro",
  13505. height: math.unit(10, "miles")
  13506. },
  13507. {
  13508. name: "Gigamacro",
  13509. height: math.unit(50, "miles")
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(6, "feet"),
  13518. weight: math.unit(250, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/xylrem/front.svg",
  13522. extra: 3323 / 3050,
  13523. bottom: 0.065
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Micro",
  13530. height: math.unit(4, "feet")
  13531. },
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(16, "feet"),
  13535. default: true
  13536. },
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(2720, "feet")
  13540. },
  13541. {
  13542. name: "Megamacro",
  13543. height: math.unit(25000, "miles")
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(8, "feet"),
  13552. weight: math.unit(250, "kg"),
  13553. name: "Front",
  13554. image: {
  13555. source: "./media/characters/ikideru/front.svg",
  13556. extra: 930 / 870,
  13557. bottom: 0.087
  13558. }
  13559. },
  13560. back: {
  13561. height: math.unit(8, "feet"),
  13562. weight: math.unit(250, "kg"),
  13563. name: "Back",
  13564. image: {
  13565. source: "./media/characters/ikideru/back.svg",
  13566. extra: 919 / 852,
  13567. bottom: 0.055
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Rare",
  13574. height: math.unit(8, "feet"),
  13575. default: true
  13576. },
  13577. {
  13578. name: "Playful Loom",
  13579. height: math.unit(80, "feet")
  13580. },
  13581. {
  13582. name: "City Leaner",
  13583. height: math.unit(230, "feet")
  13584. },
  13585. {
  13586. name: "Megamacro",
  13587. height: math.unit(2500, "feet")
  13588. },
  13589. {
  13590. name: "Gigamacro",
  13591. height: math.unit(26400, "feet")
  13592. },
  13593. {
  13594. name: "Tectonic Shifter",
  13595. height: math.unit(1.7, "megameters")
  13596. },
  13597. {
  13598. name: "Planet Carer",
  13599. height: math.unit(21, "megameters")
  13600. },
  13601. {
  13602. name: "God",
  13603. height: math.unit(11157.22, "parsecs")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(120, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/neo/front.svg"
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Micro",
  13622. height: math.unit(2, "inches"),
  13623. default: true
  13624. },
  13625. {
  13626. name: "Human Size",
  13627. height: math.unit(5 + 8 / 12, "feet")
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(13 + 10 / 12, "feet"),
  13636. weight: math.unit(5320, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/chauncey-chantz/front.svg",
  13640. extra: 1587 / 1435,
  13641. bottom: 0.02
  13642. }
  13643. },
  13644. },
  13645. [
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(13 + 10 / 12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(45, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(250, "miles")
  13658. },
  13659. {
  13660. name: "Planetary",
  13661. height: math.unit(10000, "miles")
  13662. },
  13663. {
  13664. name: "Galactic",
  13665. height: math.unit(40000, "parsecs")
  13666. },
  13667. {
  13668. name: "Universal",
  13669. height: math.unit(1, "yottameter")
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13675. {
  13676. front: {
  13677. height: math.unit(6, "feet"),
  13678. weight: math.unit(150, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/epifox/front.svg",
  13682. extra: 1,
  13683. bottom: 0.075
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(6, "inches")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(12, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(3810, "feet")
  13700. },
  13701. {
  13702. name: "Megamacro",
  13703. height: math.unit(500, "miles")
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(1.8796, "m"),
  13712. weight: math.unit(230, "lb"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/colin-t/front.svg",
  13716. extra: 1272 / 1193,
  13717. bottom: 0.07
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Micro",
  13724. height: math.unit(0.571, "meters")
  13725. },
  13726. {
  13727. name: "Normal",
  13728. height: math.unit(1.8796, "meters"),
  13729. default: true
  13730. },
  13731. {
  13732. name: "Tall",
  13733. height: math.unit(4, "meters")
  13734. },
  13735. {
  13736. name: "Macro",
  13737. height: math.unit(67.241, "meters")
  13738. },
  13739. {
  13740. name: "Megamacro",
  13741. height: math.unit(371.856, "meters")
  13742. },
  13743. {
  13744. name: "Planetary",
  13745. height: math.unit(12631.5689, "km")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(1.85, "meters"),
  13754. weight: math.unit(80, "kg"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/matvei/front.svg",
  13758. extra: 456/447,
  13759. bottom: 8/464
  13760. }
  13761. },
  13762. back: {
  13763. height: math.unit(1.85, "meters"),
  13764. weight: math.unit(80, "kg"),
  13765. name: "Back",
  13766. image: {
  13767. source: "./media/characters/matvei/back.svg",
  13768. extra: 434/427,
  13769. bottom: 11/445
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(1.85, "meters"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(5 + 9 / 12, "feet"),
  13786. weight: math.unit(70, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/quincy/front.svg",
  13790. extra: 3041 / 2751
  13791. }
  13792. },
  13793. back: {
  13794. height: math.unit(5 + 9 / 12, "feet"),
  13795. weight: math.unit(70, "lb"),
  13796. name: "Back",
  13797. image: {
  13798. source: "./media/characters/quincy/back.svg",
  13799. extra: 3041 / 2751
  13800. }
  13801. },
  13802. flying: {
  13803. height: math.unit(5 + 4 / 12, "feet"),
  13804. weight: math.unit(70, "lb"),
  13805. name: "Flying",
  13806. image: {
  13807. source: "./media/characters/quincy/flying.svg",
  13808. extra: 1044 / 930
  13809. }
  13810. },
  13811. },
  13812. [
  13813. {
  13814. name: "Micro",
  13815. height: math.unit(3, "cm")
  13816. },
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(5 + 9 / 12, "feet")
  13820. },
  13821. {
  13822. name: "Macro",
  13823. height: math.unit(200, "meters"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Megamacro",
  13828. height: math.unit(1000, "meters")
  13829. },
  13830. ]
  13831. ))
  13832. characterMakers.push(() => makeCharacter(
  13833. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13834. {
  13835. front: {
  13836. height: math.unit(3 + 11/12, "feet"),
  13837. weight: math.unit(50, "lb"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/vanrel/front.svg",
  13841. extra: 1104/949,
  13842. bottom: 52/1156
  13843. }
  13844. },
  13845. back: {
  13846. height: math.unit(3 + 11/12, "feet"),
  13847. weight: math.unit(50, "lb"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/vanrel/back.svg",
  13851. extra: 1119/976,
  13852. bottom: 37/1156
  13853. }
  13854. },
  13855. tome: {
  13856. height: math.unit(1.35, "feet"),
  13857. weight: math.unit(10, "lb"),
  13858. name: "Vanrel's Tome",
  13859. rename: true,
  13860. image: {
  13861. source: "./media/characters/vanrel/tome.svg"
  13862. }
  13863. },
  13864. beans: {
  13865. height: math.unit(0.89, "feet"),
  13866. name: "Beans",
  13867. image: {
  13868. source: "./media/characters/vanrel/beans.svg"
  13869. }
  13870. },
  13871. },
  13872. [
  13873. {
  13874. name: "Normal",
  13875. height: math.unit(3 + 11/12, "feet"),
  13876. default: true
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(7 + 5 / 12, "feet"),
  13885. name: "Front",
  13886. image: {
  13887. source: "./media/characters/kuiper-vanrel/front.svg",
  13888. extra: 1219/1169,
  13889. bottom: 69/1288
  13890. }
  13891. },
  13892. back: {
  13893. height: math.unit(7 + 5 / 12, "feet"),
  13894. name: "Back",
  13895. image: {
  13896. source: "./media/characters/kuiper-vanrel/back.svg",
  13897. extra: 1236/1193,
  13898. bottom: 27/1263
  13899. }
  13900. },
  13901. foot: {
  13902. height: math.unit(0.55, "meters"),
  13903. name: "Foot",
  13904. image: {
  13905. source: "./media/characters/kuiper-vanrel/foot.svg",
  13906. }
  13907. },
  13908. battle: {
  13909. height: math.unit(6.824, "feet"),
  13910. name: "Battle",
  13911. image: {
  13912. source: "./media/characters/kuiper-vanrel/battle.svg",
  13913. extra: 1466 / 1327,
  13914. bottom: 29 / 1492.5
  13915. }
  13916. },
  13917. meerkui: {
  13918. height: math.unit(18, "inches"),
  13919. name: "Meerkui",
  13920. image: {
  13921. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13922. extra: 1354/1289,
  13923. bottom: 69/1423
  13924. }
  13925. },
  13926. },
  13927. [
  13928. {
  13929. name: "Normal",
  13930. height: math.unit(7 + 5 / 12, "feet"),
  13931. default: true
  13932. },
  13933. ]
  13934. ))
  13935. characterMakers.push(() => makeCharacter(
  13936. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13937. {
  13938. front: {
  13939. height: math.unit(8 + 5 / 12, "feet"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/keset-vanrel/front.svg",
  13943. extra: 1231/1148,
  13944. bottom: 82/1313
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(8 + 5 / 12, "feet"),
  13949. name: "Back",
  13950. image: {
  13951. source: "./media/characters/keset-vanrel/back.svg",
  13952. extra: 1240/1174,
  13953. bottom: 33/1273
  13954. }
  13955. },
  13956. hand: {
  13957. height: math.unit(0.6, "meters"),
  13958. name: "Hand",
  13959. image: {
  13960. source: "./media/characters/keset-vanrel/hand.svg"
  13961. }
  13962. },
  13963. foot: {
  13964. height: math.unit(0.94978, "meters"),
  13965. name: "Foot",
  13966. image: {
  13967. source: "./media/characters/keset-vanrel/foot.svg"
  13968. }
  13969. },
  13970. battle: {
  13971. height: math.unit(7.408, "feet"),
  13972. name: "Battle",
  13973. image: {
  13974. source: "./media/characters/keset-vanrel/battle.svg",
  13975. extra: 1890 / 1386,
  13976. bottom: 73.28 / 1970
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(8 + 5 / 12, "feet"),
  13984. default: true
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13990. {
  13991. front: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(150, "lb"),
  13994. name: "Front",
  13995. image: {
  13996. source: "./media/characters/neos/front.svg",
  13997. extra: 1696 / 992,
  13998. bottom: 0.14
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(54, "cm"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Macro",
  14010. height: math.unit(100, "m")
  14011. },
  14012. {
  14013. name: "Megamacro",
  14014. height: math.unit(10, "km")
  14015. },
  14016. {
  14017. name: "Megamacro+",
  14018. height: math.unit(100, "km")
  14019. },
  14020. {
  14021. name: "Gigamacro",
  14022. height: math.unit(100, "Mm")
  14023. },
  14024. {
  14025. name: "Teramacro",
  14026. height: math.unit(100, "Gm")
  14027. },
  14028. {
  14029. name: "Examacro",
  14030. height: math.unit(100, "Em")
  14031. },
  14032. {
  14033. name: "Godly",
  14034. height: math.unit(10000, "Ym")
  14035. },
  14036. {
  14037. name: "Beyond Godly",
  14038. height: math.unit(25, "multiverses")
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14044. {
  14045. fluide_tame: {
  14046. height: math.unit(5, "feet"),
  14047. name: "Tame",
  14048. image: {
  14049. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14050. extra: 1655/1574,
  14051. bottom: 231/1886
  14052. },
  14053. form: "fluide",
  14054. default: true
  14055. },
  14056. fluide_nude: {
  14057. height: math.unit(5, "feet"),
  14058. name: "Nude",
  14059. image: {
  14060. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14061. extra: 1655/1574,
  14062. bottom: 231/1886
  14063. },
  14064. form: "fluide",
  14065. },
  14066. male_tame: {
  14067. height: math.unit(5, "feet"),
  14068. name: "Tame",
  14069. image: {
  14070. source: "./media/characters/sammy-mouse/male-tame.svg",
  14071. extra: 1655/1574,
  14072. bottom: 231/1886
  14073. },
  14074. form: "male",
  14075. default: true
  14076. },
  14077. male_nude: {
  14078. height: math.unit(5, "feet"),
  14079. name: "Nude",
  14080. image: {
  14081. source: "./media/characters/sammy-mouse/male-nude.svg",
  14082. extra: 1655/1574,
  14083. bottom: 231/1886
  14084. },
  14085. form: "male",
  14086. },
  14087. female_nude: {
  14088. height: math.unit(5, "feet"),
  14089. name: "Nude",
  14090. image: {
  14091. source: "./media/characters/sammy-mouse/female-nude.svg",
  14092. extra: 1655/1574,
  14093. bottom: 231/1886
  14094. },
  14095. form: "female",
  14096. default: true
  14097. },
  14098. mouth: {
  14099. height: math.unit(0.32, "feet"),
  14100. name: "Mouth",
  14101. image: {
  14102. source: "./media/characters/sammy-mouse/mouth.svg"
  14103. },
  14104. allForms: true
  14105. },
  14106. paw: {
  14107. height: math.unit(0.42, "feet"),
  14108. name: "Paw",
  14109. image: {
  14110. source: "./media/characters/sammy-mouse/paw.svg"
  14111. },
  14112. allForms: true
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Micro",
  14118. height: math.unit(5, "inches"),
  14119. allForms: true
  14120. },
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(5, "feet"),
  14124. default: true,
  14125. allForms: true
  14126. },
  14127. {
  14128. name: "Macro",
  14129. height: math.unit(60, "feet"),
  14130. allForms: true
  14131. },
  14132. ],
  14133. {
  14134. "fluide": {
  14135. name: "Fluide",
  14136. default: true
  14137. },
  14138. "male": {
  14139. name: "Male",
  14140. },
  14141. "female": {
  14142. name: "Female",
  14143. },
  14144. }
  14145. ))
  14146. characterMakers.push(() => makeCharacter(
  14147. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14148. {
  14149. front: {
  14150. height: math.unit(4, "feet"),
  14151. weight: math.unit(50, "lb"),
  14152. name: "Front",
  14153. image: {
  14154. source: "./media/characters/kole/front.svg",
  14155. extra: 1423 / 1303,
  14156. bottom: 0.025
  14157. }
  14158. },
  14159. back: {
  14160. height: math.unit(4, "feet"),
  14161. weight: math.unit(50, "lb"),
  14162. name: "Back",
  14163. image: {
  14164. source: "./media/characters/kole/back.svg",
  14165. extra: 1426 / 1280,
  14166. bottom: 0.02
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(4, "feet"),
  14174. default: true
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(2.5, "feet"),
  14183. weight: math.unit(32, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/rufran/front.svg",
  14187. extra: 1313/885,
  14188. bottom: 94/1407
  14189. }
  14190. },
  14191. side: {
  14192. height: math.unit(2.5, "feet"),
  14193. weight: math.unit(32, "lb"),
  14194. name: "Side",
  14195. image: {
  14196. source: "./media/characters/rufran/side.svg",
  14197. extra: 1109/852,
  14198. bottom: 118/1227
  14199. }
  14200. },
  14201. back: {
  14202. height: math.unit(2.5, "feet"),
  14203. weight: math.unit(32, "lb"),
  14204. name: "Back",
  14205. image: {
  14206. source: "./media/characters/rufran/back.svg",
  14207. extra: 1280/878,
  14208. bottom: 131/1411
  14209. }
  14210. },
  14211. mouth: {
  14212. height: math.unit(1.13, "feet"),
  14213. name: "Mouth",
  14214. image: {
  14215. source: "./media/characters/rufran/mouth.svg"
  14216. }
  14217. },
  14218. foot: {
  14219. height: math.unit(1.33, "feet"),
  14220. name: "Foot",
  14221. image: {
  14222. source: "./media/characters/rufran/foot.svg"
  14223. }
  14224. },
  14225. koboldFront: {
  14226. height: math.unit(2 + 6 / 12, "feet"),
  14227. weight: math.unit(20, "lb"),
  14228. name: "Front (Kobold)",
  14229. image: {
  14230. source: "./media/characters/rufran/kobold-front.svg",
  14231. extra: 2041 / 1839,
  14232. bottom: 0.055
  14233. }
  14234. },
  14235. koboldBack: {
  14236. height: math.unit(2 + 6 / 12, "feet"),
  14237. weight: math.unit(20, "lb"),
  14238. name: "Back (Kobold)",
  14239. image: {
  14240. source: "./media/characters/rufran/kobold-back.svg",
  14241. extra: 2054 / 1839,
  14242. bottom: 0.01
  14243. }
  14244. },
  14245. koboldHand: {
  14246. height: math.unit(0.2166, "meters"),
  14247. name: "Hand (Kobold)",
  14248. image: {
  14249. source: "./media/characters/rufran/kobold-hand.svg"
  14250. }
  14251. },
  14252. koboldFoot: {
  14253. height: math.unit(0.185, "meters"),
  14254. name: "Foot (Kobold)",
  14255. image: {
  14256. source: "./media/characters/rufran/kobold-foot.svg"
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Micro",
  14263. height: math.unit(1, "inch")
  14264. },
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(2 + 6 / 12, "feet"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Big",
  14272. height: math.unit(60, "feet")
  14273. },
  14274. {
  14275. name: "Macro",
  14276. height: math.unit(325, "feet")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(0.3, "meters"),
  14285. weight: math.unit(3.5, "kg"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/chip/front.svg",
  14289. extra: 748 / 674
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Micro",
  14296. height: math.unit(1, "inch"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14303. {
  14304. side: {
  14305. height: math.unit(2.3, "meters"),
  14306. weight: math.unit(3500, "lb"),
  14307. name: "Side",
  14308. image: {
  14309. source: "./media/characters/torvid/side.svg",
  14310. extra: 1972 / 722,
  14311. bottom: 0.035
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(2.3, "meters"),
  14319. default: true
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(2, "meters"),
  14328. weight: math.unit(150.5, "kg"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/susan/front.svg",
  14332. extra: 693 / 635,
  14333. bottom: 0.05
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(505, "miles"),
  14341. default: true
  14342. },
  14343. ]
  14344. ))
  14345. characterMakers.push(() => makeCharacter(
  14346. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14347. {
  14348. front: {
  14349. height: math.unit(6, "feet"),
  14350. weight: math.unit(150, "lb"),
  14351. name: "Front",
  14352. image: {
  14353. source: "./media/characters/raindrops/front.svg",
  14354. extra: 2655 / 2461,
  14355. bottom: 49 / 2705
  14356. }
  14357. },
  14358. back: {
  14359. height: math.unit(6, "feet"),
  14360. weight: math.unit(150, "lb"),
  14361. name: "Back",
  14362. image: {
  14363. source: "./media/characters/raindrops/back.svg",
  14364. extra: 2574 / 2400,
  14365. bottom: 65 / 2634
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Micro",
  14372. height: math.unit(6, "inches")
  14373. },
  14374. {
  14375. name: "Normal",
  14376. height: math.unit(6 + 2 / 12, "feet")
  14377. },
  14378. {
  14379. name: "Macro",
  14380. height: math.unit(131, "feet"),
  14381. default: true
  14382. },
  14383. {
  14384. name: "Megamacro",
  14385. height: math.unit(15, "miles")
  14386. },
  14387. {
  14388. name: "Gigamacro",
  14389. height: math.unit(4000, "miles")
  14390. },
  14391. {
  14392. name: "Teramacro",
  14393. height: math.unit(315000, "miles")
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14399. {
  14400. normal_front: {
  14401. height: math.unit(9 + 2/12, "feet"),
  14402. weight: math.unit(325, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/tezwa/normal-front.svg",
  14406. extra: 770/714,
  14407. bottom: 32/802
  14408. },
  14409. form: "normal",
  14410. },
  14411. normal_paw: {
  14412. height: math.unit(2.2, "feet"),
  14413. name: "Paw",
  14414. image: {
  14415. source: "./media/characters/tezwa/paw.svg"
  14416. },
  14417. form: "normal",
  14418. },
  14419. muscled_front: {
  14420. height: math.unit(916 + 8/12, "feet"),
  14421. weight: math.unit(500000, "tons"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/tezwa/muscled-front.svg",
  14425. extra: 1840/1697,
  14426. bottom: 29/1869
  14427. },
  14428. form: "muscled",
  14429. },
  14430. muscled_paw: {
  14431. height: math.unit(200, "feet"),
  14432. name: "Paw",
  14433. image: {
  14434. source: "./media/characters/tezwa/paw.svg"
  14435. },
  14436. form: "muscled",
  14437. },
  14438. },
  14439. [
  14440. {
  14441. name: "Normal",
  14442. height: math.unit(9 + 2 / 12, "feet"),
  14443. default: true,
  14444. form: "normal"
  14445. },
  14446. {
  14447. name: "Normal",
  14448. height: math.unit(916 + 8/12, "feet"),
  14449. default: true,
  14450. form: "muscled"
  14451. },
  14452. ],
  14453. {
  14454. "normal": {
  14455. name: "Normal",
  14456. default: true
  14457. },
  14458. "muscled": {
  14459. name: "Muscled",
  14460. },
  14461. }
  14462. ))
  14463. characterMakers.push(() => makeCharacter(
  14464. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14465. {
  14466. front: {
  14467. height: math.unit(58, "feet"),
  14468. weight: math.unit(89000, "lb"),
  14469. name: "Front",
  14470. image: {
  14471. source: "./media/characters/typhus/front.svg",
  14472. extra: 816 / 800,
  14473. bottom: 0.065
  14474. }
  14475. },
  14476. },
  14477. [
  14478. {
  14479. name: "Macro",
  14480. height: math.unit(58, "feet"),
  14481. default: true
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(12, "feet"),
  14490. weight: math.unit(6, "tonnes"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/lyra-von-wulf/front.svg",
  14494. extra: 1,
  14495. bottom: 0.10
  14496. }
  14497. },
  14498. frontMecha: {
  14499. height: math.unit(12, "feet"),
  14500. weight: math.unit(12, "tonnes"),
  14501. name: "Front (Mecha)",
  14502. image: {
  14503. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14504. extra: 1,
  14505. bottom: 0.042
  14506. }
  14507. },
  14508. maw: {
  14509. height: math.unit(2.2, "feet"),
  14510. name: "Maw",
  14511. image: {
  14512. source: "./media/characters/lyra-von-wulf/maw.svg"
  14513. }
  14514. },
  14515. },
  14516. [
  14517. {
  14518. name: "Normal",
  14519. height: math.unit(12, "feet"),
  14520. default: true
  14521. },
  14522. {
  14523. name: "Classic",
  14524. height: math.unit(50, "feet")
  14525. },
  14526. {
  14527. name: "Macro",
  14528. height: math.unit(500, "feet")
  14529. },
  14530. {
  14531. name: "Megamacro",
  14532. height: math.unit(1, "mile")
  14533. },
  14534. {
  14535. name: "Gigamacro",
  14536. height: math.unit(400, "miles")
  14537. },
  14538. {
  14539. name: "Teramacro",
  14540. height: math.unit(22000, "miles")
  14541. },
  14542. {
  14543. name: "Solarmacro",
  14544. height: math.unit(8600000, "miles")
  14545. },
  14546. {
  14547. name: "Galactic",
  14548. height: math.unit(1057000, "lightyears")
  14549. },
  14550. ]
  14551. ))
  14552. characterMakers.push(() => makeCharacter(
  14553. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14554. {
  14555. front: {
  14556. height: math.unit(6 + 10 / 12, "feet"),
  14557. weight: math.unit(150, "lb"),
  14558. name: "Front",
  14559. image: {
  14560. source: "./media/characters/dixon/front.svg",
  14561. extra: 3361 / 3209,
  14562. bottom: 0.01
  14563. }
  14564. },
  14565. },
  14566. [
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(6 + 10 / 12, "feet"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Big",
  14574. height: math.unit(12, "meters")
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(500, "meters")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(2, "km")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14588. {
  14589. kingCheetah_front: {
  14590. height: math.unit(1.85, "meters"),
  14591. weight: math.unit(68, "kg"),
  14592. name: "Front",
  14593. image: {
  14594. source: "./media/characters/kauko/king-cheetah-front.svg",
  14595. extra: 1007/972,
  14596. bottom: 35/1042
  14597. },
  14598. form: "king-cheetah",
  14599. default: true
  14600. },
  14601. kingCheetah_back: {
  14602. height: math.unit(1.85, "meters"),
  14603. weight: math.unit(68, "kg"),
  14604. name: "Back",
  14605. image: {
  14606. source: "./media/characters/kauko/king-cheetah-back.svg",
  14607. extra: 1015/980,
  14608. bottom: 11/1026
  14609. },
  14610. form: "king-cheetah",
  14611. },
  14612. kingCheetah_hand: {
  14613. height: math.unit(0.23, "meters"),
  14614. name: "Hand",
  14615. image: {
  14616. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14617. },
  14618. form: "king-cheetah",
  14619. },
  14620. kingCheetah_paw: {
  14621. height: math.unit(0.38, "meters"),
  14622. name: "Paw",
  14623. image: {
  14624. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14625. },
  14626. form: "king-cheetah",
  14627. },
  14628. kingCheetah_nape: {
  14629. height: math.unit(0.23, "meters"),
  14630. name: "Nape",
  14631. image: {
  14632. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14633. },
  14634. form: "king-cheetah",
  14635. },
  14636. wolf_front: {
  14637. height: math.unit(1.88, "meters"),
  14638. weight: math.unit(74, "kg"),
  14639. name: "Front",
  14640. image: {
  14641. source: "./media/characters/kauko/wolf-front.svg",
  14642. extra: 952/908,
  14643. bottom: 64/1016
  14644. },
  14645. form: "wolf",
  14646. default: true
  14647. },
  14648. wolf_dressed: {
  14649. height: math.unit(1.88, "meters"),
  14650. weight: math.unit(74, "kg"),
  14651. name: "Dressed",
  14652. image: {
  14653. source: "./media/characters/kauko/wolf-dressed.svg",
  14654. extra: 963/916,
  14655. bottom: 101/1064
  14656. },
  14657. form: "wolf",
  14658. },
  14659. wolf_hand: {
  14660. height: math.unit(0.3, "meters"),
  14661. name: "Hand",
  14662. image: {
  14663. source: "./media/characters/kauko/wolf-hand.svg"
  14664. },
  14665. form: "wolf",
  14666. },
  14667. wolf_paw: {
  14668. height: math.unit(0.407, "meters"),
  14669. name: "Paw",
  14670. image: {
  14671. source: "./media/characters/kauko/wolf-paw.svg"
  14672. },
  14673. form: "wolf",
  14674. },
  14675. wolf_nape: {
  14676. height: math.unit(0.25, "meters"),
  14677. name: "Nape",
  14678. image: {
  14679. source: "./media/characters/kauko/wolf-nape.svg"
  14680. },
  14681. form: "wolf",
  14682. },
  14683. },
  14684. [
  14685. {
  14686. name: "Normal",
  14687. height: math.unit(1.85, "m"),
  14688. default: true,
  14689. form: "king-cheetah"
  14690. },
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(1.88, "m"),
  14694. default: true,
  14695. form: "wolf"
  14696. },
  14697. ],
  14698. {
  14699. "king-cheetah": {
  14700. name: "King Cheetah",
  14701. default: true
  14702. },
  14703. "wolf": {
  14704. name: "Wolf",
  14705. },
  14706. }
  14707. ))
  14708. characterMakers.push(() => makeCharacter(
  14709. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14710. {
  14711. frontSfw: {
  14712. height: math.unit(5, "meters"),
  14713. weight: math.unit(4250, "lb"),
  14714. name: "Front",
  14715. image: {
  14716. source: "./media/characters/varg/front-sfw.svg",
  14717. extra: 1103/1010,
  14718. bottom: 50/1153
  14719. },
  14720. form: "anthro",
  14721. default: true
  14722. },
  14723. backSfw: {
  14724. height: math.unit(5, "meters"),
  14725. weight: math.unit(4250, "lb"),
  14726. name: "Back",
  14727. image: {
  14728. source: "./media/characters/varg/back-sfw.svg",
  14729. extra: 1038/1022,
  14730. bottom: 36/1074
  14731. },
  14732. form: "anthro"
  14733. },
  14734. frontNsfw: {
  14735. height: math.unit(5, "meters"),
  14736. weight: math.unit(4250, "lb"),
  14737. name: "Front (NSFW)",
  14738. image: {
  14739. source: "./media/characters/varg/front-nsfw.svg",
  14740. extra: 1103/1010,
  14741. bottom: 50/1153
  14742. },
  14743. form: "anthro"
  14744. },
  14745. sheath: {
  14746. height: math.unit(3.8, "feet"),
  14747. weight: math.unit(90, "kilograms"),
  14748. name: "Sheath",
  14749. image: {
  14750. source: "./media/characters/varg/sheath.svg"
  14751. },
  14752. form: "anthro"
  14753. },
  14754. dick: {
  14755. height: math.unit(4.6, "feet"),
  14756. weight: math.unit(451, "kilograms"),
  14757. name: "Dick",
  14758. image: {
  14759. source: "./media/characters/varg/dick.svg"
  14760. },
  14761. form: "anthro"
  14762. },
  14763. feralSfw: {
  14764. height: math.unit(5, "meters"),
  14765. weight: math.unit(100000, "lb"),
  14766. name: "Side",
  14767. image: {
  14768. source: "./media/characters/varg/feral-sfw.svg",
  14769. extra: 1065/511,
  14770. bottom: 211/1276
  14771. },
  14772. form: "feral",
  14773. default: true
  14774. },
  14775. feralNsfw: {
  14776. height: math.unit(5, "meters"),
  14777. weight: math.unit(100000, "lb"),
  14778. name: "Side (NSFW)",
  14779. image: {
  14780. source: "./media/characters/varg/feral-nsfw.svg",
  14781. extra: 1065/511,
  14782. bottom: 211/1276
  14783. },
  14784. form: "feral",
  14785. },
  14786. feralSheath: {
  14787. height: math.unit(9.8, "feet"),
  14788. weight: math.unit(2000, "kilograms"),
  14789. name: "Sheath",
  14790. image: {
  14791. source: "./media/characters/varg/sheath.svg"
  14792. },
  14793. form: "feral"
  14794. },
  14795. feralDick: {
  14796. height: math.unit(13.11, "feet"),
  14797. weight: math.unit(10440, "kilograms"),
  14798. name: "Dick",
  14799. image: {
  14800. source: "./media/characters/varg/dick.svg"
  14801. },
  14802. form: "feral"
  14803. },
  14804. },
  14805. [
  14806. {
  14807. name: "Normal",
  14808. height: math.unit(5, "meters"),
  14809. form: "anthro"
  14810. },
  14811. {
  14812. name: "Macro",
  14813. height: math.unit(200, "meters"),
  14814. form: "anthro"
  14815. },
  14816. {
  14817. name: "Megamacro",
  14818. height: math.unit(20, "kilometers"),
  14819. form: "anthro"
  14820. },
  14821. {
  14822. name: "True Size",
  14823. height: math.unit(211, "km"),
  14824. form: "anthro",
  14825. default: true
  14826. },
  14827. {
  14828. name: "Gigamacro",
  14829. height: math.unit(1000, "km"),
  14830. form: "anthro"
  14831. },
  14832. {
  14833. name: "Gigamacro+",
  14834. height: math.unit(8000, "km"),
  14835. form: "anthro"
  14836. },
  14837. {
  14838. name: "Teramacro",
  14839. height: math.unit(1000000, "km"),
  14840. form: "anthro"
  14841. },
  14842. {
  14843. name: "Normal",
  14844. height: math.unit(5, "meters"),
  14845. form: "feral"
  14846. },
  14847. {
  14848. name: "Macro",
  14849. height: math.unit(200, "meters"),
  14850. form: "feral"
  14851. },
  14852. {
  14853. name: "Megamacro",
  14854. height: math.unit(20, "kilometers"),
  14855. form: "feral"
  14856. },
  14857. {
  14858. name: "True Size",
  14859. height: math.unit(211, "km"),
  14860. form: "feral",
  14861. default: true
  14862. },
  14863. {
  14864. name: "Gigamacro",
  14865. height: math.unit(1000, "km"),
  14866. form: "feral"
  14867. },
  14868. {
  14869. name: "Gigamacro+",
  14870. height: math.unit(8000, "km"),
  14871. form: "feral"
  14872. },
  14873. {
  14874. name: "Teramacro",
  14875. height: math.unit(1000000, "km"),
  14876. form: "feral"
  14877. },
  14878. ],
  14879. {
  14880. "anthro": {
  14881. name: "Anthro",
  14882. default: true
  14883. },
  14884. "feral": {
  14885. name: "Feral",
  14886. },
  14887. }
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14891. {
  14892. front: {
  14893. height: math.unit(7 + 7 / 12, "feet"),
  14894. weight: math.unit(267, "lb"),
  14895. name: "Front",
  14896. image: {
  14897. source: "./media/characters/dayza/front.svg",
  14898. extra: 1262 / 1200,
  14899. bottom: 0.035
  14900. }
  14901. },
  14902. side: {
  14903. height: math.unit(7 + 7 / 12, "feet"),
  14904. weight: math.unit(267, "lb"),
  14905. name: "Side",
  14906. image: {
  14907. source: "./media/characters/dayza/side.svg",
  14908. extra: 1295 / 1245,
  14909. bottom: 0.05
  14910. }
  14911. },
  14912. back: {
  14913. height: math.unit(7 + 7 / 12, "feet"),
  14914. weight: math.unit(267, "lb"),
  14915. name: "Back",
  14916. image: {
  14917. source: "./media/characters/dayza/back.svg",
  14918. extra: 1241 / 1170
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(7 + 7 / 12, "feet"),
  14926. default: true
  14927. },
  14928. {
  14929. name: "Macro",
  14930. height: math.unit(155, "feet")
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(6 + 5 / 12, "feet"),
  14939. weight: math.unit(160, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/xanthos/front.svg",
  14943. extra: 1,
  14944. bottom: 0.04
  14945. }
  14946. },
  14947. back: {
  14948. height: math.unit(6 + 5 / 12, "feet"),
  14949. weight: math.unit(160, "lb"),
  14950. name: "Back",
  14951. image: {
  14952. source: "./media/characters/xanthos/back.svg",
  14953. extra: 1,
  14954. bottom: 0.03
  14955. }
  14956. },
  14957. hand: {
  14958. height: math.unit(0.928, "feet"),
  14959. name: "Hand",
  14960. image: {
  14961. source: "./media/characters/xanthos/hand.svg"
  14962. }
  14963. },
  14964. foot: {
  14965. height: math.unit(1.286, "feet"),
  14966. name: "Foot",
  14967. image: {
  14968. source: "./media/characters/xanthos/foot.svg"
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(6 + 5 / 12, "feet"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Normal+",
  14980. height: math.unit(6, "meters")
  14981. },
  14982. {
  14983. name: "Macro",
  14984. height: math.unit(40, "feet")
  14985. },
  14986. {
  14987. name: "Macro+",
  14988. height: math.unit(200, "meters")
  14989. },
  14990. {
  14991. name: "Megamacro",
  14992. height: math.unit(20, "km")
  14993. },
  14994. {
  14995. name: "Megamacro+",
  14996. height: math.unit(100, "km")
  14997. },
  14998. {
  14999. name: "Gigamacro",
  15000. height: math.unit(200, "megameters")
  15001. },
  15002. {
  15003. name: "Gigamacro+",
  15004. height: math.unit(1.5, "gigameters")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(6 + 3 / 12, "feet"),
  15013. weight: math.unit(215, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/grynn/front.svg",
  15017. extra: 4627 / 4209,
  15018. bottom: 0.047
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Micro",
  15025. height: math.unit(6, "inches")
  15026. },
  15027. {
  15028. name: "Normal",
  15029. height: math.unit(6 + 3 / 12, "feet"),
  15030. default: true
  15031. },
  15032. {
  15033. name: "Big",
  15034. height: math.unit(104, "feet")
  15035. },
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(944, "feet")
  15039. },
  15040. {
  15041. name: "Macro+",
  15042. height: math.unit(9480, "feet")
  15043. },
  15044. {
  15045. name: "Megamacro",
  15046. height: math.unit(78752, "feet")
  15047. },
  15048. {
  15049. name: "Megamacro+",
  15050. height: math.unit(630128, "feet")
  15051. },
  15052. {
  15053. name: "Megamacro++",
  15054. height: math.unit(3150695, "feet")
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(7 + 5 / 12, "feet"),
  15063. weight: math.unit(450, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/mocha-aura/front.svg",
  15067. extra: 1907 / 1817,
  15068. bottom: 0.04
  15069. }
  15070. },
  15071. back: {
  15072. height: math.unit(7 + 5 / 12, "feet"),
  15073. weight: math.unit(450, "lb"),
  15074. name: "Back",
  15075. image: {
  15076. source: "./media/characters/mocha-aura/back.svg",
  15077. extra: 1900 / 1825,
  15078. bottom: 0.045
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Nano",
  15085. height: math.unit(1, "nm")
  15086. },
  15087. {
  15088. name: "Megamicro",
  15089. height: math.unit(1, "mm")
  15090. },
  15091. {
  15092. name: "Micro",
  15093. height: math.unit(3, "inches")
  15094. },
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(7 + 5 / 12, "feet"),
  15098. default: true
  15099. },
  15100. {
  15101. name: "Macro",
  15102. height: math.unit(30, "feet")
  15103. },
  15104. {
  15105. name: "Megamacro",
  15106. height: math.unit(3500, "feet")
  15107. },
  15108. {
  15109. name: "Teramacro",
  15110. height: math.unit(500000, "miles")
  15111. },
  15112. {
  15113. name: "Petamacro",
  15114. height: math.unit(50000000000000000, "parsecs")
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(6, "feet"),
  15123. weight: math.unit(150, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/ilisha-devya/front.svg",
  15127. extra: 1053/1049,
  15128. bottom: 270/1323
  15129. }
  15130. },
  15131. back: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(150, "lb"),
  15134. name: "Back",
  15135. image: {
  15136. source: "./media/characters/ilisha-devya/back.svg",
  15137. extra: 1131/1128,
  15138. bottom: 39/1170
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Macro",
  15145. height: math.unit(500, "feet"),
  15146. default: true
  15147. },
  15148. {
  15149. name: "Megamacro",
  15150. height: math.unit(10, "miles")
  15151. },
  15152. {
  15153. name: "Gigamacro",
  15154. height: math.unit(100000, "miles")
  15155. },
  15156. {
  15157. name: "Examacro",
  15158. height: math.unit(1e9, "lightyears")
  15159. },
  15160. {
  15161. name: "Omniversal",
  15162. height: math.unit(1e33, "lightyears")
  15163. },
  15164. {
  15165. name: "Beyond Infinite",
  15166. height: math.unit(1e100, "lightyears")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15172. {
  15173. Side: {
  15174. height: math.unit(6, "feet"),
  15175. weight: math.unit(150, "lb"),
  15176. name: "Side",
  15177. image: {
  15178. source: "./media/characters/mira/side.svg",
  15179. extra: 900 / 799,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Human Size",
  15187. height: math.unit(6, "feet")
  15188. },
  15189. {
  15190. name: "Macro",
  15191. height: math.unit(100, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(10, "miles")
  15197. },
  15198. {
  15199. name: "Gigamacro",
  15200. height: math.unit(25000, "miles")
  15201. },
  15202. {
  15203. name: "Teramacro",
  15204. height: math.unit(300, "AU")
  15205. },
  15206. {
  15207. name: "Full Size",
  15208. height: math.unit(4.5e10, "lightyears")
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(6, "feet"),
  15217. weight: math.unit(150, "lb"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/holly/front.svg",
  15221. extra: 639 / 606
  15222. }
  15223. },
  15224. back: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Back",
  15228. image: {
  15229. source: "./media/characters/holly/back.svg",
  15230. extra: 623 / 598
  15231. }
  15232. },
  15233. frontWorking: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front (Working)",
  15237. image: {
  15238. source: "./media/characters/holly/front-working.svg",
  15239. extra: 607 / 577,
  15240. bottom: 0.048
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(12 + 3 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/porter/front.svg",
  15261. extra: 1,
  15262. bottom: 0.01
  15263. }
  15264. },
  15265. frontRobes: {
  15266. height: math.unit(6, "feet"),
  15267. weight: math.unit(150, "lb"),
  15268. name: "Front (Robes)",
  15269. image: {
  15270. source: "./media/characters/porter/front-robes.svg",
  15271. extra: 1.01,
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. },
  15276. [
  15277. {
  15278. name: "Normal",
  15279. height: math.unit(11 + 9 / 12, "feet"),
  15280. default: true
  15281. },
  15282. ]
  15283. ))
  15284. characterMakers.push(() => makeCharacter(
  15285. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15286. {
  15287. legendary: {
  15288. height: math.unit(6, "feet"),
  15289. weight: math.unit(150, "lb"),
  15290. name: "Legendary",
  15291. image: {
  15292. source: "./media/characters/lucy/legendary.svg",
  15293. extra: 1355 / 1100,
  15294. bottom: 0.045
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Legendary",
  15301. height: math.unit(86882 * 2, "miles"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15308. {
  15309. front: {
  15310. height: math.unit(6, "feet"),
  15311. weight: math.unit(150, "lb"),
  15312. name: "Front",
  15313. image: {
  15314. source: "./media/characters/drusilla/front.svg",
  15315. extra: 678 / 635,
  15316. bottom: 0.03
  15317. }
  15318. },
  15319. back: {
  15320. height: math.unit(6, "feet"),
  15321. weight: math.unit(150, "lb"),
  15322. name: "Back",
  15323. image: {
  15324. source: "./media/characters/drusilla/back.svg",
  15325. extra: 678 / 635,
  15326. bottom: 0.005
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Macro",
  15333. height: math.unit(100, "feet")
  15334. },
  15335. {
  15336. name: "Canon Height",
  15337. height: math.unit(2000, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6, "feet"),
  15347. weight: math.unit(180, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/renard-thatch/front.svg",
  15351. extra: 2411 / 2275,
  15352. bottom: 0.01
  15353. }
  15354. },
  15355. frontPosing: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(180, "lb"),
  15358. name: "Front (Posing)",
  15359. image: {
  15360. source: "./media/characters/renard-thatch/front-posing.svg",
  15361. extra: 2381 / 2261,
  15362. bottom: 0.01
  15363. }
  15364. },
  15365. back: {
  15366. height: math.unit(6, "feet"),
  15367. weight: math.unit(180, "lb"),
  15368. name: "Back",
  15369. image: {
  15370. source: "./media/characters/renard-thatch/back.svg",
  15371. extra: 2428 / 2288
  15372. }
  15373. },
  15374. },
  15375. [
  15376. {
  15377. name: "Micro",
  15378. height: math.unit(3, "inches")
  15379. },
  15380. {
  15381. name: "Default",
  15382. height: math.unit(6, "feet"),
  15383. default: true
  15384. },
  15385. {
  15386. name: "Macro",
  15387. height: math.unit(75, "feet")
  15388. },
  15389. ]
  15390. ))
  15391. characterMakers.push(() => makeCharacter(
  15392. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15393. {
  15394. front: {
  15395. height: math.unit(1450, "feet"),
  15396. weight: math.unit(1.21e6, "tons"),
  15397. name: "Front",
  15398. image: {
  15399. source: "./media/characters/sekvra/front.svg",
  15400. extra: 1193/1190,
  15401. bottom: 78/1271
  15402. }
  15403. },
  15404. side: {
  15405. height: math.unit(1450, "feet"),
  15406. weight: math.unit(1.21e6, "tons"),
  15407. name: "Side",
  15408. image: {
  15409. source: "./media/characters/sekvra/side.svg",
  15410. extra: 1193/1190,
  15411. bottom: 52/1245
  15412. }
  15413. },
  15414. back: {
  15415. height: math.unit(1450, "feet"),
  15416. weight: math.unit(1.21e6, "tons"),
  15417. name: "Back",
  15418. image: {
  15419. source: "./media/characters/sekvra/back.svg",
  15420. extra: 1219/1216,
  15421. bottom: 21/1240
  15422. }
  15423. },
  15424. frontClothed: {
  15425. height: math.unit(1450, "feet"),
  15426. weight: math.unit(1.21e6, "tons"),
  15427. name: "Front (Clothed)",
  15428. image: {
  15429. source: "./media/characters/sekvra/front-clothed.svg",
  15430. extra: 1192/1189,
  15431. bottom: 79/1271
  15432. }
  15433. },
  15434. },
  15435. [
  15436. {
  15437. name: "Macro",
  15438. height: math.unit(1450, "feet"),
  15439. default: true
  15440. },
  15441. {
  15442. name: "Megamacro",
  15443. height: math.unit(15000, "feet")
  15444. },
  15445. ]
  15446. ))
  15447. characterMakers.push(() => makeCharacter(
  15448. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15449. {
  15450. front: {
  15451. height: math.unit(6, "feet"),
  15452. weight: math.unit(150, "lb"),
  15453. name: "Front",
  15454. image: {
  15455. source: "./media/characters/carmine/front.svg",
  15456. extra: 1557/1538,
  15457. bottom: 68/1625
  15458. }
  15459. },
  15460. frontArmor: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front (Armor)",
  15464. image: {
  15465. source: "./media/characters/carmine/front-armor.svg",
  15466. extra: 1549/1530,
  15467. bottom: 82/1631
  15468. }
  15469. },
  15470. mouth: {
  15471. height: math.unit(0.55, "feet"),
  15472. name: "Mouth",
  15473. image: {
  15474. source: "./media/characters/carmine/mouth.svg"
  15475. }
  15476. },
  15477. hand: {
  15478. height: math.unit(1.05, "feet"),
  15479. name: "Hand",
  15480. image: {
  15481. source: "./media/characters/carmine/hand.svg"
  15482. }
  15483. },
  15484. foot: {
  15485. height: math.unit(0.6, "feet"),
  15486. name: "Foot",
  15487. image: {
  15488. source: "./media/characters/carmine/foot.svg"
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Large",
  15495. height: math.unit(1, "mile")
  15496. },
  15497. {
  15498. name: "Huge",
  15499. height: math.unit(40, "miles"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Colossal",
  15504. height: math.unit(2500, "miles")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/elyssia/front.svg",
  15517. extra: 2201 / 2035,
  15518. bottom: 0.05
  15519. }
  15520. },
  15521. frontClothed: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(150, "lb"),
  15524. name: "Front (Clothed)",
  15525. image: {
  15526. source: "./media/characters/elyssia/front-clothed.svg",
  15527. extra: 2201 / 2035,
  15528. bottom: 0.05
  15529. }
  15530. },
  15531. back: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(150, "lb"),
  15534. name: "Back",
  15535. image: {
  15536. source: "./media/characters/elyssia/back.svg",
  15537. extra: 2201 / 2035,
  15538. bottom: 0.013
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Smaller",
  15545. height: math.unit(150, "feet")
  15546. },
  15547. {
  15548. name: "Standard",
  15549. height: math.unit(1400, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Distracted",
  15554. height: math.unit(15000, "feet")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(7 + 4/12, "feet"),
  15563. weight: math.unit(690, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/geno-maxwell/front.svg",
  15567. extra: 984/856,
  15568. bottom: 87/1071
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(7 + 4/12, "feet"),
  15573. weight: math.unit(690, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/geno-maxwell/back.svg",
  15577. extra: 981/854,
  15578. bottom: 57/1038
  15579. }
  15580. },
  15581. frontCostume: {
  15582. height: math.unit(7 + 4/12, "feet"),
  15583. weight: math.unit(690, "lb"),
  15584. name: "Front (Costume)",
  15585. image: {
  15586. source: "./media/characters/geno-maxwell/front-costume.svg",
  15587. extra: 984/856,
  15588. bottom: 87/1071
  15589. }
  15590. },
  15591. backcostume: {
  15592. height: math.unit(7 + 4/12, "feet"),
  15593. weight: math.unit(690, "lb"),
  15594. name: "Back (Costume)",
  15595. image: {
  15596. source: "./media/characters/geno-maxwell/back-costume.svg",
  15597. extra: 981/854,
  15598. bottom: 57/1038
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Micro",
  15605. height: math.unit(3, "inches")
  15606. },
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(7 + 4 / 12, "feet"),
  15610. default: true
  15611. },
  15612. {
  15613. name: "Macro",
  15614. height: math.unit(220, "feet")
  15615. },
  15616. {
  15617. name: "Megamacro",
  15618. height: math.unit(11, "miles")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(7 + 4/12, "feet"),
  15627. weight: math.unit(750, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/regena-maxwell/front.svg",
  15631. extra: 984/856,
  15632. bottom: 87/1071
  15633. }
  15634. },
  15635. back: {
  15636. height: math.unit(7 + 4/12, "feet"),
  15637. weight: math.unit(750, "lb"),
  15638. name: "Back",
  15639. image: {
  15640. source: "./media/characters/regena-maxwell/back.svg",
  15641. extra: 981/854,
  15642. bottom: 57/1038
  15643. }
  15644. },
  15645. frontCostume: {
  15646. height: math.unit(7 + 4/12, "feet"),
  15647. weight: math.unit(750, "lb"),
  15648. name: "Front (Costume)",
  15649. image: {
  15650. source: "./media/characters/regena-maxwell/front-costume.svg",
  15651. extra: 984/856,
  15652. bottom: 87/1071
  15653. }
  15654. },
  15655. backcostume: {
  15656. height: math.unit(7 + 4/12, "feet"),
  15657. weight: math.unit(750, "lb"),
  15658. name: "Back (Costume)",
  15659. image: {
  15660. source: "./media/characters/regena-maxwell/back-costume.svg",
  15661. extra: 981/854,
  15662. bottom: 57/1038
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(7 + 4 / 12, "feet"),
  15670. default: true
  15671. },
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(220, "feet")
  15675. },
  15676. {
  15677. name: "Megamacro",
  15678. height: math.unit(11, "miles")
  15679. },
  15680. ]
  15681. ))
  15682. characterMakers.push(() => makeCharacter(
  15683. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15684. {
  15685. front: {
  15686. height: math.unit(6, "feet"),
  15687. weight: math.unit(150, "lb"),
  15688. name: "Front",
  15689. image: {
  15690. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15691. extra: 860 / 690,
  15692. bottom: 0.03
  15693. }
  15694. },
  15695. },
  15696. [
  15697. {
  15698. name: "Normal",
  15699. height: math.unit(1.7, "meters"),
  15700. default: true
  15701. },
  15702. ]
  15703. ))
  15704. characterMakers.push(() => makeCharacter(
  15705. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15706. {
  15707. front: {
  15708. height: math.unit(6, "feet"),
  15709. weight: math.unit(150, "lb"),
  15710. name: "Front",
  15711. image: {
  15712. source: "./media/characters/quilly/front.svg",
  15713. extra: 890 / 776
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Gigamacro",
  15720. height: math.unit(404090, "miles"),
  15721. default: true
  15722. },
  15723. ]
  15724. ))
  15725. characterMakers.push(() => makeCharacter(
  15726. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15727. {
  15728. front: {
  15729. height: math.unit(7 + 8 / 12, "feet"),
  15730. weight: math.unit(350, "lb"),
  15731. name: "Front",
  15732. image: {
  15733. source: "./media/characters/tempest/front.svg",
  15734. extra: 1175 / 1086,
  15735. bottom: 0.02
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Normal",
  15742. height: math.unit(7 + 8 / 12, "feet"),
  15743. default: true
  15744. },
  15745. ]
  15746. ))
  15747. characterMakers.push(() => makeCharacter(
  15748. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15749. {
  15750. side: {
  15751. height: math.unit(4 + 5 / 12, "feet"),
  15752. weight: math.unit(80, "lb"),
  15753. name: "Side",
  15754. image: {
  15755. source: "./media/characters/rodger/side.svg",
  15756. extra: 1235 / 1118
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Micro",
  15763. height: math.unit(1, "inch")
  15764. },
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(4 + 5 / 12, "feet"),
  15768. default: true
  15769. },
  15770. {
  15771. name: "Macro",
  15772. height: math.unit(120, "feet")
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6, "feet"),
  15781. weight: math.unit(150, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/danyel/front.svg",
  15785. extra: 1185 / 1123,
  15786. bottom: 0.05
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Shrunken",
  15793. height: math.unit(0.5, "mm")
  15794. },
  15795. {
  15796. name: "Micro",
  15797. height: math.unit(1, "mm"),
  15798. default: true
  15799. },
  15800. {
  15801. name: "Upsized",
  15802. height: math.unit(5 + 5 / 12, "feet")
  15803. },
  15804. ]
  15805. ))
  15806. characterMakers.push(() => makeCharacter(
  15807. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15808. {
  15809. front: {
  15810. height: math.unit(5 + 6 / 12, "feet"),
  15811. weight: math.unit(200, "lb"),
  15812. name: "Front",
  15813. image: {
  15814. source: "./media/characters/vivian-bijoux/front.svg",
  15815. extra: 1217/1209,
  15816. bottom: 76/1293
  15817. }
  15818. },
  15819. back: {
  15820. height: math.unit(5 + 6 / 12, "feet"),
  15821. weight: math.unit(200, "lb"),
  15822. name: "Back",
  15823. image: {
  15824. source: "./media/characters/vivian-bijoux/back.svg",
  15825. extra: 1214/1208,
  15826. bottom: 51/1265
  15827. }
  15828. },
  15829. dressed: {
  15830. height: math.unit(5 + 6 / 12, "feet"),
  15831. weight: math.unit(200, "lb"),
  15832. name: "Dressed",
  15833. image: {
  15834. source: "./media/characters/vivian-bijoux/dressed.svg",
  15835. extra: 1217/1209,
  15836. bottom: 76/1293
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(5 + 6 / 12, "feet"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "Bad Dream",
  15848. height: math.unit(500, "feet")
  15849. },
  15850. {
  15851. name: "Nightmare",
  15852. height: math.unit(500, "miles")
  15853. },
  15854. ]
  15855. ))
  15856. characterMakers.push(() => makeCharacter(
  15857. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15858. {
  15859. front: {
  15860. height: math.unit(6 + 1 / 12, "feet"),
  15861. weight: math.unit(260, "lb"),
  15862. name: "Front",
  15863. image: {
  15864. source: "./media/characters/zeta/front.svg",
  15865. extra: 1968 / 1889,
  15866. bottom: 0.06
  15867. }
  15868. },
  15869. back: {
  15870. height: math.unit(6 + 1 / 12, "feet"),
  15871. weight: math.unit(260, "lb"),
  15872. name: "Back",
  15873. image: {
  15874. source: "./media/characters/zeta/back.svg",
  15875. extra: 1944 / 1858,
  15876. bottom: 0.03
  15877. }
  15878. },
  15879. hand: {
  15880. height: math.unit(1.112, "feet"),
  15881. name: "Hand",
  15882. image: {
  15883. source: "./media/characters/zeta/hand.svg"
  15884. }
  15885. },
  15886. foot: {
  15887. height: math.unit(1.48, "feet"),
  15888. name: "Foot",
  15889. image: {
  15890. source: "./media/characters/zeta/foot.svg"
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Micro",
  15897. height: math.unit(6, "inches")
  15898. },
  15899. {
  15900. name: "Normal",
  15901. height: math.unit(6 + 1 / 12, "feet"),
  15902. default: true
  15903. },
  15904. {
  15905. name: "Macro",
  15906. height: math.unit(20, "feet")
  15907. },
  15908. ]
  15909. ))
  15910. characterMakers.push(() => makeCharacter(
  15911. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15912. {
  15913. front: {
  15914. height: math.unit(6, "feet"),
  15915. weight: math.unit(150, "lb"),
  15916. name: "Front",
  15917. image: {
  15918. source: "./media/characters/jamie-larsen/front.svg",
  15919. extra: 962 / 933,
  15920. bottom: 0.02
  15921. }
  15922. },
  15923. back: {
  15924. height: math.unit(6, "feet"),
  15925. weight: math.unit(150, "lb"),
  15926. name: "Back",
  15927. image: {
  15928. source: "./media/characters/jamie-larsen/back.svg",
  15929. extra: 997 / 946
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Macro",
  15936. height: math.unit(28 + 7 / 12, "feet"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "Macro+",
  15941. height: math.unit(180, "feet")
  15942. },
  15943. {
  15944. name: "Megamacro",
  15945. height: math.unit(10, "miles")
  15946. },
  15947. {
  15948. name: "Gigamacro",
  15949. height: math.unit(200000, "miles")
  15950. },
  15951. ]
  15952. ))
  15953. characterMakers.push(() => makeCharacter(
  15954. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15955. {
  15956. front: {
  15957. height: math.unit(6, "feet"),
  15958. weight: math.unit(120, "lb"),
  15959. name: "Front",
  15960. image: {
  15961. source: "./media/characters/vance/front.svg",
  15962. extra: 1980 / 1890,
  15963. bottom: 0.09
  15964. }
  15965. },
  15966. back: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(120, "lb"),
  15969. name: "Back",
  15970. image: {
  15971. source: "./media/characters/vance/back.svg",
  15972. extra: 2081 / 1994,
  15973. bottom: 0.014
  15974. }
  15975. },
  15976. hand: {
  15977. height: math.unit(0.88, "feet"),
  15978. name: "Hand",
  15979. image: {
  15980. source: "./media/characters/vance/hand.svg"
  15981. }
  15982. },
  15983. foot: {
  15984. height: math.unit(0.64, "feet"),
  15985. name: "Foot",
  15986. image: {
  15987. source: "./media/characters/vance/foot.svg"
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Small",
  15994. height: math.unit(90, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Macro",
  15999. height: math.unit(100, "meters")
  16000. },
  16001. {
  16002. name: "Megamacro",
  16003. height: math.unit(15, "miles")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(180, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/xochitl/front.svg",
  16016. extra: 2297 / 2261,
  16017. bottom: 0.065
  16018. }
  16019. },
  16020. back: {
  16021. height: math.unit(6, "feet"),
  16022. weight: math.unit(180, "lb"),
  16023. name: "Back",
  16024. image: {
  16025. source: "./media/characters/xochitl/back.svg",
  16026. extra: 2386 / 2354,
  16027. bottom: 0.01
  16028. }
  16029. },
  16030. foot: {
  16031. height: math.unit(6 / 5 * 1.15, "feet"),
  16032. weight: math.unit(150, "lb"),
  16033. name: "Foot",
  16034. image: {
  16035. source: "./media/characters/xochitl/foot.svg"
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(80, "feet")
  16043. },
  16044. {
  16045. name: "Macro+",
  16046. height: math.unit(400, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Gigamacro",
  16051. height: math.unit(80000, "miles")
  16052. },
  16053. {
  16054. name: "Gigamacro+",
  16055. height: math.unit(400000, "miles")
  16056. },
  16057. {
  16058. name: "Teramacro",
  16059. height: math.unit(300, "AU")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/vincent/front.svg",
  16072. extra: 1130 / 1080,
  16073. bottom: 0.055
  16074. }
  16075. },
  16076. beak: {
  16077. height: math.unit(6 * 0.1, "feet"),
  16078. name: "Beak",
  16079. image: {
  16080. source: "./media/characters/vincent/beak.svg"
  16081. }
  16082. },
  16083. hand: {
  16084. height: math.unit(6 * 0.85, "feet"),
  16085. weight: math.unit(150, "lb"),
  16086. name: "Hand",
  16087. image: {
  16088. source: "./media/characters/vincent/hand.svg"
  16089. }
  16090. },
  16091. foot: {
  16092. height: math.unit(6 * 0.19, "feet"),
  16093. weight: math.unit(150, "lb"),
  16094. name: "Foot",
  16095. image: {
  16096. source: "./media/characters/vincent/foot.svg"
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Base",
  16103. height: math.unit(6 + 5 / 12, "feet"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(300, "feet")
  16109. },
  16110. {
  16111. name: "Megamacro",
  16112. height: math.unit(2, "miles")
  16113. },
  16114. {
  16115. name: "Gigamacro",
  16116. height: math.unit(1000, "miles")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(2, "meters"),
  16125. weight: math.unit(500, "kg"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/coatl/front.svg",
  16129. extra: 3948 / 3500,
  16130. bottom: 0.082
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(4, "meters")
  16138. },
  16139. {
  16140. name: "Macro",
  16141. height: math.unit(100, "meters"),
  16142. default: true
  16143. },
  16144. {
  16145. name: "Macro+",
  16146. height: math.unit(300, "meters")
  16147. },
  16148. {
  16149. name: "Megamacro",
  16150. height: math.unit(3, "gigameters")
  16151. },
  16152. {
  16153. name: "Megamacro+",
  16154. height: math.unit(300, "terameters")
  16155. },
  16156. {
  16157. name: "Megamacro++",
  16158. height: math.unit(3, "lightyears")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(50, "kg"),
  16168. name: "front",
  16169. image: {
  16170. source: "./media/characters/shiroryu/front.svg",
  16171. extra: 1990 / 1935
  16172. }
  16173. },
  16174. },
  16175. [
  16176. {
  16177. name: "Mortal Mingling",
  16178. height: math.unit(3, "meters")
  16179. },
  16180. {
  16181. name: "Kaiju-ish",
  16182. height: math.unit(250, "meters")
  16183. },
  16184. {
  16185. name: "Somewhat Godly",
  16186. height: math.unit(400, "km"),
  16187. default: true
  16188. },
  16189. {
  16190. name: "Planetary",
  16191. height: math.unit(300, "megameters")
  16192. },
  16193. {
  16194. name: "Galaxy-dwarfing",
  16195. height: math.unit(450, "kiloparsecs")
  16196. },
  16197. {
  16198. name: "Universe Eater",
  16199. height: math.unit(150, "gigaparsecs")
  16200. },
  16201. {
  16202. name: "Almost Immeasurable",
  16203. height: math.unit(1.3e266, "yottaparsecs")
  16204. },
  16205. ]
  16206. ))
  16207. characterMakers.push(() => makeCharacter(
  16208. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16209. {
  16210. front: {
  16211. height: math.unit(6, "feet"),
  16212. weight: math.unit(150, "lb"),
  16213. name: "Front",
  16214. image: {
  16215. source: "./media/characters/umeko/front.svg",
  16216. extra: 1,
  16217. bottom: 0.019
  16218. }
  16219. },
  16220. frontArmored: {
  16221. height: math.unit(6, "feet"),
  16222. weight: math.unit(150, "lb"),
  16223. name: "Front (Armored)",
  16224. image: {
  16225. source: "./media/characters/umeko/front-armored.svg",
  16226. extra: 1,
  16227. bottom: 0.021
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Macro",
  16234. height: math.unit(220, "feet"),
  16235. default: true
  16236. },
  16237. {
  16238. name: "Guardian Dragon",
  16239. height: math.unit(50, "miles")
  16240. },
  16241. {
  16242. name: "Cosmic",
  16243. height: math.unit(800000, "miles")
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(6, "feet"),
  16252. weight: math.unit(150, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/cassidy/front.svg",
  16256. extra: 810/808,
  16257. bottom: 41/851
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Canon Height",
  16264. height: math.unit(120, "feet"),
  16265. default: true
  16266. },
  16267. {
  16268. name: "Macro+",
  16269. height: math.unit(400, "feet")
  16270. },
  16271. {
  16272. name: "Macro++",
  16273. height: math.unit(4000, "feet")
  16274. },
  16275. {
  16276. name: "Megamacro",
  16277. height: math.unit(3, "miles")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/isaac/front.svg",
  16290. extra: 896 / 815,
  16291. bottom: 0.11
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Human Size",
  16298. height: math.unit(8, "feet"),
  16299. default: true
  16300. },
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(400, "feet")
  16304. },
  16305. {
  16306. name: "Megamacro",
  16307. height: math.unit(50, "miles")
  16308. },
  16309. {
  16310. name: "Canon Height",
  16311. height: math.unit(200, "AU")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(72, "kg"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/sleekit/front.svg",
  16324. extra: 4693 / 4487,
  16325. bottom: 0.012
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Minimum Height",
  16332. height: math.unit(10, "meters")
  16333. },
  16334. {
  16335. name: "Smaller",
  16336. height: math.unit(25, "meters")
  16337. },
  16338. {
  16339. name: "Larger",
  16340. height: math.unit(38, "meters"),
  16341. default: true
  16342. },
  16343. {
  16344. name: "Maximum height",
  16345. height: math.unit(100, "meters")
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(150, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/nillia/front.svg",
  16358. extra: 719/665,
  16359. bottom: 6/725
  16360. }
  16361. },
  16362. back: {
  16363. height: math.unit(6, "feet"),
  16364. weight: math.unit(150, "lb"),
  16365. name: "Back",
  16366. image: {
  16367. source: "./media/characters/nillia/back.svg",
  16368. extra: 705/651,
  16369. bottom: 5/710
  16370. }
  16371. },
  16372. },
  16373. [
  16374. {
  16375. name: "Canon Height",
  16376. height: math.unit(489, "feet"),
  16377. default: true
  16378. }
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(6, "feet"),
  16386. weight: math.unit(150, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/mesmyriza/front.svg",
  16390. extra: 1541/1291,
  16391. bottom: 87/1628
  16392. }
  16393. },
  16394. foot: {
  16395. height: math.unit(6 / (250 / 35), "feet"),
  16396. name: "Foot",
  16397. image: {
  16398. source: "./media/characters/mesmyriza/foot.svg"
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Macro",
  16405. height: math.unit(457, "meters"),
  16406. default: true
  16407. },
  16408. {
  16409. name: "Megamacro",
  16410. height: math.unit(8, "megameters")
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16416. {
  16417. front: {
  16418. height: math.unit(6, "feet"),
  16419. weight: math.unit(250, "lb"),
  16420. name: "Front",
  16421. image: {
  16422. source: "./media/characters/saudade/front.svg",
  16423. extra: 1172 / 1139,
  16424. bottom: 0.035
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Micro",
  16431. height: math.unit(3, "inches")
  16432. },
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6, "feet"),
  16436. default: true
  16437. },
  16438. {
  16439. name: "Macro",
  16440. height: math.unit(50, "feet")
  16441. },
  16442. {
  16443. name: "Megamacro",
  16444. height: math.unit(2800, "feet")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(5 + 4 / 12, "feet"),
  16453. weight: math.unit(100, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/keireer/front.svg",
  16457. extra: 716 / 666,
  16458. bottom: 0.05
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(5 + 4 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(5.5, "feet"),
  16475. weight: math.unit(90, "kg"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/mirja/front.svg",
  16479. extra: 1452/1262,
  16480. bottom: 67/1519
  16481. }
  16482. },
  16483. frontDressed: {
  16484. height: math.unit(5.5, "feet"),
  16485. weight: math.unit(90, "lb"),
  16486. name: "Front (Dressed)",
  16487. image: {
  16488. source: "./media/characters/mirja/dressed.svg",
  16489. extra: 1452/1262,
  16490. bottom: 67/1519
  16491. }
  16492. },
  16493. back: {
  16494. height: math.unit(6, "feet"),
  16495. weight: math.unit(90, "lb"),
  16496. name: "Back",
  16497. image: {
  16498. source: "./media/characters/mirja/back.svg",
  16499. extra: 1892/1795,
  16500. bottom: 48/1940
  16501. }
  16502. },
  16503. maw: {
  16504. height: math.unit(1.312, "feet"),
  16505. name: "Maw",
  16506. image: {
  16507. source: "./media/characters/mirja/maw.svg"
  16508. }
  16509. },
  16510. paw: {
  16511. height: math.unit(1.15, "feet"),
  16512. name: "Paw",
  16513. image: {
  16514. source: "./media/characters/mirja/paw.svg"
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "\"Incognito\"",
  16521. height: math.unit(3, "meters")
  16522. },
  16523. {
  16524. name: "Strolling Size",
  16525. height: math.unit(15, "km")
  16526. },
  16527. {
  16528. name: "Larger Strolling Size",
  16529. height: math.unit(400, "km")
  16530. },
  16531. {
  16532. name: "Preferred Size",
  16533. height: math.unit(5000, "km"),
  16534. default: true
  16535. },
  16536. {
  16537. name: "True Size",
  16538. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16544. {
  16545. front: {
  16546. height: math.unit(15, "feet"),
  16547. weight: math.unit(880, "kg"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/nightraver/front.svg",
  16551. extra: 2444 / 2160,
  16552. bottom: 0.027
  16553. }
  16554. },
  16555. back: {
  16556. height: math.unit(15, "feet"),
  16557. weight: math.unit(880, "kg"),
  16558. name: "Back",
  16559. image: {
  16560. source: "./media/characters/nightraver/back.svg",
  16561. extra: 2309 / 2180,
  16562. bottom: 0.005
  16563. }
  16564. },
  16565. sole: {
  16566. height: math.unit(2.878, "feet"),
  16567. name: "Sole",
  16568. image: {
  16569. source: "./media/characters/nightraver/sole.svg"
  16570. }
  16571. },
  16572. foot: {
  16573. height: math.unit(2.285, "feet"),
  16574. name: "Foot",
  16575. image: {
  16576. source: "./media/characters/nightraver/foot.svg"
  16577. }
  16578. },
  16579. maw: {
  16580. height: math.unit(2.67, "feet"),
  16581. name: "Maw",
  16582. image: {
  16583. source: "./media/characters/nightraver/maw.svg"
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Micro",
  16590. height: math.unit(1, "cm")
  16591. },
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(15, "feet"),
  16595. default: true
  16596. },
  16597. {
  16598. name: "Macro",
  16599. height: math.unit(300, "feet")
  16600. },
  16601. {
  16602. name: "Megamacro",
  16603. height: math.unit(300, "miles")
  16604. },
  16605. {
  16606. name: "Gigamacro",
  16607. height: math.unit(10000, "miles")
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16613. {
  16614. side: {
  16615. height: math.unit(2, "inches"),
  16616. weight: math.unit(5, "grams"),
  16617. name: "Side",
  16618. image: {
  16619. source: "./media/characters/arc/side.svg"
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Micro",
  16626. height: math.unit(2, "inches"),
  16627. default: true
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(1.1938, "meters"),
  16636. weight: math.unit(54, "kg"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/nebula-shahar/front.svg",
  16640. extra: 1642 / 1436,
  16641. bottom: 0.06
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Megamicro",
  16648. height: math.unit(0.3, "mm")
  16649. },
  16650. {
  16651. name: "Micro",
  16652. height: math.unit(3, "cm")
  16653. },
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(138, "cm"),
  16657. default: true
  16658. },
  16659. {
  16660. name: "Macro",
  16661. height: math.unit(30, "m")
  16662. },
  16663. ]
  16664. ))
  16665. characterMakers.push(() => makeCharacter(
  16666. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16667. {
  16668. front: {
  16669. height: math.unit(5.24, "feet"),
  16670. weight: math.unit(150, "lb"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/shayla/front.svg",
  16674. extra: 1512 / 1414,
  16675. bottom: 0.01
  16676. }
  16677. },
  16678. back: {
  16679. height: math.unit(5.24, "feet"),
  16680. weight: math.unit(150, "lb"),
  16681. name: "Back",
  16682. image: {
  16683. source: "./media/characters/shayla/back.svg",
  16684. extra: 1512 / 1414
  16685. }
  16686. },
  16687. hand: {
  16688. height: math.unit(0.7781496062992126, "feet"),
  16689. name: "Hand",
  16690. image: {
  16691. source: "./media/characters/shayla/hand.svg"
  16692. }
  16693. },
  16694. foot: {
  16695. height: math.unit(1.4206036745406823, "feet"),
  16696. name: "Foot",
  16697. image: {
  16698. source: "./media/characters/shayla/foot.svg"
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Micro",
  16705. height: math.unit(0.32, "feet")
  16706. },
  16707. {
  16708. name: "Normal",
  16709. height: math.unit(5.24, "feet"),
  16710. default: true
  16711. },
  16712. {
  16713. name: "Macro",
  16714. height: math.unit(492.12, "feet")
  16715. },
  16716. {
  16717. name: "Megamacro",
  16718. height: math.unit(186.41, "miles")
  16719. },
  16720. ]
  16721. ))
  16722. characterMakers.push(() => makeCharacter(
  16723. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16724. {
  16725. front: {
  16726. height: math.unit(2.2, "m"),
  16727. weight: math.unit(120, "kg"),
  16728. name: "Front",
  16729. image: {
  16730. source: "./media/characters/pia-jr/front.svg",
  16731. extra: 1000 / 970,
  16732. bottom: 0.035
  16733. }
  16734. },
  16735. hand: {
  16736. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16737. name: "Hand",
  16738. image: {
  16739. source: "./media/characters/pia-jr/hand.svg"
  16740. }
  16741. },
  16742. paw: {
  16743. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16744. name: "Paw",
  16745. image: {
  16746. source: "./media/characters/pia-jr/paw.svg"
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Micro",
  16753. height: math.unit(1.2, "cm")
  16754. },
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(2.2, "m"),
  16758. default: true
  16759. },
  16760. {
  16761. name: "Macro",
  16762. height: math.unit(180, "m")
  16763. },
  16764. {
  16765. name: "Megamacro",
  16766. height: math.unit(420, "km")
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(2, "m"),
  16775. weight: math.unit(115, "kg"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/pia-sr/front.svg",
  16779. extra: 760 / 730,
  16780. bottom: 0.015
  16781. }
  16782. },
  16783. back: {
  16784. height: math.unit(2, "m"),
  16785. weight: math.unit(115, "kg"),
  16786. name: "Back",
  16787. image: {
  16788. source: "./media/characters/pia-sr/back.svg",
  16789. extra: 760 / 730,
  16790. bottom: 0.01
  16791. }
  16792. },
  16793. hand: {
  16794. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16795. name: "Hand",
  16796. image: {
  16797. source: "./media/characters/pia-sr/hand.svg"
  16798. }
  16799. },
  16800. foot: {
  16801. height: math.unit(1.83, "feet"),
  16802. name: "Foot",
  16803. image: {
  16804. source: "./media/characters/pia-sr/foot.svg"
  16805. }
  16806. },
  16807. },
  16808. [
  16809. {
  16810. name: "Micro",
  16811. height: math.unit(88, "mm")
  16812. },
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(2, "m"),
  16816. default: true
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(200, "m")
  16821. },
  16822. {
  16823. name: "Megamacro",
  16824. height: math.unit(420, "km")
  16825. },
  16826. ]
  16827. ))
  16828. characterMakers.push(() => makeCharacter(
  16829. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16830. {
  16831. front: {
  16832. height: math.unit(8 + 2 / 12, "feet"),
  16833. weight: math.unit(300, "lb"),
  16834. name: "Front",
  16835. image: {
  16836. source: "./media/characters/kibibyte/front.svg",
  16837. extra: 2221 / 2098,
  16838. bottom: 0.04
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Normal",
  16845. height: math.unit(8 + 2 / 12, "feet"),
  16846. default: true
  16847. },
  16848. {
  16849. name: "Socialable Macro",
  16850. height: math.unit(50, "feet")
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(300, "feet")
  16855. },
  16856. {
  16857. name: "Megamacro",
  16858. height: math.unit(500, "miles")
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(6, "feet"),
  16867. weight: math.unit(150, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/felix/front.svg",
  16871. extra: 762 / 722,
  16872. bottom: 0.02
  16873. }
  16874. },
  16875. frontClothed: {
  16876. height: math.unit(6, "feet"),
  16877. weight: math.unit(150, "lb"),
  16878. name: "Front (Clothed)",
  16879. image: {
  16880. source: "./media/characters/felix/front-clothed.svg",
  16881. extra: 762 / 722,
  16882. bottom: 0.02
  16883. }
  16884. },
  16885. },
  16886. [
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(6 + 8 / 12, "feet"),
  16890. default: true
  16891. },
  16892. {
  16893. name: "Macro",
  16894. height: math.unit(2600, "feet")
  16895. },
  16896. {
  16897. name: "Megamacro",
  16898. height: math.unit(450, "miles")
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16904. {
  16905. front: {
  16906. height: math.unit(6 + 1 / 12, "feet"),
  16907. weight: math.unit(250, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/tobo/front.svg",
  16911. extra: 608 / 586,
  16912. bottom: 0.023
  16913. }
  16914. },
  16915. back: {
  16916. height: math.unit(6 + 1 / 12, "feet"),
  16917. weight: math.unit(250, "lb"),
  16918. name: "Back",
  16919. image: {
  16920. source: "./media/characters/tobo/back.svg",
  16921. extra: 608 / 586
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Nano",
  16928. height: math.unit(2, "nm")
  16929. },
  16930. {
  16931. name: "Megamicro",
  16932. height: math.unit(0.1, "mm")
  16933. },
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(1, "inch"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Human-sized",
  16941. height: math.unit(6 + 1 / 12, "feet")
  16942. },
  16943. {
  16944. name: "Macro",
  16945. height: math.unit(250, "feet")
  16946. },
  16947. {
  16948. name: "Megamacro",
  16949. height: math.unit(75, "miles")
  16950. },
  16951. {
  16952. name: "Texas-sized",
  16953. height: math.unit(750, "miles")
  16954. },
  16955. {
  16956. name: "Teramacro",
  16957. height: math.unit(50000, "miles")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(6, "feet"),
  16966. weight: math.unit(269, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/danny-kapowsky/front.svg",
  16970. extra: 766 / 736,
  16971. bottom: 0.044
  16972. }
  16973. },
  16974. back: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(269, "lb"),
  16977. name: "Back",
  16978. image: {
  16979. source: "./media/characters/danny-kapowsky/back.svg",
  16980. extra: 797 / 760,
  16981. bottom: 0.025
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(150, "feet"),
  16989. default: true
  16990. },
  16991. {
  16992. name: "Macro+",
  16993. height: math.unit(200, "feet")
  16994. },
  16995. {
  16996. name: "Macro++",
  16997. height: math.unit(300, "feet")
  16998. },
  16999. {
  17000. name: "Macro+++",
  17001. height: math.unit(400, "feet")
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17007. {
  17008. side: {
  17009. height: math.unit(6, "feet"),
  17010. weight: math.unit(170, "lb"),
  17011. name: "Side",
  17012. image: {
  17013. source: "./media/characters/finn/side.svg",
  17014. extra: 1953 / 1807,
  17015. bottom: 0.057
  17016. }
  17017. },
  17018. },
  17019. [
  17020. {
  17021. name: "Megamacro",
  17022. height: math.unit(14445, "feet"),
  17023. default: true
  17024. },
  17025. ]
  17026. ))
  17027. characterMakers.push(() => makeCharacter(
  17028. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17029. {
  17030. front: {
  17031. height: math.unit(5 + 6 / 12, "feet"),
  17032. weight: math.unit(125, "lb"),
  17033. name: "Front",
  17034. image: {
  17035. source: "./media/characters/roy/front.svg",
  17036. extra: 1,
  17037. bottom: 0.11
  17038. }
  17039. },
  17040. },
  17041. [
  17042. {
  17043. name: "Micro",
  17044. height: math.unit(3, "inches"),
  17045. default: true
  17046. },
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(5 + 6 / 12, "feet")
  17050. },
  17051. {
  17052. name: "Lesser Macro",
  17053. height: math.unit(60, "feet")
  17054. },
  17055. {
  17056. name: "Greater Macro",
  17057. height: math.unit(120, "feet")
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(6, "feet"),
  17066. weight: math.unit(100, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/aevsivs/front.svg",
  17070. extra: 1,
  17071. bottom: 0.03
  17072. }
  17073. },
  17074. back: {
  17075. height: math.unit(6, "feet"),
  17076. weight: math.unit(100, "lb"),
  17077. name: "Back",
  17078. image: {
  17079. source: "./media/characters/aevsivs/back.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Micro",
  17086. height: math.unit(2, "inches"),
  17087. default: true
  17088. },
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(5, "feet")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(5 + 7 / 12, "feet"),
  17100. weight: math.unit(159, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/hildegard/front.svg",
  17104. extra: 289 / 269,
  17105. bottom: 7.63 / 297.8
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(5 + 7 / 12, "feet"),
  17110. weight: math.unit(159, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/hildegard/back.svg",
  17114. extra: 280 / 260,
  17115. bottom: 2.3 / 282
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(5 + 7 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17129. {
  17130. bernard: {
  17131. height: math.unit(2 + 7 / 12, "feet"),
  17132. weight: math.unit(66, "lb"),
  17133. name: "Bernard",
  17134. rename: true,
  17135. image: {
  17136. source: "./media/characters/bernard-wilder/bernard.svg",
  17137. extra: 192 / 128,
  17138. bottom: 0.05
  17139. }
  17140. },
  17141. wilder: {
  17142. height: math.unit(5 + 8 / 12, "feet"),
  17143. weight: math.unit(143, "lb"),
  17144. name: "Wilder",
  17145. rename: true,
  17146. image: {
  17147. source: "./media/characters/bernard-wilder/wilder.svg",
  17148. extra: 361 / 312,
  17149. bottom: 0.02
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(2 + 7 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17163. {
  17164. anthro: {
  17165. height: math.unit(6 + 1 / 12, "feet"),
  17166. weight: math.unit(155, "lb"),
  17167. name: "Anthro",
  17168. image: {
  17169. source: "./media/characters/hearth/anthro.svg",
  17170. extra: 1178/1136,
  17171. bottom: 28/1206
  17172. }
  17173. },
  17174. feral: {
  17175. height: math.unit(3.78, "feet"),
  17176. weight: math.unit(35, "kg"),
  17177. name: "Feral",
  17178. image: {
  17179. source: "./media/characters/hearth/feral.svg",
  17180. extra: 153 / 135,
  17181. bottom: 0.03
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(6 + 1 / 12, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(6, "feet"),
  17198. weight: math.unit(182, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/ingrid/front.svg",
  17202. extra: 294 / 268,
  17203. bottom: 0.027
  17204. }
  17205. },
  17206. },
  17207. [
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(6, "feet"),
  17211. default: true
  17212. },
  17213. ]
  17214. ))
  17215. characterMakers.push(() => makeCharacter(
  17216. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17217. {
  17218. eevee: {
  17219. height: math.unit(2 + 10 / 12, "feet"),
  17220. weight: math.unit(86, "lb"),
  17221. name: "Malgam",
  17222. image: {
  17223. source: "./media/characters/malgam/eevee.svg",
  17224. extra: 952/784,
  17225. bottom: 38/990
  17226. }
  17227. },
  17228. sylveon: {
  17229. height: math.unit(4, "feet"),
  17230. weight: math.unit(101, "lb"),
  17231. name: "Future Malgam",
  17232. rename: true,
  17233. image: {
  17234. source: "./media/characters/malgam/sylveon.svg",
  17235. extra: 371 / 325,
  17236. bottom: 0.015
  17237. }
  17238. },
  17239. gigantamax: {
  17240. height: math.unit(50, "feet"),
  17241. name: "Gigantamax Malgam",
  17242. rename: true,
  17243. image: {
  17244. source: "./media/characters/malgam/gigantamax.svg"
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Normal",
  17251. height: math.unit(2 + 10 / 12, "feet"),
  17252. default: true
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17258. {
  17259. front: {
  17260. height: math.unit(5 + 11 / 12, "feet"),
  17261. weight: math.unit(188, "lb"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/fleur/front.svg",
  17265. extra: 309 / 283,
  17266. bottom: 0.007
  17267. }
  17268. },
  17269. },
  17270. [
  17271. {
  17272. name: "Normal",
  17273. height: math.unit(5 + 11 / 12, "feet"),
  17274. default: true
  17275. },
  17276. ]
  17277. ))
  17278. characterMakers.push(() => makeCharacter(
  17279. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17280. {
  17281. front: {
  17282. height: math.unit(5 + 4 / 12, "feet"),
  17283. weight: math.unit(122, "lb"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/jude/front.svg",
  17287. extra: 288 / 273,
  17288. bottom: 0.03
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(5 + 4 / 12, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(5 + 11 / 12, "feet"),
  17305. weight: math.unit(190, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/seara/front.svg",
  17309. extra: 1,
  17310. bottom: 0.05
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(5 + 11 / 12, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(16 + 5 / 12, "feet"),
  17327. weight: math.unit(524, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/caspian-lugia/front.svg",
  17331. extra: 1,
  17332. bottom: 0.04
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(16 + 5 / 12, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(5 + 7 / 12, "feet"),
  17349. weight: math.unit(170, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/mika/front.svg",
  17353. extra: 1,
  17354. bottom: 0.016
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(5 + 7 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17368. {
  17369. front: {
  17370. height: math.unit(6 + 2 / 12, "feet"),
  17371. weight: math.unit(268, "lb"),
  17372. name: "Front",
  17373. image: {
  17374. source: "./media/characters/sol/front.svg",
  17375. extra: 247 / 231,
  17376. bottom: 0.05
  17377. }
  17378. },
  17379. },
  17380. [
  17381. {
  17382. name: "Normal",
  17383. height: math.unit(6 + 2 / 12, "feet"),
  17384. default: true
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17390. {
  17391. buizel: {
  17392. height: math.unit(2 + 5 / 12, "feet"),
  17393. weight: math.unit(87, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/umiko/buizel.svg",
  17397. extra: 172 / 157,
  17398. bottom: 0.01
  17399. },
  17400. form: "buizel",
  17401. default: true
  17402. },
  17403. floatzel: {
  17404. height: math.unit(5 + 9 / 12, "feet"),
  17405. weight: math.unit(250, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/umiko/floatzel.svg",
  17409. extra: 1076/1006,
  17410. bottom: 15/1091
  17411. },
  17412. form: "floatzel",
  17413. default: true
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(2 + 5 / 12, "feet"),
  17420. form: "buizel",
  17421. default: true
  17422. },
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(5 + 9 / 12, "feet"),
  17426. form: "floatzel",
  17427. default: true
  17428. },
  17429. ],
  17430. {
  17431. "buizel": {
  17432. name: "Buizel"
  17433. },
  17434. "floatzel": {
  17435. name: "Floatzel",
  17436. default: true
  17437. }
  17438. }
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6 + 2 / 12, "feet"),
  17445. weight: math.unit(146, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/iliac/front.svg",
  17449. extra: 389 / 365,
  17450. bottom: 0.035
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(6 + 2 / 12, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(170, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/topaz/front.svg",
  17471. extra: 317 / 303,
  17472. bottom: 0.055
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(6, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(5 + 11 / 12, "feet"),
  17489. weight: math.unit(144, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/gabriel/front.svg",
  17493. extra: 285 / 262,
  17494. bottom: 0.004
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(5 + 11 / 12, "feet"),
  17502. default: true
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17508. {
  17509. side: {
  17510. height: math.unit(6 + 5 / 12, "feet"),
  17511. weight: math.unit(300, "lb"),
  17512. name: "Side",
  17513. image: {
  17514. source: "./media/characters/tempest-suicune/side.svg",
  17515. extra: 195 / 154,
  17516. bottom: 0.04
  17517. }
  17518. },
  17519. },
  17520. [
  17521. {
  17522. name: "Normal",
  17523. height: math.unit(6 + 5 / 12, "feet"),
  17524. default: true
  17525. },
  17526. ]
  17527. ))
  17528. characterMakers.push(() => makeCharacter(
  17529. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17530. {
  17531. front: {
  17532. height: math.unit(7 + 2 / 12, "feet"),
  17533. weight: math.unit(322, "lb"),
  17534. name: "Front",
  17535. image: {
  17536. source: "./media/characters/vulcan/front.svg",
  17537. extra: 154 / 147,
  17538. bottom: 0.04
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(7 + 2 / 12, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(5 + 10 / 12, "feet"),
  17555. weight: math.unit(264, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/gault/front.svg",
  17559. extra: 161 / 140,
  17560. bottom: 0.028
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(5 + 10 / 12, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17574. {
  17575. front: {
  17576. height: math.unit(6, "feet"),
  17577. weight: math.unit(150, "lb"),
  17578. name: "Front",
  17579. image: {
  17580. source: "./media/characters/shard/front.svg",
  17581. extra: 273 / 238,
  17582. bottom: 0.02
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(3 + 6 / 12, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17596. {
  17597. front: {
  17598. height: math.unit(5 + 11 / 12, "feet"),
  17599. weight: math.unit(146, "lb"),
  17600. name: "Front",
  17601. image: {
  17602. source: "./media/characters/ashe/front.svg",
  17603. extra: 400 / 373,
  17604. bottom: 0.01
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(5 + 11 / 12, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17618. {
  17619. front: {
  17620. height: math.unit(5 + 5 / 12, "feet"),
  17621. weight: math.unit(135, "lb"),
  17622. name: "Front",
  17623. image: {
  17624. source: "./media/characters/beatrix/front.svg",
  17625. extra: 392 / 379,
  17626. bottom: 0.01
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(6, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17640. {
  17641. front: {
  17642. height: math.unit(6 + 2/12, "feet"),
  17643. weight: math.unit(135, "lb"),
  17644. name: "Front",
  17645. image: {
  17646. source: "./media/characters/ignatius/front.svg",
  17647. extra: 1380/1259,
  17648. bottom: 27/1407
  17649. }
  17650. },
  17651. },
  17652. [
  17653. {
  17654. name: "Normal",
  17655. height: math.unit(6 + 2/12, "feet"),
  17656. default: true
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(6 + 2 / 12, "feet"),
  17665. weight: math.unit(138, "lb"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/mei-li/front.svg",
  17669. extra: 237 / 229,
  17670. bottom: 0.03
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(6 + 2 / 12, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(2 + 4 / 12, "feet"),
  17687. weight: math.unit(62, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/puru/front.svg",
  17691. extra: 206 / 149,
  17692. bottom: 0.06
  17693. }
  17694. },
  17695. },
  17696. [
  17697. {
  17698. name: "Normal",
  17699. height: math.unit(2 + 4 / 12, "feet"),
  17700. default: true
  17701. },
  17702. ]
  17703. ))
  17704. characterMakers.push(() => makeCharacter(
  17705. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17706. {
  17707. anthro: {
  17708. height: math.unit(5 + 8/12, "feet"),
  17709. weight: math.unit(200, "lb"),
  17710. energyNeed: math.unit(2000, "kcal"),
  17711. name: "Anthro",
  17712. image: {
  17713. source: "./media/characters/kee/anthro.svg",
  17714. extra: 3251/3184,
  17715. bottom: 250/3501
  17716. }
  17717. },
  17718. taur: {
  17719. height: math.unit(11, "feet"),
  17720. weight: math.unit(500, "lb"),
  17721. energyNeed: math.unit(5000, "kcal"),
  17722. name: "Taur",
  17723. image: {
  17724. source: "./media/characters/kee/taur.svg",
  17725. extra: 1362/1320,
  17726. bottom: 83/1445
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Normal",
  17733. height: math.unit(5 + 8/12, "feet"),
  17734. default: true
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(35, "feet")
  17739. },
  17740. ]
  17741. ))
  17742. characterMakers.push(() => makeCharacter(
  17743. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17744. {
  17745. anthro: {
  17746. height: math.unit(7, "feet"),
  17747. weight: math.unit(190, "lb"),
  17748. name: "Anthro",
  17749. image: {
  17750. source: "./media/characters/cobalt-dracha/anthro.svg",
  17751. extra: 231 / 225,
  17752. bottom: 0.04
  17753. }
  17754. },
  17755. feral: {
  17756. height: math.unit(9 + 7 / 12, "feet"),
  17757. weight: math.unit(294, "lb"),
  17758. name: "Feral",
  17759. image: {
  17760. source: "./media/characters/cobalt-dracha/feral.svg",
  17761. extra: 692 / 633,
  17762. bottom: 0.05
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(7, "feet"),
  17770. default: true
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17776. {
  17777. fallen: {
  17778. height: math.unit(11 + 8 / 12, "feet"),
  17779. weight: math.unit(485, "lb"),
  17780. name: "Java (Fallen)",
  17781. rename: true,
  17782. image: {
  17783. source: "./media/characters/java/fallen.svg",
  17784. extra: 226 / 208,
  17785. bottom: 0.005
  17786. }
  17787. },
  17788. godkin: {
  17789. height: math.unit(10 + 6 / 12, "feet"),
  17790. weight: math.unit(328, "lb"),
  17791. name: "Java (Godkin)",
  17792. rename: true,
  17793. image: {
  17794. source: "./media/characters/java/godkin.svg",
  17795. extra: 1104/1068,
  17796. bottom: 36/1140
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(11 + 8 / 12, "feet"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17810. {
  17811. front: {
  17812. height: math.unit(5 + 9 / 12, "feet"),
  17813. weight: math.unit(170, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/purna/front.svg",
  17817. extra: 239 / 229,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(5 + 9 / 12, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(5 + 9 / 12, "feet"),
  17835. weight: math.unit(142, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/kuva/front.svg",
  17839. extra: 281 / 271,
  17840. bottom: 0.006
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(5 + 9 / 12, "feet"),
  17848. default: true
  17849. },
  17850. ]
  17851. ))
  17852. characterMakers.push(() => makeCharacter(
  17853. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17854. {
  17855. anthro: {
  17856. height: math.unit(9 + 2 / 12, "feet"),
  17857. weight: math.unit(270, "lb"),
  17858. name: "Anthro",
  17859. image: {
  17860. source: "./media/characters/embra/anthro.svg",
  17861. extra: 200 / 187,
  17862. bottom: 0.02
  17863. }
  17864. },
  17865. feral: {
  17866. height: math.unit(18 + 8 / 12, "feet"),
  17867. weight: math.unit(576, "lb"),
  17868. name: "Feral",
  17869. image: {
  17870. source: "./media/characters/embra/feral.svg",
  17871. extra: 152 / 137,
  17872. bottom: 0.037
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(9 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17886. {
  17887. anthro: {
  17888. height: math.unit(10 + 9 / 12, "feet"),
  17889. weight: math.unit(224, "lb"),
  17890. name: "Anthro",
  17891. image: {
  17892. source: "./media/characters/grottos/anthro.svg",
  17893. extra: 350 / 332,
  17894. bottom: 0.045
  17895. }
  17896. },
  17897. feral: {
  17898. height: math.unit(20 + 7 / 12, "feet"),
  17899. weight: math.unit(629, "lb"),
  17900. name: "Feral",
  17901. image: {
  17902. source: "./media/characters/grottos/feral.svg",
  17903. extra: 207 / 190,
  17904. bottom: 0.05
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(10 + 9 / 12, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17918. {
  17919. anthro: {
  17920. height: math.unit(9 + 6 / 12, "feet"),
  17921. weight: math.unit(298, "lb"),
  17922. name: "Anthro",
  17923. image: {
  17924. source: "./media/characters/frifna/anthro.svg",
  17925. extra: 282 / 269,
  17926. bottom: 0.015
  17927. }
  17928. },
  17929. feral: {
  17930. height: math.unit(16 + 2 / 12, "feet"),
  17931. weight: math.unit(624, "lb"),
  17932. name: "Feral",
  17933. image: {
  17934. source: "./media/characters/frifna/feral.svg"
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(9 + 6 / 12, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17948. {
  17949. front: {
  17950. height: math.unit(6 + 2 / 12, "feet"),
  17951. weight: math.unit(168, "lb"),
  17952. name: "Front",
  17953. image: {
  17954. source: "./media/characters/elise/front.svg",
  17955. extra: 276 / 271
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Normal",
  17962. height: math.unit(6 + 2 / 12, "feet"),
  17963. default: true
  17964. },
  17965. ]
  17966. ))
  17967. characterMakers.push(() => makeCharacter(
  17968. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17969. {
  17970. front: {
  17971. height: math.unit(5 + 10 / 12, "feet"),
  17972. weight: math.unit(210, "lb"),
  17973. name: "Front",
  17974. image: {
  17975. source: "./media/characters/glade/front.svg",
  17976. extra: 258 / 247,
  17977. bottom: 0.008
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(5 + 10 / 12, "feet"),
  17985. default: true
  17986. },
  17987. ]
  17988. ))
  17989. characterMakers.push(() => makeCharacter(
  17990. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17991. {
  17992. front: {
  17993. height: math.unit(5 + 10 / 12, "feet"),
  17994. weight: math.unit(129, "lb"),
  17995. name: "Front",
  17996. image: {
  17997. source: "./media/characters/rina/front.svg",
  17998. extra: 266 / 255,
  17999. bottom: 0.005
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(5 + 10 / 12, "feet"),
  18007. default: true
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(6 + 1 / 12, "feet"),
  18016. weight: math.unit(192, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/veronica/front.svg",
  18020. extra: 319 / 309,
  18021. bottom: 0.005
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(6 + 1 / 12, "feet"),
  18029. default: true
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(9 + 3 / 12, "feet"),
  18038. weight: math.unit(1100, "lb"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/braxton/front.svg",
  18042. extra: 1057 / 984,
  18043. bottom: 0.05
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(9 + 3 / 12, "feet")
  18051. },
  18052. {
  18053. name: "Giant",
  18054. height: math.unit(300, "feet"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(700, "feet")
  18060. },
  18061. {
  18062. name: "Megamacro",
  18063. height: math.unit(6000, "feet")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(6 + 7 / 12, "feet"),
  18072. weight: math.unit(150, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/blue-feyonics/front.svg",
  18076. extra: 1403 / 1306,
  18077. bottom: 0.047
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(6 + 7 / 12, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(1.8, "meters"),
  18094. weight: math.unit(60, "kg"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/maxwell/front.svg",
  18098. extra: 2060 / 1873
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Micro",
  18105. height: math.unit(1, "mm")
  18106. },
  18107. {
  18108. name: "Normal",
  18109. height: math.unit(1.8, "meter"),
  18110. default: true
  18111. },
  18112. {
  18113. name: "Macro",
  18114. height: math.unit(30, "meters")
  18115. },
  18116. {
  18117. name: "Megamacro",
  18118. height: math.unit(10, "km")
  18119. },
  18120. ]
  18121. ))
  18122. characterMakers.push(() => makeCharacter(
  18123. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18124. {
  18125. front: {
  18126. height: math.unit(6, "feet"),
  18127. weight: math.unit(150, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/jack/front.svg",
  18131. extra: 1754 / 1640,
  18132. bottom: 0.01
  18133. }
  18134. },
  18135. },
  18136. [
  18137. {
  18138. name: "Normal",
  18139. height: math.unit(80000, "feet"),
  18140. default: true
  18141. },
  18142. {
  18143. name: "Max size",
  18144. height: math.unit(10, "lightyears")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18150. {
  18151. urban: {
  18152. height: math.unit(5, "feet"),
  18153. weight: math.unit(240, "lb"),
  18154. name: "Urban",
  18155. image: {
  18156. source: "./media/characters/cafat/urban.svg",
  18157. extra: 1223/1126,
  18158. bottom: 205/1428
  18159. }
  18160. },
  18161. summer: {
  18162. height: math.unit(5, "feet"),
  18163. weight: math.unit(240, "lb"),
  18164. name: "Summer",
  18165. image: {
  18166. source: "./media/characters/cafat/summer.svg",
  18167. extra: 1223/1126,
  18168. bottom: 205/1428
  18169. }
  18170. },
  18171. winter: {
  18172. height: math.unit(5, "feet"),
  18173. weight: math.unit(240, "lb"),
  18174. name: "Winter",
  18175. image: {
  18176. source: "./media/characters/cafat/winter.svg",
  18177. extra: 1223/1126,
  18178. bottom: 205/1428
  18179. }
  18180. },
  18181. lingerie: {
  18182. height: math.unit(5, "feet"),
  18183. weight: math.unit(240, "lb"),
  18184. name: "Lingerie",
  18185. image: {
  18186. source: "./media/characters/cafat/lingerie.svg",
  18187. extra: 1223/1126,
  18188. bottom: 205/1428
  18189. }
  18190. },
  18191. upright: {
  18192. height: math.unit(6.3, "feet"),
  18193. weight: math.unit(240, "lb"),
  18194. name: "Upright",
  18195. image: {
  18196. source: "./media/characters/cafat/upright.svg",
  18197. bottom: 0.01
  18198. }
  18199. },
  18200. uprightFull: {
  18201. height: math.unit(6.3, "feet"),
  18202. weight: math.unit(240, "lb"),
  18203. name: "Upright (Full)",
  18204. image: {
  18205. source: "./media/characters/cafat/upright-full.svg",
  18206. bottom: 0.01
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Small",
  18213. height: math.unit(5, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Large",
  18218. height: math.unit(13, "feet")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(6, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/verin-raharra/front.svg",
  18231. extra: 5019 / 4835,
  18232. bottom: 0.023
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Normal",
  18239. height: math.unit(7 + 5 / 12, "feet"),
  18240. default: true
  18241. },
  18242. {
  18243. name: "Upsized",
  18244. height: math.unit(20, "feet")
  18245. },
  18246. ]
  18247. ))
  18248. characterMakers.push(() => makeCharacter(
  18249. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18250. {
  18251. front: {
  18252. height: math.unit(7, "feet"),
  18253. weight: math.unit(230, "lb"),
  18254. name: "Front",
  18255. image: {
  18256. source: "./media/characters/nakata/front.svg",
  18257. extra: 1.005,
  18258. bottom: 0.01
  18259. }
  18260. },
  18261. },
  18262. [
  18263. {
  18264. name: "Normal",
  18265. height: math.unit(7, "feet"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Big",
  18270. height: math.unit(14, "feet")
  18271. },
  18272. {
  18273. name: "Macro",
  18274. height: math.unit(400, "feet")
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(4.91, "feet"),
  18283. weight: math.unit(100, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/lily/front.svg",
  18287. extra: 1585 / 1415,
  18288. bottom: 0.02
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(4.91, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18302. {
  18303. laying: {
  18304. height: math.unit(4 + 4 / 12, "feet"),
  18305. weight: math.unit(600, "lb"),
  18306. name: "Laying",
  18307. image: {
  18308. source: "./media/characters/sheila/laying.svg",
  18309. extra: 1333 / 1265,
  18310. bottom: 0.16
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(4 + 4 / 12, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(6, "feet"),
  18327. weight: math.unit(190, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/sax/front.svg",
  18331. extra: 1187 / 973,
  18332. bottom: 0.042
  18333. }
  18334. },
  18335. },
  18336. [
  18337. {
  18338. name: "Micro",
  18339. height: math.unit(4, "inches"),
  18340. default: true
  18341. },
  18342. ]
  18343. ))
  18344. characterMakers.push(() => makeCharacter(
  18345. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18346. {
  18347. front: {
  18348. height: math.unit(6, "feet"),
  18349. weight: math.unit(150, "lb"),
  18350. name: "Front",
  18351. image: {
  18352. source: "./media/characters/pandora/front.svg",
  18353. extra: 2720 / 2556,
  18354. bottom: 0.015
  18355. }
  18356. },
  18357. back: {
  18358. height: math.unit(6, "feet"),
  18359. weight: math.unit(150, "lb"),
  18360. name: "Back",
  18361. image: {
  18362. source: "./media/characters/pandora/back.svg",
  18363. extra: 2720 / 2556,
  18364. bottom: 0.01
  18365. }
  18366. },
  18367. beans: {
  18368. height: math.unit(6 / 8, "feet"),
  18369. name: "Beans",
  18370. image: {
  18371. source: "./media/characters/pandora/beans.svg"
  18372. }
  18373. },
  18374. collar: {
  18375. height: math.unit(0.31, "feet"),
  18376. name: "Collar",
  18377. image: {
  18378. source: "./media/characters/pandora/collar.svg"
  18379. }
  18380. },
  18381. skirt: {
  18382. height: math.unit(6, "feet"),
  18383. weight: math.unit(150, "lb"),
  18384. name: "Skirt",
  18385. image: {
  18386. source: "./media/characters/pandora/skirt.svg",
  18387. extra: 1622 / 1525,
  18388. bottom: 0.015
  18389. }
  18390. },
  18391. hoodie: {
  18392. height: math.unit(6, "feet"),
  18393. weight: math.unit(150, "lb"),
  18394. name: "Hoodie",
  18395. image: {
  18396. source: "./media/characters/pandora/hoodie.svg",
  18397. extra: 1622 / 1525,
  18398. bottom: 0.015
  18399. }
  18400. },
  18401. casual: {
  18402. height: math.unit(6, "feet"),
  18403. weight: math.unit(150, "lb"),
  18404. name: "Casual",
  18405. image: {
  18406. source: "./media/characters/pandora/casual.svg",
  18407. extra: 1622 / 1525,
  18408. bottom: 0.015
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(6, "feet")
  18416. },
  18417. {
  18418. name: "Big Steppy",
  18419. height: math.unit(1, "km"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Galactic Steppy",
  18424. height: math.unit(2, "gigameters")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18430. {
  18431. side: {
  18432. height: math.unit(10, "feet"),
  18433. weight: math.unit(800, "kg"),
  18434. name: "Side",
  18435. image: {
  18436. source: "./media/characters/venio-darcony/side.svg",
  18437. extra: 1373 / 1003,
  18438. bottom: 0.037
  18439. }
  18440. },
  18441. front: {
  18442. height: math.unit(19, "feet"),
  18443. weight: math.unit(800, "kg"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/venio-darcony/front.svg"
  18447. }
  18448. },
  18449. back: {
  18450. height: math.unit(19, "feet"),
  18451. weight: math.unit(800, "kg"),
  18452. name: "Back",
  18453. image: {
  18454. source: "./media/characters/venio-darcony/back.svg"
  18455. }
  18456. },
  18457. sideNsfw: {
  18458. height: math.unit(10, "feet"),
  18459. weight: math.unit(800, "kg"),
  18460. name: "Side (NSFW)",
  18461. image: {
  18462. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18463. extra: 1373 / 1003,
  18464. bottom: 0.037
  18465. }
  18466. },
  18467. frontNsfw: {
  18468. height: math.unit(19, "feet"),
  18469. weight: math.unit(800, "kg"),
  18470. name: "Front (NSFW)",
  18471. image: {
  18472. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18473. }
  18474. },
  18475. backNsfw: {
  18476. height: math.unit(19, "feet"),
  18477. weight: math.unit(800, "kg"),
  18478. name: "Back (NSFW)",
  18479. image: {
  18480. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18481. }
  18482. },
  18483. sideArmored: {
  18484. height: math.unit(10, "feet"),
  18485. weight: math.unit(800, "kg"),
  18486. name: "Side (Armored)",
  18487. image: {
  18488. source: "./media/characters/venio-darcony/side-armored.svg",
  18489. extra: 1373 / 1003,
  18490. bottom: 0.037
  18491. }
  18492. },
  18493. frontArmored: {
  18494. height: math.unit(19, "feet"),
  18495. weight: math.unit(900, "kg"),
  18496. name: "Front (Armored)",
  18497. image: {
  18498. source: "./media/characters/venio-darcony/front-armored.svg"
  18499. }
  18500. },
  18501. backArmored: {
  18502. height: math.unit(19, "feet"),
  18503. weight: math.unit(900, "kg"),
  18504. name: "Back (Armored)",
  18505. image: {
  18506. source: "./media/characters/venio-darcony/back-armored.svg"
  18507. }
  18508. },
  18509. sword: {
  18510. height: math.unit(10, "feet"),
  18511. weight: math.unit(50, "lb"),
  18512. name: "Sword",
  18513. image: {
  18514. source: "./media/characters/venio-darcony/sword.svg"
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(10, "feet")
  18522. },
  18523. {
  18524. name: "Macro",
  18525. height: math.unit(130, "feet"),
  18526. default: true
  18527. },
  18528. {
  18529. name: "Macro+",
  18530. height: math.unit(240, "feet")
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18536. {
  18537. front: {
  18538. height: math.unit(6, "feet"),
  18539. weight: math.unit(150, "lb"),
  18540. name: "Front",
  18541. image: {
  18542. source: "./media/characters/veski/front.svg",
  18543. extra: 1299 / 1225,
  18544. bottom: 0.04
  18545. }
  18546. },
  18547. back: {
  18548. height: math.unit(6, "feet"),
  18549. weight: math.unit(150, "lb"),
  18550. name: "Back",
  18551. image: {
  18552. source: "./media/characters/veski/back.svg",
  18553. extra: 1299 / 1225,
  18554. bottom: 0.008
  18555. }
  18556. },
  18557. maw: {
  18558. height: math.unit(1.5 * 1.21, "feet"),
  18559. name: "Maw",
  18560. image: {
  18561. source: "./media/characters/veski/maw.svg"
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(2, "km"),
  18569. default: true
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(5 + 7 / 12, "feet"),
  18578. name: "Front",
  18579. image: {
  18580. source: "./media/characters/isabelle/front.svg",
  18581. extra: 2130 / 1976,
  18582. bottom: 0.05
  18583. }
  18584. },
  18585. },
  18586. [
  18587. {
  18588. name: "Supermicro",
  18589. height: math.unit(10, "micrometers")
  18590. },
  18591. {
  18592. name: "Micro",
  18593. height: math.unit(1, "inch")
  18594. },
  18595. {
  18596. name: "Tiny",
  18597. height: math.unit(5, "inches")
  18598. },
  18599. {
  18600. name: "Standard",
  18601. height: math.unit(5 + 7 / 12, "inches")
  18602. },
  18603. {
  18604. name: "Macro",
  18605. height: math.unit(80, "meters"),
  18606. default: true
  18607. },
  18608. {
  18609. name: "Megamacro",
  18610. height: math.unit(250, "meters")
  18611. },
  18612. {
  18613. name: "Gigamacro",
  18614. height: math.unit(5, "km")
  18615. },
  18616. {
  18617. name: "Cosmic",
  18618. height: math.unit(2.5e6, "miles")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(6, "feet"),
  18627. weight: math.unit(150, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/hanzo/front.svg",
  18631. extra: 374 / 344,
  18632. bottom: 0.02
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Normal",
  18639. height: math.unit(8, "feet"),
  18640. default: true
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18646. {
  18647. front: {
  18648. height: math.unit(7, "feet"),
  18649. weight: math.unit(130, "lb"),
  18650. name: "Front",
  18651. image: {
  18652. source: "./media/characters/anna/front.svg",
  18653. extra: 169 / 145,
  18654. bottom: 0.06
  18655. }
  18656. },
  18657. full: {
  18658. height: math.unit(4.96, "feet"),
  18659. weight: math.unit(220, "lb"),
  18660. name: "Full",
  18661. image: {
  18662. source: "./media/characters/anna/full.svg",
  18663. extra: 138 / 114,
  18664. bottom: 0.15
  18665. }
  18666. },
  18667. tongue: {
  18668. height: math.unit(2.53, "feet"),
  18669. name: "Tongue",
  18670. image: {
  18671. source: "./media/characters/anna/tongue.svg"
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(7, "feet"),
  18679. default: true
  18680. },
  18681. ]
  18682. ))
  18683. characterMakers.push(() => makeCharacter(
  18684. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18685. {
  18686. front: {
  18687. height: math.unit(7 + 1/12, "feet"),
  18688. weight: math.unit(150, "lb"),
  18689. name: "Front",
  18690. image: {
  18691. source: "./media/characters/ian-corvid/front.svg",
  18692. extra: 621/591,
  18693. bottom: 14/635
  18694. }
  18695. },
  18696. back: {
  18697. height: math.unit(7 + 1/12, "feet"),
  18698. weight: math.unit(150, "lb"),
  18699. name: "Back",
  18700. image: {
  18701. source: "./media/characters/ian-corvid/back.svg",
  18702. extra: 621/600,
  18703. bottom: 10/631
  18704. }
  18705. },
  18706. stomping: {
  18707. height: math.unit(7 + 1/12, "feet"),
  18708. weight: math.unit(150, "lb"),
  18709. name: "Stomping",
  18710. image: {
  18711. source: "./media/characters/ian-corvid/stomping.svg",
  18712. extra: 309/291,
  18713. bottom: 7/316
  18714. }
  18715. },
  18716. tongue: {
  18717. height: math.unit(3.9, "feet"),
  18718. name: "Tongue",
  18719. image: {
  18720. source: "./media/characters/ian-corvid/tongue.svg"
  18721. }
  18722. },
  18723. beak: {
  18724. height: math.unit(0.9, "feet"),
  18725. name: "Beak",
  18726. image: {
  18727. source: "./media/characters/ian-corvid/beak.svg"
  18728. }
  18729. },
  18730. sitting: {
  18731. height: math.unit(7 / 1.8, "feet"),
  18732. weight: math.unit(150, "lb"),
  18733. name: "Sitting",
  18734. image: {
  18735. source: "./media/characters/ian-corvid/sitting.svg",
  18736. extra: 1400 / 1269,
  18737. bottom: 0.15
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Tiny Microw",
  18744. height: math.unit(1, "inch")
  18745. },
  18746. {
  18747. name: "Microw",
  18748. height: math.unit(6, "inches")
  18749. },
  18750. {
  18751. name: "Crow",
  18752. height: math.unit(7 + 1 / 12, "feet"),
  18753. default: true
  18754. },
  18755. {
  18756. name: "Macrow",
  18757. height: math.unit(176, "feet")
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18763. {
  18764. front: {
  18765. height: math.unit(5 + 7 / 12, "feet"),
  18766. weight: math.unit(147, "lb"),
  18767. name: "Front",
  18768. image: {
  18769. source: "./media/characters/natalie-kellon/front.svg",
  18770. extra: 1214 / 1141,
  18771. bottom: 0.02
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Micro",
  18778. height: math.unit(1 / 16, "inch")
  18779. },
  18780. {
  18781. name: "Tiny",
  18782. height: math.unit(4, "inches")
  18783. },
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(5 + 7 / 12, "feet"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Amazon",
  18791. height: math.unit(12, "feet")
  18792. },
  18793. {
  18794. name: "Giantess",
  18795. height: math.unit(160, "meters")
  18796. },
  18797. {
  18798. name: "Titaness",
  18799. height: math.unit(800, "meters")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(6, "feet"),
  18808. weight: math.unit(150, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/alluria/front.svg",
  18812. extra: 806 / 738,
  18813. bottom: 0.01
  18814. }
  18815. },
  18816. side: {
  18817. height: math.unit(6, "feet"),
  18818. weight: math.unit(150, "lb"),
  18819. name: "Side",
  18820. image: {
  18821. source: "./media/characters/alluria/side.svg",
  18822. extra: 800 / 750,
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(6, "feet"),
  18827. weight: math.unit(150, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/alluria/back.svg",
  18831. extra: 806 / 738,
  18832. }
  18833. },
  18834. frontMaid: {
  18835. height: math.unit(6, "feet"),
  18836. weight: math.unit(150, "lb"),
  18837. name: "Front (Maid)",
  18838. image: {
  18839. source: "./media/characters/alluria/front-maid.svg",
  18840. extra: 806 / 738,
  18841. bottom: 0.01
  18842. }
  18843. },
  18844. sideMaid: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(150, "lb"),
  18847. name: "Side (Maid)",
  18848. image: {
  18849. source: "./media/characters/alluria/side-maid.svg",
  18850. extra: 800 / 750,
  18851. bottom: 0.005
  18852. }
  18853. },
  18854. backMaid: {
  18855. height: math.unit(6, "feet"),
  18856. weight: math.unit(150, "lb"),
  18857. name: "Back (Maid)",
  18858. image: {
  18859. source: "./media/characters/alluria/back-maid.svg",
  18860. extra: 806 / 738,
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Micro",
  18867. height: math.unit(6, "inches"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6, "feet"),
  18877. weight: math.unit(150, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/kyle/front.svg",
  18881. extra: 1069 / 962,
  18882. bottom: 77.228 / 1727.45
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(150, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(6, "feet"),
  18899. weight: math.unit(300, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/duncan/front.svg",
  18903. extra: 1650 / 1482,
  18904. bottom: 0.05
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(100, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(5 + 4 / 12, "feet"),
  18921. weight: math.unit(220, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/memory/front.svg",
  18925. extra: 3641 / 3545,
  18926. bottom: 0.03
  18927. }
  18928. },
  18929. back: {
  18930. height: math.unit(5 + 4 / 12, "feet"),
  18931. weight: math.unit(220, "lb"),
  18932. name: "Back",
  18933. image: {
  18934. source: "./media/characters/memory/back.svg",
  18935. extra: 3641 / 3545,
  18936. bottom: 0.025
  18937. }
  18938. },
  18939. frontSkirt: {
  18940. height: math.unit(5 + 4 / 12, "feet"),
  18941. weight: math.unit(220, "lb"),
  18942. name: "Front (Skirt)",
  18943. image: {
  18944. source: "./media/characters/memory/front-skirt.svg",
  18945. extra: 3641 / 3545,
  18946. bottom: 0.03
  18947. }
  18948. },
  18949. frontDress: {
  18950. height: math.unit(5 + 4 / 12, "feet"),
  18951. weight: math.unit(220, "lb"),
  18952. name: "Front (Dress)",
  18953. image: {
  18954. source: "./media/characters/memory/front-dress.svg",
  18955. extra: 3641 / 3545,
  18956. bottom: 0.03
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Micro",
  18963. height: math.unit(6, "inches"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Normal",
  18968. height: math.unit(5 + 4 / 12, "feet")
  18969. },
  18970. ]
  18971. ))
  18972. characterMakers.push(() => makeCharacter(
  18973. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18974. {
  18975. front: {
  18976. height: math.unit(4 + 11 / 12, "feet"),
  18977. weight: math.unit(100, "lb"),
  18978. name: "Front",
  18979. image: {
  18980. source: "./media/characters/luno/front.svg",
  18981. extra: 1535 / 1487,
  18982. bottom: 0.03
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Micro",
  18989. height: math.unit(3, "inches")
  18990. },
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(4 + 11 / 12, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(300, "feet")
  18999. },
  19000. {
  19001. name: "Megamacro",
  19002. height: math.unit(700, "miles")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(6 + 2 / 12, "feet"),
  19011. weight: math.unit(170, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/jamesy/front.svg",
  19015. extra: 440 / 382,
  19016. bottom: 0.005
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Micro",
  19023. height: math.unit(3, "inches")
  19024. },
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(6 + 2 / 12, "feet"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(300, "feet")
  19033. },
  19034. {
  19035. name: "Megamacro",
  19036. height: math.unit(700, "miles")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6, "feet"),
  19045. weight: math.unit(160, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/mark/front.svg",
  19049. extra: 3300 / 3100,
  19050. bottom: 136.42 / 3440.47
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Macro",
  19057. height: math.unit(120, "meters")
  19058. },
  19059. {
  19060. name: "Bigger Macro",
  19061. height: math.unit(350, "meters")
  19062. },
  19063. {
  19064. name: "Megamacro",
  19065. height: math.unit(8, "km"),
  19066. default: true
  19067. },
  19068. {
  19069. name: "Continental",
  19070. height: math.unit(4550, "km")
  19071. },
  19072. {
  19073. name: "Planetary",
  19074. height: math.unit(65000, "km")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19080. {
  19081. front: {
  19082. height: math.unit(6, "feet"),
  19083. weight: math.unit(400, "lb"),
  19084. name: "Front",
  19085. image: {
  19086. source: "./media/characters/mac/front.svg",
  19087. extra: 1048 / 987.7,
  19088. bottom: 60 / 1107.6,
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Macro",
  19095. height: math.unit(500, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(5 + 2 / 12, "feet"),
  19105. weight: math.unit(190, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/bari/front.svg",
  19109. extra: 3156 / 2880,
  19110. bottom: 0.03
  19111. }
  19112. },
  19113. back: {
  19114. height: math.unit(5 + 2 / 12, "feet"),
  19115. weight: math.unit(190, "lb"),
  19116. name: "Back",
  19117. image: {
  19118. source: "./media/characters/bari/back.svg",
  19119. extra: 3260 / 2834,
  19120. bottom: 0.025
  19121. }
  19122. },
  19123. frontPlush: {
  19124. height: math.unit(5 + 2 / 12, "feet"),
  19125. weight: math.unit(190, "lb"),
  19126. name: "Front (Plush)",
  19127. image: {
  19128. source: "./media/characters/bari/front-plush.svg",
  19129. extra: 1112 / 1061,
  19130. bottom: 0.002
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Micro",
  19137. height: math.unit(3, "inches")
  19138. },
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(5 + 2 / 12, "feet"),
  19142. default: true
  19143. },
  19144. {
  19145. name: "Macro",
  19146. height: math.unit(20, "feet")
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(6 + 1 / 12, "feet"),
  19155. weight: math.unit(275, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/hunter-misha-raven/front.svg"
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Mortal",
  19165. height: math.unit(6 + 1 / 12, "feet")
  19166. },
  19167. {
  19168. name: "Divine",
  19169. height: math.unit(1.12134e34, "parsecs"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(6 + 3 / 12, "feet"),
  19179. weight: math.unit(220, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/max-calore/front.svg",
  19183. extra: 1700 / 1648,
  19184. bottom: 0.01
  19185. }
  19186. },
  19187. back: {
  19188. height: math.unit(6 + 3 / 12, "feet"),
  19189. weight: math.unit(220, "lb"),
  19190. name: "Back",
  19191. image: {
  19192. source: "./media/characters/max-calore/back.svg",
  19193. extra: 1700 / 1648,
  19194. bottom: 0.01
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(6 + 3 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19208. {
  19209. side: {
  19210. height: math.unit(2 + 8 / 12, "feet"),
  19211. weight: math.unit(99, "lb"),
  19212. name: "Side",
  19213. image: {
  19214. source: "./media/characters/aspen/side.svg",
  19215. extra: 152 / 138,
  19216. bottom: 0.032
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(2 + 8 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19230. {
  19231. side: {
  19232. height: math.unit(3 + 2 / 12, "feet"),
  19233. weight: math.unit(224, "lb"),
  19234. name: "Side",
  19235. image: {
  19236. source: "./media/characters/sheila-feral-wolf/side.svg",
  19237. extra: 179 / 166,
  19238. bottom: 0.03
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(3 + 2 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19252. {
  19253. side: {
  19254. height: math.unit(1 + 9 / 12, "feet"),
  19255. weight: math.unit(38, "lb"),
  19256. name: "Side",
  19257. image: {
  19258. source: "./media/characters/michelle/side.svg",
  19259. extra: 147 / 136.7,
  19260. bottom: 0.03
  19261. }
  19262. },
  19263. },
  19264. [
  19265. {
  19266. name: "Normal",
  19267. height: math.unit(1 + 9 / 12, "feet"),
  19268. default: true
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(1.54, "feet"),
  19277. weight: math.unit(50, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/nino/front.svg"
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(1.54, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(1.49, "feet"),
  19297. weight: math.unit(45, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/viola/front.svg"
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(1.49, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(6 + 5 / 12, "feet"),
  19317. weight: math.unit(580, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/atlas/front.svg",
  19321. extra: 298.5 / 290,
  19322. bottom: 0.015
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(6 + 5 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19336. {
  19337. side: {
  19338. height: math.unit(15.6, "inches"),
  19339. weight: math.unit(10, "lb"),
  19340. name: "Side",
  19341. image: {
  19342. source: "./media/characters/davy/side.svg",
  19343. extra: 200 / 170,
  19344. bottom: 0.01
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(15.6, "inches"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19358. {
  19359. side: {
  19360. height: math.unit(4 + 8 / 12, "feet"),
  19361. weight: math.unit(166, "lb"),
  19362. name: "Side",
  19363. image: {
  19364. source: "./media/characters/fiona/side.svg",
  19365. extra: 232 / 220,
  19366. bottom: 0.03
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(4 + 8 / 12, "feet"),
  19374. default: true
  19375. },
  19376. ]
  19377. ))
  19378. characterMakers.push(() => makeCharacter(
  19379. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19380. {
  19381. front: {
  19382. height: math.unit(26, "inches"),
  19383. weight: math.unit(35, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/lyla/front.svg",
  19387. bottom: 0.1
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(3, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19401. {
  19402. side: {
  19403. height: math.unit(1.8, "feet"),
  19404. weight: math.unit(44, "lb"),
  19405. name: "Side",
  19406. image: {
  19407. source: "./media/characters/perseus/side.svg",
  19408. bottom: 0.21
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(1.8, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19422. {
  19423. side: {
  19424. height: math.unit(4 + 2 / 12, "feet"),
  19425. weight: math.unit(20, "lb"),
  19426. name: "Side",
  19427. image: {
  19428. source: "./media/characters/remus/side.svg"
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(4 + 2 / 12, "feet"),
  19436. default: true
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19442. {
  19443. front: {
  19444. height: math.unit(4 + 11 / 12, "feet"),
  19445. weight: math.unit(114, "lb"),
  19446. name: "Front",
  19447. image: {
  19448. source: "./media/characters/raf/front.svg",
  19449. extra: 1504/1339,
  19450. bottom: 26/1530
  19451. }
  19452. },
  19453. side: {
  19454. height: math.unit(4 + 11 / 12, "feet"),
  19455. weight: math.unit(114, "lb"),
  19456. name: "Side",
  19457. image: {
  19458. source: "./media/characters/raf/side.svg",
  19459. extra: 1466/1316,
  19460. bottom: 29/1495
  19461. }
  19462. },
  19463. paw: {
  19464. height: math.unit(1.45, "feet"),
  19465. name: "Paw",
  19466. image: {
  19467. source: "./media/characters/raf/paw.svg"
  19468. },
  19469. extraAttributes: {
  19470. "toeSize": {
  19471. name: "Toe Size",
  19472. power: 2,
  19473. type: "area",
  19474. base: math.unit(0.004, "m^2")
  19475. },
  19476. "padSize": {
  19477. name: "Pad Size",
  19478. power: 2,
  19479. type: "area",
  19480. base: math.unit(0.04, "m^2")
  19481. },
  19482. "footSize": {
  19483. name: "Foot Size",
  19484. power: 2,
  19485. type: "area",
  19486. base: math.unit(0.08, "m^2")
  19487. },
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Micro",
  19494. height: math.unit(2, "inches")
  19495. },
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(4 + 11 / 12, "feet"),
  19499. default: true
  19500. },
  19501. {
  19502. name: "Macro",
  19503. height: math.unit(70, "feet")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(1.5, "meters"),
  19512. weight: math.unit(68, "kg"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/liam-einarr/front.svg",
  19516. extra: 2822 / 2666
  19517. }
  19518. },
  19519. back: {
  19520. height: math.unit(1.5, "meters"),
  19521. weight: math.unit(68, "kg"),
  19522. name: "Back",
  19523. image: {
  19524. source: "./media/characters/liam-einarr/back.svg",
  19525. extra: 2822 / 2666,
  19526. bottom: 0.015
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(1.5, "meters"),
  19534. default: true
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(150, "meters")
  19539. },
  19540. {
  19541. name: "Megamacro",
  19542. height: math.unit(35, "km")
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19548. {
  19549. front: {
  19550. height: math.unit(6, "feet"),
  19551. weight: math.unit(75, "kg"),
  19552. name: "Front",
  19553. image: {
  19554. source: "./media/characters/linda/front.svg",
  19555. extra: 930 / 874,
  19556. bottom: 0.004
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(6, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(6 + 8 / 12, "feet"),
  19573. weight: math.unit(220, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/caylex/front.svg",
  19577. extra: 821 / 772,
  19578. bottom: 0.07
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(6 + 8 / 12, "feet"),
  19583. weight: math.unit(220, "lb"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/caylex/back.svg",
  19587. extra: 821 / 772,
  19588. bottom: 0.022
  19589. }
  19590. },
  19591. hand: {
  19592. height: math.unit(1.25, "feet"),
  19593. name: "Hand",
  19594. image: {
  19595. source: "./media/characters/caylex/hand.svg"
  19596. }
  19597. },
  19598. foot: {
  19599. height: math.unit(1.6, "feet"),
  19600. name: "Foot",
  19601. image: {
  19602. source: "./media/characters/caylex/foot.svg"
  19603. }
  19604. },
  19605. armored: {
  19606. height: math.unit(6 + 8 / 12, "feet"),
  19607. weight: math.unit(250, "lb"),
  19608. name: "Armored",
  19609. image: {
  19610. source: "./media/characters/caylex/armored.svg",
  19611. extra: 1420 / 1310,
  19612. bottom: 0.045
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(6 + 8 / 12, "feet"),
  19620. default: true
  19621. },
  19622. {
  19623. name: "Normal+",
  19624. height: math.unit(12, "feet")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(7 + 6 / 12, "feet"),
  19633. weight: math.unit(288, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/alana/front.svg",
  19637. extra: 679 / 653,
  19638. bottom: 22.5 / 701
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(7 + 6 / 12, "feet")
  19646. },
  19647. {
  19648. name: "Large",
  19649. height: math.unit(50, "feet")
  19650. },
  19651. {
  19652. name: "Macro",
  19653. height: math.unit(100, "feet"),
  19654. default: true
  19655. },
  19656. {
  19657. name: "Macro+",
  19658. height: math.unit(200, "feet")
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19664. {
  19665. front: {
  19666. height: math.unit(6 + 1 / 12, "feet"),
  19667. weight: math.unit(210, "lb"),
  19668. name: "Front",
  19669. image: {
  19670. source: "./media/characters/hasani/front.svg",
  19671. extra: 244 / 232,
  19672. bottom: 0.01
  19673. }
  19674. },
  19675. back: {
  19676. height: math.unit(6 + 1 / 12, "feet"),
  19677. weight: math.unit(210, "lb"),
  19678. name: "Back",
  19679. image: {
  19680. source: "./media/characters/hasani/back.svg",
  19681. extra: 244 / 232,
  19682. bottom: 0.01
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(6 + 1 / 12, "feet")
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(175, "feet"),
  19694. default: true
  19695. },
  19696. ]
  19697. ))
  19698. characterMakers.push(() => makeCharacter(
  19699. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19700. {
  19701. front: {
  19702. height: math.unit(1.82, "meters"),
  19703. weight: math.unit(140, "lb"),
  19704. name: "Front",
  19705. image: {
  19706. source: "./media/characters/nita/front.svg",
  19707. extra: 2473 / 2363,
  19708. bottom: 0.01
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(1.82, "m")
  19716. },
  19717. {
  19718. name: "Macro",
  19719. height: math.unit(300, "m")
  19720. },
  19721. {
  19722. name: "Mistake Canon",
  19723. height: math.unit(0.5, "miles"),
  19724. default: true
  19725. },
  19726. {
  19727. name: "Big Mistake",
  19728. height: math.unit(13, "miles")
  19729. },
  19730. {
  19731. name: "Playing God",
  19732. height: math.unit(2450, "miles")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(4, "feet"),
  19741. weight: math.unit(120, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/shiriko/front.svg",
  19745. extra: 970/934,
  19746. bottom: 5/975
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(4, "feet"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(6, "feet"),
  19763. name: "front",
  19764. image: {
  19765. source: "./media/characters/deja/front.svg",
  19766. extra: 926 / 840,
  19767. bottom: 0.07
  19768. }
  19769. },
  19770. },
  19771. [
  19772. {
  19773. name: "Planck Length",
  19774. height: math.unit(1.6e-35, "meters")
  19775. },
  19776. {
  19777. name: "Normal",
  19778. height: math.unit(30.48, "meters"),
  19779. default: true
  19780. },
  19781. {
  19782. name: "Universal",
  19783. height: math.unit(8.8e26, "meters")
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19789. {
  19790. side: {
  19791. height: math.unit(8, "feet"),
  19792. weight: math.unit(6300, "lb"),
  19793. name: "Side",
  19794. image: {
  19795. source: "./media/characters/anima/side.svg",
  19796. bottom: 0.035
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(8, "feet"),
  19804. default: true
  19805. },
  19806. ]
  19807. ))
  19808. characterMakers.push(() => makeCharacter(
  19809. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19810. {
  19811. front: {
  19812. height: math.unit(8, "feet"),
  19813. weight: math.unit(350, "lb"),
  19814. name: "Front",
  19815. image: {
  19816. source: "./media/characters/bianca/front.svg",
  19817. extra: 234 / 225,
  19818. bottom: 0.03
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Normal",
  19825. height: math.unit(8, "feet"),
  19826. default: true
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19832. {
  19833. front: {
  19834. height: math.unit(11 + 5/12, "feet"),
  19835. weight: math.unit(1200, "lb"),
  19836. name: "Front",
  19837. image: {
  19838. source: "./media/characters/adinia/front.svg",
  19839. extra: 1767/1641,
  19840. bottom: 44/1811
  19841. },
  19842. extraAttributes: {
  19843. "energyIntake": {
  19844. name: "Energy Intake",
  19845. power: 3,
  19846. type: "energy",
  19847. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19848. },
  19849. }
  19850. },
  19851. back: {
  19852. height: math.unit(11 + 5/12, "feet"),
  19853. weight: math.unit(1200, "lb"),
  19854. name: "Back",
  19855. image: {
  19856. source: "./media/characters/adinia/back.svg",
  19857. extra: 1834/1684,
  19858. bottom: 14/1848
  19859. },
  19860. extraAttributes: {
  19861. "energyIntake": {
  19862. name: "Energy Intake",
  19863. power: 3,
  19864. type: "energy",
  19865. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19866. },
  19867. }
  19868. },
  19869. maw: {
  19870. height: math.unit(3.79, "feet"),
  19871. name: "Maw",
  19872. image: {
  19873. source: "./media/characters/adinia/maw.svg"
  19874. }
  19875. },
  19876. rump: {
  19877. height: math.unit(4.6, "feet"),
  19878. name: "Rump",
  19879. image: {
  19880. source: "./media/characters/adinia/rump.svg"
  19881. }
  19882. },
  19883. },
  19884. [
  19885. {
  19886. name: "Normal",
  19887. height: math.unit(11 + 5 / 12, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(3, "meters"),
  19897. weight: math.unit(200, "kg"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/lykasa/front.svg",
  19901. extra: 1076 / 976,
  19902. bottom: 0.06
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(3, "meters")
  19910. },
  19911. {
  19912. name: "Kaiju",
  19913. height: math.unit(120, "meters"),
  19914. default: true
  19915. },
  19916. {
  19917. name: "Mega Kaiju",
  19918. height: math.unit(240, "km")
  19919. },
  19920. {
  19921. name: "Giga Kaiju",
  19922. height: math.unit(400, "megameters")
  19923. },
  19924. {
  19925. name: "Tera Kaiju",
  19926. height: math.unit(800, "gigameters")
  19927. },
  19928. {
  19929. name: "Kaiju Dragon Goddess",
  19930. height: math.unit(26, "zettaparsecs")
  19931. },
  19932. ]
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19936. {
  19937. side: {
  19938. height: math.unit(283 / 124 * 6, "feet"),
  19939. weight: math.unit(35000, "lb"),
  19940. name: "Side",
  19941. image: {
  19942. source: "./media/characters/malfaren/side.svg",
  19943. extra: 1310/529,
  19944. bottom: 24/1334
  19945. }
  19946. },
  19947. front: {
  19948. height: math.unit(22.36, "feet"),
  19949. weight: math.unit(35000, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/malfaren/front.svg",
  19953. extra: 1237/1115,
  19954. bottom: 32/1269
  19955. }
  19956. },
  19957. maw: {
  19958. height: math.unit(6.9, "feet"),
  19959. name: "Maw",
  19960. image: {
  19961. source: "./media/characters/malfaren/maw.svg"
  19962. }
  19963. },
  19964. dick: {
  19965. height: math.unit(6.19, "feet"),
  19966. name: "Dick",
  19967. image: {
  19968. source: "./media/characters/malfaren/dick.svg"
  19969. }
  19970. },
  19971. eye: {
  19972. height: math.unit(0.69, "feet"),
  19973. name: "Eye",
  19974. image: {
  19975. source: "./media/characters/malfaren/eye.svg"
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Big",
  19982. height: math.unit(283 / 162 * 6, "feet"),
  19983. },
  19984. {
  19985. name: "Bigger",
  19986. height: math.unit(283 / 124 * 6, "feet")
  19987. },
  19988. {
  19989. name: "Massive",
  19990. height: math.unit(283 / 92 * 6, "feet"),
  19991. default: true
  19992. },
  19993. {
  19994. name: "👀💦",
  19995. height: math.unit(283 / 73 * 6, "feet"),
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(1.7, "m"),
  20004. weight: math.unit(70, "kg"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/kernel/front.svg",
  20008. extra: 1960/1821,
  20009. bottom: 17/1977
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Nano",
  20016. height: math.unit(17, "micrometers")
  20017. },
  20018. {
  20019. name: "Micro",
  20020. height: math.unit(1.7, "mm")
  20021. },
  20022. {
  20023. name: "Small",
  20024. height: math.unit(1.7, "cm")
  20025. },
  20026. {
  20027. name: "Normal",
  20028. height: math.unit(1.7, "m"),
  20029. default: true
  20030. },
  20031. ]
  20032. ))
  20033. characterMakers.push(() => makeCharacter(
  20034. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20035. {
  20036. front: {
  20037. height: math.unit(1.75, "meters"),
  20038. weight: math.unit(65, "kg"),
  20039. name: "Front",
  20040. image: {
  20041. source: "./media/characters/jayne-folest/front.svg",
  20042. extra: 2115 / 2007,
  20043. bottom: 0.02
  20044. }
  20045. },
  20046. back: {
  20047. height: math.unit(1.75, "meters"),
  20048. weight: math.unit(65, "kg"),
  20049. name: "Back",
  20050. image: {
  20051. source: "./media/characters/jayne-folest/back.svg",
  20052. extra: 2115 / 2007,
  20053. bottom: 0.005
  20054. }
  20055. },
  20056. frontClothed: {
  20057. height: math.unit(1.75, "meters"),
  20058. weight: math.unit(65, "kg"),
  20059. name: "Front (Clothed)",
  20060. image: {
  20061. source: "./media/characters/jayne-folest/front-clothed.svg",
  20062. extra: 2115 / 2007,
  20063. bottom: 0.035
  20064. }
  20065. },
  20066. hand: {
  20067. height: math.unit(1 / 1.260, "feet"),
  20068. name: "Hand",
  20069. image: {
  20070. source: "./media/characters/jayne-folest/hand.svg"
  20071. }
  20072. },
  20073. foot: {
  20074. height: math.unit(1 / 0.918, "feet"),
  20075. name: "Foot",
  20076. image: {
  20077. source: "./media/characters/jayne-folest/foot.svg"
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Micro",
  20084. height: math.unit(4, "cm")
  20085. },
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(1.75, "meters")
  20089. },
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(47.5, "meters"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(180, "cm"),
  20102. weight: math.unit(70, "kg"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/algier/front.svg",
  20106. extra: 596 / 572,
  20107. bottom: 0.04
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(180, "cm"),
  20112. weight: math.unit(70, "kg"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/algier/back.svg",
  20116. extra: 596 / 572,
  20117. bottom: 0.025
  20118. }
  20119. },
  20120. frontdressed: {
  20121. height: math.unit(180, "cm"),
  20122. weight: math.unit(150, "kg"),
  20123. name: "Front-dressed",
  20124. image: {
  20125. source: "./media/characters/algier/front-dressed.svg",
  20126. extra: 596 / 572,
  20127. bottom: 0.038
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Micro",
  20134. height: math.unit(5, "cm")
  20135. },
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(180, "cm"),
  20139. default: true
  20140. },
  20141. {
  20142. name: "Macro",
  20143. height: math.unit(64, "m")
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20149. {
  20150. upright: {
  20151. height: math.unit(7, "feet"),
  20152. weight: math.unit(300, "lb"),
  20153. name: "Upright",
  20154. image: {
  20155. source: "./media/characters/pretzel/upright.svg",
  20156. extra: 534 / 522,
  20157. bottom: 0.065
  20158. }
  20159. },
  20160. sprawling: {
  20161. height: math.unit(3.75, "feet"),
  20162. weight: math.unit(300, "lb"),
  20163. name: "Sprawling",
  20164. image: {
  20165. source: "./media/characters/pretzel/sprawling.svg",
  20166. extra: 314 / 281,
  20167. bottom: 0.1
  20168. }
  20169. },
  20170. tongue: {
  20171. height: math.unit(2, "feet"),
  20172. name: "Tongue",
  20173. image: {
  20174. source: "./media/characters/pretzel/tongue.svg"
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(7, "feet"),
  20182. default: true
  20183. },
  20184. {
  20185. name: "Oversized",
  20186. height: math.unit(15, "feet")
  20187. },
  20188. {
  20189. name: "Huge",
  20190. height: math.unit(30, "feet")
  20191. },
  20192. {
  20193. name: "Macro",
  20194. height: math.unit(250, "feet")
  20195. },
  20196. ]
  20197. ))
  20198. characterMakers.push(() => makeCharacter(
  20199. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20200. {
  20201. sideFront: {
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. weight: math.unit(120, "lb"),
  20204. name: "Front Side",
  20205. image: {
  20206. source: "./media/characters/roxi/side-front.svg",
  20207. extra: 2924 / 2717,
  20208. bottom: 0.08
  20209. }
  20210. },
  20211. sideBack: {
  20212. height: math.unit(5 + 2 / 12, "feet"),
  20213. weight: math.unit(120, "lb"),
  20214. name: "Back Side",
  20215. image: {
  20216. source: "./media/characters/roxi/side-back.svg",
  20217. extra: 2904 / 2693,
  20218. bottom: 0.06
  20219. }
  20220. },
  20221. front: {
  20222. height: math.unit(5 + 2 / 12, "feet"),
  20223. weight: math.unit(120, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/roxi/front.svg",
  20227. extra: 2028 / 1907,
  20228. bottom: 0.01
  20229. }
  20230. },
  20231. frontAlt: {
  20232. height: math.unit(5 + 2 / 12, "feet"),
  20233. weight: math.unit(120, "lb"),
  20234. name: "Front (Alt)",
  20235. image: {
  20236. source: "./media/characters/roxi/front-alt.svg",
  20237. extra: 1828 / 1798,
  20238. bottom: 0.01
  20239. }
  20240. },
  20241. sitting: {
  20242. height: math.unit(2.8, "feet"),
  20243. weight: math.unit(120, "lb"),
  20244. name: "Sitting",
  20245. image: {
  20246. source: "./media/characters/roxi/sitting.svg",
  20247. extra: 2660 / 2462,
  20248. bottom: 0.1
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(5 + 2 / 12, "feet"),
  20256. default: true
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20262. {
  20263. side: {
  20264. height: math.unit(55, "feet"),
  20265. weight: math.unit(153, "tons"),
  20266. name: "Side",
  20267. image: {
  20268. source: "./media/characters/shadow/side.svg",
  20269. extra: 701 / 628,
  20270. bottom: 0.02
  20271. }
  20272. },
  20273. flying: {
  20274. height: math.unit(145, "feet"),
  20275. weight: math.unit(153, "tons"),
  20276. name: "Flying",
  20277. image: {
  20278. source: "./media/characters/shadow/flying.svg"
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(55, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(6, "feet"),
  20295. weight: math.unit(200, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/marcie/front.svg",
  20299. extra: 960 / 876,
  20300. bottom: 58 / 1017.87
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Macro",
  20307. height: math.unit(1, "mile"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20314. {
  20315. front: {
  20316. height: math.unit(7, "feet"),
  20317. weight: math.unit(200, "lb"),
  20318. name: "Front",
  20319. image: {
  20320. source: "./media/characters/kachina/front.svg",
  20321. extra: 3206/2764,
  20322. bottom: 140/3346
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(7, "feet"),
  20330. default: true
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20336. {
  20337. looking: {
  20338. height: math.unit(2, "meters"),
  20339. weight: math.unit(300, "kg"),
  20340. name: "Looking",
  20341. image: {
  20342. source: "./media/characters/kash/looking.svg",
  20343. extra: 474 / 344,
  20344. bottom: 0.03
  20345. }
  20346. },
  20347. side: {
  20348. height: math.unit(2, "meters"),
  20349. weight: math.unit(300, "kg"),
  20350. name: "Side",
  20351. image: {
  20352. source: "./media/characters/kash/side.svg",
  20353. extra: 302 / 251,
  20354. bottom: 0.03
  20355. }
  20356. },
  20357. front: {
  20358. height: math.unit(2, "meters"),
  20359. weight: math.unit(300, "kg"),
  20360. name: "Front",
  20361. image: {
  20362. source: "./media/characters/kash/front.svg",
  20363. extra: 495 / 360,
  20364. bottom: 0.015
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(2, "meters"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Big",
  20376. height: math.unit(3, "meters")
  20377. },
  20378. {
  20379. name: "Large",
  20380. height: math.unit(5, "meters")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20386. {
  20387. feeding: {
  20388. height: math.unit(6.7, "feet"),
  20389. weight: math.unit(350, "lb"),
  20390. name: "Feeding",
  20391. image: {
  20392. source: "./media/characters/lalim/feeding.svg",
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(6.7, "feet"),
  20400. default: true
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(9.5, "feet"),
  20409. weight: math.unit(600, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/de'vout/front.svg",
  20413. extra: 1443 / 1328,
  20414. bottom: 0.025
  20415. }
  20416. },
  20417. back: {
  20418. height: math.unit(9.5, "feet"),
  20419. weight: math.unit(600, "lb"),
  20420. name: "Back",
  20421. image: {
  20422. source: "./media/characters/de'vout/back.svg",
  20423. extra: 1443 / 1328
  20424. }
  20425. },
  20426. frontDressed: {
  20427. height: math.unit(9.5, "feet"),
  20428. weight: math.unit(600, "lb"),
  20429. name: "Front (Dressed",
  20430. image: {
  20431. source: "./media/characters/de'vout/front-dressed.svg",
  20432. extra: 1443 / 1328,
  20433. bottom: 0.025
  20434. }
  20435. },
  20436. backDressed: {
  20437. height: math.unit(9.5, "feet"),
  20438. weight: math.unit(600, "lb"),
  20439. name: "Back (Dressed",
  20440. image: {
  20441. source: "./media/characters/de'vout/back-dressed.svg",
  20442. extra: 1443 / 1328
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(9.5, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(8, "feet"),
  20459. weight: math.unit(225, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/talana/front.svg",
  20463. extra: 1410 / 1300,
  20464. bottom: 0.015
  20465. }
  20466. },
  20467. frontDressed: {
  20468. height: math.unit(8, "feet"),
  20469. weight: math.unit(225, "lb"),
  20470. name: "Front (Dressed",
  20471. image: {
  20472. source: "./media/characters/talana/front-dressed.svg",
  20473. extra: 1410 / 1300,
  20474. bottom: 0.015
  20475. }
  20476. },
  20477. },
  20478. [
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(8, "feet"),
  20482. default: true
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20488. {
  20489. side: {
  20490. height: math.unit(7.2, "feet"),
  20491. weight: math.unit(150, "lb"),
  20492. name: "Side",
  20493. image: {
  20494. source: "./media/characters/xeauvok/side.svg",
  20495. extra: 1975 / 1523,
  20496. bottom: 0.07
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(7.2, "feet"),
  20504. default: true
  20505. },
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20510. {
  20511. side: {
  20512. height: math.unit(4, "meters"),
  20513. weight: math.unit(2200, "kg"),
  20514. name: "Side",
  20515. image: {
  20516. source: "./media/characters/zara/side.svg",
  20517. extra: 765/744,
  20518. bottom: 156/921
  20519. }
  20520. },
  20521. },
  20522. [
  20523. {
  20524. name: "Normal",
  20525. height: math.unit(4, "meters"),
  20526. default: true
  20527. },
  20528. ]
  20529. ))
  20530. characterMakers.push(() => makeCharacter(
  20531. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20532. {
  20533. side: {
  20534. height: math.unit(6, "feet"),
  20535. weight: math.unit(150, "lb"),
  20536. name: "Side",
  20537. image: {
  20538. source: "./media/characters/richard-dragon/side.svg",
  20539. extra: 845 / 340,
  20540. bottom: 0.017
  20541. }
  20542. },
  20543. maw: {
  20544. height: math.unit(2.97, "feet"),
  20545. name: "Maw",
  20546. image: {
  20547. source: "./media/characters/richard-dragon/maw.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(4, "feet"),
  20559. weight: math.unit(100, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/richard-smeargle/front.svg",
  20563. extra: 2952 / 2820,
  20564. bottom: 0.028
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(4, "feet"),
  20572. default: true
  20573. },
  20574. {
  20575. name: "Dynamax",
  20576. height: math.unit(20, "meters")
  20577. },
  20578. ]
  20579. ))
  20580. characterMakers.push(() => makeCharacter(
  20581. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20582. {
  20583. front: {
  20584. height: math.unit(6, "feet"),
  20585. weight: math.unit(110, "lb"),
  20586. name: "Front",
  20587. image: {
  20588. source: "./media/characters/klay/front.svg",
  20589. extra: 962 / 883,
  20590. bottom: 0.04
  20591. }
  20592. },
  20593. back: {
  20594. height: math.unit(6, "feet"),
  20595. weight: math.unit(110, "lb"),
  20596. name: "Back",
  20597. image: {
  20598. source: "./media/characters/klay/back.svg",
  20599. extra: 962 / 883
  20600. }
  20601. },
  20602. beans: {
  20603. height: math.unit(1.15, "feet"),
  20604. name: "Beans",
  20605. image: {
  20606. source: "./media/characters/klay/beans.svg"
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Micro",
  20613. height: math.unit(6, "inches")
  20614. },
  20615. {
  20616. name: "Mini",
  20617. height: math.unit(3, "feet")
  20618. },
  20619. {
  20620. name: "Normal",
  20621. height: math.unit(6, "feet"),
  20622. default: true
  20623. },
  20624. {
  20625. name: "Big",
  20626. height: math.unit(25, "feet")
  20627. },
  20628. {
  20629. name: "Macro",
  20630. height: math.unit(100, "feet")
  20631. },
  20632. {
  20633. name: "Megamacro",
  20634. height: math.unit(400, "feet")
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20640. {
  20641. front: {
  20642. height: math.unit(6, "feet"),
  20643. weight: math.unit(160, "lb"),
  20644. name: "Front",
  20645. image: {
  20646. source: "./media/characters/marcus/front.svg",
  20647. extra: 734 / 676,
  20648. bottom: 0.03
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Little",
  20655. height: math.unit(6, "feet")
  20656. },
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(110, "feet"),
  20660. default: true
  20661. },
  20662. {
  20663. name: "Macro",
  20664. height: math.unit(250, "feet")
  20665. },
  20666. {
  20667. name: "Megamacro",
  20668. height: math.unit(1000, "feet")
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(7, "feet"),
  20677. weight: math.unit(275, "lb"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/claude-delroute/front.svg",
  20681. extra: 902/827,
  20682. bottom: 26/928
  20683. }
  20684. },
  20685. side: {
  20686. height: math.unit(7, "feet"),
  20687. weight: math.unit(275, "lb"),
  20688. name: "Side",
  20689. image: {
  20690. source: "./media/characters/claude-delroute/side.svg",
  20691. extra: 908/853,
  20692. bottom: 16/924
  20693. }
  20694. },
  20695. back: {
  20696. height: math.unit(7, "feet"),
  20697. weight: math.unit(275, "lb"),
  20698. name: "Back",
  20699. image: {
  20700. source: "./media/characters/claude-delroute/back.svg",
  20701. extra: 911/829,
  20702. bottom: 18/929
  20703. }
  20704. },
  20705. maw: {
  20706. height: math.unit(0.6407, "meters"),
  20707. name: "Maw",
  20708. image: {
  20709. source: "./media/characters/claude-delroute/maw.svg"
  20710. }
  20711. },
  20712. },
  20713. [
  20714. {
  20715. name: "Normal",
  20716. height: math.unit(7, "feet"),
  20717. default: true
  20718. },
  20719. {
  20720. name: "Lorge",
  20721. height: math.unit(20, "feet")
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(8 + 4 / 12, "feet"),
  20730. weight: math.unit(600, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/dragonien/front.svg",
  20734. extra: 100 / 94,
  20735. bottom: 3.3 / 103.3445
  20736. }
  20737. },
  20738. back: {
  20739. height: math.unit(8 + 4 / 12, "feet"),
  20740. weight: math.unit(600, "lb"),
  20741. name: "Back",
  20742. image: {
  20743. source: "./media/characters/dragonien/back.svg",
  20744. extra: 776 / 746,
  20745. bottom: 6.4 / 782.0616
  20746. }
  20747. },
  20748. foot: {
  20749. height: math.unit(1.54, "feet"),
  20750. name: "Foot",
  20751. image: {
  20752. source: "./media/characters/dragonien/foot.svg",
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(8 + 4 / 12, "feet"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(200, "feet")
  20765. },
  20766. {
  20767. name: "Megamacro",
  20768. height: math.unit(1, "mile")
  20769. },
  20770. {
  20771. name: "Gigamacro",
  20772. height: math.unit(1000, "miles")
  20773. },
  20774. ]
  20775. ))
  20776. characterMakers.push(() => makeCharacter(
  20777. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20778. {
  20779. front: {
  20780. height: math.unit(5 + 2 / 12, "feet"),
  20781. weight: math.unit(110, "lb"),
  20782. name: "Front",
  20783. image: {
  20784. source: "./media/characters/desta/front.svg",
  20785. extra: 767 / 726,
  20786. bottom: 11.7 / 779
  20787. }
  20788. },
  20789. back: {
  20790. height: math.unit(5 + 2 / 12, "feet"),
  20791. weight: math.unit(110, "lb"),
  20792. name: "Back",
  20793. image: {
  20794. source: "./media/characters/desta/back.svg",
  20795. extra: 777 / 728,
  20796. bottom: 6 / 784
  20797. }
  20798. },
  20799. frontAlt: {
  20800. height: math.unit(5 + 2 / 12, "feet"),
  20801. weight: math.unit(110, "lb"),
  20802. name: "Front",
  20803. image: {
  20804. source: "./media/characters/desta/front-alt.svg",
  20805. extra: 1482 / 1417
  20806. }
  20807. },
  20808. side: {
  20809. height: math.unit(5 + 2 / 12, "feet"),
  20810. weight: math.unit(110, "lb"),
  20811. name: "Side",
  20812. image: {
  20813. source: "./media/characters/desta/side.svg",
  20814. extra: 2579 / 2491,
  20815. bottom: 0.053
  20816. }
  20817. },
  20818. },
  20819. [
  20820. {
  20821. name: "Micro",
  20822. height: math.unit(6, "inches")
  20823. },
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 2 / 12, "feet"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Macro",
  20831. height: math.unit(62, "feet")
  20832. },
  20833. {
  20834. name: "Megamacro",
  20835. height: math.unit(1800, "feet")
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(10, "feet"),
  20844. weight: math.unit(700, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/storm-alystar/front.svg",
  20848. extra: 2112 / 1898,
  20849. bottom: 0.034
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Micro",
  20856. height: math.unit(3.5, "inches")
  20857. },
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(10, "feet"),
  20861. default: true
  20862. },
  20863. {
  20864. name: "Macro",
  20865. height: math.unit(400, "feet")
  20866. },
  20867. {
  20868. name: "Deific",
  20869. height: math.unit(60, "miles")
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(2.35, "meters"),
  20878. weight: math.unit(119, "kg"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/ilia/front.svg",
  20882. extra: 1285 / 1255,
  20883. bottom: 0.06
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(2.35, "meters")
  20891. },
  20892. {
  20893. name: "Macro",
  20894. height: math.unit(140, "meters"),
  20895. default: true
  20896. },
  20897. {
  20898. name: "Megamacro",
  20899. height: math.unit(100, "miles")
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20905. {
  20906. front: {
  20907. height: math.unit(6 + 5 / 12, "feet"),
  20908. weight: math.unit(190, "lb"),
  20909. name: "Front",
  20910. image: {
  20911. source: "./media/characters/kingdead/front.svg",
  20912. extra: 1228 / 1177
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Micro",
  20919. height: math.unit(7, "inches")
  20920. },
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(6 + 5 / 12, "feet")
  20924. },
  20925. {
  20926. name: "Macro",
  20927. height: math.unit(150, "feet"),
  20928. default: true
  20929. },
  20930. {
  20931. name: "Megamacro",
  20932. height: math.unit(200, "miles")
  20933. },
  20934. ]
  20935. ))
  20936. characterMakers.push(() => makeCharacter(
  20937. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20938. {
  20939. front: {
  20940. height: math.unit(8, "feet"),
  20941. weight: math.unit(600, "lb"),
  20942. name: "Front",
  20943. image: {
  20944. source: "./media/characters/kyrehx/front.svg",
  20945. extra: 1195 / 1095,
  20946. bottom: 0.034
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Micro",
  20953. height: math.unit(2, "inches")
  20954. },
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(8, "feet"),
  20958. default: true
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(255, "feet")
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20971. weight: math.unit(184, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/xang/front.svg",
  20975. extra: 845 / 755
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20983. default: true
  20984. },
  20985. {
  20986. name: "Macro",
  20987. height: math.unit(0.935 * 146, "feet")
  20988. },
  20989. {
  20990. name: "Megamacro",
  20991. height: math.unit(0.935 * 3, "miles")
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20997. {
  20998. frontDressed: {
  20999. height: math.unit(5 + 7 / 12, "feet"),
  21000. weight: math.unit(140, "lb"),
  21001. name: "Front (Dressed)",
  21002. image: {
  21003. source: "./media/characters/doc-weardno/front-dressed.svg",
  21004. extra: 263 / 234
  21005. }
  21006. },
  21007. backDressed: {
  21008. height: math.unit(5 + 7 / 12, "feet"),
  21009. weight: math.unit(140, "lb"),
  21010. name: "Back (Dressed)",
  21011. image: {
  21012. source: "./media/characters/doc-weardno/back-dressed.svg",
  21013. extra: 266 / 238
  21014. }
  21015. },
  21016. front: {
  21017. height: math.unit(5 + 7 / 12, "feet"),
  21018. weight: math.unit(140, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/doc-weardno/front.svg",
  21022. extra: 254 / 233
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Micro",
  21029. height: math.unit(3, "inches")
  21030. },
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(5 + 7 / 12, "feet"),
  21034. default: true
  21035. },
  21036. {
  21037. name: "Macro",
  21038. height: math.unit(25, "feet")
  21039. },
  21040. {
  21041. name: "Megamacro",
  21042. height: math.unit(2, "miles")
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(6 + 2 / 12, "feet"),
  21051. weight: math.unit(153, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/seth-whilst/front.svg",
  21055. bottom: 0.07
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Micro",
  21062. height: math.unit(5, "inches")
  21063. },
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(6 + 2 / 12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21073. {
  21074. front: {
  21075. height: math.unit(3, "inches"),
  21076. weight: math.unit(8, "grams"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/pocket-jabari/front.svg",
  21080. extra: 1024 / 974,
  21081. bottom: 0.039
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Minimicro",
  21088. height: math.unit(8, "mm")
  21089. },
  21090. {
  21091. name: "Micro",
  21092. height: math.unit(3, "inches"),
  21093. default: true
  21094. },
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(3, "feet")
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21103. {
  21104. frontDressed: {
  21105. height: math.unit(15, "feet"),
  21106. weight: math.unit(3280, "lb"),
  21107. name: "Front (Dressed)",
  21108. image: {
  21109. source: "./media/characters/sapphy/front-dressed.svg",
  21110. extra: 1951/1654,
  21111. bottom: 194/2145
  21112. },
  21113. form: "anthro",
  21114. default: true
  21115. },
  21116. backDressed: {
  21117. height: math.unit(15, "feet"),
  21118. weight: math.unit(3280, "lb"),
  21119. name: "Back (Dressed)",
  21120. image: {
  21121. source: "./media/characters/sapphy/back-dressed.svg",
  21122. extra: 2058/1918,
  21123. bottom: 125/2183
  21124. },
  21125. form: "anthro"
  21126. },
  21127. frontNude: {
  21128. height: math.unit(15, "feet"),
  21129. weight: math.unit(3280, "lb"),
  21130. name: "Front (Nude)",
  21131. image: {
  21132. source: "./media/characters/sapphy/front-nude.svg",
  21133. extra: 1951/1654,
  21134. bottom: 194/2145
  21135. },
  21136. form: "anthro"
  21137. },
  21138. backNude: {
  21139. height: math.unit(15, "feet"),
  21140. weight: math.unit(3280, "lb"),
  21141. name: "Back (Nude)",
  21142. image: {
  21143. source: "./media/characters/sapphy/back-nude.svg",
  21144. extra: 2058/1918,
  21145. bottom: 125/2183
  21146. },
  21147. form: "anthro"
  21148. },
  21149. full: {
  21150. height: math.unit(15, "feet"),
  21151. weight: math.unit(3280, "lb"),
  21152. name: "Full",
  21153. image: {
  21154. source: "./media/characters/sapphy/full.svg",
  21155. extra: 1396/1317,
  21156. bottom: 44/1440
  21157. },
  21158. form: "anthro"
  21159. },
  21160. dick: {
  21161. height: math.unit(3.8, "feet"),
  21162. name: "Dick",
  21163. image: {
  21164. source: "./media/characters/sapphy/dick.svg"
  21165. },
  21166. form: "anthro"
  21167. },
  21168. feral: {
  21169. height: math.unit(35, "feet"),
  21170. weight: math.unit(160, "tons"),
  21171. name: "Feral",
  21172. image: {
  21173. source: "./media/characters/sapphy/feral.svg",
  21174. extra: 1050/573,
  21175. bottom: 60/1110
  21176. },
  21177. form: "feral",
  21178. default: true
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Normal",
  21184. height: math.unit(15, "feet"),
  21185. form: "anthro"
  21186. },
  21187. {
  21188. name: "Casual Macro",
  21189. height: math.unit(120, "feet"),
  21190. form: "anthro"
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(2150, "feet"),
  21195. default: true,
  21196. form: "anthro"
  21197. },
  21198. {
  21199. name: "Megamacro",
  21200. height: math.unit(8, "miles"),
  21201. form: "anthro"
  21202. },
  21203. {
  21204. name: "Galaxy Mom",
  21205. height: math.unit(6, "megalightyears"),
  21206. form: "anthro"
  21207. },
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(35, "feet"),
  21211. form: "feral",
  21212. default: true
  21213. },
  21214. {
  21215. name: "Macro",
  21216. height: math.unit(300, "feet"),
  21217. form: "feral"
  21218. },
  21219. {
  21220. name: "Galaxy Mom",
  21221. height: math.unit(10, "megalightyears"),
  21222. form: "feral"
  21223. },
  21224. ],
  21225. {
  21226. "anthro": {
  21227. name: "Anthro",
  21228. default: true
  21229. },
  21230. "feral": {
  21231. name: "Feral"
  21232. }
  21233. }
  21234. ))
  21235. characterMakers.push(() => makeCharacter(
  21236. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21237. {
  21238. hyenaFront: {
  21239. height: math.unit(6, "feet"),
  21240. weight: math.unit(190, "lb"),
  21241. name: "Front",
  21242. image: {
  21243. source: "./media/characters/kiro/hyena-front.svg",
  21244. extra: 927/839,
  21245. bottom: 91/1018
  21246. },
  21247. form: "hyena",
  21248. default: true
  21249. },
  21250. front: {
  21251. height: math.unit(6, "feet"),
  21252. weight: math.unit(170, "lb"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/kiro/front.svg",
  21256. extra: 1064 / 1012,
  21257. bottom: 0.052
  21258. },
  21259. form: "folf",
  21260. default: true
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Micro",
  21266. height: math.unit(6, "inches"),
  21267. form: "folf"
  21268. },
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(6, "feet"),
  21272. form: "folf",
  21273. default: true
  21274. },
  21275. {
  21276. name: "Macro",
  21277. height: math.unit(72, "feet"),
  21278. form: "folf"
  21279. },
  21280. {
  21281. name: "Micro",
  21282. height: math.unit(6, "inches"),
  21283. form: "hyena"
  21284. },
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(6, "feet"),
  21288. form: "hyena",
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(72, "feet"),
  21294. form: "hyena"
  21295. },
  21296. ],
  21297. {
  21298. "hyena": {
  21299. name: "Hyena",
  21300. default: true
  21301. },
  21302. "folf": {
  21303. name: "Folf",
  21304. },
  21305. }
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21309. {
  21310. front: {
  21311. height: math.unit(5 + 9 / 12, "feet"),
  21312. weight: math.unit(175, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/irishfox/front.svg",
  21316. extra: 1912 / 1680,
  21317. bottom: 0.02
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Nano",
  21324. height: math.unit(1, "mm")
  21325. },
  21326. {
  21327. name: "Micro",
  21328. height: math.unit(2, "inches")
  21329. },
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(5 + 9 / 12, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(45, "feet")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(6 + 1 / 12, "feet"),
  21346. weight: math.unit(75, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/aronai-sieyes/front.svg",
  21350. extra: 1532/1450,
  21351. bottom: 42/1574
  21352. }
  21353. },
  21354. side: {
  21355. height: math.unit(6 + 1 / 12, "feet"),
  21356. weight: math.unit(75, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/aronai-sieyes/side.svg",
  21360. extra: 1422/1365,
  21361. bottom: 148/1570
  21362. }
  21363. },
  21364. back: {
  21365. height: math.unit(6 + 1 / 12, "feet"),
  21366. weight: math.unit(75, "lb"),
  21367. name: "Back",
  21368. image: {
  21369. source: "./media/characters/aronai-sieyes/back.svg",
  21370. extra: 1526/1464,
  21371. bottom: 51/1577
  21372. }
  21373. },
  21374. dressed: {
  21375. height: math.unit(6 + 1 / 12, "feet"),
  21376. weight: math.unit(75, "lb"),
  21377. name: "Dressed",
  21378. image: {
  21379. source: "./media/characters/aronai-sieyes/dressed.svg",
  21380. extra: 1559/1483,
  21381. bottom: 39/1598
  21382. }
  21383. },
  21384. slit: {
  21385. height: math.unit(1.3, "feet"),
  21386. name: "Slit",
  21387. image: {
  21388. source: "./media/characters/aronai-sieyes/slit.svg"
  21389. }
  21390. },
  21391. slitSpread: {
  21392. height: math.unit(0.9, "feet"),
  21393. name: "Slit (Spread)",
  21394. image: {
  21395. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21396. }
  21397. },
  21398. rump: {
  21399. height: math.unit(1.3, "feet"),
  21400. name: "Rump",
  21401. image: {
  21402. source: "./media/characters/aronai-sieyes/rump.svg"
  21403. }
  21404. },
  21405. maw: {
  21406. height: math.unit(1.25, "feet"),
  21407. name: "Maw",
  21408. image: {
  21409. source: "./media/characters/aronai-sieyes/maw.svg"
  21410. }
  21411. },
  21412. feral: {
  21413. height: math.unit(18, "feet"),
  21414. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21415. name: "Feral",
  21416. image: {
  21417. source: "./media/characters/aronai-sieyes/feral.svg",
  21418. extra: 1530 / 1240,
  21419. bottom: 0.035
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Micro",
  21426. height: math.unit(2, "inches")
  21427. },
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(6 + 1 / 12, "feet"),
  21431. default: true
  21432. }
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(12, "feet"),
  21440. weight: math.unit(410, "kg"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/xuna/front.svg",
  21444. extra: 2184 / 1980
  21445. }
  21446. },
  21447. side: {
  21448. height: math.unit(12, "feet"),
  21449. weight: math.unit(410, "kg"),
  21450. name: "Side",
  21451. image: {
  21452. source: "./media/characters/xuna/side.svg",
  21453. extra: 2184 / 1980
  21454. }
  21455. },
  21456. back: {
  21457. height: math.unit(12, "feet"),
  21458. weight: math.unit(410, "kg"),
  21459. name: "Back",
  21460. image: {
  21461. source: "./media/characters/xuna/back.svg",
  21462. extra: 2184 / 1980
  21463. }
  21464. },
  21465. },
  21466. [
  21467. {
  21468. name: "Nano glow",
  21469. height: math.unit(10, "nm")
  21470. },
  21471. {
  21472. name: "Micro floof",
  21473. height: math.unit(0.3, "m")
  21474. },
  21475. {
  21476. name: "Huggable softy boi",
  21477. height: math.unit(3.6576, "m"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Admirable floof",
  21482. height: math.unit(80, "meters")
  21483. },
  21484. {
  21485. name: "Gentle macro",
  21486. height: math.unit(300, "meters")
  21487. },
  21488. {
  21489. name: "Very careful floof",
  21490. height: math.unit(3200, "meters")
  21491. },
  21492. {
  21493. name: "The mega floof",
  21494. height: math.unit(36000, "meters")
  21495. },
  21496. {
  21497. name: "Giga-fur-Wicker",
  21498. height: math.unit(4800000, "meters")
  21499. },
  21500. {
  21501. name: "Licky world",
  21502. height: math.unit(20000000, "meters")
  21503. },
  21504. {
  21505. name: "Floofy cyan sun",
  21506. height: math.unit(1500000000, "meters")
  21507. },
  21508. {
  21509. name: "Milky Wicker",
  21510. height: math.unit(1000000000000000000000, "meters")
  21511. },
  21512. {
  21513. name: "The observing Wicker",
  21514. height: math.unit(999999999999999999999999999, "meters")
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(5 + 9 / 12, "feet"),
  21523. weight: math.unit(150, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/arokha-sieyes/front.svg",
  21527. extra: 1425 / 1284,
  21528. bottom: 0.05
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Normal",
  21535. height: math.unit(5 + 9 / 12, "feet")
  21536. },
  21537. {
  21538. name: "Macro",
  21539. height: math.unit(30, "meters"),
  21540. default: true
  21541. },
  21542. ]
  21543. ))
  21544. characterMakers.push(() => makeCharacter(
  21545. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21546. {
  21547. front: {
  21548. height: math.unit(6, "feet"),
  21549. weight: math.unit(180, "lb"),
  21550. name: "Front",
  21551. image: {
  21552. source: "./media/characters/arokh-sieyes/front.svg",
  21553. extra: 1830 / 1769,
  21554. bottom: 0.01
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Normal",
  21561. height: math.unit(6, "feet")
  21562. },
  21563. {
  21564. name: "Macro",
  21565. height: math.unit(30, "meters"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21572. {
  21573. side: {
  21574. height: math.unit(13 + 1 / 12, "feet"),
  21575. weight: math.unit(8.5, "tonnes"),
  21576. preyCapacity: math.unit(36, "people"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/goldeneye/side.svg",
  21580. extra: 1139/741,
  21581. bottom: 98/1237
  21582. }
  21583. },
  21584. front: {
  21585. height: math.unit(5.1, "feet"),
  21586. weight: math.unit(8.5, "tonnes"),
  21587. preyCapacity: math.unit(36, "people"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/goldeneye/front.svg",
  21591. extra: 635/365,
  21592. bottom: 598/1233
  21593. }
  21594. },
  21595. maw: {
  21596. height: math.unit(6.6, "feet"),
  21597. name: "Maw",
  21598. image: {
  21599. source: "./media/characters/goldeneye/maw.svg"
  21600. }
  21601. },
  21602. headFront: {
  21603. height: math.unit(8, "feet"),
  21604. name: "Head (Front)",
  21605. image: {
  21606. source: "./media/characters/goldeneye/head-front.svg"
  21607. }
  21608. },
  21609. headSide: {
  21610. height: math.unit(6, "feet"),
  21611. name: "Head (Side)",
  21612. image: {
  21613. source: "./media/characters/goldeneye/head-side.svg"
  21614. }
  21615. },
  21616. headBack: {
  21617. height: math.unit(8, "feet"),
  21618. name: "Head (Back)",
  21619. image: {
  21620. source: "./media/characters/goldeneye/head-back.svg"
  21621. }
  21622. },
  21623. paw: {
  21624. height: math.unit(3.4, "feet"),
  21625. name: "Paw",
  21626. image: {
  21627. source: "./media/characters/goldeneye/paw.svg"
  21628. }
  21629. },
  21630. toering: {
  21631. height: math.unit(0.45, "feet"),
  21632. name: "Toering",
  21633. image: {
  21634. source: "./media/characters/goldeneye/toering.svg"
  21635. }
  21636. },
  21637. eyes: {
  21638. height: math.unit(0.5, "feet"),
  21639. name: "Eyes",
  21640. image: {
  21641. source: "./media/characters/goldeneye/eyes.svg"
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Normal",
  21648. height: math.unit(13 + 1 / 12, "feet"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21655. {
  21656. front: {
  21657. height: math.unit(6 + 1 / 12, "feet"),
  21658. weight: math.unit(210, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/leonardo-lycheborne/front.svg",
  21662. extra: 776/723,
  21663. bottom: 34/810
  21664. }
  21665. },
  21666. side: {
  21667. height: math.unit(6 + 1 / 12, "feet"),
  21668. weight: math.unit(210, "lb"),
  21669. name: "Side",
  21670. image: {
  21671. source: "./media/characters/leonardo-lycheborne/side.svg",
  21672. extra: 780/728,
  21673. bottom: 12/792
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(6 + 1 / 12, "feet"),
  21678. weight: math.unit(210, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/leonardo-lycheborne/back.svg",
  21682. extra: 775/721,
  21683. bottom: 17/792
  21684. }
  21685. },
  21686. hand: {
  21687. height: math.unit(1.08, "feet"),
  21688. name: "Hand",
  21689. image: {
  21690. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21691. }
  21692. },
  21693. foot: {
  21694. height: math.unit(1.32, "feet"),
  21695. name: "Foot",
  21696. image: {
  21697. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21698. }
  21699. },
  21700. maw: {
  21701. height: math.unit(1, "feet"),
  21702. name: "Maw",
  21703. image: {
  21704. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21705. }
  21706. },
  21707. were: {
  21708. height: math.unit(20, "feet"),
  21709. weight: math.unit(7800, "lb"),
  21710. name: "Were",
  21711. image: {
  21712. source: "./media/characters/leonardo-lycheborne/were.svg",
  21713. extra: 1224/1165,
  21714. bottom: 72/1296
  21715. }
  21716. },
  21717. feral: {
  21718. height: math.unit(7.5, "feet"),
  21719. weight: math.unit(600, "lb"),
  21720. name: "Feral",
  21721. image: {
  21722. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21723. extra: 797/702,
  21724. bottom: 139/936
  21725. }
  21726. },
  21727. taur: {
  21728. height: math.unit(11, "feet"),
  21729. weight: math.unit(3300, "lb"),
  21730. name: "Taur",
  21731. image: {
  21732. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21733. extra: 1271/1197,
  21734. bottom: 47/1318
  21735. }
  21736. },
  21737. barghest: {
  21738. height: math.unit(11, "feet"),
  21739. weight: math.unit(1300, "lb"),
  21740. name: "Barghest",
  21741. image: {
  21742. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21743. extra: 1291/1204,
  21744. bottom: 37/1328
  21745. }
  21746. },
  21747. dick: {
  21748. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21749. name: "Dick",
  21750. image: {
  21751. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21752. }
  21753. },
  21754. dickWere: {
  21755. height: math.unit((20) / 3.8, "feet"),
  21756. name: "Dick (Were)",
  21757. image: {
  21758. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21759. }
  21760. },
  21761. },
  21762. [
  21763. {
  21764. name: "Normal",
  21765. height: math.unit(6 + 1 / 12, "feet"),
  21766. default: true
  21767. },
  21768. ]
  21769. ))
  21770. characterMakers.push(() => makeCharacter(
  21771. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21772. {
  21773. front: {
  21774. height: math.unit(10, "feet"),
  21775. weight: math.unit(350, "lb"),
  21776. name: "Front",
  21777. image: {
  21778. source: "./media/characters/jet/front.svg",
  21779. extra: 2050 / 1980,
  21780. bottom: 0.013
  21781. }
  21782. },
  21783. back: {
  21784. height: math.unit(10, "feet"),
  21785. weight: math.unit(350, "lb"),
  21786. name: "Back",
  21787. image: {
  21788. source: "./media/characters/jet/back.svg",
  21789. extra: 2050 / 1980,
  21790. bottom: 0.013
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Micro",
  21797. height: math.unit(6, "inches")
  21798. },
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(10, "feet"),
  21802. default: true
  21803. },
  21804. {
  21805. name: "Macro",
  21806. height: math.unit(100, "feet")
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(15, "feet"),
  21815. weight: math.unit(2800, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/tanarath/front.svg",
  21819. extra: 2392 / 2220,
  21820. bottom: 0.03
  21821. }
  21822. },
  21823. back: {
  21824. height: math.unit(15, "feet"),
  21825. weight: math.unit(2800, "lb"),
  21826. name: "Back",
  21827. image: {
  21828. source: "./media/characters/tanarath/back.svg",
  21829. extra: 2392 / 2220,
  21830. bottom: 0.03
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(15, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(7 + 1 / 12, "feet"),
  21847. weight: math.unit(175, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/patty-cattybatty/front.svg",
  21851. extra: 908 / 874,
  21852. bottom: 0.025
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Micro",
  21859. height: math.unit(1, "inch")
  21860. },
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(7 + 1 / 12, "feet")
  21864. },
  21865. {
  21866. name: "Mini Macro",
  21867. height: math.unit(155, "feet")
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(1077, "feet")
  21872. },
  21873. {
  21874. name: "Mega Macro",
  21875. height: math.unit(47650, "feet"),
  21876. default: true
  21877. },
  21878. {
  21879. name: "Giga Macro",
  21880. height: math.unit(440, "miles")
  21881. },
  21882. {
  21883. name: "Tera Macro",
  21884. height: math.unit(8700, "miles")
  21885. },
  21886. {
  21887. name: "Planetary Macro",
  21888. height: math.unit(32700, "miles")
  21889. },
  21890. {
  21891. name: "Solar Macro",
  21892. height: math.unit(550000, "miles")
  21893. },
  21894. {
  21895. name: "Celestial Macro",
  21896. height: math.unit(2.5, "AU")
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(4 + 5 / 12, "feet"),
  21905. weight: math.unit(90, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/cappu/front.svg",
  21909. extra: 1247 / 1152,
  21910. bottom: 0.012
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(4 + 5 / 12, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21924. {
  21925. frontDressed: {
  21926. height: math.unit(70, "cm"),
  21927. weight: math.unit(6, "kg"),
  21928. name: "Front (Dressed)",
  21929. image: {
  21930. source: "./media/characters/sebi/front-dressed.svg",
  21931. extra: 713.5 / 686.5,
  21932. bottom: 0.003
  21933. }
  21934. },
  21935. front: {
  21936. height: math.unit(70, "cm"),
  21937. weight: math.unit(5, "kg"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/sebi/front.svg",
  21941. extra: 713.5 / 686.5,
  21942. bottom: 0.003
  21943. }
  21944. }
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(70, "cm"),
  21950. default: true
  21951. },
  21952. {
  21953. name: "Macro",
  21954. height: math.unit(8, "meters")
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(6, "feet"),
  21963. weight: math.unit(150, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/typhek/front.svg",
  21967. extra: 1948 / 1929,
  21968. bottom: 0.025
  21969. }
  21970. },
  21971. side: {
  21972. height: math.unit(6, "feet"),
  21973. weight: math.unit(150, "lb"),
  21974. name: "Side",
  21975. image: {
  21976. source: "./media/characters/typhek/side.svg",
  21977. extra: 2034 / 2010,
  21978. bottom: 0.003
  21979. }
  21980. },
  21981. back: {
  21982. height: math.unit(6, "feet"),
  21983. weight: math.unit(150, "lb"),
  21984. name: "Back",
  21985. image: {
  21986. source: "./media/characters/typhek/back.svg",
  21987. extra: 2005 / 1978,
  21988. bottom: 0.004
  21989. }
  21990. },
  21991. palm: {
  21992. height: math.unit(1.2, "feet"),
  21993. name: "Palm",
  21994. image: {
  21995. source: "./media/characters/typhek/palm.svg"
  21996. }
  21997. },
  21998. fist: {
  21999. height: math.unit(1.1, "feet"),
  22000. name: "Fist",
  22001. image: {
  22002. source: "./media/characters/typhek/fist.svg"
  22003. }
  22004. },
  22005. foot: {
  22006. height: math.unit(1.57, "feet"),
  22007. name: "Foot",
  22008. image: {
  22009. source: "./media/characters/typhek/foot.svg"
  22010. }
  22011. },
  22012. sole: {
  22013. height: math.unit(2.05, "feet"),
  22014. name: "Sole",
  22015. image: {
  22016. source: "./media/characters/typhek/sole.svg"
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Macro",
  22023. height: math.unit(40, "stories"),
  22024. default: true
  22025. },
  22026. {
  22027. name: "Megamacro",
  22028. height: math.unit(1, "mile")
  22029. },
  22030. {
  22031. name: "Gigamacro",
  22032. height: math.unit(4000, "solarradii")
  22033. },
  22034. {
  22035. name: "Universal",
  22036. height: math.unit(1.1, "universes")
  22037. }
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22042. {
  22043. side: {
  22044. height: math.unit(5 + 7 / 12, "feet"),
  22045. weight: math.unit(150, "lb"),
  22046. name: "Side",
  22047. image: {
  22048. source: "./media/characters/kassy/side.svg",
  22049. extra: 1280 / 1225,
  22050. bottom: 0.002
  22051. }
  22052. },
  22053. front: {
  22054. height: math.unit(5 + 7 / 12, "feet"),
  22055. weight: math.unit(150, "lb"),
  22056. name: "Front",
  22057. image: {
  22058. source: "./media/characters/kassy/front.svg",
  22059. extra: 1280 / 1225,
  22060. bottom: 0.025
  22061. }
  22062. },
  22063. back: {
  22064. height: math.unit(5 + 7 / 12, "feet"),
  22065. weight: math.unit(150, "lb"),
  22066. name: "Back",
  22067. image: {
  22068. source: "./media/characters/kassy/back.svg",
  22069. extra: 1280 / 1225,
  22070. bottom: 0.002
  22071. }
  22072. },
  22073. foot: {
  22074. height: math.unit(1.266, "feet"),
  22075. name: "Foot",
  22076. image: {
  22077. source: "./media/characters/kassy/foot.svg"
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(5 + 7 / 12, "feet")
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(137, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Megamacro",
  22093. height: math.unit(1, "mile")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(6 + 1 / 12, "feet"),
  22102. weight: math.unit(200, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/neil/front.svg",
  22106. extra: 1326 / 1250,
  22107. bottom: 0.023
  22108. }
  22109. },
  22110. },
  22111. [
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(6 + 1 / 12, "feet"),
  22115. default: true
  22116. },
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(200, "feet")
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 9 / 12, "feet"),
  22128. weight: math.unit(190, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/atticus/front.svg",
  22132. extra: 2934 / 2785,
  22133. bottom: 0.025
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(5 + 9 / 12, "feet"),
  22141. default: true
  22142. },
  22143. {
  22144. name: "Macro",
  22145. height: math.unit(180, "feet")
  22146. },
  22147. ]
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22151. {
  22152. side: {
  22153. height: math.unit(9, "feet"),
  22154. weight: math.unit(650, "lb"),
  22155. name: "Side",
  22156. image: {
  22157. source: "./media/characters/milo/side.svg",
  22158. extra: 2644 / 2310,
  22159. bottom: 0.032
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(9, "feet"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Macro",
  22171. height: math.unit(300, "feet")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22177. {
  22178. side: {
  22179. height: math.unit(8, "meters"),
  22180. weight: math.unit(90000, "kg"),
  22181. name: "Side",
  22182. image: {
  22183. source: "./media/characters/ijzer/side.svg",
  22184. extra: 2756 / 1600,
  22185. bottom: 0.01
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Small",
  22192. height: math.unit(3, "meters")
  22193. },
  22194. {
  22195. name: "Normal",
  22196. height: math.unit(8, "meters"),
  22197. default: true
  22198. },
  22199. {
  22200. name: "Normal+",
  22201. height: math.unit(10, "meters")
  22202. },
  22203. {
  22204. name: "Bigger",
  22205. height: math.unit(24, "meters")
  22206. },
  22207. {
  22208. name: "Huge",
  22209. height: math.unit(80, "meters")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(6 + 2 / 12, "feet"),
  22218. weight: math.unit(153, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/luca-cervicum/front.svg",
  22222. extra: 370 / 327,
  22223. bottom: 0.015
  22224. }
  22225. },
  22226. back: {
  22227. height: math.unit(6 + 2 / 12, "feet"),
  22228. weight: math.unit(153, "lb"),
  22229. name: "Back",
  22230. image: {
  22231. source: "./media/characters/luca-cervicum/back.svg",
  22232. extra: 367 / 333,
  22233. bottom: 0.005
  22234. }
  22235. },
  22236. frontGear: {
  22237. height: math.unit(6 + 2 / 12, "feet"),
  22238. weight: math.unit(173, "lb"),
  22239. name: "Front (Gear)",
  22240. image: {
  22241. source: "./media/characters/luca-cervicum/front-gear.svg",
  22242. extra: 377 / 333,
  22243. bottom: 0.006
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(6 + 2 / 12, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(6 + 1 / 12, "feet"),
  22260. weight: math.unit(304, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/oliver/front.svg",
  22264. extra: 157 / 143,
  22265. bottom: 0.08
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(6 + 1 / 12, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(5 + 7 / 12, "feet"),
  22282. weight: math.unit(140, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/shane/front.svg",
  22286. extra: 304 / 289,
  22287. bottom: 0.005
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(5 + 7 / 12, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22301. {
  22302. front: {
  22303. height: math.unit(5 + 9 / 12, "feet"),
  22304. weight: math.unit(178, "lb"),
  22305. name: "Front",
  22306. image: {
  22307. source: "./media/characters/shin/front.svg",
  22308. extra: 159 / 151,
  22309. bottom: 0.015
  22310. }
  22311. },
  22312. },
  22313. [
  22314. {
  22315. name: "Normal",
  22316. height: math.unit(5 + 9 / 12, "feet"),
  22317. default: true
  22318. },
  22319. ]
  22320. ))
  22321. characterMakers.push(() => makeCharacter(
  22322. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22323. {
  22324. front: {
  22325. height: math.unit(5 + 10 / 12, "feet"),
  22326. weight: math.unit(168, "lb"),
  22327. name: "Front",
  22328. image: {
  22329. source: "./media/characters/xerxes/front.svg",
  22330. extra: 282 / 260,
  22331. bottom: 0.045
  22332. }
  22333. },
  22334. },
  22335. [
  22336. {
  22337. name: "Normal",
  22338. height: math.unit(5 + 10 / 12, "feet"),
  22339. default: true
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(6 + 7 / 12, "feet"),
  22348. weight: math.unit(208, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/chaska/front.svg",
  22352. extra: 332 / 319,
  22353. bottom: 0.015
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(6 + 7 / 12, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(5 + 8 / 12, "feet"),
  22370. weight: math.unit(208, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/enuk/front.svg",
  22374. extra: 437 / 406,
  22375. bottom: 0.02
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(5 + 8 / 12, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(5 + 10 / 12, "feet"),
  22392. weight: math.unit(252, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/bruun/front.svg",
  22396. extra: 197 / 187,
  22397. bottom: 0.012
  22398. }
  22399. },
  22400. },
  22401. [
  22402. {
  22403. name: "Normal",
  22404. height: math.unit(5 + 10 / 12, "feet"),
  22405. default: true
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(6 + 10 / 12, "feet"),
  22414. weight: math.unit(255, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/alexeev/front.svg",
  22418. extra: 213 / 200,
  22419. bottom: 0.05
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(6 + 10 / 12, "feet"),
  22427. default: true
  22428. },
  22429. ]
  22430. ))
  22431. characterMakers.push(() => makeCharacter(
  22432. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22433. {
  22434. front: {
  22435. height: math.unit(2 + 8 / 12, "feet"),
  22436. weight: math.unit(22, "lb"),
  22437. name: "Front",
  22438. image: {
  22439. source: "./media/characters/evelyn/front.svg",
  22440. extra: 208 / 180
  22441. }
  22442. },
  22443. },
  22444. [
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(2 + 8 / 12, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22454. {
  22455. front: {
  22456. height: math.unit(5 + 9 / 12, "feet"),
  22457. weight: math.unit(139, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/inca/front.svg",
  22461. extra: 294 / 291,
  22462. bottom: 0.03
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(5 + 9 / 12, "feet"),
  22470. default: true
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(6 + 3 / 12, "feet"),
  22479. weight: math.unit(185, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/mera/front.svg",
  22483. extra: 291 / 277,
  22484. bottom: 0.03
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Normal",
  22491. height: math.unit(6 + 3 / 12, "feet"),
  22492. default: true
  22493. },
  22494. ]
  22495. ))
  22496. characterMakers.push(() => makeCharacter(
  22497. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22498. {
  22499. front: {
  22500. height: math.unit(6 + 7 / 12, "feet"),
  22501. weight: math.unit(160, "lb"),
  22502. name: "Front",
  22503. image: {
  22504. source: "./media/characters/ceres/front.svg",
  22505. extra: 1023 / 950,
  22506. bottom: 0.027
  22507. }
  22508. },
  22509. back: {
  22510. height: math.unit(6 + 7 / 12, "feet"),
  22511. weight: math.unit(160, "lb"),
  22512. name: "Back",
  22513. image: {
  22514. source: "./media/characters/ceres/back.svg",
  22515. extra: 1023 / 950
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(6 + 7 / 12, "feet"),
  22523. default: true
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(5 + 10 / 12, "feet"),
  22532. weight: math.unit(150, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/kris/front.svg",
  22536. extra: 885 / 803,
  22537. bottom: 0.03
  22538. }
  22539. },
  22540. },
  22541. [
  22542. {
  22543. name: "Normal",
  22544. height: math.unit(5 + 10 / 12, "feet"),
  22545. default: true
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22551. {
  22552. dragon_front: {
  22553. height: math.unit(5, "feet"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/taluthus/dragon-front.svg",
  22557. extra: 1203/1098,
  22558. bottom: 46/1249
  22559. },
  22560. form: "dragon",
  22561. default: true
  22562. },
  22563. dragon_maw: {
  22564. height: math.unit(2.35, "feet"),
  22565. name: "Maw",
  22566. image: {
  22567. source: "./media/characters/taluthus/dragon-maw.svg"
  22568. },
  22569. form: "dragon",
  22570. },
  22571. kitsune_front: {
  22572. height: math.unit(7, "feet"),
  22573. name: "Front",
  22574. image: {
  22575. source: "./media/characters/taluthus/kitsune-front.svg",
  22576. extra: 900/841,
  22577. bottom: 65/965
  22578. },
  22579. form: "kitsune",
  22580. default: true
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(5, "feet"),
  22587. form: "dragon",
  22588. default: true,
  22589. },
  22590. {
  22591. name: "Normal",
  22592. height: math.unit(7, "feet"),
  22593. form: "kitsune",
  22594. default: true
  22595. },
  22596. {
  22597. name: "Macro",
  22598. height: math.unit(300, "feet"),
  22599. allForms: true
  22600. },
  22601. ],
  22602. {
  22603. "dragon": {
  22604. name: "Dragon",
  22605. default: true
  22606. },
  22607. "kitsune": {
  22608. name: "Kitsune",
  22609. },
  22610. }
  22611. ))
  22612. characterMakers.push(() => makeCharacter(
  22613. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22614. {
  22615. front: {
  22616. height: math.unit(5 + 9 / 12, "feet"),
  22617. weight: math.unit(145, "lb"),
  22618. name: "Front",
  22619. image: {
  22620. source: "./media/characters/dawn/front.svg",
  22621. extra: 2094 / 2016,
  22622. bottom: 0.025
  22623. }
  22624. },
  22625. back: {
  22626. height: math.unit(5 + 9 / 12, "feet"),
  22627. weight: math.unit(160, "lb"),
  22628. name: "Back",
  22629. image: {
  22630. source: "./media/characters/dawn/back.svg",
  22631. extra: 2112 / 2080,
  22632. bottom: 0.005
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(6 + 7 / 12, "feet"),
  22640. default: true
  22641. },
  22642. ]
  22643. ))
  22644. characterMakers.push(() => makeCharacter(
  22645. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22646. {
  22647. anthro: {
  22648. height: math.unit(8 + 3 / 12, "feet"),
  22649. weight: math.unit(450, "lb"),
  22650. name: "Anthro",
  22651. image: {
  22652. source: "./media/characters/arador/anthro.svg",
  22653. extra: 1835 / 1718,
  22654. bottom: 0.025
  22655. }
  22656. },
  22657. feral: {
  22658. height: math.unit(4, "feet"),
  22659. weight: math.unit(200, "lb"),
  22660. name: "Feral",
  22661. image: {
  22662. source: "./media/characters/arador/feral.svg",
  22663. extra: 1683 / 1514,
  22664. bottom: 0.07
  22665. }
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Normal",
  22671. height: math.unit(8 + 3 / 12, "feet")
  22672. },
  22673. {
  22674. name: "Macro",
  22675. height: math.unit(82.5, "feet"),
  22676. default: true
  22677. },
  22678. ]
  22679. ))
  22680. characterMakers.push(() => makeCharacter(
  22681. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22682. {
  22683. front: {
  22684. height: math.unit(5 + 10 / 12, "feet"),
  22685. weight: math.unit(125, "lb"),
  22686. name: "Front",
  22687. image: {
  22688. source: "./media/characters/dharsi/front.svg",
  22689. extra: 716 / 630,
  22690. bottom: 0.035
  22691. }
  22692. },
  22693. },
  22694. [
  22695. {
  22696. name: "Nano",
  22697. height: math.unit(100, "nm")
  22698. },
  22699. {
  22700. name: "Micro",
  22701. height: math.unit(2, "inches")
  22702. },
  22703. {
  22704. name: "Normal",
  22705. height: math.unit(5 + 10 / 12, "feet"),
  22706. default: true
  22707. },
  22708. {
  22709. name: "Macro",
  22710. height: math.unit(1000, "feet")
  22711. },
  22712. {
  22713. name: "Megamacro",
  22714. height: math.unit(10, "miles")
  22715. },
  22716. {
  22717. name: "Gigamacro",
  22718. height: math.unit(3000, "miles")
  22719. },
  22720. {
  22721. name: "Teramacro",
  22722. height: math.unit(500000, "miles")
  22723. },
  22724. {
  22725. name: "Teramacro+",
  22726. height: math.unit(30, "galaxies")
  22727. },
  22728. ]
  22729. ))
  22730. characterMakers.push(() => makeCharacter(
  22731. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22732. {
  22733. front: {
  22734. height: math.unit(6, "feet"),
  22735. weight: math.unit(150, "lb"),
  22736. name: "Front",
  22737. image: {
  22738. source: "./media/characters/deathy/front.svg",
  22739. extra: 1552 / 1463,
  22740. bottom: 0.025
  22741. }
  22742. },
  22743. side: {
  22744. height: math.unit(6, "feet"),
  22745. weight: math.unit(150, "lb"),
  22746. name: "Side",
  22747. image: {
  22748. source: "./media/characters/deathy/side.svg",
  22749. extra: 1604 / 1455,
  22750. bottom: 0.025
  22751. }
  22752. },
  22753. back: {
  22754. height: math.unit(6, "feet"),
  22755. weight: math.unit(150, "lb"),
  22756. name: "Back",
  22757. image: {
  22758. source: "./media/characters/deathy/back.svg",
  22759. extra: 1580 / 1463,
  22760. bottom: 0.005
  22761. }
  22762. },
  22763. },
  22764. [
  22765. {
  22766. name: "Micro",
  22767. height: math.unit(5, "millimeters")
  22768. },
  22769. {
  22770. name: "Normal",
  22771. height: math.unit(6 + 5 / 12, "feet"),
  22772. default: true
  22773. },
  22774. ]
  22775. ))
  22776. characterMakers.push(() => makeCharacter(
  22777. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22778. {
  22779. front: {
  22780. height: math.unit(16, "feet"),
  22781. weight: math.unit(4000, "lb"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/juniper/front.svg",
  22785. bottom: 0.04
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Normal",
  22792. height: math.unit(16, "feet"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(6, "feet"),
  22802. weight: math.unit(150, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/hipster/front.svg",
  22806. extra: 1312 / 1209,
  22807. bottom: 0.025
  22808. }
  22809. },
  22810. back: {
  22811. height: math.unit(6, "feet"),
  22812. weight: math.unit(150, "lb"),
  22813. name: "Back",
  22814. image: {
  22815. source: "./media/characters/hipster/back.svg",
  22816. extra: 1281 / 1196,
  22817. bottom: 0.01
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Micro",
  22824. height: math.unit(1, "mm")
  22825. },
  22826. {
  22827. name: "Normal",
  22828. height: math.unit(4, "inches"),
  22829. default: true
  22830. },
  22831. {
  22832. name: "Macro",
  22833. height: math.unit(500, "feet")
  22834. },
  22835. {
  22836. name: "Megamacro",
  22837. height: math.unit(1000, "miles")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(6, "feet"),
  22846. weight: math.unit(150, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/tendirmuldr/front.svg",
  22850. extra: 1878 / 1772,
  22851. bottom: 0.015
  22852. }
  22853. },
  22854. },
  22855. [
  22856. {
  22857. name: "Megamacro",
  22858. height: math.unit(1500, "miles"),
  22859. default: true
  22860. },
  22861. ]
  22862. ))
  22863. characterMakers.push(() => makeCharacter(
  22864. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22865. {
  22866. front: {
  22867. height: math.unit(14, "feet"),
  22868. weight: math.unit(12000, "lb"),
  22869. name: "Front",
  22870. image: {
  22871. source: "./media/characters/mort/front.svg",
  22872. extra: 365 / 318,
  22873. bottom: 0.01
  22874. }
  22875. },
  22876. side: {
  22877. height: math.unit(14, "feet"),
  22878. weight: math.unit(12000, "lb"),
  22879. name: "Side",
  22880. image: {
  22881. source: "./media/characters/mort/side.svg",
  22882. extra: 365 / 318,
  22883. bottom: 0.052
  22884. },
  22885. default: true
  22886. },
  22887. back: {
  22888. height: math.unit(14, "feet"),
  22889. weight: math.unit(12000, "lb"),
  22890. name: "Back",
  22891. image: {
  22892. source: "./media/characters/mort/back.svg",
  22893. extra: 371 / 332,
  22894. bottom: 0.18
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(14, "feet"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22908. {
  22909. front: {
  22910. height: math.unit(8, "feet"),
  22911. weight: math.unit(1, "ton"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/lycoa/front.svg",
  22915. extra: 1836/1728,
  22916. bottom: 81/1917
  22917. }
  22918. },
  22919. back: {
  22920. height: math.unit(8, "feet"),
  22921. weight: math.unit(1, "ton"),
  22922. name: "Back",
  22923. image: {
  22924. source: "./media/characters/lycoa/back.svg",
  22925. extra: 1785/1720,
  22926. bottom: 91/1876
  22927. }
  22928. },
  22929. head: {
  22930. height: math.unit(1.6243, "feet"),
  22931. name: "Head",
  22932. image: {
  22933. source: "./media/characters/lycoa/head.svg",
  22934. extra: 1011/782,
  22935. bottom: 0/1011
  22936. }
  22937. },
  22938. tailmaw: {
  22939. height: math.unit(1.9, "feet"),
  22940. name: "Tailmaw",
  22941. image: {
  22942. source: "./media/characters/lycoa/tailmaw.svg"
  22943. }
  22944. },
  22945. tentacles: {
  22946. height: math.unit(2.1, "feet"),
  22947. name: "Tentacles",
  22948. image: {
  22949. source: "./media/characters/lycoa/tentacles.svg"
  22950. }
  22951. },
  22952. dick: {
  22953. height: math.unit(1.73, "feet"),
  22954. name: "Dick",
  22955. image: {
  22956. source: "./media/characters/lycoa/dick.svg"
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(8, "feet"),
  22964. default: true
  22965. },
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(30, "feet")
  22969. },
  22970. ]
  22971. ))
  22972. characterMakers.push(() => makeCharacter(
  22973. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22974. {
  22975. front: {
  22976. height: math.unit(4 + 2 / 12, "feet"),
  22977. weight: math.unit(70, "lb"),
  22978. name: "Front",
  22979. image: {
  22980. source: "./media/characters/naldara/front.svg",
  22981. extra: 1664/1387,
  22982. bottom: 81/1745
  22983. },
  22984. form: "anthro",
  22985. default: true
  22986. },
  22987. naga: {
  22988. height: math.unit(20, "feet"),
  22989. weight: math.unit(15000, "kg"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/naldara/naga.svg",
  22993. extra: 1590/1396,
  22994. bottom: 285/1875
  22995. },
  22996. form: "naga",
  22997. default: true
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(4 + 2 / 12, "feet"),
  23004. form: "anthro",
  23005. default: true
  23006. },
  23007. {
  23008. name: "Normal",
  23009. height: math.unit(20, "feet"),
  23010. form: "naga",
  23011. default: true
  23012. },
  23013. ],
  23014. {
  23015. "anthro": {
  23016. name: "Anthro",
  23017. default: true
  23018. },
  23019. "naga": {
  23020. name: "Naga"
  23021. }
  23022. }
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(13 + 7 / 12, "feet"),
  23029. weight: math.unit(1500, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/briar/front.svg",
  23033. extra: 1223/1157,
  23034. bottom: 123/1346
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(13 + 7 / 12, "feet"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23048. {
  23049. side: {
  23050. height: math.unit(16, "feet"),
  23051. weight: math.unit(500, "lb"),
  23052. name: "Side",
  23053. image: {
  23054. source: "./media/characters/vanguard/side.svg",
  23055. extra: 1022/914,
  23056. bottom: 30/1052
  23057. }
  23058. },
  23059. sideAlt: {
  23060. height: math.unit(10, "feet"),
  23061. weight: math.unit(500, "lb"),
  23062. name: "Side (Alt)",
  23063. image: {
  23064. source: "./media/characters/vanguard/side-alt.svg",
  23065. extra: 502 / 425,
  23066. bottom: 0.087
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Normal",
  23073. height: math.unit(17.71, "feet"),
  23074. default: true
  23075. },
  23076. ]
  23077. ))
  23078. characterMakers.push(() => makeCharacter(
  23079. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23080. {
  23081. front: {
  23082. height: math.unit(7.5, "feet"),
  23083. weight: math.unit(2, "lb"),
  23084. name: "Front",
  23085. image: {
  23086. source: "./media/characters/artemis/work-safe-front.svg",
  23087. extra: 1192 / 1075,
  23088. bottom: 0.07
  23089. },
  23090. form: "work-safe",
  23091. default: true
  23092. },
  23093. frontNsfw: {
  23094. height: math.unit(7.5, "feet"),
  23095. weight: math.unit(2, "lb"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/artemis/calibrating-front.svg",
  23099. extra: 1192 / 1075,
  23100. bottom: 0.07
  23101. },
  23102. form: "calibrating",
  23103. default: true
  23104. },
  23105. frontNsfwer: {
  23106. height: math.unit(7.5, "feet"),
  23107. weight: math.unit(2, "lb"),
  23108. name: "Front",
  23109. image: {
  23110. source: "./media/characters/artemis/oversize-load-front.svg",
  23111. extra: 1192 / 1075,
  23112. bottom: 0.07
  23113. },
  23114. form: "oversize-load",
  23115. default: true
  23116. },
  23117. side: {
  23118. height: math.unit(7.5, "feet"),
  23119. weight: math.unit(2, "lb"),
  23120. name: "Side",
  23121. image: {
  23122. source: "./media/characters/artemis/work-safe-side.svg",
  23123. extra: 1192 / 1075,
  23124. bottom: 0.07
  23125. },
  23126. form: "work-safe"
  23127. },
  23128. sideNsfw: {
  23129. height: math.unit(7.5, "feet"),
  23130. weight: math.unit(2, "lb"),
  23131. name: "Side",
  23132. image: {
  23133. source: "./media/characters/artemis/calibrating-side.svg",
  23134. extra: 1192 / 1075,
  23135. bottom: 0.07
  23136. },
  23137. form: "calibrating"
  23138. },
  23139. sideNsfwer: {
  23140. height: math.unit(7.5, "feet"),
  23141. weight: math.unit(2, "lb"),
  23142. name: "Side",
  23143. image: {
  23144. source: "./media/characters/artemis/oversize-load-side.svg",
  23145. extra: 1192 / 1075,
  23146. bottom: 0.07
  23147. },
  23148. form: "oversize-load"
  23149. },
  23150. maw: {
  23151. height: math.unit(1.1, "feet"),
  23152. name: "Maw",
  23153. image: {
  23154. source: "./media/characters/artemis/maw.svg"
  23155. },
  23156. form: "work-safe"
  23157. },
  23158. stomach: {
  23159. height: math.unit(0.95, "feet"),
  23160. name: "Stomach",
  23161. image: {
  23162. source: "./media/characters/artemis/stomach.svg"
  23163. },
  23164. form: "work-safe"
  23165. },
  23166. dickCanine: {
  23167. height: math.unit(1, "feet"),
  23168. name: "Dick (Canine)",
  23169. image: {
  23170. source: "./media/characters/artemis/dick-canine.svg"
  23171. },
  23172. form: "calibrating"
  23173. },
  23174. dickEquine: {
  23175. height: math.unit(0.85, "feet"),
  23176. name: "Dick (Equine)",
  23177. image: {
  23178. source: "./media/characters/artemis/dick-equine.svg"
  23179. },
  23180. form: "calibrating"
  23181. },
  23182. dickExotic: {
  23183. height: math.unit(0.85, "feet"),
  23184. name: "Dick (Exotic)",
  23185. image: {
  23186. source: "./media/characters/artemis/dick-exotic.svg"
  23187. },
  23188. form: "calibrating"
  23189. },
  23190. dickCanineBigger: {
  23191. height: math.unit(1 * 1.33, "feet"),
  23192. name: "Dick (Canine)",
  23193. image: {
  23194. source: "./media/characters/artemis/dick-canine.svg"
  23195. },
  23196. form: "oversize-load"
  23197. },
  23198. dickEquineBigger: {
  23199. height: math.unit(0.85 * 1.33, "feet"),
  23200. name: "Dick (Equine)",
  23201. image: {
  23202. source: "./media/characters/artemis/dick-equine.svg"
  23203. },
  23204. form: "oversize-load"
  23205. },
  23206. dickExoticBigger: {
  23207. height: math.unit(0.85 * 1.33, "feet"),
  23208. name: "Dick (Exotic)",
  23209. image: {
  23210. source: "./media/characters/artemis/dick-exotic.svg"
  23211. },
  23212. form: "oversize-load"
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(7.5, "feet"),
  23219. form: "work-safe",
  23220. default: true
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(7.5, "feet"),
  23225. form: "calibrating",
  23226. default: true
  23227. },
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(7.5, "feet"),
  23231. form: "oversize-load",
  23232. default: true
  23233. },
  23234. {
  23235. name: "Enlarged",
  23236. height: math.unit(12, "feet"),
  23237. form: "work-safe",
  23238. },
  23239. {
  23240. name: "Enlarged",
  23241. height: math.unit(12, "feet"),
  23242. form: "calibrating",
  23243. },
  23244. {
  23245. name: "Enlarged",
  23246. height: math.unit(12, "feet"),
  23247. form: "oversize-load",
  23248. },
  23249. ],
  23250. {
  23251. "work-safe": {
  23252. name: "Work-Safe",
  23253. default: true
  23254. },
  23255. "calibrating": {
  23256. name: "Calibrating"
  23257. },
  23258. "oversize-load": {
  23259. name: "Oversize Load"
  23260. }
  23261. }
  23262. ))
  23263. characterMakers.push(() => makeCharacter(
  23264. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23265. {
  23266. front: {
  23267. height: math.unit(5 + 3 / 12, "feet"),
  23268. weight: math.unit(160, "lb"),
  23269. name: "Front",
  23270. image: {
  23271. source: "./media/characters/kira/front.svg",
  23272. extra: 906 / 786,
  23273. bottom: 0.01
  23274. }
  23275. },
  23276. back: {
  23277. height: math.unit(5 + 3 / 12, "feet"),
  23278. weight: math.unit(160, "lb"),
  23279. name: "Back",
  23280. image: {
  23281. source: "./media/characters/kira/back.svg",
  23282. extra: 882 / 757,
  23283. bottom: 0.005
  23284. }
  23285. },
  23286. frontDressed: {
  23287. height: math.unit(5 + 3 / 12, "feet"),
  23288. weight: math.unit(160, "lb"),
  23289. name: "Front (Dressed)",
  23290. image: {
  23291. source: "./media/characters/kira/front-dressed.svg",
  23292. extra: 906 / 786,
  23293. bottom: 0.01
  23294. }
  23295. },
  23296. beans: {
  23297. height: math.unit(0.92, "feet"),
  23298. name: "Beans",
  23299. image: {
  23300. source: "./media/characters/kira/beans.svg"
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "Normal",
  23307. height: math.unit(5 + 3 / 12, "feet"),
  23308. default: true
  23309. },
  23310. ]
  23311. ))
  23312. characterMakers.push(() => makeCharacter(
  23313. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23314. {
  23315. front: {
  23316. height: math.unit(5 + 4 / 12, "feet"),
  23317. weight: math.unit(145, "lb"),
  23318. name: "Front",
  23319. image: {
  23320. source: "./media/characters/scramble/front.svg",
  23321. extra: 763 / 727,
  23322. bottom: 0.05
  23323. }
  23324. },
  23325. back: {
  23326. height: math.unit(5 + 4 / 12, "feet"),
  23327. weight: math.unit(145, "lb"),
  23328. name: "Back",
  23329. image: {
  23330. source: "./media/characters/scramble/back.svg",
  23331. extra: 826 / 737,
  23332. bottom: 0.002
  23333. }
  23334. },
  23335. },
  23336. [
  23337. {
  23338. name: "Normal",
  23339. height: math.unit(5 + 4 / 12, "feet"),
  23340. default: true
  23341. },
  23342. ]
  23343. ))
  23344. characterMakers.push(() => makeCharacter(
  23345. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23346. {
  23347. side: {
  23348. height: math.unit(6 + 2 / 12, "feet"),
  23349. weight: math.unit(190, "lb"),
  23350. name: "Side",
  23351. image: {
  23352. source: "./media/characters/biscuit/side.svg",
  23353. extra: 858 / 791,
  23354. bottom: 0.044
  23355. }
  23356. },
  23357. },
  23358. [
  23359. {
  23360. name: "Normal",
  23361. height: math.unit(6 + 2 / 12, "feet"),
  23362. default: true
  23363. },
  23364. ]
  23365. ))
  23366. characterMakers.push(() => makeCharacter(
  23367. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23368. {
  23369. front: {
  23370. height: math.unit(5 + 2 / 12, "feet"),
  23371. weight: math.unit(120, "lb"),
  23372. name: "Front",
  23373. image: {
  23374. source: "./media/characters/poffin/front.svg",
  23375. extra: 786 / 680,
  23376. bottom: 0.005
  23377. }
  23378. },
  23379. },
  23380. [
  23381. {
  23382. name: "Normal",
  23383. height: math.unit(5 + 2 / 12, "feet"),
  23384. default: true
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(6 + 3 / 12, "feet"),
  23393. weight: math.unit(519, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/dhari/front.svg",
  23397. extra: 1048 / 946,
  23398. bottom: 0.015
  23399. }
  23400. },
  23401. back: {
  23402. height: math.unit(6 + 3 / 12, "feet"),
  23403. weight: math.unit(519, "lb"),
  23404. name: "Back",
  23405. image: {
  23406. source: "./media/characters/dhari/back.svg",
  23407. extra: 1048 / 931,
  23408. bottom: 0.005
  23409. }
  23410. },
  23411. frontDressed: {
  23412. height: math.unit(6 + 3 / 12, "feet"),
  23413. weight: math.unit(519, "lb"),
  23414. name: "Front (Dressed)",
  23415. image: {
  23416. source: "./media/characters/dhari/front-dressed.svg",
  23417. extra: 1713 / 1546,
  23418. bottom: 0.02
  23419. }
  23420. },
  23421. backDressed: {
  23422. height: math.unit(6 + 3 / 12, "feet"),
  23423. weight: math.unit(519, "lb"),
  23424. name: "Back (Dressed)",
  23425. image: {
  23426. source: "./media/characters/dhari/back-dressed.svg",
  23427. extra: 1699 / 1537,
  23428. bottom: 0.01
  23429. }
  23430. },
  23431. maw: {
  23432. height: math.unit(0.95, "feet"),
  23433. name: "Maw",
  23434. image: {
  23435. source: "./media/characters/dhari/maw.svg"
  23436. }
  23437. },
  23438. wereFront: {
  23439. height: math.unit(12 + 8 / 12, "feet"),
  23440. weight: math.unit(4000, "lb"),
  23441. name: "Front (Were)",
  23442. image: {
  23443. source: "./media/characters/dhari/were-front.svg",
  23444. extra: 1065 / 969,
  23445. bottom: 0.015
  23446. }
  23447. },
  23448. wereBack: {
  23449. height: math.unit(12 + 8 / 12, "feet"),
  23450. weight: math.unit(4000, "lb"),
  23451. name: "Back (Were)",
  23452. image: {
  23453. source: "./media/characters/dhari/were-back.svg",
  23454. extra: 1065 / 969,
  23455. bottom: 0.012
  23456. }
  23457. },
  23458. wereMaw: {
  23459. height: math.unit(0.625, "meters"),
  23460. name: "Maw (Were)",
  23461. image: {
  23462. source: "./media/characters/dhari/were-maw.svg"
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Normal",
  23469. height: math.unit(6 + 3 / 12, "feet"),
  23470. default: true
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23476. {
  23477. anthro: {
  23478. height: math.unit(5 + 7 / 12, "feet"),
  23479. weight: math.unit(175, "lb"),
  23480. name: "Anthro",
  23481. image: {
  23482. source: "./media/characters/rena-dyne/anthro.svg",
  23483. extra: 1849 / 1785,
  23484. bottom: 0.005
  23485. }
  23486. },
  23487. taur: {
  23488. height: math.unit(15 + 6 / 12, "feet"),
  23489. weight: math.unit(8000, "lb"),
  23490. name: "Taur",
  23491. image: {
  23492. source: "./media/characters/rena-dyne/taur.svg",
  23493. extra: 2315 / 2234,
  23494. bottom: 0.033
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(5 + 7 / 12, "feet"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(8, "feet"),
  23511. weight: math.unit(600, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/weremeep/front.svg",
  23515. extra: 970/849,
  23516. bottom: 7/977
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(8, "feet"),
  23524. default: true
  23525. },
  23526. {
  23527. name: "Lorg",
  23528. height: math.unit(12, "feet")
  23529. },
  23530. {
  23531. name: "Oh Lawd She Comin'",
  23532. height: math.unit(20, "feet")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23538. {
  23539. front: {
  23540. height: math.unit(4, "feet"),
  23541. weight: math.unit(90, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/reza/front.svg",
  23545. extra: 1183 / 1111,
  23546. bottom: 0.017
  23547. }
  23548. },
  23549. back: {
  23550. height: math.unit(4, "feet"),
  23551. weight: math.unit(90, "lb"),
  23552. name: "Back",
  23553. image: {
  23554. source: "./media/characters/reza/back.svg",
  23555. extra: 1183 / 1111,
  23556. bottom: 0.01
  23557. }
  23558. },
  23559. drake: {
  23560. height: math.unit(30, "feet"),
  23561. weight: math.unit(246960, "lb"),
  23562. name: "Drake",
  23563. image: {
  23564. source: "./media/characters/reza/drake.svg",
  23565. extra: 2350 / 2024,
  23566. bottom: 60.7 / 2403
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Normal",
  23573. height: math.unit(4, "feet"),
  23574. default: true
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23580. {
  23581. side: {
  23582. height: math.unit(15, "feet"),
  23583. weight: math.unit(14, "tons"),
  23584. name: "Side",
  23585. image: {
  23586. source: "./media/characters/athea/side.svg",
  23587. extra: 960 / 540,
  23588. bottom: 0.003
  23589. }
  23590. },
  23591. sitting: {
  23592. height: math.unit(6 * 2.85, "feet"),
  23593. weight: math.unit(14, "tons"),
  23594. name: "Sitting",
  23595. image: {
  23596. source: "./media/characters/athea/sitting.svg",
  23597. extra: 621 / 581,
  23598. bottom: 0.075
  23599. }
  23600. },
  23601. maw: {
  23602. height: math.unit(7.59498031496063, "feet"),
  23603. name: "Maw",
  23604. image: {
  23605. source: "./media/characters/athea/maw.svg"
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Lap Cat",
  23612. height: math.unit(2.5, "feet")
  23613. },
  23614. {
  23615. name: "Minimacro",
  23616. height: math.unit(15, "feet"),
  23617. default: true
  23618. },
  23619. {
  23620. name: "Macro",
  23621. height: math.unit(120, "feet")
  23622. },
  23623. {
  23624. name: "Macro+",
  23625. height: math.unit(640, "feet")
  23626. },
  23627. {
  23628. name: "Colossus",
  23629. height: math.unit(2.2, "miles")
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(8 + 8 / 12, "feet"),
  23638. weight: math.unit(130, "kg"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/seroko/front.svg",
  23642. extra: 1385 / 1280,
  23643. bottom: 0.025
  23644. }
  23645. },
  23646. back: {
  23647. height: math.unit(8 + 8 / 12, "feet"),
  23648. weight: math.unit(130, "kg"),
  23649. name: "Back",
  23650. image: {
  23651. source: "./media/characters/seroko/back.svg",
  23652. extra: 1369 / 1238,
  23653. bottom: 0.018
  23654. }
  23655. },
  23656. frontDressed: {
  23657. height: math.unit(8 + 8 / 12, "feet"),
  23658. weight: math.unit(130, "kg"),
  23659. name: "Front (Dressed)",
  23660. image: {
  23661. source: "./media/characters/seroko/front-dressed.svg",
  23662. extra: 1366 / 1275,
  23663. bottom: 0.03
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(8 + 8 / 12, "feet"),
  23671. default: true
  23672. },
  23673. ]
  23674. ))
  23675. characterMakers.push(() => makeCharacter(
  23676. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23677. {
  23678. front: {
  23679. height: math.unit(5.5, "feet"),
  23680. weight: math.unit(160, "lb"),
  23681. name: "Front",
  23682. image: {
  23683. source: "./media/characters/quatzi/front.svg",
  23684. extra: 2346 / 2242,
  23685. bottom: 0.015
  23686. }
  23687. },
  23688. },
  23689. [
  23690. {
  23691. name: "Normal",
  23692. height: math.unit(5.5, "feet"),
  23693. default: true
  23694. },
  23695. {
  23696. name: "Big",
  23697. height: math.unit(7.7, "feet")
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(5 + 11 / 12, "feet"),
  23706. weight: math.unit(180, "lb"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/sen/front.svg",
  23710. extra: 1321 / 1254,
  23711. bottom: 0.015
  23712. }
  23713. },
  23714. side: {
  23715. height: math.unit(5 + 11 / 12, "feet"),
  23716. weight: math.unit(180, "lb"),
  23717. name: "Side",
  23718. image: {
  23719. source: "./media/characters/sen/side.svg",
  23720. extra: 1321 / 1254,
  23721. bottom: 0.007
  23722. }
  23723. },
  23724. back: {
  23725. height: math.unit(5 + 11 / 12, "feet"),
  23726. weight: math.unit(180, "lb"),
  23727. name: "Back",
  23728. image: {
  23729. source: "./media/characters/sen/back.svg",
  23730. extra: 1321 / 1254
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(5 + 11 / 12, "feet"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(166.6, "cm"),
  23747. weight: math.unit(66.6, "kg"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/fruity/front.svg",
  23751. extra: 1510 / 1386,
  23752. bottom: 0.04
  23753. }
  23754. },
  23755. back: {
  23756. height: math.unit(166.6, "cm"),
  23757. weight: math.unit(66.6, "lb"),
  23758. name: "Back",
  23759. image: {
  23760. source: "./media/characters/fruity/back.svg",
  23761. extra: 1563 / 1435,
  23762. bottom: 0.005
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(166.6, "cm"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Demonic",
  23774. height: math.unit(166.6, "feet")
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23780. {
  23781. side: {
  23782. height: math.unit(10, "feet"),
  23783. weight: math.unit(500, "lb"),
  23784. name: "Side",
  23785. image: {
  23786. source: "./media/characters/zost/side.svg",
  23787. extra: 2870/2533,
  23788. bottom: 252/3122
  23789. }
  23790. },
  23791. mawFront: {
  23792. height: math.unit(1.08, "meters"),
  23793. name: "Maw (Front)",
  23794. image: {
  23795. source: "./media/characters/zost/maw-front.svg"
  23796. }
  23797. },
  23798. mawSide: {
  23799. height: math.unit(2.66, "feet"),
  23800. name: "Maw (Side)",
  23801. image: {
  23802. source: "./media/characters/zost/maw-side.svg"
  23803. }
  23804. },
  23805. wingspan: {
  23806. height: math.unit(7.4, "feet"),
  23807. name: "Wingspan",
  23808. image: {
  23809. source: "./media/characters/zost/wingspan.svg"
  23810. }
  23811. },
  23812. },
  23813. [
  23814. {
  23815. name: "Normal",
  23816. height: math.unit(10, "feet"),
  23817. default: true
  23818. },
  23819. ]
  23820. ))
  23821. characterMakers.push(() => makeCharacter(
  23822. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23823. {
  23824. front: {
  23825. height: math.unit(5 + 4 / 12, "feet"),
  23826. weight: math.unit(120, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/luci/front.svg",
  23830. extra: 1985 / 1884,
  23831. bottom: 0.04
  23832. }
  23833. },
  23834. back: {
  23835. height: math.unit(5 + 4 / 12, "feet"),
  23836. weight: math.unit(120, "lb"),
  23837. name: "Back",
  23838. image: {
  23839. source: "./media/characters/luci/back.svg",
  23840. extra: 1892 / 1791,
  23841. bottom: 0.002
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(5 + 4 / 12, "feet"),
  23849. default: true
  23850. },
  23851. ]
  23852. ))
  23853. characterMakers.push(() => makeCharacter(
  23854. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23855. {
  23856. front: {
  23857. height: math.unit(1500, "feet"),
  23858. weight: math.unit(3.8e6, "tons"),
  23859. name: "Front",
  23860. image: {
  23861. source: "./media/characters/2th/front.svg",
  23862. extra: 3489 / 3350,
  23863. bottom: 0.1
  23864. }
  23865. },
  23866. foot: {
  23867. height: math.unit(461, "feet"),
  23868. name: "Foot",
  23869. image: {
  23870. source: "./media/characters/2th/foot.svg"
  23871. }
  23872. },
  23873. },
  23874. [
  23875. {
  23876. name: "\"Micro\"",
  23877. height: math.unit(15 + 7 / 12, "feet")
  23878. },
  23879. {
  23880. name: "Normal",
  23881. height: math.unit(1500, "feet"),
  23882. default: true
  23883. },
  23884. {
  23885. name: "Macro",
  23886. height: math.unit(5000, "feet")
  23887. },
  23888. {
  23889. name: "Megamacro",
  23890. height: math.unit(15, "miles")
  23891. },
  23892. {
  23893. name: "Gigamacro",
  23894. height: math.unit(4000, "miles")
  23895. },
  23896. {
  23897. name: "Galactic",
  23898. height: math.unit(50, "AU")
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23904. {
  23905. front: {
  23906. height: math.unit(5 + 6 / 12, "feet"),
  23907. weight: math.unit(220, "lb"),
  23908. name: "Front",
  23909. image: {
  23910. source: "./media/characters/amethyst/front.svg",
  23911. extra: 2078 / 2040,
  23912. bottom: 0.045
  23913. }
  23914. },
  23915. back: {
  23916. height: math.unit(5 + 6 / 12, "feet"),
  23917. weight: math.unit(220, "lb"),
  23918. name: "Back",
  23919. image: {
  23920. source: "./media/characters/amethyst/back.svg",
  23921. extra: 2021 / 1989,
  23922. bottom: 0.02
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(5 + 6 / 12, "feet"),
  23930. default: true
  23931. },
  23932. ]
  23933. ))
  23934. characterMakers.push(() => makeCharacter(
  23935. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23936. {
  23937. front: {
  23938. height: math.unit(4 + 11 / 12, "feet"),
  23939. weight: math.unit(120, "lb"),
  23940. name: "Front",
  23941. image: {
  23942. source: "./media/characters/yumi-akiyama/front.svg",
  23943. extra: 2638/2432,
  23944. bottom: 70/2708
  23945. }
  23946. },
  23947. back: {
  23948. height: math.unit(4 + 11 / 12, "feet"),
  23949. weight: math.unit(120, "lb"),
  23950. name: "Back",
  23951. image: {
  23952. source: "./media/characters/yumi-akiyama/back.svg",
  23953. extra: 2502/2397,
  23954. bottom: 80/2582
  23955. }
  23956. },
  23957. casual: {
  23958. height: math.unit(4 + 11 / 12, "feet"),
  23959. weight: math.unit(120, "lb"),
  23960. name: "Casual",
  23961. image: {
  23962. source: "./media/characters/yumi-akiyama/casual.svg",
  23963. extra: 958/887,
  23964. bottom: 41/999
  23965. }
  23966. },
  23967. jammies: {
  23968. height: math.unit(4 + 11 / 12, "feet"),
  23969. weight: math.unit(120, "lb"),
  23970. name: "Jammies",
  23971. image: {
  23972. source: "./media/characters/yumi-akiyama/jammies.svg",
  23973. extra: 958/894,
  23974. bottom: 37/995
  23975. }
  23976. },
  23977. warmWeather: {
  23978. height: math.unit(4 + 11 / 12, "feet"),
  23979. weight: math.unit(120, "lb"),
  23980. name: "Warm Weather",
  23981. image: {
  23982. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23983. extra: 929/865,
  23984. bottom: 76/1005
  23985. }
  23986. },
  23987. mouth: {
  23988. height: math.unit(0.35, "feet"),
  23989. name: "Mouth",
  23990. image: {
  23991. source: "./media/characters/yumi-akiyama/mouth.svg"
  23992. }
  23993. },
  23994. paws: {
  23995. height: math.unit(1.05, "feet"),
  23996. name: "Paws",
  23997. image: {
  23998. source: "./media/characters/yumi-akiyama/paws.svg"
  23999. }
  24000. },
  24001. cockRing: {
  24002. height: math.unit(0.225, "feet"),
  24003. name: "Cock Ring",
  24004. image: {
  24005. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Galactic",
  24012. height: math.unit(50, "galaxies"),
  24013. default: true
  24014. },
  24015. {
  24016. name: "Universal",
  24017. height: math.unit(100, "universes")
  24018. },
  24019. ]
  24020. ))
  24021. characterMakers.push(() => makeCharacter(
  24022. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24023. {
  24024. front: {
  24025. height: math.unit(8, "feet"),
  24026. weight: math.unit(500, "lb"),
  24027. name: "Front",
  24028. image: {
  24029. source: "./media/characters/rifter-yrmori/front.svg",
  24030. extra: 1180 / 1125,
  24031. bottom: 0.02
  24032. }
  24033. },
  24034. back: {
  24035. height: math.unit(8, "feet"),
  24036. weight: math.unit(500, "lb"),
  24037. name: "Back",
  24038. image: {
  24039. source: "./media/characters/rifter-yrmori/back.svg",
  24040. extra: 1190 / 1145,
  24041. bottom: 0.001
  24042. }
  24043. },
  24044. wings: {
  24045. height: math.unit(7.75, "feet"),
  24046. weight: math.unit(500, "lb"),
  24047. name: "Wings",
  24048. image: {
  24049. source: "./media/characters/rifter-yrmori/wings.svg",
  24050. extra: 1357 / 1285
  24051. }
  24052. },
  24053. maw: {
  24054. height: math.unit(0.8, "feet"),
  24055. name: "Maw",
  24056. image: {
  24057. source: "./media/characters/rifter-yrmori/maw.svg"
  24058. }
  24059. },
  24060. mawfront: {
  24061. height: math.unit(1.45, "feet"),
  24062. name: "Maw (Front)",
  24063. image: {
  24064. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Normal",
  24071. height: math.unit(8, "feet"),
  24072. default: true
  24073. },
  24074. {
  24075. name: "Macro",
  24076. height: math.unit(42, "meters")
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24082. {
  24083. were: {
  24084. height: math.unit(25 + 6 / 12, "feet"),
  24085. weight: math.unit(10000, "lb"),
  24086. name: "Were",
  24087. image: {
  24088. source: "./media/characters/tahajin/were.svg",
  24089. extra: 801 / 770,
  24090. bottom: 0.042
  24091. }
  24092. },
  24093. aquatic: {
  24094. height: math.unit(6 + 4 / 12, "feet"),
  24095. weight: math.unit(160, "lb"),
  24096. name: "Aquatic",
  24097. image: {
  24098. source: "./media/characters/tahajin/aquatic.svg",
  24099. extra: 572 / 542,
  24100. bottom: 0.04
  24101. }
  24102. },
  24103. chow: {
  24104. height: math.unit(8 + 11 / 12, "feet"),
  24105. weight: math.unit(450, "lb"),
  24106. name: "Chow",
  24107. image: {
  24108. source: "./media/characters/tahajin/chow.svg",
  24109. extra: 660 / 640,
  24110. bottom: 0.015
  24111. }
  24112. },
  24113. demiNaga: {
  24114. height: math.unit(6 + 8 / 12, "feet"),
  24115. weight: math.unit(300, "lb"),
  24116. name: "Demi Naga",
  24117. image: {
  24118. source: "./media/characters/tahajin/demi-naga.svg",
  24119. extra: 643 / 615,
  24120. bottom: 0.1
  24121. }
  24122. },
  24123. data: {
  24124. height: math.unit(5, "inches"),
  24125. weight: math.unit(0.1, "lb"),
  24126. name: "Data",
  24127. image: {
  24128. source: "./media/characters/tahajin/data.svg"
  24129. }
  24130. },
  24131. fluu: {
  24132. height: math.unit(5 + 7 / 12, "feet"),
  24133. weight: math.unit(140, "lb"),
  24134. name: "Fluu",
  24135. image: {
  24136. source: "./media/characters/tahajin/fluu.svg",
  24137. extra: 628 / 592,
  24138. bottom: 0.02
  24139. }
  24140. },
  24141. starWarrior: {
  24142. height: math.unit(4 + 5 / 12, "feet"),
  24143. weight: math.unit(50, "lb"),
  24144. name: "Star Warrior",
  24145. image: {
  24146. source: "./media/characters/tahajin/star-warrior.svg"
  24147. }
  24148. },
  24149. },
  24150. [
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(25 + 6 / 12, "feet"),
  24154. default: true
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24160. {
  24161. front: {
  24162. height: math.unit(8, "feet"),
  24163. weight: math.unit(350, "lb"),
  24164. name: "Front",
  24165. image: {
  24166. source: "./media/characters/gabira/front.svg",
  24167. extra: 1261/1154,
  24168. bottom: 51/1312
  24169. }
  24170. },
  24171. back: {
  24172. height: math.unit(8, "feet"),
  24173. weight: math.unit(350, "lb"),
  24174. name: "Back",
  24175. image: {
  24176. source: "./media/characters/gabira/back.svg",
  24177. extra: 1265/1163,
  24178. bottom: 46/1311
  24179. }
  24180. },
  24181. head: {
  24182. height: math.unit(2.85, "feet"),
  24183. name: "Head",
  24184. image: {
  24185. source: "./media/characters/gabira/head.svg"
  24186. }
  24187. },
  24188. },
  24189. [
  24190. {
  24191. name: "Normal",
  24192. height: math.unit(8, "feet"),
  24193. default: true
  24194. },
  24195. ]
  24196. ))
  24197. characterMakers.push(() => makeCharacter(
  24198. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24199. {
  24200. front: {
  24201. height: math.unit(5 + 3 / 12, "feet"),
  24202. weight: math.unit(137, "lb"),
  24203. name: "Front",
  24204. image: {
  24205. source: "./media/characters/sasha-katraine/front.svg",
  24206. extra: 1745/1694,
  24207. bottom: 37/1782
  24208. }
  24209. },
  24210. back: {
  24211. height: math.unit(5 + 3 / 12, "feet"),
  24212. weight: math.unit(137, "lb"),
  24213. name: "Back",
  24214. image: {
  24215. source: "./media/characters/sasha-katraine/back.svg",
  24216. extra: 1776/1699,
  24217. bottom: 26/1802
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Micro",
  24224. height: math.unit(5, "inches")
  24225. },
  24226. {
  24227. name: "Normal",
  24228. height: math.unit(5 + 3 / 12, "feet"),
  24229. default: true
  24230. },
  24231. ]
  24232. ))
  24233. characterMakers.push(() => makeCharacter(
  24234. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24235. {
  24236. side: {
  24237. height: math.unit(4, "inches"),
  24238. weight: math.unit(200, "grams"),
  24239. name: "Side",
  24240. image: {
  24241. source: "./media/characters/der/side.svg",
  24242. extra: 719 / 400,
  24243. bottom: 30.6 / 749.9187
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Micro",
  24250. height: math.unit(4, "inches"),
  24251. default: true
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24257. {
  24258. side: {
  24259. height: math.unit(30, "meters"),
  24260. weight: math.unit(700, "tonnes"),
  24261. name: "Side",
  24262. image: {
  24263. source: "./media/characters/fixerdragon/side.svg",
  24264. extra: (1293.0514 - 116.03) / 1106.86,
  24265. bottom: 116.03 / 1293.0514
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Planck",
  24272. height: math.unit(1.6e-35, "meters")
  24273. },
  24274. {
  24275. name: "Micro",
  24276. height: math.unit(0.4, "meters")
  24277. },
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(30, "meters"),
  24281. default: true
  24282. },
  24283. {
  24284. name: "Megamacro",
  24285. height: math.unit(1.2, "megameters")
  24286. },
  24287. {
  24288. name: "Teramacro",
  24289. height: math.unit(130, "terameters")
  24290. },
  24291. {
  24292. name: "Yottamacro",
  24293. height: math.unit(6200, "yottameters")
  24294. },
  24295. ]
  24296. ));
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24299. {
  24300. front: {
  24301. height: math.unit(8, "feet"),
  24302. weight: math.unit(250, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/kite/front.svg",
  24306. extra: 456/414,
  24307. bottom: 24/480
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(8, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(360, "feet")
  24320. },
  24321. {
  24322. name: "Megamacro",
  24323. height: math.unit(1500, "feet")
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24329. {
  24330. anthro_front: {
  24331. height: math.unit(5 + 11/12, "feet"),
  24332. weight: math.unit(170, "lb"),
  24333. name: "Front",
  24334. image: {
  24335. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24336. extra: 1735/1585,
  24337. bottom: 96/1831
  24338. },
  24339. form: "anthro",
  24340. default: true
  24341. },
  24342. anthro_back: {
  24343. height: math.unit(5 + 11/12, "feet"),
  24344. weight: math.unit(170, "lb"),
  24345. name: "Back",
  24346. image: {
  24347. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24348. extra: 1749/1607,
  24349. bottom: 28/1777
  24350. },
  24351. form: "anthro"
  24352. },
  24353. anthro_male: {
  24354. height: math.unit(5 + 11/12, "feet"),
  24355. weight: math.unit(170, "lb"),
  24356. name: "Male",
  24357. image: {
  24358. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24359. extra: 1855/1713,
  24360. bottom: 63/1918
  24361. },
  24362. form: "anthro"
  24363. },
  24364. taur_front: {
  24365. height: math.unit(5 + 7/12, "feet"),
  24366. weight: math.unit(170, "lb"),
  24367. name: "Front",
  24368. image: {
  24369. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24370. extra: 1151/1059,
  24371. bottom: 356/1507
  24372. },
  24373. form: "taur",
  24374. default: true
  24375. },
  24376. anthro_frontDressed: {
  24377. height: math.unit(5 + 11/12, "feet"),
  24378. weight: math.unit(170, "lb"),
  24379. name: "Front (Dressed)",
  24380. image: {
  24381. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24382. extra: 1735/1585,
  24383. bottom: 96/1831
  24384. },
  24385. form: "anthro"
  24386. },
  24387. anthro_backDressed: {
  24388. height: math.unit(5 + 11/12, "feet"),
  24389. weight: math.unit(170, "lb"),
  24390. name: "Back (Dressed)",
  24391. image: {
  24392. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24393. extra: 1749/1607,
  24394. bottom: 28/1777
  24395. },
  24396. form: "anthro"
  24397. },
  24398. anthro_maleDressed: {
  24399. height: math.unit(5 + 11/12, "feet"),
  24400. weight: math.unit(170, "lb"),
  24401. name: "Male (Dressed)",
  24402. image: {
  24403. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24404. extra: 1855/1713,
  24405. bottom: 63/1918
  24406. },
  24407. form: "anthro"
  24408. },
  24409. taur_frontDressed: {
  24410. height: math.unit(5 + 7/12, "feet"),
  24411. weight: math.unit(170, "lb"),
  24412. name: "Front (Dressed)",
  24413. image: {
  24414. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24415. extra: 1151/1059,
  24416. bottom: 356/1507
  24417. },
  24418. form: "taur"
  24419. },
  24420. maw: {
  24421. height: math.unit(1.46, "feet"),
  24422. name: "Maw",
  24423. image: {
  24424. source: "./media/characters/poojawa-vynar/maw.svg"
  24425. },
  24426. allForms: true
  24427. },
  24428. head: {
  24429. height: math.unit(2.34, "feet"),
  24430. name: "Head",
  24431. image: {
  24432. source: "./media/characters/poojawa-vynar/head.svg"
  24433. },
  24434. allForms: true
  24435. },
  24436. leftPaw: {
  24437. height: math.unit(1.72, "feet"),
  24438. name: "Left Paw",
  24439. image: {
  24440. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24441. },
  24442. allForms: true
  24443. },
  24444. rightPaw: {
  24445. height: math.unit(1.61, "feet"),
  24446. name: "Right Paw",
  24447. image: {
  24448. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24449. },
  24450. allForms: true
  24451. },
  24452. toering: {
  24453. height: math.unit(2.9, "inches"),
  24454. name: "Toering",
  24455. image: {
  24456. source: "./media/characters/poojawa-vynar/toering.svg"
  24457. },
  24458. allForms: true
  24459. },
  24460. shaft: {
  24461. height: math.unit(0.625, "feet"),
  24462. name: "Shaft",
  24463. image: {
  24464. source: "./media/characters/poojawa-vynar/shaft.svg"
  24465. },
  24466. allForms: true
  24467. },
  24468. spade: {
  24469. height: math.unit(0.42, "feet"),
  24470. name: "Spade",
  24471. image: {
  24472. source: "./media/characters/poojawa-vynar/spade.svg"
  24473. },
  24474. allForms: true
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Shortstack",
  24480. height: math.unit(4, "feet"),
  24481. form: "anthro"
  24482. },
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(5 + 11 / 12, "feet"),
  24486. form: "anthro",
  24487. default: true
  24488. },
  24489. {
  24490. name: "Tauric",
  24491. height: math.unit(4, "meters"),
  24492. form: "taur",
  24493. default: true
  24494. },
  24495. ],
  24496. {
  24497. "anthro": {
  24498. name: "Anthro",
  24499. default: true
  24500. },
  24501. "taur": {
  24502. name: "Taur",
  24503. },
  24504. }
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24508. {
  24509. front: {
  24510. height: math.unit(293, "meters"),
  24511. weight: math.unit(70400, "tons"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/violette/front.svg",
  24515. extra: 1227 / 1180,
  24516. bottom: 0.005
  24517. }
  24518. },
  24519. back: {
  24520. height: math.unit(293, "meters"),
  24521. weight: math.unit(70400, "tons"),
  24522. name: "Back",
  24523. image: {
  24524. source: "./media/characters/violette/back.svg",
  24525. extra: 1227 / 1180,
  24526. bottom: 0.005
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Macro",
  24533. height: math.unit(293, "meters"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(1050, "feet"),
  24543. weight: math.unit(200000, "tons"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/alessandra/front.svg",
  24547. extra: 960 / 912,
  24548. bottom: 0.06
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(1050, "feet")
  24556. },
  24557. {
  24558. name: "Macro+",
  24559. height: math.unit(900, "meters"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(5, "feet"),
  24569. weight: math.unit(187, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/person/front.svg",
  24573. extra: 3087 / 2945,
  24574. bottom: 91 / 3181
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "Micro",
  24581. height: math.unit(3, "inches")
  24582. },
  24583. {
  24584. name: "Normal",
  24585. height: math.unit(5, "feet"),
  24586. default: true
  24587. },
  24588. {
  24589. name: "Macro",
  24590. height: math.unit(90, "feet")
  24591. },
  24592. {
  24593. name: "Max Size",
  24594. height: math.unit(280, "feet")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(12, "feet"),
  24603. weight: math.unit(3200, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/ty/front.svg",
  24607. extra: 753/703,
  24608. bottom: 61/814
  24609. }
  24610. },
  24611. back: {
  24612. height: math.unit(12, "feet"),
  24613. weight: math.unit(3200, "lb"),
  24614. name: "Back",
  24615. image: {
  24616. source: "./media/characters/ty/back.svg",
  24617. extra: 757/707,
  24618. bottom: 16/773
  24619. }
  24620. },
  24621. head: {
  24622. height: math.unit(3.7, "feet"),
  24623. name: "Head",
  24624. image: {
  24625. source: "./media/characters/ty/head.svg"
  24626. }
  24627. },
  24628. hand: {
  24629. height: math.unit(2.38, "feet"),
  24630. name: "Hand",
  24631. image: {
  24632. source: "./media/characters/ty/hand.svg"
  24633. }
  24634. },
  24635. tail: {
  24636. height: math.unit(8.01096641535, "feet"),
  24637. name: "Tail",
  24638. image: {
  24639. source: "./media/characters/ty/tail.svg"
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(12, "feet"),
  24647. default: true
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(5 + 4 / 12, "feet"),
  24656. weight: math.unit(115, "lb"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/rocky/front.svg",
  24660. extra: 1012 / 975,
  24661. bottom: 54 / 1066
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(5 + 4 / 12, "feet"),
  24669. default: true
  24670. },
  24671. ]
  24672. ))
  24673. characterMakers.push(() => makeCharacter(
  24674. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24675. {
  24676. upright: {
  24677. height: math.unit(6, "meters"),
  24678. weight: math.unit(4000, "kg"),
  24679. name: "Upright",
  24680. image: {
  24681. source: "./media/characters/ruin/upright.svg",
  24682. extra: 668 / 661,
  24683. bottom: 42 / 799.8396
  24684. }
  24685. },
  24686. },
  24687. [
  24688. {
  24689. name: "Normal",
  24690. height: math.unit(6, "meters"),
  24691. default: true
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24697. {
  24698. front: {
  24699. height: math.unit(5, "feet"),
  24700. weight: math.unit(106, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/robin/front.svg",
  24704. extra: 862 / 799,
  24705. bottom: 42.4 / 914.8856
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(5, "feet"),
  24713. default: true
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24719. {
  24720. side: {
  24721. height: math.unit(3, "feet"),
  24722. weight: math.unit(225, "lb"),
  24723. name: "Side",
  24724. image: {
  24725. source: "./media/characters/saian/side.svg",
  24726. extra: 566 / 356,
  24727. bottom: 79.7 / 643
  24728. }
  24729. },
  24730. maw: {
  24731. height: math.unit(2.85, "feet"),
  24732. name: "Maw",
  24733. image: {
  24734. source: "./media/characters/saian/maw.svg"
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Normal",
  24741. height: math.unit(3, "feet"),
  24742. default: true
  24743. },
  24744. ]
  24745. ))
  24746. characterMakers.push(() => makeCharacter(
  24747. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24748. {
  24749. side: {
  24750. height: math.unit(8, "feet"),
  24751. weight: math.unit(300, "lb"),
  24752. name: "Side",
  24753. image: {
  24754. source: "./media/characters/equus-silvermane/side.svg",
  24755. extra: 2176 / 2050,
  24756. bottom: 65.7 / 2245
  24757. }
  24758. },
  24759. front: {
  24760. height: math.unit(8, "feet"),
  24761. weight: math.unit(300, "lb"),
  24762. name: "Front",
  24763. image: {
  24764. source: "./media/characters/equus-silvermane/front.svg",
  24765. extra: 4633 / 4400,
  24766. bottom: 71.3 / 4706.915
  24767. }
  24768. },
  24769. sideStepping: {
  24770. height: math.unit(8, "feet"),
  24771. weight: math.unit(300, "lb"),
  24772. name: "Side (Stepping)",
  24773. image: {
  24774. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24775. extra: 1968 / 1860,
  24776. bottom: 16.4 / 1989
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(8, "feet")
  24784. },
  24785. {
  24786. name: "Minimacro",
  24787. height: math.unit(75, "feet"),
  24788. default: true
  24789. },
  24790. {
  24791. name: "Macro",
  24792. height: math.unit(150, "feet")
  24793. },
  24794. {
  24795. name: "Macro+",
  24796. height: math.unit(1000, "feet")
  24797. },
  24798. {
  24799. name: "Megamacro",
  24800. height: math.unit(1, "mile")
  24801. },
  24802. ]
  24803. ))
  24804. characterMakers.push(() => makeCharacter(
  24805. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24806. {
  24807. side: {
  24808. height: math.unit(20, "feet"),
  24809. weight: math.unit(30000, "kg"),
  24810. name: "Side",
  24811. image: {
  24812. source: "./media/characters/windar/side.svg",
  24813. extra: 1491 / 1248,
  24814. bottom: 82.56 / 1568
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(20, "feet"),
  24822. default: true
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24828. {
  24829. side: {
  24830. height: math.unit(15.66, "feet"),
  24831. weight: math.unit(150, "lb"),
  24832. name: "Side",
  24833. image: {
  24834. source: "./media/characters/melody/side.svg",
  24835. extra: 1097 / 944,
  24836. bottom: 11.8 / 1109
  24837. }
  24838. },
  24839. sideOutfit: {
  24840. height: math.unit(15.66, "feet"),
  24841. weight: math.unit(150, "lb"),
  24842. name: "Side (Outfit)",
  24843. image: {
  24844. source: "./media/characters/melody/side-outfit.svg",
  24845. extra: 1097 / 944,
  24846. bottom: 11.8 / 1109
  24847. }
  24848. },
  24849. },
  24850. [
  24851. {
  24852. name: "Normal",
  24853. height: math.unit(15.66, "feet"),
  24854. default: true
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24860. {
  24861. armoredFront: {
  24862. height: math.unit(8, "feet"),
  24863. weight: math.unit(325, "lb"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/windera/armored-front.svg",
  24867. extra: 1830/1598,
  24868. bottom: 151/1981
  24869. },
  24870. form: "armored",
  24871. default: true
  24872. },
  24873. macroFront: {
  24874. height: math.unit(70, "feet"),
  24875. weight: math.unit(315453, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/windera/macro-front.svg",
  24879. extra: 963/883,
  24880. bottom: 23/986
  24881. },
  24882. form: "macro",
  24883. default: true
  24884. },
  24885. },
  24886. [
  24887. {
  24888. name: "Normal",
  24889. height: math.unit(8, "feet"),
  24890. default: true,
  24891. form: "armored"
  24892. },
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(70, "feet"),
  24896. default: true,
  24897. form: "macro"
  24898. },
  24899. ],
  24900. {
  24901. "armored": {
  24902. name: "Armored",
  24903. default: true
  24904. },
  24905. "macro": {
  24906. name: "Macro",
  24907. },
  24908. }
  24909. ))
  24910. characterMakers.push(() => makeCharacter(
  24911. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24912. {
  24913. front: {
  24914. height: math.unit(28.75, "feet"),
  24915. weight: math.unit(2000, "kg"),
  24916. name: "Front",
  24917. image: {
  24918. source: "./media/characters/sonear/front.svg",
  24919. extra: 1041.1 / 964.9,
  24920. bottom: 53.7 / 1096.6
  24921. }
  24922. },
  24923. },
  24924. [
  24925. {
  24926. name: "Normal",
  24927. height: math.unit(28.75, "feet"),
  24928. default: true
  24929. },
  24930. ]
  24931. ))
  24932. characterMakers.push(() => makeCharacter(
  24933. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24934. {
  24935. side: {
  24936. height: math.unit(25.5, "feet"),
  24937. weight: math.unit(23000, "kg"),
  24938. name: "Side",
  24939. image: {
  24940. source: "./media/characters/kanara/side.svg"
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(25.5, "feet"),
  24948. default: true
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24954. {
  24955. side: {
  24956. height: math.unit(10, "feet"),
  24957. weight: math.unit(1000, "kg"),
  24958. name: "Side",
  24959. image: {
  24960. source: "./media/characters/ereus/side.svg",
  24961. extra: 1157 / 959,
  24962. bottom: 153 / 1312.5
  24963. }
  24964. },
  24965. },
  24966. [
  24967. {
  24968. name: "Normal",
  24969. height: math.unit(10, "feet"),
  24970. default: true
  24971. },
  24972. ]
  24973. ))
  24974. characterMakers.push(() => makeCharacter(
  24975. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24976. {
  24977. side: {
  24978. height: math.unit(4.5, "feet"),
  24979. weight: math.unit(500, "lb"),
  24980. name: "Side",
  24981. image: {
  24982. source: "./media/characters/e-ter/side.svg",
  24983. extra: 1550 / 1248,
  24984. bottom: 146 / 1694
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(4.5, "feet"),
  24992. default: true
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24998. {
  24999. side: {
  25000. height: math.unit(9.7, "feet"),
  25001. weight: math.unit(4000, "kg"),
  25002. name: "Side",
  25003. image: {
  25004. source: "./media/characters/yamie/side.svg"
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(9.7, "feet"),
  25012. default: true
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(50, "feet"),
  25021. weight: math.unit(50000, "kg"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/anders/front.svg",
  25025. extra: 570 / 539,
  25026. bottom: 14.7 / 586.7
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Large",
  25033. height: math.unit(50, "feet")
  25034. },
  25035. {
  25036. name: "Macro",
  25037. height: math.unit(2000, "feet"),
  25038. default: true
  25039. },
  25040. {
  25041. name: "Megamacro",
  25042. height: math.unit(12, "miles")
  25043. },
  25044. ]
  25045. ))
  25046. characterMakers.push(() => makeCharacter(
  25047. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25048. {
  25049. front: {
  25050. height: math.unit(7 + 2 / 12, "feet"),
  25051. weight: math.unit(300, "lb"),
  25052. name: "Front",
  25053. image: {
  25054. source: "./media/characters/reban/front.svg",
  25055. extra: 1287/1212,
  25056. bottom: 148/1435
  25057. }
  25058. },
  25059. head: {
  25060. height: math.unit(1.95, "feet"),
  25061. name: "Head",
  25062. image: {
  25063. source: "./media/characters/reban/head.svg"
  25064. }
  25065. },
  25066. maw: {
  25067. height: math.unit(0.95, "feet"),
  25068. name: "Maw",
  25069. image: {
  25070. source: "./media/characters/reban/maw.svg"
  25071. }
  25072. },
  25073. foot: {
  25074. height: math.unit(1.65, "feet"),
  25075. name: "Foot",
  25076. image: {
  25077. source: "./media/characters/reban/foot.svg"
  25078. }
  25079. },
  25080. dick: {
  25081. height: math.unit(7 / 5, "feet"),
  25082. name: "Dick",
  25083. image: {
  25084. source: "./media/characters/reban/dick.svg"
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Natural Height",
  25091. height: math.unit(7 + 2 / 12, "feet")
  25092. },
  25093. {
  25094. name: "Macro",
  25095. height: math.unit(500, "feet"),
  25096. default: true
  25097. },
  25098. {
  25099. name: "Canon Height",
  25100. height: math.unit(50, "AU")
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25106. {
  25107. front: {
  25108. height: math.unit(6, "feet"),
  25109. weight: math.unit(150, "lb"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/terrance-keayes/front.svg",
  25113. extra: 1.005,
  25114. bottom: 151 / 1615
  25115. }
  25116. },
  25117. side: {
  25118. height: math.unit(6, "feet"),
  25119. weight: math.unit(150, "lb"),
  25120. name: "Side",
  25121. image: {
  25122. source: "./media/characters/terrance-keayes/side.svg",
  25123. extra: 1.005,
  25124. bottom: 129.4 / 1544
  25125. }
  25126. },
  25127. back: {
  25128. height: math.unit(6, "feet"),
  25129. weight: math.unit(150, "lb"),
  25130. name: "Back",
  25131. image: {
  25132. source: "./media/characters/terrance-keayes/back.svg",
  25133. extra: 1.005,
  25134. bottom: 58.4 / 1557.3
  25135. }
  25136. },
  25137. dick: {
  25138. height: math.unit(6 * 0.208, "feet"),
  25139. name: "Dick",
  25140. image: {
  25141. source: "./media/characters/terrance-keayes/dick.svg"
  25142. }
  25143. },
  25144. },
  25145. [
  25146. {
  25147. name: "Canon Height",
  25148. height: math.unit(35, "miles"),
  25149. default: true
  25150. },
  25151. ]
  25152. ))
  25153. characterMakers.push(() => makeCharacter(
  25154. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25155. {
  25156. front: {
  25157. height: math.unit(6, "feet"),
  25158. weight: math.unit(150, "lb"),
  25159. name: "Front",
  25160. image: {
  25161. source: "./media/characters/ofelia/front.svg",
  25162. extra: 1130/1117,
  25163. bottom: 91/1221
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(6, "feet"),
  25168. weight: math.unit(150, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/ofelia/back.svg",
  25172. extra: 1172/1159,
  25173. bottom: 28/1200
  25174. }
  25175. },
  25176. maw: {
  25177. height: math.unit(1, "feet"),
  25178. name: "Maw",
  25179. image: {
  25180. source: "./media/characters/ofelia/maw.svg"
  25181. }
  25182. },
  25183. foot: {
  25184. height: math.unit(1.949, "feet"),
  25185. name: "Foot",
  25186. image: {
  25187. source: "./media/characters/ofelia/foot.svg"
  25188. }
  25189. },
  25190. },
  25191. [
  25192. {
  25193. name: "Canon Height",
  25194. height: math.unit(2000, "miles"),
  25195. default: true
  25196. },
  25197. ]
  25198. ))
  25199. characterMakers.push(() => makeCharacter(
  25200. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25201. {
  25202. front: {
  25203. height: math.unit(6, "feet"),
  25204. weight: math.unit(150, "lb"),
  25205. name: "Front",
  25206. image: {
  25207. source: "./media/characters/samuel/front.svg",
  25208. extra: 265 / 258,
  25209. bottom: 2 / 266.1566
  25210. }
  25211. },
  25212. },
  25213. [
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(100, "feet"),
  25217. default: true
  25218. },
  25219. {
  25220. name: "Full Size",
  25221. height: math.unit(1000, "miles")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(6, "feet"),
  25230. weight: math.unit(300, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/beishir-kiel/front.svg",
  25234. extra: 569 / 547,
  25235. bottom: 41.9 / 609
  25236. }
  25237. },
  25238. maw: {
  25239. height: math.unit(6 * 0.202, "feet"),
  25240. name: "Maw",
  25241. image: {
  25242. source: "./media/characters/beishir-kiel/maw.svg"
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Macro",
  25249. height: math.unit(300, "feet"),
  25250. default: true
  25251. },
  25252. ]
  25253. ))
  25254. characterMakers.push(() => makeCharacter(
  25255. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25256. {
  25257. front: {
  25258. height: math.unit(5 + 7/12, "feet"),
  25259. weight: math.unit(120, "lb"),
  25260. name: "Front",
  25261. image: {
  25262. source: "./media/characters/logan-grey/front.svg",
  25263. extra: 1836/1738,
  25264. bottom: 108/1944
  25265. }
  25266. },
  25267. back: {
  25268. height: math.unit(5 + 7/12, "feet"),
  25269. weight: math.unit(120, "lb"),
  25270. name: "Back",
  25271. image: {
  25272. source: "./media/characters/logan-grey/back.svg",
  25273. extra: 1880/1794,
  25274. bottom: 24/1904
  25275. }
  25276. },
  25277. frontSfw: {
  25278. height: math.unit(5 + 7/12, "feet"),
  25279. weight: math.unit(120, "lb"),
  25280. name: "Front (SFW)",
  25281. image: {
  25282. source: "./media/characters/logan-grey/front-sfw.svg",
  25283. extra: 1836/1738,
  25284. bottom: 108/1944
  25285. }
  25286. },
  25287. backSfw: {
  25288. height: math.unit(5 + 7/12, "feet"),
  25289. weight: math.unit(120, "lb"),
  25290. name: "Back (SFW)",
  25291. image: {
  25292. source: "./media/characters/logan-grey/back-sfw.svg",
  25293. extra: 1880/1794,
  25294. bottom: 24/1904
  25295. }
  25296. },
  25297. hands: {
  25298. height: math.unit(0.84, "feet"),
  25299. name: "Hands",
  25300. image: {
  25301. source: "./media/characters/logan-grey/hands.svg"
  25302. }
  25303. },
  25304. paws: {
  25305. height: math.unit(0.72, "feet"),
  25306. name: "Paws",
  25307. image: {
  25308. source: "./media/characters/logan-grey/paws.svg"
  25309. }
  25310. },
  25311. cock: {
  25312. height: math.unit(1.45, "feet"),
  25313. name: "Cock",
  25314. image: {
  25315. source: "./media/characters/logan-grey/cock.svg"
  25316. }
  25317. },
  25318. cockAlt: {
  25319. height: math.unit(1.437, "feet"),
  25320. name: "Cock (alt)",
  25321. image: {
  25322. source: "./media/characters/logan-grey/cock-alt.svg"
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Normal",
  25329. height: math.unit(5 + 8 / 12, "feet")
  25330. },
  25331. {
  25332. name: "The 500 Foot Femboy",
  25333. height: math.unit(500, "feet"),
  25334. default: true
  25335. },
  25336. {
  25337. name: "Megmacro",
  25338. height: math.unit(20, "miles")
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(8 + 2 / 12, "feet"),
  25347. weight: math.unit(275, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/draganta/front.svg",
  25351. extra: 1177 / 1135,
  25352. bottom: 33.46 / 1212.1
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(8 + 6 / 12, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Macro",
  25364. height: math.unit(150, "feet")
  25365. },
  25366. {
  25367. name: "Megamacro",
  25368. height: math.unit(1000, "miles")
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(1.72, "m"),
  25377. weight: math.unit(80, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/voski/front.svg",
  25381. extra: 2076.22 / 2022.4,
  25382. bottom: 102.7 / 2177.3866
  25383. }
  25384. },
  25385. frontFlaccid: {
  25386. height: math.unit(1.72, "m"),
  25387. weight: math.unit(80, "lb"),
  25388. name: "Front (Flaccid)",
  25389. image: {
  25390. source: "./media/characters/voski/front-flaccid.svg",
  25391. extra: 2076.22 / 2022.4,
  25392. bottom: 102.7 / 2177.3866
  25393. }
  25394. },
  25395. frontErect: {
  25396. height: math.unit(1.72, "m"),
  25397. weight: math.unit(80, "lb"),
  25398. name: "Front (Erect)",
  25399. image: {
  25400. source: "./media/characters/voski/front-erect.svg",
  25401. extra: 2076.22 / 2022.4,
  25402. bottom: 102.7 / 2177.3866
  25403. }
  25404. },
  25405. back: {
  25406. height: math.unit(1.72, "m"),
  25407. weight: math.unit(80, "lb"),
  25408. name: "Back",
  25409. image: {
  25410. source: "./media/characters/voski/back.svg",
  25411. extra: 2104 / 2051,
  25412. bottom: 10.45 / 2113.63
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(1.72, "m")
  25420. },
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(55, "m"),
  25424. default: true
  25425. },
  25426. {
  25427. name: "Macro+",
  25428. height: math.unit(300, "m")
  25429. },
  25430. {
  25431. name: "Macro++",
  25432. height: math.unit(700, "m")
  25433. },
  25434. {
  25435. name: "Macro+++",
  25436. height: math.unit(4500, "m")
  25437. },
  25438. {
  25439. name: "Macro++++",
  25440. height: math.unit(45, "km")
  25441. },
  25442. {
  25443. name: "Macro+++++",
  25444. height: math.unit(1220, "km")
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(2.3, "m"),
  25453. weight: math.unit(304, "kg"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/icowom-lee/front.svg",
  25457. extra: 985 / 955,
  25458. bottom: 25.4 / 1012
  25459. }
  25460. },
  25461. fronttentacles: {
  25462. height: math.unit(2.3, "m"),
  25463. weight: math.unit(304, "kg"),
  25464. name: "Front-tentacles",
  25465. image: {
  25466. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25467. extra: 985 / 955,
  25468. bottom: 25.4 / 1012
  25469. }
  25470. },
  25471. back: {
  25472. height: math.unit(2.3, "m"),
  25473. weight: math.unit(304, "kg"),
  25474. name: "Back",
  25475. image: {
  25476. source: "./media/characters/icowom-lee/back.svg",
  25477. extra: 975 / 954,
  25478. bottom: 9.5 / 985
  25479. }
  25480. },
  25481. backtentacles: {
  25482. height: math.unit(2.3, "m"),
  25483. weight: math.unit(304, "kg"),
  25484. name: "Back-tentacles",
  25485. image: {
  25486. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25487. extra: 975 / 954,
  25488. bottom: 9.5 / 985
  25489. }
  25490. },
  25491. frontDressed: {
  25492. height: math.unit(2.3, "m"),
  25493. weight: math.unit(304, "kg"),
  25494. name: "Front (Dressed)",
  25495. image: {
  25496. source: "./media/characters/icowom-lee/front-dressed.svg",
  25497. extra: 3076 / 2933,
  25498. bottom: 51.4 / 3125.1889
  25499. }
  25500. },
  25501. rump: {
  25502. height: math.unit(0.776, "meters"),
  25503. name: "Rump",
  25504. image: {
  25505. source: "./media/characters/icowom-lee/rump.svg"
  25506. }
  25507. },
  25508. genitals: {
  25509. height: math.unit(0.78, "meters"),
  25510. name: "Genitals",
  25511. image: {
  25512. source: "./media/characters/icowom-lee/genitals.svg"
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(2.3, "meters"),
  25520. default: true
  25521. },
  25522. {
  25523. name: "Macro",
  25524. height: math.unit(94, "meters"),
  25525. default: true
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(22, "meters"),
  25534. weight: math.unit(21000, "kg"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/shock-diamond/front.svg",
  25538. extra: 2204 / 2053,
  25539. bottom: 65 / 2239.47
  25540. }
  25541. },
  25542. frontNude: {
  25543. height: math.unit(22, "meters"),
  25544. weight: math.unit(21000, "kg"),
  25545. name: "Front (Nude)",
  25546. image: {
  25547. source: "./media/characters/shock-diamond/front-nude.svg",
  25548. extra: 2514 / 2285,
  25549. bottom: 13 / 2527.56
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(3, "meters")
  25557. },
  25558. {
  25559. name: "Macro",
  25560. height: math.unit(22, "meters"),
  25561. default: true
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(5 + 4/12, "feet"),
  25570. weight: math.unit(125, "lb"),
  25571. name: "Front",
  25572. image: {
  25573. source: "./media/characters/rory/front.svg",
  25574. extra: 1790/1681,
  25575. bottom: 66/1856
  25576. },
  25577. form: "normal",
  25578. default: true
  25579. },
  25580. back: {
  25581. height: math.unit(5 + 4/12, "feet"),
  25582. weight: math.unit(125, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/rory/back.svg",
  25586. extra: 1805/1690,
  25587. bottom: 56/1861
  25588. },
  25589. form: "normal"
  25590. },
  25591. frontDressed: {
  25592. height: math.unit(5 + 4/12, "feet"),
  25593. weight: math.unit(125, "lb"),
  25594. name: "Front (Dressed)",
  25595. image: {
  25596. source: "./media/characters/rory/front-dressed.svg",
  25597. extra: 1790/1681,
  25598. bottom: 66/1856
  25599. },
  25600. form: "normal"
  25601. },
  25602. backDressed: {
  25603. height: math.unit(5 + 4/12, "feet"),
  25604. weight: math.unit(125, "lb"),
  25605. name: "Back (Dressed)",
  25606. image: {
  25607. source: "./media/characters/rory/back-dressed.svg",
  25608. extra: 1805/1690,
  25609. bottom: 56/1861
  25610. },
  25611. form: "normal"
  25612. },
  25613. frontNsfw: {
  25614. height: math.unit(5 + 4/12, "feet"),
  25615. weight: math.unit(125, "lb"),
  25616. name: "Front (NSFW)",
  25617. image: {
  25618. source: "./media/characters/rory/front-nsfw.svg",
  25619. extra: 1790/1681,
  25620. bottom: 66/1856
  25621. },
  25622. form: "normal"
  25623. },
  25624. backNsfw: {
  25625. height: math.unit(5 + 4/12, "feet"),
  25626. weight: math.unit(125, "lb"),
  25627. name: "Back (NSFW)",
  25628. image: {
  25629. source: "./media/characters/rory/back-nsfw.svg",
  25630. extra: 1805/1690,
  25631. bottom: 56/1861
  25632. },
  25633. form: "normal"
  25634. },
  25635. dick: {
  25636. height: math.unit(0.8, "feet"),
  25637. name: "Dick",
  25638. image: {
  25639. source: "./media/characters/rory/dick.svg"
  25640. },
  25641. form: "normal"
  25642. },
  25643. thicc_front: {
  25644. height: math.unit(5 + 4/12, "feet"),
  25645. weight: math.unit(195, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/rory/thicc-front.svg",
  25649. extra: 1220/1100,
  25650. bottom: 103/1323
  25651. },
  25652. form: "thicc",
  25653. default: true
  25654. },
  25655. thicc_back: {
  25656. height: math.unit(5 + 4/12, "feet"),
  25657. weight: math.unit(195, "lb"),
  25658. name: "Back",
  25659. image: {
  25660. source: "./media/characters/rory/thicc-back.svg",
  25661. extra: 1166/1086,
  25662. bottom: 35/1201
  25663. },
  25664. form: "thicc"
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Micro",
  25670. height: math.unit(3, "inches"),
  25671. allForms: true
  25672. },
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(5 + 4/12, "feet"),
  25676. allForms: true,
  25677. default: true
  25678. },
  25679. {
  25680. name: "Macro",
  25681. height: math.unit(90, "feet"),
  25682. allForms: true
  25683. },
  25684. {
  25685. name: "Supercharged",
  25686. height: math.unit(270, "feet"),
  25687. allForms: true
  25688. },
  25689. ],
  25690. {
  25691. "normal": {
  25692. name: "Normal",
  25693. default: true
  25694. },
  25695. "thicc": {
  25696. name: "Thicc",
  25697. },
  25698. }
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(5 + 9 / 12, "feet"),
  25705. weight: math.unit(190, "lb"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/sprisk/front.svg",
  25709. extra: 1225 / 1180,
  25710. bottom: 42.7 / 1266.4
  25711. }
  25712. },
  25713. frontNsfw: {
  25714. height: math.unit(5 + 9 / 12, "feet"),
  25715. weight: math.unit(190, "lb"),
  25716. name: "Front (NSFW)",
  25717. image: {
  25718. source: "./media/characters/sprisk/front-nsfw.svg",
  25719. extra: 1225 / 1180,
  25720. bottom: 42.7 / 1266.4
  25721. }
  25722. },
  25723. back: {
  25724. height: math.unit(5 + 9 / 12, "feet"),
  25725. weight: math.unit(190, "lb"),
  25726. name: "Back",
  25727. image: {
  25728. source: "./media/characters/sprisk/back.svg",
  25729. extra: 1247 / 1200,
  25730. bottom: 5.6 / 1253.04
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Tiny",
  25737. height: math.unit(2, "inches")
  25738. },
  25739. {
  25740. name: "Normal",
  25741. height: math.unit(5 + 9 / 12, "feet"),
  25742. default: true
  25743. },
  25744. {
  25745. name: "Mini Macro",
  25746. height: math.unit(18, "feet")
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(100, "feet")
  25751. },
  25752. {
  25753. name: "MACRO",
  25754. height: math.unit(50, "miles")
  25755. },
  25756. {
  25757. name: "M A C R O",
  25758. height: math.unit(300, "miles")
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25764. {
  25765. side: {
  25766. height: math.unit(15.6, "meters"),
  25767. weight: math.unit(700000, "kg"),
  25768. name: "Side",
  25769. image: {
  25770. source: "./media/characters/bunsen/side.svg",
  25771. extra: 1644 / 358
  25772. }
  25773. },
  25774. foot: {
  25775. height: math.unit(1.611 * 1644 / 358, "meter"),
  25776. name: "Foot",
  25777. image: {
  25778. source: "./media/characters/bunsen/foot.svg"
  25779. }
  25780. },
  25781. },
  25782. [
  25783. {
  25784. name: "Small",
  25785. height: math.unit(10, "feet")
  25786. },
  25787. {
  25788. name: "Normal",
  25789. height: math.unit(15.6, "meters"),
  25790. default: true
  25791. },
  25792. ]
  25793. ))
  25794. characterMakers.push(() => makeCharacter(
  25795. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25796. {
  25797. front: {
  25798. height: math.unit(4 + 11 / 12, "feet"),
  25799. weight: math.unit(140, "lb"),
  25800. name: "Front",
  25801. image: {
  25802. source: "./media/characters/sesh/front.svg",
  25803. extra: 3420 / 3231,
  25804. bottom: 72 / 3949.5
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Normal",
  25811. height: math.unit(4 + 11 / 12, "feet")
  25812. },
  25813. {
  25814. name: "Grown",
  25815. height: math.unit(15, "feet"),
  25816. default: true
  25817. },
  25818. {
  25819. name: "Macro",
  25820. height: math.unit(1500, "feet")
  25821. },
  25822. {
  25823. name: "Megamacro",
  25824. height: math.unit(30, "miles")
  25825. },
  25826. {
  25827. name: "Continental",
  25828. height: math.unit(3000, "miles")
  25829. },
  25830. {
  25831. name: "Gravity Mass",
  25832. height: math.unit(300000, "miles")
  25833. },
  25834. {
  25835. name: "Planet Buster",
  25836. height: math.unit(30000000, "miles")
  25837. },
  25838. {
  25839. name: "Big",
  25840. height: math.unit(3000000000, "miles")
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(9, "feet"),
  25849. weight: math.unit(350, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/pepper/front.svg",
  25853. extra: 1448 / 1312,
  25854. bottom: 9.4 / 1457.88
  25855. }
  25856. },
  25857. back: {
  25858. height: math.unit(9, "feet"),
  25859. weight: math.unit(350, "lb"),
  25860. name: "Back",
  25861. image: {
  25862. source: "./media/characters/pepper/back.svg",
  25863. extra: 1423 / 1300,
  25864. bottom: 4.6 / 1429
  25865. }
  25866. },
  25867. maw: {
  25868. height: math.unit(0.932, "feet"),
  25869. name: "Maw",
  25870. image: {
  25871. source: "./media/characters/pepper/maw.svg"
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(9, "feet"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(6, "feet"),
  25888. weight: math.unit(150, "lb"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/maelstrom/front.svg",
  25892. extra: 2100 / 1883,
  25893. bottom: 94 / 2196.7
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Less Kaiju",
  25900. height: math.unit(200, "feet")
  25901. },
  25902. {
  25903. name: "Kaiju",
  25904. height: math.unit(400, "feet"),
  25905. default: true
  25906. },
  25907. {
  25908. name: "Kaiju-er",
  25909. height: math.unit(600, "feet")
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(6 + 5 / 12, "feet"),
  25918. weight: math.unit(180, "lb"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/lexir/front.svg",
  25922. extra: 180 / 172,
  25923. bottom: 12 / 192
  25924. }
  25925. },
  25926. back: {
  25927. height: math.unit(6 + 5 / 12, "feet"),
  25928. weight: math.unit(180, "lb"),
  25929. name: "Back",
  25930. image: {
  25931. source: "./media/characters/lexir/back.svg",
  25932. extra: 1273/1201,
  25933. bottom: 39/1312
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Very Smal",
  25940. height: math.unit(1, "nm")
  25941. },
  25942. {
  25943. name: "Normal",
  25944. height: math.unit(6 + 5 / 12, "feet"),
  25945. default: true
  25946. },
  25947. {
  25948. name: "Macro",
  25949. height: math.unit(1, "mile")
  25950. },
  25951. {
  25952. name: "Megamacro",
  25953. height: math.unit(50, "miles")
  25954. },
  25955. ]
  25956. ))
  25957. characterMakers.push(() => makeCharacter(
  25958. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25959. {
  25960. front: {
  25961. height: math.unit(1.5, "meters"),
  25962. weight: math.unit(100, "lb"),
  25963. name: "Front",
  25964. image: {
  25965. source: "./media/characters/maksio/front.svg",
  25966. extra: 1549 / 1531,
  25967. bottom: 123.7 / 1674.5429
  25968. }
  25969. },
  25970. back: {
  25971. height: math.unit(1.5, "meters"),
  25972. weight: math.unit(100, "lb"),
  25973. name: "Back",
  25974. image: {
  25975. source: "./media/characters/maksio/back.svg",
  25976. extra: 1541 / 1509,
  25977. bottom: 97 / 1639
  25978. }
  25979. },
  25980. hand: {
  25981. height: math.unit(0.621, "feet"),
  25982. name: "Hand",
  25983. image: {
  25984. source: "./media/characters/maksio/hand.svg"
  25985. }
  25986. },
  25987. foot: {
  25988. height: math.unit(1.611, "feet"),
  25989. name: "Foot",
  25990. image: {
  25991. source: "./media/characters/maksio/foot.svg"
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Shrunken",
  25998. height: math.unit(10, "cm")
  25999. },
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(150, "cm"),
  26003. default: true
  26004. },
  26005. ]
  26006. ))
  26007. characterMakers.push(() => makeCharacter(
  26008. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26009. {
  26010. front: {
  26011. height: math.unit(100, "feet"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/erza-bear/front.svg",
  26015. extra: 2449 / 2390,
  26016. bottom: 46 / 2494
  26017. }
  26018. },
  26019. back: {
  26020. height: math.unit(100, "feet"),
  26021. name: "Back",
  26022. image: {
  26023. source: "./media/characters/erza-bear/back.svg",
  26024. extra: 2489 / 2430,
  26025. bottom: 85.4 / 2480
  26026. }
  26027. },
  26028. tail: {
  26029. height: math.unit(42, "feet"),
  26030. name: "Tail",
  26031. image: {
  26032. source: "./media/characters/erza-bear/tail.svg"
  26033. }
  26034. },
  26035. tongue: {
  26036. height: math.unit(8, "feet"),
  26037. name: "Tongue",
  26038. image: {
  26039. source: "./media/characters/erza-bear/tongue.svg"
  26040. }
  26041. },
  26042. dick: {
  26043. height: math.unit(10.5, "feet"),
  26044. name: "Dick",
  26045. image: {
  26046. source: "./media/characters/erza-bear/dick.svg"
  26047. }
  26048. },
  26049. dickVertical: {
  26050. height: math.unit(16.9, "feet"),
  26051. name: "Dick (Vertical)",
  26052. image: {
  26053. source: "./media/characters/erza-bear/dick-vertical.svg"
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Macro",
  26060. height: math.unit(100, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26067. {
  26068. front: {
  26069. height: math.unit(172, "cm"),
  26070. weight: math.unit(73, "kg"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/violet-flor/front.svg",
  26074. extra: 1474/1379,
  26075. bottom: 113/1587
  26076. }
  26077. },
  26078. back: {
  26079. height: math.unit(180, "cm"),
  26080. weight: math.unit(73, "kg"),
  26081. name: "Back",
  26082. image: {
  26083. source: "./media/characters/violet-flor/back.svg",
  26084. extra: 1660/1567,
  26085. bottom: 49/1709
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(172, "cm"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(6, "feet"),
  26102. weight: math.unit(220, "lb"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/lynn-rhea/front.svg",
  26106. extra: 310 / 273
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(6, "feet"),
  26111. weight: math.unit(220, "lb"),
  26112. name: "Back",
  26113. image: {
  26114. source: "./media/characters/lynn-rhea/back.svg",
  26115. extra: 310 / 273
  26116. }
  26117. },
  26118. dicks: {
  26119. height: math.unit(0.9, "feet"),
  26120. name: "Dicks",
  26121. image: {
  26122. source: "./media/characters/lynn-rhea/dicks.svg"
  26123. }
  26124. },
  26125. slit: {
  26126. height: math.unit(0.4, "feet"),
  26127. name: "Slit",
  26128. image: {
  26129. source: "./media/characters/lynn-rhea/slit.svg"
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Micro",
  26136. height: math.unit(1, "inch")
  26137. },
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(60, "feet"),
  26141. default: true
  26142. },
  26143. {
  26144. name: "Megamacro",
  26145. height: math.unit(2, "miles")
  26146. },
  26147. {
  26148. name: "Gigamacro",
  26149. height: math.unit(3, "earths")
  26150. },
  26151. {
  26152. name: "Galactic",
  26153. height: math.unit(0.8, "galaxies")
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26159. {
  26160. front: {
  26161. height: math.unit(1600, "feet"),
  26162. weight: math.unit(85758785169, "kg"),
  26163. name: "Front",
  26164. image: {
  26165. source: "./media/characters/valathos/front.svg",
  26166. extra: 1451 / 1339
  26167. }
  26168. },
  26169. },
  26170. [
  26171. {
  26172. name: "Macro",
  26173. height: math.unit(1600, "feet"),
  26174. default: true
  26175. },
  26176. ]
  26177. ))
  26178. characterMakers.push(() => makeCharacter(
  26179. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26180. {
  26181. front: {
  26182. height: math.unit(7 + 5 / 12, "feet"),
  26183. weight: math.unit(300, "lb"),
  26184. name: "Front",
  26185. image: {
  26186. source: "./media/characters/azula/front.svg",
  26187. extra: 3208 / 2880,
  26188. bottom: 80.2 / 3277
  26189. }
  26190. },
  26191. back: {
  26192. height: math.unit(7 + 5 / 12, "feet"),
  26193. weight: math.unit(300, "lb"),
  26194. name: "Back",
  26195. image: {
  26196. source: "./media/characters/azula/back.svg",
  26197. extra: 3169 / 2822,
  26198. bottom: 150.6 / 3321
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Normal",
  26205. height: math.unit(7 + 5 / 12, "feet"),
  26206. default: true
  26207. },
  26208. {
  26209. name: "Big",
  26210. height: math.unit(20, "feet")
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(5 + 1 / 12, "feet"),
  26219. weight: math.unit(110, "lb"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/rupert/front.svg",
  26223. extra: 1549 / 1495,
  26224. bottom: 54.2 / 1604.4
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(5 + 1 / 12, "feet"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26238. {
  26239. front: {
  26240. height: math.unit(8 + 4 / 12, "feet"),
  26241. weight: math.unit(350, "lb"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/sheera-castellar/front.svg",
  26245. extra: 1957 / 1894,
  26246. bottom: 26.97 / 1975.017
  26247. }
  26248. },
  26249. side: {
  26250. height: math.unit(8 + 4 / 12, "feet"),
  26251. weight: math.unit(350, "lb"),
  26252. name: "Side",
  26253. image: {
  26254. source: "./media/characters/sheera-castellar/side.svg",
  26255. extra: 1957 / 1894
  26256. }
  26257. },
  26258. back: {
  26259. height: math.unit(8 + 4 / 12, "feet"),
  26260. weight: math.unit(350, "lb"),
  26261. name: "Back",
  26262. image: {
  26263. source: "./media/characters/sheera-castellar/back.svg",
  26264. extra: 1957 / 1894
  26265. }
  26266. },
  26267. angled: {
  26268. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26269. weight: math.unit(350, "lb"),
  26270. name: "Angled",
  26271. image: {
  26272. source: "./media/characters/sheera-castellar/angled.svg",
  26273. extra: 1807 / 1707,
  26274. bottom: 68 / 1875
  26275. }
  26276. },
  26277. genitals: {
  26278. height: math.unit(2.2, "feet"),
  26279. name: "Genitals",
  26280. image: {
  26281. source: "./media/characters/sheera-castellar/genitals.svg"
  26282. }
  26283. },
  26284. taur: {
  26285. height: math.unit(10 + 6/12, "feet"),
  26286. name: "Taur",
  26287. image: {
  26288. source: "./media/characters/sheera-castellar/taur.svg",
  26289. extra: 2017/1909,
  26290. bottom: 185/2202
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(8 + 4 / 12, "feet")
  26298. },
  26299. {
  26300. name: "Macro",
  26301. height: math.unit(150, "feet"),
  26302. default: true
  26303. },
  26304. {
  26305. name: "Macro+",
  26306. height: math.unit(800, "feet")
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26312. {
  26313. front: {
  26314. height: math.unit(6, "feet"),
  26315. weight: math.unit(150, "lb"),
  26316. name: "Front",
  26317. image: {
  26318. source: "./media/characters/jaipur/front.svg",
  26319. extra: 3860 / 3731,
  26320. bottom: 287 / 4140
  26321. }
  26322. },
  26323. back: {
  26324. height: math.unit(6, "feet"),
  26325. weight: math.unit(150, "lb"),
  26326. name: "Back",
  26327. image: {
  26328. source: "./media/characters/jaipur/back.svg",
  26329. extra: 1637/1561,
  26330. bottom: 154/1791
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(1.85, "meters"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(150, "meters")
  26343. },
  26344. {
  26345. name: "Macro+",
  26346. height: math.unit(0.5, "miles")
  26347. },
  26348. {
  26349. name: "Macro++",
  26350. height: math.unit(2.5, "miles")
  26351. },
  26352. {
  26353. name: "Macro+++",
  26354. height: math.unit(12, "miles")
  26355. },
  26356. {
  26357. name: "Macro++++",
  26358. height: math.unit(120, "miles")
  26359. },
  26360. {
  26361. name: "Macro+++++",
  26362. height: math.unit(1200, "miles")
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(6, "feet"),
  26371. weight: math.unit(150, "lb"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/sheila-wolf/front.svg",
  26375. extra: 1931 / 1808,
  26376. bottom: 29.5 / 1960
  26377. }
  26378. },
  26379. dick: {
  26380. height: math.unit(1.464, "feet"),
  26381. name: "Dick",
  26382. image: {
  26383. source: "./media/characters/sheila-wolf/dick.svg"
  26384. }
  26385. },
  26386. muzzle: {
  26387. height: math.unit(0.513, "feet"),
  26388. name: "Muzzle",
  26389. image: {
  26390. source: "./media/characters/sheila-wolf/muzzle.svg"
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(70, "feet"),
  26398. default: true
  26399. },
  26400. ]
  26401. ))
  26402. characterMakers.push(() => makeCharacter(
  26403. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26404. {
  26405. front: {
  26406. height: math.unit(32, "meters"),
  26407. weight: math.unit(300000, "kg"),
  26408. name: "Front",
  26409. image: {
  26410. source: "./media/characters/almor/front.svg",
  26411. extra: 1408 / 1322,
  26412. bottom: 94.6 / 1506.5
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Macro",
  26419. height: math.unit(32, "meters"),
  26420. default: true
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26426. {
  26427. front: {
  26428. height: math.unit(7, "feet"),
  26429. weight: math.unit(200, "lb"),
  26430. name: "Front",
  26431. image: {
  26432. source: "./media/characters/silver/front.svg",
  26433. extra: 472.1 / 450.5,
  26434. bottom: 26.5 / 499.424
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(7, "feet"),
  26442. default: true
  26443. },
  26444. {
  26445. name: "Macro",
  26446. height: math.unit(800, "feet")
  26447. },
  26448. {
  26449. name: "Megamacro",
  26450. height: math.unit(250, "miles")
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(6, "feet"),
  26459. weight: math.unit(150, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/pliskin/front.svg",
  26463. extra: 1469 / 1359,
  26464. bottom: 70 / 1540
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Micro",
  26471. height: math.unit(3, "inches")
  26472. },
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(5 + 11 / 12, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(120, "feet")
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26486. {
  26487. front: {
  26488. height: math.unit(6, "feet"),
  26489. weight: math.unit(150, "lb"),
  26490. name: "Front",
  26491. image: {
  26492. source: "./media/characters/sammy/front.svg",
  26493. extra: 1193 / 1089,
  26494. bottom: 30.5 / 1226
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Macro",
  26501. height: math.unit(1700, "feet"),
  26502. default: true
  26503. },
  26504. {
  26505. name: "Examacro",
  26506. height: math.unit(2.5e9, "lightyears")
  26507. },
  26508. ]
  26509. ))
  26510. characterMakers.push(() => makeCharacter(
  26511. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26512. {
  26513. front: {
  26514. height: math.unit(21, "meters"),
  26515. weight: math.unit(12, "tonnes"),
  26516. name: "Front",
  26517. image: {
  26518. source: "./media/characters/kuru/front.svg",
  26519. extra: 4301 / 3785,
  26520. bottom: 371.3 / 4691
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Macro",
  26527. height: math.unit(21, "meters"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(23, "meters"),
  26537. weight: math.unit(12.2, "tonnes"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/rakka/front.svg",
  26541. extra: 4670 / 4169,
  26542. bottom: 301 / 4968.7
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Macro",
  26549. height: math.unit(23, "meters"),
  26550. default: true
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26556. {
  26557. front: {
  26558. height: math.unit(6, "feet"),
  26559. weight: math.unit(150, "lb"),
  26560. name: "Front",
  26561. image: {
  26562. source: "./media/characters/rhys-feline/front.svg",
  26563. extra: 2488 / 2308,
  26564. bottom: 35.67 / 2519.19
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Really Small",
  26571. height: math.unit(1, "nm")
  26572. },
  26573. {
  26574. name: "Micro",
  26575. height: math.unit(4, "inches")
  26576. },
  26577. {
  26578. name: "Normal",
  26579. height: math.unit(4 + 10 / 12, "feet"),
  26580. default: true
  26581. },
  26582. {
  26583. name: "Macro",
  26584. height: math.unit(100, "feet")
  26585. },
  26586. {
  26587. name: "Megamacto",
  26588. height: math.unit(50, "miles")
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26594. {
  26595. side: {
  26596. height: math.unit(30, "feet"),
  26597. weight: math.unit(35000, "kg"),
  26598. name: "Side",
  26599. image: {
  26600. source: "./media/characters/alydar/side.svg",
  26601. extra: 234 / 222,
  26602. bottom: 6.5 / 241
  26603. }
  26604. },
  26605. front: {
  26606. height: math.unit(30, "feet"),
  26607. weight: math.unit(35000, "kg"),
  26608. name: "Front",
  26609. image: {
  26610. source: "./media/characters/alydar/front.svg",
  26611. extra: 223.37 / 210.2,
  26612. bottom: 22.3 / 246.76
  26613. }
  26614. },
  26615. top: {
  26616. height: math.unit(64.54, "feet"),
  26617. weight: math.unit(35000, "kg"),
  26618. name: "Top",
  26619. image: {
  26620. source: "./media/characters/alydar/top.svg"
  26621. }
  26622. },
  26623. anthro: {
  26624. height: math.unit(30, "feet"),
  26625. weight: math.unit(9000, "kg"),
  26626. name: "Anthro",
  26627. image: {
  26628. source: "./media/characters/alydar/anthro.svg",
  26629. extra: 432 / 421,
  26630. bottom: 7.18 / 440
  26631. }
  26632. },
  26633. maw: {
  26634. height: math.unit(11.693, "feet"),
  26635. name: "Maw",
  26636. image: {
  26637. source: "./media/characters/alydar/maw.svg"
  26638. }
  26639. },
  26640. head: {
  26641. height: math.unit(11.693, "feet"),
  26642. name: "Head",
  26643. image: {
  26644. source: "./media/characters/alydar/head.svg"
  26645. }
  26646. },
  26647. headAlt: {
  26648. height: math.unit(12.861, "feet"),
  26649. name: "Head (Alt)",
  26650. image: {
  26651. source: "./media/characters/alydar/head-alt.svg"
  26652. }
  26653. },
  26654. wing: {
  26655. height: math.unit(20.712, "feet"),
  26656. name: "Wing",
  26657. image: {
  26658. source: "./media/characters/alydar/wing.svg"
  26659. }
  26660. },
  26661. wingFeather: {
  26662. height: math.unit(9.662, "feet"),
  26663. name: "Wing Feather",
  26664. image: {
  26665. source: "./media/characters/alydar/wing-feather.svg"
  26666. }
  26667. },
  26668. countourFeather: {
  26669. height: math.unit(4.154, "feet"),
  26670. name: "Contour Feather",
  26671. image: {
  26672. source: "./media/characters/alydar/contour-feather.svg"
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Diplomatic",
  26679. height: math.unit(13, "feet"),
  26680. default: true
  26681. },
  26682. {
  26683. name: "Small",
  26684. height: math.unit(30, "feet")
  26685. },
  26686. {
  26687. name: "Normal",
  26688. height: math.unit(95, "feet"),
  26689. default: true
  26690. },
  26691. {
  26692. name: "Large",
  26693. height: math.unit(285, "feet")
  26694. },
  26695. {
  26696. name: "Incomprehensible",
  26697. height: math.unit(450, "megameters")
  26698. },
  26699. ]
  26700. ))
  26701. characterMakers.push(() => makeCharacter(
  26702. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26703. {
  26704. side: {
  26705. height: math.unit(11, "feet"),
  26706. weight: math.unit(1750, "kg"),
  26707. name: "Side",
  26708. image: {
  26709. source: "./media/characters/selicia/side.svg",
  26710. extra: 440 / 396,
  26711. bottom: 24.8 / 465.979
  26712. }
  26713. },
  26714. maw: {
  26715. height: math.unit(4.665, "feet"),
  26716. name: "Maw",
  26717. image: {
  26718. source: "./media/characters/selicia/maw.svg"
  26719. }
  26720. },
  26721. },
  26722. [
  26723. {
  26724. name: "Normal",
  26725. height: math.unit(11, "feet"),
  26726. default: true
  26727. },
  26728. ]
  26729. ))
  26730. characterMakers.push(() => makeCharacter(
  26731. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26732. {
  26733. side: {
  26734. height: math.unit(2 + 6 / 12, "feet"),
  26735. weight: math.unit(30, "lb"),
  26736. name: "Side",
  26737. image: {
  26738. source: "./media/characters/layla/side.svg",
  26739. extra: 244 / 188,
  26740. bottom: 18.2 / 262.1
  26741. }
  26742. },
  26743. back: {
  26744. height: math.unit(2 + 6 / 12, "feet"),
  26745. weight: math.unit(30, "lb"),
  26746. name: "Back",
  26747. image: {
  26748. source: "./media/characters/layla/back.svg",
  26749. extra: 308 / 241.5,
  26750. bottom: 8.9 / 316.8
  26751. }
  26752. },
  26753. cumming: {
  26754. height: math.unit(2 + 6 / 12, "feet"),
  26755. weight: math.unit(30, "lb"),
  26756. name: "Cumming",
  26757. image: {
  26758. source: "./media/characters/layla/cumming.svg",
  26759. extra: 342 / 279,
  26760. bottom: 595 / 938
  26761. }
  26762. },
  26763. dickFlaccid: {
  26764. height: math.unit(2.595, "feet"),
  26765. name: "Flaccid Genitals",
  26766. image: {
  26767. source: "./media/characters/layla/dick-flaccid.svg"
  26768. }
  26769. },
  26770. dickErect: {
  26771. height: math.unit(2.359, "feet"),
  26772. name: "Erect Genitals",
  26773. image: {
  26774. source: "./media/characters/layla/dick-erect.svg"
  26775. }
  26776. },
  26777. dragon: {
  26778. height: math.unit(40, "feet"),
  26779. name: "Dragon",
  26780. image: {
  26781. source: "./media/characters/layla/dragon.svg",
  26782. extra: 610/535,
  26783. bottom: 367/977
  26784. }
  26785. },
  26786. taur: {
  26787. height: math.unit(30, "feet"),
  26788. name: "Taur",
  26789. image: {
  26790. source: "./media/characters/layla/taur.svg",
  26791. extra: 1268/1199,
  26792. bottom: 112/1380
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Micro",
  26799. height: math.unit(1, "inch")
  26800. },
  26801. {
  26802. name: "Small",
  26803. height: math.unit(1, "foot")
  26804. },
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(2 + 6 / 12, "feet"),
  26808. default: true
  26809. },
  26810. {
  26811. name: "Macro",
  26812. height: math.unit(200, "feet")
  26813. },
  26814. {
  26815. name: "Megamacro",
  26816. height: math.unit(1000, "miles")
  26817. },
  26818. {
  26819. name: "Planetary",
  26820. height: math.unit(8000, "miles")
  26821. },
  26822. {
  26823. name: "True Layla",
  26824. height: math.unit(200000 * 7, "multiverses")
  26825. },
  26826. ]
  26827. ))
  26828. characterMakers.push(() => makeCharacter(
  26829. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26830. {
  26831. back: {
  26832. height: math.unit(10.5, "feet"),
  26833. weight: math.unit(800, "lb"),
  26834. name: "Back",
  26835. image: {
  26836. source: "./media/characters/knox/back.svg",
  26837. extra: 1486 / 1089,
  26838. bottom: 107 / 1601.4
  26839. }
  26840. },
  26841. side: {
  26842. height: math.unit(10.5, "feet"),
  26843. weight: math.unit(800, "lb"),
  26844. name: "Side",
  26845. image: {
  26846. source: "./media/characters/knox/side.svg",
  26847. extra: 244 / 218,
  26848. bottom: 14 / 260
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Compact",
  26855. height: math.unit(10.5, "feet"),
  26856. default: true
  26857. },
  26858. {
  26859. name: "Dynamax",
  26860. height: math.unit(210, "feet")
  26861. },
  26862. {
  26863. name: "Full Macro",
  26864. height: math.unit(850, "feet")
  26865. },
  26866. ]
  26867. ))
  26868. characterMakers.push(() => makeCharacter(
  26869. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26870. {
  26871. front: {
  26872. height: math.unit(28, "feet"),
  26873. weight: math.unit(10500, "lb"),
  26874. name: "Front",
  26875. image: {
  26876. source: "./media/characters/kayda/front.svg",
  26877. extra: 1536 / 1428,
  26878. bottom: 68.7 / 1603
  26879. }
  26880. },
  26881. back: {
  26882. height: math.unit(28, "feet"),
  26883. weight: math.unit(10500, "lb"),
  26884. name: "Back",
  26885. image: {
  26886. source: "./media/characters/kayda/back.svg",
  26887. extra: 1557 / 1464,
  26888. bottom: 39.5 / 1597.49
  26889. }
  26890. },
  26891. dick: {
  26892. height: math.unit(3.858, "feet"),
  26893. name: "Dick",
  26894. image: {
  26895. source: "./media/characters/kayda/dick.svg"
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Macro",
  26902. height: math.unit(28, "feet"),
  26903. default: true
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(10 + 11 / 12, "feet"),
  26912. weight: math.unit(1400, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/brian/front.svg",
  26916. extra: 737 / 692,
  26917. bottom: 55.4 / 785
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(10 + 11 / 12, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(5 + 8 / 12, "feet"),
  26934. weight: math.unit(140, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/khemri/front.svg",
  26938. extra: 4780 / 4059,
  26939. bottom: 80.1 / 4859.25
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Micro",
  26946. height: math.unit(6, "inches")
  26947. },
  26948. {
  26949. name: "Normal",
  26950. height: math.unit(5 + 8 / 12, "feet"),
  26951. default: true
  26952. },
  26953. ]
  26954. ))
  26955. characterMakers.push(() => makeCharacter(
  26956. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26957. {
  26958. front: {
  26959. height: math.unit(13, "feet"),
  26960. weight: math.unit(1700, "lb"),
  26961. name: "Front",
  26962. image: {
  26963. source: "./media/characters/felix-braveheart/front.svg",
  26964. extra: 1222 / 1157,
  26965. bottom: 53.2 / 1280
  26966. }
  26967. },
  26968. back: {
  26969. height: math.unit(13, "feet"),
  26970. weight: math.unit(1700, "lb"),
  26971. name: "Back",
  26972. image: {
  26973. source: "./media/characters/felix-braveheart/back.svg",
  26974. extra: 1277 / 1203,
  26975. bottom: 50.2 / 1327
  26976. }
  26977. },
  26978. feral: {
  26979. height: math.unit(6, "feet"),
  26980. weight: math.unit(400, "lb"),
  26981. name: "Feral",
  26982. image: {
  26983. source: "./media/characters/felix-braveheart/feral.svg",
  26984. extra: 682 / 625,
  26985. bottom: 6.9 / 688
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Normal",
  26992. height: math.unit(13, "feet"),
  26993. default: true
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26999. {
  27000. side: {
  27001. height: math.unit(5 + 11 / 12, "feet"),
  27002. weight: math.unit(1400, "lb"),
  27003. name: "Side",
  27004. image: {
  27005. source: "./media/characters/shadow-blade/side.svg",
  27006. extra: 1726 / 1267,
  27007. bottom: 58.4 / 1785
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Normal",
  27014. height: math.unit(5 + 11 / 12, "feet"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27021. {
  27022. front: {
  27023. height: math.unit(1 + 6 / 12, "feet"),
  27024. weight: math.unit(25, "lb"),
  27025. name: "Front",
  27026. image: {
  27027. source: "./media/characters/karla-halldor/front.svg",
  27028. extra: 1459 / 1383,
  27029. bottom: 12 / 1472
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(1 + 6 / 12, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(6 + 2 / 12, "feet"),
  27046. weight: math.unit(160, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/ariam/front.svg",
  27050. extra: 1073/976,
  27051. bottom: 52/1125
  27052. }
  27053. },
  27054. back: {
  27055. height: math.unit(6 + 2/12, "feet"),
  27056. weight: math.unit(160, "lb"),
  27057. name: "Back",
  27058. image: {
  27059. source: "./media/characters/ariam/back.svg",
  27060. extra: 1103/1023,
  27061. bottom: 9/1112
  27062. }
  27063. },
  27064. dressed: {
  27065. height: math.unit(6 + 2/12, "feet"),
  27066. weight: math.unit(160, "lb"),
  27067. name: "Dressed",
  27068. image: {
  27069. source: "./media/characters/ariam/dressed.svg",
  27070. extra: 1099/1009,
  27071. bottom: 25/1124
  27072. }
  27073. },
  27074. squatting: {
  27075. height: math.unit(4.1, "feet"),
  27076. weight: math.unit(160, "lb"),
  27077. name: "Squatting",
  27078. image: {
  27079. source: "./media/characters/ariam/squatting.svg",
  27080. extra: 2617 / 2112,
  27081. bottom: 61.2 / 2681,
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(6 + 2 / 12, "feet"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Normal+",
  27093. height: math.unit(4, "meters")
  27094. },
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(50, "meters")
  27098. },
  27099. {
  27100. name: "Macro+",
  27101. height: math.unit(100, "meters")
  27102. },
  27103. {
  27104. name: "Megamacro",
  27105. height: math.unit(20, "km")
  27106. },
  27107. {
  27108. name: "Caretaker",
  27109. height: math.unit(444, "megameters")
  27110. },
  27111. ]
  27112. ))
  27113. characterMakers.push(() => makeCharacter(
  27114. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27115. {
  27116. front: {
  27117. height: math.unit(1.67, "meters"),
  27118. weight: math.unit(140, "lb"),
  27119. name: "Front",
  27120. image: {
  27121. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27122. extra: 438 / 410,
  27123. bottom: 0.75 / 439
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Shrunken",
  27130. height: math.unit(7.6, "cm")
  27131. },
  27132. {
  27133. name: "Human Scale",
  27134. height: math.unit(1.67, "meters")
  27135. },
  27136. {
  27137. name: "Wolxi Scale",
  27138. height: math.unit(36.7, "meters"),
  27139. default: true
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27145. {
  27146. front: {
  27147. height: math.unit(1.73, "meters"),
  27148. weight: math.unit(240, "lb"),
  27149. name: "Front",
  27150. image: {
  27151. source: "./media/characters/izue-two-mothers/front.svg",
  27152. extra: 469 / 437,
  27153. bottom: 1.24 / 470.6
  27154. }
  27155. },
  27156. },
  27157. [
  27158. {
  27159. name: "Shrunken",
  27160. height: math.unit(7.86, "cm")
  27161. },
  27162. {
  27163. name: "Human Scale",
  27164. height: math.unit(1.73, "meters")
  27165. },
  27166. {
  27167. name: "Wolxi Scale",
  27168. height: math.unit(38, "meters"),
  27169. default: true
  27170. },
  27171. ]
  27172. ))
  27173. characterMakers.push(() => makeCharacter(
  27174. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27175. {
  27176. front: {
  27177. height: math.unit(1.55, "meters"),
  27178. weight: math.unit(120, "lb"),
  27179. name: "Front",
  27180. image: {
  27181. source: "./media/characters/teeku-love-shack/front.svg",
  27182. extra: 387 / 362,
  27183. bottom: 1.51 / 388
  27184. }
  27185. },
  27186. },
  27187. [
  27188. {
  27189. name: "Shrunken",
  27190. height: math.unit(7, "cm")
  27191. },
  27192. {
  27193. name: "Human Scale",
  27194. height: math.unit(1.55, "meters")
  27195. },
  27196. {
  27197. name: "Wolxi Scale",
  27198. height: math.unit(34.1, "meters"),
  27199. default: true
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(1.83, "meters"),
  27208. weight: math.unit(135, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/dejma-the-red/front.svg",
  27212. extra: 480 / 458,
  27213. bottom: 1.8 / 482
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Shrunken",
  27220. height: math.unit(8.3, "cm")
  27221. },
  27222. {
  27223. name: "Human Scale",
  27224. height: math.unit(1.83, "meters")
  27225. },
  27226. {
  27227. name: "Wolxi Scale",
  27228. height: math.unit(40, "meters"),
  27229. default: true
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(1.78, "meters"),
  27238. weight: math.unit(65, "kg"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/aki/front.svg",
  27242. extra: 452 / 415
  27243. }
  27244. },
  27245. frontNsfw: {
  27246. height: math.unit(1.78, "meters"),
  27247. weight: math.unit(65, "kg"),
  27248. name: "Front (NSFW)",
  27249. image: {
  27250. source: "./media/characters/aki/front-nsfw.svg",
  27251. extra: 452 / 415
  27252. }
  27253. },
  27254. back: {
  27255. height: math.unit(1.78, "meters"),
  27256. weight: math.unit(65, "kg"),
  27257. name: "Back",
  27258. image: {
  27259. source: "./media/characters/aki/back.svg",
  27260. extra: 452 / 415
  27261. }
  27262. },
  27263. rump: {
  27264. height: math.unit(2.05, "feet"),
  27265. name: "Rump",
  27266. image: {
  27267. source: "./media/characters/aki/rump.svg"
  27268. }
  27269. },
  27270. dick: {
  27271. height: math.unit(0.95, "feet"),
  27272. name: "Dick",
  27273. image: {
  27274. source: "./media/characters/aki/dick.svg"
  27275. }
  27276. },
  27277. },
  27278. [
  27279. {
  27280. name: "Micro",
  27281. height: math.unit(15, "cm")
  27282. },
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(178, "cm"),
  27286. default: true
  27287. },
  27288. {
  27289. name: "Macro",
  27290. height: math.unit(214, "m")
  27291. },
  27292. {
  27293. name: "Macro+",
  27294. height: math.unit(534, "m")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(5 + 5 / 12, "feet"),
  27303. weight: math.unit(120, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/ari/front.svg",
  27307. extra: 1550/1471,
  27308. bottom: 39/1589
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(5 + 5 / 12, "feet")
  27316. },
  27317. {
  27318. name: "Macro",
  27319. height: math.unit(100, "feet"),
  27320. default: true
  27321. },
  27322. {
  27323. name: "Megamacro",
  27324. height: math.unit(100, "miles")
  27325. },
  27326. {
  27327. name: "Gigamacro",
  27328. height: math.unit(80000, "miles")
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27334. {
  27335. side: {
  27336. height: math.unit(9, "feet"),
  27337. weight: math.unit(400, "kg"),
  27338. name: "Side",
  27339. image: {
  27340. source: "./media/characters/bolt/side.svg",
  27341. extra: 1126 / 896,
  27342. bottom: 60 / 1187.3,
  27343. }
  27344. },
  27345. },
  27346. [
  27347. {
  27348. name: "Micro",
  27349. height: math.unit(5, "inches")
  27350. },
  27351. {
  27352. name: "Normal",
  27353. height: math.unit(9, "feet"),
  27354. default: true
  27355. },
  27356. {
  27357. name: "Macro",
  27358. height: math.unit(700, "feet")
  27359. },
  27360. {
  27361. name: "Max Size",
  27362. height: math.unit(1.52e22, "yottameters")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27368. {
  27369. front: {
  27370. height: math.unit(4.3, "meters"),
  27371. weight: math.unit(3, "tons"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/draekon-sylviar/front.svg",
  27375. extra: 2072/1512,
  27376. bottom: 74/2146
  27377. }
  27378. },
  27379. back: {
  27380. height: math.unit(4.3, "meters"),
  27381. weight: math.unit(3, "tons"),
  27382. name: "Back",
  27383. image: {
  27384. source: "./media/characters/draekon-sylviar/back.svg",
  27385. extra: 1639/1483,
  27386. bottom: 41/1680
  27387. }
  27388. },
  27389. feral: {
  27390. height: math.unit(1.15, "meters"),
  27391. weight: math.unit(3, "tons"),
  27392. name: "Feral",
  27393. image: {
  27394. source: "./media/characters/draekon-sylviar/feral.svg",
  27395. extra: 1033/395,
  27396. bottom: 130/1163
  27397. }
  27398. },
  27399. maw: {
  27400. height: math.unit(1.3, "meters"),
  27401. name: "Maw",
  27402. image: {
  27403. source: "./media/characters/draekon-sylviar/maw.svg"
  27404. }
  27405. },
  27406. mawSeparated: {
  27407. height: math.unit(1.53, "meters"),
  27408. name: "Separated Maw",
  27409. image: {
  27410. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27411. }
  27412. },
  27413. tail: {
  27414. height: math.unit(1.15, "meters"),
  27415. name: "Tail",
  27416. image: {
  27417. source: "./media/characters/draekon-sylviar/tail.svg"
  27418. }
  27419. },
  27420. tailDick: {
  27421. height: math.unit(1.15, "meters"),
  27422. name: "Tail (Dick)",
  27423. image: {
  27424. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27425. }
  27426. },
  27427. tailDickSeparated: {
  27428. height: math.unit(1.19, "meters"),
  27429. name: "Tail (Separated Dick)",
  27430. image: {
  27431. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27432. }
  27433. },
  27434. slit: {
  27435. height: math.unit(1, "meters"),
  27436. name: "Slit",
  27437. image: {
  27438. source: "./media/characters/draekon-sylviar/slit.svg"
  27439. }
  27440. },
  27441. dick: {
  27442. height: math.unit(1.15, "meters"),
  27443. name: "Dick",
  27444. image: {
  27445. source: "./media/characters/draekon-sylviar/dick.svg"
  27446. }
  27447. },
  27448. dickSeparated: {
  27449. height: math.unit(1.1, "meters"),
  27450. name: "Separated Dick",
  27451. image: {
  27452. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27453. }
  27454. },
  27455. sheath: {
  27456. height: math.unit(1.15, "meters"),
  27457. name: "Sheath",
  27458. image: {
  27459. source: "./media/characters/draekon-sylviar/sheath.svg"
  27460. }
  27461. },
  27462. },
  27463. [
  27464. {
  27465. name: "Small",
  27466. height: math.unit(4.53 / 2, "meters"),
  27467. default: true
  27468. },
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(4.53, "meters"),
  27472. default: true
  27473. },
  27474. {
  27475. name: "Large",
  27476. height: math.unit(4.53 * 2, "meters"),
  27477. },
  27478. ]
  27479. ))
  27480. characterMakers.push(() => makeCharacter(
  27481. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27482. {
  27483. front: {
  27484. height: math.unit(6 + 2 / 12, "feet"),
  27485. weight: math.unit(180, "lb"),
  27486. name: "Front",
  27487. image: {
  27488. source: "./media/characters/brawler/front.svg",
  27489. extra: 3301 / 3027,
  27490. bottom: 138 / 3439
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(6 + 2 / 12, "feet"),
  27498. default: true
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(11, "feet"),
  27507. weight: math.unit(1000, "lb"),
  27508. name: "Front",
  27509. image: {
  27510. source: "./media/characters/alex/front.svg",
  27511. bottom: 44.5 / 620
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Micro",
  27518. height: math.unit(5, "inches")
  27519. },
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(11, "feet"),
  27523. default: true
  27524. },
  27525. {
  27526. name: "Macro",
  27527. height: math.unit(9.5e9, "feet")
  27528. },
  27529. {
  27530. name: "Max Size",
  27531. height: math.unit(1.4e283, "yottameters")
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27537. {
  27538. female: {
  27539. height: math.unit(29.9, "m"),
  27540. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27541. name: "Female",
  27542. image: {
  27543. source: "./media/characters/zenari/female.svg",
  27544. extra: 3281.6 / 3217,
  27545. bottom: 72.2 / 3353
  27546. }
  27547. },
  27548. male: {
  27549. height: math.unit(27.7, "m"),
  27550. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27551. name: "Male",
  27552. image: {
  27553. source: "./media/characters/zenari/male.svg",
  27554. extra: 3008 / 2991,
  27555. bottom: 54.6 / 3069
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Macro",
  27562. height: math.unit(29.7, "meters"),
  27563. default: true
  27564. },
  27565. ]
  27566. ))
  27567. characterMakers.push(() => makeCharacter(
  27568. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27569. {
  27570. female: {
  27571. height: math.unit(23.8, "m"),
  27572. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27573. name: "Female",
  27574. image: {
  27575. source: "./media/characters/mactarian/female.svg",
  27576. extra: 2662 / 2569,
  27577. bottom: 73 / 2736
  27578. }
  27579. },
  27580. male: {
  27581. height: math.unit(23.8, "m"),
  27582. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27583. name: "Male",
  27584. image: {
  27585. source: "./media/characters/mactarian/male.svg",
  27586. extra: 2673 / 2600,
  27587. bottom: 76 / 2750
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Macro",
  27594. height: math.unit(23.8, "meters"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27601. {
  27602. female: {
  27603. height: math.unit(19.3, "m"),
  27604. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27605. name: "Female",
  27606. image: {
  27607. source: "./media/characters/umok/female.svg",
  27608. extra: 2186 / 2078,
  27609. bottom: 87 / 2277
  27610. }
  27611. },
  27612. male: {
  27613. height: math.unit(19.5, "m"),
  27614. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27615. name: "Male",
  27616. image: {
  27617. source: "./media/characters/umok/male.svg",
  27618. extra: 2233 / 2140,
  27619. bottom: 24.4 / 2258
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Macro",
  27626. height: math.unit(19.3, "meters"),
  27627. default: true
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27633. {
  27634. female: {
  27635. height: math.unit(26.15, "m"),
  27636. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27637. name: "Female",
  27638. image: {
  27639. source: "./media/characters/joraxian/female.svg",
  27640. extra: 2912 / 2824,
  27641. bottom: 36 / 2956
  27642. }
  27643. },
  27644. male: {
  27645. height: math.unit(25.4, "m"),
  27646. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27647. name: "Male",
  27648. image: {
  27649. source: "./media/characters/joraxian/male.svg",
  27650. extra: 2877 / 2721,
  27651. bottom: 82 / 2967
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Macro",
  27658. height: math.unit(26.15, "meters"),
  27659. default: true
  27660. },
  27661. ]
  27662. ))
  27663. characterMakers.push(() => makeCharacter(
  27664. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27665. {
  27666. female: {
  27667. height: math.unit(21.6, "m"),
  27668. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27669. name: "Female",
  27670. image: {
  27671. source: "./media/characters/sthara/female.svg",
  27672. extra: 2516 / 2347,
  27673. bottom: 21.5 / 2537
  27674. }
  27675. },
  27676. male: {
  27677. height: math.unit(24, "m"),
  27678. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27679. name: "Male",
  27680. image: {
  27681. source: "./media/characters/sthara/male.svg",
  27682. extra: 2732 / 2607,
  27683. bottom: 23 / 2732
  27684. }
  27685. },
  27686. },
  27687. [
  27688. {
  27689. name: "Macro",
  27690. height: math.unit(21.6, "meters"),
  27691. default: true
  27692. },
  27693. ]
  27694. ))
  27695. characterMakers.push(() => makeCharacter(
  27696. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27697. {
  27698. front: {
  27699. height: math.unit(6 + 4 / 12, "feet"),
  27700. weight: math.unit(175, "lb"),
  27701. name: "Front",
  27702. image: {
  27703. source: "./media/characters/luka-bryzant/front.svg",
  27704. extra: 311 / 289,
  27705. bottom: 4 / 315
  27706. }
  27707. },
  27708. back: {
  27709. height: math.unit(6 + 4 / 12, "feet"),
  27710. weight: math.unit(175, "lb"),
  27711. name: "Back",
  27712. image: {
  27713. source: "./media/characters/luka-bryzant/back.svg",
  27714. extra: 311 / 289,
  27715. bottom: 3.8 / 313.7
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Micro",
  27722. height: math.unit(10, "inches")
  27723. },
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(6 + 4 / 12, "feet"),
  27727. default: true
  27728. },
  27729. {
  27730. name: "Large",
  27731. height: math.unit(12, "feet")
  27732. },
  27733. ]
  27734. ))
  27735. characterMakers.push(() => makeCharacter(
  27736. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27737. {
  27738. front: {
  27739. height: math.unit(5 + 7 / 12, "feet"),
  27740. weight: math.unit(185, "lb"),
  27741. name: "Front",
  27742. image: {
  27743. source: "./media/characters/aman-aquila/front.svg",
  27744. extra: 1013 / 976,
  27745. bottom: 45.6 / 1057
  27746. }
  27747. },
  27748. side: {
  27749. height: math.unit(5 + 7 / 12, "feet"),
  27750. weight: math.unit(185, "lb"),
  27751. name: "Side",
  27752. image: {
  27753. source: "./media/characters/aman-aquila/side.svg",
  27754. extra: 1054 / 1011,
  27755. bottom: 15 / 1070
  27756. }
  27757. },
  27758. back: {
  27759. height: math.unit(5 + 7 / 12, "feet"),
  27760. weight: math.unit(185, "lb"),
  27761. name: "Back",
  27762. image: {
  27763. source: "./media/characters/aman-aquila/back.svg",
  27764. extra: 1026 / 970,
  27765. bottom: 12 / 1039
  27766. }
  27767. },
  27768. head: {
  27769. height: math.unit(1.211, "feet"),
  27770. name: "Head",
  27771. image: {
  27772. source: "./media/characters/aman-aquila/head.svg",
  27773. }
  27774. },
  27775. },
  27776. [
  27777. {
  27778. name: "Minimicro",
  27779. height: math.unit(0.057, "inches")
  27780. },
  27781. {
  27782. name: "Micro",
  27783. height: math.unit(7, "inches")
  27784. },
  27785. {
  27786. name: "Mini",
  27787. height: math.unit(3 + 7 / 12, "feet")
  27788. },
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(5 + 7 / 12, "feet"),
  27792. default: true
  27793. },
  27794. {
  27795. name: "Macro",
  27796. height: math.unit(157 + 7 / 12, "feet")
  27797. },
  27798. {
  27799. name: "Megamacro",
  27800. height: math.unit(1557 + 7 / 12, "feet")
  27801. },
  27802. {
  27803. name: "Gigamacro",
  27804. height: math.unit(15557 + 7 / 12, "feet")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(3 + 2 / 12, "inches"),
  27813. weight: math.unit(0.3, "ounces"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/hiphae/front.svg",
  27817. extra: 1931 / 1683,
  27818. bottom: 24 / 1955
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(3 + 1 / 2, "inches"),
  27826. default: true
  27827. },
  27828. ]
  27829. ))
  27830. characterMakers.push(() => makeCharacter(
  27831. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27832. {
  27833. front: {
  27834. height: math.unit(5 + 10 / 12, "feet"),
  27835. weight: math.unit(165, "lb"),
  27836. name: "Front",
  27837. image: {
  27838. source: "./media/characters/nicky/front.svg",
  27839. extra: 3144 / 2886,
  27840. bottom: 45.6 / 3192
  27841. }
  27842. },
  27843. back: {
  27844. height: math.unit(5 + 10 / 12, "feet"),
  27845. weight: math.unit(165, "lb"),
  27846. name: "Back",
  27847. image: {
  27848. source: "./media/characters/nicky/back.svg",
  27849. extra: 3055 / 2804,
  27850. bottom: 28.4 / 3087
  27851. }
  27852. },
  27853. frontclothed: {
  27854. height: math.unit(5 + 10 / 12, "feet"),
  27855. weight: math.unit(165, "lb"),
  27856. name: "Front-clothed",
  27857. image: {
  27858. source: "./media/characters/nicky/front-clothed.svg",
  27859. extra: 3184.9 / 2926.9,
  27860. bottom: 86.5 / 3239.9
  27861. }
  27862. },
  27863. foot: {
  27864. height: math.unit(1.16, "feet"),
  27865. name: "Foot",
  27866. image: {
  27867. source: "./media/characters/nicky/foot.svg"
  27868. }
  27869. },
  27870. feet: {
  27871. height: math.unit(1.34, "feet"),
  27872. name: "Feet",
  27873. image: {
  27874. source: "./media/characters/nicky/feet.svg"
  27875. }
  27876. },
  27877. maw: {
  27878. height: math.unit(0.9, "feet"),
  27879. name: "Maw",
  27880. image: {
  27881. source: "./media/characters/nicky/maw.svg"
  27882. }
  27883. },
  27884. },
  27885. [
  27886. {
  27887. name: "Normal",
  27888. height: math.unit(5 + 10 / 12, "feet"),
  27889. default: true
  27890. },
  27891. {
  27892. name: "Macro",
  27893. height: math.unit(60, "feet")
  27894. },
  27895. {
  27896. name: "Megamacro",
  27897. height: math.unit(1, "mile")
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27903. {
  27904. side: {
  27905. height: math.unit(10, "feet"),
  27906. weight: math.unit(600, "lb"),
  27907. name: "Side",
  27908. image: {
  27909. source: "./media/characters/blair/side.svg",
  27910. bottom: 16.6 / 475,
  27911. extra: 458 / 431
  27912. }
  27913. },
  27914. },
  27915. [
  27916. {
  27917. name: "Micro",
  27918. height: math.unit(8, "inches")
  27919. },
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(10, "feet"),
  27923. default: true
  27924. },
  27925. {
  27926. name: "Macro",
  27927. height: math.unit(180, "feet")
  27928. },
  27929. ]
  27930. ))
  27931. characterMakers.push(() => makeCharacter(
  27932. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27933. {
  27934. front: {
  27935. height: math.unit(5 + 4 / 12, "feet"),
  27936. weight: math.unit(125, "lb"),
  27937. name: "Front",
  27938. image: {
  27939. source: "./media/characters/fisher/front.svg",
  27940. extra: 444 / 390,
  27941. bottom: 2 / 444.8
  27942. }
  27943. },
  27944. },
  27945. [
  27946. {
  27947. name: "Micro",
  27948. height: math.unit(4, "inches")
  27949. },
  27950. {
  27951. name: "Normal",
  27952. height: math.unit(5 + 4 / 12, "feet"),
  27953. default: true
  27954. },
  27955. {
  27956. name: "Macro",
  27957. height: math.unit(100, "feet")
  27958. },
  27959. ]
  27960. ))
  27961. characterMakers.push(() => makeCharacter(
  27962. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27963. {
  27964. front: {
  27965. height: math.unit(6.71, "feet"),
  27966. weight: math.unit(200, "lb"),
  27967. preyCapacity: math.unit(1000000, "people"),
  27968. name: "Front",
  27969. image: {
  27970. source: "./media/characters/gliss/front.svg",
  27971. extra: 2347 / 2231,
  27972. bottom: 113 / 2462
  27973. }
  27974. },
  27975. hammerspaceSize: {
  27976. height: math.unit(6.71 * 717, "feet"),
  27977. weight: math.unit(200, "lb"),
  27978. preyCapacity: math.unit(1000000, "people"),
  27979. name: "Hammerspace Size",
  27980. image: {
  27981. source: "./media/characters/gliss/front.svg",
  27982. extra: 2347 / 2231,
  27983. bottom: 113 / 2462
  27984. }
  27985. },
  27986. },
  27987. [
  27988. {
  27989. name: "Normal",
  27990. height: math.unit(6.71, "feet"),
  27991. default: true
  27992. },
  27993. ]
  27994. ))
  27995. characterMakers.push(() => makeCharacter(
  27996. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27997. {
  27998. side: {
  27999. height: math.unit(1.44, "m"),
  28000. weight: math.unit(80, "kg"),
  28001. name: "Side",
  28002. image: {
  28003. source: "./media/characters/dune-anderson/side.svg",
  28004. bottom: 49 / 1426
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Wolf-sized",
  28011. height: math.unit(1.44, "meters")
  28012. },
  28013. {
  28014. name: "Normal",
  28015. height: math.unit(5.05, "meters"),
  28016. default: true
  28017. },
  28018. {
  28019. name: "Big",
  28020. height: math.unit(14.4, "meters")
  28021. },
  28022. {
  28023. name: "Huge",
  28024. height: math.unit(144, "meters")
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(6, "feet"),
  28033. weight: math.unit(220, "lb"),
  28034. name: "Front",
  28035. image: {
  28036. source: "./media/characters/hind/front.svg",
  28037. extra: 1912/1787,
  28038. bottom: 52/1964
  28039. }
  28040. },
  28041. back: {
  28042. height: math.unit(6, "feet"),
  28043. weight: math.unit(220, "lb"),
  28044. name: "Back",
  28045. image: {
  28046. source: "./media/characters/hind/back.svg",
  28047. extra: 1901/1794,
  28048. bottom: 26/1927
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Normal",
  28055. height: math.unit(6, "feet"),
  28056. default: true
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28062. {
  28063. front: {
  28064. height: math.unit(2.1, "meters"),
  28065. weight: math.unit(150, "lb"),
  28066. name: "Front",
  28067. image: {
  28068. source: "./media/characters/tharquench-sizestealer/front.svg",
  28069. extra: 1605/1470,
  28070. bottom: 36/1641
  28071. }
  28072. },
  28073. frontAlt: {
  28074. height: math.unit(2.1, "meters"),
  28075. weight: math.unit(150, "lb"),
  28076. name: "Front (Alt)",
  28077. image: {
  28078. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28079. extra: 2318 / 2063,
  28080. bottom: 93.4 / 2410
  28081. }
  28082. },
  28083. },
  28084. [
  28085. {
  28086. name: "Nano",
  28087. height: math.unit(1, "mm")
  28088. },
  28089. {
  28090. name: "Micro",
  28091. height: math.unit(1, "cm")
  28092. },
  28093. {
  28094. name: "Normal",
  28095. height: math.unit(2.1, "meters"),
  28096. default: true
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28102. {
  28103. front: {
  28104. height: math.unit(7 + 5 / 12, "feet"),
  28105. weight: math.unit(357, "lb"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/solex-draconov/front.svg",
  28109. extra: 1993 / 1865,
  28110. bottom: 117 / 2111
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Natural Height",
  28117. height: math.unit(7 + 5 / 12, "feet"),
  28118. default: true
  28119. },
  28120. {
  28121. name: "Macro",
  28122. height: math.unit(350, "feet")
  28123. },
  28124. {
  28125. name: "Macro+",
  28126. height: math.unit(1000, "feet")
  28127. },
  28128. {
  28129. name: "Megamacro",
  28130. height: math.unit(20, "km")
  28131. },
  28132. {
  28133. name: "Megamacro+",
  28134. height: math.unit(1000, "km")
  28135. },
  28136. {
  28137. name: "Gigamacro",
  28138. height: math.unit(2.5, "Gm")
  28139. },
  28140. {
  28141. name: "Teramacro",
  28142. height: math.unit(15, "Tm")
  28143. },
  28144. {
  28145. name: "Galactic",
  28146. height: math.unit(30, "Zm")
  28147. },
  28148. {
  28149. name: "Universal",
  28150. height: math.unit(21000, "Ym")
  28151. },
  28152. {
  28153. name: "Omniversal",
  28154. height: math.unit(9.861e50, "Ym")
  28155. },
  28156. {
  28157. name: "Existential",
  28158. height: math.unit(1e300, "meters")
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28164. {
  28165. side: {
  28166. height: math.unit(25, "feet"),
  28167. weight: math.unit(90000, "lb"),
  28168. name: "Side",
  28169. image: {
  28170. source: "./media/characters/mandarax/side.svg",
  28171. extra: 614 / 332,
  28172. bottom: 55 / 630
  28173. }
  28174. },
  28175. lounging: {
  28176. height: math.unit(15.4, "feet"),
  28177. weight: math.unit(90000, "lb"),
  28178. name: "Lounging",
  28179. image: {
  28180. source: "./media/characters/mandarax/lounging.svg",
  28181. extra: 817/609,
  28182. bottom: 685/1502
  28183. }
  28184. },
  28185. head: {
  28186. height: math.unit(11.4, "feet"),
  28187. name: "Head",
  28188. image: {
  28189. source: "./media/characters/mandarax/head.svg"
  28190. }
  28191. },
  28192. belly: {
  28193. height: math.unit(33, "feet"),
  28194. name: "Belly",
  28195. preyCapacity: math.unit(500, "people"),
  28196. image: {
  28197. source: "./media/characters/mandarax/belly.svg"
  28198. }
  28199. },
  28200. dick: {
  28201. height: math.unit(8.46, "feet"),
  28202. name: "Dick",
  28203. image: {
  28204. source: "./media/characters/mandarax/dick.svg"
  28205. }
  28206. },
  28207. top: {
  28208. height: math.unit(28, "meters"),
  28209. name: "Top",
  28210. image: {
  28211. source: "./media/characters/mandarax/top.svg"
  28212. }
  28213. },
  28214. },
  28215. [
  28216. {
  28217. name: "Normal",
  28218. height: math.unit(25, "feet"),
  28219. default: true
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(5, "feet"),
  28228. weight: math.unit(90, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/pixil/front.svg",
  28232. extra: 2000 / 1618,
  28233. bottom: 12.3 / 2011
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(5, "feet"),
  28241. default: true
  28242. },
  28243. {
  28244. name: "Megamacro",
  28245. height: math.unit(10, "miles"),
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28251. {
  28252. front: {
  28253. height: math.unit(7 + 2 / 12, "feet"),
  28254. weight: math.unit(200, "lb"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/angel/front.svg",
  28258. extra: 1946/1840,
  28259. bottom: 30/1976
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(7 + 2 / 12, "feet"),
  28267. default: true
  28268. },
  28269. {
  28270. name: "Macro",
  28271. height: math.unit(1000, "feet")
  28272. },
  28273. {
  28274. name: "Megamacro",
  28275. height: math.unit(2, "miles")
  28276. },
  28277. {
  28278. name: "Gigamacro",
  28279. height: math.unit(20, "earths")
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28285. {
  28286. front: {
  28287. height: math.unit(5, "feet"),
  28288. weight: math.unit(180, "lb"),
  28289. name: "Front",
  28290. image: {
  28291. source: "./media/characters/mekana/front.svg",
  28292. extra: 1671 / 1605,
  28293. bottom: 3.5 / 1691
  28294. }
  28295. },
  28296. side: {
  28297. height: math.unit(5, "feet"),
  28298. weight: math.unit(180, "lb"),
  28299. name: "Side",
  28300. image: {
  28301. source: "./media/characters/mekana/side.svg",
  28302. extra: 1671 / 1605,
  28303. bottom: 3.5 / 1691
  28304. }
  28305. },
  28306. back: {
  28307. height: math.unit(5, "feet"),
  28308. weight: math.unit(180, "lb"),
  28309. name: "Back",
  28310. image: {
  28311. source: "./media/characters/mekana/back.svg",
  28312. extra: 1671 / 1605,
  28313. bottom: 3.5 / 1691
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(5, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(4 + 6 / 12, "feet"),
  28330. weight: math.unit(80, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/pixie/front.svg",
  28334. extra: 1924 / 1825,
  28335. bottom: 22.4 / 1946
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(4 + 6 / 12, "feet"),
  28343. default: true
  28344. },
  28345. {
  28346. name: "Macro",
  28347. height: math.unit(40, "feet")
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(2.1, "meters"),
  28356. weight: math.unit(200, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/the-lascivious/front.svg",
  28360. extra: 1 / 0.893,
  28361. bottom: 3.5 / 573.7
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Human Scale",
  28368. height: math.unit(2.1, "meters")
  28369. },
  28370. {
  28371. name: "Wolxi Scale",
  28372. height: math.unit(46.2, "m"),
  28373. default: true
  28374. },
  28375. {
  28376. name: "Boinker of Buildings",
  28377. height: math.unit(10, "km")
  28378. },
  28379. {
  28380. name: "Shagger of Skyscrapers",
  28381. height: math.unit(40, "km")
  28382. },
  28383. {
  28384. name: "Banger of Boroughs",
  28385. height: math.unit(4000, "km")
  28386. },
  28387. {
  28388. name: "Screwer of States",
  28389. height: math.unit(100000, "km")
  28390. },
  28391. {
  28392. name: "Pounder of Planets",
  28393. height: math.unit(2000000, "km")
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(6, "feet"),
  28402. weight: math.unit(150, "lb"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/aj/front.svg",
  28406. extra: 2039 / 1562,
  28407. bottom: 40 / 2079
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(11 + 6 / 12, "feet"),
  28415. default: true
  28416. },
  28417. {
  28418. name: "Megamacro",
  28419. height: math.unit(60, "megameters")
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28425. {
  28426. side: {
  28427. height: math.unit(31 + 8 / 12, "feet"),
  28428. weight: math.unit(75000, "kg"),
  28429. name: "Side",
  28430. image: {
  28431. source: "./media/characters/koros/side.svg",
  28432. extra: 1442 / 1297,
  28433. bottom: 122.7 / 1562
  28434. }
  28435. },
  28436. dicksKingsCrown: {
  28437. height: math.unit(6, "feet"),
  28438. name: "Dicks (King's Crown)",
  28439. image: {
  28440. source: "./media/characters/koros/dicks-kings-crown.svg"
  28441. }
  28442. },
  28443. dicksTailSet: {
  28444. height: math.unit(3, "feet"),
  28445. name: "Dicks (Tail Set)",
  28446. image: {
  28447. source: "./media/characters/koros/dicks-tail-set.svg"
  28448. }
  28449. },
  28450. dickCumming: {
  28451. height: math.unit(7.98, "feet"),
  28452. name: "Dick (Cumming)",
  28453. image: {
  28454. source: "./media/characters/koros/dick-cumming.svg"
  28455. }
  28456. },
  28457. dicksBack: {
  28458. height: math.unit(5.9, "feet"),
  28459. name: "Dicks (Back)",
  28460. image: {
  28461. source: "./media/characters/koros/dicks-back.svg"
  28462. }
  28463. },
  28464. dicksFront: {
  28465. height: math.unit(3.72, "feet"),
  28466. name: "Dicks (Front)",
  28467. image: {
  28468. source: "./media/characters/koros/dicks-front.svg"
  28469. }
  28470. },
  28471. dicksPeeking: {
  28472. height: math.unit(3.0, "feet"),
  28473. name: "Dicks (Peeking)",
  28474. image: {
  28475. source: "./media/characters/koros/dicks-peeking.svg"
  28476. }
  28477. },
  28478. eye: {
  28479. height: math.unit(1.7, "feet"),
  28480. name: "Eye",
  28481. image: {
  28482. source: "./media/characters/koros/eye.svg"
  28483. }
  28484. },
  28485. headFront: {
  28486. height: math.unit(11.69, "feet"),
  28487. name: "Head (Front)",
  28488. image: {
  28489. source: "./media/characters/koros/head-front.svg"
  28490. }
  28491. },
  28492. headSide: {
  28493. height: math.unit(14, "feet"),
  28494. name: "Head (Side)",
  28495. image: {
  28496. source: "./media/characters/koros/head-side.svg"
  28497. }
  28498. },
  28499. leg: {
  28500. height: math.unit(17, "feet"),
  28501. name: "Leg",
  28502. image: {
  28503. source: "./media/characters/koros/leg.svg"
  28504. }
  28505. },
  28506. mawSide: {
  28507. height: math.unit(12.8, "feet"),
  28508. name: "Maw (Side)",
  28509. image: {
  28510. source: "./media/characters/koros/maw-side.svg"
  28511. }
  28512. },
  28513. mawSpitting: {
  28514. height: math.unit(17, "feet"),
  28515. name: "Maw (Spitting)",
  28516. image: {
  28517. source: "./media/characters/koros/maw-spitting.svg"
  28518. }
  28519. },
  28520. slit: {
  28521. height: math.unit(2.8, "feet"),
  28522. name: "Slit",
  28523. image: {
  28524. source: "./media/characters/koros/slit.svg"
  28525. }
  28526. },
  28527. stomach: {
  28528. height: math.unit(6.8, "feet"),
  28529. preyCapacity: math.unit(20, "people"),
  28530. name: "Stomach",
  28531. image: {
  28532. source: "./media/characters/koros/stomach.svg"
  28533. }
  28534. },
  28535. wingspanBottom: {
  28536. height: math.unit(114, "feet"),
  28537. name: "Wingspan (Bottom)",
  28538. image: {
  28539. source: "./media/characters/koros/wingspan-bottom.svg"
  28540. }
  28541. },
  28542. wingspanTop: {
  28543. height: math.unit(104, "feet"),
  28544. name: "Wingspan (Top)",
  28545. image: {
  28546. source: "./media/characters/koros/wingspan-top.svg"
  28547. }
  28548. },
  28549. },
  28550. [
  28551. {
  28552. name: "Normal",
  28553. height: math.unit(31 + 8 / 12, "feet"),
  28554. default: true
  28555. },
  28556. ]
  28557. ))
  28558. characterMakers.push(() => makeCharacter(
  28559. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28560. {
  28561. front: {
  28562. height: math.unit(18 + 5 / 12, "feet"),
  28563. weight: math.unit(3750, "kg"),
  28564. name: "Front",
  28565. image: {
  28566. source: "./media/characters/vexx/front.svg",
  28567. extra: 426 / 396,
  28568. bottom: 31.5 / 458
  28569. }
  28570. },
  28571. maw: {
  28572. height: math.unit(6, "feet"),
  28573. name: "Maw",
  28574. image: {
  28575. source: "./media/characters/vexx/maw.svg"
  28576. }
  28577. },
  28578. },
  28579. [
  28580. {
  28581. name: "Normal",
  28582. height: math.unit(18 + 5 / 12, "feet"),
  28583. default: true
  28584. },
  28585. ]
  28586. ))
  28587. characterMakers.push(() => makeCharacter(
  28588. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28589. {
  28590. front: {
  28591. height: math.unit(17 + 6 / 12, "feet"),
  28592. weight: math.unit(150, "lb"),
  28593. name: "Front",
  28594. image: {
  28595. source: "./media/characters/baadra/front.svg",
  28596. extra: 1694/1553,
  28597. bottom: 179/1873
  28598. }
  28599. },
  28600. frontAlt: {
  28601. height: math.unit(17 + 6 / 12, "feet"),
  28602. weight: math.unit(150, "lb"),
  28603. name: "Front (Alt)",
  28604. image: {
  28605. source: "./media/characters/baadra/front-alt.svg",
  28606. extra: 3137 / 2890,
  28607. bottom: 168.4 / 3305
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(17 + 6 / 12, "feet"),
  28612. weight: math.unit(150, "lb"),
  28613. name: "Back",
  28614. image: {
  28615. source: "./media/characters/baadra/back.svg",
  28616. extra: 3142 / 2890,
  28617. bottom: 220 / 3371
  28618. }
  28619. },
  28620. head: {
  28621. height: math.unit(5.45, "feet"),
  28622. name: "Head",
  28623. image: {
  28624. source: "./media/characters/baadra/head.svg"
  28625. }
  28626. },
  28627. headAngry: {
  28628. height: math.unit(4.95, "feet"),
  28629. name: "Head (Angry)",
  28630. image: {
  28631. source: "./media/characters/baadra/head-angry.svg"
  28632. }
  28633. },
  28634. headOpen: {
  28635. height: math.unit(6, "feet"),
  28636. name: "Head (Open)",
  28637. image: {
  28638. source: "./media/characters/baadra/head-open.svg"
  28639. }
  28640. },
  28641. },
  28642. [
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(17 + 6 / 12, "feet"),
  28646. default: true
  28647. },
  28648. ]
  28649. ))
  28650. characterMakers.push(() => makeCharacter(
  28651. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28652. {
  28653. front: {
  28654. height: math.unit(7 + 3 / 12, "feet"),
  28655. weight: math.unit(180, "lb"),
  28656. name: "Front",
  28657. image: {
  28658. source: "./media/characters/juri/front.svg",
  28659. extra: 1401 / 1237,
  28660. bottom: 18.5 / 1418
  28661. }
  28662. },
  28663. side: {
  28664. height: math.unit(7 + 3 / 12, "feet"),
  28665. weight: math.unit(180, "lb"),
  28666. name: "Side",
  28667. image: {
  28668. source: "./media/characters/juri/side.svg",
  28669. extra: 1424 / 1242,
  28670. bottom: 18.5 / 1447
  28671. }
  28672. },
  28673. sitting: {
  28674. height: math.unit(6, "feet"),
  28675. weight: math.unit(180, "lb"),
  28676. name: "Sitting",
  28677. image: {
  28678. source: "./media/characters/juri/sitting.svg",
  28679. extra: 1270 / 1143,
  28680. bottom: 100 / 1343
  28681. }
  28682. },
  28683. back: {
  28684. height: math.unit(7 + 3 / 12, "feet"),
  28685. weight: math.unit(180, "lb"),
  28686. name: "Back",
  28687. image: {
  28688. source: "./media/characters/juri/back.svg",
  28689. extra: 1377 / 1240,
  28690. bottom: 23.7 / 1405
  28691. }
  28692. },
  28693. maw: {
  28694. height: math.unit(2.8, "feet"),
  28695. name: "Maw",
  28696. image: {
  28697. source: "./media/characters/juri/maw.svg"
  28698. }
  28699. },
  28700. stomach: {
  28701. height: math.unit(0.89, "feet"),
  28702. preyCapacity: math.unit(4, "liters"),
  28703. name: "Stomach",
  28704. image: {
  28705. source: "./media/characters/juri/stomach.svg"
  28706. }
  28707. },
  28708. },
  28709. [
  28710. {
  28711. name: "Normal",
  28712. height: math.unit(7 + 3 / 12, "feet"),
  28713. default: true
  28714. },
  28715. ]
  28716. ))
  28717. characterMakers.push(() => makeCharacter(
  28718. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28719. {
  28720. fox: {
  28721. height: math.unit(5 + 6 / 12, "feet"),
  28722. weight: math.unit(140, "lb"),
  28723. name: "Fox",
  28724. image: {
  28725. source: "./media/characters/maxene-sita/fox.svg",
  28726. extra: 146 / 138,
  28727. bottom: 2.1 / 148.19
  28728. }
  28729. },
  28730. foxLaying: {
  28731. height: math.unit(1.70, "feet"),
  28732. weight: math.unit(140, "lb"),
  28733. name: "Fox (Laying)",
  28734. image: {
  28735. source: "./media/characters/maxene-sita/fox-laying.svg",
  28736. extra: 910 / 572,
  28737. bottom: 71 / 981
  28738. }
  28739. },
  28740. kitsune: {
  28741. height: math.unit(10, "feet"),
  28742. weight: math.unit(800, "lb"),
  28743. name: "Kitsune",
  28744. image: {
  28745. source: "./media/characters/maxene-sita/kitsune.svg",
  28746. extra: 185 / 176,
  28747. bottom: 4.7 / 189.9
  28748. }
  28749. },
  28750. hellhound: {
  28751. height: math.unit(10, "feet"),
  28752. weight: math.unit(700, "lb"),
  28753. name: "Hellhound",
  28754. image: {
  28755. source: "./media/characters/maxene-sita/hellhound.svg",
  28756. extra: 1600 / 1545,
  28757. bottom: 81 / 1681
  28758. }
  28759. },
  28760. },
  28761. [
  28762. {
  28763. name: "Normal",
  28764. height: math.unit(5 + 6 / 12, "feet"),
  28765. default: true
  28766. },
  28767. ]
  28768. ))
  28769. characterMakers.push(() => makeCharacter(
  28770. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28771. {
  28772. front: {
  28773. height: math.unit(3 + 4 / 12, "feet"),
  28774. weight: math.unit(70, "lb"),
  28775. name: "Front",
  28776. image: {
  28777. source: "./media/characters/maia/front.svg",
  28778. extra: 227 / 219.5,
  28779. bottom: 40 / 267
  28780. }
  28781. },
  28782. back: {
  28783. height: math.unit(3 + 4 / 12, "feet"),
  28784. weight: math.unit(70, "lb"),
  28785. name: "Back",
  28786. image: {
  28787. source: "./media/characters/maia/back.svg",
  28788. extra: 237 / 225
  28789. }
  28790. },
  28791. },
  28792. [
  28793. {
  28794. name: "Normal",
  28795. height: math.unit(3 + 4 / 12, "feet"),
  28796. default: true
  28797. },
  28798. ]
  28799. ))
  28800. characterMakers.push(() => makeCharacter(
  28801. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28802. {
  28803. front: {
  28804. height: math.unit(5 + 10 / 12, "feet"),
  28805. weight: math.unit(197, "lb"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/jabaro/front.svg",
  28809. extra: 225 / 216,
  28810. bottom: 5.06 / 230
  28811. }
  28812. },
  28813. back: {
  28814. height: math.unit(5 + 10 / 12, "feet"),
  28815. weight: math.unit(197, "lb"),
  28816. name: "Back",
  28817. image: {
  28818. source: "./media/characters/jabaro/back.svg",
  28819. extra: 225 / 219,
  28820. bottom: 1.9 / 227
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Normal",
  28827. height: math.unit(5 + 10 / 12, "feet"),
  28828. default: true
  28829. },
  28830. ]
  28831. ))
  28832. characterMakers.push(() => makeCharacter(
  28833. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28834. {
  28835. front: {
  28836. height: math.unit(5 + 8 / 12, "feet"),
  28837. weight: math.unit(139, "lb"),
  28838. name: "Front",
  28839. image: {
  28840. source: "./media/characters/risa/front.svg",
  28841. extra: 270 / 260,
  28842. bottom: 11.2 / 282
  28843. }
  28844. },
  28845. back: {
  28846. height: math.unit(5 + 8 / 12, "feet"),
  28847. weight: math.unit(139, "lb"),
  28848. name: "Back",
  28849. image: {
  28850. source: "./media/characters/risa/back.svg",
  28851. extra: 264 / 255,
  28852. bottom: 4 / 268
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Normal",
  28859. height: math.unit(5 + 8 / 12, "feet"),
  28860. default: true
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(2 + 11 / 12, "feet"),
  28869. weight: math.unit(30, "lb"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/weatley/front.svg",
  28873. bottom: 10.7 / 414,
  28874. extra: 403.5 / 362
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(2 + 11 / 12, "feet"),
  28879. weight: math.unit(30, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/weatley/back.svg",
  28883. bottom: 10.7 / 414,
  28884. extra: 403.5 / 362
  28885. }
  28886. },
  28887. },
  28888. [
  28889. {
  28890. name: "Normal",
  28891. height: math.unit(2 + 11 / 12, "feet"),
  28892. default: true
  28893. },
  28894. ]
  28895. ))
  28896. characterMakers.push(() => makeCharacter(
  28897. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28898. {
  28899. front: {
  28900. height: math.unit(5 + 2 / 12, "feet"),
  28901. weight: math.unit(50, "kg"),
  28902. name: "Front",
  28903. image: {
  28904. source: "./media/characters/mercury-crescent/front.svg",
  28905. extra: 1088 / 1033,
  28906. bottom: 18.9 / 1109
  28907. }
  28908. },
  28909. },
  28910. [
  28911. {
  28912. name: "Normal",
  28913. height: math.unit(5 + 2 / 12, "feet"),
  28914. default: true
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(2, "feet"),
  28923. weight: math.unit(15, "kg"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/diamond-jones/front.svg",
  28927. extra: 727/723,
  28928. bottom: 46/773
  28929. }
  28930. },
  28931. },
  28932. [
  28933. {
  28934. name: "Normal",
  28935. height: math.unit(2, "feet"),
  28936. default: true
  28937. },
  28938. ]
  28939. ))
  28940. characterMakers.push(() => makeCharacter(
  28941. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28942. {
  28943. front: {
  28944. height: math.unit(3, "feet"),
  28945. weight: math.unit(30, "kg"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/sweet-bit/front.svg",
  28949. extra: 675 / 567,
  28950. bottom: 27.7 / 703
  28951. }
  28952. },
  28953. },
  28954. [
  28955. {
  28956. name: "Normal",
  28957. height: math.unit(3, "feet"),
  28958. default: true
  28959. },
  28960. ]
  28961. ))
  28962. characterMakers.push(() => makeCharacter(
  28963. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28964. {
  28965. side: {
  28966. height: math.unit(9.178, "feet"),
  28967. weight: math.unit(500, "lb"),
  28968. name: "Side",
  28969. image: {
  28970. source: "./media/characters/umbrazen/side.svg",
  28971. extra: 1730 / 1473,
  28972. bottom: 34.6 / 1765
  28973. }
  28974. },
  28975. },
  28976. [
  28977. {
  28978. name: "Normal",
  28979. height: math.unit(9.178, "feet"),
  28980. default: true
  28981. },
  28982. ]
  28983. ))
  28984. characterMakers.push(() => makeCharacter(
  28985. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28986. {
  28987. front: {
  28988. height: math.unit(10, "feet"),
  28989. weight: math.unit(750, "lb"),
  28990. name: "Front",
  28991. image: {
  28992. source: "./media/characters/arlist/front.svg",
  28993. extra: 961 / 778,
  28994. bottom: 6.2 / 986
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(10, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(5 + 1 / 12, "feet"),
  29011. weight: math.unit(110, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/aradel/front.svg",
  29015. extra: 324 / 303,
  29016. bottom: 3.6 / 329.4
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(5 + 1 / 12, "feet"),
  29024. default: true
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29030. {
  29031. dressed: {
  29032. height: math.unit(3 + 8 / 12, "feet"),
  29033. weight: math.unit(50, "lb"),
  29034. name: "Dressed",
  29035. image: {
  29036. source: "./media/characters/serryn/dressed.svg",
  29037. extra: 1792 / 1656,
  29038. bottom: 43.5 / 1840
  29039. }
  29040. },
  29041. nude: {
  29042. height: math.unit(3 + 8 / 12, "feet"),
  29043. weight: math.unit(50, "lb"),
  29044. name: "Nude",
  29045. image: {
  29046. source: "./media/characters/serryn/nude.svg",
  29047. extra: 1792 / 1656,
  29048. bottom: 43.5 / 1840
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Normal",
  29055. height: math.unit(3 + 8 / 12, "feet"),
  29056. default: true
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(7 + 10 / 12, "feet"),
  29065. weight: math.unit(255, "lb"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/xavier-thyme/front.svg",
  29069. extra: 3733 / 3642,
  29070. bottom: 131 / 3869
  29071. }
  29072. },
  29073. frontRaven: {
  29074. height: math.unit(7 + 10 / 12, "feet"),
  29075. weight: math.unit(255, "lb"),
  29076. name: "Front (Raven)",
  29077. image: {
  29078. source: "./media/characters/xavier-thyme/front-raven.svg",
  29079. extra: 4385 / 3642,
  29080. bottom: 131 / 4517
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(7 + 10 / 12, "feet"),
  29088. default: true
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(1.6, "m"),
  29097. weight: math.unit(50, "kg"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/kiki/front.svg",
  29101. extra: 4682 / 3610,
  29102. bottom: 115 / 4777
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Normal",
  29109. height: math.unit(1.6, "meters"),
  29110. default: true
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29116. {
  29117. front: {
  29118. height: math.unit(50, "m"),
  29119. weight: math.unit(500, "tonnes"),
  29120. name: "Front",
  29121. image: {
  29122. source: "./media/characters/ryoko/front.svg",
  29123. extra: 4632 / 3926,
  29124. bottom: 193 / 4823
  29125. }
  29126. },
  29127. },
  29128. [
  29129. {
  29130. name: "Normal",
  29131. height: math.unit(50, "meters"),
  29132. default: true
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(30, "m"),
  29141. weight: math.unit(22, "tonnes"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/elio/front.svg",
  29145. extra: 4582 / 3720,
  29146. bottom: 236 / 4828
  29147. }
  29148. },
  29149. },
  29150. [
  29151. {
  29152. name: "Normal",
  29153. height: math.unit(30, "meters"),
  29154. default: true
  29155. },
  29156. ]
  29157. ))
  29158. characterMakers.push(() => makeCharacter(
  29159. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29160. {
  29161. front: {
  29162. height: math.unit(6 + 3 / 12, "feet"),
  29163. weight: math.unit(120, "lb"),
  29164. name: "Front",
  29165. image: {
  29166. source: "./media/characters/azura/front.svg",
  29167. extra: 1149 / 1135,
  29168. bottom: 45 / 1194
  29169. }
  29170. },
  29171. frontClothed: {
  29172. height: math.unit(6 + 3 / 12, "feet"),
  29173. weight: math.unit(120, "lb"),
  29174. name: "Front (Clothed)",
  29175. image: {
  29176. source: "./media/characters/azura/front-clothed.svg",
  29177. extra: 1149 / 1135,
  29178. bottom: 45 / 1194
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(6 + 3 / 12, "feet"),
  29186. default: true
  29187. },
  29188. {
  29189. name: "Macro",
  29190. height: math.unit(20 + 6 / 12, "feet")
  29191. },
  29192. {
  29193. name: "Megamacro",
  29194. height: math.unit(12, "miles")
  29195. },
  29196. {
  29197. name: "Gigamacro",
  29198. height: math.unit(10000, "miles")
  29199. },
  29200. {
  29201. name: "Teramacro",
  29202. height: math.unit(900000, "miles")
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29208. {
  29209. front: {
  29210. height: math.unit(12, "feet"),
  29211. weight: math.unit(1, "ton"),
  29212. capacity: math.unit(660000, "gallons"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/zeus/front.svg",
  29216. extra: 5005 / 4717,
  29217. bottom: 363 / 5388
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Normal",
  29224. height: math.unit(12, "feet")
  29225. },
  29226. {
  29227. name: "Preferred Size",
  29228. height: math.unit(0.5, "miles"),
  29229. default: true
  29230. },
  29231. {
  29232. name: "Giga Horse",
  29233. height: math.unit(300, "miles")
  29234. },
  29235. {
  29236. name: "Riding Planets",
  29237. height: math.unit(30, "megameters")
  29238. },
  29239. {
  29240. name: "Cosmic Giant",
  29241. height: math.unit(3, "zettameters")
  29242. },
  29243. {
  29244. name: "Breeding God",
  29245. height: math.unit(9.92e22, "yottameters")
  29246. },
  29247. ]
  29248. ))
  29249. characterMakers.push(() => makeCharacter(
  29250. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29251. {
  29252. side: {
  29253. height: math.unit(9, "feet"),
  29254. weight: math.unit(1500, "kg"),
  29255. name: "Side",
  29256. image: {
  29257. source: "./media/characters/fang/side.svg",
  29258. extra: 924 / 866,
  29259. bottom: 47.5 / 972.3
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Normal",
  29266. height: math.unit(9, "feet"),
  29267. default: true
  29268. },
  29269. {
  29270. name: "Macro",
  29271. height: math.unit(75 + 6 / 12, "feet")
  29272. },
  29273. {
  29274. name: "Teramacro",
  29275. height: math.unit(50000, "miles")
  29276. },
  29277. ]
  29278. ))
  29279. characterMakers.push(() => makeCharacter(
  29280. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29281. {
  29282. front: {
  29283. height: math.unit(10, "feet"),
  29284. weight: math.unit(2, "tons"),
  29285. name: "Front",
  29286. image: {
  29287. source: "./media/characters/rekhit/front.svg",
  29288. extra: 2796 / 2590,
  29289. bottom: 225 / 3022
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(10, "feet"),
  29297. default: true
  29298. },
  29299. {
  29300. name: "Macro",
  29301. height: math.unit(500, "feet")
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(7 + 6.451 / 12, "feet"),
  29310. weight: math.unit(310, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/dahlia-verrick/front.svg",
  29314. extra: 1488 / 1365,
  29315. bottom: 6.2 / 1495
  29316. }
  29317. },
  29318. back: {
  29319. height: math.unit(7 + 6.451 / 12, "feet"),
  29320. weight: math.unit(310, "lb"),
  29321. name: "Back",
  29322. image: {
  29323. source: "./media/characters/dahlia-verrick/back.svg",
  29324. extra: 1472 / 1351,
  29325. bottom: 5.28 / 1477
  29326. }
  29327. },
  29328. frontBusiness: {
  29329. height: math.unit(7 + 6.451 / 12, "feet"),
  29330. weight: math.unit(200, "lb"),
  29331. name: "Front (Business)",
  29332. image: {
  29333. source: "./media/characters/dahlia-verrick/front-business.svg",
  29334. extra: 1478 / 1381,
  29335. bottom: 5.5 / 1484
  29336. }
  29337. },
  29338. frontCasual: {
  29339. height: math.unit(7 + 6.451 / 12, "feet"),
  29340. weight: math.unit(200, "lb"),
  29341. name: "Front (Casual)",
  29342. image: {
  29343. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29344. extra: 1478 / 1381,
  29345. bottom: 5.5 / 1484
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Travel-Sized",
  29352. height: math.unit(7.45, "inches")
  29353. },
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(7 + 6.451 / 12, "feet"),
  29357. default: true
  29358. },
  29359. {
  29360. name: "Hitting the Town",
  29361. height: math.unit(37 + 8 / 12, "feet")
  29362. },
  29363. {
  29364. name: "Stomp in the Suburbs",
  29365. height: math.unit(964 + 9.728 / 12, "feet")
  29366. },
  29367. {
  29368. name: "Sit on the City",
  29369. height: math.unit(61747 + 10.592 / 12, "feet")
  29370. },
  29371. {
  29372. name: "Glomp the Globe",
  29373. height: math.unit(252919327 + 4.832 / 12, "feet")
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29379. {
  29380. front: {
  29381. height: math.unit(6 + 4 / 12, "feet"),
  29382. weight: math.unit(320, "lb"),
  29383. name: "Front",
  29384. image: {
  29385. source: "./media/characters/balina-mahigan/front.svg",
  29386. extra: 447 / 428,
  29387. bottom: 18 / 466
  29388. }
  29389. },
  29390. back: {
  29391. height: math.unit(6 + 4 / 12, "feet"),
  29392. weight: math.unit(320, "lb"),
  29393. name: "Back",
  29394. image: {
  29395. source: "./media/characters/balina-mahigan/back.svg",
  29396. extra: 445 / 428,
  29397. bottom: 4.07 / 448
  29398. }
  29399. },
  29400. arm: {
  29401. height: math.unit(1.88, "feet"),
  29402. name: "Arm",
  29403. image: {
  29404. source: "./media/characters/balina-mahigan/arm.svg"
  29405. }
  29406. },
  29407. backPort: {
  29408. height: math.unit(0.685, "feet"),
  29409. name: "Back Port",
  29410. image: {
  29411. source: "./media/characters/balina-mahigan/back-port.svg"
  29412. }
  29413. },
  29414. hoofpaw: {
  29415. height: math.unit(1.41, "feet"),
  29416. name: "Hoofpaw",
  29417. image: {
  29418. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29419. }
  29420. },
  29421. leftHandBack: {
  29422. height: math.unit(0.938, "feet"),
  29423. name: "Left Hand (Back)",
  29424. image: {
  29425. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29426. }
  29427. },
  29428. leftHandFront: {
  29429. height: math.unit(0.938, "feet"),
  29430. name: "Left Hand (Front)",
  29431. image: {
  29432. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29433. }
  29434. },
  29435. rightHandBack: {
  29436. height: math.unit(0.95, "feet"),
  29437. name: "Right Hand (Back)",
  29438. image: {
  29439. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29440. }
  29441. },
  29442. rightHandFront: {
  29443. height: math.unit(0.95, "feet"),
  29444. name: "Right Hand (Front)",
  29445. image: {
  29446. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(6 + 4 / 12, "feet"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(6, "feet"),
  29463. weight: math.unit(320, "lb"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/balina-mejeri/front.svg",
  29467. extra: 517 / 488,
  29468. bottom: 44.2 / 561
  29469. }
  29470. },
  29471. },
  29472. [
  29473. {
  29474. name: "Normal",
  29475. height: math.unit(6 + 4 / 12, "feet")
  29476. },
  29477. {
  29478. name: "Business",
  29479. height: math.unit(155, "feet"),
  29480. default: true
  29481. },
  29482. ]
  29483. ))
  29484. characterMakers.push(() => makeCharacter(
  29485. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29486. {
  29487. kneeling: {
  29488. height: math.unit(6 + 4 / 12, "feet"),
  29489. weight: math.unit(300 * 20, "lb"),
  29490. name: "Kneeling",
  29491. image: {
  29492. source: "./media/characters/balbarian/kneeling.svg",
  29493. extra: 922 / 862,
  29494. bottom: 42.4 / 965
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Normal",
  29501. height: math.unit(6 + 4 / 12, "feet")
  29502. },
  29503. {
  29504. name: "Treasured",
  29505. height: math.unit(18 + 9 / 12, "feet"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Macro",
  29510. height: math.unit(900, "feet")
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(6 + 4 / 12, "feet"),
  29519. weight: math.unit(325, "lb"),
  29520. name: "Front",
  29521. image: {
  29522. source: "./media/characters/balina-amarini/front.svg",
  29523. extra: 415 / 403,
  29524. bottom: 19 / 433.4
  29525. }
  29526. },
  29527. back: {
  29528. height: math.unit(6 + 4 / 12, "feet"),
  29529. weight: math.unit(325, "lb"),
  29530. name: "Back",
  29531. image: {
  29532. source: "./media/characters/balina-amarini/back.svg",
  29533. extra: 415 / 403,
  29534. bottom: 13.5 / 432
  29535. }
  29536. },
  29537. overdrive: {
  29538. height: math.unit(6 + 4 / 12, "feet"),
  29539. weight: math.unit(400, "lb"),
  29540. name: "Overdrive",
  29541. image: {
  29542. source: "./media/characters/balina-amarini/overdrive.svg",
  29543. extra: 269 / 259,
  29544. bottom: 12 / 282
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Boom",
  29551. height: math.unit(9 + 10 / 12, "feet"),
  29552. default: true
  29553. },
  29554. {
  29555. name: "Macro",
  29556. height: math.unit(280, "feet")
  29557. },
  29558. ]
  29559. ))
  29560. characterMakers.push(() => makeCharacter(
  29561. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29562. {
  29563. goddess: {
  29564. height: math.unit(600, "feet"),
  29565. weight: math.unit(2000000, "tons"),
  29566. name: "Goddess",
  29567. image: {
  29568. source: "./media/characters/lady-kubwa/goddess.svg",
  29569. extra: 1240.5 / 1223,
  29570. bottom: 22 / 1263
  29571. }
  29572. },
  29573. goddesser: {
  29574. height: math.unit(900, "feet"),
  29575. weight: math.unit(20000000, "lb"),
  29576. name: "Goddess-er",
  29577. image: {
  29578. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29579. extra: 899 / 888,
  29580. bottom: 12.6 / 912
  29581. }
  29582. },
  29583. },
  29584. [
  29585. {
  29586. name: "Macro",
  29587. height: math.unit(600, "feet"),
  29588. default: true
  29589. },
  29590. {
  29591. name: "Megamacro",
  29592. height: math.unit(250, "miles")
  29593. },
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(7 + 7 / 12, "feet"),
  29601. weight: math.unit(250, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/tala-grovehorn/front.svg",
  29605. extra: 2636 / 2525,
  29606. bottom: 147 / 2781
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(7 + 7 / 12, "feet"),
  29611. weight: math.unit(250, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/tala-grovehorn/back.svg",
  29615. extra: 2635 / 2539,
  29616. bottom: 100 / 2732.8
  29617. }
  29618. },
  29619. mouth: {
  29620. height: math.unit(1.15, "feet"),
  29621. name: "Mouth",
  29622. image: {
  29623. source: "./media/characters/tala-grovehorn/mouth.svg"
  29624. }
  29625. },
  29626. dick: {
  29627. height: math.unit(2.36, "feet"),
  29628. name: "Dick",
  29629. image: {
  29630. source: "./media/characters/tala-grovehorn/dick.svg"
  29631. }
  29632. },
  29633. slit: {
  29634. height: math.unit(0.61, "feet"),
  29635. name: "Slit",
  29636. image: {
  29637. source: "./media/characters/tala-grovehorn/slit.svg"
  29638. }
  29639. },
  29640. },
  29641. [
  29642. ]
  29643. ))
  29644. characterMakers.push(() => makeCharacter(
  29645. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29646. {
  29647. front: {
  29648. height: math.unit(7 + 7 / 12, "feet"),
  29649. weight: math.unit(225, "lb"),
  29650. name: "Front",
  29651. image: {
  29652. source: "./media/characters/epona/front.svg",
  29653. extra: 2445 / 2290,
  29654. bottom: 251 / 2696
  29655. }
  29656. },
  29657. back: {
  29658. height: math.unit(7 + 7 / 12, "feet"),
  29659. weight: math.unit(225, "lb"),
  29660. name: "Back",
  29661. image: {
  29662. source: "./media/characters/epona/back.svg",
  29663. extra: 2546 / 2408,
  29664. bottom: 44 / 2589
  29665. }
  29666. },
  29667. genitals: {
  29668. height: math.unit(1.5, "feet"),
  29669. name: "Genitals",
  29670. image: {
  29671. source: "./media/characters/epona/genitals.svg"
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Normal",
  29678. height: math.unit(7 + 7 / 12, "feet"),
  29679. default: true
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29685. {
  29686. front: {
  29687. height: math.unit(7, "feet"),
  29688. weight: math.unit(518, "lb"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/avia-bloodbourn/front.svg",
  29692. extra: 1466 / 1350,
  29693. bottom: 65 / 1527
  29694. }
  29695. },
  29696. },
  29697. [
  29698. ]
  29699. ))
  29700. characterMakers.push(() => makeCharacter(
  29701. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29702. {
  29703. front: {
  29704. height: math.unit(9.35, "feet"),
  29705. weight: math.unit(600, "lb"),
  29706. name: "Front",
  29707. image: {
  29708. source: "./media/characters/amera/front.svg",
  29709. extra: 891 / 818,
  29710. bottom: 30 / 922.7
  29711. }
  29712. },
  29713. back: {
  29714. height: math.unit(9.35, "feet"),
  29715. weight: math.unit(600, "lb"),
  29716. name: "Back",
  29717. image: {
  29718. source: "./media/characters/amera/back.svg",
  29719. extra: 876 / 824,
  29720. bottom: 6.8 / 884
  29721. }
  29722. },
  29723. dick: {
  29724. height: math.unit(2.14, "feet"),
  29725. name: "Dick",
  29726. image: {
  29727. source: "./media/characters/amera/dick.svg"
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Normal",
  29734. height: math.unit(9.35, "feet"),
  29735. default: true
  29736. },
  29737. ]
  29738. ))
  29739. characterMakers.push(() => makeCharacter(
  29740. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29741. {
  29742. kneeling: {
  29743. height: math.unit(3 + 4 / 12, "feet"),
  29744. weight: math.unit(90, "lb"),
  29745. name: "Kneeling",
  29746. image: {
  29747. source: "./media/characters/rosewen/kneeling.svg",
  29748. extra: 1835 / 1571,
  29749. bottom: 27.7 / 1862
  29750. }
  29751. },
  29752. },
  29753. [
  29754. {
  29755. name: "Normal",
  29756. height: math.unit(3 + 4 / 12, "feet"),
  29757. default: true
  29758. },
  29759. ]
  29760. ))
  29761. characterMakers.push(() => makeCharacter(
  29762. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29763. {
  29764. front: {
  29765. height: math.unit(5 + 10 / 12, "feet"),
  29766. weight: math.unit(200, "lb"),
  29767. name: "Front",
  29768. image: {
  29769. source: "./media/characters/sabah/front.svg",
  29770. extra: 849 / 763,
  29771. bottom: 33.9 / 881
  29772. }
  29773. },
  29774. },
  29775. [
  29776. {
  29777. name: "Normal",
  29778. height: math.unit(5 + 10 / 12, "feet"),
  29779. default: true
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29785. {
  29786. front: {
  29787. height: math.unit(3 + 5 / 12, "feet"),
  29788. weight: math.unit(40, "kg"),
  29789. name: "Front",
  29790. image: {
  29791. source: "./media/characters/purple-flame/front.svg",
  29792. extra: 1577 / 1412,
  29793. bottom: 97 / 1694
  29794. }
  29795. },
  29796. frontDressed: {
  29797. height: math.unit(3 + 5 / 12, "feet"),
  29798. weight: math.unit(40, "kg"),
  29799. name: "Front (Dressed)",
  29800. image: {
  29801. source: "./media/characters/purple-flame/front-dressed.svg",
  29802. extra: 1577 / 1412,
  29803. bottom: 97 / 1694
  29804. }
  29805. },
  29806. headphones: {
  29807. height: math.unit(0.85, "feet"),
  29808. name: "Headphones",
  29809. image: {
  29810. source: "./media/characters/purple-flame/headphones.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Really Small",
  29817. height: math.unit(5, "cm")
  29818. },
  29819. {
  29820. name: "Micro",
  29821. height: math.unit(1 + 5 / 12, "feet")
  29822. },
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(3 + 5 / 12, "feet"),
  29826. default: true
  29827. },
  29828. {
  29829. name: "Minimacro",
  29830. height: math.unit(125, "feet")
  29831. },
  29832. {
  29833. name: "Macro",
  29834. height: math.unit(0.5, "miles")
  29835. },
  29836. {
  29837. name: "Megamacro",
  29838. height: math.unit(50, "miles")
  29839. },
  29840. {
  29841. name: "Gigantic",
  29842. height: math.unit(750, "miles")
  29843. },
  29844. {
  29845. name: "Planetary",
  29846. height: math.unit(15000, "miles")
  29847. },
  29848. ]
  29849. ))
  29850. characterMakers.push(() => makeCharacter(
  29851. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29852. {
  29853. front: {
  29854. height: math.unit(14, "feet"),
  29855. weight: math.unit(959, "lb"),
  29856. name: "Front",
  29857. image: {
  29858. source: "./media/characters/arsenal/front.svg",
  29859. extra: 2357 / 2157,
  29860. bottom: 93 / 2458
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Normal",
  29867. height: math.unit(14, "feet"),
  29868. default: true
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29874. {
  29875. front: {
  29876. height: math.unit(6, "feet"),
  29877. weight: math.unit(150, "lb"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/adira/front.svg",
  29881. extra: 2121/2013,
  29882. bottom: 206/2327
  29883. }
  29884. },
  29885. },
  29886. [
  29887. {
  29888. name: "Micro",
  29889. height: math.unit(4, "inches"),
  29890. default: true
  29891. },
  29892. {
  29893. name: "Macro",
  29894. height: math.unit(50, "feet")
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(16, "feet"),
  29903. weight: math.unit(1000, "lb"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/grim/front.svg",
  29907. extra: 622 / 614,
  29908. bottom: 18.1 / 642
  29909. }
  29910. },
  29911. back: {
  29912. height: math.unit(16, "feet"),
  29913. weight: math.unit(1000, "lb"),
  29914. name: "Back",
  29915. image: {
  29916. source: "./media/characters/grim/back.svg",
  29917. extra: 610.6 / 602,
  29918. bottom: 40.8 / 652
  29919. }
  29920. },
  29921. hunched: {
  29922. height: math.unit(9.75, "feet"),
  29923. weight: math.unit(1000, "lb"),
  29924. name: "Hunched",
  29925. image: {
  29926. source: "./media/characters/grim/hunched.svg",
  29927. extra: 304 / 297,
  29928. bottom: 35.4 / 394
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Normal",
  29935. height: math.unit(16, "feet"),
  29936. default: true
  29937. },
  29938. ]
  29939. ))
  29940. characterMakers.push(() => makeCharacter(
  29941. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29942. {
  29943. front: {
  29944. height: math.unit(2.3, "meters"),
  29945. weight: math.unit(300, "lb"),
  29946. name: "Front",
  29947. image: {
  29948. source: "./media/characters/sinja/front-sfw.svg",
  29949. extra: 1393 / 1294,
  29950. bottom: 70 / 1463
  29951. }
  29952. },
  29953. frontNsfw: {
  29954. height: math.unit(2.3, "meters"),
  29955. weight: math.unit(300, "lb"),
  29956. name: "Front (NSFW)",
  29957. image: {
  29958. source: "./media/characters/sinja/front-nsfw.svg",
  29959. extra: 1393 / 1294,
  29960. bottom: 70 / 1463
  29961. }
  29962. },
  29963. back: {
  29964. height: math.unit(2.3, "meters"),
  29965. weight: math.unit(300, "lb"),
  29966. name: "Back",
  29967. image: {
  29968. source: "./media/characters/sinja/back.svg",
  29969. extra: 1393 / 1294,
  29970. bottom: 70 / 1463
  29971. }
  29972. },
  29973. head: {
  29974. height: math.unit(1.771, "feet"),
  29975. name: "Head",
  29976. image: {
  29977. source: "./media/characters/sinja/head.svg"
  29978. }
  29979. },
  29980. slit: {
  29981. height: math.unit(0.8, "feet"),
  29982. name: "Slit",
  29983. image: {
  29984. source: "./media/characters/sinja/slit.svg"
  29985. }
  29986. },
  29987. },
  29988. [
  29989. {
  29990. name: "Normal",
  29991. height: math.unit(2.3, "meters")
  29992. },
  29993. {
  29994. name: "Macro",
  29995. height: math.unit(91, "meters"),
  29996. default: true
  29997. },
  29998. {
  29999. name: "Megamacro",
  30000. height: math.unit(91440, "meters")
  30001. },
  30002. {
  30003. name: "Gigamacro",
  30004. height: math.unit(60960000, "meters")
  30005. },
  30006. {
  30007. name: "Teramacro",
  30008. height: math.unit(9144000000, "meters")
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30014. {
  30015. front: {
  30016. height: math.unit(1.7, "meters"),
  30017. weight: math.unit(130, "lb"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/kyu/front.svg",
  30021. extra: 415 / 395,
  30022. bottom: 5 / 420
  30023. }
  30024. },
  30025. head: {
  30026. height: math.unit(1.75, "feet"),
  30027. name: "Head",
  30028. image: {
  30029. source: "./media/characters/kyu/head.svg"
  30030. }
  30031. },
  30032. foot: {
  30033. height: math.unit(0.81, "feet"),
  30034. name: "Foot",
  30035. image: {
  30036. source: "./media/characters/kyu/foot.svg"
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(1.7, "meters")
  30044. },
  30045. {
  30046. name: "Macro",
  30047. height: math.unit(131, "feet"),
  30048. default: true
  30049. },
  30050. {
  30051. name: "Megamacro",
  30052. height: math.unit(91440, "meters")
  30053. },
  30054. {
  30055. name: "Gigamacro",
  30056. height: math.unit(60960000, "meters")
  30057. },
  30058. {
  30059. name: "Teramacro",
  30060. height: math.unit(9144000000, "meters")
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(7 + 1 / 12, "feet"),
  30069. weight: math.unit(250, "lb"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/joey/front.svg",
  30073. extra: 1791 / 1537,
  30074. bottom: 28 / 1816
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Micro",
  30081. height: math.unit(3, "inches")
  30082. },
  30083. {
  30084. name: "Normal",
  30085. height: math.unit(7 + 1 / 12, "feet"),
  30086. default: true
  30087. },
  30088. ]
  30089. ))
  30090. characterMakers.push(() => makeCharacter(
  30091. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30092. {
  30093. front: {
  30094. height: math.unit(165, "cm"),
  30095. weight: math.unit(140, "lb"),
  30096. name: "Front",
  30097. image: {
  30098. source: "./media/characters/sam-evans/front.svg",
  30099. extra: 3417 / 3230,
  30100. bottom: 41.3 / 3417
  30101. }
  30102. },
  30103. frontSixTails: {
  30104. height: math.unit(165, "cm"),
  30105. weight: math.unit(140, "lb"),
  30106. name: "Front-six-tails",
  30107. image: {
  30108. source: "./media/characters/sam-evans/front-six-tails.svg",
  30109. extra: 3417 / 3230,
  30110. bottom: 41.3 / 3417
  30111. }
  30112. },
  30113. back: {
  30114. height: math.unit(165, "cm"),
  30115. weight: math.unit(140, "lb"),
  30116. name: "Back",
  30117. image: {
  30118. source: "./media/characters/sam-evans/back.svg",
  30119. extra: 3227 / 3032,
  30120. bottom: 6.8 / 3234
  30121. }
  30122. },
  30123. face: {
  30124. height: math.unit(0.68, "feet"),
  30125. name: "Face",
  30126. image: {
  30127. source: "./media/characters/sam-evans/face.svg"
  30128. }
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Normal",
  30134. height: math.unit(165, "cm"),
  30135. default: true
  30136. },
  30137. {
  30138. name: "Macro",
  30139. height: math.unit(100, "meters")
  30140. },
  30141. {
  30142. name: "Macro+",
  30143. height: math.unit(800, "meters")
  30144. },
  30145. {
  30146. name: "Macro++",
  30147. height: math.unit(3, "km")
  30148. },
  30149. {
  30150. name: "Macro+++",
  30151. height: math.unit(30, "km")
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30157. {
  30158. front: {
  30159. height: math.unit(10, "feet"),
  30160. weight: math.unit(750, "lb"),
  30161. name: "Front",
  30162. image: {
  30163. source: "./media/characters/juliet-a/front.svg",
  30164. extra: 1766 / 1720,
  30165. bottom: 43 / 1809
  30166. }
  30167. },
  30168. back: {
  30169. height: math.unit(10, "feet"),
  30170. weight: math.unit(750, "lb"),
  30171. name: "Back",
  30172. image: {
  30173. source: "./media/characters/juliet-a/back.svg",
  30174. extra: 1781 / 1734,
  30175. bottom: 35 / 1810,
  30176. }
  30177. },
  30178. },
  30179. [
  30180. {
  30181. name: "Normal",
  30182. height: math.unit(10, "feet"),
  30183. default: true
  30184. },
  30185. {
  30186. name: "Dragon Form",
  30187. height: math.unit(250, "feet")
  30188. },
  30189. {
  30190. name: "Macro",
  30191. height: math.unit(1000, "feet")
  30192. },
  30193. {
  30194. name: "Megamacro",
  30195. height: math.unit(10000, "feet")
  30196. }
  30197. ]
  30198. ))
  30199. characterMakers.push(() => makeCharacter(
  30200. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30201. {
  30202. regular: {
  30203. height: math.unit(7 + 3 / 12, "feet"),
  30204. weight: math.unit(260, "lb"),
  30205. name: "Regular",
  30206. image: {
  30207. source: "./media/characters/wild/regular.svg",
  30208. extra: 97.45 / 92,
  30209. bottom: 6.8 / 104.3
  30210. }
  30211. },
  30212. biggums: {
  30213. height: math.unit(8 + 6 / 12, "feet"),
  30214. weight: math.unit(425, "lb"),
  30215. name: "Biggums",
  30216. image: {
  30217. source: "./media/characters/wild/biggums.svg",
  30218. extra: 97.45 / 92,
  30219. bottom: 7.5 / 132.34
  30220. }
  30221. },
  30222. mawRegular: {
  30223. height: math.unit(1.24, "feet"),
  30224. name: "Maw (Regular)",
  30225. image: {
  30226. source: "./media/characters/wild/maw.svg"
  30227. }
  30228. },
  30229. mawBiggums: {
  30230. height: math.unit(1.47, "feet"),
  30231. name: "Maw (Biggums)",
  30232. image: {
  30233. source: "./media/characters/wild/maw.svg"
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(7 + 3 / 12, "feet"),
  30241. default: true
  30242. },
  30243. ]
  30244. ))
  30245. characterMakers.push(() => makeCharacter(
  30246. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30247. {
  30248. front: {
  30249. height: math.unit(2.5, "meters"),
  30250. weight: math.unit(200, "kg"),
  30251. name: "Front",
  30252. image: {
  30253. source: "./media/characters/vidar/front.svg",
  30254. extra: 2994 / 2795,
  30255. bottom: 56 / 3061
  30256. }
  30257. },
  30258. back: {
  30259. height: math.unit(2.5, "meters"),
  30260. weight: math.unit(200, "kg"),
  30261. name: "Back",
  30262. image: {
  30263. source: "./media/characters/vidar/back.svg",
  30264. extra: 3131 / 2928,
  30265. bottom: 13.5 / 3141.5
  30266. }
  30267. },
  30268. feral: {
  30269. height: math.unit(2.5, "meters"),
  30270. weight: math.unit(2000, "kg"),
  30271. name: "Feral",
  30272. image: {
  30273. source: "./media/characters/vidar/feral.svg",
  30274. extra: 2790 / 1765,
  30275. bottom: 6 / 2796
  30276. }
  30277. },
  30278. },
  30279. [
  30280. {
  30281. name: "Normal",
  30282. height: math.unit(2.5, "meters"),
  30283. default: true
  30284. },
  30285. {
  30286. name: "Macro",
  30287. height: math.unit(100, "meters")
  30288. },
  30289. ]
  30290. ))
  30291. characterMakers.push(() => makeCharacter(
  30292. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30293. {
  30294. front: {
  30295. height: math.unit(5 + 9 / 12, "feet"),
  30296. weight: math.unit(120, "lb"),
  30297. name: "Front",
  30298. image: {
  30299. source: "./media/characters/ash/front.svg",
  30300. extra: 2189 / 1961,
  30301. bottom: 5.2 / 2194
  30302. }
  30303. },
  30304. },
  30305. [
  30306. {
  30307. name: "Normal",
  30308. height: math.unit(5 + 9 / 12, "feet"),
  30309. default: true
  30310. },
  30311. ]
  30312. ))
  30313. characterMakers.push(() => makeCharacter(
  30314. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30315. {
  30316. front: {
  30317. height: math.unit(9, "feet"),
  30318. weight: math.unit(10000, "lb"),
  30319. name: "Front",
  30320. image: {
  30321. source: "./media/characters/gygabite/front.svg",
  30322. bottom: 31.7 / 537.8,
  30323. extra: 505 / 370
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(9, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30337. {
  30338. front: {
  30339. height: math.unit(12, "feet"),
  30340. weight: math.unit(4000, "lb"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/p0tat0/front.svg",
  30344. extra: 1065 / 921,
  30345. bottom: 55.7 / 1121.25
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(12, "feet"),
  30353. default: true
  30354. },
  30355. ]
  30356. ))
  30357. characterMakers.push(() => makeCharacter(
  30358. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30359. {
  30360. side: {
  30361. height: math.unit(6.5, "feet"),
  30362. weight: math.unit(800, "lb"),
  30363. name: "Side",
  30364. image: {
  30365. source: "./media/characters/dusk/side.svg",
  30366. extra: 615 / 373,
  30367. bottom: 53 / 664
  30368. }
  30369. },
  30370. sitting: {
  30371. height: math.unit(7, "feet"),
  30372. weight: math.unit(800, "lb"),
  30373. name: "Sitting",
  30374. image: {
  30375. source: "./media/characters/dusk/sitting.svg",
  30376. extra: 753 / 425,
  30377. bottom: 33 / 774
  30378. }
  30379. },
  30380. head: {
  30381. height: math.unit(6.1, "feet"),
  30382. name: "Head",
  30383. image: {
  30384. source: "./media/characters/dusk/head.svg"
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Normal",
  30391. height: math.unit(7, "feet"),
  30392. default: true
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(15, "feet"),
  30401. weight: math.unit(7000, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/jay-direwolf/front.svg",
  30405. extra: 1810 / 1732,
  30406. bottom: 66 / 1892
  30407. }
  30408. },
  30409. },
  30410. [
  30411. {
  30412. name: "Normal",
  30413. height: math.unit(15, "feet"),
  30414. default: true
  30415. },
  30416. ]
  30417. ))
  30418. characterMakers.push(() => makeCharacter(
  30419. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30420. {
  30421. front: {
  30422. height: math.unit(4 + 9 / 12, "feet"),
  30423. weight: math.unit(130, "lb"),
  30424. name: "Front",
  30425. image: {
  30426. source: "./media/characters/anchovie/front.svg",
  30427. extra: 382 / 350,
  30428. bottom: 25 / 409
  30429. }
  30430. },
  30431. back: {
  30432. height: math.unit(4 + 9 / 12, "feet"),
  30433. weight: math.unit(130, "lb"),
  30434. name: "Back",
  30435. image: {
  30436. source: "./media/characters/anchovie/back.svg",
  30437. extra: 385 / 352,
  30438. bottom: 16.6 / 402
  30439. }
  30440. },
  30441. frontDressed: {
  30442. height: math.unit(4 + 9 / 12, "feet"),
  30443. weight: math.unit(130, "lb"),
  30444. name: "Front (Dressed)",
  30445. image: {
  30446. source: "./media/characters/anchovie/front-dressed.svg",
  30447. extra: 382 / 350,
  30448. bottom: 25 / 409
  30449. }
  30450. },
  30451. backDressed: {
  30452. height: math.unit(4 + 9 / 12, "feet"),
  30453. weight: math.unit(130, "lb"),
  30454. name: "Back (Dressed)",
  30455. image: {
  30456. source: "./media/characters/anchovie/back-dressed.svg",
  30457. extra: 385 / 352,
  30458. bottom: 16.6 / 402
  30459. }
  30460. },
  30461. },
  30462. [
  30463. {
  30464. name: "Micro",
  30465. height: math.unit(6.4, "inches")
  30466. },
  30467. {
  30468. name: "Normal",
  30469. height: math.unit(4 + 9 / 12, "feet"),
  30470. default: true
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30476. {
  30477. front: {
  30478. height: math.unit(2, "meters"),
  30479. weight: math.unit(180, "lb"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/acidrenamon/front.svg",
  30483. extra: 987 / 890,
  30484. bottom: 22.8 / 1009
  30485. }
  30486. },
  30487. back: {
  30488. height: math.unit(2, "meters"),
  30489. weight: math.unit(180, "lb"),
  30490. name: "Back",
  30491. image: {
  30492. source: "./media/characters/acidrenamon/back.svg",
  30493. extra: 983 / 891,
  30494. bottom: 8.4 / 992
  30495. }
  30496. },
  30497. head: {
  30498. height: math.unit(1.92, "feet"),
  30499. name: "Head",
  30500. image: {
  30501. source: "./media/characters/acidrenamon/head.svg"
  30502. }
  30503. },
  30504. rump: {
  30505. height: math.unit(1.72, "feet"),
  30506. name: "Rump",
  30507. image: {
  30508. source: "./media/characters/acidrenamon/rump.svg"
  30509. }
  30510. },
  30511. tail: {
  30512. height: math.unit(4.2, "feet"),
  30513. name: "Tail",
  30514. image: {
  30515. source: "./media/characters/acidrenamon/tail.svg"
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Normal",
  30522. height: math.unit(2, "meters"),
  30523. default: true
  30524. },
  30525. {
  30526. name: "Minimacro",
  30527. height: math.unit(7, "meters")
  30528. },
  30529. {
  30530. name: "Macro",
  30531. height: math.unit(200, "meters")
  30532. },
  30533. {
  30534. name: "Gigamacro",
  30535. height: math.unit(0.2, "earths")
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30541. {
  30542. front: {
  30543. height: math.unit(152, "feet"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/kenzie-lee/front.svg",
  30547. extra: 1869/1774,
  30548. bottom: 128/1997
  30549. }
  30550. },
  30551. side: {
  30552. height: math.unit(86, "feet"),
  30553. name: "Side",
  30554. image: {
  30555. source: "./media/characters/kenzie-lee/side.svg",
  30556. extra: 930/815,
  30557. bottom: 177/1107
  30558. }
  30559. },
  30560. paw: {
  30561. height: math.unit(15, "feet"),
  30562. name: "Paw",
  30563. image: {
  30564. source: "./media/characters/kenzie-lee/paw.svg"
  30565. }
  30566. },
  30567. },
  30568. [
  30569. {
  30570. name: "Kenzie Flea",
  30571. height: math.unit(2, "mm"),
  30572. default: true
  30573. },
  30574. {
  30575. name: "Micro",
  30576. height: math.unit(2, "inches")
  30577. },
  30578. {
  30579. name: "Normal",
  30580. height: math.unit(152, "feet")
  30581. },
  30582. {
  30583. name: "Megamacro",
  30584. height: math.unit(7, "miles")
  30585. },
  30586. {
  30587. name: "Gigamacro",
  30588. height: math.unit(8000, "miles")
  30589. },
  30590. ]
  30591. ))
  30592. characterMakers.push(() => makeCharacter(
  30593. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30594. {
  30595. front: {
  30596. height: math.unit(6, "feet"),
  30597. name: "Front",
  30598. image: {
  30599. source: "./media/characters/withers/front.svg",
  30600. extra: 1935/1760,
  30601. bottom: 72/2007
  30602. }
  30603. },
  30604. back: {
  30605. height: math.unit(6, "feet"),
  30606. name: "Back",
  30607. image: {
  30608. source: "./media/characters/withers/back.svg",
  30609. extra: 1944/1792,
  30610. bottom: 12/1956
  30611. }
  30612. },
  30613. dressed: {
  30614. height: math.unit(6, "feet"),
  30615. name: "Dressed",
  30616. image: {
  30617. source: "./media/characters/withers/dressed.svg",
  30618. extra: 1937/1765,
  30619. bottom: 73/2010
  30620. }
  30621. },
  30622. phase1: {
  30623. height: math.unit(1.1, "feet"),
  30624. name: "Phase 1",
  30625. image: {
  30626. source: "./media/characters/withers/phase-1.svg",
  30627. extra: 1885/1232,
  30628. bottom: 0/1885
  30629. }
  30630. },
  30631. phase2: {
  30632. height: math.unit(1.05, "feet"),
  30633. name: "Phase 2",
  30634. image: {
  30635. source: "./media/characters/withers/phase-2.svg",
  30636. extra: 1792/1090,
  30637. bottom: 0/1792
  30638. }
  30639. },
  30640. partyWipe: {
  30641. height: math.unit(1.1, "feet"),
  30642. name: "Party Wipe",
  30643. image: {
  30644. source: "./media/characters/withers/party-wipe.svg",
  30645. extra: 1864/1207,
  30646. bottom: 0/1864
  30647. }
  30648. },
  30649. },
  30650. [
  30651. {
  30652. name: "Macro",
  30653. height: math.unit(167, "feet"),
  30654. default: true
  30655. },
  30656. {
  30657. name: "Megamacro",
  30658. height: math.unit(15, "miles")
  30659. }
  30660. ]
  30661. ))
  30662. characterMakers.push(() => makeCharacter(
  30663. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30664. {
  30665. front: {
  30666. height: math.unit(6 + 7 / 12, "feet"),
  30667. weight: math.unit(250, "lb"),
  30668. name: "Front",
  30669. image: {
  30670. source: "./media/characters/nemoskii/front.svg",
  30671. extra: 2270 / 1734,
  30672. bottom: 86 / 2354
  30673. }
  30674. },
  30675. back: {
  30676. height: math.unit(6 + 7 / 12, "feet"),
  30677. weight: math.unit(250, "lb"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/nemoskii/back.svg",
  30681. extra: 1845 / 1788,
  30682. bottom: 10.5 / 1852
  30683. }
  30684. },
  30685. head: {
  30686. height: math.unit(1.31, "feet"),
  30687. name: "Head",
  30688. image: {
  30689. source: "./media/characters/nemoskii/head.svg"
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Micro",
  30696. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30697. },
  30698. {
  30699. name: "Normal",
  30700. height: math.unit(6 + 7 / 12, "feet"),
  30701. default: true
  30702. },
  30703. {
  30704. name: "Macro",
  30705. height: math.unit((6 + 7 / 12) * 150, "feet")
  30706. },
  30707. {
  30708. name: "Macro+",
  30709. height: math.unit((6 + 7 / 12) * 500, "feet")
  30710. },
  30711. {
  30712. name: "Megamacro",
  30713. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30714. },
  30715. ]
  30716. ))
  30717. characterMakers.push(() => makeCharacter(
  30718. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30719. {
  30720. front: {
  30721. height: math.unit(1, "mile"),
  30722. weight: math.unit(265261.9, "lb"),
  30723. name: "Front",
  30724. image: {
  30725. source: "./media/characters/shui/front.svg",
  30726. extra: 1633 / 1564,
  30727. bottom: 91.5 / 1726
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Macro",
  30734. height: math.unit(1, "mile"),
  30735. default: true
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(12 + 6 / 12, "feet"),
  30744. weight: math.unit(1342, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/arokh-takakura/front.svg",
  30748. extra: 1089 / 1043,
  30749. bottom: 77.4 / 1176.7
  30750. }
  30751. },
  30752. back: {
  30753. height: math.unit(12 + 6 / 12, "feet"),
  30754. weight: math.unit(1342, "lb"),
  30755. name: "Back",
  30756. image: {
  30757. source: "./media/characters/arokh-takakura/back.svg",
  30758. extra: 1046 / 1019,
  30759. bottom: 102 / 1150
  30760. }
  30761. },
  30762. },
  30763. [
  30764. {
  30765. name: "Big",
  30766. height: math.unit(12 + 6 / 12, "feet"),
  30767. default: true
  30768. },
  30769. ]
  30770. ))
  30771. characterMakers.push(() => makeCharacter(
  30772. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30773. {
  30774. front: {
  30775. height: math.unit(5 + 6 / 12, "feet"),
  30776. weight: math.unit(150, "lb"),
  30777. name: "Front",
  30778. image: {
  30779. source: "./media/characters/theo/front.svg",
  30780. extra: 1184 / 1131,
  30781. bottom: 7.4 / 1191
  30782. }
  30783. },
  30784. },
  30785. [
  30786. {
  30787. name: "Micro",
  30788. height: math.unit(5, "inches")
  30789. },
  30790. {
  30791. name: "Normal",
  30792. height: math.unit(5 + 6 / 12, "feet"),
  30793. default: true
  30794. },
  30795. ]
  30796. ))
  30797. characterMakers.push(() => makeCharacter(
  30798. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30799. {
  30800. front: {
  30801. height: math.unit(5 + 9 / 12, "feet"),
  30802. weight: math.unit(130, "lb"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/cecelia-swift/front.svg",
  30806. extra: 502 / 484,
  30807. bottom: 23 / 523
  30808. }
  30809. },
  30810. back: {
  30811. height: math.unit(5 + 9 / 12, "feet"),
  30812. weight: math.unit(130, "lb"),
  30813. name: "Back",
  30814. image: {
  30815. source: "./media/characters/cecelia-swift/back.svg",
  30816. extra: 499 / 485,
  30817. bottom: 12 / 511
  30818. }
  30819. },
  30820. head: {
  30821. height: math.unit(0.90, "feet"),
  30822. name: "Head",
  30823. image: {
  30824. source: "./media/characters/cecelia-swift/head.svg"
  30825. }
  30826. },
  30827. rump: {
  30828. height: math.unit(1.75, "feet"),
  30829. name: "Rump",
  30830. image: {
  30831. source: "./media/characters/cecelia-swift/rump.svg"
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(5 + 9 / 12, "feet"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Big",
  30843. height: math.unit(50, "feet")
  30844. },
  30845. {
  30846. name: "Macro",
  30847. height: math.unit(100, "feet")
  30848. },
  30849. {
  30850. name: "Macro+",
  30851. height: math.unit(500, "feet")
  30852. },
  30853. {
  30854. name: "Macro++",
  30855. height: math.unit(1000, "feet")
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(6, "feet"),
  30864. weight: math.unit(150, "lb"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/kaunan/front.svg",
  30868. extra: 2890 / 2523,
  30869. bottom: 49 / 2939
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Macro",
  30876. height: math.unit(150, "feet"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30883. {
  30884. dressed: {
  30885. height: math.unit(175, "cm"),
  30886. weight: math.unit(60, "kg"),
  30887. name: "Dressed",
  30888. image: {
  30889. source: "./media/characters/fei/dressed.svg",
  30890. extra: 1402/1278,
  30891. bottom: 27/1429
  30892. }
  30893. },
  30894. nude: {
  30895. height: math.unit(175, "cm"),
  30896. weight: math.unit(60, "kg"),
  30897. name: "Nude",
  30898. image: {
  30899. source: "./media/characters/fei/nude.svg",
  30900. extra: 1402/1278,
  30901. bottom: 27/1429
  30902. }
  30903. },
  30904. heels: {
  30905. height: math.unit(0.466, "feet"),
  30906. name: "Heels",
  30907. image: {
  30908. source: "./media/characters/fei/heels.svg",
  30909. extra: 156/152,
  30910. bottom: 28/184
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Mortal",
  30917. height: math.unit(175, "cm")
  30918. },
  30919. {
  30920. name: "Normal",
  30921. height: math.unit(3500, "m")
  30922. },
  30923. {
  30924. name: "Stroll",
  30925. height: math.unit(18.4, "km"),
  30926. default: true
  30927. },
  30928. {
  30929. name: "Showoff",
  30930. height: math.unit(175, "km")
  30931. },
  30932. ]
  30933. ))
  30934. characterMakers.push(() => makeCharacter(
  30935. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30936. {
  30937. front: {
  30938. height: math.unit(7, "feet"),
  30939. weight: math.unit(1000, "kg"),
  30940. name: "Front",
  30941. image: {
  30942. source: "./media/characters/edrax/front.svg",
  30943. extra: 2838 / 2550,
  30944. bottom: 130 / 2968
  30945. }
  30946. },
  30947. },
  30948. [
  30949. {
  30950. name: "Small",
  30951. height: math.unit(7, "feet")
  30952. },
  30953. {
  30954. name: "Normal",
  30955. height: math.unit(1500, "meters")
  30956. },
  30957. {
  30958. name: "Mega",
  30959. height: math.unit(12000000, "km"),
  30960. default: true
  30961. },
  30962. {
  30963. name: "Megamacro",
  30964. height: math.unit(10600000, "lightyears")
  30965. },
  30966. {
  30967. name: "Hypermacro",
  30968. height: math.unit(256, "yottameters")
  30969. },
  30970. ]
  30971. ))
  30972. characterMakers.push(() => makeCharacter(
  30973. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30974. {
  30975. front: {
  30976. height: math.unit(10, "feet"),
  30977. weight: math.unit(750, "lb"),
  30978. name: "Front",
  30979. image: {
  30980. source: "./media/characters/clove/front.svg",
  30981. extra: 1918/1751,
  30982. bottom: 52/1970
  30983. }
  30984. },
  30985. back: {
  30986. height: math.unit(10, "feet"),
  30987. weight: math.unit(750, "lb"),
  30988. name: "Back",
  30989. image: {
  30990. source: "./media/characters/clove/back.svg",
  30991. extra: 1912/1747,
  30992. bottom: 50/1962
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(10, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(4, "feet"),
  31009. weight: math.unit(50, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/alex-rabbit/front.svg",
  31013. extra: 507 / 458,
  31014. bottom: 18.5 / 527
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(4, "feet"),
  31019. weight: math.unit(50, "lb"),
  31020. name: "Back",
  31021. image: {
  31022. source: "./media/characters/alex-rabbit/back.svg",
  31023. extra: 502 / 460,
  31024. bottom: 18.9 / 521
  31025. }
  31026. },
  31027. },
  31028. [
  31029. {
  31030. name: "Normal",
  31031. height: math.unit(4, "feet"),
  31032. default: true
  31033. },
  31034. ]
  31035. ))
  31036. characterMakers.push(() => makeCharacter(
  31037. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31038. {
  31039. front: {
  31040. height: math.unit(1 + 3 / 12, "feet"),
  31041. weight: math.unit(80, "lb"),
  31042. name: "Front",
  31043. image: {
  31044. source: "./media/characters/zander-rose/front.svg",
  31045. extra: 916 / 797,
  31046. bottom: 17 / 933
  31047. }
  31048. },
  31049. back: {
  31050. height: math.unit(1 + 3 / 12, "feet"),
  31051. weight: math.unit(80, "lb"),
  31052. name: "Back",
  31053. image: {
  31054. source: "./media/characters/zander-rose/back.svg",
  31055. extra: 903 / 779,
  31056. bottom: 31 / 934
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Normal",
  31063. height: math.unit(1 + 3 / 12, "feet"),
  31064. default: true
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31070. {
  31071. anthro: {
  31072. height: math.unit(6, "feet"),
  31073. weight: math.unit(150, "lb"),
  31074. name: "Anthro",
  31075. image: {
  31076. source: "./media/characters/razz/anthro.svg",
  31077. extra: 1437 / 1343,
  31078. bottom: 48 / 1485
  31079. }
  31080. },
  31081. feral: {
  31082. height: math.unit(6, "feet"),
  31083. weight: math.unit(150, "lb"),
  31084. name: "Feral",
  31085. image: {
  31086. source: "./media/characters/razz/feral.svg",
  31087. extra: 2569 / 1385,
  31088. bottom: 95 / 2664
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(6, "feet"),
  31096. default: true
  31097. },
  31098. ]
  31099. ))
  31100. characterMakers.push(() => makeCharacter(
  31101. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31102. {
  31103. front: {
  31104. height: math.unit(9 + 4 / 12, "feet"),
  31105. weight: math.unit(500, "lb"),
  31106. name: "Front",
  31107. image: {
  31108. source: "./media/characters/morrigan/front.svg",
  31109. extra: 2707 / 2579,
  31110. bottom: 156 / 2863
  31111. }
  31112. },
  31113. },
  31114. [
  31115. {
  31116. name: "Normal",
  31117. height: math.unit(9 + 4 / 12, "feet"),
  31118. default: true
  31119. },
  31120. ]
  31121. ))
  31122. characterMakers.push(() => makeCharacter(
  31123. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31124. {
  31125. front: {
  31126. height: math.unit(5, "stories"),
  31127. weight: math.unit(4000, "lb"),
  31128. name: "Front",
  31129. image: {
  31130. source: "./media/characters/jenene/front.svg",
  31131. extra: 1780 / 1710,
  31132. bottom: 57 / 1837
  31133. }
  31134. },
  31135. },
  31136. [
  31137. {
  31138. name: "Normal",
  31139. height: math.unit(5, "stories"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31146. {
  31147. taurSfw: {
  31148. height: math.unit(10, "meters"),
  31149. weight: math.unit(17500, "kg"),
  31150. name: "Taur",
  31151. image: {
  31152. source: "./media/characters/faey/taur-sfw.svg",
  31153. extra: 1200 / 968,
  31154. bottom: 41 / 1241
  31155. }
  31156. },
  31157. chestmaw: {
  31158. height: math.unit(2.01, "meters"),
  31159. name: "Chestmaw",
  31160. image: {
  31161. source: "./media/characters/faey/chestmaw.svg"
  31162. }
  31163. },
  31164. foot: {
  31165. height: math.unit(2.43, "meters"),
  31166. name: "Foot",
  31167. image: {
  31168. source: "./media/characters/faey/foot.svg"
  31169. }
  31170. },
  31171. jaws: {
  31172. height: math.unit(1.66, "meters"),
  31173. name: "Jaws",
  31174. image: {
  31175. source: "./media/characters/faey/jaws.svg"
  31176. }
  31177. },
  31178. tongues: {
  31179. height: math.unit(2.01, "meters"),
  31180. name: "Tongues",
  31181. image: {
  31182. source: "./media/characters/faey/tongues.svg"
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Small",
  31189. height: math.unit(10, "meters"),
  31190. default: true
  31191. },
  31192. {
  31193. name: "Big",
  31194. height: math.unit(500000, "km")
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(7, "feet"),
  31203. weight: math.unit(275, "lb"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/roku/front.svg",
  31207. extra: 903 / 878,
  31208. bottom: 37 / 940
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(7, "feet"),
  31216. default: true
  31217. },
  31218. {
  31219. name: "Macro",
  31220. height: math.unit(500, "feet")
  31221. },
  31222. {
  31223. name: "Megamacro",
  31224. height: math.unit(200, "miles")
  31225. },
  31226. ]
  31227. ))
  31228. characterMakers.push(() => makeCharacter(
  31229. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31230. {
  31231. front: {
  31232. height: math.unit(6 + 2 / 12, "feet"),
  31233. weight: math.unit(150, "lb"),
  31234. name: "Front",
  31235. image: {
  31236. source: "./media/characters/lira/front.svg",
  31237. extra: 1727 / 1605,
  31238. bottom: 26 / 1753
  31239. }
  31240. },
  31241. back: {
  31242. height: math.unit(6 + 2 / 12, "feet"),
  31243. weight: math.unit(150, "lb"),
  31244. name: "Back",
  31245. image: {
  31246. source: "./media/characters/lira/back.svg",
  31247. extra: 1713/1621,
  31248. bottom: 20/1733
  31249. }
  31250. },
  31251. hand: {
  31252. height: math.unit(0.75, "feet"),
  31253. name: "Hand",
  31254. image: {
  31255. source: "./media/characters/lira/hand.svg"
  31256. }
  31257. },
  31258. maw: {
  31259. height: math.unit(0.65, "feet"),
  31260. name: "Maw",
  31261. image: {
  31262. source: "./media/characters/lira/maw.svg"
  31263. }
  31264. },
  31265. pawDigi: {
  31266. height: math.unit(1.6, "feet"),
  31267. name: "Paw Digi",
  31268. image: {
  31269. source: "./media/characters/lira/paw-digi.svg"
  31270. }
  31271. },
  31272. pawPlanti: {
  31273. height: math.unit(1.4, "feet"),
  31274. name: "Paw Planti",
  31275. image: {
  31276. source: "./media/characters/lira/paw-planti.svg"
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(6 + 2 / 12, "feet"),
  31284. default: true
  31285. },
  31286. {
  31287. name: "Macro",
  31288. height: math.unit(100, "feet")
  31289. },
  31290. {
  31291. name: "Macro²",
  31292. height: math.unit(1600, "feet")
  31293. },
  31294. {
  31295. name: "Planetary",
  31296. height: math.unit(20, "earths")
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(6, "feet"),
  31305. weight: math.unit(150, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/hadjet/front.svg",
  31309. extra: 1480 / 1346,
  31310. bottom: 26 / 1506
  31311. }
  31312. },
  31313. frontNsfw: {
  31314. height: math.unit(6, "feet"),
  31315. weight: math.unit(150, "lb"),
  31316. name: "Front (NSFW)",
  31317. image: {
  31318. source: "./media/characters/hadjet/front-nsfw.svg",
  31319. extra: 1440 / 1358,
  31320. bottom: 52 / 1492
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Macro",
  31327. height: math.unit(10, "stories"),
  31328. default: true
  31329. },
  31330. {
  31331. name: "Megamacro",
  31332. height: math.unit(1.5, "miles")
  31333. },
  31334. {
  31335. name: "Megamacro+",
  31336. height: math.unit(5, "miles")
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31342. {
  31343. side: {
  31344. height: math.unit(106, "feet"),
  31345. weight: math.unit(500, "tonnes"),
  31346. name: "Side",
  31347. image: {
  31348. source: "./media/characters/kodran/side.svg",
  31349. extra: 553 / 480,
  31350. bottom: 33 / 586
  31351. }
  31352. },
  31353. front: {
  31354. height: math.unit(132, "feet"),
  31355. weight: math.unit(500, "tonnes"),
  31356. name: "Front",
  31357. image: {
  31358. source: "./media/characters/kodran/front.svg",
  31359. extra: 667 / 643,
  31360. bottom: 42 / 709
  31361. }
  31362. },
  31363. flying: {
  31364. height: math.unit(350, "feet"),
  31365. weight: math.unit(500, "tonnes"),
  31366. name: "Flying",
  31367. image: {
  31368. source: "./media/characters/kodran/flying.svg"
  31369. }
  31370. },
  31371. foot: {
  31372. height: math.unit(33, "feet"),
  31373. name: "Foot",
  31374. image: {
  31375. source: "./media/characters/kodran/foot.svg"
  31376. }
  31377. },
  31378. footFront: {
  31379. height: math.unit(19, "feet"),
  31380. name: "Foot (Front)",
  31381. image: {
  31382. source: "./media/characters/kodran/foot-front.svg",
  31383. extra: 261 / 261,
  31384. bottom: 91 / 352
  31385. }
  31386. },
  31387. headFront: {
  31388. height: math.unit(53, "feet"),
  31389. name: "Head (Front)",
  31390. image: {
  31391. source: "./media/characters/kodran/head-front.svg"
  31392. }
  31393. },
  31394. headSide: {
  31395. height: math.unit(65, "feet"),
  31396. name: "Head (Side)",
  31397. image: {
  31398. source: "./media/characters/kodran/head-side.svg"
  31399. }
  31400. },
  31401. throat: {
  31402. height: math.unit(79, "feet"),
  31403. name: "Throat",
  31404. image: {
  31405. source: "./media/characters/kodran/throat.svg"
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Large",
  31412. height: math.unit(106, "feet"),
  31413. default: true
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31419. {
  31420. side: {
  31421. height: math.unit(11, "feet"),
  31422. weight: math.unit(150, "lb"),
  31423. name: "Side",
  31424. image: {
  31425. source: "./media/characters/pyxaron/side.svg",
  31426. extra: 305 / 195,
  31427. bottom: 17 / 322
  31428. }
  31429. },
  31430. },
  31431. [
  31432. {
  31433. name: "Normal",
  31434. height: math.unit(11, "feet"),
  31435. default: true
  31436. },
  31437. ]
  31438. ))
  31439. characterMakers.push(() => makeCharacter(
  31440. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31441. {
  31442. front: {
  31443. height: math.unit(6, "feet"),
  31444. weight: math.unit(150, "lb"),
  31445. name: "Front",
  31446. image: {
  31447. source: "./media/characters/meep/front.svg",
  31448. extra: 88 / 80,
  31449. bottom: 6 / 94
  31450. }
  31451. },
  31452. },
  31453. [
  31454. {
  31455. name: "Fun Sized",
  31456. height: math.unit(2, "inches"),
  31457. default: true
  31458. },
  31459. {
  31460. name: "Friend Sized",
  31461. height: math.unit(8, "inches")
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(15, "feet"),
  31470. weight: math.unit(2500, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/holly-rabbit/front.svg",
  31474. extra: 1433 / 1233,
  31475. bottom: 125 / 1558
  31476. }
  31477. },
  31478. dick: {
  31479. height: math.unit(4.6, "feet"),
  31480. name: "Dick",
  31481. image: {
  31482. source: "./media/characters/holly-rabbit/dick.svg"
  31483. }
  31484. },
  31485. },
  31486. [
  31487. {
  31488. name: "Normal",
  31489. height: math.unit(15, "feet"),
  31490. default: true
  31491. },
  31492. {
  31493. name: "Macro",
  31494. height: math.unit(250, "feet")
  31495. },
  31496. {
  31497. name: "Macro+",
  31498. height: math.unit(2500, "feet")
  31499. },
  31500. ]
  31501. ))
  31502. characterMakers.push(() => makeCharacter(
  31503. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31504. {
  31505. front: {
  31506. height: math.unit(3.02, "meters"),
  31507. weight: math.unit(500, "kg"),
  31508. name: "Front",
  31509. image: {
  31510. source: "./media/characters/drena/front.svg",
  31511. extra: 282 / 243,
  31512. bottom: 8 / 290
  31513. }
  31514. },
  31515. side: {
  31516. height: math.unit(3.02, "meters"),
  31517. weight: math.unit(500, "kg"),
  31518. name: "Side",
  31519. image: {
  31520. source: "./media/characters/drena/side.svg",
  31521. extra: 280 / 245,
  31522. bottom: 10 / 290
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(3.02, "meters"),
  31527. weight: math.unit(500, "kg"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/drena/back.svg",
  31531. extra: 278 / 243,
  31532. bottom: 2 / 280
  31533. }
  31534. },
  31535. foot: {
  31536. height: math.unit(0.75, "meters"),
  31537. name: "Foot",
  31538. image: {
  31539. source: "./media/characters/drena/foot.svg"
  31540. }
  31541. },
  31542. maw: {
  31543. height: math.unit(0.82, "meters"),
  31544. name: "Maw",
  31545. image: {
  31546. source: "./media/characters/drena/maw.svg"
  31547. }
  31548. },
  31549. eating: {
  31550. height: math.unit(0.75, "meters"),
  31551. name: "Eating",
  31552. image: {
  31553. source: "./media/characters/drena/eating.svg"
  31554. }
  31555. },
  31556. rump: {
  31557. height: math.unit(0.93, "meters"),
  31558. name: "Rump",
  31559. image: {
  31560. source: "./media/characters/drena/rump.svg"
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(3.02, "meters"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(6 + 4 / 12, "feet"),
  31577. weight: math.unit(250, "lb"),
  31578. name: "Front",
  31579. image: {
  31580. source: "./media/characters/remmyzilla/front.svg",
  31581. extra: 4033 / 3588,
  31582. bottom: 123 / 4156
  31583. }
  31584. },
  31585. back: {
  31586. height: math.unit(6 + 4 / 12, "feet"),
  31587. weight: math.unit(250, "lb"),
  31588. name: "Back",
  31589. image: {
  31590. source: "./media/characters/remmyzilla/back.svg",
  31591. extra: 1696/1602,
  31592. bottom: 63/1759
  31593. }
  31594. },
  31595. paw: {
  31596. height: math.unit(1.73, "feet"),
  31597. name: "Paw",
  31598. image: {
  31599. source: "./media/characters/remmyzilla/paw.svg"
  31600. },
  31601. extraAttributes: {
  31602. "toeSize": {
  31603. name: "Toe Size",
  31604. power: 2,
  31605. type: "area",
  31606. base: math.unit(0.0035, "m^2")
  31607. },
  31608. "padSize": {
  31609. name: "Pad Size",
  31610. power: 2,
  31611. type: "area",
  31612. base: math.unit(0.015, "m^2")
  31613. },
  31614. "pawsize": {
  31615. name: "Paw Size",
  31616. power: 2,
  31617. type: "area",
  31618. base: math.unit(0.072, "m^2")
  31619. },
  31620. }
  31621. },
  31622. maw: {
  31623. height: math.unit(1.73, "feet"),
  31624. name: "Maw",
  31625. image: {
  31626. source: "./media/characters/remmyzilla/maw.svg"
  31627. }
  31628. },
  31629. },
  31630. [
  31631. {
  31632. name: "Normal",
  31633. height: math.unit(6 + 4 / 12, "feet")
  31634. },
  31635. {
  31636. name: "Minimacro",
  31637. height: math.unit(12 + 8 / 12, "feet")
  31638. },
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(640, "feet"),
  31642. default: true
  31643. },
  31644. {
  31645. name: "Megamacro",
  31646. height: math.unit(6400, "feet")
  31647. },
  31648. {
  31649. name: "Gigamacro",
  31650. height: math.unit(64000, "miles")
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(2.5, "meters"),
  31659. weight: math.unit(300, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/lawrence/front.svg",
  31663. extra: 357 / 335,
  31664. bottom: 30 / 387
  31665. }
  31666. },
  31667. back: {
  31668. height: math.unit(2.5, "meters"),
  31669. weight: math.unit(300, "lb"),
  31670. name: "Back",
  31671. image: {
  31672. source: "./media/characters/lawrence/back.svg",
  31673. extra: 357 / 338,
  31674. bottom: 16 / 373
  31675. }
  31676. },
  31677. head: {
  31678. height: math.unit(0.9, "meter"),
  31679. name: "Head",
  31680. image: {
  31681. source: "./media/characters/lawrence/head.svg"
  31682. }
  31683. },
  31684. maw: {
  31685. height: math.unit(0.7, "meter"),
  31686. name: "Maw",
  31687. image: {
  31688. source: "./media/characters/lawrence/maw.svg"
  31689. }
  31690. },
  31691. footBottom: {
  31692. height: math.unit(0.5, "meter"),
  31693. name: "Foot (Bottom)",
  31694. image: {
  31695. source: "./media/characters/lawrence/foot-bottom.svg"
  31696. }
  31697. },
  31698. footTop: {
  31699. height: math.unit(0.5, "meter"),
  31700. name: "Foot (Top)",
  31701. image: {
  31702. source: "./media/characters/lawrence/foot-top.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(2.5, "meters"),
  31710. default: true
  31711. },
  31712. {
  31713. name: "Macro",
  31714. height: math.unit(95, "meters")
  31715. },
  31716. {
  31717. name: "Megamacro",
  31718. height: math.unit(150, "km")
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31724. {
  31725. front: {
  31726. height: math.unit(4.2, "meters"),
  31727. preyCapacity: math.unit(50, "m^3"),
  31728. weight: math.unit(30, "tonnes"),
  31729. name: "Front",
  31730. image: {
  31731. source: "./media/characters/sydney/front.svg",
  31732. extra: 1177/1129,
  31733. bottom: 197/1374
  31734. },
  31735. extraAttributes: {
  31736. "length": {
  31737. name: "Length",
  31738. power: 1,
  31739. type: "length",
  31740. base: math.unit(21, "meters")
  31741. },
  31742. }
  31743. },
  31744. },
  31745. [
  31746. {
  31747. name: "Normal",
  31748. height: math.unit(4.2, "meters"),
  31749. default: true
  31750. },
  31751. ]
  31752. ))
  31753. characterMakers.push(() => makeCharacter(
  31754. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31755. {
  31756. back: {
  31757. height: math.unit(201, "feet"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/jessica/back.svg",
  31761. extra: 273 / 259,
  31762. bottom: 7 / 280
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Normal",
  31769. height: math.unit(201, "feet"),
  31770. default: true
  31771. },
  31772. {
  31773. name: "Megamacro",
  31774. height: math.unit(8, "miles")
  31775. },
  31776. ]
  31777. ))
  31778. characterMakers.push(() => makeCharacter(
  31779. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31780. {
  31781. side: {
  31782. height: math.unit(5.6, "m"),
  31783. weight: math.unit(8000, "kg"),
  31784. name: "Side",
  31785. image: {
  31786. source: "./media/characters/victoria/side.svg",
  31787. extra: 1542/1229,
  31788. bottom: 124/1666
  31789. }
  31790. },
  31791. maw: {
  31792. height: math.unit(7.14, "feet"),
  31793. name: "Maw",
  31794. image: {
  31795. source: "./media/characters/victoria/maw.svg"
  31796. }
  31797. },
  31798. },
  31799. [
  31800. {
  31801. name: "Normal",
  31802. height: math.unit(5.6, "m"),
  31803. default: true
  31804. },
  31805. ]
  31806. ))
  31807. characterMakers.push(() => makeCharacter(
  31808. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31809. {
  31810. front: {
  31811. height: math.unit(5 + 6 / 12, "feet"),
  31812. name: "Front",
  31813. image: {
  31814. source: "./media/characters/cat/cat-front.svg",
  31815. extra: 1422/1262,
  31816. bottom: 61/1483
  31817. },
  31818. form: "cat",
  31819. default: true
  31820. },
  31821. back: {
  31822. height: math.unit(5 + 6 / 12, "feet"),
  31823. name: "Back",
  31824. image: {
  31825. source: "./media/characters/cat/cat-back.svg",
  31826. extra: 1466/1301,
  31827. bottom: 19/1485
  31828. },
  31829. form: "cat"
  31830. },
  31831. taur: {
  31832. height: math.unit(7, "feet"),
  31833. name: "Side",
  31834. image: {
  31835. source: "./media/characters/cat/taur-side.svg",
  31836. extra: 1389/1233,
  31837. bottom: 83/1472
  31838. },
  31839. form: "taur",
  31840. default: true
  31841. },
  31842. lucarioFront: {
  31843. height: math.unit(4, "feet"),
  31844. name: "Front",
  31845. image: {
  31846. source: "./media/characters/cat/lucario-front.svg",
  31847. extra: 1149/1019,
  31848. bottom: 84/1233
  31849. },
  31850. form: "lucario",
  31851. default: true
  31852. },
  31853. lucarioBack: {
  31854. height: math.unit(4, "feet"),
  31855. name: "Back",
  31856. image: {
  31857. source: "./media/characters/cat/lucario-back.svg",
  31858. extra: 1190/1059,
  31859. bottom: 33/1223
  31860. },
  31861. form: "lucario"
  31862. },
  31863. riolu_front: {
  31864. height: math.unit(2 + 4/12, "feet"),
  31865. name: "Front",
  31866. image: {
  31867. source: "./media/characters/cat/riolu-front.svg",
  31868. extra: 1104/956,
  31869. bottom: 70/1174
  31870. },
  31871. form: "riolu",
  31872. default: true
  31873. },
  31874. nickit: {
  31875. height: math.unit(2, "feet"),
  31876. name: "Side",
  31877. image: {
  31878. source: "./media/characters/cat/nickit-side.svg",
  31879. extra: 1087/852,
  31880. bottom: 67/1154
  31881. },
  31882. form: "nickit",
  31883. default: true
  31884. },
  31885. lopunnyFront: {
  31886. height: math.unit(5, "feet"),
  31887. name: "Front",
  31888. image: {
  31889. source: "./media/characters/cat/lopunny-front.svg",
  31890. extra: 1217/1078,
  31891. bottom: 23/1240
  31892. },
  31893. form: "lopunny",
  31894. default: true
  31895. },
  31896. lopunnyBack: {
  31897. height: math.unit(5, "feet"),
  31898. name: "Back",
  31899. image: {
  31900. source: "./media/characters/cat/lopunny-back.svg",
  31901. extra: 1205/1057,
  31902. bottom: 33/1238
  31903. },
  31904. form: "lopunny"
  31905. },
  31906. dog_front: {
  31907. height: math.unit(5 + 9/12, "feet"),
  31908. name: "Front",
  31909. image: {
  31910. source: "./media/characters/cat/dog-front.svg",
  31911. extra: 1403/1309,
  31912. bottom: 31/1434
  31913. },
  31914. form: "dog",
  31915. default: true
  31916. },
  31917. dog_back: {
  31918. height: math.unit(5 + 9/12, "feet"),
  31919. name: "Back",
  31920. image: {
  31921. source: "./media/characters/cat/dog-back.svg",
  31922. extra: 1393/1297,
  31923. bottom: 38/1431
  31924. },
  31925. form: "dog",
  31926. },
  31927. pikachu_front: {
  31928. height: math.unit(2.64, "feet"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/cat/pikachu-front.svg",
  31932. extra: 1224/958,
  31933. bottom: 34/1258
  31934. },
  31935. form: "pikachu",
  31936. default: true
  31937. },
  31938. pikachu_back: {
  31939. height: math.unit(2.64, "feet"),
  31940. name: "Back",
  31941. image: {
  31942. source: "./media/characters/cat/pikachu-back.svg",
  31943. extra: 1228/958,
  31944. bottom: 16/1244
  31945. },
  31946. form: "pikachu",
  31947. },
  31948. gigachuFront: {
  31949. height: math.unit(75, "feet"),
  31950. name: "Front",
  31951. image: {
  31952. source: "./media/characters/cat/gigachu-front.svg",
  31953. extra: 1239/1027,
  31954. bottom: 32/1271
  31955. },
  31956. form: "gigachu",
  31957. default: true
  31958. },
  31959. gigachuBack: {
  31960. height: math.unit(75, "feet"),
  31961. name: "Back",
  31962. image: {
  31963. source: "./media/characters/cat/gigachu-back.svg",
  31964. extra: 1229/1030,
  31965. bottom: 9/1238
  31966. },
  31967. form: "gigachu"
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Really small",
  31973. height: math.unit(1, "nm"),
  31974. allForms: true
  31975. },
  31976. {
  31977. name: "Micro",
  31978. height: math.unit(5, "inches"),
  31979. allForms: true
  31980. },
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(5 + 6 / 12, "feet"),
  31984. default: true,
  31985. form: "cat"
  31986. },
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(7, "feet"),
  31990. default: true,
  31991. form: "taur"
  31992. },
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(4, "feet"),
  31996. default: true,
  31997. form: "lucario"
  31998. },
  31999. {
  32000. name: "Normal",
  32001. height: math.unit(2, "feet"),
  32002. default: true,
  32003. form: "nickit"
  32004. },
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(5, "feet"),
  32008. default: true,
  32009. form: "lopunny"
  32010. },
  32011. {
  32012. name: "Normal",
  32013. height: math.unit(2 + 4/12, "feet"),
  32014. default: true,
  32015. form: "riolu"
  32016. },
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(5 + 6 / 12, "feet"),
  32020. default: true,
  32021. form: "dog"
  32022. },
  32023. {
  32024. name: "Macro",
  32025. height: math.unit(50, "feet"),
  32026. allForms: true
  32027. },
  32028. {
  32029. name: "Normal",
  32030. height: math.unit(2.64, "feet"),
  32031. default: true,
  32032. form: "pikachu"
  32033. },
  32034. {
  32035. name: "Dynamax",
  32036. height: math.unit(75, "feet"),
  32037. form: "gigachu",
  32038. default: true
  32039. },
  32040. {
  32041. name: "Macro+",
  32042. height: math.unit(150, "feet"),
  32043. allForms: true
  32044. },
  32045. {
  32046. name: "Megamacro",
  32047. height: math.unit(100, "miles"),
  32048. allForms: true
  32049. },
  32050. ],
  32051. {
  32052. "cat": {
  32053. name: "Cat",
  32054. default: true
  32055. },
  32056. "taur": {
  32057. name: "Taur",
  32058. },
  32059. "lucario": {
  32060. name: "Lucario",
  32061. },
  32062. "riolu": {
  32063. name: "Riolu",
  32064. },
  32065. "nickit": {
  32066. name: "Nickit",
  32067. },
  32068. "lopunny": {
  32069. name: "Lopunny",
  32070. },
  32071. "dog": {
  32072. name: "Dog",
  32073. },
  32074. "pikachu": {
  32075. name: "Pikachu",
  32076. },
  32077. "gigachu": {
  32078. name: "Gigachu",
  32079. ignoreAllFormSizes: true
  32080. }
  32081. }
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32085. {
  32086. front: {
  32087. height: math.unit(63.4, "meters"),
  32088. weight: math.unit(3.28349e+6, "kilograms"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/kirina-violet/front.svg",
  32092. extra: 2812 / 2725,
  32093. bottom: 0 / 2812
  32094. }
  32095. },
  32096. back: {
  32097. height: math.unit(63.4, "meters"),
  32098. weight: math.unit(3.28349e+6, "kilograms"),
  32099. name: "Back",
  32100. image: {
  32101. source: "./media/characters/kirina-violet/back.svg",
  32102. extra: 2812 / 2725,
  32103. bottom: 0 / 2812
  32104. }
  32105. },
  32106. mouth: {
  32107. height: math.unit(4.35, "meters"),
  32108. name: "Mouth",
  32109. image: {
  32110. source: "./media/characters/kirina-violet/mouth.svg"
  32111. }
  32112. },
  32113. paw: {
  32114. height: math.unit(5.6, "meters"),
  32115. name: "Paw",
  32116. image: {
  32117. source: "./media/characters/kirina-violet/paw.svg"
  32118. }
  32119. },
  32120. tail: {
  32121. height: math.unit(18, "meters"),
  32122. name: "Tail",
  32123. image: {
  32124. source: "./media/characters/kirina-violet/tail.svg"
  32125. }
  32126. },
  32127. },
  32128. [
  32129. {
  32130. name: "Macro",
  32131. height: math.unit(63.4, "meters"),
  32132. default: true
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32138. {
  32139. front: {
  32140. height: math.unit(6, "feet"),
  32141. weight: math.unit(150, "lb"),
  32142. name: "Front",
  32143. image: {
  32144. source: "./media/characters/sfaiyan/front.svg",
  32145. extra: 999 / 978,
  32146. bottom: 5 / 1004
  32147. }
  32148. },
  32149. },
  32150. [
  32151. {
  32152. name: "Normal",
  32153. height: math.unit(1.82, "meters")
  32154. },
  32155. {
  32156. name: "Giant",
  32157. height: math.unit(2.27, "km"),
  32158. default: true
  32159. },
  32160. ]
  32161. ))
  32162. characterMakers.push(() => makeCharacter(
  32163. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32164. {
  32165. front: {
  32166. height: math.unit(179, "cm"),
  32167. weight: math.unit(100, "kg"),
  32168. name: "Front",
  32169. image: {
  32170. source: "./media/characters/raunehkeli/front.svg",
  32171. extra: 1934 / 1926,
  32172. bottom: 0 / 1934
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Normal",
  32179. height: math.unit(179, "cm")
  32180. },
  32181. {
  32182. name: "Maximum",
  32183. height: math.unit(575, "meters"),
  32184. default: true
  32185. },
  32186. ]
  32187. ))
  32188. characterMakers.push(() => makeCharacter(
  32189. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32190. {
  32191. dressed: {
  32192. height: math.unit(6 + 2/12, "feet"),
  32193. weight: math.unit(150, "lb"),
  32194. name: "Dressed",
  32195. image: {
  32196. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32197. extra: 2620/2496,
  32198. bottom: 66/2686
  32199. }
  32200. },
  32201. nude: {
  32202. height: math.unit(6 + 2/12, "feet"),
  32203. weight: math.unit(150, "lb"),
  32204. name: "Nude",
  32205. image: {
  32206. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32207. extra: 2620/2496,
  32208. bottom: 66/2686
  32209. }
  32210. },
  32211. },
  32212. [
  32213. {
  32214. name: "Normal",
  32215. height: math.unit(6 + 2 / 12, "feet")
  32216. },
  32217. {
  32218. name: "Max Height",
  32219. height: math.unit(1181, "feet"),
  32220. default: true
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32226. {
  32227. front: {
  32228. height: math.unit(5 + 6 / 12, "feet"),
  32229. weight: math.unit(108, "lb"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/lilith-zott/front.svg",
  32233. extra: 2415/2133,
  32234. bottom: 193/2608
  32235. }
  32236. },
  32237. },
  32238. [
  32239. {
  32240. name: "Base Height",
  32241. height: math.unit(5 + 6 / 12, "feet")
  32242. },
  32243. {
  32244. name: "Preferred Height",
  32245. height: math.unit(200, "feet")
  32246. },
  32247. {
  32248. name: "Max Height",
  32249. height: math.unit(1030, "feet"),
  32250. default: true
  32251. },
  32252. ]
  32253. ))
  32254. characterMakers.push(() => makeCharacter(
  32255. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32256. {
  32257. super: {
  32258. height: math.unit(6 + 2/12, "feet"),
  32259. weight: math.unit(150, "lb"),
  32260. name: "Super",
  32261. image: {
  32262. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32263. extra: 2555/2387,
  32264. bottom: 50/2605
  32265. }
  32266. },
  32267. casual: {
  32268. height: math.unit(6 + 2/12, "feet"),
  32269. weight: math.unit(150, "lb"),
  32270. name: "Casual",
  32271. image: {
  32272. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32273. extra: 2555/2387,
  32274. bottom: 50/2605
  32275. }
  32276. },
  32277. hand: {
  32278. height: math.unit(1.08, "feet"),
  32279. name: "Hand",
  32280. image: {
  32281. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32282. }
  32283. },
  32284. paw: {
  32285. height: math.unit(1.33, "feet"),
  32286. name: "Paw",
  32287. image: {
  32288. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(6 + 2/12, "feet")
  32296. },
  32297. {
  32298. name: "Preferred Height",
  32299. height: math.unit(220, "feet")
  32300. },
  32301. {
  32302. name: "Max Height",
  32303. height: math.unit(1100, "feet"),
  32304. default: true
  32305. },
  32306. ]
  32307. ))
  32308. characterMakers.push(() => makeCharacter(
  32309. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32310. {
  32311. front: {
  32312. height: math.unit(100, "miles"),
  32313. name: "Front",
  32314. image: {
  32315. source: "./media/characters/sona/front.svg",
  32316. extra: 2433 / 2201,
  32317. bottom: 53 / 2486
  32318. }
  32319. },
  32320. foot: {
  32321. height: math.unit(16.1, "miles"),
  32322. name: "Foot",
  32323. image: {
  32324. source: "./media/characters/sona/foot.svg"
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Macro",
  32331. height: math.unit(100, "miles"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(6, "feet"),
  32341. weight: math.unit(150, "lb"),
  32342. name: "Front",
  32343. image: {
  32344. source: "./media/characters/bailey/front.svg",
  32345. extra: 1778 / 1724,
  32346. bottom: 30 / 1808
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Micro",
  32353. height: math.unit(4, "inches")
  32354. },
  32355. {
  32356. name: "Normal",
  32357. height: math.unit(5 + 5 / 12, "feet"),
  32358. default: true
  32359. },
  32360. {
  32361. name: "Macro",
  32362. height: math.unit(250, "feet")
  32363. },
  32364. {
  32365. name: "Megamacro",
  32366. height: math.unit(100, "miles")
  32367. },
  32368. ]
  32369. ))
  32370. characterMakers.push(() => makeCharacter(
  32371. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32372. {
  32373. front: {
  32374. height: math.unit(5 + 2 / 12, "feet"),
  32375. weight: math.unit(120, "lb"),
  32376. name: "Front",
  32377. image: {
  32378. source: "./media/characters/snaps/front.svg",
  32379. extra: 2370 / 2177,
  32380. bottom: 48 / 2418
  32381. }
  32382. },
  32383. back: {
  32384. height: math.unit(5 + 2 / 12, "feet"),
  32385. weight: math.unit(120, "lb"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/snaps/back.svg",
  32389. extra: 2408 / 2258,
  32390. bottom: 15 / 2423
  32391. }
  32392. },
  32393. },
  32394. [
  32395. {
  32396. name: "Micro",
  32397. height: math.unit(9, "inches")
  32398. },
  32399. {
  32400. name: "Normal",
  32401. height: math.unit(5 + 2 / 12, "feet"),
  32402. default: true
  32403. },
  32404. {
  32405. name: "Mini Macro",
  32406. height: math.unit(10, "feet")
  32407. },
  32408. ]
  32409. ))
  32410. characterMakers.push(() => makeCharacter(
  32411. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32412. {
  32413. front: {
  32414. height: math.unit(1.8, "meters"),
  32415. weight: math.unit(85, "kg"),
  32416. name: "Front",
  32417. image: {
  32418. source: "./media/characters/azteck/front.svg",
  32419. extra: 2815 / 2625,
  32420. bottom: 89 / 2904
  32421. }
  32422. },
  32423. back: {
  32424. height: math.unit(1.8, "meters"),
  32425. weight: math.unit(85, "kg"),
  32426. name: "Back",
  32427. image: {
  32428. source: "./media/characters/azteck/back.svg",
  32429. extra: 2856 / 2648,
  32430. bottom: 85 / 2941
  32431. }
  32432. },
  32433. frontDressed: {
  32434. height: math.unit(1.8, "meters"),
  32435. weight: math.unit(85, "kg"),
  32436. name: "Front (Dressed)",
  32437. image: {
  32438. source: "./media/characters/azteck/front-dressed.svg",
  32439. extra: 2147 / 2003,
  32440. bottom: 68 / 2215
  32441. }
  32442. },
  32443. head: {
  32444. height: math.unit(0.47, "meters"),
  32445. weight: math.unit(85, "kg"),
  32446. name: "Head",
  32447. image: {
  32448. source: "./media/characters/azteck/head.svg"
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Bite sized",
  32455. height: math.unit(16, "cm")
  32456. },
  32457. {
  32458. name: "Normal",
  32459. height: math.unit(1.8, "meters"),
  32460. default: true
  32461. },
  32462. ]
  32463. ))
  32464. characterMakers.push(() => makeCharacter(
  32465. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32466. {
  32467. front: {
  32468. height: math.unit(6, "feet"),
  32469. weight: math.unit(150, "lb"),
  32470. name: "Front",
  32471. image: {
  32472. source: "./media/characters/pidge/front.svg",
  32473. extra: 1936/1820,
  32474. bottom: 0/1936
  32475. }
  32476. },
  32477. back: {
  32478. height: math.unit(6, "feet"),
  32479. weight: math.unit(150, "lb"),
  32480. name: "Back",
  32481. image: {
  32482. source: "./media/characters/pidge/back.svg",
  32483. extra: 1938/1843,
  32484. bottom: 0/1938
  32485. }
  32486. },
  32487. casual: {
  32488. height: math.unit(6, "feet"),
  32489. weight: math.unit(150, "lb"),
  32490. name: "Casual",
  32491. image: {
  32492. source: "./media/characters/pidge/casual.svg",
  32493. extra: 1936/1820,
  32494. bottom: 0/1936
  32495. }
  32496. },
  32497. tech: {
  32498. height: math.unit(6, "feet"),
  32499. weight: math.unit(150, "lb"),
  32500. name: "Tech",
  32501. image: {
  32502. source: "./media/characters/pidge/tech.svg",
  32503. extra: 1802/1682,
  32504. bottom: 0/1802
  32505. }
  32506. },
  32507. head: {
  32508. height: math.unit(1.61, "feet"),
  32509. name: "Head",
  32510. image: {
  32511. source: "./media/characters/pidge/head.svg"
  32512. }
  32513. },
  32514. collar: {
  32515. height: math.unit(0.82, "feet"),
  32516. name: "Collar",
  32517. image: {
  32518. source: "./media/characters/pidge/collar.svg"
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(2, "mile"),
  32526. default: true
  32527. },
  32528. {
  32529. name: "PUPPY",
  32530. height: math.unit(20, "miles")
  32531. },
  32532. ]
  32533. ))
  32534. characterMakers.push(() => makeCharacter(
  32535. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32536. {
  32537. front: {
  32538. height: math.unit(6, "feet"),
  32539. weight: math.unit(150, "lb"),
  32540. name: "Front",
  32541. image: {
  32542. source: "./media/characters/en/front.svg",
  32543. extra: 1697 / 1563,
  32544. bottom: 103 / 1800
  32545. }
  32546. },
  32547. back: {
  32548. height: math.unit(6, "feet"),
  32549. weight: math.unit(150, "lb"),
  32550. name: "Back",
  32551. image: {
  32552. source: "./media/characters/en/back.svg",
  32553. extra: 1700 / 1570,
  32554. bottom: 51 / 1751
  32555. }
  32556. },
  32557. frontDressed: {
  32558. height: math.unit(6, "feet"),
  32559. weight: math.unit(150, "lb"),
  32560. name: "Front (Dressed)",
  32561. image: {
  32562. source: "./media/characters/en/front-dressed.svg",
  32563. extra: 1697 / 1563,
  32564. bottom: 103 / 1800
  32565. }
  32566. },
  32567. backDressed: {
  32568. height: math.unit(6, "feet"),
  32569. weight: math.unit(150, "lb"),
  32570. name: "Back (Dressed)",
  32571. image: {
  32572. source: "./media/characters/en/back-dressed.svg",
  32573. extra: 1700 / 1570,
  32574. bottom: 51 / 1751
  32575. }
  32576. },
  32577. },
  32578. [
  32579. {
  32580. name: "Macro",
  32581. height: math.unit(210, "feet"),
  32582. default: true
  32583. },
  32584. ]
  32585. ))
  32586. characterMakers.push(() => makeCharacter(
  32587. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32588. {
  32589. front: {
  32590. height: math.unit(6, "feet"),
  32591. weight: math.unit(150, "lb"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/haze-orris/front.svg",
  32595. extra: 3975 / 3525,
  32596. bottom: 137 / 4112
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Micro",
  32603. height: math.unit(150, "mm"),
  32604. default: true
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32610. {
  32611. front: {
  32612. height: math.unit(6, "feet"),
  32613. weight: math.unit(150, "lb"),
  32614. name: "Front",
  32615. image: {
  32616. source: "./media/characters/casselene-yaro/front.svg",
  32617. extra: 4721 / 4541,
  32618. bottom: 82 / 4803
  32619. }
  32620. },
  32621. back: {
  32622. height: math.unit(6, "feet"),
  32623. weight: math.unit(150, "lb"),
  32624. name: "Back",
  32625. image: {
  32626. source: "./media/characters/casselene-yaro/back.svg",
  32627. extra: 4569 / 4377,
  32628. bottom: 69 / 4638
  32629. }
  32630. },
  32631. dressed: {
  32632. height: math.unit(6, "feet"),
  32633. weight: math.unit(150, "lb"),
  32634. name: "Dressed",
  32635. image: {
  32636. source: "./media/characters/casselene-yaro/dressed.svg",
  32637. extra: 4721 / 4541,
  32638. bottom: 82 / 4803
  32639. }
  32640. },
  32641. maw: {
  32642. height: math.unit(1, "feet"),
  32643. name: "Maw",
  32644. image: {
  32645. source: "./media/characters/casselene-yaro/maw.svg"
  32646. }
  32647. },
  32648. },
  32649. [
  32650. {
  32651. name: "Macro",
  32652. height: math.unit(190, "feet"),
  32653. default: true
  32654. },
  32655. ]
  32656. ))
  32657. characterMakers.push(() => makeCharacter(
  32658. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32659. {
  32660. front: {
  32661. height: math.unit(10, "feet"),
  32662. weight: math.unit(15015, "lb"),
  32663. name: "Front",
  32664. image: {
  32665. source: "./media/characters/platine/front.svg",
  32666. extra: 1741/1650,
  32667. bottom: 84/1825
  32668. }
  32669. },
  32670. side: {
  32671. height: math.unit(10, "feet"),
  32672. weight: math.unit(15015, "lb"),
  32673. name: "Side",
  32674. image: {
  32675. source: "./media/characters/platine/side.svg",
  32676. extra: 1790/1705,
  32677. bottom: 29/1819
  32678. }
  32679. },
  32680. },
  32681. [
  32682. {
  32683. name: "Normal",
  32684. height: math.unit(10, "feet"),
  32685. default: true
  32686. },
  32687. {
  32688. name: "Macro",
  32689. height: math.unit(100, "feet")
  32690. },
  32691. {
  32692. name: "Megamacro",
  32693. height: math.unit(1000, "feet")
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(15 + 5 / 12, "feet"),
  32702. weight: math.unit(4600, "lb"),
  32703. name: "Front",
  32704. image: {
  32705. source: "./media/characters/neapolitan-ananassa/front.svg",
  32706. extra: 2903 / 2736,
  32707. bottom: 0 / 2903
  32708. }
  32709. },
  32710. side: {
  32711. height: math.unit(15 + 5 / 12, "feet"),
  32712. weight: math.unit(4600, "lb"),
  32713. name: "Side",
  32714. image: {
  32715. source: "./media/characters/neapolitan-ananassa/side.svg",
  32716. extra: 2925 / 2719,
  32717. bottom: 0 / 2925
  32718. }
  32719. },
  32720. back: {
  32721. height: math.unit(15 + 5 / 12, "feet"),
  32722. weight: math.unit(4600, "lb"),
  32723. name: "Back",
  32724. image: {
  32725. source: "./media/characters/neapolitan-ananassa/back.svg",
  32726. extra: 2903 / 2736,
  32727. bottom: 0 / 2903
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Normal",
  32734. height: math.unit(15 + 5 / 12, "feet"),
  32735. default: true
  32736. },
  32737. {
  32738. name: "Post-Millenium",
  32739. height: math.unit(35 + 5 / 12, "feet")
  32740. },
  32741. {
  32742. name: "Post-Era",
  32743. height: math.unit(450 + 5 / 12, "feet")
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(300, "meters"),
  32752. weight: math.unit(125000, "tonnes"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/pazuzu/front.svg",
  32756. extra: 877 / 794,
  32757. bottom: 47 / 924
  32758. }
  32759. },
  32760. },
  32761. [
  32762. {
  32763. name: "Macro",
  32764. height: math.unit(300, "meters"),
  32765. default: true
  32766. },
  32767. ]
  32768. ))
  32769. characterMakers.push(() => makeCharacter(
  32770. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32771. {
  32772. side: {
  32773. height: math.unit(10 + 7 / 12, "feet"),
  32774. weight: math.unit(2.5, "tons"),
  32775. name: "Side",
  32776. image: {
  32777. source: "./media/characters/aasha/side.svg",
  32778. extra: 1345 / 1245,
  32779. bottom: 111 / 1456
  32780. }
  32781. },
  32782. back: {
  32783. height: math.unit(10 + 7 / 12, "feet"),
  32784. weight: math.unit(2.5, "tons"),
  32785. name: "Back",
  32786. image: {
  32787. source: "./media/characters/aasha/back.svg",
  32788. extra: 1133 / 1057,
  32789. bottom: 257 / 1390
  32790. }
  32791. },
  32792. },
  32793. [
  32794. {
  32795. name: "Normal",
  32796. height: math.unit(10 + 7 / 12, "feet"),
  32797. default: true
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32803. {
  32804. front: {
  32805. height: math.unit(6 + 3 / 12, "feet"),
  32806. name: "Front",
  32807. image: {
  32808. source: "./media/characters/nevan/front.svg",
  32809. extra: 704 / 704,
  32810. bottom: 28 / 732
  32811. }
  32812. },
  32813. back: {
  32814. height: math.unit(6 + 3 / 12, "feet"),
  32815. name: "Back",
  32816. image: {
  32817. source: "./media/characters/nevan/back.svg",
  32818. extra: 714 / 714,
  32819. bottom: 21 / 735
  32820. }
  32821. },
  32822. frontFlaccid: {
  32823. height: math.unit(6 + 3 / 12, "feet"),
  32824. name: "Front (Flaccid)",
  32825. image: {
  32826. source: "./media/characters/nevan/front-flaccid.svg",
  32827. extra: 704 / 704,
  32828. bottom: 28 / 732
  32829. }
  32830. },
  32831. frontErect: {
  32832. height: math.unit(6 + 3 / 12, "feet"),
  32833. name: "Front (Erect)",
  32834. image: {
  32835. source: "./media/characters/nevan/front-erect.svg",
  32836. extra: 704 / 704,
  32837. bottom: 28 / 732
  32838. }
  32839. },
  32840. backFlaccid: {
  32841. height: math.unit(6 + 3 / 12, "feet"),
  32842. name: "Back (Flaccid)",
  32843. image: {
  32844. source: "./media/characters/nevan/back-flaccid.svg",
  32845. extra: 714 / 714,
  32846. bottom: 21 / 735
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(6 + 3 / 12, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(4, "feet"),
  32863. name: "Front",
  32864. image: {
  32865. source: "./media/characters/arhan/front.svg",
  32866. extra: 3368 / 3133,
  32867. bottom: 0 / 3368
  32868. }
  32869. },
  32870. side: {
  32871. height: math.unit(4, "feet"),
  32872. name: "Side",
  32873. image: {
  32874. source: "./media/characters/arhan/side.svg",
  32875. extra: 3347 / 3105,
  32876. bottom: 0 / 3347
  32877. }
  32878. },
  32879. tongue: {
  32880. height: math.unit(1.42, "feet"),
  32881. name: "Tongue",
  32882. image: {
  32883. source: "./media/characters/arhan/tongue.svg"
  32884. }
  32885. },
  32886. head: {
  32887. height: math.unit(0.85, "feet"),
  32888. name: "Head",
  32889. image: {
  32890. source: "./media/characters/arhan/head.svg"
  32891. }
  32892. },
  32893. },
  32894. [
  32895. {
  32896. name: "Normal",
  32897. height: math.unit(4, "feet"),
  32898. default: true
  32899. },
  32900. ]
  32901. ))
  32902. characterMakers.push(() => makeCharacter(
  32903. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32904. {
  32905. front: {
  32906. height: math.unit(5 + 7.5 / 12, "feet"),
  32907. weight: math.unit(120, "lb"),
  32908. name: "Front",
  32909. image: {
  32910. source: "./media/characters/digi-duncan/front.svg",
  32911. extra: 330 / 326,
  32912. bottom: 16 / 346
  32913. }
  32914. },
  32915. side: {
  32916. height: math.unit(5 + 7.5 / 12, "feet"),
  32917. weight: math.unit(120, "lb"),
  32918. name: "Side",
  32919. image: {
  32920. source: "./media/characters/digi-duncan/side.svg",
  32921. extra: 341 / 337,
  32922. bottom: 1 / 342
  32923. }
  32924. },
  32925. back: {
  32926. height: math.unit(5 + 7.5 / 12, "feet"),
  32927. weight: math.unit(120, "lb"),
  32928. name: "Back",
  32929. image: {
  32930. source: "./media/characters/digi-duncan/back.svg",
  32931. extra: 330 / 326,
  32932. bottom: 12 / 342
  32933. }
  32934. },
  32935. },
  32936. [
  32937. {
  32938. name: "Speck",
  32939. height: math.unit(0.25, "mm")
  32940. },
  32941. {
  32942. name: "Micro",
  32943. height: math.unit(5, "mm")
  32944. },
  32945. {
  32946. name: "Tiny",
  32947. height: math.unit(0.5, "inches"),
  32948. default: true
  32949. },
  32950. {
  32951. name: "Human",
  32952. height: math.unit(5 + 7.5 / 12, "feet")
  32953. },
  32954. {
  32955. name: "Minigiant",
  32956. height: math.unit(8 + 5.25, "feet")
  32957. },
  32958. {
  32959. name: "Giant",
  32960. height: math.unit(2000, "feet")
  32961. },
  32962. {
  32963. name: "Mega",
  32964. height: math.unit(371.1, "miles")
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32970. {
  32971. front: {
  32972. height: math.unit(2, "meters"),
  32973. weight: math.unit(350, "kg"),
  32974. name: "Front",
  32975. image: {
  32976. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32977. extra: 898 / 838,
  32978. bottom: 9 / 907
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Micro",
  32985. height: math.unit(8, "meters")
  32986. },
  32987. {
  32988. name: "Normal",
  32989. height: math.unit(50, "meters"),
  32990. default: true
  32991. },
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(500, "meters")
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(6 + 6 / 12, "feet"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/khardesh/front.svg",
  33006. extra: 1788/1596,
  33007. bottom: 66/1854
  33008. }
  33009. },
  33010. back: {
  33011. height: math.unit(6 + 6 / 12, "feet"),
  33012. name: "Back",
  33013. image: {
  33014. source: "./media/characters/khardesh/back.svg",
  33015. extra: 1781/1584,
  33016. bottom: 68/1849
  33017. }
  33018. },
  33019. },
  33020. [
  33021. {
  33022. name: "Normal",
  33023. height: math.unit(6 + 6 / 12, "feet"),
  33024. default: true
  33025. },
  33026. {
  33027. name: "Normal+",
  33028. height: math.unit(4, "meters")
  33029. },
  33030. {
  33031. name: "Macro",
  33032. height: math.unit(50, "meters")
  33033. },
  33034. {
  33035. name: "Macro+",
  33036. height: math.unit(100, "meters")
  33037. },
  33038. {
  33039. name: "Megamacro",
  33040. height: math.unit(20, "km")
  33041. },
  33042. ]
  33043. ))
  33044. characterMakers.push(() => makeCharacter(
  33045. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33046. {
  33047. front: {
  33048. height: math.unit(6, "feet"),
  33049. weight: math.unit(150, "lb"),
  33050. name: "Front",
  33051. image: {
  33052. source: "./media/characters/kosho/front.svg",
  33053. extra: 1847 / 1847,
  33054. bottom: 86 / 1933
  33055. }
  33056. },
  33057. },
  33058. [
  33059. {
  33060. name: "Second-stage micro",
  33061. height: math.unit(0.5, "inches")
  33062. },
  33063. {
  33064. name: "First-stage micro",
  33065. height: math.unit(6, "inches")
  33066. },
  33067. {
  33068. name: "Normal",
  33069. height: math.unit(6, "feet"),
  33070. default: true
  33071. },
  33072. {
  33073. name: "First-stage macro",
  33074. height: math.unit(72, "feet")
  33075. },
  33076. {
  33077. name: "Second-stage macro",
  33078. height: math.unit(864, "feet")
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33084. {
  33085. normal: {
  33086. height: math.unit(4 + 6 / 12, "feet"),
  33087. name: "Normal",
  33088. image: {
  33089. source: "./media/characters/hydra/normal.svg",
  33090. extra: 2833 / 2634,
  33091. bottom: 68 / 2901
  33092. }
  33093. },
  33094. smol: {
  33095. height: math.unit(0.705, "inches"),
  33096. name: "Smol",
  33097. image: {
  33098. source: "./media/characters/hydra/smol.svg",
  33099. extra: 2715 / 2540,
  33100. bottom: 0 / 2715
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(4 + 6 / 12, "feet"),
  33108. default: true
  33109. }
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33114. {
  33115. front: {
  33116. height: math.unit(0.6, "cm"),
  33117. name: "Front",
  33118. image: {
  33119. source: "./media/characters/daz/front.svg",
  33120. extra: 1682 / 1164,
  33121. bottom: 42 / 1724
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(0.6, "cm"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33135. {
  33136. front: {
  33137. height: math.unit(6, "feet"),
  33138. weight: math.unit(235, "lb"),
  33139. name: "Front",
  33140. image: {
  33141. source: "./media/characters/theo-pangolin/front.svg",
  33142. extra: 1996 / 1969,
  33143. bottom: 115 / 2111
  33144. }
  33145. },
  33146. back: {
  33147. height: math.unit(6, "feet"),
  33148. weight: math.unit(235, "lb"),
  33149. name: "Back",
  33150. image: {
  33151. source: "./media/characters/theo-pangolin/back.svg",
  33152. extra: 1979 / 1979,
  33153. bottom: 40 / 2019
  33154. }
  33155. },
  33156. feral: {
  33157. height: math.unit(2, "feet"),
  33158. weight: math.unit(30, "lb"),
  33159. name: "Feral",
  33160. image: {
  33161. source: "./media/characters/theo-pangolin/feral.svg",
  33162. extra: 803 / 791,
  33163. bottom: 181 / 984
  33164. }
  33165. },
  33166. footFive: {
  33167. height: math.unit(1.43, "feet"),
  33168. name: "Foot (Five Toes)",
  33169. image: {
  33170. source: "./media/characters/theo-pangolin/foot-five.svg"
  33171. }
  33172. },
  33173. footFour: {
  33174. height: math.unit(1.43, "feet"),
  33175. name: "Foot (Four Toes)",
  33176. image: {
  33177. source: "./media/characters/theo-pangolin/foot-four.svg"
  33178. }
  33179. },
  33180. handFour: {
  33181. height: math.unit(0.81, "feet"),
  33182. name: "Hand (Four Fingers)",
  33183. image: {
  33184. source: "./media/characters/theo-pangolin/hand-four.svg"
  33185. }
  33186. },
  33187. handThree: {
  33188. height: math.unit(0.81, "feet"),
  33189. name: "Hand (Three Fingers)",
  33190. image: {
  33191. source: "./media/characters/theo-pangolin/hand-three.svg"
  33192. }
  33193. },
  33194. headFront: {
  33195. height: math.unit(1.37, "feet"),
  33196. name: "Head (Front)",
  33197. image: {
  33198. source: "./media/characters/theo-pangolin/head-front.svg"
  33199. }
  33200. },
  33201. headSide: {
  33202. height: math.unit(1.43, "feet"),
  33203. name: "Head (Side)",
  33204. image: {
  33205. source: "./media/characters/theo-pangolin/head-side.svg"
  33206. }
  33207. },
  33208. tongue: {
  33209. height: math.unit(2.29, "feet"),
  33210. name: "Tongue",
  33211. image: {
  33212. source: "./media/characters/theo-pangolin/tongue.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(6, "feet")
  33220. },
  33221. {
  33222. name: "Macro",
  33223. height: math.unit(400, "feet"),
  33224. default: true
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(6, "inches"),
  33233. weight: math.unit(0.036, "kg"),
  33234. name: "Front",
  33235. image: {
  33236. source: "./media/characters/renée/front.svg",
  33237. extra: 900 / 886,
  33238. bottom: 8 / 908
  33239. }
  33240. },
  33241. },
  33242. [
  33243. {
  33244. name: "Nano",
  33245. height: math.unit(1, "nm")
  33246. },
  33247. {
  33248. name: "Micro",
  33249. height: math.unit(1, "mm")
  33250. },
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(6, "inches")
  33254. },
  33255. {
  33256. name: "Macro",
  33257. height: math.unit(2000, "feet"),
  33258. default: true
  33259. },
  33260. {
  33261. name: "Megamacro",
  33262. height: math.unit(2, "km")
  33263. },
  33264. {
  33265. name: "Gigamacro",
  33266. height: math.unit(2000, "km")
  33267. },
  33268. {
  33269. name: "Teramacro",
  33270. height: math.unit(250000, "km")
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(4, "meters"),
  33279. weight: math.unit(150, "kg"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/caledvwlch/front.svg",
  33283. extra: 1757/1537,
  33284. bottom: 31/1788
  33285. }
  33286. },
  33287. side: {
  33288. height: math.unit(4, "meters"),
  33289. weight: math.unit(150, "kg"),
  33290. name: "Side",
  33291. image: {
  33292. source: "./media/characters/caledvwlch/side.svg",
  33293. extra: 1605 / 1536,
  33294. bottom: 31 / 1636
  33295. }
  33296. },
  33297. back: {
  33298. height: math.unit(4, "meters"),
  33299. weight: math.unit(150, "kg"),
  33300. name: "Back",
  33301. image: {
  33302. source: "./media/characters/caledvwlch/back.svg",
  33303. extra: 1635 / 1565,
  33304. bottom: 27 / 1662
  33305. }
  33306. },
  33307. },
  33308. [
  33309. {
  33310. name: "\"Incognito\"",
  33311. height: math.unit(4, "meters")
  33312. },
  33313. {
  33314. name: "Small rampage",
  33315. height: math.unit(600, "meters")
  33316. },
  33317. {
  33318. name: "Mega",
  33319. height: math.unit(30, "km")
  33320. },
  33321. {
  33322. name: "Home-size",
  33323. height: math.unit(50, "km"),
  33324. default: true
  33325. },
  33326. {
  33327. name: "Giga",
  33328. height: math.unit(300, "km")
  33329. },
  33330. {
  33331. name: "Lounging",
  33332. height: math.unit(11000, "km")
  33333. },
  33334. {
  33335. name: "Planet snacking",
  33336. height: math.unit(2000000, "km")
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33342. {
  33343. front: {
  33344. height: math.unit(6, "feet"),
  33345. weight: math.unit(215, "lb"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/sapphire-svell/front.svg",
  33349. extra: 495 / 455,
  33350. bottom: 20 / 515
  33351. }
  33352. },
  33353. back: {
  33354. height: math.unit(6, "feet"),
  33355. weight: math.unit(216, "lb"),
  33356. name: "Back",
  33357. image: {
  33358. source: "./media/characters/sapphire-svell/back.svg",
  33359. extra: 497 / 477,
  33360. bottom: 7 / 504
  33361. }
  33362. },
  33363. maw: {
  33364. height: math.unit(1.57, "feet"),
  33365. name: "Maw",
  33366. image: {
  33367. source: "./media/characters/sapphire-svell/maw.svg"
  33368. }
  33369. },
  33370. foot: {
  33371. height: math.unit(1.07, "feet"),
  33372. name: "Foot",
  33373. image: {
  33374. source: "./media/characters/sapphire-svell/foot.svg"
  33375. }
  33376. },
  33377. toering: {
  33378. height: math.unit(1.7, "inch"),
  33379. name: "Toering",
  33380. image: {
  33381. source: "./media/characters/sapphire-svell/toering.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Normal",
  33388. height: math.unit(300, "feet"),
  33389. default: true
  33390. },
  33391. {
  33392. name: "Augmented",
  33393. height: math.unit(1250, "feet")
  33394. },
  33395. {
  33396. name: "Unleashed",
  33397. height: math.unit(3000, "feet")
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33403. {
  33404. side: {
  33405. height: math.unit(2 + 3 / 12, "feet"),
  33406. weight: math.unit(110, "lb"),
  33407. name: "Side",
  33408. image: {
  33409. source: "./media/characters/glitch-flux/side.svg",
  33410. extra: 997 / 805,
  33411. bottom: 20 / 1017
  33412. }
  33413. },
  33414. },
  33415. [
  33416. {
  33417. name: "Normal",
  33418. height: math.unit(2 + 3 / 12, "feet"),
  33419. default: true
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(4, "meters"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/mid/front.svg",
  33431. extra: 507 / 476,
  33432. bottom: 17 / 524
  33433. }
  33434. },
  33435. back: {
  33436. height: math.unit(4, "meters"),
  33437. name: "Back",
  33438. image: {
  33439. source: "./media/characters/mid/back.svg",
  33440. extra: 519 / 487,
  33441. bottom: 7 / 526
  33442. }
  33443. },
  33444. stuck: {
  33445. height: math.unit(2.2, "meters"),
  33446. name: "Stuck",
  33447. image: {
  33448. source: "./media/characters/mid/stuck.svg",
  33449. extra: 1951 / 1869,
  33450. bottom: 88 / 2039
  33451. }
  33452. }
  33453. },
  33454. [
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(4, "meters"),
  33458. default: true
  33459. },
  33460. {
  33461. name: "Big",
  33462. height: math.unit(10, "meters")
  33463. },
  33464. {
  33465. name: "Macro",
  33466. height: math.unit(800, "meters")
  33467. },
  33468. {
  33469. name: "Megamacro",
  33470. height: math.unit(100, "km")
  33471. },
  33472. {
  33473. name: "Overgrown",
  33474. height: math.unit(1, "parsec")
  33475. },
  33476. ]
  33477. ))
  33478. characterMakers.push(() => makeCharacter(
  33479. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33480. {
  33481. front: {
  33482. height: math.unit(2.5, "meters"),
  33483. weight: math.unit(225, "kg"),
  33484. name: "Front",
  33485. image: {
  33486. source: "./media/characters/iris/front.svg",
  33487. extra: 3348 / 3251,
  33488. bottom: 205 / 3553
  33489. }
  33490. },
  33491. maw: {
  33492. height: math.unit(0.56, "meter"),
  33493. name: "Maw",
  33494. image: {
  33495. source: "./media/characters/iris/maw.svg"
  33496. }
  33497. },
  33498. },
  33499. [
  33500. {
  33501. name: "Mewter cat",
  33502. height: math.unit(1.2, "meters")
  33503. },
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(2.5, "meters"),
  33507. default: true
  33508. },
  33509. {
  33510. name: "Minimacro",
  33511. height: math.unit(18, "feet")
  33512. },
  33513. {
  33514. name: "Macro",
  33515. height: math.unit(140, "feet")
  33516. },
  33517. {
  33518. name: "Macro+",
  33519. height: math.unit(180, "meters")
  33520. },
  33521. {
  33522. name: "Megamacro",
  33523. height: math.unit(2746, "meters")
  33524. },
  33525. ]
  33526. ))
  33527. characterMakers.push(() => makeCharacter(
  33528. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33529. {
  33530. front: {
  33531. height: math.unit(6, "feet"),
  33532. weight: math.unit(135, "lb"),
  33533. name: "Front",
  33534. image: {
  33535. source: "./media/characters/axel/front.svg",
  33536. extra: 908 / 908,
  33537. bottom: 58 / 966
  33538. }
  33539. },
  33540. side: {
  33541. height: math.unit(6, "feet"),
  33542. weight: math.unit(135, "lb"),
  33543. name: "Side",
  33544. image: {
  33545. source: "./media/characters/axel/side.svg",
  33546. extra: 958 / 958,
  33547. bottom: 11 / 969
  33548. }
  33549. },
  33550. back: {
  33551. height: math.unit(6, "feet"),
  33552. weight: math.unit(135, "lb"),
  33553. name: "Back",
  33554. image: {
  33555. source: "./media/characters/axel/back.svg",
  33556. extra: 887 / 887,
  33557. bottom: 34 / 921
  33558. }
  33559. },
  33560. head: {
  33561. height: math.unit(1.07, "feet"),
  33562. name: "Head",
  33563. image: {
  33564. source: "./media/characters/axel/head.svg"
  33565. }
  33566. },
  33567. beak: {
  33568. height: math.unit(1.4, "feet"),
  33569. name: "Beak",
  33570. image: {
  33571. source: "./media/characters/axel/beak.svg"
  33572. }
  33573. },
  33574. beakSide: {
  33575. height: math.unit(1.4, "feet"),
  33576. name: "Beak Side",
  33577. image: {
  33578. source: "./media/characters/axel/beak-side.svg"
  33579. }
  33580. },
  33581. sheath: {
  33582. height: math.unit(0.5, "feet"),
  33583. name: "Sheath",
  33584. image: {
  33585. source: "./media/characters/axel/sheath.svg"
  33586. }
  33587. },
  33588. dick: {
  33589. height: math.unit(0.98, "feet"),
  33590. name: "Dick",
  33591. image: {
  33592. source: "./media/characters/axel/dick.svg"
  33593. }
  33594. },
  33595. },
  33596. [
  33597. {
  33598. name: "Macro",
  33599. height: math.unit(68, "meters"),
  33600. default: true
  33601. },
  33602. ]
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33606. {
  33607. front: {
  33608. height: math.unit(3.5, "meters"),
  33609. weight: math.unit(1200, "kg"),
  33610. name: "Front",
  33611. image: {
  33612. source: "./media/characters/joanna/front.svg",
  33613. extra: 1596 / 1488,
  33614. bottom: 29 / 1625
  33615. }
  33616. },
  33617. back: {
  33618. height: math.unit(3.5, "meters"),
  33619. weight: math.unit(1200, "kg"),
  33620. name: "Back",
  33621. image: {
  33622. source: "./media/characters/joanna/back.svg",
  33623. extra: 1594 / 1495,
  33624. bottom: 26 / 1620
  33625. }
  33626. },
  33627. frontShorts: {
  33628. height: math.unit(3.5, "meters"),
  33629. weight: math.unit(1200, "kg"),
  33630. name: "Front (Shorts)",
  33631. image: {
  33632. source: "./media/characters/joanna/front-shorts.svg",
  33633. extra: 1596 / 1488,
  33634. bottom: 29 / 1625
  33635. }
  33636. },
  33637. frontBiker: {
  33638. height: math.unit(3.5, "meters"),
  33639. weight: math.unit(1200, "kg"),
  33640. name: "Front (Biker)",
  33641. image: {
  33642. source: "./media/characters/joanna/front-biker.svg",
  33643. extra: 1596 / 1488,
  33644. bottom: 29 / 1625
  33645. }
  33646. },
  33647. backBiker: {
  33648. height: math.unit(3.5, "meters"),
  33649. weight: math.unit(1200, "kg"),
  33650. name: "Back (Biker)",
  33651. image: {
  33652. source: "./media/characters/joanna/back-biker.svg",
  33653. extra: 1594 / 1495,
  33654. bottom: 88 / 1682
  33655. }
  33656. },
  33657. bikeLeft: {
  33658. height: math.unit(2.4, "meters"),
  33659. weight: math.unit(1600, "kg"),
  33660. name: "Bike (Left)",
  33661. image: {
  33662. source: "./media/characters/joanna/bike-left.svg",
  33663. extra: 720 / 720,
  33664. bottom: 8 / 728
  33665. }
  33666. },
  33667. bikeRight: {
  33668. height: math.unit(2.4, "meters"),
  33669. weight: math.unit(1600, "kg"),
  33670. name: "Bike (Right)",
  33671. image: {
  33672. source: "./media/characters/joanna/bike-right.svg",
  33673. extra: 720 / 720,
  33674. bottom: 8 / 728
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Incognito",
  33681. height: math.unit(3.5, "meters")
  33682. },
  33683. {
  33684. name: "Casual Big",
  33685. height: math.unit(200, "meters")
  33686. },
  33687. {
  33688. name: "Macro",
  33689. height: math.unit(600, "meters")
  33690. },
  33691. {
  33692. name: "Original",
  33693. height: math.unit(20, "km"),
  33694. default: true
  33695. },
  33696. {
  33697. name: "Giga",
  33698. height: math.unit(400, "km")
  33699. },
  33700. {
  33701. name: "Lounging",
  33702. height: math.unit(1500, "km")
  33703. },
  33704. {
  33705. name: "Planetary",
  33706. height: math.unit(200000, "km")
  33707. },
  33708. ]
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33712. {
  33713. front: {
  33714. height: math.unit(6, "feet"),
  33715. weight: math.unit(150, "lb"),
  33716. name: "Front",
  33717. image: {
  33718. source: "./media/characters/hugo-sigil/front.svg",
  33719. extra: 522 / 500,
  33720. bottom: 2 / 524
  33721. }
  33722. },
  33723. back: {
  33724. height: math.unit(6, "feet"),
  33725. weight: math.unit(150, "lb"),
  33726. name: "Back",
  33727. image: {
  33728. source: "./media/characters/hugo-sigil/back.svg",
  33729. extra: 519 / 495,
  33730. bottom: 5 / 524
  33731. }
  33732. },
  33733. maw: {
  33734. height: math.unit(1.4, "feet"),
  33735. weight: math.unit(150, "lb"),
  33736. name: "Maw",
  33737. image: {
  33738. source: "./media/characters/hugo-sigil/maw.svg"
  33739. }
  33740. },
  33741. feet: {
  33742. height: math.unit(1.56, "feet"),
  33743. weight: math.unit(150, "lb"),
  33744. name: "Feet",
  33745. image: {
  33746. source: "./media/characters/hugo-sigil/feet.svg",
  33747. extra: 177 / 177,
  33748. bottom: 12 / 189
  33749. }
  33750. },
  33751. },
  33752. [
  33753. {
  33754. name: "Normal",
  33755. height: math.unit(6, "feet")
  33756. },
  33757. {
  33758. name: "Macro",
  33759. height: math.unit(200, "feet"),
  33760. default: true
  33761. },
  33762. ]
  33763. ))
  33764. characterMakers.push(() => makeCharacter(
  33765. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33766. {
  33767. front: {
  33768. height: math.unit(6, "feet"),
  33769. weight: math.unit(150, "lb"),
  33770. name: "Front",
  33771. image: {
  33772. source: "./media/characters/peri/front.svg",
  33773. extra: 2354 / 2233,
  33774. bottom: 49 / 2403
  33775. }
  33776. },
  33777. },
  33778. [
  33779. {
  33780. name: "Really Small",
  33781. height: math.unit(1, "nm")
  33782. },
  33783. {
  33784. name: "Micro",
  33785. height: math.unit(4, "inches")
  33786. },
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(7, "inches"),
  33790. default: true
  33791. },
  33792. {
  33793. name: "Macro",
  33794. height: math.unit(400, "feet")
  33795. },
  33796. {
  33797. name: "Megamacro",
  33798. height: math.unit(100, "miles")
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33804. {
  33805. frontSlim: {
  33806. height: math.unit(7, "feet"),
  33807. name: "Front (Slim)",
  33808. image: {
  33809. source: "./media/characters/issilora/front-slim.svg",
  33810. extra: 529 / 449,
  33811. bottom: 53 / 582
  33812. }
  33813. },
  33814. sideSlim: {
  33815. height: math.unit(7, "feet"),
  33816. name: "Side (Slim)",
  33817. image: {
  33818. source: "./media/characters/issilora/side-slim.svg",
  33819. extra: 570 / 480,
  33820. bottom: 30 / 600
  33821. }
  33822. },
  33823. backSlim: {
  33824. height: math.unit(7, "feet"),
  33825. name: "Back (Slim)",
  33826. image: {
  33827. source: "./media/characters/issilora/back-slim.svg",
  33828. extra: 537 / 455,
  33829. bottom: 46 / 583
  33830. }
  33831. },
  33832. frontBuff: {
  33833. height: math.unit(7, "feet"),
  33834. name: "Front (Buff)",
  33835. image: {
  33836. source: "./media/characters/issilora/front-buff.svg",
  33837. extra: 2310 / 2035,
  33838. bottom: 335 / 2645
  33839. }
  33840. },
  33841. head: {
  33842. height: math.unit(1.94, "feet"),
  33843. name: "Head",
  33844. image: {
  33845. source: "./media/characters/issilora/head.svg"
  33846. }
  33847. },
  33848. },
  33849. [
  33850. {
  33851. name: "Minimum",
  33852. height: math.unit(7, "feet")
  33853. },
  33854. {
  33855. name: "Comfortable",
  33856. height: math.unit(17, "feet")
  33857. },
  33858. {
  33859. name: "Fun Size",
  33860. height: math.unit(47, "feet")
  33861. },
  33862. {
  33863. name: "Natural Macro",
  33864. height: math.unit(137, "feet"),
  33865. default: true
  33866. },
  33867. {
  33868. name: "Maximum Kaiju",
  33869. height: math.unit(397, "feet")
  33870. },
  33871. ]
  33872. ))
  33873. characterMakers.push(() => makeCharacter(
  33874. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33875. {
  33876. front: {
  33877. height: math.unit(50 + 9/12, "feet"),
  33878. weight: math.unit(32.8, "tons"),
  33879. name: "Front",
  33880. image: {
  33881. source: "./media/characters/irb'iiritaahn/front.svg",
  33882. extra: 1878/1826,
  33883. bottom: 326/2204
  33884. }
  33885. },
  33886. back: {
  33887. height: math.unit(50 + 9/12, "feet"),
  33888. weight: math.unit(32.8, "tons"),
  33889. name: "Back",
  33890. image: {
  33891. source: "./media/characters/irb'iiritaahn/back.svg",
  33892. extra: 2052/2018,
  33893. bottom: 152/2204
  33894. }
  33895. },
  33896. head: {
  33897. height: math.unit(12.86, "feet"),
  33898. name: "Head",
  33899. image: {
  33900. source: "./media/characters/irb'iiritaahn/head.svg"
  33901. }
  33902. },
  33903. maw: {
  33904. height: math.unit(9.66, "feet"),
  33905. name: "Maw",
  33906. image: {
  33907. source: "./media/characters/irb'iiritaahn/maw.svg"
  33908. }
  33909. },
  33910. frontDick: {
  33911. height: math.unit(8.78461, "feet"),
  33912. name: "Front Dick",
  33913. image: {
  33914. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33915. }
  33916. },
  33917. rearDick: {
  33918. height: math.unit(8.78461, "feet"),
  33919. name: "Rear Dick",
  33920. image: {
  33921. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33922. }
  33923. },
  33924. rearDickUnfolded: {
  33925. height: math.unit(8.78, "feet"),
  33926. name: "Rear Dick (Unfolded)",
  33927. image: {
  33928. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33929. }
  33930. },
  33931. wings: {
  33932. height: math.unit(43, "feet"),
  33933. name: "Wings",
  33934. image: {
  33935. source: "./media/characters/irb'iiritaahn/wings.svg"
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Macro",
  33942. height: math.unit(50 + 9/12, "feet"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(205, "cm"),
  33952. weight: math.unit(102, "kg"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/irbisgreif/front.svg",
  33956. extra: 785/706,
  33957. bottom: 13/798
  33958. }
  33959. },
  33960. back: {
  33961. height: math.unit(205, "cm"),
  33962. weight: math.unit(102, "kg"),
  33963. name: "Back",
  33964. image: {
  33965. source: "./media/characters/irbisgreif/back.svg",
  33966. extra: 713/701,
  33967. bottom: 26/739
  33968. }
  33969. },
  33970. frontDressed: {
  33971. height: math.unit(216, "cm"),
  33972. weight: math.unit(102, "kg"),
  33973. name: "Front-dressed",
  33974. image: {
  33975. source: "./media/characters/irbisgreif/front-dressed.svg",
  33976. extra: 902/776,
  33977. bottom: 14/916
  33978. }
  33979. },
  33980. sideDressed: {
  33981. height: math.unit(195, "cm"),
  33982. weight: math.unit(102, "kg"),
  33983. name: "Side-dressed",
  33984. image: {
  33985. source: "./media/characters/irbisgreif/side-dressed.svg",
  33986. extra: 788/688,
  33987. bottom: 21/809
  33988. }
  33989. },
  33990. backDressed: {
  33991. height: math.unit(216, "cm"),
  33992. weight: math.unit(102, "kg"),
  33993. name: "Back-dressed",
  33994. image: {
  33995. source: "./media/characters/irbisgreif/back-dressed.svg",
  33996. extra: 901/783,
  33997. bottom: 10/911
  33998. }
  33999. },
  34000. dick: {
  34001. height: math.unit(0.49, "feet"),
  34002. name: "Dick",
  34003. image: {
  34004. source: "./media/characters/irbisgreif/dick.svg"
  34005. }
  34006. },
  34007. wingTop: {
  34008. height: math.unit(1.93 , "feet"),
  34009. name: "Wing-top",
  34010. image: {
  34011. source: "./media/characters/irbisgreif/wing-top.svg"
  34012. }
  34013. },
  34014. wingBottom: {
  34015. height: math.unit(1.93 , "feet"),
  34016. name: "Wing-bottom",
  34017. image: {
  34018. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Normal",
  34025. height: math.unit(216, "cm"),
  34026. default: true
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34032. {
  34033. front: {
  34034. height: math.unit(6, "feet"),
  34035. weight: math.unit(150, "lb"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/pride/front.svg",
  34039. extra: 1299/1230,
  34040. bottom: 18/1317
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(7, "feet")
  34048. },
  34049. {
  34050. name: "Mini-macro",
  34051. height: math.unit(11, "feet")
  34052. },
  34053. {
  34054. name: "Macro",
  34055. height: math.unit(15, "meters"),
  34056. default: true
  34057. },
  34058. {
  34059. name: "Macro+",
  34060. height: math.unit(40, "meters")
  34061. },
  34062. ]
  34063. ))
  34064. characterMakers.push(() => makeCharacter(
  34065. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34066. {
  34067. front: {
  34068. height: math.unit(4 + 2 / 12, "feet"),
  34069. weight: math.unit(95, "lb"),
  34070. name: "Front",
  34071. image: {
  34072. source: "./media/characters/vaelophis-nyx/front.svg",
  34073. extra: 2532/2330,
  34074. bottom: 0/2532
  34075. }
  34076. },
  34077. back: {
  34078. height: math.unit(4 + 2 / 12, "feet"),
  34079. weight: math.unit(95, "lb"),
  34080. name: "Back",
  34081. image: {
  34082. source: "./media/characters/vaelophis-nyx/back.svg",
  34083. extra: 2484/2361,
  34084. bottom: 0/2484
  34085. }
  34086. },
  34087. feralSide: {
  34088. height: math.unit(2 + 1/12, "feet"),
  34089. weight: math.unit(20, "lb"),
  34090. name: "Feral (Side)",
  34091. image: {
  34092. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34093. extra: 1721/1581,
  34094. bottom: 70/1791
  34095. }
  34096. },
  34097. feralLazing: {
  34098. height: math.unit(1.08, "feet"),
  34099. weight: math.unit(20, "lb"),
  34100. name: "Feral (Lazing)",
  34101. image: {
  34102. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34103. extra: 822/822,
  34104. bottom: 248/1070
  34105. }
  34106. },
  34107. ear: {
  34108. height: math.unit(0.416, "feet"),
  34109. name: "Ear",
  34110. image: {
  34111. source: "./media/characters/vaelophis-nyx/ear.svg"
  34112. }
  34113. },
  34114. eye: {
  34115. height: math.unit(0.0748, "feet"),
  34116. name: "Eye",
  34117. image: {
  34118. source: "./media/characters/vaelophis-nyx/eye.svg"
  34119. }
  34120. },
  34121. mouth: {
  34122. height: math.unit(0.378, "feet"),
  34123. name: "Mouth",
  34124. image: {
  34125. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34126. }
  34127. },
  34128. spade: {
  34129. height: math.unit(0.55, "feet"),
  34130. name: "Spade",
  34131. image: {
  34132. source: "./media/characters/vaelophis-nyx/spade.svg"
  34133. }
  34134. },
  34135. },
  34136. [
  34137. {
  34138. name: "Normal",
  34139. height: math.unit(4 + 2/12, "feet"),
  34140. default: true
  34141. },
  34142. ]
  34143. ))
  34144. characterMakers.push(() => makeCharacter(
  34145. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34146. {
  34147. front: {
  34148. height: math.unit(7, "feet"),
  34149. weight: math.unit(231, "lb"),
  34150. name: "Front",
  34151. image: {
  34152. source: "./media/characters/flux/front.svg",
  34153. extra: 919/871,
  34154. bottom: 0/919
  34155. }
  34156. },
  34157. back: {
  34158. height: math.unit(7, "feet"),
  34159. weight: math.unit(231, "lb"),
  34160. name: "Back",
  34161. image: {
  34162. source: "./media/characters/flux/back.svg",
  34163. extra: 1040/992,
  34164. bottom: 0/1040
  34165. }
  34166. },
  34167. frontDressed: {
  34168. height: math.unit(7, "feet"),
  34169. weight: math.unit(231, "lb"),
  34170. name: "Front (Dressed)",
  34171. image: {
  34172. source: "./media/characters/flux/front-dressed.svg",
  34173. extra: 919/871,
  34174. bottom: 0/919
  34175. }
  34176. },
  34177. feralSide: {
  34178. height: math.unit(5, "feet"),
  34179. weight: math.unit(150, "lb"),
  34180. name: "Feral (Side)",
  34181. image: {
  34182. source: "./media/characters/flux/feral-side.svg",
  34183. extra: 598/528,
  34184. bottom: 28/626
  34185. }
  34186. },
  34187. head: {
  34188. height: math.unit(1.585, "feet"),
  34189. name: "Head",
  34190. image: {
  34191. source: "./media/characters/flux/head.svg"
  34192. }
  34193. },
  34194. headSide: {
  34195. height: math.unit(1.74, "feet"),
  34196. name: "Head (Side)",
  34197. image: {
  34198. source: "./media/characters/flux/head-side.svg"
  34199. }
  34200. },
  34201. headSideFire: {
  34202. height: math.unit(1.76, "feet"),
  34203. name: "Head (Side, Fire)",
  34204. image: {
  34205. source: "./media/characters/flux/head-side-fire.svg"
  34206. }
  34207. },
  34208. },
  34209. [
  34210. {
  34211. name: "Normal",
  34212. height: math.unit(7, "feet"),
  34213. default: true
  34214. },
  34215. ]
  34216. ))
  34217. characterMakers.push(() => makeCharacter(
  34218. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34219. {
  34220. front: {
  34221. height: math.unit(9, "feet"),
  34222. weight: math.unit(1012, "lb"),
  34223. name: "Front",
  34224. image: {
  34225. source: "./media/characters/ulfra-lupae/front.svg",
  34226. extra: 1083/1011,
  34227. bottom: 67/1150
  34228. }
  34229. },
  34230. },
  34231. [
  34232. {
  34233. name: "Micro",
  34234. height: math.unit(6, "inches")
  34235. },
  34236. {
  34237. name: "Socializing",
  34238. height: math.unit(6 + 5/12, "feet")
  34239. },
  34240. {
  34241. name: "Normal",
  34242. height: math.unit(9, "feet"),
  34243. default: true
  34244. },
  34245. {
  34246. name: "Macro",
  34247. height: math.unit(150, "feet")
  34248. },
  34249. ]
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34253. {
  34254. front: {
  34255. height: math.unit(5 + 2/12, "feet"),
  34256. weight: math.unit(120, "lb"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/timber/front.svg",
  34260. extra: 2814/2705,
  34261. bottom: 181/2995
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(5 + 2/12, "feet"),
  34269. default: true
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34275. {
  34276. front: {
  34277. height: math.unit(9, "feet"),
  34278. name: "Front",
  34279. image: {
  34280. source: "./media/characters/nicki/front.svg",
  34281. extra: 1240/990,
  34282. bottom: 45/1285
  34283. },
  34284. form: "anthro",
  34285. default: true
  34286. },
  34287. side: {
  34288. height: math.unit(9, "feet"),
  34289. name: "Side",
  34290. image: {
  34291. source: "./media/characters/nicki/side.svg",
  34292. extra: 1047/973,
  34293. bottom: 61/1108
  34294. },
  34295. form: "anthro"
  34296. },
  34297. back: {
  34298. height: math.unit(9, "feet"),
  34299. name: "Back",
  34300. image: {
  34301. source: "./media/characters/nicki/back.svg",
  34302. extra: 1006/965,
  34303. bottom: 39/1045
  34304. },
  34305. form: "anthro"
  34306. },
  34307. taur: {
  34308. height: math.unit(15, "feet"),
  34309. name: "Taur",
  34310. image: {
  34311. source: "./media/characters/nicki/taur.svg",
  34312. extra: 1592/1347,
  34313. bottom: 0/1592
  34314. },
  34315. form: "taur",
  34316. default: true
  34317. },
  34318. },
  34319. [
  34320. {
  34321. name: "Normal",
  34322. height: math.unit(9, "feet"),
  34323. form: "anthro",
  34324. default: true
  34325. },
  34326. {
  34327. name: "Normal",
  34328. height: math.unit(15, "feet"),
  34329. form: "taur",
  34330. default: true
  34331. }
  34332. ],
  34333. {
  34334. "anthro": {
  34335. name: "Anthro",
  34336. default: true
  34337. },
  34338. "taur": {
  34339. name: "Taur"
  34340. }
  34341. }
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34345. {
  34346. front: {
  34347. height: math.unit(7 + 10/12, "feet"),
  34348. weight: math.unit(3.5, "tons"),
  34349. name: "Front",
  34350. image: {
  34351. source: "./media/characters/lee/front.svg",
  34352. extra: 1773/1615,
  34353. bottom: 86/1859
  34354. }
  34355. },
  34356. hand: {
  34357. height: math.unit(1.78, "feet"),
  34358. name: "Hand",
  34359. image: {
  34360. source: "./media/characters/lee/hand.svg"
  34361. }
  34362. },
  34363. maw: {
  34364. height: math.unit(1.18, "feet"),
  34365. name: "Maw",
  34366. image: {
  34367. source: "./media/characters/lee/maw.svg"
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(7 + 10/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34381. {
  34382. front: {
  34383. height: math.unit(9, "feet"),
  34384. name: "Front",
  34385. image: {
  34386. source: "./media/characters/guti/front.svg",
  34387. extra: 4551/4355,
  34388. bottom: 123/4674
  34389. }
  34390. },
  34391. tongue: {
  34392. height: math.unit(1, "feet"),
  34393. name: "Tongue",
  34394. image: {
  34395. source: "./media/characters/guti/tongue.svg"
  34396. }
  34397. },
  34398. paw: {
  34399. height: math.unit(1.18, "feet"),
  34400. name: "Paw",
  34401. image: {
  34402. source: "./media/characters/guti/paw.svg"
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(9, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34416. {
  34417. side: {
  34418. height: math.unit(5, "meters"),
  34419. name: "Side",
  34420. image: {
  34421. source: "./media/characters/vesper/side.svg",
  34422. extra: 1605/1518,
  34423. bottom: 0/1605
  34424. }
  34425. },
  34426. },
  34427. [
  34428. {
  34429. name: "Small",
  34430. height: math.unit(5, "meters")
  34431. },
  34432. {
  34433. name: "Sage",
  34434. height: math.unit(100, "meters"),
  34435. default: true
  34436. },
  34437. {
  34438. name: "Fun Size",
  34439. height: math.unit(600, "meters")
  34440. },
  34441. {
  34442. name: "Goddess",
  34443. height: math.unit(20000, "km")
  34444. },
  34445. {
  34446. name: "Maximum",
  34447. height: math.unit(5, "galaxies")
  34448. },
  34449. ]
  34450. ))
  34451. characterMakers.push(() => makeCharacter(
  34452. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34453. {
  34454. front: {
  34455. height: math.unit(6 + 3/12, "feet"),
  34456. weight: math.unit(190, "lb"),
  34457. name: "Front",
  34458. image: {
  34459. source: "./media/characters/gawain/front.svg",
  34460. extra: 2222/2139,
  34461. bottom: 90/2312
  34462. }
  34463. },
  34464. back: {
  34465. height: math.unit(6 + 3/12, "feet"),
  34466. weight: math.unit(190, "lb"),
  34467. name: "Back",
  34468. image: {
  34469. source: "./media/characters/gawain/back.svg",
  34470. extra: 2199/2111,
  34471. bottom: 73/2272
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(6 + 3/12, "feet"),
  34479. default: true
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34485. {
  34486. side: {
  34487. height: math.unit(3.5, "meters"),
  34488. weight: math.unit(16000, "lb"),
  34489. name: "Side",
  34490. image: {
  34491. source: "./media/characters/dascalti/side.svg",
  34492. extra: 392/273,
  34493. bottom: 47/439
  34494. }
  34495. },
  34496. breath: {
  34497. height: math.unit(7.4, "feet"),
  34498. name: "Breath",
  34499. image: {
  34500. source: "./media/characters/dascalti/breath.svg"
  34501. }
  34502. },
  34503. fed: {
  34504. height: math.unit(3.6, "meters"),
  34505. weight: math.unit(16000, "lb"),
  34506. name: "Fed",
  34507. image: {
  34508. source: "./media/characters/dascalti/fed.svg",
  34509. extra: 1419/820,
  34510. bottom: 95/1514
  34511. }
  34512. },
  34513. },
  34514. [
  34515. {
  34516. name: "Normal",
  34517. height: math.unit(3.5, "meters"),
  34518. default: true
  34519. },
  34520. ]
  34521. ))
  34522. characterMakers.push(() => makeCharacter(
  34523. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34524. {
  34525. front: {
  34526. height: math.unit(3 + 5/12, "feet"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/mauve/front.svg",
  34530. extra: 1126/1033,
  34531. bottom: 65/1191
  34532. }
  34533. },
  34534. side: {
  34535. height: math.unit(3 + 5/12, "feet"),
  34536. name: "Side",
  34537. image: {
  34538. source: "./media/characters/mauve/side.svg",
  34539. extra: 1089/1001,
  34540. bottom: 29/1118
  34541. }
  34542. },
  34543. back: {
  34544. height: math.unit(3 + 5/12, "feet"),
  34545. name: "Back",
  34546. image: {
  34547. source: "./media/characters/mauve/back.svg",
  34548. extra: 1173/1053,
  34549. bottom: 109/1282
  34550. }
  34551. },
  34552. },
  34553. [
  34554. {
  34555. name: "Normal",
  34556. height: math.unit(3 + 5/12, "feet"),
  34557. default: true
  34558. },
  34559. ]
  34560. ))
  34561. characterMakers.push(() => makeCharacter(
  34562. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34563. {
  34564. front: {
  34565. height: math.unit(6 + 3/12, "feet"),
  34566. weight: math.unit(450, "lb"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/carlos/front.svg",
  34570. extra: 444/423,
  34571. bottom: 27/471
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(6 + 3/12, "feet"),
  34579. default: true
  34580. },
  34581. ]
  34582. ))
  34583. characterMakers.push(() => makeCharacter(
  34584. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34585. {
  34586. back: {
  34587. height: math.unit(5 + 10/12, "feet"),
  34588. weight: math.unit(200, "lb"),
  34589. name: "Back",
  34590. image: {
  34591. source: "./media/characters/jax/back.svg",
  34592. extra: 764/739,
  34593. bottom: 25/789
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Normal",
  34600. height: math.unit(5 + 10/12, "feet"),
  34601. default: true
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34607. {
  34608. front: {
  34609. height: math.unit(8, "feet"),
  34610. weight: math.unit(250, "lb"),
  34611. name: "Front",
  34612. image: {
  34613. source: "./media/characters/eikthynir/front.svg",
  34614. extra: 1332/1166,
  34615. bottom: 82/1414
  34616. }
  34617. },
  34618. back: {
  34619. height: math.unit(8, "feet"),
  34620. weight: math.unit(250, "lb"),
  34621. name: "Back",
  34622. image: {
  34623. source: "./media/characters/eikthynir/back.svg",
  34624. extra: 1342/1190,
  34625. bottom: 19/1361
  34626. }
  34627. },
  34628. dick: {
  34629. height: math.unit(2.35, "feet"),
  34630. name: "Dick",
  34631. image: {
  34632. source: "./media/characters/eikthynir/dick.svg"
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(8, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(99, "meters"),
  34649. weight: math.unit(13000, "tons"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/zlmos/front.svg",
  34653. extra: 2202/1992,
  34654. bottom: 315/2517
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Macro",
  34661. height: math.unit(99, "meters"),
  34662. default: true
  34663. },
  34664. ]
  34665. ))
  34666. characterMakers.push(() => makeCharacter(
  34667. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34668. {
  34669. front: {
  34670. height: math.unit(6 + 5/12, "feet"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/purri/front.svg",
  34674. extra: 1698/1610,
  34675. bottom: 32/1730
  34676. }
  34677. },
  34678. frontAlt: {
  34679. height: math.unit(6 + 5/12, "feet"),
  34680. name: "Front (Alt)",
  34681. image: {
  34682. source: "./media/characters/purri/front-alt.svg",
  34683. extra: 450/420,
  34684. bottom: 26/476
  34685. }
  34686. },
  34687. boots: {
  34688. height: math.unit(5.5, "feet"),
  34689. name: "Boots",
  34690. image: {
  34691. source: "./media/characters/purri/boots.svg",
  34692. extra: 905/853,
  34693. bottom: 18/923
  34694. },
  34695. extraAttributes: {
  34696. "shoeSize": {
  34697. name: "Shoe Size",
  34698. power: 1,
  34699. type: "length",
  34700. base: math.unit(12, "ShoeSizeMensUS")
  34701. },
  34702. "platformHeight": {
  34703. name: "Platform Height",
  34704. power: 1,
  34705. type: "length",
  34706. base: math.unit(2, "inches")
  34707. },
  34708. }
  34709. },
  34710. lying: {
  34711. height: math.unit(2, "feet"),
  34712. name: "Lying",
  34713. image: {
  34714. source: "./media/characters/purri/lying.svg",
  34715. extra: 940/843,
  34716. bottom: 146/1086
  34717. }
  34718. },
  34719. devious: {
  34720. height: math.unit(1.77, "feet"),
  34721. name: "Devious",
  34722. image: {
  34723. source: "./media/characters/purri/devious.svg",
  34724. extra: 1440/1155,
  34725. bottom: 147/1587
  34726. }
  34727. },
  34728. bean: {
  34729. height: math.unit(1.94, "feet"),
  34730. name: "Bean",
  34731. image: {
  34732. source: "./media/characters/purri/bean.svg"
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Micro",
  34739. height: math.unit(1, "mm")
  34740. },
  34741. {
  34742. name: "Normal",
  34743. height: math.unit(6 + 5/12, "feet"),
  34744. default: true
  34745. },
  34746. {
  34747. name: "Macro :3c",
  34748. height: math.unit(2, "miles")
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(6 + 2/12, "feet"),
  34757. weight: math.unit(250, "lb"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/moonlight/front.svg",
  34761. extra: 1044/908,
  34762. bottom: 56/1100
  34763. }
  34764. },
  34765. feral: {
  34766. height: math.unit(3 + 1/12, "feet"),
  34767. weight: math.unit(50, "kg"),
  34768. name: "Feral",
  34769. image: {
  34770. source: "./media/characters/moonlight/feral.svg",
  34771. extra: 3705/2791,
  34772. bottom: 145/3850
  34773. }
  34774. },
  34775. paw: {
  34776. height: math.unit(1, "feet"),
  34777. name: "Paw",
  34778. image: {
  34779. source: "./media/characters/moonlight/paw.svg"
  34780. }
  34781. },
  34782. paws: {
  34783. height: math.unit(0.98, "feet"),
  34784. name: "Paws",
  34785. image: {
  34786. source: "./media/characters/moonlight/paws.svg",
  34787. extra: 939/939,
  34788. bottom: 50/989
  34789. }
  34790. },
  34791. mouth: {
  34792. height: math.unit(0.48, "feet"),
  34793. name: "Mouth",
  34794. image: {
  34795. source: "./media/characters/moonlight/mouth.svg"
  34796. }
  34797. },
  34798. dick: {
  34799. height: math.unit(1.46, "feet"),
  34800. name: "Dick",
  34801. image: {
  34802. source: "./media/characters/moonlight/dick.svg"
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(6 + 2/12, "feet"),
  34810. default: true
  34811. },
  34812. {
  34813. name: "Macro",
  34814. height: math.unit(300, "feet")
  34815. },
  34816. {
  34817. name: "Macro+",
  34818. height: math.unit(1, "mile")
  34819. },
  34820. {
  34821. name: "Mt. Moon",
  34822. height: math.unit(5, "miles")
  34823. },
  34824. {
  34825. name: "Megamacro",
  34826. height: math.unit(15, "miles")
  34827. },
  34828. ]
  34829. ))
  34830. characterMakers.push(() => makeCharacter(
  34831. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34832. {
  34833. back: {
  34834. height: math.unit(6, "feet"),
  34835. weight: math.unit(150, "lb"),
  34836. name: "Back",
  34837. image: {
  34838. source: "./media/characters/sylen/back.svg",
  34839. extra: 1335/1273,
  34840. bottom: 107/1442
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(5 + 5/12, "feet")
  34848. },
  34849. {
  34850. name: "Megamacro",
  34851. height: math.unit(3, "miles"),
  34852. default: true
  34853. },
  34854. ]
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34858. {
  34859. front: {
  34860. height: math.unit(6, "feet"),
  34861. weight: math.unit(190, "lb"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/huttser/front.svg",
  34865. extra: 1152/1058,
  34866. bottom: 23/1175
  34867. }
  34868. },
  34869. side: {
  34870. height: math.unit(6, "feet"),
  34871. weight: math.unit(190, "lb"),
  34872. name: "Side",
  34873. image: {
  34874. source: "./media/characters/huttser/side.svg",
  34875. extra: 1174/1065,
  34876. bottom: 18/1192
  34877. }
  34878. },
  34879. back: {
  34880. height: math.unit(6, "feet"),
  34881. weight: math.unit(190, "lb"),
  34882. name: "Back",
  34883. image: {
  34884. source: "./media/characters/huttser/back.svg",
  34885. extra: 1158/1056,
  34886. bottom: 12/1170
  34887. }
  34888. },
  34889. },
  34890. [
  34891. ]
  34892. ))
  34893. characterMakers.push(() => makeCharacter(
  34894. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34895. {
  34896. side: {
  34897. height: math.unit(12 + 9/12, "feet"),
  34898. weight: math.unit(15000, "lb"),
  34899. name: "Side",
  34900. image: {
  34901. source: "./media/characters/faan/side.svg",
  34902. extra: 2747/2697,
  34903. bottom: 0/2747
  34904. }
  34905. },
  34906. front: {
  34907. height: math.unit(12 + 9/12, "feet"),
  34908. weight: math.unit(15000, "lb"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/faan/front.svg",
  34912. extra: 607/571,
  34913. bottom: 24/631
  34914. }
  34915. },
  34916. head: {
  34917. height: math.unit(2.85, "feet"),
  34918. name: "Head",
  34919. image: {
  34920. source: "./media/characters/faan/head.svg"
  34921. }
  34922. },
  34923. headAlt: {
  34924. height: math.unit(3.13, "feet"),
  34925. name: "Head-alt",
  34926. image: {
  34927. source: "./media/characters/faan/head-alt.svg"
  34928. }
  34929. },
  34930. },
  34931. [
  34932. {
  34933. name: "Normal",
  34934. height: math.unit(12 + 9/12, "feet"),
  34935. default: true
  34936. },
  34937. ]
  34938. ))
  34939. characterMakers.push(() => makeCharacter(
  34940. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34941. {
  34942. front: {
  34943. height: math.unit(6, "feet"),
  34944. weight: math.unit(300, "lb"),
  34945. name: "Front",
  34946. image: {
  34947. source: "./media/characters/tanio/front.svg",
  34948. extra: 711/673,
  34949. bottom: 25/736
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(6, "feet"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(3, "inches"),
  34966. name: "Front",
  34967. image: {
  34968. source: "./media/characters/noboru/front.svg",
  34969. extra: 1039/932,
  34970. bottom: 18/1057
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Micro",
  34977. height: math.unit(3, "inches"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34984. {
  34985. front: {
  34986. height: math.unit(1.85, "meters"),
  34987. weight: math.unit(80, "kg"),
  34988. name: "Front",
  34989. image: {
  34990. source: "./media/characters/daniel-barrett/front.svg",
  34991. extra: 355/337,
  34992. bottom: 9/364
  34993. }
  34994. },
  34995. },
  34996. [
  34997. {
  34998. name: "Pico",
  34999. height: math.unit(0.0433, "mm")
  35000. },
  35001. {
  35002. name: "Nano",
  35003. height: math.unit(1.5, "mm")
  35004. },
  35005. {
  35006. name: "Micro",
  35007. height: math.unit(5.3, "cm"),
  35008. default: true
  35009. },
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(1.85, "meters")
  35013. },
  35014. {
  35015. name: "Macro",
  35016. height: math.unit(64.7, "meters")
  35017. },
  35018. {
  35019. name: "Megamacro",
  35020. height: math.unit(2.26, "km")
  35021. },
  35022. {
  35023. name: "Gigamacro",
  35024. height: math.unit(79, "km")
  35025. },
  35026. {
  35027. name: "Teramacro",
  35028. height: math.unit(2765, "km")
  35029. },
  35030. {
  35031. name: "Petamacro",
  35032. height: math.unit(96678, "km")
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35038. {
  35039. front: {
  35040. height: math.unit(30, "meters"),
  35041. weight: math.unit(400, "tons"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/zeel/front.svg",
  35045. extra: 2599/2599,
  35046. bottom: 226/2825
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Macro",
  35053. height: math.unit(30, "meters"),
  35054. default: true
  35055. },
  35056. ]
  35057. ))
  35058. characterMakers.push(() => makeCharacter(
  35059. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35060. {
  35061. front: {
  35062. height: math.unit(6 + 7/12, "feet"),
  35063. weight: math.unit(210, "lb"),
  35064. name: "Front",
  35065. image: {
  35066. source: "./media/characters/tarn/front.svg",
  35067. extra: 3517/3220,
  35068. bottom: 91/3608
  35069. }
  35070. },
  35071. back: {
  35072. height: math.unit(6 + 7/12, "feet"),
  35073. weight: math.unit(210, "lb"),
  35074. name: "Back",
  35075. image: {
  35076. source: "./media/characters/tarn/back.svg",
  35077. extra: 3566/3241,
  35078. bottom: 34/3600
  35079. }
  35080. },
  35081. dick: {
  35082. height: math.unit(1.65, "feet"),
  35083. name: "Dick",
  35084. image: {
  35085. source: "./media/characters/tarn/dick.svg"
  35086. }
  35087. },
  35088. paw: {
  35089. height: math.unit(1.80, "feet"),
  35090. name: "Paw",
  35091. image: {
  35092. source: "./media/characters/tarn/paw.svg"
  35093. }
  35094. },
  35095. tongue: {
  35096. height: math.unit(0.97, "feet"),
  35097. name: "Tongue",
  35098. image: {
  35099. source: "./media/characters/tarn/tongue.svg"
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Micro",
  35106. height: math.unit(4, "inches")
  35107. },
  35108. {
  35109. name: "Normal",
  35110. height: math.unit(6 + 7/12, "feet"),
  35111. default: true
  35112. },
  35113. {
  35114. name: "Macro",
  35115. height: math.unit(300, "feet")
  35116. },
  35117. ]
  35118. ))
  35119. characterMakers.push(() => makeCharacter(
  35120. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35121. {
  35122. front: {
  35123. height: math.unit(5 + 7/12, "feet"),
  35124. weight: math.unit(80, "kg"),
  35125. name: "Front",
  35126. image: {
  35127. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35128. extra: 3023/2865,
  35129. bottom: 33/3056
  35130. }
  35131. },
  35132. back: {
  35133. height: math.unit(5 + 7/12, "feet"),
  35134. weight: math.unit(80, "kg"),
  35135. name: "Back",
  35136. image: {
  35137. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35138. extra: 3020/2886,
  35139. bottom: 30/3050
  35140. }
  35141. },
  35142. dick: {
  35143. height: math.unit(0.98, "feet"),
  35144. name: "Dick",
  35145. image: {
  35146. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35147. }
  35148. },
  35149. anatomy: {
  35150. height: math.unit(2.86, "feet"),
  35151. name: "Anatomy",
  35152. image: {
  35153. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Really Small",
  35160. height: math.unit(2, "inches")
  35161. },
  35162. {
  35163. name: "Micro",
  35164. height: math.unit(5.583, "inches")
  35165. },
  35166. {
  35167. name: "Normal",
  35168. height: math.unit(5 + 7/12, "feet"),
  35169. default: true
  35170. },
  35171. {
  35172. name: "Macro",
  35173. height: math.unit(67, "feet")
  35174. },
  35175. {
  35176. name: "Megamacro",
  35177. height: math.unit(134, "feet")
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(9, "feet"),
  35186. weight: math.unit(120, "lb"),
  35187. name: "Front",
  35188. image: {
  35189. source: "./media/characters/sally/front.svg",
  35190. extra: 1506/1349,
  35191. bottom: 66/1572
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(9, "feet"),
  35199. default: true
  35200. },
  35201. ]
  35202. ))
  35203. characterMakers.push(() => makeCharacter(
  35204. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35205. {
  35206. front: {
  35207. height: math.unit(8, "feet"),
  35208. weight: math.unit(900, "lb"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/owen/front.svg",
  35212. extra: 1761/1657,
  35213. bottom: 74/1835
  35214. }
  35215. },
  35216. side: {
  35217. height: math.unit(8, "feet"),
  35218. weight: math.unit(900, "lb"),
  35219. name: "Side",
  35220. image: {
  35221. source: "./media/characters/owen/side.svg",
  35222. extra: 1797/1734,
  35223. bottom: 30/1827
  35224. }
  35225. },
  35226. back: {
  35227. height: math.unit(8, "feet"),
  35228. weight: math.unit(900, "lb"),
  35229. name: "Back",
  35230. image: {
  35231. source: "./media/characters/owen/back.svg",
  35232. extra: 1796/1706,
  35233. bottom: 59/1855
  35234. }
  35235. },
  35236. maw: {
  35237. height: math.unit(1.76, "feet"),
  35238. name: "Maw",
  35239. image: {
  35240. source: "./media/characters/owen/maw.svg"
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(8, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35254. {
  35255. front: {
  35256. height: math.unit(4, "feet"),
  35257. weight: math.unit(400, "lb"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/ryth/front.svg",
  35261. extra: 1920/1748,
  35262. bottom: 42/1962
  35263. }
  35264. },
  35265. back: {
  35266. height: math.unit(4, "feet"),
  35267. weight: math.unit(400, "lb"),
  35268. name: "Back",
  35269. image: {
  35270. source: "./media/characters/ryth/back.svg",
  35271. extra: 1897/1690,
  35272. bottom: 89/1986
  35273. }
  35274. },
  35275. mouth: {
  35276. height: math.unit(1.39, "feet"),
  35277. name: "Mouth",
  35278. image: {
  35279. source: "./media/characters/ryth/mouth.svg"
  35280. }
  35281. },
  35282. tailmaw: {
  35283. height: math.unit(1.23, "feet"),
  35284. name: "Tailmaw",
  35285. image: {
  35286. source: "./media/characters/ryth/tailmaw.svg"
  35287. }
  35288. },
  35289. goia: {
  35290. height: math.unit(4, "meters"),
  35291. weight: math.unit(10800, "lb"),
  35292. name: "Goia",
  35293. image: {
  35294. source: "./media/characters/ryth/goia.svg",
  35295. extra: 745/640,
  35296. bottom: 107/852
  35297. }
  35298. },
  35299. goiaFront: {
  35300. height: math.unit(4, "meters"),
  35301. weight: math.unit(10800, "lb"),
  35302. name: "Goia (Front)",
  35303. image: {
  35304. source: "./media/characters/ryth/goia-front.svg",
  35305. extra: 750/586,
  35306. bottom: 114/864
  35307. }
  35308. },
  35309. goiaMaw: {
  35310. height: math.unit(5.55, "feet"),
  35311. name: "Goia Maw",
  35312. image: {
  35313. source: "./media/characters/ryth/goia-maw.svg"
  35314. }
  35315. },
  35316. goiaForepaw: {
  35317. height: math.unit(3.5, "feet"),
  35318. name: "Goia Forepaw",
  35319. image: {
  35320. source: "./media/characters/ryth/goia-forepaw.svg"
  35321. }
  35322. },
  35323. goiaHindpaw: {
  35324. height: math.unit(5.55, "feet"),
  35325. name: "Goia Hindpaw",
  35326. image: {
  35327. source: "./media/characters/ryth/goia-hindpaw.svg"
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(4, "feet"),
  35335. default: true
  35336. },
  35337. ]
  35338. ))
  35339. characterMakers.push(() => makeCharacter(
  35340. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35341. {
  35342. front: {
  35343. height: math.unit(7, "feet"),
  35344. weight: math.unit(180, "lb"),
  35345. name: "Front",
  35346. image: {
  35347. source: "./media/characters/necrolance/front.svg",
  35348. extra: 1062/947,
  35349. bottom: 41/1103
  35350. }
  35351. },
  35352. back: {
  35353. height: math.unit(7, "feet"),
  35354. weight: math.unit(180, "lb"),
  35355. name: "Back",
  35356. image: {
  35357. source: "./media/characters/necrolance/back.svg",
  35358. extra: 1045/984,
  35359. bottom: 14/1059
  35360. }
  35361. },
  35362. wing: {
  35363. height: math.unit(2.67, "feet"),
  35364. name: "Wing",
  35365. image: {
  35366. source: "./media/characters/necrolance/wing.svg"
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(7, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35380. {
  35381. front: {
  35382. height: math.unit(76, "meters"),
  35383. weight: math.unit(30000, "tons"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/tyler/front.svg",
  35387. extra: 1640/1640,
  35388. bottom: 114/1754
  35389. }
  35390. },
  35391. },
  35392. [
  35393. {
  35394. name: "Macro",
  35395. height: math.unit(76, "meters"),
  35396. default: true
  35397. },
  35398. ]
  35399. ))
  35400. characterMakers.push(() => makeCharacter(
  35401. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35402. {
  35403. front: {
  35404. height: math.unit(4 + 11/12, "feet"),
  35405. weight: math.unit(132, "lb"),
  35406. name: "Front",
  35407. image: {
  35408. source: "./media/characters/icey/front.svg",
  35409. extra: 2750/2550,
  35410. bottom: 33/2783
  35411. }
  35412. },
  35413. back: {
  35414. height: math.unit(4 + 11/12, "feet"),
  35415. weight: math.unit(132, "lb"),
  35416. name: "Back",
  35417. image: {
  35418. source: "./media/characters/icey/back.svg",
  35419. extra: 2624/2481,
  35420. bottom: 35/2659
  35421. }
  35422. },
  35423. },
  35424. [
  35425. {
  35426. name: "Normal",
  35427. height: math.unit(4 + 11/12, "feet"),
  35428. default: true
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(100, "feet"),
  35437. weight: math.unit(0, "lb"),
  35438. name: "Front",
  35439. image: {
  35440. source: "./media/characters/smile/front.svg",
  35441. extra: 2983/2912,
  35442. bottom: 162/3145
  35443. }
  35444. },
  35445. back: {
  35446. height: math.unit(100, "feet"),
  35447. weight: math.unit(0, "lb"),
  35448. name: "Back",
  35449. image: {
  35450. source: "./media/characters/smile/back.svg",
  35451. extra: 3143/3031,
  35452. bottom: 91/3234
  35453. }
  35454. },
  35455. head: {
  35456. height: math.unit(26.3, "feet"),
  35457. weight: math.unit(0, "lb"),
  35458. name: "Head",
  35459. image: {
  35460. source: "./media/characters/smile/head.svg"
  35461. }
  35462. },
  35463. collar: {
  35464. height: math.unit(5.3, "feet"),
  35465. weight: math.unit(0, "lb"),
  35466. name: "Collar",
  35467. image: {
  35468. source: "./media/characters/smile/collar.svg"
  35469. }
  35470. },
  35471. },
  35472. [
  35473. {
  35474. name: "Macro",
  35475. height: math.unit(100, "feet"),
  35476. default: true
  35477. },
  35478. ]
  35479. ))
  35480. characterMakers.push(() => makeCharacter(
  35481. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35482. {
  35483. dragon: {
  35484. height: math.unit(26, "feet"),
  35485. weight: math.unit(36, "tons"),
  35486. name: "Dragon",
  35487. image: {
  35488. source: "./media/characters/arimphae/dragon.svg",
  35489. extra: 1574/983,
  35490. bottom: 357/1931
  35491. }
  35492. },
  35493. drake: {
  35494. height: math.unit(9, "feet"),
  35495. weight: math.unit(1.5, "tons"),
  35496. name: "Drake",
  35497. image: {
  35498. source: "./media/characters/arimphae/drake.svg",
  35499. extra: 1120/925,
  35500. bottom: 435/1555
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Small",
  35507. height: math.unit(26*5/9, "feet")
  35508. },
  35509. {
  35510. name: "Normal",
  35511. height: math.unit(26, "feet"),
  35512. default: true
  35513. },
  35514. ]
  35515. ))
  35516. characterMakers.push(() => makeCharacter(
  35517. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35518. {
  35519. front: {
  35520. height: math.unit(8 + 9/12, "feet"),
  35521. name: "Front",
  35522. image: {
  35523. source: "./media/characters/xander/front.svg",
  35524. extra: 1237/974,
  35525. bottom: 94/1331
  35526. }
  35527. },
  35528. },
  35529. [
  35530. {
  35531. name: "Normal",
  35532. height: math.unit(8 + 9/12, "feet"),
  35533. default: true
  35534. },
  35535. {
  35536. name: "Gaze Grabber",
  35537. height: math.unit(13 + 8/12, "feet")
  35538. },
  35539. {
  35540. name: "Jaw Dropper",
  35541. height: math.unit(27, "feet")
  35542. },
  35543. {
  35544. name: "Show Stopper",
  35545. height: math.unit(136, "feet")
  35546. },
  35547. {
  35548. name: "Superstar",
  35549. height: math.unit(1.9e6, "miles")
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35555. {
  35556. side: {
  35557. height: math.unit(2100, "feet"),
  35558. name: "Side",
  35559. image: {
  35560. source: "./media/characters/osiris/side.svg",
  35561. extra: 1105/939,
  35562. bottom: 167/1272
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Macro",
  35569. height: math.unit(2100, "feet"),
  35570. default: true
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35576. {
  35577. front: {
  35578. height: math.unit(6 + 8/12, "feet"),
  35579. weight: math.unit(225, "lb"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/rhys-londe/front.svg",
  35583. extra: 2258/2141,
  35584. bottom: 188/2446
  35585. }
  35586. },
  35587. back: {
  35588. height: math.unit(6 + 8/12, "feet"),
  35589. weight: math.unit(225, "lb"),
  35590. name: "Back",
  35591. image: {
  35592. source: "./media/characters/rhys-londe/back.svg",
  35593. extra: 2237/2137,
  35594. bottom: 63/2300
  35595. }
  35596. },
  35597. frontNsfw: {
  35598. height: math.unit(6 + 8/12, "feet"),
  35599. weight: math.unit(225, "lb"),
  35600. name: "Front (NSFW)",
  35601. image: {
  35602. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35603. extra: 2258/2141,
  35604. bottom: 188/2446
  35605. }
  35606. },
  35607. backNsfw: {
  35608. height: math.unit(6 + 8/12, "feet"),
  35609. weight: math.unit(225, "lb"),
  35610. name: "Back (NSFW)",
  35611. image: {
  35612. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35613. extra: 2237/2137,
  35614. bottom: 63/2300
  35615. }
  35616. },
  35617. dick: {
  35618. height: math.unit(30, "inches"),
  35619. name: "Dick",
  35620. image: {
  35621. source: "./media/characters/rhys-londe/dick.svg"
  35622. }
  35623. },
  35624. maw: {
  35625. height: math.unit(1.6, "feet"),
  35626. name: "Maw",
  35627. image: {
  35628. source: "./media/characters/rhys-londe/maw.svg"
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(6 + 8/12, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(3 + 10/12, "feet"),
  35645. weight: math.unit(90, "lb"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/taivas-ensim/front.svg",
  35649. extra: 1327/1216,
  35650. bottom: 96/1423
  35651. }
  35652. },
  35653. back: {
  35654. height: math.unit(3 + 10/12, "feet"),
  35655. weight: math.unit(90, "lb"),
  35656. name: "Back",
  35657. image: {
  35658. source: "./media/characters/taivas-ensim/back.svg",
  35659. extra: 1355/1247,
  35660. bottom: 11/1366
  35661. }
  35662. },
  35663. frontNsfw: {
  35664. height: math.unit(3 + 10/12, "feet"),
  35665. weight: math.unit(90, "lb"),
  35666. name: "Front (NSFW)",
  35667. image: {
  35668. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35669. extra: 1327/1216,
  35670. bottom: 96/1423
  35671. }
  35672. },
  35673. backNsfw: {
  35674. height: math.unit(3 + 10/12, "feet"),
  35675. weight: math.unit(90, "lb"),
  35676. name: "Back (NSFW)",
  35677. image: {
  35678. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35679. extra: 1355/1247,
  35680. bottom: 11/1366
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(3 + 10/12, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(9 + 6/12, "feet"),
  35697. weight: math.unit(940, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/byliss/front.svg",
  35701. extra: 1327/1290,
  35702. bottom: 82/1409
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(9 + 6/12, "feet"),
  35707. weight: math.unit(940, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/byliss/back.svg",
  35711. extra: 1376/1349,
  35712. bottom: 9/1385
  35713. }
  35714. },
  35715. frontNsfw: {
  35716. height: math.unit(9 + 6/12, "feet"),
  35717. weight: math.unit(940, "lb"),
  35718. name: "Front (NSFW)",
  35719. image: {
  35720. source: "./media/characters/byliss/front-nsfw.svg",
  35721. extra: 1327/1290,
  35722. bottom: 82/1409
  35723. }
  35724. },
  35725. backNsfw: {
  35726. height: math.unit(9 + 6/12, "feet"),
  35727. weight: math.unit(940, "lb"),
  35728. name: "Back (NSFW)",
  35729. image: {
  35730. source: "./media/characters/byliss/back-nsfw.svg",
  35731. extra: 1376/1349,
  35732. bottom: 9/1385
  35733. }
  35734. },
  35735. },
  35736. [
  35737. {
  35738. name: "Normal",
  35739. height: math.unit(9 + 6/12, "feet"),
  35740. default: true
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35746. {
  35747. front: {
  35748. height: math.unit(5 + 2/12, "feet"),
  35749. weight: math.unit(200, "lb"),
  35750. name: "Front",
  35751. image: {
  35752. source: "./media/characters/noraly/front.svg",
  35753. extra: 4985/4773,
  35754. bottom: 150/5135
  35755. }
  35756. },
  35757. full: {
  35758. height: math.unit(5 + 2/12, "feet"),
  35759. weight: math.unit(164, "lb"),
  35760. name: "Full",
  35761. image: {
  35762. source: "./media/characters/noraly/full.svg",
  35763. extra: 1114/1059,
  35764. bottom: 35/1149
  35765. }
  35766. },
  35767. fuller: {
  35768. height: math.unit(5 + 2/12, "feet"),
  35769. weight: math.unit(230, "lb"),
  35770. name: "Fuller",
  35771. image: {
  35772. source: "./media/characters/noraly/fuller.svg",
  35773. extra: 1114/1059,
  35774. bottom: 35/1149
  35775. }
  35776. },
  35777. fullest: {
  35778. height: math.unit(5 + 2/12, "feet"),
  35779. weight: math.unit(300, "lb"),
  35780. name: "Fullest",
  35781. image: {
  35782. source: "./media/characters/noraly/fullest.svg",
  35783. extra: 1114/1059,
  35784. bottom: 35/1149
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(5 + 2/12, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35798. {
  35799. front: {
  35800. height: math.unit(5 + 2/12, "feet"),
  35801. weight: math.unit(210, "lb"),
  35802. name: "Front",
  35803. image: {
  35804. source: "./media/characters/pera/front.svg",
  35805. extra: 1560/1531,
  35806. bottom: 165/1725
  35807. }
  35808. },
  35809. back: {
  35810. height: math.unit(5 + 2/12, "feet"),
  35811. weight: math.unit(210, "lb"),
  35812. name: "Back",
  35813. image: {
  35814. source: "./media/characters/pera/back.svg",
  35815. extra: 1523/1493,
  35816. bottom: 152/1675
  35817. }
  35818. },
  35819. dick: {
  35820. height: math.unit(2.4, "feet"),
  35821. name: "Dick",
  35822. image: {
  35823. source: "./media/characters/pera/dick.svg"
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(5 + 2/12, "feet"),
  35831. default: true
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35837. {
  35838. front: {
  35839. height: math.unit(12, "feet"),
  35840. weight: math.unit(3200, "lb"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/julian/front.svg",
  35844. extra: 2962/2701,
  35845. bottom: 184/3146
  35846. }
  35847. },
  35848. maw: {
  35849. height: math.unit(5.35, "feet"),
  35850. name: "Maw",
  35851. image: {
  35852. source: "./media/characters/julian/maw.svg"
  35853. }
  35854. },
  35855. paw: {
  35856. height: math.unit(3.07, "feet"),
  35857. name: "Paw",
  35858. image: {
  35859. source: "./media/characters/julian/paw.svg"
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Default",
  35866. height: math.unit(12, "feet"),
  35867. default: true
  35868. },
  35869. {
  35870. name: "Big",
  35871. height: math.unit(50, "feet")
  35872. },
  35873. {
  35874. name: "Really Big",
  35875. height: math.unit(1, "mile")
  35876. },
  35877. {
  35878. name: "Extremely Big",
  35879. height: math.unit(100, "miles")
  35880. },
  35881. {
  35882. name: "Planet Hugger",
  35883. height: math.unit(200, "megameters")
  35884. },
  35885. {
  35886. name: "Unreasonably Big",
  35887. height: math.unit(1e300, "meters")
  35888. },
  35889. ]
  35890. ))
  35891. characterMakers.push(() => makeCharacter(
  35892. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35893. {
  35894. solgooleo: {
  35895. height: math.unit(4, "meters"),
  35896. weight: math.unit(6000*1.5, "kg"),
  35897. volume: math.unit(6000, "liters"),
  35898. name: "Solgooleo",
  35899. image: {
  35900. source: "./media/characters/pi/solgooleo.svg",
  35901. extra: 388/331,
  35902. bottom: 29/417
  35903. }
  35904. },
  35905. },
  35906. [
  35907. {
  35908. name: "Normal",
  35909. height: math.unit(4, "meters"),
  35910. default: true
  35911. },
  35912. ]
  35913. ))
  35914. characterMakers.push(() => makeCharacter(
  35915. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35916. {
  35917. front: {
  35918. height: math.unit(8, "feet"),
  35919. weight: math.unit(4, "tons"),
  35920. name: "Front",
  35921. image: {
  35922. source: "./media/characters/shaun/front.svg",
  35923. extra: 503/495,
  35924. bottom: 20/523
  35925. }
  35926. },
  35927. back: {
  35928. height: math.unit(8, "feet"),
  35929. weight: math.unit(4, "tons"),
  35930. name: "Back",
  35931. image: {
  35932. source: "./media/characters/shaun/back.svg",
  35933. extra: 487/480,
  35934. bottom: 20/507
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Lorg",
  35941. height: math.unit(8, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35948. {
  35949. frontAnthro: {
  35950. height: math.unit(7, "feet"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/sini/front-anthro.svg",
  35954. extra: 726/678,
  35955. bottom: 35/761
  35956. },
  35957. form: "anthro",
  35958. default: true
  35959. },
  35960. backAnthro: {
  35961. height: math.unit(7, "feet"),
  35962. name: "Back",
  35963. image: {
  35964. source: "./media/characters/sini/back-anthro.svg",
  35965. extra: 743/701,
  35966. bottom: 12/755
  35967. },
  35968. form: "anthro",
  35969. },
  35970. frontAnthroNsfw: {
  35971. height: math.unit(7, "feet"),
  35972. name: "Front (NSFW)",
  35973. image: {
  35974. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35975. extra: 726/678,
  35976. bottom: 35/761
  35977. },
  35978. form: "anthro"
  35979. },
  35980. backAnthroNsfw: {
  35981. height: math.unit(7, "feet"),
  35982. name: "Back (NSFW)",
  35983. image: {
  35984. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35985. extra: 743/701,
  35986. bottom: 12/755
  35987. },
  35988. form: "anthro",
  35989. },
  35990. mawAnthro: {
  35991. height: math.unit(2.14, "feet"),
  35992. name: "Maw",
  35993. image: {
  35994. source: "./media/characters/sini/maw-anthro.svg"
  35995. },
  35996. form: "anthro"
  35997. },
  35998. dick: {
  35999. height: math.unit(1.45, "feet"),
  36000. name: "Dick",
  36001. image: {
  36002. source: "./media/characters/sini/dick-anthro.svg"
  36003. },
  36004. form: "anthro"
  36005. },
  36006. feral: {
  36007. height: math.unit(16, "feet"),
  36008. name: "Feral",
  36009. image: {
  36010. source: "./media/characters/sini/feral.svg",
  36011. extra: 814/605,
  36012. bottom: 11/825
  36013. },
  36014. form: "feral",
  36015. default: true
  36016. },
  36017. feralNsfw: {
  36018. height: math.unit(16, "feet"),
  36019. name: "Feral (NSFW)",
  36020. image: {
  36021. source: "./media/characters/sini/feral-nsfw.svg",
  36022. extra: 814/605,
  36023. bottom: 11/825
  36024. },
  36025. form: "feral"
  36026. },
  36027. mawFeral: {
  36028. height: math.unit(5.66, "feet"),
  36029. name: "Maw",
  36030. image: {
  36031. source: "./media/characters/sini/maw-feral.svg"
  36032. },
  36033. form: "feral",
  36034. },
  36035. pawFeral: {
  36036. height: math.unit(5.17, "feet"),
  36037. name: "Paw",
  36038. image: {
  36039. source: "./media/characters/sini/paw-feral.svg"
  36040. },
  36041. form: "feral",
  36042. },
  36043. rumpFeral: {
  36044. height: math.unit(13.11, "feet"),
  36045. name: "Rump",
  36046. image: {
  36047. source: "./media/characters/sini/rump-feral.svg"
  36048. },
  36049. form: "feral",
  36050. },
  36051. dickFeral: {
  36052. height: math.unit(1, "feet"),
  36053. name: "Dick",
  36054. image: {
  36055. source: "./media/characters/sini/dick-feral.svg"
  36056. },
  36057. form: "feral",
  36058. },
  36059. eyeFeral: {
  36060. height: math.unit(1.23, "feet"),
  36061. name: "Eye",
  36062. image: {
  36063. source: "./media/characters/sini/eye-feral.svg"
  36064. },
  36065. form: "feral",
  36066. },
  36067. },
  36068. [
  36069. {
  36070. name: "Normal",
  36071. height: math.unit(7, "feet"),
  36072. default: true,
  36073. form: "anthro"
  36074. },
  36075. {
  36076. name: "Normal",
  36077. height: math.unit(16, "feet"),
  36078. default: true,
  36079. form: "feral"
  36080. },
  36081. ],
  36082. {
  36083. "anthro": {
  36084. name: "Anthro",
  36085. default: true
  36086. },
  36087. "feral": {
  36088. name: "Feral",
  36089. }
  36090. }
  36091. ))
  36092. characterMakers.push(() => makeCharacter(
  36093. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36094. {
  36095. side: {
  36096. height: math.unit(47.2, "meters"),
  36097. weight: math.unit(10000, "tons"),
  36098. name: "Side",
  36099. image: {
  36100. source: "./media/characters/raylldo/side.svg",
  36101. extra: 2363/642,
  36102. bottom: 221/2584
  36103. }
  36104. },
  36105. top: {
  36106. height: math.unit(240, "meters"),
  36107. weight: math.unit(10000, "tons"),
  36108. name: "Top",
  36109. image: {
  36110. source: "./media/characters/raylldo/top.svg"
  36111. }
  36112. },
  36113. bottom: {
  36114. height: math.unit(240, "meters"),
  36115. weight: math.unit(10000, "tons"),
  36116. name: "Bottom",
  36117. image: {
  36118. source: "./media/characters/raylldo/bottom.svg"
  36119. }
  36120. },
  36121. head: {
  36122. height: math.unit(38.6, "meters"),
  36123. name: "Head",
  36124. image: {
  36125. source: "./media/characters/raylldo/head.svg",
  36126. extra: 1335/1112,
  36127. bottom: 0/1335
  36128. }
  36129. },
  36130. maw: {
  36131. height: math.unit(16.37, "meters"),
  36132. name: "Maw",
  36133. image: {
  36134. source: "./media/characters/raylldo/maw.svg",
  36135. extra: 883/660,
  36136. bottom: 0/883
  36137. },
  36138. extraAttributes: {
  36139. preyCapacity: {
  36140. name: "Capacity",
  36141. power: 3,
  36142. type: "volume",
  36143. base: math.unit(1000, "people")
  36144. },
  36145. tongueSize: {
  36146. name: "Tongue Size",
  36147. power: 2,
  36148. type: "area",
  36149. base: math.unit(21, "m^2")
  36150. }
  36151. }
  36152. },
  36153. forepaw: {
  36154. height: math.unit(18, "meters"),
  36155. name: "Forepaw",
  36156. image: {
  36157. source: "./media/characters/raylldo/forepaw.svg"
  36158. }
  36159. },
  36160. hindpaw: {
  36161. height: math.unit(23, "meters"),
  36162. name: "Hindpaw",
  36163. image: {
  36164. source: "./media/characters/raylldo/hindpaw.svg"
  36165. }
  36166. },
  36167. genitals: {
  36168. height: math.unit(42, "meters"),
  36169. name: "Genitals",
  36170. image: {
  36171. source: "./media/characters/raylldo/genitals.svg"
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(47.2, "meters"),
  36179. default: true
  36180. },
  36181. ]
  36182. ))
  36183. characterMakers.push(() => makeCharacter(
  36184. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36185. {
  36186. anthroFront: {
  36187. height: math.unit(9, "feet"),
  36188. weight: math.unit(600, "lb"),
  36189. name: "Anthro (Front)",
  36190. image: {
  36191. source: "./media/characters/glint/anthro-front.svg",
  36192. extra: 1097/1018,
  36193. bottom: 28/1125
  36194. }
  36195. },
  36196. anthroBack: {
  36197. height: math.unit(9, "feet"),
  36198. weight: math.unit(600, "lb"),
  36199. name: "Anthro (Back)",
  36200. image: {
  36201. source: "./media/characters/glint/anthro-back.svg",
  36202. extra: 1154/997,
  36203. bottom: 36/1190
  36204. }
  36205. },
  36206. feral: {
  36207. height: math.unit(11, "feet"),
  36208. weight: math.unit(50000, "lb"),
  36209. name: "Feral",
  36210. image: {
  36211. source: "./media/characters/glint/feral.svg",
  36212. extra: 3035/1585,
  36213. bottom: 1169/4204
  36214. }
  36215. },
  36216. dickAnthro: {
  36217. height: math.unit(0.7, "meters"),
  36218. name: "Dick (Anthro)",
  36219. image: {
  36220. source: "./media/characters/glint/dick-anthro.svg"
  36221. }
  36222. },
  36223. dickFeral: {
  36224. height: math.unit(2.65, "meters"),
  36225. name: "Dick (Feral)",
  36226. image: {
  36227. source: "./media/characters/glint/dick-feral.svg"
  36228. }
  36229. },
  36230. slitHidden: {
  36231. height: math.unit(5.85, "meters"),
  36232. name: "Slit (Hidden)",
  36233. image: {
  36234. source: "./media/characters/glint/slit-hidden.svg"
  36235. }
  36236. },
  36237. slitErect: {
  36238. height: math.unit(5.85, "meters"),
  36239. name: "Slit (Erect)",
  36240. image: {
  36241. source: "./media/characters/glint/slit-erect.svg"
  36242. }
  36243. },
  36244. mawAnthro: {
  36245. height: math.unit(0.63, "meters"),
  36246. name: "Maw (Anthro)",
  36247. image: {
  36248. source: "./media/characters/glint/maw.svg"
  36249. }
  36250. },
  36251. mawFeral: {
  36252. height: math.unit(2.89, "meters"),
  36253. name: "Maw (Feral)",
  36254. image: {
  36255. source: "./media/characters/glint/maw.svg"
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(9, "feet"),
  36263. default: true
  36264. },
  36265. ]
  36266. ))
  36267. characterMakers.push(() => makeCharacter(
  36268. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36269. {
  36270. side: {
  36271. height: math.unit(15, "feet"),
  36272. weight: math.unit(5000, "kg"),
  36273. name: "Side",
  36274. image: {
  36275. source: "./media/characters/kairne/side.svg",
  36276. extra: 979/811,
  36277. bottom: 13/992
  36278. }
  36279. },
  36280. front: {
  36281. height: math.unit(15, "feet"),
  36282. weight: math.unit(5000, "kg"),
  36283. name: "Front",
  36284. image: {
  36285. source: "./media/characters/kairne/front.svg",
  36286. extra: 908/814,
  36287. bottom: 26/934
  36288. }
  36289. },
  36290. sideNsfw: {
  36291. height: math.unit(15, "feet"),
  36292. weight: math.unit(5000, "kg"),
  36293. name: "Side (NSFW)",
  36294. image: {
  36295. source: "./media/characters/kairne/side-nsfw.svg",
  36296. extra: 979/811,
  36297. bottom: 13/992
  36298. }
  36299. },
  36300. frontNsfw: {
  36301. height: math.unit(15, "feet"),
  36302. weight: math.unit(5000, "kg"),
  36303. name: "Front (NSFW)",
  36304. image: {
  36305. source: "./media/characters/kairne/front-nsfw.svg",
  36306. extra: 908/814,
  36307. bottom: 26/934
  36308. }
  36309. },
  36310. dickCaged: {
  36311. height: math.unit(0.65, "meters"),
  36312. name: "Dick-caged",
  36313. image: {
  36314. source: "./media/characters/kairne/dick-caged.svg"
  36315. }
  36316. },
  36317. dick: {
  36318. height: math.unit(0.79, "meters"),
  36319. name: "Dick",
  36320. image: {
  36321. source: "./media/characters/kairne/dick.svg"
  36322. }
  36323. },
  36324. genitals: {
  36325. height: math.unit(1.29, "meters"),
  36326. name: "Genitals",
  36327. image: {
  36328. source: "./media/characters/kairne/genitals.svg"
  36329. }
  36330. },
  36331. maw: {
  36332. height: math.unit(1.73, "meters"),
  36333. name: "Maw",
  36334. image: {
  36335. source: "./media/characters/kairne/maw.svg"
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(15, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36349. {
  36350. front: {
  36351. height: math.unit(5 + 8/12, "feet"),
  36352. weight: math.unit(139, "lb"),
  36353. name: "Front",
  36354. image: {
  36355. source: "./media/characters/biscuit-jackal/front.svg",
  36356. extra: 2106/1961,
  36357. bottom: 58/2164
  36358. }
  36359. },
  36360. back: {
  36361. height: math.unit(5 + 8/12, "feet"),
  36362. weight: math.unit(139, "lb"),
  36363. name: "Back",
  36364. image: {
  36365. source: "./media/characters/biscuit-jackal/back.svg",
  36366. extra: 2132/1976,
  36367. bottom: 57/2189
  36368. }
  36369. },
  36370. werejackal: {
  36371. height: math.unit(6 + 3/12, "feet"),
  36372. weight: math.unit(188, "lb"),
  36373. name: "Werejackal",
  36374. image: {
  36375. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36376. extra: 2373/2178,
  36377. bottom: 53/2426
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(5 + 8/12, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(140, "cm"),
  36394. weight: math.unit(45, "kg"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/tayra-white/front.svg",
  36398. extra: 2229/2192,
  36399. bottom: 75/2304
  36400. }
  36401. },
  36402. },
  36403. [
  36404. {
  36405. name: "Normal",
  36406. height: math.unit(140, "cm"),
  36407. default: true
  36408. },
  36409. ]
  36410. ))
  36411. characterMakers.push(() => makeCharacter(
  36412. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36413. {
  36414. front: {
  36415. height: math.unit(4 + 5/12, "feet"),
  36416. name: "Front",
  36417. image: {
  36418. source: "./media/characters/scoop/front.svg",
  36419. extra: 1257/1136,
  36420. bottom: 69/1326
  36421. }
  36422. },
  36423. back: {
  36424. height: math.unit(4 + 5/12, "feet"),
  36425. name: "Back",
  36426. image: {
  36427. source: "./media/characters/scoop/back.svg",
  36428. extra: 1321/1152,
  36429. bottom: 32/1353
  36430. }
  36431. },
  36432. maw: {
  36433. height: math.unit(0.68, "feet"),
  36434. name: "Maw",
  36435. image: {
  36436. source: "./media/characters/scoop/maw.svg"
  36437. }
  36438. },
  36439. },
  36440. [
  36441. {
  36442. name: "Really Small",
  36443. height: math.unit(1, "mm")
  36444. },
  36445. {
  36446. name: "Micro",
  36447. height: math.unit(1, "inch")
  36448. },
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(4 + 5/12, "feet"),
  36452. default: true
  36453. },
  36454. {
  36455. name: "Macro",
  36456. height: math.unit(200, "feet")
  36457. },
  36458. {
  36459. name: "Megamacro",
  36460. height: math.unit(3240, "feet")
  36461. },
  36462. {
  36463. name: "Teramacro",
  36464. height: math.unit(2500, "miles")
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36470. {
  36471. front: {
  36472. height: math.unit(15 + 7/12, "feet"),
  36473. weight: math.unit(1150, "tons"),
  36474. name: "Front",
  36475. image: {
  36476. source: "./media/characters/saphinara/front.svg",
  36477. extra: 1837/1643,
  36478. bottom: 84/1921
  36479. },
  36480. form: "normal",
  36481. default: true
  36482. },
  36483. side: {
  36484. height: math.unit(15 + 7/12, "feet"),
  36485. weight: math.unit(1150, "tons"),
  36486. name: "Side",
  36487. image: {
  36488. source: "./media/characters/saphinara/side.svg",
  36489. extra: 605/547,
  36490. bottom: 6/611
  36491. },
  36492. form: "normal"
  36493. },
  36494. back: {
  36495. height: math.unit(15 + 7/12, "feet"),
  36496. weight: math.unit(1150, "tons"),
  36497. name: "Back",
  36498. image: {
  36499. source: "./media/characters/saphinara/back.svg",
  36500. extra: 591/531,
  36501. bottom: 13/604
  36502. },
  36503. form: "normal"
  36504. },
  36505. frontTail: {
  36506. height: math.unit(15 + 7/12, "feet"),
  36507. weight: math.unit(1150, "tons"),
  36508. name: "Front (Full Tail)",
  36509. image: {
  36510. source: "./media/characters/saphinara/front-tail.svg",
  36511. extra: 2256/1630,
  36512. bottom: 261/2517
  36513. },
  36514. form: "normal"
  36515. },
  36516. insides: {
  36517. height: math.unit(11.92, "feet"),
  36518. name: "Insides",
  36519. image: {
  36520. source: "./media/characters/saphinara/insides.svg"
  36521. },
  36522. form: "normal"
  36523. },
  36524. head: {
  36525. height: math.unit(4.17, "feet"),
  36526. name: "Head",
  36527. image: {
  36528. source: "./media/characters/saphinara/head.svg"
  36529. },
  36530. form: "normal"
  36531. },
  36532. tongue: {
  36533. height: math.unit(4.60, "feet"),
  36534. name: "Tongue",
  36535. image: {
  36536. source: "./media/characters/saphinara/tongue.svg"
  36537. },
  36538. form: "normal"
  36539. },
  36540. headEnraged: {
  36541. height: math.unit(5.55, "feet"),
  36542. name: "Head (Enraged)",
  36543. image: {
  36544. source: "./media/characters/saphinara/head-enraged.svg"
  36545. },
  36546. form: "normal"
  36547. },
  36548. wings: {
  36549. height: math.unit(11.95, "feet"),
  36550. name: "Wings",
  36551. image: {
  36552. source: "./media/characters/saphinara/wings.svg"
  36553. },
  36554. form: "normal"
  36555. },
  36556. feathers: {
  36557. height: math.unit(8.92, "feet"),
  36558. name: "Feathers",
  36559. image: {
  36560. source: "./media/characters/saphinara/feathers.svg"
  36561. },
  36562. form: "normal"
  36563. },
  36564. shackles: {
  36565. height: math.unit(2, "feet"),
  36566. name: "Shackles",
  36567. image: {
  36568. source: "./media/characters/saphinara/shackles.svg"
  36569. },
  36570. form: "normal"
  36571. },
  36572. eyes: {
  36573. height: math.unit(1.331, "feet"),
  36574. name: "Eyes",
  36575. image: {
  36576. source: "./media/characters/saphinara/eyes.svg"
  36577. },
  36578. form: "normal"
  36579. },
  36580. eyesEnraged: {
  36581. height: math.unit(1.331, "feet"),
  36582. name: "Eyes (Enraged)",
  36583. image: {
  36584. source: "./media/characters/saphinara/eyes-enraged.svg"
  36585. },
  36586. form: "normal"
  36587. },
  36588. trueFormSide: {
  36589. height: math.unit(200, "feet"),
  36590. weight: math.unit(1e7, "tons"),
  36591. name: "Side",
  36592. image: {
  36593. source: "./media/characters/saphinara/true-form-side.svg",
  36594. extra: 1399/770,
  36595. bottom: 97/1496
  36596. },
  36597. form: "true-form",
  36598. default: true
  36599. },
  36600. trueFormMaw: {
  36601. height: math.unit(71.5, "feet"),
  36602. name: "Maw",
  36603. image: {
  36604. source: "./media/characters/saphinara/true-form-maw.svg",
  36605. extra: 2302/1453,
  36606. bottom: 0/2302
  36607. },
  36608. form: "true-form"
  36609. },
  36610. meowberusSide: {
  36611. height: math.unit(75, "feet"),
  36612. weight: math.unit(180000, "kg"),
  36613. preyCapacity: math.unit(50000, "people"),
  36614. name: "Side",
  36615. image: {
  36616. source: "./media/characters/saphinara/meowberus-side.svg",
  36617. extra: 1400/711,
  36618. bottom: 126/1526
  36619. },
  36620. form: "meowberus",
  36621. extraAttributes: {
  36622. "pawArea": {
  36623. name: "Paw Size",
  36624. power: 2,
  36625. type: "area",
  36626. base: math.unit(35, "m^2")
  36627. }
  36628. }
  36629. },
  36630. },
  36631. [
  36632. {
  36633. name: "Normal",
  36634. height: math.unit(15 + 7/12, "feet"),
  36635. default: true,
  36636. form: "normal"
  36637. },
  36638. {
  36639. name: "Angry",
  36640. height: math.unit(30 + 6/12, "feet"),
  36641. form: "normal"
  36642. },
  36643. {
  36644. name: "Enraged",
  36645. height: math.unit(102 + 1/12, "feet"),
  36646. form: "normal"
  36647. },
  36648. {
  36649. name: "True",
  36650. height: math.unit(200, "feet"),
  36651. default: true,
  36652. form: "true-form"
  36653. },
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(75, "feet"),
  36657. default: true,
  36658. form: "meowberus"
  36659. },
  36660. ],
  36661. {
  36662. "normal": {
  36663. name: "Normal",
  36664. default: true
  36665. },
  36666. "true-form": {
  36667. name: "True Form"
  36668. },
  36669. "meowberus": {
  36670. name: "Meowberus",
  36671. },
  36672. }
  36673. ))
  36674. characterMakers.push(() => makeCharacter(
  36675. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36676. {
  36677. front: {
  36678. height: math.unit(6 + 8/12, "feet"),
  36679. weight: math.unit(300, "lb"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/jrain/front.svg",
  36683. extra: 3039/2865,
  36684. bottom: 399/3438
  36685. }
  36686. },
  36687. back: {
  36688. height: math.unit(6 + 8/12, "feet"),
  36689. weight: math.unit(300, "lb"),
  36690. name: "Back",
  36691. image: {
  36692. source: "./media/characters/jrain/back.svg",
  36693. extra: 3089/2938,
  36694. bottom: 172/3261
  36695. }
  36696. },
  36697. head: {
  36698. height: math.unit(2.14, "feet"),
  36699. name: "Head",
  36700. image: {
  36701. source: "./media/characters/jrain/head.svg"
  36702. }
  36703. },
  36704. maw: {
  36705. height: math.unit(1.77, "feet"),
  36706. name: "Maw",
  36707. image: {
  36708. source: "./media/characters/jrain/maw.svg"
  36709. }
  36710. },
  36711. leftHand: {
  36712. height: math.unit(1.1, "feet"),
  36713. name: "Left Hand",
  36714. image: {
  36715. source: "./media/characters/jrain/left-hand.svg"
  36716. }
  36717. },
  36718. rightHand: {
  36719. height: math.unit(1.1, "feet"),
  36720. name: "Right Hand",
  36721. image: {
  36722. source: "./media/characters/jrain/right-hand.svg"
  36723. }
  36724. },
  36725. eye: {
  36726. height: math.unit(0.35, "feet"),
  36727. name: "Eye",
  36728. image: {
  36729. source: "./media/characters/jrain/eye.svg"
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(6 + 8/12, "feet"),
  36737. default: true
  36738. },
  36739. {
  36740. name: "Casually Large",
  36741. height: math.unit(25, "feet")
  36742. },
  36743. {
  36744. name: "Giant",
  36745. height: math.unit(100, "feet")
  36746. },
  36747. {
  36748. name: "Kaiju",
  36749. height: math.unit(300, "feet")
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36755. {
  36756. dragon: {
  36757. height: math.unit(5, "meters"),
  36758. name: "Dragon",
  36759. image: {
  36760. source: "./media/characters/sabrina/dragon.svg",
  36761. extra: 3670 / 2365,
  36762. bottom: 333 / 4003
  36763. }
  36764. },
  36765. gryphon: {
  36766. height: math.unit(3, "meters"),
  36767. name: "Gryphon",
  36768. image: {
  36769. source: "./media/characters/sabrina/gryphon.svg",
  36770. extra: 1576 / 945,
  36771. bottom: 71 / 1647
  36772. }
  36773. },
  36774. snake: {
  36775. height: math.unit(12, "meters"),
  36776. name: "Snake",
  36777. image: {
  36778. source: "./media/characters/sabrina/snake.svg",
  36779. extra: 1758 / 1320,
  36780. bottom: 186 / 1944
  36781. }
  36782. },
  36783. collar: {
  36784. height: math.unit(1.86, "meters"),
  36785. name: "Collar",
  36786. image: {
  36787. source: "./media/characters/sabrina/collar.svg"
  36788. }
  36789. },
  36790. eye: {
  36791. height: math.unit(0.53, "meters"),
  36792. name: "Eye",
  36793. image: {
  36794. source: "./media/characters/sabrina/eye.svg"
  36795. }
  36796. },
  36797. foot: {
  36798. height: math.unit(1.86, "meters"),
  36799. name: "Foot",
  36800. image: {
  36801. source: "./media/characters/sabrina/foot.svg"
  36802. }
  36803. },
  36804. hand: {
  36805. height: math.unit(1.32, "meters"),
  36806. name: "Hand",
  36807. image: {
  36808. source: "./media/characters/sabrina/hand.svg"
  36809. }
  36810. },
  36811. head: {
  36812. height: math.unit(2.44, "meters"),
  36813. name: "Head",
  36814. image: {
  36815. source: "./media/characters/sabrina/head.svg"
  36816. }
  36817. },
  36818. headAngry: {
  36819. height: math.unit(2.44, "meters"),
  36820. name: "Head (Angry))",
  36821. image: {
  36822. source: "./media/characters/sabrina/head-angry.svg"
  36823. }
  36824. },
  36825. maw: {
  36826. height: math.unit(1.65, "meters"),
  36827. name: "Maw",
  36828. image: {
  36829. source: "./media/characters/sabrina/maw.svg"
  36830. }
  36831. },
  36832. spikes: {
  36833. height: math.unit(1.69, "meters"),
  36834. name: "Spikes",
  36835. image: {
  36836. source: "./media/characters/sabrina/spikes.svg"
  36837. }
  36838. },
  36839. stomach: {
  36840. height: math.unit(1.15, "meters"),
  36841. name: "Stomach",
  36842. image: {
  36843. source: "./media/characters/sabrina/stomach.svg"
  36844. }
  36845. },
  36846. tongue: {
  36847. height: math.unit(1.27, "meters"),
  36848. name: "Tongue",
  36849. image: {
  36850. source: "./media/characters/sabrina/tongue.svg"
  36851. }
  36852. },
  36853. wingDorsal: {
  36854. height: math.unit(4.85, "meters"),
  36855. name: "Wing (Dorsal)",
  36856. image: {
  36857. source: "./media/characters/sabrina/wing-dorsal.svg"
  36858. }
  36859. },
  36860. wingVentral: {
  36861. height: math.unit(4.85, "meters"),
  36862. name: "Wing (Ventral)",
  36863. image: {
  36864. source: "./media/characters/sabrina/wing-ventral.svg"
  36865. }
  36866. },
  36867. },
  36868. [
  36869. {
  36870. name: "Normal",
  36871. height: math.unit(5, "meters"),
  36872. default: true
  36873. },
  36874. ]
  36875. ))
  36876. characterMakers.push(() => makeCharacter(
  36877. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36878. {
  36879. frontMaid: {
  36880. height: math.unit(5 + 5/12, "feet"),
  36881. weight: math.unit(130, "lb"),
  36882. name: "Front (Maid)",
  36883. image: {
  36884. source: "./media/characters/midnight-tales/front-maid.svg",
  36885. extra: 489/454,
  36886. bottom: 61/550
  36887. }
  36888. },
  36889. frontFormal: {
  36890. height: math.unit(5 + 5/12, "feet"),
  36891. weight: math.unit(130, "lb"),
  36892. name: "Front (Formal)",
  36893. image: {
  36894. source: "./media/characters/midnight-tales/front-formal.svg",
  36895. extra: 489/454,
  36896. bottom: 61/550
  36897. }
  36898. },
  36899. back: {
  36900. height: math.unit(5 + 5/12, "feet"),
  36901. weight: math.unit(130, "lb"),
  36902. name: "Back",
  36903. image: {
  36904. source: "./media/characters/midnight-tales/back.svg",
  36905. extra: 498/456,
  36906. bottom: 33/531
  36907. }
  36908. },
  36909. frontBeast: {
  36910. height: math.unit(40, "feet"),
  36911. weight: math.unit(64000, "lb"),
  36912. name: "Front (Beast)",
  36913. image: {
  36914. source: "./media/characters/midnight-tales/front-beast.svg",
  36915. extra: 927/860,
  36916. bottom: 53/980
  36917. }
  36918. },
  36919. backBeast: {
  36920. height: math.unit(40, "feet"),
  36921. weight: math.unit(64000, "lb"),
  36922. name: "Back (Beast)",
  36923. image: {
  36924. source: "./media/characters/midnight-tales/back-beast.svg",
  36925. extra: 929/855,
  36926. bottom: 16/945
  36927. }
  36928. },
  36929. footBeast: {
  36930. height: math.unit(6.7, "feet"),
  36931. name: "Foot (Beast)",
  36932. image: {
  36933. source: "./media/characters/midnight-tales/foot-beast.svg"
  36934. }
  36935. },
  36936. headBeast: {
  36937. height: math.unit(8, "feet"),
  36938. name: "Head (Beast)",
  36939. image: {
  36940. source: "./media/characters/midnight-tales/head-beast.svg"
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(5 + 5 / 12, "feet"),
  36948. default: true
  36949. },
  36950. {
  36951. name: "Macro",
  36952. height: math.unit(25, "feet")
  36953. },
  36954. ]
  36955. ))
  36956. characterMakers.push(() => makeCharacter(
  36957. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36958. {
  36959. front: {
  36960. height: math.unit(6 + 2/12, "feet"),
  36961. weight: math.unit(115, "kg"),
  36962. preyCapacity: math.unit(3, "people"),
  36963. name: "Front",
  36964. image: {
  36965. source: "./media/characters/argon/front.svg",
  36966. extra: 2009/1935,
  36967. bottom: 118/2127
  36968. },
  36969. extraAttributes: {
  36970. "tailLength": {
  36971. name: "Tail Length",
  36972. power: 1,
  36973. type: "length",
  36974. base: math.unit(6, "feet")
  36975. },
  36976. "tailWeight": {
  36977. name: "Tail Weight",
  36978. power: 3,
  36979. type: "mass",
  36980. base: math.unit(40, "kg")
  36981. },
  36982. }
  36983. },
  36984. back: {
  36985. height: math.unit(6 + 2/12, "feet"),
  36986. weight: math.unit(115, "kg"),
  36987. preyCapacity: math.unit(3, "people"),
  36988. name: "Back",
  36989. image: {
  36990. source: "./media/characters/argon/back.svg",
  36991. extra: 2047/1992,
  36992. bottom: 20/2067
  36993. },
  36994. extraAttributes: {
  36995. "tailLength": {
  36996. name: "Tail Length",
  36997. power: 1,
  36998. type: "length",
  36999. base: math.unit(6, "feet")
  37000. },
  37001. "tailWeight": {
  37002. name: "Tail Weight",
  37003. power: 3,
  37004. type: "mass",
  37005. base: math.unit(40, "kg")
  37006. },
  37007. }
  37008. },
  37009. frontDressed: {
  37010. height: math.unit(6 + 2/12, "feet"),
  37011. weight: math.unit(115, "kg"),
  37012. preyCapacity: math.unit(3, "people"),
  37013. name: "Front (Dressed)",
  37014. image: {
  37015. source: "./media/characters/argon/front-dressed.svg",
  37016. extra: 2009/1935,
  37017. bottom: 118/2127
  37018. },
  37019. extraAttributes: {
  37020. "tailLength": {
  37021. name: "Tail Length",
  37022. power: 1,
  37023. type: "length",
  37024. base: math.unit(6, "feet")
  37025. },
  37026. "tailWeight": {
  37027. name: "Tail Weight",
  37028. power: 3,
  37029. type: "mass",
  37030. base: math.unit(40, "kg")
  37031. },
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Minimum",
  37038. height: math.unit(2 + 8/12, "feet")
  37039. },
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(6 + 2/12, "feet"),
  37043. default: true
  37044. },
  37045. {
  37046. name: "Maximum",
  37047. height: math.unit(20, "feet")
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(8 + 6/12, "feet"),
  37056. weight: math.unit(1150, "lb"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/kichi/front.svg",
  37060. extra: 1267/1164,
  37061. bottom: 61/1328
  37062. }
  37063. },
  37064. back: {
  37065. height: math.unit(8 + 6/12, "feet"),
  37066. weight: math.unit(1150, "lb"),
  37067. name: "Back",
  37068. image: {
  37069. source: "./media/characters/kichi/back.svg",
  37070. extra: 1273/1166,
  37071. bottom: 33/1306
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(8 + 6/12, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(6, "feet"),
  37088. weight: math.unit(210, "lb"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/manetel-greyscale/front.svg",
  37092. extra: 350/312,
  37093. bottom: 8/358
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Micro",
  37100. height: math.unit(2, "inches")
  37101. },
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(6, "feet"),
  37105. default: true
  37106. },
  37107. {
  37108. name: "Minimacro",
  37109. height: math.unit(17, "feet")
  37110. },
  37111. {
  37112. name: "Macro",
  37113. height: math.unit(117, "feet")
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37119. {
  37120. side: {
  37121. height: math.unit(5 + 1/12, "feet"),
  37122. weight: math.unit(418, "lb"),
  37123. name: "Side",
  37124. image: {
  37125. source: "./media/characters/softpurr/side.svg",
  37126. extra: 1993/1945,
  37127. bottom: 134/2127
  37128. }
  37129. },
  37130. front: {
  37131. height: math.unit(5 + 1/12, "feet"),
  37132. weight: math.unit(418, "lb"),
  37133. name: "Front",
  37134. image: {
  37135. source: "./media/characters/softpurr/front.svg",
  37136. extra: 1950/1856,
  37137. bottom: 174/2124
  37138. }
  37139. },
  37140. paw: {
  37141. height: math.unit(1, "feet"),
  37142. name: "Paw",
  37143. image: {
  37144. source: "./media/characters/softpurr/paw.svg"
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(5 + 1/12, "feet"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(260, "meters"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/anahita/front.svg",
  37164. extra: 665/635,
  37165. bottom: 89/754
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Macro",
  37172. height: math.unit(260, "meters"),
  37173. default: true
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(4 + 10/12, "feet"),
  37182. weight: math.unit(160, "lb"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/chip-mouse/front.svg",
  37186. extra: 3528/3408,
  37187. bottom: 0/3528
  37188. }
  37189. },
  37190. frontNsfw: {
  37191. height: math.unit(4 + 10/12, "feet"),
  37192. weight: math.unit(160, "lb"),
  37193. name: "Front (NSFW)",
  37194. image: {
  37195. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37196. extra: 3528/3408,
  37197. bottom: 0/3528
  37198. }
  37199. },
  37200. },
  37201. [
  37202. {
  37203. name: "Normal",
  37204. height: math.unit(4 + 10/12, "feet"),
  37205. default: true
  37206. },
  37207. ]
  37208. ))
  37209. characterMakers.push(() => makeCharacter(
  37210. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37211. {
  37212. side: {
  37213. height: math.unit(10, "feet"),
  37214. weight: math.unit(14000, "lb"),
  37215. name: "Side",
  37216. image: {
  37217. source: "./media/characters/kremm/side.svg",
  37218. extra: 1390/1053,
  37219. bottom: 90/1480
  37220. }
  37221. },
  37222. gut: {
  37223. height: math.unit(5.8, "feet"),
  37224. name: "Gut",
  37225. image: {
  37226. source: "./media/characters/kremm/gut.svg"
  37227. }
  37228. },
  37229. ass: {
  37230. height: math.unit(6.1, "feet"),
  37231. name: "Ass",
  37232. image: {
  37233. source: "./media/characters/kremm/ass.svg"
  37234. }
  37235. },
  37236. jaws: {
  37237. height: math.unit(2.2, "feet"),
  37238. name: "Jaws",
  37239. image: {
  37240. source: "./media/characters/kremm/jaws.svg"
  37241. }
  37242. },
  37243. dick: {
  37244. height: math.unit(4.26, "feet"),
  37245. name: "Dick",
  37246. image: {
  37247. source: "./media/characters/kremm/dick.svg"
  37248. }
  37249. },
  37250. },
  37251. [
  37252. {
  37253. name: "Normal",
  37254. height: math.unit(10, "feet"),
  37255. default: true
  37256. },
  37257. ]
  37258. ))
  37259. characterMakers.push(() => makeCharacter(
  37260. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37261. {
  37262. front: {
  37263. height: math.unit(30, "stories"),
  37264. name: "Front",
  37265. image: {
  37266. source: "./media/characters/kai/front.svg",
  37267. extra: 1892/1718,
  37268. bottom: 162/2054
  37269. }
  37270. },
  37271. },
  37272. [
  37273. {
  37274. name: "Macro",
  37275. height: math.unit(30, "stories"),
  37276. default: true
  37277. },
  37278. ]
  37279. ))
  37280. characterMakers.push(() => makeCharacter(
  37281. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37282. {
  37283. front: {
  37284. height: math.unit(6 + 4/12, "feet"),
  37285. weight: math.unit(145, "lb"),
  37286. name: "Front",
  37287. image: {
  37288. source: "./media/characters/sykes/front.svg",
  37289. extra: 1321 / 1187,
  37290. bottom: 66 / 1387
  37291. }
  37292. },
  37293. back: {
  37294. height: math.unit(6 + 4/12, "feet"),
  37295. weight: math.unit(145, "lb"),
  37296. name: "Back",
  37297. image: {
  37298. source: "./media/characters/sykes/back.svg",
  37299. extra: 1326/1181,
  37300. bottom: 31/1357
  37301. }
  37302. },
  37303. traditionalOutfit: {
  37304. height: math.unit(6 + 4/12, "feet"),
  37305. weight: math.unit(145, "lb"),
  37306. name: "Traditional Outfit",
  37307. image: {
  37308. source: "./media/characters/sykes/traditional-outfit.svg",
  37309. extra: 1321 / 1187,
  37310. bottom: 66 / 1387
  37311. }
  37312. },
  37313. adventureOutfit: {
  37314. height: math.unit(6 + 4/12, "feet"),
  37315. weight: math.unit(145, "lb"),
  37316. name: "Adventure Outfit",
  37317. image: {
  37318. source: "./media/characters/sykes/adventure-outfit.svg",
  37319. extra: 1321 / 1187,
  37320. bottom: 66 / 1387
  37321. }
  37322. },
  37323. handLeft: {
  37324. height: math.unit(0.9, "feet"),
  37325. name: "Hand (Left)",
  37326. image: {
  37327. source: "./media/characters/sykes/hand-left.svg"
  37328. }
  37329. },
  37330. handRight: {
  37331. height: math.unit(0.839, "feet"),
  37332. name: "Hand (Right)",
  37333. image: {
  37334. source: "./media/characters/sykes/hand-right.svg"
  37335. }
  37336. },
  37337. leftFoot: {
  37338. height: math.unit(1.2, "feet"),
  37339. name: "Foot (Left)",
  37340. image: {
  37341. source: "./media/characters/sykes/foot-left.svg"
  37342. }
  37343. },
  37344. rightFoot: {
  37345. height: math.unit(1.2, "feet"),
  37346. name: "Foot (Right)",
  37347. image: {
  37348. source: "./media/characters/sykes/foot-right.svg"
  37349. }
  37350. },
  37351. maw: {
  37352. height: math.unit(1.93, "feet"),
  37353. name: "Maw",
  37354. image: {
  37355. source: "./media/characters/sykes/maw.svg"
  37356. }
  37357. },
  37358. teeth: {
  37359. height: math.unit(0.51, "feet"),
  37360. name: "Teeth",
  37361. image: {
  37362. source: "./media/characters/sykes/teeth.svg"
  37363. }
  37364. },
  37365. tongue: {
  37366. height: math.unit(2.13, "feet"),
  37367. name: "Tongue",
  37368. image: {
  37369. source: "./media/characters/sykes/tongue.svg"
  37370. }
  37371. },
  37372. uvula: {
  37373. height: math.unit(0.16, "feet"),
  37374. name: "Uvula",
  37375. image: {
  37376. source: "./media/characters/sykes/uvula.svg"
  37377. }
  37378. },
  37379. collar: {
  37380. height: math.unit(0.287, "feet"),
  37381. name: "Collar",
  37382. image: {
  37383. source: "./media/characters/sykes/collar.svg"
  37384. }
  37385. },
  37386. tail: {
  37387. height: math.unit(3.8, "feet"),
  37388. name: "Tail",
  37389. image: {
  37390. source: "./media/characters/sykes/tail.svg"
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Shrunken",
  37397. height: math.unit(5, "inches")
  37398. },
  37399. {
  37400. name: "Normal",
  37401. height: math.unit(6 + 4 / 12, "feet"),
  37402. default: true
  37403. },
  37404. {
  37405. name: "Big",
  37406. height: math.unit(15, "feet")
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(5 + 8/12, "feet"),
  37415. weight: math.unit(190, "lb"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/oven-otter/front.svg",
  37419. extra: 1809/1740,
  37420. bottom: 181/1990
  37421. }
  37422. },
  37423. back: {
  37424. height: math.unit(5 + 8/12, "feet"),
  37425. weight: math.unit(190, "lb"),
  37426. name: "Back",
  37427. image: {
  37428. source: "./media/characters/oven-otter/back.svg",
  37429. extra: 1709/1635,
  37430. bottom: 118/1827
  37431. }
  37432. },
  37433. hand: {
  37434. height: math.unit(1.07, "feet"),
  37435. name: "Hand",
  37436. image: {
  37437. source: "./media/characters/oven-otter/hand.svg"
  37438. }
  37439. },
  37440. beans: {
  37441. height: math.unit(1.74, "feet"),
  37442. name: "Beans",
  37443. image: {
  37444. source: "./media/characters/oven-otter/beans.svg"
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Micro",
  37451. height: math.unit(0.5, "inches")
  37452. },
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(5 + 8/12, "feet"),
  37456. default: true
  37457. },
  37458. {
  37459. name: "Macro",
  37460. height: math.unit(250, "feet")
  37461. },
  37462. {
  37463. name: "Really High",
  37464. height: math.unit(420, "feet")
  37465. },
  37466. ]
  37467. ))
  37468. characterMakers.push(() => makeCharacter(
  37469. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37470. {
  37471. front: {
  37472. height: math.unit(5, "meters"),
  37473. weight: math.unit(292000000000000, "kg"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/devourer/front.svg",
  37477. extra: 1800/1733,
  37478. bottom: 211/2011
  37479. }
  37480. },
  37481. maw: {
  37482. height: math.unit(1.1, "meter"),
  37483. name: "Maw",
  37484. image: {
  37485. source: "./media/characters/devourer/maw.svg"
  37486. }
  37487. },
  37488. },
  37489. [
  37490. {
  37491. name: "Small",
  37492. height: math.unit(3, "meters")
  37493. },
  37494. {
  37495. name: "Large",
  37496. height: math.unit(5, "meters"),
  37497. default: true
  37498. },
  37499. {
  37500. name: "Macro",
  37501. height: math.unit(20, "meters")
  37502. },
  37503. ]
  37504. ))
  37505. characterMakers.push(() => makeCharacter(
  37506. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37507. {
  37508. front: {
  37509. height: math.unit(6, "feet"),
  37510. weight: math.unit(400, "lb"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/ellarby/front.svg",
  37514. extra: 1909/1763,
  37515. bottom: 80/1989
  37516. }
  37517. },
  37518. back: {
  37519. height: math.unit(6, "feet"),
  37520. weight: math.unit(400, "lb"),
  37521. name: "Back",
  37522. image: {
  37523. source: "./media/characters/ellarby/back.svg",
  37524. extra: 1914/1784,
  37525. bottom: 172/2086
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Mischief",
  37532. height: math.unit(18, "inches")
  37533. },
  37534. {
  37535. name: "Trouble",
  37536. height: math.unit(12, "feet")
  37537. },
  37538. {
  37539. name: "Havoc",
  37540. height: math.unit(200, "feet"),
  37541. default: true
  37542. },
  37543. {
  37544. name: "Pandemonium",
  37545. height: math.unit(1, "mile")
  37546. },
  37547. {
  37548. name: "Catastrophe",
  37549. height: math.unit(100, "miles")
  37550. },
  37551. ]
  37552. ))
  37553. characterMakers.push(() => makeCharacter(
  37554. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37555. {
  37556. front: {
  37557. height: math.unit(4.7, "meters"),
  37558. weight: math.unit(6500, "kg"),
  37559. name: "Front",
  37560. image: {
  37561. source: "./media/characters/vex/front.svg",
  37562. extra: 1288/1140,
  37563. bottom: 100/1388
  37564. }
  37565. },
  37566. },
  37567. [
  37568. {
  37569. name: "Normal",
  37570. height: math.unit(4.7, "meters"),
  37571. default: true
  37572. },
  37573. ]
  37574. ))
  37575. characterMakers.push(() => makeCharacter(
  37576. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37577. {
  37578. normal: {
  37579. height: math.unit(6, "feet"),
  37580. weight: math.unit(350, "lb"),
  37581. name: "Normal",
  37582. image: {
  37583. source: "./media/characters/teshy/normal.svg",
  37584. extra: 1795/1735,
  37585. bottom: 16/1811
  37586. }
  37587. },
  37588. monsterFront: {
  37589. height: math.unit(12, "feet"),
  37590. weight: math.unit(4700, "lb"),
  37591. name: "Monster (Front)",
  37592. image: {
  37593. source: "./media/characters/teshy/monster-front.svg",
  37594. extra: 2042/2034,
  37595. bottom: 128/2170
  37596. }
  37597. },
  37598. monsterSide: {
  37599. height: math.unit(12, "feet"),
  37600. weight: math.unit(4700, "lb"),
  37601. name: "Monster (Side)",
  37602. image: {
  37603. source: "./media/characters/teshy/monster-side.svg",
  37604. extra: 2067/2056,
  37605. bottom: 70/2137
  37606. }
  37607. },
  37608. monsterBack: {
  37609. height: math.unit(12, "feet"),
  37610. weight: math.unit(4700, "lb"),
  37611. name: "Monster (Back)",
  37612. image: {
  37613. source: "./media/characters/teshy/monster-back.svg",
  37614. extra: 1921/1914,
  37615. bottom: 171/2092
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(6, "feet"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37629. {
  37630. front: {
  37631. height: math.unit(6, "feet"),
  37632. name: "Front",
  37633. image: {
  37634. source: "./media/characters/ramey/front.svg",
  37635. extra: 790/787,
  37636. bottom: 27/817
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Normal",
  37643. height: math.unit(6, "feet"),
  37644. default: true
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(5 + 5/12, "feet"),
  37653. weight: math.unit(120, "lb"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/phirae/front.svg",
  37657. extra: 2491/2436,
  37658. bottom: 38/2529
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(5 + 5/12, "feet"),
  37666. default: true
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37672. {
  37673. front: {
  37674. height: math.unit(5 + 3/12, "feet"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/stagglas/front.svg",
  37678. extra: 962/882,
  37679. bottom: 53/1015
  37680. }
  37681. },
  37682. feral: {
  37683. height: math.unit(335, "cm"),
  37684. name: "Feral",
  37685. image: {
  37686. source: "./media/characters/stagglas/feral.svg",
  37687. extra: 1732/1090,
  37688. bottom: 48/1780
  37689. }
  37690. },
  37691. },
  37692. [
  37693. {
  37694. name: "Normal",
  37695. height: math.unit(5 + 3/12, "feet"),
  37696. default: true
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37702. {
  37703. front: {
  37704. height: math.unit(5 + 4/12, "feet"),
  37705. weight: math.unit(145, "lb"),
  37706. name: "Front",
  37707. image: {
  37708. source: "./media/characters/starra/front.svg",
  37709. extra: 1790/1691,
  37710. bottom: 91/1881
  37711. }
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "Normal",
  37717. height: math.unit(5 + 4/12, "feet"),
  37718. default: true
  37719. },
  37720. ]
  37721. ))
  37722. characterMakers.push(() => makeCharacter(
  37723. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37724. {
  37725. front: {
  37726. height: math.unit(3.5, "meters"),
  37727. name: "Front",
  37728. image: {
  37729. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37730. extra: 1248/972,
  37731. bottom: 38/1286
  37732. }
  37733. },
  37734. },
  37735. [
  37736. {
  37737. name: "Normal",
  37738. height: math.unit(3.5, "meters"),
  37739. default: true
  37740. },
  37741. ]
  37742. ))
  37743. characterMakers.push(() => makeCharacter(
  37744. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37745. {
  37746. side: {
  37747. height: math.unit(8 + 2/12, "feet"),
  37748. weight: math.unit(1240, "lb"),
  37749. name: "Side",
  37750. image: {
  37751. source: "./media/characters/mika-valentine/side.svg",
  37752. extra: 2670/2501,
  37753. bottom: 250/2920
  37754. }
  37755. },
  37756. },
  37757. [
  37758. {
  37759. name: "Normal",
  37760. height: math.unit(8 + 2/12, "feet"),
  37761. default: true
  37762. },
  37763. ]
  37764. ))
  37765. characterMakers.push(() => makeCharacter(
  37766. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37767. {
  37768. front: {
  37769. height: math.unit(7 + 2/12, "feet"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/xoltol/front.svg",
  37773. extra: 2212/2124,
  37774. bottom: 84/2296
  37775. }
  37776. },
  37777. side: {
  37778. height: math.unit(7 + 2/12, "feet"),
  37779. name: "Side",
  37780. image: {
  37781. source: "./media/characters/xoltol/side.svg",
  37782. extra: 2273/2197,
  37783. bottom: 26/2299
  37784. }
  37785. },
  37786. hand: {
  37787. height: math.unit(2.5, "feet"),
  37788. name: "Hand",
  37789. image: {
  37790. source: "./media/characters/xoltol/hand.svg"
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Small-ish",
  37797. height: math.unit(5 + 11/12, "feet")
  37798. },
  37799. {
  37800. name: "Normal",
  37801. height: math.unit(7 + 2/12, "feet")
  37802. },
  37803. {
  37804. name: "\"Macro\"",
  37805. height: math.unit(14 + 9/12, "feet"),
  37806. default: true
  37807. },
  37808. {
  37809. name: "Alternate Height",
  37810. height: math.unit(20, "feet")
  37811. },
  37812. {
  37813. name: "Actually Macro",
  37814. height: math.unit(100, "feet")
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(5 + 2/12, "feet"),
  37823. weight: math.unit(75, "kg"),
  37824. name: "Front",
  37825. image: {
  37826. source: "./media/characters/kotetsu-redwood/front.svg",
  37827. extra: 1053/942,
  37828. bottom: 60/1113
  37829. }
  37830. },
  37831. },
  37832. [
  37833. {
  37834. name: "Normal",
  37835. height: math.unit(5 + 2/12, "feet"),
  37836. default: true
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(2.4, "meters"),
  37845. weight: math.unit(125, "kg"),
  37846. name: "Front",
  37847. image: {
  37848. source: "./media/characters/lilith/front.svg",
  37849. extra: 1590/1513,
  37850. bottom: 203/1793
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Humanoid",
  37857. height: math.unit(2.4, "meters")
  37858. },
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(6, "meters"),
  37862. default: true
  37863. },
  37864. {
  37865. name: "Largest",
  37866. height: math.unit(55, "meters")
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(8 + 4/12, "feet"),
  37875. weight: math.unit(535, "lb"),
  37876. name: "Front",
  37877. image: {
  37878. source: "./media/characters/beh'kah-bolger/front.svg",
  37879. extra: 1660/1603,
  37880. bottom: 37/1697
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(8 + 4/12, "feet"),
  37888. default: true
  37889. },
  37890. {
  37891. name: "Kaiju",
  37892. height: math.unit(250, "feet")
  37893. },
  37894. {
  37895. name: "Still Growing",
  37896. height: math.unit(10, "miles")
  37897. },
  37898. {
  37899. name: "Continental",
  37900. height: math.unit(5000, "miles")
  37901. },
  37902. {
  37903. name: "Final Form",
  37904. height: math.unit(2500000, "miles")
  37905. },
  37906. ]
  37907. ))
  37908. characterMakers.push(() => makeCharacter(
  37909. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37910. {
  37911. front: {
  37912. height: math.unit(7 + 2/12, "feet"),
  37913. weight: math.unit(230, "kg"),
  37914. name: "Front",
  37915. image: {
  37916. source: "./media/characters/tatyana-milewska/front.svg",
  37917. extra: 1199/1150,
  37918. bottom: 86/1285
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Normal",
  37925. height: math.unit(7 + 2/12, "feet"),
  37926. default: true
  37927. },
  37928. {
  37929. name: "Big",
  37930. height: math.unit(12, "feet")
  37931. },
  37932. {
  37933. name: "Minimacro",
  37934. height: math.unit(20, "feet")
  37935. },
  37936. {
  37937. name: "Macro",
  37938. height: math.unit(120, "feet")
  37939. },
  37940. ]
  37941. ))
  37942. characterMakers.push(() => makeCharacter(
  37943. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37944. {
  37945. front: {
  37946. height: math.unit(7 + 8/12, "feet"),
  37947. weight: math.unit(152, "kg"),
  37948. name: "Front",
  37949. image: {
  37950. source: "./media/characters/helen-arri/front.svg",
  37951. extra: 440/423,
  37952. bottom: 14/454
  37953. }
  37954. },
  37955. back: {
  37956. height: math.unit(7 + 8/12, "feet"),
  37957. weight: math.unit(152, "kg"),
  37958. name: "Back",
  37959. image: {
  37960. source: "./media/characters/helen-arri/back.svg",
  37961. extra: 443/426,
  37962. bottom: 8/451
  37963. }
  37964. },
  37965. },
  37966. [
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(7 + 8/12, "feet"),
  37970. default: true
  37971. },
  37972. {
  37973. name: "Big",
  37974. height: math.unit(14, "feet")
  37975. },
  37976. {
  37977. name: "Minimacro",
  37978. height: math.unit(24, "feet")
  37979. },
  37980. {
  37981. name: "Macro",
  37982. height: math.unit(140, "feet")
  37983. },
  37984. ]
  37985. ))
  37986. characterMakers.push(() => makeCharacter(
  37987. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37988. {
  37989. front: {
  37990. height: math.unit(6, "meters"),
  37991. name: "Front",
  37992. image: {
  37993. source: "./media/characters/ehanu-rehu/front.svg",
  37994. extra: 1800/1800,
  37995. bottom: 59/1859
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(6, "meters"),
  38003. default: true
  38004. },
  38005. ]
  38006. ))
  38007. characterMakers.push(() => makeCharacter(
  38008. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38009. {
  38010. front: {
  38011. height: math.unit(7 + 3/12, "feet"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/renholder/front.svg",
  38015. extra: 3096/2960,
  38016. bottom: 250/3346
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Normal Bat",
  38023. height: math.unit(7 + 3/12, "feet"),
  38024. default: true
  38025. },
  38026. {
  38027. name: "Slightly Tall Bat",
  38028. height: math.unit(100, "feet")
  38029. },
  38030. {
  38031. name: "Big Bat",
  38032. height: math.unit(1000, "feet")
  38033. },
  38034. {
  38035. name: "City-Sized Bat",
  38036. height: math.unit(200000, "feet")
  38037. },
  38038. {
  38039. name: "Bigger Bat",
  38040. height: math.unit(10000, "miles")
  38041. },
  38042. {
  38043. name: "Solar Sized Bat",
  38044. height: math.unit(100, "AU")
  38045. },
  38046. {
  38047. name: "Galactic Bat",
  38048. height: math.unit(200000, "lightyears")
  38049. },
  38050. {
  38051. name: "Universally Known Bat",
  38052. height: math.unit(1, "universe")
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(6 + 11/12, "feet"),
  38061. weight: math.unit(250, "lb"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/cookiecat/front.svg",
  38065. extra: 893/827,
  38066. bottom: 14/907
  38067. }
  38068. },
  38069. },
  38070. [
  38071. {
  38072. name: "Micro",
  38073. height: math.unit(3, "inches")
  38074. },
  38075. {
  38076. name: "Normal",
  38077. height: math.unit(6 + 11/12, "feet"),
  38078. default: true
  38079. },
  38080. {
  38081. name: "Macro",
  38082. height: math.unit(100, "feet")
  38083. },
  38084. {
  38085. name: "Macro+",
  38086. height: math.unit(404, "feet")
  38087. },
  38088. {
  38089. name: "Megamacro",
  38090. height: math.unit(165, "miles")
  38091. },
  38092. {
  38093. name: "Planetary",
  38094. height: math.unit(4600, "miles")
  38095. },
  38096. ]
  38097. ))
  38098. characterMakers.push(() => makeCharacter(
  38099. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38100. {
  38101. front: {
  38102. height: math.unit(10 + 3/12, "feet"),
  38103. weight: math.unit(1500, "lb"),
  38104. name: "Front",
  38105. image: {
  38106. source: "./media/characters/tux-kusanagi/front.svg",
  38107. extra: 944/840,
  38108. bottom: 39/983
  38109. }
  38110. },
  38111. back: {
  38112. height: math.unit(10 + 3/12, "feet"),
  38113. weight: math.unit(1500, "lb"),
  38114. name: "Back",
  38115. image: {
  38116. source: "./media/characters/tux-kusanagi/back.svg",
  38117. extra: 941/842,
  38118. bottom: 28/969
  38119. }
  38120. },
  38121. rump: {
  38122. height: math.unit(5.25, "feet"),
  38123. name: "Rump",
  38124. image: {
  38125. source: "./media/characters/tux-kusanagi/rump.svg"
  38126. }
  38127. },
  38128. beak: {
  38129. height: math.unit(1.54, "feet"),
  38130. name: "Beak",
  38131. image: {
  38132. source: "./media/characters/tux-kusanagi/beak.svg"
  38133. }
  38134. },
  38135. },
  38136. [
  38137. {
  38138. name: "Normal",
  38139. height: math.unit(10 + 3/12, "feet"),
  38140. default: true
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38146. {
  38147. front: {
  38148. height: math.unit(58, "feet"),
  38149. weight: math.unit(200, "tons"),
  38150. name: "Front",
  38151. image: {
  38152. source: "./media/characters/uzarmazari/front.svg",
  38153. extra: 1575/1455,
  38154. bottom: 152/1727
  38155. }
  38156. },
  38157. back: {
  38158. height: math.unit(58, "feet"),
  38159. weight: math.unit(200, "tons"),
  38160. name: "Back",
  38161. image: {
  38162. source: "./media/characters/uzarmazari/back.svg",
  38163. extra: 1585/1510,
  38164. bottom: 157/1742
  38165. }
  38166. },
  38167. head: {
  38168. height: math.unit(26, "feet"),
  38169. name: "Head",
  38170. image: {
  38171. source: "./media/characters/uzarmazari/head.svg"
  38172. }
  38173. },
  38174. },
  38175. [
  38176. {
  38177. name: "Normal",
  38178. height: math.unit(58, "feet"),
  38179. default: true
  38180. },
  38181. ]
  38182. ))
  38183. characterMakers.push(() => makeCharacter(
  38184. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38185. {
  38186. side: {
  38187. height: math.unit(15, "feet"),
  38188. name: "Side",
  38189. image: {
  38190. source: "./media/characters/akitu/side.svg",
  38191. extra: 1421/1321,
  38192. bottom: 157/1578
  38193. }
  38194. },
  38195. front: {
  38196. height: math.unit(15, "feet"),
  38197. name: "Front",
  38198. image: {
  38199. source: "./media/characters/akitu/front.svg",
  38200. extra: 1435/1326,
  38201. bottom: 232/1667
  38202. }
  38203. },
  38204. },
  38205. [
  38206. {
  38207. name: "Normal",
  38208. height: math.unit(15, "feet"),
  38209. default: true
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38215. {
  38216. front: {
  38217. height: math.unit(10 + 8/12, "feet"),
  38218. name: "Front",
  38219. image: {
  38220. source: "./media/characters/azalie-croixland/front.svg",
  38221. extra: 1972/1856,
  38222. bottom: 31/2003
  38223. }
  38224. },
  38225. },
  38226. [
  38227. {
  38228. name: "Original Height",
  38229. height: math.unit(5 + 4/12, "feet")
  38230. },
  38231. {
  38232. name: "Normal Height",
  38233. height: math.unit(10 + 8/12, "feet"),
  38234. default: true
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38240. {
  38241. side: {
  38242. height: math.unit(7 + 1/12, "feet"),
  38243. weight: math.unit(245, "lb"),
  38244. name: "Side",
  38245. image: {
  38246. source: "./media/characters/kavus-kazian/side.svg",
  38247. extra: 349/342,
  38248. bottom: 15/364
  38249. }
  38250. },
  38251. },
  38252. [
  38253. {
  38254. name: "Normal",
  38255. height: math.unit(7 + 1/12, "feet"),
  38256. default: true
  38257. },
  38258. ]
  38259. ))
  38260. characterMakers.push(() => makeCharacter(
  38261. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38262. {
  38263. normalFront: {
  38264. height: math.unit(5 + 11/12, "feet"),
  38265. name: "Front",
  38266. image: {
  38267. source: "./media/characters/moonlight-rose/normal-front.svg",
  38268. extra: 1980/1825,
  38269. bottom: 18/1998
  38270. },
  38271. form: "normal",
  38272. default: true
  38273. },
  38274. normalBack: {
  38275. height: math.unit(5 + 11/12, "feet"),
  38276. name: "Back",
  38277. image: {
  38278. source: "./media/characters/moonlight-rose/normal-back.svg",
  38279. extra: 2010/1839,
  38280. bottom: 10/2020
  38281. },
  38282. form: "normal"
  38283. },
  38284. demonFront: {
  38285. height: math.unit(1.5, "earths"),
  38286. name: "Front",
  38287. image: {
  38288. source: "./media/characters/moonlight-rose/demon.svg",
  38289. extra: 1400/1294,
  38290. bottom: 45/1445
  38291. },
  38292. form: "demon",
  38293. default: true
  38294. },
  38295. terraFront: {
  38296. height: math.unit(1.5, "earths"),
  38297. name: "Front",
  38298. image: {
  38299. source: "./media/characters/moonlight-rose/terra.svg"
  38300. },
  38301. form: "terra",
  38302. default: true
  38303. },
  38304. jupiterFront: {
  38305. height: math.unit(69911*2, "km"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38309. extra: 1367/1286,
  38310. bottom: 55/1422
  38311. },
  38312. form: "jupiter",
  38313. default: true
  38314. },
  38315. neptuneFront: {
  38316. height: math.unit(24622*2, "feet"),
  38317. name: "Front",
  38318. image: {
  38319. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38320. extra: 1851/1712,
  38321. bottom: 0/1851
  38322. },
  38323. form: "neptune",
  38324. default: true
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "\"Natural\" Height",
  38330. height: math.unit(5 + 11/12, "feet"),
  38331. form: "normal"
  38332. },
  38333. {
  38334. name: "Smallest comfortable size",
  38335. height: math.unit(40, "meters"),
  38336. form: "normal"
  38337. },
  38338. {
  38339. name: "Common size",
  38340. height: math.unit(50, "km"),
  38341. form: "normal",
  38342. default: true
  38343. },
  38344. {
  38345. name: "Normal",
  38346. height: math.unit(1.5, "earths"),
  38347. form: "demon",
  38348. default: true
  38349. },
  38350. {
  38351. name: "Universal",
  38352. height: math.unit(15, "universes"),
  38353. form: "demon"
  38354. },
  38355. {
  38356. name: "Earth",
  38357. height: math.unit(1.5, "earths"),
  38358. form: "terra",
  38359. default: true
  38360. },
  38361. {
  38362. name: "Super Earth",
  38363. height: math.unit(67.5, "earths"),
  38364. form: "terra"
  38365. },
  38366. {
  38367. name: "Doesn't fit in a solar system...",
  38368. height: math.unit(1, "galaxy"),
  38369. form: "terra"
  38370. },
  38371. {
  38372. name: "Saturn",
  38373. height: math.unit(58232*2, "km"),
  38374. form: "jupiter"
  38375. },
  38376. {
  38377. name: "Jupiter",
  38378. height: math.unit(69911*2, "km"),
  38379. form: "jupiter",
  38380. default: true
  38381. },
  38382. {
  38383. name: "HD 100546 b",
  38384. height: math.unit(482938, "km"),
  38385. form: "jupiter"
  38386. },
  38387. {
  38388. name: "Enceladus",
  38389. height: math.unit(513*2, "km"),
  38390. form: "neptune"
  38391. },
  38392. {
  38393. name: "Europe",
  38394. height: math.unit(1560*2, "km"),
  38395. form: "neptune"
  38396. },
  38397. {
  38398. name: "Neptune",
  38399. height: math.unit(24622*2, "km"),
  38400. form: "neptune",
  38401. default: true
  38402. },
  38403. {
  38404. name: "CoRoT-9b",
  38405. height: math.unit(75067*2, "km"),
  38406. form: "neptune"
  38407. },
  38408. ],
  38409. {
  38410. "normal": {
  38411. name: "Normal",
  38412. default: true
  38413. },
  38414. "demon": {
  38415. name: "Demon"
  38416. },
  38417. "terra": {
  38418. name: "Terra"
  38419. },
  38420. "jupiter": {
  38421. name: "Jupiter"
  38422. },
  38423. "neptune": {
  38424. name: "Neptune"
  38425. }
  38426. }
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(16, "feet"),
  38433. weight: math.unit(610, "kg"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/huckle/front.svg",
  38437. extra: 1731/1625,
  38438. bottom: 33/1764
  38439. }
  38440. },
  38441. back: {
  38442. height: math.unit(16, "feet"),
  38443. weight: math.unit(610, "kg"),
  38444. name: "Back",
  38445. image: {
  38446. source: "./media/characters/huckle/back.svg",
  38447. extra: 1738/1651,
  38448. bottom: 37/1775
  38449. }
  38450. },
  38451. laughing: {
  38452. height: math.unit(3.75, "feet"),
  38453. name: "Laughing",
  38454. image: {
  38455. source: "./media/characters/huckle/laughing.svg"
  38456. }
  38457. },
  38458. angry: {
  38459. height: math.unit(4.15, "feet"),
  38460. name: "Angry",
  38461. image: {
  38462. source: "./media/characters/huckle/angry.svg"
  38463. }
  38464. },
  38465. },
  38466. [
  38467. {
  38468. name: "Normal",
  38469. height: math.unit(16, "feet"),
  38470. default: true
  38471. },
  38472. {
  38473. name: "Mini Macro",
  38474. height: math.unit(463, "feet")
  38475. },
  38476. {
  38477. name: "Macro",
  38478. height: math.unit(1680, "meters")
  38479. },
  38480. {
  38481. name: "Mega Macro",
  38482. height: math.unit(175, "km")
  38483. },
  38484. {
  38485. name: "Terra Macro",
  38486. height: math.unit(32, "gigameters")
  38487. },
  38488. {
  38489. name: "Multiverse+",
  38490. height: math.unit(2.56e23, "yottameters")
  38491. },
  38492. ]
  38493. ))
  38494. characterMakers.push(() => makeCharacter(
  38495. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38496. {
  38497. front: {
  38498. height: math.unit(6 + 9/12, "feet"),
  38499. weight: math.unit(280, "lb"),
  38500. name: "Front",
  38501. image: {
  38502. source: "./media/characters/candy/front.svg",
  38503. extra: 234/217,
  38504. bottom: 11/245
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Really Small",
  38511. height: math.unit(0.1, "nm")
  38512. },
  38513. {
  38514. name: "Micro",
  38515. height: math.unit(2, "inches")
  38516. },
  38517. {
  38518. name: "Normal",
  38519. height: math.unit(6 + 9/12, "feet"),
  38520. default: true
  38521. },
  38522. {
  38523. name: "Small Macro",
  38524. height: math.unit(69, "feet")
  38525. },
  38526. {
  38527. name: "Macro",
  38528. height: math.unit(160, "feet")
  38529. },
  38530. {
  38531. name: "Megamacro",
  38532. height: math.unit(22000, "miles")
  38533. },
  38534. {
  38535. name: "Gigamacro",
  38536. height: math.unit(50000, "miles")
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(4, "feet"),
  38545. weight: math.unit(90, "lb"),
  38546. name: "Front",
  38547. image: {
  38548. source: "./media/characters/joey-mcdonald/front.svg",
  38549. extra: 1059/852,
  38550. bottom: 33/1092
  38551. }
  38552. },
  38553. back: {
  38554. height: math.unit(4, "feet"),
  38555. weight: math.unit(90, "lb"),
  38556. name: "Back",
  38557. image: {
  38558. source: "./media/characters/joey-mcdonald/back.svg",
  38559. extra: 1077/879,
  38560. bottom: 5/1082
  38561. }
  38562. },
  38563. frontKobold: {
  38564. height: math.unit(4, "feet"),
  38565. weight: math.unit(100, "lb"),
  38566. name: "Front-kobold",
  38567. image: {
  38568. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38569. extra: 1480/1367,
  38570. bottom: 0/1480
  38571. }
  38572. },
  38573. backKobold: {
  38574. height: math.unit(4, "feet"),
  38575. weight: math.unit(100, "lb"),
  38576. name: "Back-kobold",
  38577. image: {
  38578. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38579. extra: 1449/1361,
  38580. bottom: 0/1449
  38581. }
  38582. },
  38583. },
  38584. [
  38585. {
  38586. name: "Normal",
  38587. height: math.unit(4, "feet"),
  38588. default: true
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(12 + 6/12, "feet"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/kass-lockheed/front.svg",
  38600. extra: 354/343,
  38601. bottom: 9/363
  38602. }
  38603. },
  38604. back: {
  38605. height: math.unit(12 + 6/12, "feet"),
  38606. name: "Back",
  38607. image: {
  38608. source: "./media/characters/kass-lockheed/back.svg",
  38609. extra: 364/352,
  38610. bottom: 3/367
  38611. }
  38612. },
  38613. dick: {
  38614. height: math.unit(3.12, "feet"),
  38615. name: "Dick",
  38616. image: {
  38617. source: "./media/characters/kass-lockheed/dick.svg"
  38618. }
  38619. },
  38620. head: {
  38621. height: math.unit(2.6, "feet"),
  38622. name: "Head",
  38623. image: {
  38624. source: "./media/characters/kass-lockheed/head.svg"
  38625. }
  38626. },
  38627. bleh: {
  38628. height: math.unit(2.85, "feet"),
  38629. name: "Bleh",
  38630. image: {
  38631. source: "./media/characters/kass-lockheed/bleh.svg"
  38632. }
  38633. },
  38634. smug: {
  38635. height: math.unit(2.85, "feet"),
  38636. name: "Smug",
  38637. image: {
  38638. source: "./media/characters/kass-lockheed/smug.svg"
  38639. }
  38640. },
  38641. },
  38642. [
  38643. {
  38644. name: "Normal",
  38645. height: math.unit(12 + 6/12, "feet"),
  38646. default: true
  38647. },
  38648. ]
  38649. ))
  38650. characterMakers.push(() => makeCharacter(
  38651. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38652. {
  38653. front: {
  38654. height: math.unit(6 + 2/12, "feet"),
  38655. name: "Front",
  38656. image: {
  38657. source: "./media/characters/taylor/front.svg",
  38658. extra: 639/495,
  38659. bottom: 12/651
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(6 + 2/12, "feet"),
  38667. default: true
  38668. },
  38669. {
  38670. name: "Big",
  38671. height: math.unit(15, "feet")
  38672. },
  38673. {
  38674. name: "Lorg",
  38675. height: math.unit(80, "feet")
  38676. },
  38677. {
  38678. name: "Too Lorg",
  38679. height: math.unit(120, "feet")
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(15, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/kaizer/front.svg",
  38691. extra: 1612/1436,
  38692. bottom: 43/1655
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(15, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(2, "feet"),
  38709. weight: math.unit(30, "lb"),
  38710. name: "Front",
  38711. image: {
  38712. source: "./media/characters/sandy/front.svg",
  38713. extra: 1439/1307,
  38714. bottom: 194/1633
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Normal",
  38721. height: math.unit(2, "feet"),
  38722. default: true
  38723. },
  38724. ]
  38725. ))
  38726. characterMakers.push(() => makeCharacter(
  38727. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38728. {
  38729. front: {
  38730. height: math.unit(3, "feet"),
  38731. name: "Front",
  38732. image: {
  38733. source: "./media/characters/mellvi/front.svg",
  38734. extra: 1831/1630,
  38735. bottom: 58/1889
  38736. }
  38737. },
  38738. },
  38739. [
  38740. {
  38741. name: "Normal",
  38742. height: math.unit(3, "feet"),
  38743. default: true
  38744. },
  38745. ]
  38746. ))
  38747. characterMakers.push(() => makeCharacter(
  38748. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38749. {
  38750. front: {
  38751. height: math.unit(5 + 11/12, "feet"),
  38752. weight: math.unit(200, "lb"),
  38753. name: "Front",
  38754. image: {
  38755. source: "./media/characters/shirou/front.svg",
  38756. extra: 2491/2383,
  38757. bottom: 189/2680
  38758. }
  38759. },
  38760. back: {
  38761. height: math.unit(5 + 11/12, "feet"),
  38762. weight: math.unit(200, "lb"),
  38763. name: "Back",
  38764. image: {
  38765. source: "./media/characters/shirou/back.svg",
  38766. extra: 2554/2450,
  38767. bottom: 76/2630
  38768. }
  38769. },
  38770. },
  38771. [
  38772. {
  38773. name: "Normal",
  38774. height: math.unit(5 + 11/12, "feet"),
  38775. default: true
  38776. },
  38777. ]
  38778. ))
  38779. characterMakers.push(() => makeCharacter(
  38780. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38781. {
  38782. front: {
  38783. height: math.unit(6 + 3/12, "feet"),
  38784. weight: math.unit(177, "lb"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/noryu/front.svg",
  38788. extra: 973/885,
  38789. bottom: 10/983
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(6 + 3/12, "feet"),
  38797. default: true
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(5 + 6/12, "feet"),
  38806. weight: math.unit(170, "lb"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/mevolas-rubenido/front.svg",
  38810. extra: 2109/1901,
  38811. bottom: 96/2205
  38812. }
  38813. },
  38814. },
  38815. [
  38816. {
  38817. name: "Normal",
  38818. height: math.unit(5 + 6/12, "feet"),
  38819. default: true
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(100, "feet"),
  38828. name: "Front",
  38829. image: {
  38830. source: "./media/characters/dee/front.svg",
  38831. extra: 2153/2036,
  38832. bottom: 59/2212
  38833. }
  38834. },
  38835. back: {
  38836. height: math.unit(100, "feet"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/dee/back.svg",
  38840. extra: 2183/2058,
  38841. bottom: 75/2258
  38842. }
  38843. },
  38844. foot: {
  38845. height: math.unit(19.43, "feet"),
  38846. name: "Foot",
  38847. image: {
  38848. source: "./media/characters/dee/foot.svg"
  38849. }
  38850. },
  38851. hoof: {
  38852. height: math.unit(20.6, "feet"),
  38853. name: "Hoof",
  38854. image: {
  38855. source: "./media/characters/dee/hoof.svg"
  38856. }
  38857. },
  38858. },
  38859. [
  38860. {
  38861. name: "Macro",
  38862. height: math.unit(100, "feet"),
  38863. default: true
  38864. },
  38865. ]
  38866. ))
  38867. characterMakers.push(() => makeCharacter(
  38868. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38869. {
  38870. front: {
  38871. height: math.unit(5 + 6/12, "feet"),
  38872. name: "Front",
  38873. image: {
  38874. source: "./media/characters/teh/front.svg",
  38875. extra: 1002/847,
  38876. bottom: 62/1064
  38877. }
  38878. },
  38879. },
  38880. [
  38881. {
  38882. name: "Normal",
  38883. height: math.unit(5 + 6/12, "feet"),
  38884. default: true
  38885. },
  38886. ]
  38887. ))
  38888. characterMakers.push(() => makeCharacter(
  38889. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38890. {
  38891. side: {
  38892. height: math.unit(6 + 1/12, "feet"),
  38893. weight: math.unit(204, "lb"),
  38894. name: "Side",
  38895. image: {
  38896. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38897. extra: 974/775,
  38898. bottom: 169/1143
  38899. }
  38900. },
  38901. sitting: {
  38902. height: math.unit(6 + 2/12, "feet"),
  38903. weight: math.unit(204, "lb"),
  38904. name: "Sitting",
  38905. image: {
  38906. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38907. extra: 1175/964,
  38908. bottom: 378/1553
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(6 + 1/12, "feet"),
  38916. default: true
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38922. {
  38923. front: {
  38924. height: math.unit(6, "inches"),
  38925. name: "Front",
  38926. image: {
  38927. source: "./media/characters/tululi/front.svg",
  38928. extra: 1997/1876,
  38929. bottom: 20/2017
  38930. }
  38931. },
  38932. },
  38933. [
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(6, "inches"),
  38937. default: true
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38943. {
  38944. front: {
  38945. height: math.unit(4 + 1/12, "feet"),
  38946. name: "Front",
  38947. image: {
  38948. source: "./media/characters/star/front.svg",
  38949. extra: 1493/1189,
  38950. bottom: 48/1541
  38951. }
  38952. },
  38953. },
  38954. [
  38955. {
  38956. name: "Normal",
  38957. height: math.unit(4 + 1/12, "feet"),
  38958. default: true
  38959. },
  38960. ]
  38961. ))
  38962. characterMakers.push(() => makeCharacter(
  38963. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38964. {
  38965. front: {
  38966. height: math.unit(6 + 3/12, "feet"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/comet/front.svg",
  38970. extra: 1681/1462,
  38971. bottom: 26/1707
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(6 + 3/12, "feet"),
  38979. default: true
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(950, "feet"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/vortex/front.svg",
  38991. extra: 1497/1434,
  38992. bottom: 56/1553
  38993. }
  38994. },
  38995. maw: {
  38996. height: math.unit(285, "feet"),
  38997. name: "Maw",
  38998. image: {
  38999. source: "./media/characters/vortex/maw.svg"
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Macro",
  39006. height: math.unit(950, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(600, "feet"),
  39016. weight: math.unit(0.02, "grams"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/doodle/front.svg",
  39020. extra: 1578/1413,
  39021. bottom: 37/1615
  39022. }
  39023. },
  39024. },
  39025. [
  39026. {
  39027. name: "Macro",
  39028. height: math.unit(600, "feet"),
  39029. default: true
  39030. },
  39031. ]
  39032. ))
  39033. characterMakers.push(() => makeCharacter(
  39034. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39035. {
  39036. front: {
  39037. height: math.unit(6 + 6/12, "feet"),
  39038. name: "Front",
  39039. image: {
  39040. source: "./media/characters/jai/front.svg",
  39041. extra: 1645/1534,
  39042. bottom: 115/1760
  39043. }
  39044. },
  39045. },
  39046. [
  39047. {
  39048. name: "Normal",
  39049. height: math.unit(6 + 6/12, "feet"),
  39050. default: true
  39051. },
  39052. ]
  39053. ))
  39054. characterMakers.push(() => makeCharacter(
  39055. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39056. {
  39057. front: {
  39058. height: math.unit(6 + 8/12, "feet"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/pixel/front.svg",
  39062. extra: 1900/1735,
  39063. bottom: 63/1963
  39064. }
  39065. },
  39066. },
  39067. [
  39068. {
  39069. name: "Normal",
  39070. height: math.unit(6 + 8/12, "feet"),
  39071. default: true
  39072. },
  39073. ]
  39074. ))
  39075. characterMakers.push(() => makeCharacter(
  39076. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39077. {
  39078. back: {
  39079. height: math.unit(4 + 1/12, "feet"),
  39080. weight: math.unit(75, "lb"),
  39081. name: "Back",
  39082. image: {
  39083. source: "./media/characters/rhett/back.svg",
  39084. extra: 930/878,
  39085. bottom: 25/955
  39086. }
  39087. },
  39088. front: {
  39089. height: math.unit(4 + 1/12, "feet"),
  39090. weight: math.unit(75, "lb"),
  39091. name: "Front",
  39092. image: {
  39093. source: "./media/characters/rhett/front.svg",
  39094. extra: 1682/1586,
  39095. bottom: 92/1774
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "Micro",
  39102. height: math.unit(8, "inches")
  39103. },
  39104. {
  39105. name: "Tiny",
  39106. height: math.unit(2, "feet")
  39107. },
  39108. {
  39109. name: "Normal",
  39110. height: math.unit(4 + 1/12, "feet"),
  39111. default: true
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(3 + 3/12, "feet"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/penny/front.svg",
  39123. extra: 1406/1311,
  39124. bottom: 26/1432
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Normal",
  39131. height: math.unit(3 + 3/12, "feet"),
  39132. default: true
  39133. },
  39134. ]
  39135. ))
  39136. characterMakers.push(() => makeCharacter(
  39137. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39138. {
  39139. front: {
  39140. height: math.unit(4 + 11/12, "feet"),
  39141. name: "Front",
  39142. image: {
  39143. source: "./media/characters/monty/front.svg",
  39144. extra: 1479/1209,
  39145. bottom: 0/1479
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(4 + 11/12, "feet"),
  39153. default: true
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(8 + 4/12, "feet"),
  39162. name: "Front",
  39163. image: {
  39164. source: "./media/characters/sterling/front.svg",
  39165. extra: 1420/1236,
  39166. bottom: 27/1447
  39167. }
  39168. },
  39169. },
  39170. [
  39171. {
  39172. name: "Normal",
  39173. height: math.unit(8 + 4/12, "feet"),
  39174. default: true
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(15, "feet"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/marble/front.svg",
  39186. extra: 973/937,
  39187. bottom: 32/1005
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(15, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39201. {
  39202. front: {
  39203. height: math.unit(3, "inches"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/powder/front.svg",
  39207. extra: 1504/1334,
  39208. bottom: 518/2022
  39209. }
  39210. },
  39211. },
  39212. [
  39213. {
  39214. name: "Normal",
  39215. height: math.unit(3, "inches"),
  39216. default: true
  39217. },
  39218. ]
  39219. ))
  39220. characterMakers.push(() => makeCharacter(
  39221. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39222. {
  39223. front: {
  39224. height: math.unit(4 + 5/12, "feet"),
  39225. name: "Front",
  39226. image: {
  39227. source: "./media/characters/joey-raccoon/front.svg",
  39228. extra: 1273/1197,
  39229. bottom: 0/1273
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(4 + 5/12, "feet"),
  39237. default: true
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(8 + 4/12, "feet"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/vick/front.svg",
  39249. extra: 2187/2118,
  39250. bottom: 47/2234
  39251. }
  39252. },
  39253. },
  39254. [
  39255. {
  39256. name: "Normal",
  39257. height: math.unit(8 + 4/12, "feet"),
  39258. default: true
  39259. },
  39260. ]
  39261. ))
  39262. characterMakers.push(() => makeCharacter(
  39263. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39264. {
  39265. front: {
  39266. height: math.unit(5 + 5/12, "feet"),
  39267. name: "Front",
  39268. image: {
  39269. source: "./media/characters/mitsy/front.svg",
  39270. extra: 1842/1695,
  39271. bottom: 0/1842
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(5 + 5/12, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(6 + 3/12, "feet"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/silvy/front.svg",
  39291. extra: 1995/1836,
  39292. bottom: 225/2220
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(6 + 3/12, "feet"),
  39300. default: true
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(3 + 8/12, "feet"),
  39309. name: "Front",
  39310. image: {
  39311. source: "./media/characters/rodney/front.svg",
  39312. extra: 1956/1747,
  39313. bottom: 31/1987
  39314. }
  39315. },
  39316. frontDressed: {
  39317. height: math.unit(2.9, "feet"),
  39318. name: "Front (Dressed)",
  39319. image: {
  39320. source: "./media/characters/rodney/front-dressed.svg",
  39321. extra: 1382/1241,
  39322. bottom: 385/1767
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(3 + 8/12, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(5 + 9/12, "feet"),
  39339. weight: math.unit(194, "lbs"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/zakail-sudekai/front.svg",
  39343. extra: 2696/2533,
  39344. bottom: 248/2944
  39345. }
  39346. },
  39347. maw: {
  39348. height: math.unit(1.35, "feet"),
  39349. name: "Maw",
  39350. image: {
  39351. source: "./media/characters/zakail-sudekai/maw.svg"
  39352. }
  39353. },
  39354. },
  39355. [
  39356. {
  39357. name: "Normal",
  39358. height: math.unit(5 + 9/12, "feet"),
  39359. default: true
  39360. },
  39361. ]
  39362. ))
  39363. characterMakers.push(() => makeCharacter(
  39364. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39365. {
  39366. front: {
  39367. height: math.unit(8 + 4/12, "feet"),
  39368. weight: math.unit(1200, "lb"),
  39369. name: "Front",
  39370. image: {
  39371. source: "./media/characters/eleanor/front.svg",
  39372. extra: 1226/1192,
  39373. bottom: 52/1278
  39374. }
  39375. },
  39376. back: {
  39377. height: math.unit(8 + 4/12, "feet"),
  39378. weight: math.unit(1200, "lb"),
  39379. name: "Back",
  39380. image: {
  39381. source: "./media/characters/eleanor/back.svg",
  39382. extra: 1242/1184,
  39383. bottom: 60/1302
  39384. }
  39385. },
  39386. head: {
  39387. height: math.unit(2.62, "feet"),
  39388. name: "Head",
  39389. image: {
  39390. source: "./media/characters/eleanor/head.svg"
  39391. }
  39392. },
  39393. },
  39394. [
  39395. {
  39396. name: "Normal",
  39397. height: math.unit(8 + 4/12, "feet"),
  39398. default: true
  39399. },
  39400. ]
  39401. ))
  39402. characterMakers.push(() => makeCharacter(
  39403. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39404. {
  39405. front: {
  39406. height: math.unit(8 + 4/12, "feet"),
  39407. weight: math.unit(750, "lb"),
  39408. name: "Front",
  39409. image: {
  39410. source: "./media/characters/tanya/front.svg",
  39411. extra: 1749/1615,
  39412. bottom: 33/1782
  39413. }
  39414. },
  39415. },
  39416. [
  39417. {
  39418. name: "Normal",
  39419. height: math.unit(8 + 4/12, "feet"),
  39420. default: true
  39421. },
  39422. ]
  39423. ))
  39424. characterMakers.push(() => makeCharacter(
  39425. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39426. {
  39427. front: {
  39428. height: math.unit(5, "feet"),
  39429. weight: math.unit(225, "lb"),
  39430. name: "Front",
  39431. image: {
  39432. source: "./media/characters/cindy/front.svg",
  39433. extra: 1320/1250,
  39434. bottom: 42/1362
  39435. }
  39436. },
  39437. frontDressed: {
  39438. height: math.unit(5, "feet"),
  39439. weight: math.unit(225, "lb"),
  39440. name: "Front (Dressed)",
  39441. image: {
  39442. source: "./media/characters/cindy/front-dressed.svg",
  39443. extra: 1320/1250,
  39444. bottom: 42/1362
  39445. }
  39446. },
  39447. back: {
  39448. height: math.unit(5, "feet"),
  39449. weight: math.unit(225, "lb"),
  39450. name: "Back",
  39451. image: {
  39452. source: "./media/characters/cindy/back.svg",
  39453. extra: 1384/1346,
  39454. bottom: 14/1398
  39455. }
  39456. },
  39457. },
  39458. [
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(5, "feet"),
  39462. default: true
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39468. {
  39469. front: {
  39470. height: math.unit(6 + 9/12, "feet"),
  39471. weight: math.unit(440, "lb"),
  39472. name: "Front",
  39473. image: {
  39474. source: "./media/characters/wilbur-owen/front.svg",
  39475. extra: 1575/1448,
  39476. bottom: 72/1647
  39477. }
  39478. },
  39479. back: {
  39480. height: math.unit(6 + 9/12, "feet"),
  39481. weight: math.unit(440, "lb"),
  39482. name: "Back",
  39483. image: {
  39484. source: "./media/characters/wilbur-owen/back.svg",
  39485. extra: 1578/1445,
  39486. bottom: 36/1614
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(6 + 9/12, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(6 + 5/12, "feet"),
  39503. weight: math.unit(650, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/keegan/front.svg",
  39507. extra: 2387/2198,
  39508. bottom: 33/2420
  39509. }
  39510. },
  39511. side: {
  39512. height: math.unit(6 + 5/12, "feet"),
  39513. weight: math.unit(650, "lb"),
  39514. name: "Side",
  39515. image: {
  39516. source: "./media/characters/keegan/side.svg",
  39517. extra: 2390/2202,
  39518. bottom: 47/2437
  39519. }
  39520. },
  39521. back: {
  39522. height: math.unit(6 + 5/12, "feet"),
  39523. weight: math.unit(650, "lb"),
  39524. name: "Back",
  39525. image: {
  39526. source: "./media/characters/keegan/back.svg",
  39527. extra: 2418/2268,
  39528. bottom: 15/2433
  39529. }
  39530. },
  39531. frontSfw: {
  39532. height: math.unit(6 + 5/12, "feet"),
  39533. weight: math.unit(650, "lb"),
  39534. name: "Front (SFW)",
  39535. image: {
  39536. source: "./media/characters/keegan/front-sfw.svg",
  39537. extra: 2387/2198,
  39538. bottom: 33/2420
  39539. }
  39540. },
  39541. beans: {
  39542. height: math.unit(1.85, "feet"),
  39543. name: "Beans",
  39544. image: {
  39545. source: "./media/characters/keegan/beans.svg"
  39546. }
  39547. },
  39548. },
  39549. [
  39550. {
  39551. name: "Normal",
  39552. height: math.unit(6 + 5/12, "feet"),
  39553. default: true
  39554. },
  39555. ]
  39556. ))
  39557. characterMakers.push(() => makeCharacter(
  39558. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39559. {
  39560. front: {
  39561. height: math.unit(9, "feet"),
  39562. name: "Front",
  39563. image: {
  39564. source: "./media/characters/colton/front.svg",
  39565. extra: 1589/1326,
  39566. bottom: 139/1728
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(9, "feet"),
  39574. default: true
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(2 + 9/12, "feet"),
  39583. name: "Front",
  39584. image: {
  39585. source: "./media/characters/bora/front.svg",
  39586. extra: 1265/1250,
  39587. bottom: 24/1289
  39588. }
  39589. },
  39590. },
  39591. [
  39592. {
  39593. name: "Normal",
  39594. height: math.unit(2 + 9/12, "feet"),
  39595. default: true
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39601. {
  39602. front: {
  39603. height: math.unit(8, "feet"),
  39604. name: "Front",
  39605. image: {
  39606. source: "./media/characters/myu-myu/front.svg",
  39607. extra: 1949/1857,
  39608. bottom: 90/2039
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(8, "feet"),
  39616. default: true
  39617. },
  39618. {
  39619. name: "Big",
  39620. height: math.unit(15, "feet")
  39621. },
  39622. {
  39623. name: "BIG",
  39624. height: math.unit(25, "feet")
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39630. {
  39631. side: {
  39632. height: math.unit(7 + 5/12, "feet"),
  39633. weight: math.unit(2800, "lb"),
  39634. name: "Side",
  39635. image: {
  39636. source: "./media/characters/haloren/side.svg",
  39637. extra: 1793/409,
  39638. bottom: 59/1852
  39639. }
  39640. },
  39641. frontPaw: {
  39642. height: math.unit(2.36, "feet"),
  39643. name: "Front paw",
  39644. image: {
  39645. source: "./media/characters/haloren/front-paw.svg"
  39646. }
  39647. },
  39648. hindPaw: {
  39649. height: math.unit(3.18, "feet"),
  39650. name: "Hind paw",
  39651. image: {
  39652. source: "./media/characters/haloren/hind-paw.svg"
  39653. }
  39654. },
  39655. maw: {
  39656. height: math.unit(5.05, "feet"),
  39657. name: "Maw",
  39658. image: {
  39659. source: "./media/characters/haloren/maw.svg"
  39660. }
  39661. },
  39662. dick: {
  39663. height: math.unit(2.90, "feet"),
  39664. name: "Dick",
  39665. image: {
  39666. source: "./media/characters/haloren/dick.svg"
  39667. }
  39668. },
  39669. },
  39670. [
  39671. {
  39672. name: "Normal",
  39673. height: math.unit(7 + 5/12, "feet"),
  39674. default: true
  39675. },
  39676. {
  39677. name: "Enhanced",
  39678. height: math.unit(14 + 3/12, "feet")
  39679. },
  39680. ]
  39681. ))
  39682. characterMakers.push(() => makeCharacter(
  39683. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39684. {
  39685. front: {
  39686. height: math.unit(171, "cm"),
  39687. name: "Front",
  39688. image: {
  39689. source: "./media/characters/kimmy/front.svg",
  39690. extra: 1491/1435,
  39691. bottom: 53/1544
  39692. }
  39693. },
  39694. },
  39695. [
  39696. {
  39697. name: "Small",
  39698. height: math.unit(9, "cm")
  39699. },
  39700. {
  39701. name: "Normal",
  39702. height: math.unit(171, "cm"),
  39703. default: true
  39704. },
  39705. ]
  39706. ))
  39707. characterMakers.push(() => makeCharacter(
  39708. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39709. {
  39710. front: {
  39711. height: math.unit(8, "feet"),
  39712. weight: math.unit(300, "lb"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/galeboomer/front.svg",
  39716. extra: 4651/4415,
  39717. bottom: 162/4813
  39718. }
  39719. },
  39720. back: {
  39721. height: math.unit(8, "feet"),
  39722. weight: math.unit(300, "lb"),
  39723. name: "Back",
  39724. image: {
  39725. source: "./media/characters/galeboomer/back.svg",
  39726. extra: 4544/4314,
  39727. bottom: 16/4560
  39728. }
  39729. },
  39730. frontAlt: {
  39731. height: math.unit(8, "feet"),
  39732. weight: math.unit(300, "lb"),
  39733. name: "Front (Alt)",
  39734. image: {
  39735. source: "./media/characters/galeboomer/front-alt.svg",
  39736. extra: 4458/4228,
  39737. bottom: 68/4526
  39738. }
  39739. },
  39740. maw: {
  39741. height: math.unit(1.2, "feet"),
  39742. name: "Maw",
  39743. image: {
  39744. source: "./media/characters/galeboomer/maw.svg"
  39745. }
  39746. },
  39747. },
  39748. [
  39749. {
  39750. name: "Normal",
  39751. height: math.unit(8, "feet"),
  39752. default: true
  39753. },
  39754. ]
  39755. ))
  39756. characterMakers.push(() => makeCharacter(
  39757. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39758. {
  39759. front: {
  39760. height: math.unit(5 + 9/12, "feet"),
  39761. weight: math.unit(120, "lb"),
  39762. name: "Front",
  39763. image: {
  39764. source: "./media/characters/chyr/front.svg",
  39765. extra: 1323/1254,
  39766. bottom: 63/1386
  39767. }
  39768. },
  39769. back: {
  39770. height: math.unit(5 + 9/12, "feet"),
  39771. weight: math.unit(120, "lb"),
  39772. name: "Back",
  39773. image: {
  39774. source: "./media/characters/chyr/back.svg",
  39775. extra: 1323/1252,
  39776. bottom: 48/1371
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(5 + 9/12, "feet"),
  39784. default: true
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39790. {
  39791. front: {
  39792. height: math.unit(7, "feet"),
  39793. weight: math.unit(310, "lb"),
  39794. name: "Front",
  39795. image: {
  39796. source: "./media/characters/solarus/front.svg",
  39797. extra: 2415/2021,
  39798. bottom: 103/2518
  39799. }
  39800. },
  39801. back: {
  39802. height: math.unit(7, "feet"),
  39803. weight: math.unit(310, "lb"),
  39804. name: "Back",
  39805. image: {
  39806. source: "./media/characters/solarus/back.svg",
  39807. extra: 2463/2089,
  39808. bottom: 79/2542
  39809. }
  39810. },
  39811. },
  39812. [
  39813. {
  39814. name: "Normal",
  39815. height: math.unit(7, "feet"),
  39816. default: true
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(16, "feet"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39828. extra: 1844/1780,
  39829. bottom: 58/1902
  39830. }
  39831. },
  39832. winterCoat: {
  39833. height: math.unit(16, "feet"),
  39834. name: "Winter Coat",
  39835. image: {
  39836. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39837. extra: 1807/1775,
  39838. bottom: 69/1876
  39839. }
  39840. },
  39841. },
  39842. [
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(16, "feet"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Chicago Size",
  39850. height: math.unit(560, "feet")
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39856. {
  39857. front: {
  39858. height: math.unit(11 + 6/12, "feet"),
  39859. weight: math.unit(1366, "lb"),
  39860. name: "Front",
  39861. image: {
  39862. source: "./media/characters/lexor/front.svg",
  39863. extra: 1560/1481,
  39864. bottom: 211/1771
  39865. }
  39866. },
  39867. back: {
  39868. height: math.unit(11 + 6/12, "feet"),
  39869. weight: math.unit(1366, "lb"),
  39870. name: "Back",
  39871. image: {
  39872. source: "./media/characters/lexor/back.svg",
  39873. extra: 1614/1533,
  39874. bottom: 76/1690
  39875. }
  39876. },
  39877. maw: {
  39878. height: math.unit(3, "feet"),
  39879. name: "Maw",
  39880. image: {
  39881. source: "./media/characters/lexor/maw.svg"
  39882. }
  39883. },
  39884. dick: {
  39885. height: math.unit(2.59, "feet"),
  39886. name: "Dick",
  39887. image: {
  39888. source: "./media/characters/lexor/dick.svg"
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(11 + 6/12, "feet"),
  39896. default: true
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(5 + 8/12, "feet"),
  39905. name: "Front",
  39906. image: {
  39907. source: "./media/characters/magnum/front.svg",
  39908. extra: 942/855,
  39909. bottom: 26/968
  39910. }
  39911. },
  39912. },
  39913. [
  39914. {
  39915. name: "Normal",
  39916. height: math.unit(5 + 8/12, "feet"),
  39917. default: true
  39918. },
  39919. ]
  39920. ))
  39921. characterMakers.push(() => makeCharacter(
  39922. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39923. {
  39924. front: {
  39925. height: math.unit(18 + 4/12, "feet"),
  39926. weight: math.unit(1500, "kg"),
  39927. name: "Front",
  39928. image: {
  39929. source: "./media/characters/solas-sharpsman/front.svg",
  39930. extra: 1698/1589,
  39931. bottom: 0/1698
  39932. }
  39933. },
  39934. },
  39935. [
  39936. {
  39937. name: "Normal",
  39938. height: math.unit(18 + 4/12, "feet"),
  39939. default: true
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(5 + 5/12, "feet"),
  39948. weight: math.unit(180, "lb"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/october/front.svg",
  39952. extra: 1800/1650,
  39953. bottom: 0/1800
  39954. }
  39955. },
  39956. frontNsfw: {
  39957. height: math.unit(5 + 5/12, "feet"),
  39958. weight: math.unit(180, "lb"),
  39959. name: "Front (NSFW)",
  39960. image: {
  39961. source: "./media/characters/october/front-nsfw.svg",
  39962. extra: 1392/1307,
  39963. bottom: 42/1434
  39964. }
  39965. },
  39966. },
  39967. [
  39968. {
  39969. name: "Normal",
  39970. height: math.unit(5 + 5/12, "feet"),
  39971. default: true
  39972. },
  39973. ]
  39974. ))
  39975. characterMakers.push(() => makeCharacter(
  39976. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39977. {
  39978. front: {
  39979. height: math.unit(8 + 6/12, "feet"),
  39980. name: "Front",
  39981. image: {
  39982. source: "./media/characters/essynkardi/front.svg",
  39983. extra: 1541/1457,
  39984. bottom: 47/1588
  39985. }
  39986. },
  39987. },
  39988. [
  39989. {
  39990. name: "Normal",
  39991. height: math.unit(8 + 6/12, "feet"),
  39992. default: true
  39993. },
  39994. ]
  39995. ))
  39996. characterMakers.push(() => makeCharacter(
  39997. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39998. {
  39999. front: {
  40000. height: math.unit(6 + 6/12, "feet"),
  40001. weight: math.unit(7, "lb"),
  40002. name: "Front",
  40003. image: {
  40004. source: "./media/characters/icky/front.svg",
  40005. extra: 813/782,
  40006. bottom: 66/879
  40007. }
  40008. },
  40009. back: {
  40010. height: math.unit(6 + 6/12, "feet"),
  40011. weight: math.unit(7, "lb"),
  40012. name: "Back",
  40013. image: {
  40014. source: "./media/characters/icky/back.svg",
  40015. extra: 754/735,
  40016. bottom: 56/810
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Normal",
  40023. height: math.unit(6 + 6/12, "feet"),
  40024. default: true
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(15, "feet"),
  40033. name: "Front",
  40034. image: {
  40035. source: "./media/characters/rojas/front.svg",
  40036. extra: 1462/1408,
  40037. bottom: 95/1557
  40038. }
  40039. },
  40040. back: {
  40041. height: math.unit(15, "feet"),
  40042. name: "Back",
  40043. image: {
  40044. source: "./media/characters/rojas/back.svg",
  40045. extra: 1023/954,
  40046. bottom: 28/1051
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Normal",
  40053. height: math.unit(15, "feet"),
  40054. default: true
  40055. },
  40056. ]
  40057. ))
  40058. characterMakers.push(() => makeCharacter(
  40059. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40060. {
  40061. frontHuman: {
  40062. height: math.unit(5 + 7/12, "feet"),
  40063. name: "Front (Human)",
  40064. image: {
  40065. source: "./media/characters/alek-dryagan/front-human.svg",
  40066. extra: 1687/1667,
  40067. bottom: 69/1756
  40068. }
  40069. },
  40070. backHuman: {
  40071. height: math.unit(5 + 7/12, "feet"),
  40072. name: "Back (Human)",
  40073. image: {
  40074. source: "./media/characters/alek-dryagan/back-human.svg",
  40075. extra: 1670/1649,
  40076. bottom: 65/1735
  40077. }
  40078. },
  40079. frontDemi: {
  40080. height: math.unit(65, "feet"),
  40081. name: "Front (Demi)",
  40082. image: {
  40083. source: "./media/characters/alek-dryagan/front-demi.svg",
  40084. extra: 1669/1642,
  40085. bottom: 49/1718
  40086. }
  40087. },
  40088. backDemi: {
  40089. height: math.unit(65, "feet"),
  40090. name: "Back (Demi)",
  40091. image: {
  40092. source: "./media/characters/alek-dryagan/back-demi.svg",
  40093. extra: 1658/1637,
  40094. bottom: 40/1698
  40095. }
  40096. },
  40097. mawHuman: {
  40098. height: math.unit(0.3, "feet"),
  40099. name: "Maw (Human)",
  40100. image: {
  40101. source: "./media/characters/alek-dryagan/maw-human.svg"
  40102. }
  40103. },
  40104. mawDemi: {
  40105. height: math.unit(3.8, "feet"),
  40106. name: "Maw (Demi)",
  40107. image: {
  40108. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40109. }
  40110. },
  40111. },
  40112. [
  40113. {
  40114. name: "Normal",
  40115. height: math.unit(5 + 7/12, "feet"),
  40116. default: true
  40117. },
  40118. ]
  40119. ))
  40120. characterMakers.push(() => makeCharacter(
  40121. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40122. {
  40123. frontHuman: {
  40124. height: math.unit(5 + 2/12, "feet"),
  40125. name: "Front (Human)",
  40126. image: {
  40127. source: "./media/characters/gen/front-human.svg",
  40128. extra: 1627/1538,
  40129. bottom: 71/1698
  40130. }
  40131. },
  40132. backHuman: {
  40133. height: math.unit(5 + 2/12, "feet"),
  40134. name: "Back (Human)",
  40135. image: {
  40136. source: "./media/characters/gen/back-human.svg",
  40137. extra: 1638/1548,
  40138. bottom: 69/1707
  40139. }
  40140. },
  40141. frontDemi: {
  40142. height: math.unit(5 + 2/12, "feet"),
  40143. name: "Front (Demi)",
  40144. image: {
  40145. source: "./media/characters/gen/front-demi.svg",
  40146. extra: 1627/1538,
  40147. bottom: 71/1698
  40148. }
  40149. },
  40150. backDemi: {
  40151. height: math.unit(5 + 2/12, "feet"),
  40152. name: "Back (Demi)",
  40153. image: {
  40154. source: "./media/characters/gen/back-demi.svg",
  40155. extra: 1638/1548,
  40156. bottom: 69/1707
  40157. }
  40158. },
  40159. },
  40160. [
  40161. {
  40162. name: "Normal",
  40163. height: math.unit(5 + 2/12, "feet"),
  40164. default: true
  40165. },
  40166. ]
  40167. ))
  40168. characterMakers.push(() => makeCharacter(
  40169. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40170. {
  40171. frontImp: {
  40172. height: math.unit(1 + 11/12, "feet"),
  40173. name: "Front (Imp)",
  40174. image: {
  40175. source: "./media/characters/max-kobold/front-imp.svg",
  40176. extra: 1238/1134,
  40177. bottom: 81/1319
  40178. }
  40179. },
  40180. backImp: {
  40181. height: math.unit(1 + 11/12, "feet"),
  40182. name: "Back (Imp)",
  40183. image: {
  40184. source: "./media/characters/max-kobold/back-imp.svg",
  40185. extra: 1334/1175,
  40186. bottom: 34/1368
  40187. }
  40188. },
  40189. frontDemi: {
  40190. height: math.unit(5 + 9/12, "feet"),
  40191. name: "Front (Demi)",
  40192. image: {
  40193. source: "./media/characters/max-kobold/front-demi.svg",
  40194. extra: 1715/1685,
  40195. bottom: 54/1769
  40196. }
  40197. },
  40198. backDemi: {
  40199. height: math.unit(5 + 9/12, "feet"),
  40200. name: "Back (Demi)",
  40201. image: {
  40202. source: "./media/characters/max-kobold/back-demi.svg",
  40203. extra: 1752/1729,
  40204. bottom: 41/1793
  40205. }
  40206. },
  40207. handImp: {
  40208. height: math.unit(0.45, "feet"),
  40209. name: "Hand (Imp)",
  40210. image: {
  40211. source: "./media/characters/max-kobold/hand.svg"
  40212. }
  40213. },
  40214. pawImp: {
  40215. height: math.unit(0.46, "feet"),
  40216. name: "Paw (Imp)",
  40217. image: {
  40218. source: "./media/characters/max-kobold/paw.svg"
  40219. }
  40220. },
  40221. handDemi: {
  40222. height: math.unit(0.80, "feet"),
  40223. name: "Hand (Demi)",
  40224. image: {
  40225. source: "./media/characters/max-kobold/hand.svg"
  40226. }
  40227. },
  40228. pawDemi: {
  40229. height: math.unit(1.1, "feet"),
  40230. name: "Paw (Demi)",
  40231. image: {
  40232. source: "./media/characters/max-kobold/paw.svg"
  40233. }
  40234. },
  40235. headImp: {
  40236. height: math.unit(1.33, "feet"),
  40237. name: "Head (Imp)",
  40238. image: {
  40239. source: "./media/characters/max-kobold/head-imp.svg"
  40240. }
  40241. },
  40242. mawImp: {
  40243. height: math.unit(0.75, "feet"),
  40244. name: "Maw (Imp)",
  40245. image: {
  40246. source: "./media/characters/max-kobold/maw-imp.svg"
  40247. }
  40248. },
  40249. mawDemi: {
  40250. height: math.unit(0.42, "feet"),
  40251. name: "Maw (Demi)",
  40252. image: {
  40253. source: "./media/characters/max-kobold/maw-demi.svg"
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Normal",
  40260. height: math.unit(1 + 11/12, "feet"),
  40261. default: true
  40262. },
  40263. ]
  40264. ))
  40265. characterMakers.push(() => makeCharacter(
  40266. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40267. {
  40268. front: {
  40269. height: math.unit(7 + 5/12, "feet"),
  40270. name: "Front",
  40271. image: {
  40272. source: "./media/characters/carbon/front.svg",
  40273. extra: 1754/1689,
  40274. bottom: 65/1819
  40275. }
  40276. },
  40277. back: {
  40278. height: math.unit(7 + 5/12, "feet"),
  40279. name: "Back",
  40280. image: {
  40281. source: "./media/characters/carbon/back.svg",
  40282. extra: 1762/1695,
  40283. bottom: 24/1786
  40284. }
  40285. },
  40286. frontGigantamax: {
  40287. height: math.unit(150, "feet"),
  40288. name: "Front (Gigantamax)",
  40289. image: {
  40290. source: "./media/characters/carbon/front-gigantamax.svg",
  40291. extra: 1826/1669,
  40292. bottom: 59/1885
  40293. }
  40294. },
  40295. backGigantamax: {
  40296. height: math.unit(150, "feet"),
  40297. name: "Back (Gigantamax)",
  40298. image: {
  40299. source: "./media/characters/carbon/back-gigantamax.svg",
  40300. extra: 1796/1653,
  40301. bottom: 53/1849
  40302. }
  40303. },
  40304. maw: {
  40305. height: math.unit(0.48, "feet"),
  40306. name: "Maw",
  40307. image: {
  40308. source: "./media/characters/carbon/maw.svg"
  40309. }
  40310. },
  40311. mawGigantamax: {
  40312. height: math.unit(7.5, "feet"),
  40313. name: "Maw (Gigantamax)",
  40314. image: {
  40315. source: "./media/characters/carbon/maw-gigantamax.svg"
  40316. }
  40317. },
  40318. },
  40319. [
  40320. {
  40321. name: "Normal",
  40322. height: math.unit(7 + 5/12, "feet"),
  40323. default: true
  40324. },
  40325. ]
  40326. ))
  40327. characterMakers.push(() => makeCharacter(
  40328. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40329. {
  40330. front: {
  40331. height: math.unit(6, "feet"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/maverick/front.svg",
  40335. extra: 1672/1661,
  40336. bottom: 85/1757
  40337. }
  40338. },
  40339. back: {
  40340. height: math.unit(6, "feet"),
  40341. name: "Back",
  40342. image: {
  40343. source: "./media/characters/maverick/back.svg",
  40344. extra: 1642/1631,
  40345. bottom: 38/1680
  40346. }
  40347. },
  40348. },
  40349. [
  40350. {
  40351. name: "Normal",
  40352. height: math.unit(6, "feet"),
  40353. default: true
  40354. },
  40355. ]
  40356. ))
  40357. characterMakers.push(() => makeCharacter(
  40358. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40359. {
  40360. front: {
  40361. height: math.unit(15, "feet"),
  40362. weight: math.unit(615, "lb"),
  40363. name: "Front",
  40364. image: {
  40365. source: "./media/characters/grockle/front.svg",
  40366. extra: 1535/1427,
  40367. bottom: 56/1591
  40368. }
  40369. },
  40370. },
  40371. [
  40372. {
  40373. name: "Normal",
  40374. height: math.unit(15, "feet"),
  40375. default: true
  40376. },
  40377. {
  40378. name: "Large",
  40379. height: math.unit(150, "feet")
  40380. },
  40381. {
  40382. name: "Macro",
  40383. height: math.unit(1876, "feet")
  40384. },
  40385. {
  40386. name: "Mega Macro",
  40387. height: math.unit(121940, "feet")
  40388. },
  40389. {
  40390. name: "Giga Macro",
  40391. height: math.unit(750, "km")
  40392. },
  40393. {
  40394. name: "Tera Macro",
  40395. height: math.unit(750000, "km")
  40396. },
  40397. {
  40398. name: "Galactic",
  40399. height: math.unit(1.4e5, "km")
  40400. },
  40401. {
  40402. name: "Godlike",
  40403. height: math.unit(9.8e280, "galaxies")
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40409. {
  40410. front: {
  40411. height: math.unit(11, "meters"),
  40412. weight: math.unit(20, "tonnes"),
  40413. name: "Front",
  40414. image: {
  40415. source: "./media/characters/alistair/front.svg",
  40416. extra: 1265/1009,
  40417. bottom: 93/1358
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Normal",
  40424. height: math.unit(11, "meters"),
  40425. default: true
  40426. },
  40427. ]
  40428. ))
  40429. characterMakers.push(() => makeCharacter(
  40430. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40431. {
  40432. front: {
  40433. height: math.unit(5 + 8/12, "feet"),
  40434. name: "Front",
  40435. image: {
  40436. source: "./media/characters/haruka/front.svg",
  40437. extra: 2012/1952,
  40438. bottom: 0/2012
  40439. }
  40440. },
  40441. },
  40442. [
  40443. {
  40444. name: "Normal",
  40445. height: math.unit(5 + 8/12, "feet"),
  40446. default: true
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40452. {
  40453. back: {
  40454. height: math.unit(9, "feet"),
  40455. name: "Back",
  40456. image: {
  40457. source: "./media/characters/vivian-sylveon/back.svg",
  40458. extra: 1853/1714,
  40459. bottom: 0/1853
  40460. }
  40461. },
  40462. hyper: {
  40463. height: math.unit(5.58, "feet"),
  40464. name: "Hyper",
  40465. preyCapacity: math.unit(2.80616218797, "m^3"),
  40466. image: {
  40467. source: "./media/characters/vivian-sylveon/hyper.svg",
  40468. extra: 999/676,
  40469. bottom: 697/1696
  40470. },
  40471. },
  40472. paw: {
  40473. height: math.unit(1.8, "feet"),
  40474. name: "Paw",
  40475. image: {
  40476. source: "./media/characters/vivian-sylveon/paw.svg"
  40477. }
  40478. },
  40479. danger: {
  40480. height: math.unit(7.5, "feet"),
  40481. name: "DANGER",
  40482. image: {
  40483. source: "./media/characters/vivian-sylveon/danger.svg"
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(9, "feet"),
  40491. default: true
  40492. },
  40493. {
  40494. name: "Macro",
  40495. height: math.unit(500, "feet")
  40496. },
  40497. {
  40498. name: "Megamacro",
  40499. height: math.unit(600, "miles")
  40500. },
  40501. {
  40502. name: "Gigamacro",
  40503. height: math.unit(30000, "miles")
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40509. {
  40510. anthro: {
  40511. height: math.unit(5 + 10/12, "feet"),
  40512. weight: math.unit(100, "lb"),
  40513. name: "Anthro",
  40514. image: {
  40515. source: "./media/characters/daiki/anthro.svg",
  40516. extra: 1115/1027,
  40517. bottom: 69/1184
  40518. }
  40519. },
  40520. feral: {
  40521. height: math.unit(200, "feet"),
  40522. name: "Feral",
  40523. image: {
  40524. source: "./media/characters/daiki/feral.svg",
  40525. extra: 1256/313,
  40526. bottom: 39/1295
  40527. }
  40528. },
  40529. feralHead: {
  40530. height: math.unit(171, "feet"),
  40531. name: "Feral Head",
  40532. image: {
  40533. source: "./media/characters/daiki/feral-head.svg"
  40534. }
  40535. },
  40536. manaDragon: {
  40537. height: math.unit(170, "meters"),
  40538. name: "Mana-dragon",
  40539. image: {
  40540. source: "./media/characters/daiki/mana-dragon.svg",
  40541. extra: 763/420,
  40542. bottom: 97/860
  40543. }
  40544. },
  40545. },
  40546. [
  40547. {
  40548. name: "Normal",
  40549. height: math.unit(5 + 10/12, "feet"),
  40550. default: true
  40551. },
  40552. ]
  40553. ))
  40554. characterMakers.push(() => makeCharacter(
  40555. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40556. {
  40557. fullyEquippedFront: {
  40558. height: math.unit(3 + 1/12, "feet"),
  40559. weight: math.unit(24, "lb"),
  40560. name: "Fully Equipped (Front)",
  40561. image: {
  40562. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40563. extra: 687/605,
  40564. bottom: 18/705
  40565. }
  40566. },
  40567. fullyEquippedBack: {
  40568. height: math.unit(3 + 1/12, "feet"),
  40569. weight: math.unit(24, "lb"),
  40570. name: "Fully Equipped (Back)",
  40571. image: {
  40572. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40573. extra: 689/590,
  40574. bottom: 18/707
  40575. }
  40576. },
  40577. dailyWear: {
  40578. height: math.unit(3 + 1/12, "feet"),
  40579. weight: math.unit(24, "lb"),
  40580. name: "Daily Wear",
  40581. image: {
  40582. source: "./media/characters/tea-spot/daily-wear.svg",
  40583. extra: 701/620,
  40584. bottom: 21/722
  40585. }
  40586. },
  40587. maidWork: {
  40588. height: math.unit(3 + 1/12, "feet"),
  40589. weight: math.unit(24, "lb"),
  40590. name: "Maid Work",
  40591. image: {
  40592. source: "./media/characters/tea-spot/maid-work.svg",
  40593. extra: 693/609,
  40594. bottom: 15/708
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(3 + 1/12, "feet"),
  40602. default: true
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(175, "cm"),
  40611. weight: math.unit(75, "kg"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/chee/front.svg",
  40615. extra: 1796/1740,
  40616. bottom: 40/1836
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Micro-Micro",
  40623. height: math.unit(1, "nm")
  40624. },
  40625. {
  40626. name: "Micro-erst",
  40627. height: math.unit(1, "micrometer")
  40628. },
  40629. {
  40630. name: "Micro-er",
  40631. height: math.unit(1, "cm")
  40632. },
  40633. {
  40634. name: "Normal",
  40635. height: math.unit(175, "cm"),
  40636. default: true
  40637. },
  40638. {
  40639. name: "Macro",
  40640. height: math.unit(100, "m")
  40641. },
  40642. {
  40643. name: "Macro-er",
  40644. height: math.unit(1, "km")
  40645. },
  40646. {
  40647. name: "Macro-erst",
  40648. height: math.unit(10, "km")
  40649. },
  40650. {
  40651. name: "Macro-Macro",
  40652. height: math.unit(100, "km")
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(11 + 9/12, "feet"),
  40661. weight: math.unit(935, "lb"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/kingsley/front.svg",
  40665. extra: 1803/1674,
  40666. bottom: 127/1930
  40667. }
  40668. },
  40669. frontNude: {
  40670. height: math.unit(11 + 9/12, "feet"),
  40671. weight: math.unit(935, "lb"),
  40672. name: "Front (Nude)",
  40673. image: {
  40674. source: "./media/characters/kingsley/front-nude.svg",
  40675. extra: 1803/1674,
  40676. bottom: 127/1930
  40677. }
  40678. },
  40679. },
  40680. [
  40681. {
  40682. name: "Normal",
  40683. height: math.unit(11 + 9/12, "feet"),
  40684. default: true
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40690. {
  40691. side: {
  40692. height: math.unit(9, "feet"),
  40693. name: "Side",
  40694. image: {
  40695. source: "./media/characters/rymel/side.svg",
  40696. extra: 792/469,
  40697. bottom: 121/913
  40698. }
  40699. },
  40700. maw: {
  40701. height: math.unit(2.4, "meters"),
  40702. name: "Maw",
  40703. image: {
  40704. source: "./media/characters/rymel/maw.svg"
  40705. }
  40706. },
  40707. },
  40708. [
  40709. {
  40710. name: "House Drake",
  40711. height: math.unit(2, "feet")
  40712. },
  40713. {
  40714. name: "Reduced",
  40715. height: math.unit(4.5, "feet")
  40716. },
  40717. {
  40718. name: "Normal",
  40719. height: math.unit(9, "feet"),
  40720. default: true
  40721. },
  40722. ]
  40723. ))
  40724. characterMakers.push(() => makeCharacter(
  40725. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40726. {
  40727. front: {
  40728. height: math.unit(1.74, "meters"),
  40729. weight: math.unit(55, "kg"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/rubus/front.svg",
  40733. extra: 1894/1742,
  40734. bottom: 44/1938
  40735. }
  40736. },
  40737. },
  40738. [
  40739. {
  40740. name: "Normal",
  40741. height: math.unit(1.74, "meters"),
  40742. default: true
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40748. {
  40749. front: {
  40750. height: math.unit(5 + 2/12, "feet"),
  40751. weight: math.unit(112, "lb"),
  40752. name: "Front",
  40753. image: {
  40754. source: "./media/characters/cassie-kingston/front.svg",
  40755. extra: 1438/1390,
  40756. bottom: 47/1485
  40757. }
  40758. },
  40759. },
  40760. [
  40761. {
  40762. name: "Normal",
  40763. height: math.unit(5 + 2/12, "feet"),
  40764. default: true
  40765. },
  40766. {
  40767. name: "Macro",
  40768. height: math.unit(128, "feet")
  40769. },
  40770. {
  40771. name: "Megamacro",
  40772. height: math.unit(2.56, "miles")
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40778. {
  40779. front: {
  40780. height: math.unit(7, "feet"),
  40781. name: "Front",
  40782. image: {
  40783. source: "./media/characters/fox/front.svg",
  40784. extra: 1798/1703,
  40785. bottom: 55/1853
  40786. }
  40787. },
  40788. back: {
  40789. height: math.unit(7, "feet"),
  40790. name: "Back",
  40791. image: {
  40792. source: "./media/characters/fox/back.svg",
  40793. extra: 1748/1649,
  40794. bottom: 32/1780
  40795. }
  40796. },
  40797. head: {
  40798. height: math.unit(1.95, "feet"),
  40799. name: "Head",
  40800. image: {
  40801. source: "./media/characters/fox/head.svg"
  40802. }
  40803. },
  40804. dick: {
  40805. height: math.unit(1.33, "feet"),
  40806. name: "Dick",
  40807. image: {
  40808. source: "./media/characters/fox/dick.svg"
  40809. }
  40810. },
  40811. foot: {
  40812. height: math.unit(1, "feet"),
  40813. name: "Foot",
  40814. image: {
  40815. source: "./media/characters/fox/foot.svg"
  40816. }
  40817. },
  40818. paw: {
  40819. height: math.unit(0.92, "feet"),
  40820. name: "Paw",
  40821. image: {
  40822. source: "./media/characters/fox/paw.svg"
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Small",
  40829. height: math.unit(3, "inches")
  40830. },
  40831. {
  40832. name: "\"Realistic\"",
  40833. height: math.unit(7, "feet")
  40834. },
  40835. {
  40836. name: "Normal",
  40837. height: math.unit(150, "feet"),
  40838. default: true
  40839. },
  40840. {
  40841. name: "BIG",
  40842. height: math.unit(1200, "feet")
  40843. },
  40844. {
  40845. name: "👀",
  40846. height: math.unit(5, "miles")
  40847. },
  40848. {
  40849. name: "👀👀👀",
  40850. height: math.unit(64, "miles")
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(625, "feet"),
  40859. name: "Front",
  40860. image: {
  40861. source: "./media/characters/asonja-rossa/front.svg",
  40862. extra: 1833/1686,
  40863. bottom: 24/1857
  40864. }
  40865. },
  40866. back: {
  40867. height: math.unit(625, "feet"),
  40868. name: "Back",
  40869. image: {
  40870. source: "./media/characters/asonja-rossa/back.svg",
  40871. extra: 1852/1753,
  40872. bottom: 26/1878
  40873. }
  40874. },
  40875. },
  40876. [
  40877. {
  40878. name: "Macro",
  40879. height: math.unit(625, "feet"),
  40880. default: true
  40881. },
  40882. ]
  40883. ))
  40884. characterMakers.push(() => makeCharacter(
  40885. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40886. {
  40887. side: {
  40888. height: math.unit(8, "feet"),
  40889. name: "Side",
  40890. image: {
  40891. source: "./media/characters/rezukii/side.svg",
  40892. extra: 979/542,
  40893. bottom: 87/1066
  40894. }
  40895. },
  40896. sitting: {
  40897. height: math.unit(14.6, "feet"),
  40898. name: "Sitting",
  40899. image: {
  40900. source: "./media/characters/rezukii/sitting.svg",
  40901. extra: 1023/813,
  40902. bottom: 45/1068
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Tiny",
  40909. height: math.unit(2, "feet")
  40910. },
  40911. {
  40912. name: "Smol",
  40913. height: math.unit(4, "feet")
  40914. },
  40915. {
  40916. name: "Normal",
  40917. height: math.unit(8, "feet"),
  40918. default: true
  40919. },
  40920. {
  40921. name: "Big",
  40922. height: math.unit(12, "feet")
  40923. },
  40924. {
  40925. name: "Macro",
  40926. height: math.unit(30, "feet")
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(14, "feet"),
  40935. weight: math.unit(9.5, "tonnes"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/dawnheart/front.svg",
  40939. extra: 2792/2675,
  40940. bottom: 64/2856
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Normal",
  40947. height: math.unit(14, "feet"),
  40948. default: true
  40949. },
  40950. ]
  40951. ))
  40952. characterMakers.push(() => makeCharacter(
  40953. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40954. {
  40955. front: {
  40956. height: math.unit(1.7, "m"),
  40957. name: "Front",
  40958. image: {
  40959. source: "./media/characters/gladi/front.svg",
  40960. extra: 1460/1362,
  40961. bottom: 19/1479
  40962. }
  40963. },
  40964. back: {
  40965. height: math.unit(1.7, "m"),
  40966. name: "Back",
  40967. image: {
  40968. source: "./media/characters/gladi/back.svg",
  40969. extra: 1459/1357,
  40970. bottom: 12/1471
  40971. }
  40972. },
  40973. feral: {
  40974. height: math.unit(2.05, "m"),
  40975. name: "Feral",
  40976. image: {
  40977. source: "./media/characters/gladi/feral.svg",
  40978. extra: 821/557,
  40979. bottom: 91/912
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Shortest",
  40986. height: math.unit(70, "cm")
  40987. },
  40988. {
  40989. name: "Normal",
  40990. height: math.unit(1.7, "m")
  40991. },
  40992. {
  40993. name: "Macro",
  40994. height: math.unit(10, "m"),
  40995. default: true
  40996. },
  40997. {
  40998. name: "Tallest",
  40999. height: math.unit(200, "m")
  41000. },
  41001. ]
  41002. ))
  41003. characterMakers.push(() => makeCharacter(
  41004. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41005. {
  41006. front: {
  41007. height: math.unit(5 + 7/12, "feet"),
  41008. weight: math.unit(2, "tons"),
  41009. name: "Front",
  41010. image: {
  41011. source: "./media/characters/erdno/front.svg",
  41012. extra: 1234/1129,
  41013. bottom: 35/1269
  41014. }
  41015. },
  41016. angled: {
  41017. height: math.unit(5 + 7/12, "feet"),
  41018. weight: math.unit(2, "tons"),
  41019. name: "Angled",
  41020. image: {
  41021. source: "./media/characters/erdno/angled.svg",
  41022. extra: 1185/1139,
  41023. bottom: 36/1221
  41024. }
  41025. },
  41026. side: {
  41027. height: math.unit(5 + 7/12, "feet"),
  41028. weight: math.unit(2, "tons"),
  41029. name: "Side",
  41030. image: {
  41031. source: "./media/characters/erdno/side.svg",
  41032. extra: 1191/1144,
  41033. bottom: 40/1231
  41034. }
  41035. },
  41036. back: {
  41037. height: math.unit(5 + 7/12, "feet"),
  41038. weight: math.unit(2, "tons"),
  41039. name: "Back",
  41040. image: {
  41041. source: "./media/characters/erdno/back.svg",
  41042. extra: 1202/1146,
  41043. bottom: 17/1219
  41044. }
  41045. },
  41046. frontNsfw: {
  41047. height: math.unit(5 + 7/12, "feet"),
  41048. weight: math.unit(2, "tons"),
  41049. name: "Front (NSFW)",
  41050. image: {
  41051. source: "./media/characters/erdno/front-nsfw.svg",
  41052. extra: 1234/1129,
  41053. bottom: 35/1269
  41054. }
  41055. },
  41056. angledNsfw: {
  41057. height: math.unit(5 + 7/12, "feet"),
  41058. weight: math.unit(2, "tons"),
  41059. name: "Angled (NSFW)",
  41060. image: {
  41061. source: "./media/characters/erdno/angled-nsfw.svg",
  41062. extra: 1185/1139,
  41063. bottom: 36/1221
  41064. }
  41065. },
  41066. sideNsfw: {
  41067. height: math.unit(5 + 7/12, "feet"),
  41068. weight: math.unit(2, "tons"),
  41069. name: "Side (NSFW)",
  41070. image: {
  41071. source: "./media/characters/erdno/side-nsfw.svg",
  41072. extra: 1191/1144,
  41073. bottom: 40/1231
  41074. }
  41075. },
  41076. backNsfw: {
  41077. height: math.unit(5 + 7/12, "feet"),
  41078. weight: math.unit(2, "tons"),
  41079. name: "Back (NSFW)",
  41080. image: {
  41081. source: "./media/characters/erdno/back-nsfw.svg",
  41082. extra: 1202/1146,
  41083. bottom: 17/1219
  41084. }
  41085. },
  41086. frontHyper: {
  41087. height: math.unit(5 + 7/12, "feet"),
  41088. weight: math.unit(2, "tons"),
  41089. name: "Front (Hyper)",
  41090. image: {
  41091. source: "./media/characters/erdno/front-hyper.svg",
  41092. extra: 1298/1136,
  41093. bottom: 35/1333
  41094. }
  41095. },
  41096. },
  41097. [
  41098. {
  41099. name: "Normal",
  41100. height: math.unit(5 + 7/12, "feet"),
  41101. default: true
  41102. },
  41103. {
  41104. name: "Big",
  41105. height: math.unit(5.7, "meters")
  41106. },
  41107. {
  41108. name: "Macro",
  41109. height: math.unit(5.7, "kilometers")
  41110. },
  41111. {
  41112. name: "Megamacro",
  41113. height: math.unit(5.7, "earths")
  41114. },
  41115. ]
  41116. ))
  41117. characterMakers.push(() => makeCharacter(
  41118. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41119. {
  41120. front: {
  41121. height: math.unit(5 + 10/12, "feet"),
  41122. weight: math.unit(150, "lb"),
  41123. name: "Front",
  41124. image: {
  41125. source: "./media/characters/jamie/front.svg",
  41126. extra: 1908/1768,
  41127. bottom: 19/1927
  41128. }
  41129. },
  41130. },
  41131. [
  41132. {
  41133. name: "Minimum",
  41134. height: math.unit(2, "cm")
  41135. },
  41136. {
  41137. name: "Micro",
  41138. height: math.unit(3, "inches")
  41139. },
  41140. {
  41141. name: "Normal",
  41142. height: math.unit(5 + 10/12, "feet"),
  41143. default: true
  41144. },
  41145. {
  41146. name: "Macro",
  41147. height: math.unit(150, "feet")
  41148. },
  41149. {
  41150. name: "Megamacro",
  41151. height: math.unit(10000, "m")
  41152. },
  41153. ]
  41154. ))
  41155. characterMakers.push(() => makeCharacter(
  41156. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41157. {
  41158. front: {
  41159. height: math.unit(2, "meters"),
  41160. weight: math.unit(100, "kg"),
  41161. name: "Front",
  41162. image: {
  41163. source: "./media/characters/shiron/front.svg",
  41164. extra: 2103/1985,
  41165. bottom: 98/2201
  41166. }
  41167. },
  41168. back: {
  41169. height: math.unit(2, "meters"),
  41170. weight: math.unit(100, "kg"),
  41171. name: "Back",
  41172. image: {
  41173. source: "./media/characters/shiron/back.svg",
  41174. extra: 2110/2015,
  41175. bottom: 89/2199
  41176. }
  41177. },
  41178. hand: {
  41179. height: math.unit(0.96, "feet"),
  41180. name: "Hand",
  41181. image: {
  41182. source: "./media/characters/shiron/hand.svg"
  41183. }
  41184. },
  41185. foot: {
  41186. height: math.unit(1.464, "feet"),
  41187. name: "Foot",
  41188. image: {
  41189. source: "./media/characters/shiron/foot.svg"
  41190. }
  41191. },
  41192. },
  41193. [
  41194. {
  41195. name: "Normal",
  41196. height: math.unit(2, "meters")
  41197. },
  41198. {
  41199. name: "Macro",
  41200. height: math.unit(500, "meters"),
  41201. default: true
  41202. },
  41203. {
  41204. name: "Megamacro",
  41205. height: math.unit(20, "km")
  41206. },
  41207. ]
  41208. ))
  41209. characterMakers.push(() => makeCharacter(
  41210. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41211. {
  41212. front: {
  41213. height: math.unit(6, "feet"),
  41214. name: "Front",
  41215. image: {
  41216. source: "./media/characters/sam/front.svg",
  41217. extra: 849/826,
  41218. bottom: 19/868
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Normal",
  41225. height: math.unit(6, "feet"),
  41226. default: true
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41232. {
  41233. front: {
  41234. height: math.unit(8 + 4/12, "feet"),
  41235. weight: math.unit(122, "kg"),
  41236. name: "Front",
  41237. image: {
  41238. source: "./media/characters/namori-kurogawa/front.svg",
  41239. extra: 1894/1576,
  41240. bottom: 34/1928
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Normal",
  41247. height: math.unit(8 + 4/12, "feet"),
  41248. default: true
  41249. },
  41250. ]
  41251. ))
  41252. characterMakers.push(() => makeCharacter(
  41253. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41254. {
  41255. front: {
  41256. height: math.unit(9, "feet"),
  41257. weight: math.unit(621, "lb"),
  41258. name: "Front",
  41259. image: {
  41260. source: "./media/characters/unmru/front.svg",
  41261. extra: 1853/1747,
  41262. bottom: 73/1926
  41263. }
  41264. },
  41265. side: {
  41266. height: math.unit(9, "feet"),
  41267. weight: math.unit(621, "lb"),
  41268. name: "Side",
  41269. image: {
  41270. source: "./media/characters/unmru/side.svg",
  41271. extra: 1781/1671,
  41272. bottom: 127/1908
  41273. }
  41274. },
  41275. back: {
  41276. height: math.unit(9, "feet"),
  41277. weight: math.unit(621, "lb"),
  41278. name: "Back",
  41279. image: {
  41280. source: "./media/characters/unmru/back.svg",
  41281. extra: 1894/1765,
  41282. bottom: 75/1969
  41283. }
  41284. },
  41285. dick: {
  41286. height: math.unit(3, "feet"),
  41287. weight: math.unit(35, "lb"),
  41288. name: "Dick",
  41289. image: {
  41290. source: "./media/characters/unmru/dick.svg"
  41291. }
  41292. },
  41293. },
  41294. [
  41295. {
  41296. name: "Normal",
  41297. height: math.unit(9, "feet")
  41298. },
  41299. {
  41300. name: "Natural",
  41301. height: math.unit(27, "feet"),
  41302. default: true
  41303. },
  41304. {
  41305. name: "Giant",
  41306. height: math.unit(90, "feet")
  41307. },
  41308. {
  41309. name: "Kaiju",
  41310. height: math.unit(270, "feet")
  41311. },
  41312. {
  41313. name: "Macro",
  41314. height: math.unit(900, "feet")
  41315. },
  41316. {
  41317. name: "Macro+",
  41318. height: math.unit(2700, "feet")
  41319. },
  41320. {
  41321. name: "Megamacro",
  41322. height: math.unit(9000, "feet")
  41323. },
  41324. {
  41325. name: "City-Crushing",
  41326. height: math.unit(27000, "feet")
  41327. },
  41328. {
  41329. name: "Mountain-Mashing",
  41330. height: math.unit(90000, "feet")
  41331. },
  41332. {
  41333. name: "Earth-Eclipsing",
  41334. height: math.unit(2.7e8, "feet")
  41335. },
  41336. {
  41337. name: "Sol-Swallowing",
  41338. height: math.unit(9e10, "feet")
  41339. },
  41340. {
  41341. name: "Majoris-Munching",
  41342. height: math.unit(2.7e13, "feet")
  41343. },
  41344. ]
  41345. ))
  41346. characterMakers.push(() => makeCharacter(
  41347. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41348. {
  41349. front: {
  41350. height: math.unit(1, "inch"),
  41351. name: "Front",
  41352. image: {
  41353. source: "./media/characters/squeaks-mouse/front.svg",
  41354. extra: 352/308,
  41355. bottom: 25/377
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Micro",
  41362. height: math.unit(1, "inch"),
  41363. default: true
  41364. },
  41365. ]
  41366. ))
  41367. characterMakers.push(() => makeCharacter(
  41368. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41369. {
  41370. side: {
  41371. height: math.unit(35, "feet"),
  41372. name: "Side",
  41373. image: {
  41374. source: "./media/characters/sayko/side.svg",
  41375. extra: 1697/1021,
  41376. bottom: 82/1779
  41377. }
  41378. },
  41379. head: {
  41380. height: math.unit(16, "feet"),
  41381. name: "Head",
  41382. image: {
  41383. source: "./media/characters/sayko/head.svg"
  41384. }
  41385. },
  41386. forepaw: {
  41387. height: math.unit(7.85, "feet"),
  41388. name: "Forepaw",
  41389. image: {
  41390. source: "./media/characters/sayko/forepaw.svg"
  41391. }
  41392. },
  41393. hindpaw: {
  41394. height: math.unit(8.8, "feet"),
  41395. name: "Hindpaw",
  41396. image: {
  41397. source: "./media/characters/sayko/hindpaw.svg"
  41398. }
  41399. },
  41400. },
  41401. [
  41402. {
  41403. name: "Normal",
  41404. height: math.unit(35, "feet"),
  41405. default: true
  41406. },
  41407. {
  41408. name: "Colossus",
  41409. height: math.unit(100, "meters")
  41410. },
  41411. {
  41412. name: "\"Small\" Deity",
  41413. height: math.unit(1, "km")
  41414. },
  41415. {
  41416. name: "\"Large\" Deity",
  41417. height: math.unit(15, "km")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(6, "feet"),
  41426. weight: math.unit(250, "lb"),
  41427. name: "Front",
  41428. image: {
  41429. source: "./media/characters/mukiro/front.svg",
  41430. extra: 1368/1310,
  41431. bottom: 34/1402
  41432. }
  41433. },
  41434. },
  41435. [
  41436. {
  41437. name: "Normal",
  41438. height: math.unit(6, "feet"),
  41439. default: true
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(12 + 4/12, "feet"),
  41448. name: "Front",
  41449. image: {
  41450. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41451. extra: 1346/1311,
  41452. bottom: 65/1411
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Base",
  41459. height: math.unit(12 + 4/12, "feet"),
  41460. default: true
  41461. },
  41462. {
  41463. name: "Macro",
  41464. height: math.unit(150, "feet")
  41465. },
  41466. {
  41467. name: "Mega",
  41468. height: math.unit(2, "miles")
  41469. },
  41470. {
  41471. name: "Demi God",
  41472. height: math.unit(4, "AU")
  41473. },
  41474. {
  41475. name: "God Size",
  41476. height: math.unit(1, "universe")
  41477. },
  41478. ]
  41479. ))
  41480. characterMakers.push(() => makeCharacter(
  41481. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41482. {
  41483. front: {
  41484. height: math.unit(3 + 3/12, "feet"),
  41485. weight: math.unit(88, "lb"),
  41486. name: "Front",
  41487. image: {
  41488. source: "./media/characters/trey/front.svg",
  41489. extra: 1815/1509,
  41490. bottom: 60/1875
  41491. }
  41492. },
  41493. },
  41494. [
  41495. {
  41496. name: "Normal",
  41497. height: math.unit(3 + 3/12, "feet"),
  41498. default: true
  41499. },
  41500. ]
  41501. ))
  41502. characterMakers.push(() => makeCharacter(
  41503. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41504. {
  41505. front: {
  41506. height: math.unit(4, "meters"),
  41507. name: "Front",
  41508. image: {
  41509. source: "./media/characters/adelonda/front.svg",
  41510. extra: 1077/982,
  41511. bottom: 39/1116
  41512. }
  41513. },
  41514. back: {
  41515. height: math.unit(4, "meters"),
  41516. name: "Back",
  41517. image: {
  41518. source: "./media/characters/adelonda/back.svg",
  41519. extra: 1105/1003,
  41520. bottom: 25/1130
  41521. }
  41522. },
  41523. feral: {
  41524. height: math.unit(40/1.5, "meters"),
  41525. name: "Feral",
  41526. image: {
  41527. source: "./media/characters/adelonda/feral.svg",
  41528. extra: 597/271,
  41529. bottom: 387/984
  41530. }
  41531. },
  41532. },
  41533. [
  41534. {
  41535. name: "Normal",
  41536. height: math.unit(4, "meters"),
  41537. default: true
  41538. },
  41539. ]
  41540. ))
  41541. characterMakers.push(() => makeCharacter(
  41542. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41543. {
  41544. front: {
  41545. height: math.unit(8 + 4/12, "feet"),
  41546. weight: math.unit(670, "lb"),
  41547. name: "Front",
  41548. image: {
  41549. source: "./media/characters/acadiel/front.svg",
  41550. extra: 1901/1595,
  41551. bottom: 142/2043
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Normal",
  41558. height: math.unit(8 + 4/12, "feet"),
  41559. default: true
  41560. },
  41561. {
  41562. name: "Macro",
  41563. height: math.unit(200, "feet")
  41564. },
  41565. ]
  41566. ))
  41567. characterMakers.push(() => makeCharacter(
  41568. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41569. {
  41570. front: {
  41571. height: math.unit(6 + 2/12, "feet"),
  41572. weight: math.unit(185, "lb"),
  41573. name: "Front",
  41574. image: {
  41575. source: "./media/characters/kayne-ein/front.svg",
  41576. extra: 1780/1560,
  41577. bottom: 81/1861
  41578. }
  41579. },
  41580. },
  41581. [
  41582. {
  41583. name: "Normal",
  41584. height: math.unit(6 + 2/12, "feet"),
  41585. default: true
  41586. },
  41587. {
  41588. name: "Transformation Stage",
  41589. height: math.unit(15, "feet")
  41590. },
  41591. {
  41592. name: "Macro",
  41593. height: math.unit(150, "feet")
  41594. },
  41595. {
  41596. name: "Earth's Shadow",
  41597. height: math.unit(6200, "miles")
  41598. },
  41599. {
  41600. name: "Universal Demon",
  41601. height: math.unit(28e9, "parsecs")
  41602. },
  41603. {
  41604. name: "Multiverse God",
  41605. height: math.unit(3, "multiverses")
  41606. },
  41607. ]
  41608. ))
  41609. characterMakers.push(() => makeCharacter(
  41610. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41611. {
  41612. front: {
  41613. height: math.unit(5 + 5/12, "feet"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/fawn/front.svg",
  41617. extra: 1873/1731,
  41618. bottom: 95/1968
  41619. }
  41620. },
  41621. back: {
  41622. height: math.unit(5 + 5/12, "feet"),
  41623. name: "Back",
  41624. image: {
  41625. source: "./media/characters/fawn/back.svg",
  41626. extra: 1813/1700,
  41627. bottom: 14/1827
  41628. }
  41629. },
  41630. hoof: {
  41631. height: math.unit(1.45, "feet"),
  41632. name: "Hoof",
  41633. image: {
  41634. source: "./media/characters/fawn/hoof.svg"
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Normal",
  41641. height: math.unit(5 + 5/12, "feet"),
  41642. default: true
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(2 + 5/12, "feet"),
  41651. name: "Front",
  41652. image: {
  41653. source: "./media/characters/orion/front.svg",
  41654. extra: 1366/1304,
  41655. bottom: 43/1409
  41656. }
  41657. },
  41658. paw: {
  41659. height: math.unit(0.52, "feet"),
  41660. name: "Paw",
  41661. image: {
  41662. source: "./media/characters/orion/paw.svg"
  41663. }
  41664. },
  41665. },
  41666. [
  41667. {
  41668. name: "Normal",
  41669. height: math.unit(2 + 5/12, "feet"),
  41670. default: true
  41671. },
  41672. ]
  41673. ))
  41674. characterMakers.push(() => makeCharacter(
  41675. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41676. {
  41677. front: {
  41678. height: math.unit(5 + 10/12, "feet"),
  41679. name: "Front",
  41680. image: {
  41681. source: "./media/characters/vera/front.svg",
  41682. extra: 1680/1575,
  41683. bottom: 49/1729
  41684. }
  41685. },
  41686. back: {
  41687. height: math.unit(5 + 10/12, "feet"),
  41688. name: "Back",
  41689. image: {
  41690. source: "./media/characters/vera/back.svg",
  41691. extra: 1700/1588,
  41692. bottom: 18/1718
  41693. }
  41694. },
  41695. arcanine: {
  41696. height: math.unit(6 + 8/12, "feet"),
  41697. name: "Arcanine",
  41698. image: {
  41699. source: "./media/characters/vera/arcanine.svg",
  41700. extra: 1590/1511,
  41701. bottom: 71/1661
  41702. }
  41703. },
  41704. maw: {
  41705. height: math.unit(0.82, "feet"),
  41706. name: "Maw",
  41707. image: {
  41708. source: "./media/characters/vera/maw.svg"
  41709. }
  41710. },
  41711. mawArcanine: {
  41712. height: math.unit(0.97, "feet"),
  41713. name: "Maw (Arcanine)",
  41714. image: {
  41715. source: "./media/characters/vera/maw-arcanine.svg"
  41716. }
  41717. },
  41718. paw: {
  41719. height: math.unit(0.75, "feet"),
  41720. name: "Paw",
  41721. image: {
  41722. source: "./media/characters/vera/paw.svg"
  41723. }
  41724. },
  41725. pawprint: {
  41726. height: math.unit(0.52, "feet"),
  41727. name: "Pawprint",
  41728. image: {
  41729. source: "./media/characters/vera/pawprint.svg"
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Normal",
  41736. height: math.unit(5 + 10/12, "feet"),
  41737. default: true
  41738. },
  41739. {
  41740. name: "Macro",
  41741. height: math.unit(75, "feet")
  41742. },
  41743. ]
  41744. ))
  41745. characterMakers.push(() => makeCharacter(
  41746. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41747. {
  41748. front: {
  41749. height: math.unit(4, "feet"),
  41750. weight: math.unit(40, "lb"),
  41751. name: "Front",
  41752. image: {
  41753. source: "./media/characters/orvan-rabbit/front.svg",
  41754. extra: 1896/1642,
  41755. bottom: 29/1925
  41756. }
  41757. },
  41758. },
  41759. [
  41760. {
  41761. name: "Normal",
  41762. height: math.unit(4, "feet"),
  41763. default: true
  41764. },
  41765. ]
  41766. ))
  41767. characterMakers.push(() => makeCharacter(
  41768. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41769. {
  41770. front: {
  41771. height: math.unit(6, "feet"),
  41772. weight: math.unit(168, "lb"),
  41773. name: "Front",
  41774. image: {
  41775. source: "./media/characters/lisa/front.svg",
  41776. extra: 2065/1867,
  41777. bottom: 46/2111
  41778. }
  41779. },
  41780. back: {
  41781. height: math.unit(6, "feet"),
  41782. weight: math.unit(168, "lb"),
  41783. name: "Back",
  41784. image: {
  41785. source: "./media/characters/lisa/back.svg",
  41786. extra: 1982/1838,
  41787. bottom: 29/2011
  41788. }
  41789. },
  41790. maw: {
  41791. height: math.unit(0.81, "feet"),
  41792. name: "Maw",
  41793. image: {
  41794. source: "./media/characters/lisa/maw.svg"
  41795. }
  41796. },
  41797. paw: {
  41798. height: math.unit(0.9, "feet"),
  41799. name: "Paw",
  41800. image: {
  41801. source: "./media/characters/lisa/paw.svg"
  41802. }
  41803. },
  41804. caribousune: {
  41805. height: math.unit(7 + 2/12, "feet"),
  41806. weight: math.unit(268, "lb"),
  41807. name: "Caribousune",
  41808. image: {
  41809. source: "./media/characters/lisa/caribousune.svg",
  41810. extra: 1843/1633,
  41811. bottom: 29/1872
  41812. }
  41813. },
  41814. frontCaribousune: {
  41815. height: math.unit(7 + 2/12, "feet"),
  41816. weight: math.unit(268, "lb"),
  41817. name: "Front (Caribousune)",
  41818. image: {
  41819. source: "./media/characters/lisa/front-caribousune.svg",
  41820. extra: 1818/1638,
  41821. bottom: 52/1870
  41822. }
  41823. },
  41824. sideCaribousune: {
  41825. height: math.unit(7 + 2/12, "feet"),
  41826. weight: math.unit(268, "lb"),
  41827. name: "Side (Caribousune)",
  41828. image: {
  41829. source: "./media/characters/lisa/side-caribousune.svg",
  41830. extra: 1851/1635,
  41831. bottom: 16/1867
  41832. }
  41833. },
  41834. backCaribousune: {
  41835. height: math.unit(7 + 2/12, "feet"),
  41836. weight: math.unit(268, "lb"),
  41837. name: "Back (Caribousune)",
  41838. image: {
  41839. source: "./media/characters/lisa/back-caribousune.svg",
  41840. extra: 1801/1604,
  41841. bottom: 44/1845
  41842. }
  41843. },
  41844. caribou: {
  41845. height: math.unit(7 + 2/12, "feet"),
  41846. weight: math.unit(268, "lb"),
  41847. name: "Caribou",
  41848. image: {
  41849. source: "./media/characters/lisa/caribou.svg",
  41850. extra: 1843/1633,
  41851. bottom: 29/1872
  41852. }
  41853. },
  41854. frontCaribou: {
  41855. height: math.unit(7 + 2/12, "feet"),
  41856. weight: math.unit(268, "lb"),
  41857. name: "Front (Caribou)",
  41858. image: {
  41859. source: "./media/characters/lisa/front-caribou.svg",
  41860. extra: 1818/1638,
  41861. bottom: 52/1870
  41862. }
  41863. },
  41864. sideCaribou: {
  41865. height: math.unit(7 + 2/12, "feet"),
  41866. weight: math.unit(268, "lb"),
  41867. name: "Side (Caribou)",
  41868. image: {
  41869. source: "./media/characters/lisa/side-caribou.svg",
  41870. extra: 1851/1635,
  41871. bottom: 16/1867
  41872. }
  41873. },
  41874. backCaribou: {
  41875. height: math.unit(7 + 2/12, "feet"),
  41876. weight: math.unit(268, "lb"),
  41877. name: "Back (Caribou)",
  41878. image: {
  41879. source: "./media/characters/lisa/back-caribou.svg",
  41880. extra: 1801/1604,
  41881. bottom: 44/1845
  41882. }
  41883. },
  41884. mawCaribou: {
  41885. height: math.unit(1.45, "feet"),
  41886. name: "Maw (Caribou)",
  41887. image: {
  41888. source: "./media/characters/lisa/maw-caribou.svg"
  41889. }
  41890. },
  41891. mawCaribousune: {
  41892. height: math.unit(1.45, "feet"),
  41893. name: "Maw (Caribousune)",
  41894. image: {
  41895. source: "./media/characters/lisa/maw-caribousune.svg"
  41896. }
  41897. },
  41898. pawCaribousune: {
  41899. height: math.unit(1.61, "feet"),
  41900. name: "Paw (Caribou)",
  41901. image: {
  41902. source: "./media/characters/lisa/paw-caribousune.svg"
  41903. }
  41904. },
  41905. },
  41906. [
  41907. {
  41908. name: "Normal",
  41909. height: math.unit(6, "feet")
  41910. },
  41911. {
  41912. name: "God Size",
  41913. height: math.unit(72, "feet"),
  41914. default: true
  41915. },
  41916. {
  41917. name: "Towering",
  41918. height: math.unit(288, "feet")
  41919. },
  41920. {
  41921. name: "City Size",
  41922. height: math.unit(48384, "feet")
  41923. },
  41924. {
  41925. name: "Continental",
  41926. height: math.unit(4200, "miles")
  41927. },
  41928. {
  41929. name: "Planet Eater",
  41930. height: math.unit(42, "earths")
  41931. },
  41932. {
  41933. name: "Star Swallower",
  41934. height: math.unit(42, "solarradii")
  41935. },
  41936. {
  41937. name: "System Swallower",
  41938. height: math.unit(84000, "AU")
  41939. },
  41940. {
  41941. name: "Galaxy Gobbler",
  41942. height: math.unit(42, "galaxies")
  41943. },
  41944. {
  41945. name: "Universe Devourer",
  41946. height: math.unit(42, "universes")
  41947. },
  41948. {
  41949. name: "Multiverse Muncher",
  41950. height: math.unit(42, "multiverses")
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(36, "feet"),
  41959. name: "Front",
  41960. image: {
  41961. source: "./media/characters/shadow-rat/front.svg",
  41962. extra: 1845/1758,
  41963. bottom: 83/1928
  41964. }
  41965. },
  41966. },
  41967. [
  41968. {
  41969. name: "Macro",
  41970. height: math.unit(36, "feet"),
  41971. default: true
  41972. },
  41973. ]
  41974. ))
  41975. characterMakers.push(() => makeCharacter(
  41976. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41977. {
  41978. side: {
  41979. height: math.unit(8, "feet"),
  41980. weight: math.unit(2630, "lb"),
  41981. name: "Side",
  41982. image: {
  41983. source: "./media/characters/torallia/side.svg",
  41984. extra: 2164/2021,
  41985. bottom: 371/2535
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Mortal Interaction",
  41992. height: math.unit(8, "feet")
  41993. },
  41994. {
  41995. name: "Natural",
  41996. height: math.unit(24, "feet"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Giant",
  42001. height: math.unit(80, "feet")
  42002. },
  42003. {
  42004. name: "Kaiju",
  42005. height: math.unit(240, "feet")
  42006. },
  42007. {
  42008. name: "Macro",
  42009. height: math.unit(800, "feet")
  42010. },
  42011. {
  42012. name: "Macro+",
  42013. height: math.unit(2400, "feet")
  42014. },
  42015. {
  42016. name: "Macro++",
  42017. height: math.unit(8000, "feet")
  42018. },
  42019. {
  42020. name: "City-Crushing",
  42021. height: math.unit(24000, "feet")
  42022. },
  42023. {
  42024. name: "Mountain-Mashing",
  42025. height: math.unit(80000, "feet")
  42026. },
  42027. {
  42028. name: "District Demolisher",
  42029. height: math.unit(240000, "feet")
  42030. },
  42031. {
  42032. name: "Tri-County Terror",
  42033. height: math.unit(800000, "feet")
  42034. },
  42035. {
  42036. name: "State Smasher",
  42037. height: math.unit(2.4e6, "feet")
  42038. },
  42039. {
  42040. name: "Nation Nemesis",
  42041. height: math.unit(8e6, "feet")
  42042. },
  42043. {
  42044. name: "Continent Cracker",
  42045. height: math.unit(2.4e7, "feet")
  42046. },
  42047. {
  42048. name: "Planet-Pillaging",
  42049. height: math.unit(8e7, "feet")
  42050. },
  42051. {
  42052. name: "Earth-Eclipsing",
  42053. height: math.unit(2.4e8, "feet")
  42054. },
  42055. {
  42056. name: "Jovian-Jostling",
  42057. height: math.unit(8e8, "feet")
  42058. },
  42059. {
  42060. name: "Gas Giant Gulper",
  42061. height: math.unit(2.4e9, "feet")
  42062. },
  42063. {
  42064. name: "Astral Annihilator",
  42065. height: math.unit(8e9, "feet")
  42066. },
  42067. {
  42068. name: "Celestial Conqueror",
  42069. height: math.unit(2.4e10, "feet")
  42070. },
  42071. {
  42072. name: "Sol-Swallowing",
  42073. height: math.unit(8e10, "feet")
  42074. },
  42075. {
  42076. name: "Hunter of the Heavens",
  42077. height: math.unit(2.4e13, "feet")
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42083. {
  42084. front: {
  42085. height: math.unit(10, "feet"),
  42086. weight: math.unit(844, "kilograms"),
  42087. name: "Front",
  42088. image: {
  42089. source: "./media/characters/rebecca-pawlson/front.svg",
  42090. extra: 1196/1099,
  42091. bottom: 81/1277
  42092. },
  42093. extraAttributes: {
  42094. "pawSize": {
  42095. name: "Paw Size",
  42096. power: 2,
  42097. type: "area",
  42098. base: math.unit(0.2 * 0.375, "meters^2")
  42099. },
  42100. "handSize": {
  42101. name: "Hand Size",
  42102. power: 2,
  42103. type: "area",
  42104. base: math.unit(0.2 * 0.35, "meters^2")
  42105. },
  42106. "breastDiameter": {
  42107. name: "Breast Diameter",
  42108. power: 1,
  42109. type: "length",
  42110. base: math.unit(0.5, "meters")
  42111. },
  42112. "breastVolume": {
  42113. name: "Breast Volume",
  42114. power: 3,
  42115. type: "volume",
  42116. base: math.unit(0.065, "m^3")
  42117. },
  42118. "breastMass": {
  42119. name: "Breast Mass",
  42120. power: 3,
  42121. type: "mass",
  42122. base: math.unit(65, "kg")
  42123. },
  42124. "nippleDiameter": {
  42125. name: "Nipple Diameter",
  42126. power: 1,
  42127. type: "length",
  42128. base: math.unit(0.1, "meters")
  42129. },
  42130. }
  42131. },
  42132. back: {
  42133. height: math.unit(10, "feet"),
  42134. weight: math.unit(844, "kilograms"),
  42135. name: "Back",
  42136. image: {
  42137. source: "./media/characters/rebecca-pawlson/back.svg",
  42138. extra: 879/776,
  42139. bottom: 43/922
  42140. },
  42141. extraAttributes: {
  42142. "pawSize": {
  42143. name: "Paw Size",
  42144. power: 2,
  42145. type: "area",
  42146. base: math.unit(0.2 * 0.375, "meters^2")
  42147. },
  42148. "handSize": {
  42149. name: "Hand Size",
  42150. power: 2,
  42151. type: "area",
  42152. base: math.unit(0.2 * 0.35, "meters^2")
  42153. },
  42154. "breastDiameter": {
  42155. name: "Breast Diameter",
  42156. power: 1,
  42157. type: "length",
  42158. base: math.unit(0.5, "meters")
  42159. },
  42160. "breastVolume": {
  42161. name: "Breast Volume",
  42162. power: 3,
  42163. type: "volume",
  42164. base: math.unit(0.065, "m^3")
  42165. },
  42166. "breastMass": {
  42167. name: "Breast Mass",
  42168. power: 3,
  42169. type: "mass",
  42170. base: math.unit(65, "kg")
  42171. },
  42172. "nippleDiameter": {
  42173. name: "Nipple Diameter",
  42174. power: 1,
  42175. type: "length",
  42176. base: math.unit(0.1, "meters")
  42177. },
  42178. }
  42179. },
  42180. },
  42181. [
  42182. {
  42183. name: "Normal",
  42184. height: math.unit(6 + 8/12, "feet")
  42185. },
  42186. {
  42187. name: "Mini Macro",
  42188. height: math.unit(10, "feet"),
  42189. default: true
  42190. },
  42191. {
  42192. name: "Macro",
  42193. height: math.unit(100, "feet")
  42194. },
  42195. {
  42196. name: "Mega Macro",
  42197. height: math.unit(2500, "feet")
  42198. },
  42199. {
  42200. name: "Giga Macro",
  42201. height: math.unit(50, "miles")
  42202. },
  42203. ]
  42204. ))
  42205. characterMakers.push(() => makeCharacter(
  42206. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42207. {
  42208. front: {
  42209. height: math.unit(7 + 6/12, "feet"),
  42210. weight: math.unit(600, "lb"),
  42211. name: "Front",
  42212. image: {
  42213. source: "./media/characters/moxie-nova/front.svg",
  42214. extra: 1734/1652,
  42215. bottom: 41/1775
  42216. }
  42217. },
  42218. },
  42219. [
  42220. {
  42221. name: "Normal",
  42222. height: math.unit(7 + 6/12, "feet"),
  42223. default: true
  42224. },
  42225. ]
  42226. ))
  42227. characterMakers.push(() => makeCharacter(
  42228. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42229. {
  42230. goat: {
  42231. height: math.unit(4, "feet"),
  42232. weight: math.unit(180, "lb"),
  42233. name: "Goat",
  42234. image: {
  42235. source: "./media/characters/tiffany/goat.svg",
  42236. extra: 1845/1595,
  42237. bottom: 106/1951
  42238. }
  42239. },
  42240. front: {
  42241. height: math.unit(5, "feet"),
  42242. weight: math.unit(150, "lb"),
  42243. name: "Foxcoon",
  42244. image: {
  42245. source: "./media/characters/tiffany/foxcoon.svg",
  42246. extra: 1941/1845,
  42247. bottom: 58/1999
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(5, "feet"),
  42255. default: true
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42261. {
  42262. front: {
  42263. height: math.unit(8, "feet"),
  42264. weight: math.unit(300, "lb"),
  42265. name: "Front",
  42266. image: {
  42267. source: "./media/characters/raxinath/front.svg",
  42268. extra: 1407/1309,
  42269. bottom: 39/1446
  42270. }
  42271. },
  42272. back: {
  42273. height: math.unit(8, "feet"),
  42274. weight: math.unit(300, "lb"),
  42275. name: "Back",
  42276. image: {
  42277. source: "./media/characters/raxinath/back.svg",
  42278. extra: 1405/1315,
  42279. bottom: 9/1414
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Speck",
  42286. height: math.unit(0.5, "nm")
  42287. },
  42288. {
  42289. name: "Micro",
  42290. height: math.unit(3, "inches")
  42291. },
  42292. {
  42293. name: "Kobold",
  42294. height: math.unit(3, "feet")
  42295. },
  42296. {
  42297. name: "Normal",
  42298. height: math.unit(8, "feet"),
  42299. default: true
  42300. },
  42301. {
  42302. name: "Giant",
  42303. height: math.unit(50, "feet")
  42304. },
  42305. {
  42306. name: "Macro",
  42307. height: math.unit(1000, "feet")
  42308. },
  42309. {
  42310. name: "Megamacro",
  42311. height: math.unit(1, "mile")
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42317. {
  42318. front: {
  42319. height: math.unit(10, "feet"),
  42320. weight: math.unit(1442, "lb"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/mal-dragon/front.svg",
  42324. extra: 1515/1444,
  42325. bottom: 113/1628
  42326. }
  42327. },
  42328. back: {
  42329. height: math.unit(10, "feet"),
  42330. weight: math.unit(1442, "lb"),
  42331. name: "Back",
  42332. image: {
  42333. source: "./media/characters/mal-dragon/back.svg",
  42334. extra: 1527/1434,
  42335. bottom: 25/1552
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Mortal Interaction",
  42342. height: math.unit(10, "feet"),
  42343. default: true
  42344. },
  42345. {
  42346. name: "Large",
  42347. height: math.unit(30, "feet")
  42348. },
  42349. {
  42350. name: "Kaiju",
  42351. height: math.unit(300, "feet")
  42352. },
  42353. {
  42354. name: "Megamacro",
  42355. height: math.unit(10000, "feet")
  42356. },
  42357. {
  42358. name: "Continent Cracker",
  42359. height: math.unit(30000000, "feet")
  42360. },
  42361. {
  42362. name: "Sol-Swallowing",
  42363. height: math.unit(1e11, "feet")
  42364. },
  42365. {
  42366. name: "Light Universal",
  42367. height: math.unit(5, "universes")
  42368. },
  42369. {
  42370. name: "Universe Atoms",
  42371. height: math.unit(1.829e9, "universes")
  42372. },
  42373. {
  42374. name: "Light Multiversal",
  42375. height: math.unit(5, "multiverses")
  42376. },
  42377. {
  42378. name: "Multiverse Atoms",
  42379. height: math.unit(1.829e9, "multiverses")
  42380. },
  42381. {
  42382. name: "Fabric of Time",
  42383. height: math.unit(1e262, "multiverses")
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42389. {
  42390. front: {
  42391. height: math.unit(9, "feet"),
  42392. weight: math.unit(1050, "lb"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/tabitha/front.svg",
  42396. extra: 2083/1994,
  42397. bottom: 68/2151
  42398. }
  42399. },
  42400. },
  42401. [
  42402. {
  42403. name: "Baseline",
  42404. height: math.unit(9, "feet"),
  42405. default: true
  42406. },
  42407. {
  42408. name: "Giant",
  42409. height: math.unit(90, "feet")
  42410. },
  42411. {
  42412. name: "Macro",
  42413. height: math.unit(900, "feet")
  42414. },
  42415. {
  42416. name: "Megamacro",
  42417. height: math.unit(9000, "feet")
  42418. },
  42419. {
  42420. name: "City-Crushing",
  42421. height: math.unit(27000, "feet")
  42422. },
  42423. {
  42424. name: "Mountain-Mashing",
  42425. height: math.unit(90000, "feet")
  42426. },
  42427. {
  42428. name: "Nation Nemesis",
  42429. height: math.unit(9e6, "feet")
  42430. },
  42431. {
  42432. name: "Continent Cracker",
  42433. height: math.unit(27e6, "feet")
  42434. },
  42435. {
  42436. name: "Earth-Eclipsing",
  42437. height: math.unit(2.7e8, "feet")
  42438. },
  42439. {
  42440. name: "Gas Giant Gulper",
  42441. height: math.unit(2.7e9, "feet")
  42442. },
  42443. {
  42444. name: "Sol-Swallowing",
  42445. height: math.unit(9e10, "feet")
  42446. },
  42447. {
  42448. name: "Galaxy Gulper",
  42449. height: math.unit(9, "galaxies")
  42450. },
  42451. {
  42452. name: "Cosmos Churner",
  42453. height: math.unit(9, "universes")
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(160, "cm"),
  42462. weight: math.unit(55, "kg"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/tow/front.svg",
  42466. extra: 1751/1722,
  42467. bottom: 74/1825
  42468. }
  42469. },
  42470. },
  42471. [
  42472. {
  42473. name: "Norm",
  42474. height: math.unit(160, "cm")
  42475. },
  42476. {
  42477. name: "Casual",
  42478. height: math.unit(3200, "m"),
  42479. default: true
  42480. },
  42481. {
  42482. name: "Show-Off",
  42483. height: math.unit(160, "km")
  42484. },
  42485. ]
  42486. ))
  42487. characterMakers.push(() => makeCharacter(
  42488. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42489. {
  42490. front: {
  42491. height: math.unit(7 + 11/12, "feet"),
  42492. weight: math.unit(342.8, "lb"),
  42493. name: "Front",
  42494. image: {
  42495. source: "./media/characters/vivian-orca-dragon/front.svg",
  42496. extra: 1890/1865,
  42497. bottom: 28/1918
  42498. }
  42499. },
  42500. },
  42501. [
  42502. {
  42503. name: "Micro",
  42504. height: math.unit(5, "inches")
  42505. },
  42506. {
  42507. name: "Normal",
  42508. height: math.unit(7 + 11/12, "feet"),
  42509. default: true
  42510. },
  42511. {
  42512. name: "Macro",
  42513. height: math.unit(395 + 7/12, "feet")
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42519. {
  42520. side: {
  42521. height: math.unit(10, "feet"),
  42522. weight: math.unit(1442, "lb"),
  42523. name: "Side",
  42524. image: {
  42525. source: "./media/characters/lotherakon/side.svg",
  42526. extra: 1604/1497,
  42527. bottom: 89/1693
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Mortal Interaction",
  42534. height: math.unit(10, "feet")
  42535. },
  42536. {
  42537. name: "Large",
  42538. height: math.unit(30, "feet"),
  42539. default: true
  42540. },
  42541. {
  42542. name: "Giant",
  42543. height: math.unit(100, "feet")
  42544. },
  42545. {
  42546. name: "Kaiju",
  42547. height: math.unit(300, "feet")
  42548. },
  42549. {
  42550. name: "Macro",
  42551. height: math.unit(1000, "feet")
  42552. },
  42553. {
  42554. name: "Macro+",
  42555. height: math.unit(3000, "feet")
  42556. },
  42557. {
  42558. name: "Megamacro",
  42559. height: math.unit(10000, "feet")
  42560. },
  42561. {
  42562. name: "City-Crushing",
  42563. height: math.unit(30000, "feet")
  42564. },
  42565. {
  42566. name: "Continent Cracker",
  42567. height: math.unit(30e6, "feet")
  42568. },
  42569. {
  42570. name: "Earth Eclipsing",
  42571. height: math.unit(3e8, "feet")
  42572. },
  42573. {
  42574. name: "Gas Giant Gulper",
  42575. height: math.unit(3e9, "feet")
  42576. },
  42577. {
  42578. name: "Sol-Swallowing",
  42579. height: math.unit(1e11, "feet")
  42580. },
  42581. {
  42582. name: "System Swallower",
  42583. height: math.unit(3e14, "feet")
  42584. },
  42585. {
  42586. name: "Galaxy Gulper",
  42587. height: math.unit(10, "galaxies")
  42588. },
  42589. {
  42590. name: "Light Universal",
  42591. height: math.unit(5, "universes")
  42592. },
  42593. {
  42594. name: "Universe Palm",
  42595. height: math.unit(20, "universes")
  42596. },
  42597. {
  42598. name: "Light Multiversal",
  42599. height: math.unit(5, "multiverses")
  42600. },
  42601. {
  42602. name: "Multiverse Palm",
  42603. height: math.unit(20, "multiverses")
  42604. },
  42605. {
  42606. name: "Inferno Incarnate",
  42607. height: math.unit(1e7, "multiverses")
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(8, "feet"),
  42616. weight: math.unit(1200, "lb"),
  42617. name: "Front",
  42618. image: {
  42619. source: "./media/characters/malithee/front.svg",
  42620. extra: 1675/1640,
  42621. bottom: 162/1837
  42622. }
  42623. },
  42624. },
  42625. [
  42626. {
  42627. name: "Mortal Interaction",
  42628. height: math.unit(8, "feet"),
  42629. default: true
  42630. },
  42631. {
  42632. name: "Large",
  42633. height: math.unit(24, "feet")
  42634. },
  42635. {
  42636. name: "Kaiju",
  42637. height: math.unit(240, "feet")
  42638. },
  42639. {
  42640. name: "Megamacro",
  42641. height: math.unit(8000, "feet")
  42642. },
  42643. {
  42644. name: "Continent Cracker",
  42645. height: math.unit(24e6, "feet")
  42646. },
  42647. {
  42648. name: "Earth-Eclipsing",
  42649. height: math.unit(2.4e8, "feet")
  42650. },
  42651. {
  42652. name: "Sol-Swallowing",
  42653. height: math.unit(8e10, "feet")
  42654. },
  42655. {
  42656. name: "Galaxy Gulper",
  42657. height: math.unit(8, "galaxies")
  42658. },
  42659. {
  42660. name: "Light Universal",
  42661. height: math.unit(4, "universes")
  42662. },
  42663. {
  42664. name: "Universe Atoms",
  42665. height: math.unit(1.829e9, "universes")
  42666. },
  42667. {
  42668. name: "Light Multiversal",
  42669. height: math.unit(4, "multiverses")
  42670. },
  42671. {
  42672. name: "Multiverse Atoms",
  42673. height: math.unit(1.829e9, "multiverses")
  42674. },
  42675. {
  42676. name: "Nigh-Omnipresence",
  42677. height: math.unit(8e261, "multiverses")
  42678. },
  42679. ]
  42680. ))
  42681. characterMakers.push(() => makeCharacter(
  42682. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42683. {
  42684. front: {
  42685. height: math.unit(10, "feet"),
  42686. weight: math.unit(1500, "lb"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/miles-thestia/front.svg",
  42690. extra: 1812/1727,
  42691. bottom: 86/1898
  42692. }
  42693. },
  42694. back: {
  42695. height: math.unit(10, "feet"),
  42696. weight: math.unit(1500, "lb"),
  42697. name: "Back",
  42698. image: {
  42699. source: "./media/characters/miles-thestia/back.svg",
  42700. extra: 1799/1690,
  42701. bottom: 47/1846
  42702. }
  42703. },
  42704. frontNsfw: {
  42705. height: math.unit(10, "feet"),
  42706. weight: math.unit(1500, "lb"),
  42707. name: "Front (NSFW)",
  42708. image: {
  42709. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42710. extra: 1812/1727,
  42711. bottom: 86/1898
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Mini-Macro",
  42718. height: math.unit(10, "feet"),
  42719. default: true
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(25, "feet"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/titan-s-wulf/front.svg",
  42731. extra: 1560/1484,
  42732. bottom: 76/1636
  42733. }
  42734. },
  42735. },
  42736. [
  42737. {
  42738. name: "Smallest",
  42739. height: math.unit(25, "feet"),
  42740. default: true
  42741. },
  42742. {
  42743. name: "Normal",
  42744. height: math.unit(200, "feet")
  42745. },
  42746. {
  42747. name: "Macro",
  42748. height: math.unit(200000, "feet")
  42749. },
  42750. {
  42751. name: "Multiversal Original",
  42752. height: math.unit(10000, "multiverses")
  42753. },
  42754. ]
  42755. ))
  42756. characterMakers.push(() => makeCharacter(
  42757. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42758. {
  42759. front: {
  42760. height: math.unit(8, "feet"),
  42761. weight: math.unit(553, "lb"),
  42762. name: "Front",
  42763. image: {
  42764. source: "./media/characters/tawendeh/front.svg",
  42765. extra: 2365/2268,
  42766. bottom: 83/2448
  42767. }
  42768. },
  42769. frontClothed: {
  42770. height: math.unit(8, "feet"),
  42771. weight: math.unit(553, "lb"),
  42772. name: "Front (Clothed)",
  42773. image: {
  42774. source: "./media/characters/tawendeh/front-clothed.svg",
  42775. extra: 2365/2268,
  42776. bottom: 83/2448
  42777. }
  42778. },
  42779. back: {
  42780. height: math.unit(8, "feet"),
  42781. weight: math.unit(553, "lb"),
  42782. name: "Back",
  42783. image: {
  42784. source: "./media/characters/tawendeh/back.svg",
  42785. extra: 2397/2294,
  42786. bottom: 42/2439
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Mortal Interaction",
  42793. height: math.unit(8, "feet"),
  42794. default: true
  42795. },
  42796. {
  42797. name: "Giant",
  42798. height: math.unit(80, "feet")
  42799. },
  42800. {
  42801. name: "Macro",
  42802. height: math.unit(800, "feet")
  42803. },
  42804. {
  42805. name: "Megamacro",
  42806. height: math.unit(8000, "feet")
  42807. },
  42808. {
  42809. name: "City-Crushing",
  42810. height: math.unit(24000, "feet")
  42811. },
  42812. {
  42813. name: "Mountain-Mashing",
  42814. height: math.unit(80000, "feet")
  42815. },
  42816. {
  42817. name: "Nation Nemesis",
  42818. height: math.unit(8e6, "feet")
  42819. },
  42820. {
  42821. name: "Continent Cracker",
  42822. height: math.unit(24e6, "feet")
  42823. },
  42824. {
  42825. name: "Earth-Eclipsing",
  42826. height: math.unit(2.4e8, "feet")
  42827. },
  42828. {
  42829. name: "Gas Giant Gulper",
  42830. height: math.unit(2.4e9, "feet")
  42831. },
  42832. {
  42833. name: "Sol-Swallowing",
  42834. height: math.unit(8e10, "feet")
  42835. },
  42836. {
  42837. name: "Galaxy Gulper",
  42838. height: math.unit(8, "galaxies")
  42839. },
  42840. {
  42841. name: "Cosmos Churner",
  42842. height: math.unit(8, "universes")
  42843. },
  42844. {
  42845. name: "Omnipotent Otter",
  42846. height: math.unit(80, "universes")
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(2.6, "meters"),
  42855. weight: math.unit(900, "kg"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/neesha/front.svg",
  42859. extra: 1803/1653,
  42860. bottom: 128/1931
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Normal",
  42867. height: math.unit(2.6, "meters"),
  42868. default: true
  42869. },
  42870. {
  42871. name: "Macro",
  42872. height: math.unit(50, "meters")
  42873. },
  42874. ]
  42875. ))
  42876. characterMakers.push(() => makeCharacter(
  42877. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42878. {
  42879. front: {
  42880. height: math.unit(5, "feet"),
  42881. weight: math.unit(185, "lb"),
  42882. name: "Front",
  42883. image: {
  42884. source: "./media/characters/kyera/front.svg",
  42885. extra: 1875/1790,
  42886. bottom: 96/1971
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Normal",
  42893. height: math.unit(5, "feet"),
  42894. default: true
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42900. {
  42901. front: {
  42902. height: math.unit(7 + 6/12, "feet"),
  42903. weight: math.unit(540, "lb"),
  42904. name: "Front",
  42905. image: {
  42906. source: "./media/characters/yuko/front.svg",
  42907. extra: 1282/1222,
  42908. bottom: 101/1383
  42909. }
  42910. },
  42911. frontClothed: {
  42912. height: math.unit(7 + 6/12, "feet"),
  42913. weight: math.unit(540, "lb"),
  42914. name: "Front (Clothed)",
  42915. image: {
  42916. source: "./media/characters/yuko/front-clothed.svg",
  42917. extra: 1282/1222,
  42918. bottom: 101/1383
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(7 + 6/12, "feet"),
  42926. default: true
  42927. },
  42928. {
  42929. name: "Macro",
  42930. height: math.unit(26 + 9/12, "feet")
  42931. },
  42932. {
  42933. name: "Megamacro",
  42934. height: math.unit(300, "feet")
  42935. },
  42936. {
  42937. name: "Gigamacro",
  42938. height: math.unit(5000, "feet")
  42939. },
  42940. {
  42941. name: "Planetary",
  42942. height: math.unit(10000, "miles")
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42948. {
  42949. front: {
  42950. height: math.unit(8 + 2/12, "feet"),
  42951. weight: math.unit(600, "lb"),
  42952. name: "Front",
  42953. image: {
  42954. source: "./media/characters/deam-nitrel/front.svg",
  42955. extra: 1308/1234,
  42956. bottom: 125/1433
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Normal",
  42963. height: math.unit(8 + 2/12, "feet"),
  42964. default: true
  42965. },
  42966. ]
  42967. ))
  42968. characterMakers.push(() => makeCharacter(
  42969. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42970. {
  42971. front: {
  42972. height: math.unit(6.1, "feet"),
  42973. weight: math.unit(180, "lb"),
  42974. name: "Front",
  42975. image: {
  42976. source: "./media/characters/skyress/front.svg",
  42977. extra: 1045/915,
  42978. bottom: 28/1073
  42979. }
  42980. },
  42981. maw: {
  42982. height: math.unit(1, "feet"),
  42983. name: "Maw",
  42984. image: {
  42985. source: "./media/characters/skyress/maw.svg"
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Normal",
  42992. height: math.unit(6.1, "feet"),
  42993. default: true
  42994. },
  42995. {
  42996. name: "Macro",
  42997. height: math.unit(200, "feet")
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43003. {
  43004. front: {
  43005. height: math.unit(4 + 2/12, "feet"),
  43006. weight: math.unit(40, "kg"),
  43007. name: "Front",
  43008. image: {
  43009. source: "./media/characters/amethyst-jones/front.svg",
  43010. extra: 1220/1150,
  43011. bottom: 101/1321
  43012. }
  43013. },
  43014. },
  43015. [
  43016. {
  43017. name: "Normal",
  43018. height: math.unit(4 + 2/12, "feet"),
  43019. default: true
  43020. },
  43021. ]
  43022. ))
  43023. characterMakers.push(() => makeCharacter(
  43024. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43025. {
  43026. front: {
  43027. height: math.unit(1.7, "m"),
  43028. weight: math.unit(135, "lb"),
  43029. name: "Front",
  43030. image: {
  43031. source: "./media/characters/jade/front.svg",
  43032. extra: 1818/1767,
  43033. bottom: 32/1850
  43034. }
  43035. },
  43036. back: {
  43037. height: math.unit(1.7, "m"),
  43038. weight: math.unit(135, "lb"),
  43039. name: "Back",
  43040. image: {
  43041. source: "./media/characters/jade/back.svg",
  43042. extra: 1869/1809,
  43043. bottom: 35/1904
  43044. }
  43045. },
  43046. hand: {
  43047. height: math.unit(0.24, "m"),
  43048. name: "Hand",
  43049. image: {
  43050. source: "./media/characters/jade/hand.svg"
  43051. }
  43052. },
  43053. foot: {
  43054. height: math.unit(0.263, "m"),
  43055. name: "Foot",
  43056. image: {
  43057. source: "./media/characters/jade/foot.svg"
  43058. }
  43059. },
  43060. dick: {
  43061. height: math.unit(0.47, "m"),
  43062. name: "Dick",
  43063. image: {
  43064. source: "./media/characters/jade/dick.svg"
  43065. }
  43066. },
  43067. },
  43068. [
  43069. {
  43070. name: "Micro",
  43071. height: math.unit(22, "cm")
  43072. },
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(1.7, "m"),
  43076. default: true
  43077. },
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(152, "m")
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43086. {
  43087. front: {
  43088. height: math.unit(100, "miles"),
  43089. weight: math.unit(20000, "tons"),
  43090. name: "Front",
  43091. image: {
  43092. source: "./media/characters/cookie/front.svg",
  43093. extra: 1125/1070,
  43094. bottom: 30/1155
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Big",
  43101. height: math.unit(50, "feet")
  43102. },
  43103. {
  43104. name: "Macro",
  43105. height: math.unit(100, "miles"),
  43106. default: true
  43107. },
  43108. {
  43109. name: "Megamacro",
  43110. height: math.unit(90000, "miles")
  43111. },
  43112. ]
  43113. ))
  43114. characterMakers.push(() => makeCharacter(
  43115. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43116. {
  43117. front: {
  43118. height: math.unit(6, "feet"),
  43119. weight: math.unit(145, "lb"),
  43120. name: "Front",
  43121. image: {
  43122. source: "./media/characters/farzian/front.svg",
  43123. extra: 1902/1693,
  43124. bottom: 108/2010
  43125. }
  43126. },
  43127. },
  43128. [
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(500, "feet"),
  43132. default: true
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(3 + 6/12, "feet"),
  43141. weight: math.unit(50, "lb"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/kimberly-tilson/front.svg",
  43145. extra: 1400/1322,
  43146. bottom: 36/1436
  43147. }
  43148. },
  43149. back: {
  43150. height: math.unit(3 + 6/12, "feet"),
  43151. weight: math.unit(50, "lb"),
  43152. name: "Back",
  43153. image: {
  43154. source: "./media/characters/kimberly-tilson/back.svg",
  43155. extra: 1370/1307,
  43156. bottom: 20/1390
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(3 + 6/12, "feet"),
  43164. default: true
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43170. {
  43171. front: {
  43172. height: math.unit(350, "meters"),
  43173. weight: math.unit(7.57059e+8, "lb"),
  43174. name: "Front",
  43175. image: {
  43176. source: "./media/characters/harthos/front.svg",
  43177. extra: 455/446,
  43178. bottom: 15/470
  43179. },
  43180. form: "peacekeeper",
  43181. default: true
  43182. },
  43183. allusus_front: {
  43184. height: math.unit(270, "meters"),
  43185. weight: math.unit(3.47550e+8, "lb"),
  43186. name: "Front",
  43187. image: {
  43188. source: "./media/characters/harthos/allusus-front.svg",
  43189. extra: 455/446,
  43190. bottom: 15/470
  43191. },
  43192. form: "allusus",
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Macro",
  43198. height: math.unit(350, "meters"),
  43199. default: true,
  43200. form: "peacekeeper"
  43201. },
  43202. {
  43203. name: "Macro",
  43204. height: math.unit(270, "meters"),
  43205. default: true,
  43206. form: "allusus"
  43207. },
  43208. ],
  43209. {
  43210. "peacekeeper": {
  43211. name: "Peacekeeper",
  43212. default: true
  43213. },
  43214. "allusus": {
  43215. name: "Allusus",
  43216. },
  43217. }
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(15, "feet"),
  43224. name: "Front",
  43225. image: {
  43226. source: "./media/characters/hypatia/front.svg",
  43227. extra: 1653/1591,
  43228. bottom: 79/1732
  43229. }
  43230. },
  43231. },
  43232. [
  43233. {
  43234. name: "Normal",
  43235. height: math.unit(15, "feet")
  43236. },
  43237. {
  43238. name: "Small",
  43239. height: math.unit(300, "feet")
  43240. },
  43241. {
  43242. name: "Macro",
  43243. height: math.unit(2500, "feet"),
  43244. default: true
  43245. },
  43246. {
  43247. name: "Mega Macro",
  43248. height: math.unit(1500, "miles")
  43249. },
  43250. {
  43251. name: "Giga Macro",
  43252. height: math.unit(1.5e6, "miles")
  43253. },
  43254. ]
  43255. ))
  43256. characterMakers.push(() => makeCharacter(
  43257. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43258. {
  43259. front: {
  43260. height: math.unit(6, "feet"),
  43261. weight: math.unit(200, "lb"),
  43262. name: "Front",
  43263. image: {
  43264. source: "./media/characters/wulver/front.svg",
  43265. extra: 1724/1632,
  43266. bottom: 130/1854
  43267. }
  43268. },
  43269. frontNsfw: {
  43270. height: math.unit(6, "feet"),
  43271. weight: math.unit(200, "lb"),
  43272. name: "Front (NSFW)",
  43273. image: {
  43274. source: "./media/characters/wulver/front-nsfw.svg",
  43275. extra: 1724/1632,
  43276. bottom: 130/1854
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Human-Sized",
  43283. height: math.unit(6, "feet")
  43284. },
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(4, "meters"),
  43288. default: true
  43289. },
  43290. {
  43291. name: "Large",
  43292. height: math.unit(6, "m")
  43293. },
  43294. ]
  43295. ))
  43296. characterMakers.push(() => makeCharacter(
  43297. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43298. {
  43299. front: {
  43300. height: math.unit(7, "feet"),
  43301. name: "Front",
  43302. image: {
  43303. source: "./media/characters/maru/front.svg",
  43304. extra: 1595/1570,
  43305. bottom: 0/1595
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(7, "feet"),
  43313. default: true
  43314. },
  43315. {
  43316. name: "Macro",
  43317. height: math.unit(700, "feet")
  43318. },
  43319. {
  43320. name: "Mega Macro",
  43321. height: math.unit(25, "miles")
  43322. },
  43323. ]
  43324. ))
  43325. characterMakers.push(() => makeCharacter(
  43326. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43327. {
  43328. front: {
  43329. height: math.unit(6, "feet"),
  43330. weight: math.unit(170, "lb"),
  43331. name: "Front",
  43332. image: {
  43333. source: "./media/characters/xenon/front.svg",
  43334. extra: 1376/1305,
  43335. bottom: 56/1432
  43336. }
  43337. },
  43338. back: {
  43339. height: math.unit(6, "feet"),
  43340. weight: math.unit(170, "lb"),
  43341. name: "Back",
  43342. image: {
  43343. source: "./media/characters/xenon/back.svg",
  43344. extra: 1328/1259,
  43345. bottom: 95/1423
  43346. }
  43347. },
  43348. maw: {
  43349. height: math.unit(0.52, "feet"),
  43350. name: "Maw",
  43351. image: {
  43352. source: "./media/characters/xenon/maw.svg"
  43353. }
  43354. },
  43355. handLeft: {
  43356. height: math.unit(0.82 * 169 / 153, "feet"),
  43357. name: "Hand (Left)",
  43358. image: {
  43359. source: "./media/characters/xenon/hand-left.svg"
  43360. }
  43361. },
  43362. handRight: {
  43363. height: math.unit(0.82, "feet"),
  43364. name: "Hand (Right)",
  43365. image: {
  43366. source: "./media/characters/xenon/hand-right.svg"
  43367. }
  43368. },
  43369. footLeft: {
  43370. height: math.unit(1.13, "feet"),
  43371. name: "Foot (Left)",
  43372. image: {
  43373. source: "./media/characters/xenon/foot-left.svg"
  43374. }
  43375. },
  43376. footRight: {
  43377. height: math.unit(1.13 * 194 / 196, "feet"),
  43378. name: "Foot (Right)",
  43379. image: {
  43380. source: "./media/characters/xenon/foot-right.svg"
  43381. }
  43382. },
  43383. },
  43384. [
  43385. {
  43386. name: "Micro",
  43387. height: math.unit(0.8, "inches")
  43388. },
  43389. {
  43390. name: "Normal",
  43391. height: math.unit(6, "feet")
  43392. },
  43393. {
  43394. name: "Macro",
  43395. height: math.unit(50, "feet"),
  43396. default: true
  43397. },
  43398. {
  43399. name: "Macro+",
  43400. height: math.unit(250, "feet")
  43401. },
  43402. {
  43403. name: "Megamacro",
  43404. height: math.unit(1500, "feet")
  43405. },
  43406. ]
  43407. ))
  43408. characterMakers.push(() => makeCharacter(
  43409. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43410. {
  43411. front: {
  43412. height: math.unit(7 + 5/12, "feet"),
  43413. name: "Front",
  43414. image: {
  43415. source: "./media/characters/zane/front.svg",
  43416. extra: 1260/1203,
  43417. bottom: 94/1354
  43418. }
  43419. },
  43420. back: {
  43421. height: math.unit(5.05, "feet"),
  43422. name: "Back",
  43423. image: {
  43424. source: "./media/characters/zane/back.svg",
  43425. extra: 893/829,
  43426. bottom: 30/923
  43427. }
  43428. },
  43429. werewolf: {
  43430. height: math.unit(11, "feet"),
  43431. name: "Werewolf",
  43432. image: {
  43433. source: "./media/characters/zane/werewolf.svg",
  43434. extra: 1383/1323,
  43435. bottom: 89/1472
  43436. }
  43437. },
  43438. foot: {
  43439. height: math.unit(1.46, "feet"),
  43440. name: "Foot",
  43441. image: {
  43442. source: "./media/characters/zane/foot.svg"
  43443. }
  43444. },
  43445. footFront: {
  43446. height: math.unit(0.784, "feet"),
  43447. name: "Foot (Front)",
  43448. image: {
  43449. source: "./media/characters/zane/foot-front.svg"
  43450. }
  43451. },
  43452. dick: {
  43453. height: math.unit(1.95, "feet"),
  43454. name: "Dick",
  43455. image: {
  43456. source: "./media/characters/zane/dick.svg"
  43457. }
  43458. },
  43459. dickWerewolf: {
  43460. height: math.unit(3.77, "feet"),
  43461. name: "Dick (Werewolf)",
  43462. image: {
  43463. source: "./media/characters/zane/dick.svg"
  43464. }
  43465. },
  43466. },
  43467. [
  43468. {
  43469. name: "Normal",
  43470. height: math.unit(7 + 5/12, "feet"),
  43471. default: true
  43472. },
  43473. ]
  43474. ))
  43475. characterMakers.push(() => makeCharacter(
  43476. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43477. {
  43478. front: {
  43479. height: math.unit(6 + 2/12, "feet"),
  43480. weight: math.unit(284, "lb"),
  43481. name: "Front",
  43482. image: {
  43483. source: "./media/characters/benni-desparque/front.svg",
  43484. extra: 878/729,
  43485. bottom: 58/936
  43486. }
  43487. },
  43488. back: {
  43489. height: math.unit(6 + 2/12, "feet"),
  43490. weight: math.unit(284, "lb"),
  43491. name: "Back",
  43492. image: {
  43493. source: "./media/characters/benni-desparque/back.svg",
  43494. extra: 901/756,
  43495. bottom: 51/952
  43496. }
  43497. },
  43498. dressed: {
  43499. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43500. weight: math.unit(284, "lb"),
  43501. name: "Dressed",
  43502. image: {
  43503. source: "./media/characters/benni-desparque/dressed.svg",
  43504. extra: 1514/1276,
  43505. bottom: 65/1579
  43506. }
  43507. },
  43508. hand: {
  43509. height: math.unit(1.28, "feet"),
  43510. name: "Hand",
  43511. image: {
  43512. source: "./media/characters/benni-desparque/hand.svg"
  43513. }
  43514. },
  43515. foot: {
  43516. height: math.unit(1.53, "feet"),
  43517. name: "Foot",
  43518. image: {
  43519. source: "./media/characters/benni-desparque/foot.svg"
  43520. }
  43521. },
  43522. aiControlUnit: {
  43523. height: math.unit(0.175, "feet"),
  43524. name: "AI Control Unit",
  43525. image: {
  43526. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43527. }
  43528. },
  43529. },
  43530. [
  43531. {
  43532. name: "Civilian",
  43533. height: math.unit(6 + 2/12, "feet")
  43534. },
  43535. {
  43536. name: "Normal",
  43537. height: math.unit(98, "feet"),
  43538. default: true
  43539. },
  43540. {
  43541. name: "Kaiju Fighter",
  43542. height: math.unit(268, "feet")
  43543. },
  43544. ]
  43545. ))
  43546. characterMakers.push(() => makeCharacter(
  43547. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43548. {
  43549. front: {
  43550. height: math.unit(5, "feet"),
  43551. weight: math.unit(105, "lb"),
  43552. name: "Front",
  43553. image: {
  43554. source: "./media/characters/maxine/front.svg",
  43555. extra: 1386/1250,
  43556. bottom: 71/1457
  43557. }
  43558. },
  43559. },
  43560. [
  43561. {
  43562. name: "Normal",
  43563. height: math.unit(5, "feet"),
  43564. default: true
  43565. },
  43566. ]
  43567. ))
  43568. characterMakers.push(() => makeCharacter(
  43569. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43570. {
  43571. front: {
  43572. height: math.unit(11 + 7/12, "feet"),
  43573. weight: math.unit(9576, "lb"),
  43574. name: "Front",
  43575. image: {
  43576. source: "./media/characters/scaly/front.svg",
  43577. extra: 888/867,
  43578. bottom: 36/924
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Normal",
  43585. height: math.unit(11 + 7/12, "feet"),
  43586. default: true
  43587. },
  43588. ]
  43589. ))
  43590. characterMakers.push(() => makeCharacter(
  43591. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43592. {
  43593. front: {
  43594. height: math.unit(6 + 3/12, "feet"),
  43595. name: "Front",
  43596. image: {
  43597. source: "./media/characters/saelria/front.svg",
  43598. extra: 1243/1138,
  43599. bottom: 46/1289
  43600. }
  43601. },
  43602. },
  43603. [
  43604. {
  43605. name: "Micro",
  43606. height: math.unit(6, "inches"),
  43607. },
  43608. {
  43609. name: "Normal",
  43610. height: math.unit(6 + 3/12, "feet"),
  43611. default: true
  43612. },
  43613. {
  43614. name: "Macro",
  43615. height: math.unit(25, "feet")
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43621. {
  43622. front: {
  43623. height: math.unit(80, "meters"),
  43624. weight: math.unit(7000, "tonnes"),
  43625. name: "Front",
  43626. image: {
  43627. source: "./media/characters/tef/front.svg",
  43628. extra: 2036/1991,
  43629. bottom: 54/2090
  43630. }
  43631. },
  43632. back: {
  43633. height: math.unit(80, "meters"),
  43634. weight: math.unit(7000, "tonnes"),
  43635. name: "Back",
  43636. image: {
  43637. source: "./media/characters/tef/back.svg",
  43638. extra: 2036/1991,
  43639. bottom: 54/2090
  43640. }
  43641. },
  43642. },
  43643. [
  43644. {
  43645. name: "Macro",
  43646. height: math.unit(80, "meters"),
  43647. default: true
  43648. },
  43649. ]
  43650. ))
  43651. characterMakers.push(() => makeCharacter(
  43652. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43653. {
  43654. front: {
  43655. height: math.unit(13, "feet"),
  43656. weight: math.unit(6, "tons"),
  43657. name: "Front",
  43658. image: {
  43659. source: "./media/characters/rover/front.svg",
  43660. extra: 1233/1156,
  43661. bottom: 50/1283
  43662. }
  43663. },
  43664. back: {
  43665. height: math.unit(13, "feet"),
  43666. weight: math.unit(6, "tons"),
  43667. name: "Back",
  43668. image: {
  43669. source: "./media/characters/rover/back.svg",
  43670. extra: 1327/1258,
  43671. bottom: 39/1366
  43672. }
  43673. },
  43674. },
  43675. [
  43676. {
  43677. name: "Normal",
  43678. height: math.unit(13, "feet"),
  43679. default: true
  43680. },
  43681. {
  43682. name: "Macro",
  43683. height: math.unit(1300, "feet")
  43684. },
  43685. {
  43686. name: "Megamacro",
  43687. height: math.unit(1300, "miles")
  43688. },
  43689. {
  43690. name: "Gigamacro",
  43691. height: math.unit(1300000, "miles")
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(10, "feet"),
  43700. weight: math.unit(500, "lb"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/ariz/front.svg",
  43704. extra: 461/450,
  43705. bottom: 16/477
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "MiniMacro",
  43712. height: math.unit(10, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43719. {
  43720. front: {
  43721. height: math.unit(6, "feet"),
  43722. weight: math.unit(140, "lb"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/sigrun/front.svg",
  43726. extra: 1418/1359,
  43727. bottom: 27/1445
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Macro",
  43734. height: math.unit(35, "feet"),
  43735. default: true
  43736. },
  43737. ]
  43738. ))
  43739. characterMakers.push(() => makeCharacter(
  43740. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43741. {
  43742. front: {
  43743. height: math.unit(6, "feet"),
  43744. weight: math.unit(150, "lb"),
  43745. name: "Front",
  43746. image: {
  43747. source: "./media/characters/numin/front.svg",
  43748. extra: 1433/1388,
  43749. bottom: 12/1445
  43750. }
  43751. },
  43752. },
  43753. [
  43754. {
  43755. name: "Macro",
  43756. height: math.unit(21.5, "km"),
  43757. default: true
  43758. },
  43759. ]
  43760. ))
  43761. characterMakers.push(() => makeCharacter(
  43762. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43763. {
  43764. front: {
  43765. height: math.unit(6, "feet"),
  43766. weight: math.unit(463, "lb"),
  43767. name: "Front",
  43768. image: {
  43769. source: "./media/characters/melwa/front.svg",
  43770. extra: 1307/1248,
  43771. bottom: 93/1400
  43772. }
  43773. },
  43774. },
  43775. [
  43776. {
  43777. name: "Macro",
  43778. height: math.unit(50, "meters"),
  43779. default: true
  43780. },
  43781. ]
  43782. ))
  43783. characterMakers.push(() => makeCharacter(
  43784. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43785. {
  43786. front: {
  43787. height: math.unit(325, "feet"),
  43788. name: "Front",
  43789. image: {
  43790. source: "./media/characters/zorkaiju/front.svg",
  43791. extra: 1955/1814,
  43792. bottom: 40/1995
  43793. }
  43794. },
  43795. frontExtended: {
  43796. height: math.unit(325, "feet"),
  43797. name: "Front (Extended)",
  43798. image: {
  43799. source: "./media/characters/zorkaiju/front-extended.svg",
  43800. extra: 1955/1814,
  43801. bottom: 40/1995
  43802. }
  43803. },
  43804. side: {
  43805. height: math.unit(325, "feet"),
  43806. name: "Side",
  43807. image: {
  43808. source: "./media/characters/zorkaiju/side.svg",
  43809. extra: 1495/1396,
  43810. bottom: 17/1512
  43811. }
  43812. },
  43813. sideExtended: {
  43814. height: math.unit(325, "feet"),
  43815. name: "Side (Extended)",
  43816. image: {
  43817. source: "./media/characters/zorkaiju/side-extended.svg",
  43818. extra: 1495/1396,
  43819. bottom: 17/1512
  43820. }
  43821. },
  43822. back: {
  43823. height: math.unit(325, "feet"),
  43824. name: "Back",
  43825. image: {
  43826. source: "./media/characters/zorkaiju/back.svg",
  43827. extra: 1959/1821,
  43828. bottom: 31/1990
  43829. }
  43830. },
  43831. backExtended: {
  43832. height: math.unit(325, "feet"),
  43833. name: "Back (Extended)",
  43834. image: {
  43835. source: "./media/characters/zorkaiju/back-extended.svg",
  43836. extra: 1959/1821,
  43837. bottom: 31/1990
  43838. }
  43839. },
  43840. hand: {
  43841. height: math.unit(58.4, "feet"),
  43842. name: "Hand",
  43843. image: {
  43844. source: "./media/characters/zorkaiju/hand.svg"
  43845. }
  43846. },
  43847. handExtended: {
  43848. height: math.unit(61.4, "feet"),
  43849. name: "Hand (Extended)",
  43850. image: {
  43851. source: "./media/characters/zorkaiju/hand-extended.svg"
  43852. }
  43853. },
  43854. foot: {
  43855. height: math.unit(95, "feet"),
  43856. name: "Foot",
  43857. image: {
  43858. source: "./media/characters/zorkaiju/foot.svg"
  43859. }
  43860. },
  43861. leftArm: {
  43862. height: math.unit(59, "feet"),
  43863. name: "Left Arm",
  43864. image: {
  43865. source: "./media/characters/zorkaiju/left-arm.svg"
  43866. }
  43867. },
  43868. rightArm: {
  43869. height: math.unit(59, "feet"),
  43870. name: "Right Arm",
  43871. image: {
  43872. source: "./media/characters/zorkaiju/right-arm.svg"
  43873. }
  43874. },
  43875. leftArmExtended: {
  43876. height: math.unit(59 * 1.033546, "feet"),
  43877. name: "Left Arm (Extended)",
  43878. image: {
  43879. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43880. }
  43881. },
  43882. rightArmExtended: {
  43883. height: math.unit(59 * 1.0496, "feet"),
  43884. name: "Right Arm (Extended)",
  43885. image: {
  43886. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43887. }
  43888. },
  43889. tail: {
  43890. height: math.unit(104, "feet"),
  43891. name: "Tail",
  43892. image: {
  43893. source: "./media/characters/zorkaiju/tail.svg"
  43894. }
  43895. },
  43896. tailExtended: {
  43897. height: math.unit(104, "feet"),
  43898. name: "Tail (Extended)",
  43899. image: {
  43900. source: "./media/characters/zorkaiju/tail-extended.svg"
  43901. }
  43902. },
  43903. tailBottom: {
  43904. height: math.unit(104, "feet"),
  43905. name: "Tail Bottom",
  43906. image: {
  43907. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43908. }
  43909. },
  43910. crystal: {
  43911. height: math.unit(27.54, "feet"),
  43912. name: "Crystal",
  43913. image: {
  43914. source: "./media/characters/zorkaiju/crystal.svg"
  43915. }
  43916. },
  43917. },
  43918. [
  43919. {
  43920. name: "Kaiju",
  43921. height: math.unit(325, "feet"),
  43922. default: true
  43923. },
  43924. ]
  43925. ))
  43926. characterMakers.push(() => makeCharacter(
  43927. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43928. {
  43929. front: {
  43930. height: math.unit(6 + 1/12, "feet"),
  43931. weight: math.unit(115, "lb"),
  43932. name: "Front",
  43933. image: {
  43934. source: "./media/characters/bailey-belfry/front.svg",
  43935. extra: 1240/1121,
  43936. bottom: 101/1341
  43937. }
  43938. },
  43939. },
  43940. [
  43941. {
  43942. name: "Normal",
  43943. height: math.unit(6 + 1/12, "feet"),
  43944. default: true
  43945. },
  43946. ]
  43947. ))
  43948. characterMakers.push(() => makeCharacter(
  43949. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43950. {
  43951. side: {
  43952. height: math.unit(4, "meters"),
  43953. weight: math.unit(250, "kg"),
  43954. name: "Side",
  43955. image: {
  43956. source: "./media/characters/blacky/side.svg",
  43957. extra: 1027/919,
  43958. bottom: 43/1070
  43959. }
  43960. },
  43961. maw: {
  43962. height: math.unit(1, "meters"),
  43963. name: "Maw",
  43964. image: {
  43965. source: "./media/characters/blacky/maw.svg"
  43966. }
  43967. },
  43968. paw: {
  43969. height: math.unit(1, "meters"),
  43970. name: "Paw",
  43971. image: {
  43972. source: "./media/characters/blacky/paw.svg"
  43973. }
  43974. },
  43975. },
  43976. [
  43977. {
  43978. name: "Normal",
  43979. height: math.unit(4, "meters"),
  43980. default: true
  43981. },
  43982. ]
  43983. ))
  43984. characterMakers.push(() => makeCharacter(
  43985. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43986. {
  43987. front: {
  43988. height: math.unit(170, "cm"),
  43989. weight: math.unit(66, "kg"),
  43990. name: "Front",
  43991. image: {
  43992. source: "./media/characters/thux-ei/front.svg",
  43993. extra: 1109/1011,
  43994. bottom: 8/1117
  43995. }
  43996. },
  43997. },
  43998. [
  43999. {
  44000. name: "Normal",
  44001. height: math.unit(170, "cm"),
  44002. default: true
  44003. },
  44004. ]
  44005. ))
  44006. characterMakers.push(() => makeCharacter(
  44007. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44008. {
  44009. front: {
  44010. height: math.unit(5, "feet"),
  44011. weight: math.unit(120, "lb"),
  44012. name: "Front",
  44013. image: {
  44014. source: "./media/characters/roxanne-voltaire/front.svg",
  44015. extra: 1901/1779,
  44016. bottom: 53/1954
  44017. }
  44018. },
  44019. },
  44020. [
  44021. {
  44022. name: "Normal",
  44023. height: math.unit(5, "feet"),
  44024. default: true
  44025. },
  44026. {
  44027. name: "Giant",
  44028. height: math.unit(50, "feet")
  44029. },
  44030. {
  44031. name: "Titan",
  44032. height: math.unit(500, "feet")
  44033. },
  44034. {
  44035. name: "Macro",
  44036. height: math.unit(5000, "feet")
  44037. },
  44038. {
  44039. name: "Megamacro",
  44040. height: math.unit(50000, "feet")
  44041. },
  44042. {
  44043. name: "Gigamacro",
  44044. height: math.unit(500000, "feet")
  44045. },
  44046. {
  44047. name: "Teramacro",
  44048. height: math.unit(5e6, "feet")
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(6 + 2/12, "feet"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/squeaks/front.svg",
  44060. extra: 1823/1768,
  44061. bottom: 138/1961
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Micro",
  44068. height: math.unit(0.5, "inches")
  44069. },
  44070. {
  44071. name: "Normal",
  44072. height: math.unit(6 + 2/12, "feet"),
  44073. default: true
  44074. },
  44075. {
  44076. name: "Macro",
  44077. height: math.unit(600, "feet")
  44078. },
  44079. ]
  44080. ))
  44081. characterMakers.push(() => makeCharacter(
  44082. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44083. {
  44084. front: {
  44085. height: math.unit(1.72, "meters"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/archinger/front.svg",
  44089. extra: 1861/1675,
  44090. bottom: 125/1986
  44091. }
  44092. },
  44093. back: {
  44094. height: math.unit(1.72, "meters"),
  44095. name: "Back",
  44096. image: {
  44097. source: "./media/characters/archinger/back.svg",
  44098. extra: 1844/1701,
  44099. bottom: 104/1948
  44100. }
  44101. },
  44102. cock: {
  44103. height: math.unit(0.59, "feet"),
  44104. name: "Cock",
  44105. image: {
  44106. source: "./media/characters/archinger/cock.svg"
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Normal",
  44113. height: math.unit(1.72, "meters"),
  44114. default: true
  44115. },
  44116. {
  44117. name: "Macro",
  44118. height: math.unit(84, "meters")
  44119. },
  44120. {
  44121. name: "Macro+",
  44122. height: math.unit(112, "meters")
  44123. },
  44124. {
  44125. name: "Macro++",
  44126. height: math.unit(960, "meters")
  44127. },
  44128. {
  44129. name: "Macro+++",
  44130. height: math.unit(4, "km")
  44131. },
  44132. {
  44133. name: "Macro++++",
  44134. height: math.unit(48, "km")
  44135. },
  44136. {
  44137. name: "Macro+++++",
  44138. height: math.unit(4500, "km")
  44139. },
  44140. ]
  44141. ))
  44142. characterMakers.push(() => makeCharacter(
  44143. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44144. {
  44145. front: {
  44146. height: math.unit(5 + 5/12, "feet"),
  44147. name: "Front",
  44148. image: {
  44149. source: "./media/characters/alsnapz/front.svg",
  44150. extra: 1157/1065,
  44151. bottom: 42/1199
  44152. }
  44153. },
  44154. },
  44155. [
  44156. {
  44157. name: "Normal",
  44158. height: math.unit(5 + 5/12, "feet"),
  44159. default: true
  44160. },
  44161. ]
  44162. ))
  44163. characterMakers.push(() => makeCharacter(
  44164. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44165. {
  44166. side: {
  44167. height: math.unit(3.2, "earths"),
  44168. name: "Side",
  44169. image: {
  44170. source: "./media/characters/mag/side.svg",
  44171. extra: 1331/1008,
  44172. bottom: 52/1383
  44173. }
  44174. },
  44175. wing: {
  44176. height: math.unit(1.94, "earths"),
  44177. name: "Wing",
  44178. image: {
  44179. source: "./media/characters/mag/wing.svg"
  44180. }
  44181. },
  44182. dick: {
  44183. height: math.unit(1.8, "earths"),
  44184. name: "Dick",
  44185. image: {
  44186. source: "./media/characters/mag/dick.svg"
  44187. }
  44188. },
  44189. ass: {
  44190. height: math.unit(1.33, "earths"),
  44191. name: "Ass",
  44192. image: {
  44193. source: "./media/characters/mag/ass.svg"
  44194. }
  44195. },
  44196. head: {
  44197. height: math.unit(1.1, "earths"),
  44198. name: "Head",
  44199. image: {
  44200. source: "./media/characters/mag/head.svg"
  44201. }
  44202. },
  44203. maw: {
  44204. height: math.unit(1.62, "earths"),
  44205. name: "Maw",
  44206. image: {
  44207. source: "./media/characters/mag/maw.svg"
  44208. }
  44209. },
  44210. },
  44211. [
  44212. {
  44213. name: "Small",
  44214. height: math.unit(162, "feet")
  44215. },
  44216. {
  44217. name: "Normal",
  44218. height: math.unit(3.2, "earths"),
  44219. default: true
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44225. {
  44226. front: {
  44227. height: math.unit(512, "feet"),
  44228. weight: math.unit(63509, "tonnes"),
  44229. name: "Front",
  44230. image: {
  44231. source: "./media/characters/vorrel-harroc/front.svg",
  44232. extra: 1075/1063,
  44233. bottom: 62/1137
  44234. }
  44235. },
  44236. },
  44237. [
  44238. {
  44239. name: "Normal",
  44240. height: math.unit(10, "feet")
  44241. },
  44242. {
  44243. name: "Macro",
  44244. height: math.unit(512, "feet"),
  44245. default: true
  44246. },
  44247. {
  44248. name: "Megamacro",
  44249. height: math.unit(256, "miles")
  44250. },
  44251. {
  44252. name: "Gigamacro",
  44253. height: math.unit(4096, "miles")
  44254. },
  44255. ]
  44256. ))
  44257. characterMakers.push(() => makeCharacter(
  44258. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44259. {
  44260. side: {
  44261. height: math.unit(50, "feet"),
  44262. name: "Side",
  44263. image: {
  44264. source: "./media/characters/froimar/side.svg",
  44265. extra: 855/638,
  44266. bottom: 99/954
  44267. }
  44268. },
  44269. },
  44270. [
  44271. {
  44272. name: "Macro",
  44273. height: math.unit(50, "feet"),
  44274. default: true
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44280. {
  44281. front: {
  44282. height: math.unit(210, "miles"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/timothy/front.svg",
  44286. extra: 1007/943,
  44287. bottom: 62/1069
  44288. }
  44289. },
  44290. frontSkirt: {
  44291. height: math.unit(210, "miles"),
  44292. name: "Front (Skirt)",
  44293. image: {
  44294. source: "./media/characters/timothy/front-skirt.svg",
  44295. extra: 1007/943,
  44296. bottom: 62/1069
  44297. }
  44298. },
  44299. frontCoat: {
  44300. height: math.unit(210, "miles"),
  44301. name: "Front (Coat)",
  44302. image: {
  44303. source: "./media/characters/timothy/front-coat.svg",
  44304. extra: 1007/943,
  44305. bottom: 62/1069
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Macro",
  44312. height: math.unit(210, "miles"),
  44313. default: true
  44314. },
  44315. {
  44316. name: "Megamacro",
  44317. height: math.unit(210000, "miles")
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44323. {
  44324. front: {
  44325. height: math.unit(188, "feet"),
  44326. name: "Front",
  44327. image: {
  44328. source: "./media/characters/pyotr/front.svg",
  44329. extra: 1912/1826,
  44330. bottom: 18/1930
  44331. }
  44332. },
  44333. },
  44334. [
  44335. {
  44336. name: "Macro",
  44337. height: math.unit(188, "feet"),
  44338. default: true
  44339. },
  44340. {
  44341. name: "Megamacro",
  44342. height: math.unit(8, "miles")
  44343. },
  44344. ]
  44345. ))
  44346. characterMakers.push(() => makeCharacter(
  44347. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44348. {
  44349. side: {
  44350. height: math.unit(10, "feet"),
  44351. weight: math.unit(4500, "lb"),
  44352. name: "Side",
  44353. image: {
  44354. source: "./media/characters/ackart/side.svg",
  44355. extra: 1776/1668,
  44356. bottom: 116/1892
  44357. }
  44358. },
  44359. },
  44360. [
  44361. {
  44362. name: "Normal",
  44363. height: math.unit(10, "feet"),
  44364. default: true
  44365. },
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44370. {
  44371. side: {
  44372. height: math.unit(21, "feet"),
  44373. name: "Side",
  44374. image: {
  44375. source: "./media/characters/nolow/side.svg",
  44376. extra: 1484/1434,
  44377. bottom: 85/1569
  44378. }
  44379. },
  44380. sideErect: {
  44381. height: math.unit(21, "feet"),
  44382. name: "Side-erect",
  44383. image: {
  44384. source: "./media/characters/nolow/side-erect.svg",
  44385. extra: 1484/1434,
  44386. bottom: 85/1569
  44387. }
  44388. },
  44389. },
  44390. [
  44391. {
  44392. name: "Regular",
  44393. height: math.unit(12, "feet")
  44394. },
  44395. {
  44396. name: "Big Chee",
  44397. height: math.unit(21, "feet"),
  44398. default: true
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44404. {
  44405. front: {
  44406. height: math.unit(7, "feet"),
  44407. weight: math.unit(250, "lb"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/nines/front.svg",
  44411. extra: 1741/1607,
  44412. bottom: 41/1782
  44413. }
  44414. },
  44415. side: {
  44416. height: math.unit(7, "feet"),
  44417. weight: math.unit(250, "lb"),
  44418. name: "Side",
  44419. image: {
  44420. source: "./media/characters/nines/side.svg",
  44421. extra: 1854/1735,
  44422. bottom: 93/1947
  44423. }
  44424. },
  44425. back: {
  44426. height: math.unit(7, "feet"),
  44427. weight: math.unit(250, "lb"),
  44428. name: "Back",
  44429. image: {
  44430. source: "./media/characters/nines/back.svg",
  44431. extra: 1748/1615,
  44432. bottom: 20/1768
  44433. }
  44434. },
  44435. },
  44436. [
  44437. {
  44438. name: "Megamacro",
  44439. height: math.unit(99, "km"),
  44440. default: true
  44441. },
  44442. ]
  44443. ))
  44444. characterMakers.push(() => makeCharacter(
  44445. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44446. {
  44447. front: {
  44448. height: math.unit(5 + 10/12, "feet"),
  44449. weight: math.unit(210, "lb"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/zenith/front.svg",
  44453. extra: 1531/1452,
  44454. bottom: 198/1729
  44455. }
  44456. },
  44457. back: {
  44458. height: math.unit(5 + 10/12, "feet"),
  44459. weight: math.unit(210, "lb"),
  44460. name: "Back",
  44461. image: {
  44462. source: "./media/characters/zenith/back.svg",
  44463. extra: 1571/1487,
  44464. bottom: 75/1646
  44465. }
  44466. },
  44467. },
  44468. [
  44469. {
  44470. name: "Normal",
  44471. height: math.unit(5 + 10/12, "feet"),
  44472. default: true
  44473. }
  44474. ]
  44475. ))
  44476. characterMakers.push(() => makeCharacter(
  44477. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44478. {
  44479. front: {
  44480. height: math.unit(4, "feet"),
  44481. weight: math.unit(60, "lb"),
  44482. name: "Front",
  44483. image: {
  44484. source: "./media/characters/jasper/front.svg",
  44485. extra: 1450/1379,
  44486. bottom: 19/1469
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(4, "feet"),
  44494. default: true
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44500. {
  44501. front: {
  44502. height: math.unit(6 + 5/12, "feet"),
  44503. weight: math.unit(290, "lb"),
  44504. name: "Front",
  44505. image: {
  44506. source: "./media/characters/tiberius-thyben/front.svg",
  44507. extra: 757/739,
  44508. bottom: 39/796
  44509. }
  44510. },
  44511. },
  44512. [
  44513. {
  44514. name: "Micro",
  44515. height: math.unit(1.5, "inches")
  44516. },
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(6 + 5/12, "feet"),
  44520. default: true
  44521. },
  44522. {
  44523. name: "Macro",
  44524. height: math.unit(300, "feet")
  44525. },
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(5 + 6/12, "feet"),
  44533. weight: math.unit(60, "kg"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/sabre/front.svg",
  44537. extra: 738/671,
  44538. bottom: 27/765
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Teeny",
  44545. height: math.unit(2, "inches")
  44546. },
  44547. {
  44548. name: "Smol",
  44549. height: math.unit(8, "inches")
  44550. },
  44551. {
  44552. name: "Normal",
  44553. height: math.unit(5 + 6/12, "feet"),
  44554. default: true
  44555. },
  44556. {
  44557. name: "Mini-Macro",
  44558. height: math.unit(15, "feet")
  44559. },
  44560. {
  44561. name: "Macro",
  44562. height: math.unit(50, "feet")
  44563. },
  44564. ]
  44565. ))
  44566. characterMakers.push(() => makeCharacter(
  44567. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44568. {
  44569. front: {
  44570. height: math.unit(6 + 4/12, "feet"),
  44571. weight: math.unit(170, "lb"),
  44572. name: "Front",
  44573. image: {
  44574. source: "./media/characters/charlie/front.svg",
  44575. extra: 1348/1228,
  44576. bottom: 15/1363
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Macro",
  44583. height: math.unit(1700, "meters"),
  44584. default: true
  44585. },
  44586. {
  44587. name: "MegaMacro",
  44588. height: math.unit(20400, "meters")
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44594. {
  44595. front: {
  44596. height: math.unit(1.96, "meters"),
  44597. weight: math.unit(220, "lb"),
  44598. name: "Front",
  44599. image: {
  44600. source: "./media/characters/susan-grant/front.svg",
  44601. extra: 482/478,
  44602. bottom: 7/489
  44603. }
  44604. },
  44605. },
  44606. [
  44607. {
  44608. name: "Normal",
  44609. height: math.unit(1.96, "meters"),
  44610. default: true
  44611. },
  44612. {
  44613. name: "Macro",
  44614. height: math.unit(76.2, "meters")
  44615. },
  44616. {
  44617. name: "MegaMacro",
  44618. height: math.unit(305, "meters")
  44619. },
  44620. {
  44621. name: "GigaMacro",
  44622. height: math.unit(1220, "meters")
  44623. },
  44624. {
  44625. name: "SuperMacro",
  44626. height: math.unit(4878, "meters")
  44627. },
  44628. ]
  44629. ))
  44630. characterMakers.push(() => makeCharacter(
  44631. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44632. {
  44633. front: {
  44634. height: math.unit(5 + 4/12, "feet"),
  44635. weight: math.unit(110, "lb"),
  44636. name: "Front",
  44637. image: {
  44638. source: "./media/characters/axel-isanov/front.svg",
  44639. extra: 1096/1065,
  44640. bottom: 13/1109
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(5 + 4/12, "feet"),
  44648. default: true
  44649. },
  44650. ]
  44651. ))
  44652. characterMakers.push(() => makeCharacter(
  44653. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44654. {
  44655. front: {
  44656. height: math.unit(9, "feet"),
  44657. weight: math.unit(467, "lb"),
  44658. name: "Front",
  44659. image: {
  44660. source: "./media/characters/necahual/front.svg",
  44661. extra: 920/873,
  44662. bottom: 26/946
  44663. }
  44664. },
  44665. back: {
  44666. height: math.unit(9, "feet"),
  44667. weight: math.unit(467, "lb"),
  44668. name: "Back",
  44669. image: {
  44670. source: "./media/characters/necahual/back.svg",
  44671. extra: 930/884,
  44672. bottom: 16/946
  44673. }
  44674. },
  44675. frontUnderwear: {
  44676. height: math.unit(9, "feet"),
  44677. weight: math.unit(467, "lb"),
  44678. name: "Front (Underwear)",
  44679. image: {
  44680. source: "./media/characters/necahual/front-underwear.svg",
  44681. extra: 920/873,
  44682. bottom: 26/946
  44683. }
  44684. },
  44685. frontDressed: {
  44686. height: math.unit(9, "feet"),
  44687. weight: math.unit(467, "lb"),
  44688. name: "Front (Dressed)",
  44689. image: {
  44690. source: "./media/characters/necahual/front-dressed.svg",
  44691. extra: 920/873,
  44692. bottom: 26/946
  44693. }
  44694. },
  44695. },
  44696. [
  44697. {
  44698. name: "Comprsesed",
  44699. height: math.unit(9, "feet")
  44700. },
  44701. {
  44702. name: "Natural",
  44703. height: math.unit(15, "feet"),
  44704. default: true
  44705. },
  44706. {
  44707. name: "Boosted",
  44708. height: math.unit(50, "feet")
  44709. },
  44710. {
  44711. name: "Boosted+",
  44712. height: math.unit(150, "feet")
  44713. },
  44714. {
  44715. name: "Max",
  44716. height: math.unit(500, "feet")
  44717. },
  44718. ]
  44719. ))
  44720. characterMakers.push(() => makeCharacter(
  44721. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44722. {
  44723. front: {
  44724. height: math.unit(22 + 1/12, "feet"),
  44725. weight: math.unit(3200, "lb"),
  44726. name: "Front",
  44727. image: {
  44728. source: "./media/characters/theo-acacia/front.svg",
  44729. extra: 1796/1741,
  44730. bottom: 83/1879
  44731. }
  44732. },
  44733. frontUnderwear: {
  44734. height: math.unit(22 + 1/12, "feet"),
  44735. weight: math.unit(3200, "lb"),
  44736. name: "Front (Underwear)",
  44737. image: {
  44738. source: "./media/characters/theo-acacia/front-underwear.svg",
  44739. extra: 1796/1741,
  44740. bottom: 83/1879
  44741. }
  44742. },
  44743. frontNude: {
  44744. height: math.unit(22 + 1/12, "feet"),
  44745. weight: math.unit(3200, "lb"),
  44746. name: "Front (Nude)",
  44747. image: {
  44748. source: "./media/characters/theo-acacia/front-nude.svg",
  44749. extra: 1796/1741,
  44750. bottom: 83/1879
  44751. }
  44752. },
  44753. },
  44754. [
  44755. {
  44756. name: "Normal",
  44757. height: math.unit(22 + 1/12, "feet"),
  44758. default: true
  44759. },
  44760. ]
  44761. ))
  44762. characterMakers.push(() => makeCharacter(
  44763. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44764. {
  44765. front: {
  44766. height: math.unit(20, "feet"),
  44767. name: "Front",
  44768. image: {
  44769. source: "./media/characters/astra/front.svg",
  44770. extra: 1850/1714,
  44771. bottom: 106/1956
  44772. }
  44773. },
  44774. frontUndressed: {
  44775. height: math.unit(20, "feet"),
  44776. name: "Front (Undressed)",
  44777. image: {
  44778. source: "./media/characters/astra/front-undressed.svg",
  44779. extra: 1926/1749,
  44780. bottom: 0/1926
  44781. }
  44782. },
  44783. hand: {
  44784. height: math.unit(1.53, "feet"),
  44785. name: "Hand",
  44786. image: {
  44787. source: "./media/characters/astra/hand.svg"
  44788. }
  44789. },
  44790. paw: {
  44791. height: math.unit(1.53, "feet"),
  44792. name: "Paw",
  44793. image: {
  44794. source: "./media/characters/astra/paw.svg"
  44795. }
  44796. },
  44797. },
  44798. [
  44799. {
  44800. name: "Smallest",
  44801. height: math.unit(20, "feet")
  44802. },
  44803. {
  44804. name: "Normal",
  44805. height: math.unit(1e9, "miles"),
  44806. default: true
  44807. },
  44808. {
  44809. name: "Larger",
  44810. height: math.unit(5, "multiverses")
  44811. },
  44812. {
  44813. name: "Largest",
  44814. height: math.unit(1e9, "multiverses")
  44815. },
  44816. ]
  44817. ))
  44818. characterMakers.push(() => makeCharacter(
  44819. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44820. {
  44821. front: {
  44822. height: math.unit(8, "feet"),
  44823. name: "Front",
  44824. image: {
  44825. source: "./media/characters/breanna/front.svg",
  44826. extra: 1912/1632,
  44827. bottom: 33/1945
  44828. }
  44829. },
  44830. },
  44831. [
  44832. {
  44833. name: "Smallest",
  44834. height: math.unit(8, "feet")
  44835. },
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(1, "mile"),
  44839. default: true
  44840. },
  44841. {
  44842. name: "Maximum",
  44843. height: math.unit(1500000000000, "lightyears")
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44849. {
  44850. front: {
  44851. height: math.unit(5 + 11/12, "feet"),
  44852. weight: math.unit(155, "lb"),
  44853. name: "Front",
  44854. image: {
  44855. source: "./media/characters/cai/front.svg",
  44856. extra: 1823/1702,
  44857. bottom: 32/1855
  44858. }
  44859. },
  44860. back: {
  44861. height: math.unit(5 + 11/12, "feet"),
  44862. weight: math.unit(155, "lb"),
  44863. name: "Back",
  44864. image: {
  44865. source: "./media/characters/cai/back.svg",
  44866. extra: 1809/1708,
  44867. bottom: 31/1840
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(5 + 11/12, "feet"),
  44875. default: true
  44876. },
  44877. {
  44878. name: "Big",
  44879. height: math.unit(15, "feet")
  44880. },
  44881. {
  44882. name: "Macro",
  44883. height: math.unit(200, "feet")
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44889. {
  44890. front: {
  44891. height: math.unit(5 + 6/12, "feet"),
  44892. weight: math.unit(160, "lb"),
  44893. name: "Front",
  44894. image: {
  44895. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44896. extra: 1227/1174,
  44897. bottom: 37/1264
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Macro",
  44904. height: math.unit(444, "meters"),
  44905. default: true
  44906. },
  44907. ]
  44908. ))
  44909. characterMakers.push(() => makeCharacter(
  44910. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44911. {
  44912. front: {
  44913. height: math.unit(18 + 7/12, "feet"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/rex/front.svg",
  44917. extra: 1941/1807,
  44918. bottom: 66/2007
  44919. }
  44920. },
  44921. back: {
  44922. height: math.unit(18 + 7/12, "feet"),
  44923. name: "Back",
  44924. image: {
  44925. source: "./media/characters/rex/back.svg",
  44926. extra: 1937/1822,
  44927. bottom: 42/1979
  44928. }
  44929. },
  44930. boot: {
  44931. height: math.unit(3.45, "feet"),
  44932. name: "Boot",
  44933. image: {
  44934. source: "./media/characters/rex/boot.svg"
  44935. }
  44936. },
  44937. paw: {
  44938. height: math.unit(4.17, "feet"),
  44939. name: "Paw",
  44940. image: {
  44941. source: "./media/characters/rex/paw.svg"
  44942. }
  44943. },
  44944. head: {
  44945. height: math.unit(6.728, "feet"),
  44946. name: "Head",
  44947. image: {
  44948. source: "./media/characters/rex/head.svg"
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Nano",
  44955. height: math.unit(18 + 7/12, "feet")
  44956. },
  44957. {
  44958. name: "Micro",
  44959. height: math.unit(1.5, "megameters")
  44960. },
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(440, "megameters"),
  44964. default: true
  44965. },
  44966. {
  44967. name: "Macro",
  44968. height: math.unit(2.5, "gigameters")
  44969. },
  44970. {
  44971. name: "Gigamacro",
  44972. height: math.unit(2, "galaxies")
  44973. },
  44974. ]
  44975. ))
  44976. characterMakers.push(() => makeCharacter(
  44977. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44978. {
  44979. side: {
  44980. height: math.unit(32, "feet"),
  44981. weight: math.unit(250000, "lb"),
  44982. name: "Side",
  44983. image: {
  44984. source: "./media/characters/silverwing/side.svg",
  44985. extra: 1100/1019,
  44986. bottom: 204/1304
  44987. }
  44988. },
  44989. },
  44990. [
  44991. {
  44992. name: "Normal",
  44993. height: math.unit(32, "feet"),
  44994. default: true
  44995. },
  44996. ]
  44997. ))
  44998. characterMakers.push(() => makeCharacter(
  44999. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45000. {
  45001. skunkFront: {
  45002. height: math.unit(4 + 6/12, "feet"),
  45003. weight: math.unit(120, "lb"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45007. extra: 330/318,
  45008. bottom: 25/355
  45009. },
  45010. form: "skunk",
  45011. default: true
  45012. },
  45013. alolanUmbraichu_front: {
  45014. height: math.unit(2 + 6/12, "feet"),
  45015. name: "Front",
  45016. image: {
  45017. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45018. extra: 389/350,
  45019. bottom: 33/422
  45020. },
  45021. form: "alolan-umbraichu",
  45022. default: true
  45023. },
  45024. },
  45025. [
  45026. {
  45027. name: "Normal",
  45028. height: math.unit(4 + 6/12, "feet"),
  45029. form: "skunk",
  45030. default: true
  45031. },
  45032. {
  45033. name: "Normal",
  45034. height: math.unit(2 + 6/12, "feet"),
  45035. form: "alolan-umbraichu",
  45036. default: true
  45037. },
  45038. ],
  45039. {
  45040. "skunk": {
  45041. name: "Skunk",
  45042. default: true
  45043. },
  45044. "alolan-umbraichu": {
  45045. name: "Alolan Umbraichu",
  45046. },
  45047. }
  45048. ))
  45049. characterMakers.push(() => makeCharacter(
  45050. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45051. {
  45052. front: {
  45053. height: math.unit(5 + 11/12, "feet"),
  45054. weight: math.unit(190, "lb"),
  45055. name: "Front",
  45056. image: {
  45057. source: "./media/characters/mizu/front.svg",
  45058. extra: 1988/1788,
  45059. bottom: 14/2002
  45060. }
  45061. },
  45062. },
  45063. [
  45064. {
  45065. name: "Normal",
  45066. height: math.unit(5 + 11/12, "feet"),
  45067. default: true
  45068. },
  45069. ]
  45070. ))
  45071. characterMakers.push(() => makeCharacter(
  45072. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45073. {
  45074. front: {
  45075. height: math.unit(1.7, "feet"),
  45076. weight: math.unit(50, "lb"),
  45077. name: "Front",
  45078. image: {
  45079. source: "./media/characters/dechroma/front.svg",
  45080. extra: 1095/859,
  45081. bottom: 64/1159
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Normal",
  45088. height: math.unit(1.7, "feet"),
  45089. default: true
  45090. },
  45091. ]
  45092. ))
  45093. characterMakers.push(() => makeCharacter(
  45094. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45095. {
  45096. side: {
  45097. height: math.unit(30, "feet"),
  45098. name: "Side",
  45099. image: {
  45100. source: "./media/characters/veluren-thanazel/side.svg",
  45101. extra: 1611/633,
  45102. bottom: 118/1729
  45103. }
  45104. },
  45105. front: {
  45106. height: math.unit(30, "feet"),
  45107. name: "Front",
  45108. image: {
  45109. source: "./media/characters/veluren-thanazel/front.svg",
  45110. extra: 1486/636,
  45111. bottom: 238/1724
  45112. }
  45113. },
  45114. head: {
  45115. height: math.unit(21.4, "feet"),
  45116. name: "Head",
  45117. image: {
  45118. source: "./media/characters/veluren-thanazel/head.svg"
  45119. }
  45120. },
  45121. genitals: {
  45122. height: math.unit(19.4, "feet"),
  45123. name: "Genitals",
  45124. image: {
  45125. source: "./media/characters/veluren-thanazel/genitals.svg"
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Social",
  45132. height: math.unit(6, "feet")
  45133. },
  45134. {
  45135. name: "Play",
  45136. height: math.unit(12, "feet")
  45137. },
  45138. {
  45139. name: "True",
  45140. height: math.unit(30, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(7 + 6/12, "feet"),
  45150. weight: math.unit(500, "kg"),
  45151. name: "Front",
  45152. image: {
  45153. source: "./media/characters/arcturas/front.svg",
  45154. extra: 1700/1500,
  45155. bottom: 145/1845
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal",
  45162. height: math.unit(7 + 6/12, "feet"),
  45163. default: true
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45169. {
  45170. side: {
  45171. height: math.unit(6, "feet"),
  45172. weight: math.unit(2, "tons"),
  45173. name: "Side",
  45174. image: {
  45175. source: "./media/characters/vitaen/side.svg",
  45176. extra: 1157/617,
  45177. bottom: 122/1279
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(6, "feet"),
  45185. default: true
  45186. },
  45187. ]
  45188. ))
  45189. characterMakers.push(() => makeCharacter(
  45190. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45191. {
  45192. front: {
  45193. height: math.unit(19, "feet"),
  45194. name: "Front",
  45195. image: {
  45196. source: "./media/characters/fia-dreamweaver/front.svg",
  45197. extra: 1630/1504,
  45198. bottom: 25/1655
  45199. }
  45200. },
  45201. },
  45202. [
  45203. {
  45204. name: "Normal",
  45205. height: math.unit(19, "feet"),
  45206. default: true
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45212. {
  45213. front: {
  45214. height: math.unit(5 + 4/12, "feet"),
  45215. name: "Front",
  45216. image: {
  45217. source: "./media/characters/artan/front.svg",
  45218. extra: 1618/1535,
  45219. bottom: 46/1664
  45220. }
  45221. },
  45222. back: {
  45223. height: math.unit(5 + 4/12, "feet"),
  45224. name: "Back",
  45225. image: {
  45226. source: "./media/characters/artan/back.svg",
  45227. extra: 1618/1543,
  45228. bottom: 31/1649
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(5 + 4/12, "feet"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45242. {
  45243. side: {
  45244. height: math.unit(182, "cm"),
  45245. weight: math.unit(1000, "lb"),
  45246. name: "Side",
  45247. image: {
  45248. source: "./media/characters/silver-dragon/side.svg",
  45249. extra: 710/287,
  45250. bottom: 88/798
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(182, "cm"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45264. {
  45265. side: {
  45266. height: math.unit(6 + 6/12, "feet"),
  45267. weight: math.unit(1.5, "tons"),
  45268. name: "Side",
  45269. image: {
  45270. source: "./media/characters/zephyr/side.svg",
  45271. extra: 1436/603,
  45272. bottom: 105/1541
  45273. }
  45274. },
  45275. },
  45276. [
  45277. {
  45278. name: "Normal",
  45279. height: math.unit(6 + 6/12, "feet"),
  45280. default: true
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45286. {
  45287. side: {
  45288. height: math.unit(1, "feet"),
  45289. name: "Side",
  45290. image: {
  45291. source: "./media/characters/vixye/side.svg",
  45292. extra: 632/541,
  45293. bottom: 0/632
  45294. }
  45295. },
  45296. },
  45297. [
  45298. {
  45299. name: "Normal",
  45300. height: math.unit(1, "feet"),
  45301. default: true
  45302. },
  45303. {
  45304. name: "True",
  45305. height: math.unit(1e15, "multiverses")
  45306. },
  45307. ]
  45308. ))
  45309. characterMakers.push(() => makeCharacter(
  45310. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45311. {
  45312. front: {
  45313. height: math.unit(8 + 2/12, "feet"),
  45314. weight: math.unit(650, "lb"),
  45315. name: "Front",
  45316. image: {
  45317. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45318. extra: 1174/1137,
  45319. bottom: 82/1256
  45320. }
  45321. },
  45322. back: {
  45323. height: math.unit(8 + 2/12, "feet"),
  45324. weight: math.unit(650, "lb"),
  45325. name: "Back",
  45326. image: {
  45327. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45328. extra: 1204/1157,
  45329. bottom: 46/1250
  45330. }
  45331. },
  45332. },
  45333. [
  45334. {
  45335. name: "Wildform",
  45336. height: math.unit(8 + 2/12, "feet"),
  45337. default: true
  45338. },
  45339. ]
  45340. ))
  45341. characterMakers.push(() => makeCharacter(
  45342. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45343. {
  45344. front: {
  45345. height: math.unit(18, "feet"),
  45346. name: "Front",
  45347. image: {
  45348. source: "./media/characters/cyphin/front.svg",
  45349. extra: 970/886,
  45350. bottom: 42/1012
  45351. }
  45352. },
  45353. back: {
  45354. height: math.unit(18, "feet"),
  45355. name: "Back",
  45356. image: {
  45357. source: "./media/characters/cyphin/back.svg",
  45358. extra: 1009/894,
  45359. bottom: 24/1033
  45360. }
  45361. },
  45362. head: {
  45363. height: math.unit(5.05, "feet"),
  45364. name: "Head",
  45365. image: {
  45366. source: "./media/characters/cyphin/head.svg"
  45367. }
  45368. },
  45369. tailbud: {
  45370. height: math.unit(5, "feet"),
  45371. name: "Tailbud",
  45372. image: {
  45373. source: "./media/characters/cyphin/tailbud.svg"
  45374. }
  45375. },
  45376. },
  45377. [
  45378. ]
  45379. ))
  45380. characterMakers.push(() => makeCharacter(
  45381. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45382. {
  45383. side: {
  45384. height: math.unit(10, "feet"),
  45385. weight: math.unit(6, "tons"),
  45386. name: "Side",
  45387. image: {
  45388. source: "./media/characters/raijin/side.svg",
  45389. extra: 1529/613,
  45390. bottom: 337/1866
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "Normal",
  45397. height: math.unit(10, "feet"),
  45398. default: true
  45399. },
  45400. ]
  45401. ))
  45402. characterMakers.push(() => makeCharacter(
  45403. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45404. {
  45405. side: {
  45406. height: math.unit(9, "feet"),
  45407. name: "Side",
  45408. image: {
  45409. source: "./media/characters/nilghais/side.svg",
  45410. extra: 1047/744,
  45411. bottom: 91/1138
  45412. }
  45413. },
  45414. head: {
  45415. height: math.unit(3.14, "feet"),
  45416. name: "Head",
  45417. image: {
  45418. source: "./media/characters/nilghais/head.svg"
  45419. }
  45420. },
  45421. mouth: {
  45422. height: math.unit(4.6, "feet"),
  45423. name: "Mouth",
  45424. image: {
  45425. source: "./media/characters/nilghais/mouth.svg"
  45426. }
  45427. },
  45428. wings: {
  45429. height: math.unit(24, "feet"),
  45430. name: "Wings",
  45431. image: {
  45432. source: "./media/characters/nilghais/wings.svg"
  45433. }
  45434. },
  45435. ass: {
  45436. height: math.unit(6.12, "feet"),
  45437. name: "Ass",
  45438. image: {
  45439. source: "./media/characters/nilghais/ass.svg"
  45440. }
  45441. },
  45442. },
  45443. [
  45444. {
  45445. name: "Normal",
  45446. height: math.unit(9, "feet"),
  45447. default: true
  45448. },
  45449. ]
  45450. ))
  45451. characterMakers.push(() => makeCharacter(
  45452. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45453. {
  45454. regular: {
  45455. height: math.unit(16 + 2/12, "feet"),
  45456. weight: math.unit(2300, "lb"),
  45457. name: "Regular",
  45458. image: {
  45459. source: "./media/characters/zolgar/regular.svg",
  45460. extra: 1246/1004,
  45461. bottom: 124/1370
  45462. }
  45463. },
  45464. boxers: {
  45465. height: math.unit(16 + 2/12, "feet"),
  45466. weight: math.unit(2300, "lb"),
  45467. name: "Boxers",
  45468. image: {
  45469. source: "./media/characters/zolgar/boxers.svg",
  45470. extra: 1246/1004,
  45471. bottom: 124/1370
  45472. }
  45473. },
  45474. armored: {
  45475. height: math.unit(16 + 2/12, "feet"),
  45476. weight: math.unit(2300, "lb"),
  45477. name: "Armored",
  45478. image: {
  45479. source: "./media/characters/zolgar/armored.svg",
  45480. extra: 1246/1004,
  45481. bottom: 124/1370
  45482. }
  45483. },
  45484. goth: {
  45485. height: math.unit(16 + 2/12, "feet"),
  45486. weight: math.unit(2300, "lb"),
  45487. name: "Goth",
  45488. image: {
  45489. source: "./media/characters/zolgar/goth.svg",
  45490. extra: 1246/1004,
  45491. bottom: 124/1370
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Shrunken Down",
  45498. height: math.unit(9 + 2/12, "feet")
  45499. },
  45500. {
  45501. name: "Normal",
  45502. height: math.unit(16 + 2/12, "feet"),
  45503. default: true
  45504. },
  45505. ]
  45506. ))
  45507. characterMakers.push(() => makeCharacter(
  45508. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45509. {
  45510. front: {
  45511. height: math.unit(6, "feet"),
  45512. weight: math.unit(168, "lb"),
  45513. name: "Front",
  45514. image: {
  45515. source: "./media/characters/luca/front.svg",
  45516. extra: 841/667,
  45517. bottom: 102/943
  45518. }
  45519. },
  45520. },
  45521. [
  45522. {
  45523. name: "Normal",
  45524. height: math.unit(6, "feet"),
  45525. default: true
  45526. },
  45527. ]
  45528. ))
  45529. characterMakers.push(() => makeCharacter(
  45530. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45531. {
  45532. side: {
  45533. height: math.unit(7 + 3/12, "feet"),
  45534. weight: math.unit(312, "lb"),
  45535. name: "Side",
  45536. image: {
  45537. source: "./media/characters/zezo/side.svg",
  45538. extra: 1192/1067,
  45539. bottom: 63/1255
  45540. }
  45541. },
  45542. },
  45543. [
  45544. {
  45545. name: "Normal",
  45546. height: math.unit(7 + 3/12, "feet"),
  45547. default: true
  45548. },
  45549. ]
  45550. ))
  45551. characterMakers.push(() => makeCharacter(
  45552. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45553. {
  45554. front: {
  45555. height: math.unit(5 + 5/12, "feet"),
  45556. weight: math.unit(170, "lb"),
  45557. name: "Front",
  45558. image: {
  45559. source: "./media/characters/mayso/front.svg",
  45560. extra: 1215/1108,
  45561. bottom: 16/1231
  45562. }
  45563. },
  45564. },
  45565. [
  45566. {
  45567. name: "Normal",
  45568. height: math.unit(5 + 5/12, "feet"),
  45569. default: true
  45570. },
  45571. ]
  45572. ))
  45573. characterMakers.push(() => makeCharacter(
  45574. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45575. {
  45576. front: {
  45577. height: math.unit(4 + 3/12, "feet"),
  45578. weight: math.unit(80, "lb"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/hess/front.svg",
  45582. extra: 1200/1123,
  45583. bottom: 16/1216
  45584. }
  45585. },
  45586. },
  45587. [
  45588. {
  45589. name: "Normal",
  45590. height: math.unit(4 + 3/12, "feet"),
  45591. default: true
  45592. },
  45593. ]
  45594. ))
  45595. characterMakers.push(() => makeCharacter(
  45596. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45597. {
  45598. front: {
  45599. height: math.unit(1.9, "meters"),
  45600. name: "Front",
  45601. image: {
  45602. source: "./media/characters/ashgar/front.svg",
  45603. extra: 1177/1146,
  45604. bottom: 99/1276
  45605. }
  45606. },
  45607. back: {
  45608. height: math.unit(1.9, "meters"),
  45609. name: "Back",
  45610. image: {
  45611. source: "./media/characters/ashgar/back.svg",
  45612. extra: 1201/1183,
  45613. bottom: 53/1254
  45614. }
  45615. },
  45616. feral: {
  45617. height: math.unit(1.4, "meters"),
  45618. name: "Feral",
  45619. image: {
  45620. source: "./media/characters/ashgar/feral.svg",
  45621. extra: 370/345,
  45622. bottom: 45/415
  45623. }
  45624. },
  45625. },
  45626. [
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(1.9, "meters"),
  45630. default: true
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45636. {
  45637. regular: {
  45638. height: math.unit(6, "feet"),
  45639. weight: math.unit(220, "lb"),
  45640. name: "Regular",
  45641. image: {
  45642. source: "./media/characters/phillip/regular.svg",
  45643. extra: 1373/1277,
  45644. bottom: 75/1448
  45645. }
  45646. },
  45647. dressed: {
  45648. height: math.unit(6, "feet"),
  45649. weight: math.unit(220, "lb"),
  45650. name: "Dressed",
  45651. image: {
  45652. source: "./media/characters/phillip/dressed.svg",
  45653. extra: 1373/1277,
  45654. bottom: 75/1448
  45655. }
  45656. },
  45657. paw: {
  45658. height: math.unit(1.44, "feet"),
  45659. name: "Paw",
  45660. image: {
  45661. source: "./media/characters/phillip/paw.svg"
  45662. }
  45663. },
  45664. },
  45665. [
  45666. {
  45667. name: "Normal",
  45668. height: math.unit(6, "feet"),
  45669. default: true
  45670. },
  45671. ]
  45672. ))
  45673. characterMakers.push(() => makeCharacter(
  45674. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45675. {
  45676. side: {
  45677. height: math.unit(42, "feet"),
  45678. name: "Side",
  45679. image: {
  45680. source: "./media/characters/uvula/side.svg",
  45681. extra: 683/586,
  45682. bottom: 60/743
  45683. }
  45684. },
  45685. front: {
  45686. height: math.unit(42, "feet"),
  45687. name: "Front",
  45688. image: {
  45689. source: "./media/characters/uvula/front.svg",
  45690. extra: 705/613,
  45691. bottom: 54/759
  45692. }
  45693. },
  45694. maw: {
  45695. height: math.unit(23.5, "feet"),
  45696. name: "Maw",
  45697. image: {
  45698. source: "./media/characters/uvula/maw.svg"
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Original Size",
  45705. height: math.unit(14, "inches")
  45706. },
  45707. {
  45708. name: "Human Size",
  45709. height: math.unit(6, "feet")
  45710. },
  45711. {
  45712. name: "Big",
  45713. height: math.unit(42, "feet"),
  45714. default: true
  45715. },
  45716. {
  45717. name: "Bigger",
  45718. height: math.unit(100, "feet")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45724. {
  45725. front: {
  45726. height: math.unit(5 + 11/12, "feet"),
  45727. name: "Front",
  45728. image: {
  45729. source: "./media/characters/lannah/front.svg",
  45730. extra: 1208/1113,
  45731. bottom: 97/1305
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Normal",
  45738. height: math.unit(5 + 11/12, "feet"),
  45739. default: true
  45740. },
  45741. ]
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45745. {
  45746. front: {
  45747. height: math.unit(6 + 3/12, "feet"),
  45748. weight: math.unit(3.5, "tons"),
  45749. name: "Front",
  45750. image: {
  45751. source: "./media/characters/emberflame/front.svg",
  45752. extra: 1198/672,
  45753. bottom: 82/1280
  45754. }
  45755. },
  45756. side: {
  45757. height: math.unit(6 + 3/12, "feet"),
  45758. weight: math.unit(3.5, "tons"),
  45759. name: "Side",
  45760. image: {
  45761. source: "./media/characters/emberflame/side.svg",
  45762. extra: 938/527,
  45763. bottom: 56/994
  45764. }
  45765. },
  45766. },
  45767. [
  45768. {
  45769. name: "Normal",
  45770. height: math.unit(6 + 3/12, "feet"),
  45771. default: true
  45772. },
  45773. ]
  45774. ))
  45775. characterMakers.push(() => makeCharacter(
  45776. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45777. {
  45778. side: {
  45779. height: math.unit(17.5, "feet"),
  45780. weight: math.unit(35, "tons"),
  45781. name: "Side",
  45782. image: {
  45783. source: "./media/characters/sophie-ambrose/side.svg",
  45784. extra: 1573/1242,
  45785. bottom: 71/1644
  45786. }
  45787. },
  45788. maw: {
  45789. height: math.unit(7.4, "feet"),
  45790. name: "Maw",
  45791. image: {
  45792. source: "./media/characters/sophie-ambrose/maw.svg"
  45793. }
  45794. },
  45795. },
  45796. [
  45797. {
  45798. name: "Normal",
  45799. height: math.unit(17.5, "feet"),
  45800. default: true
  45801. },
  45802. ]
  45803. ))
  45804. characterMakers.push(() => makeCharacter(
  45805. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45806. {
  45807. front: {
  45808. height: math.unit(280, "feet"),
  45809. weight: math.unit(550, "tons"),
  45810. name: "Front",
  45811. image: {
  45812. source: "./media/characters/king-mugi/front.svg",
  45813. extra: 1102/947,
  45814. bottom: 104/1206
  45815. }
  45816. },
  45817. },
  45818. [
  45819. {
  45820. name: "King Mugi",
  45821. height: math.unit(280, "feet"),
  45822. default: true
  45823. },
  45824. ]
  45825. ))
  45826. characterMakers.push(() => makeCharacter(
  45827. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45828. {
  45829. female: {
  45830. height: math.unit(300, "meters"),
  45831. name: "Front",
  45832. image: {
  45833. source: "./media/characters/nova-fox/female.svg",
  45834. extra: 664/632,
  45835. bottom: 51/715
  45836. },
  45837. form: "female",
  45838. default: true
  45839. },
  45840. male: {
  45841. height: math.unit(300, "meters"),
  45842. name: "Front",
  45843. image: {
  45844. source: "./media/characters/nova-fox/male.svg",
  45845. extra: 663/631,
  45846. bottom: 30/693
  45847. },
  45848. form: "male",
  45849. default: true
  45850. },
  45851. },
  45852. [
  45853. {
  45854. name: "Macro",
  45855. height: math.unit(300, "meters"),
  45856. default: true,
  45857. allForms: true
  45858. },
  45859. ],
  45860. {
  45861. "female": {
  45862. name: "Female",
  45863. default: true
  45864. },
  45865. "male": {
  45866. name: "Male",
  45867. },
  45868. }
  45869. ))
  45870. characterMakers.push(() => makeCharacter(
  45871. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45872. {
  45873. front: {
  45874. height: math.unit(6 + 3/12, "feet"),
  45875. weight: math.unit(170, "lb"),
  45876. name: "Front",
  45877. image: {
  45878. source: "./media/characters/sam-bat/front.svg",
  45879. extra: 1601/1411,
  45880. bottom: 125/1726
  45881. }
  45882. },
  45883. back: {
  45884. height: math.unit(6 + 3/12, "feet"),
  45885. weight: math.unit(170, "lb"),
  45886. name: "Back",
  45887. image: {
  45888. source: "./media/characters/sam-bat/back.svg",
  45889. extra: 1577/1405,
  45890. bottom: 58/1635
  45891. }
  45892. },
  45893. },
  45894. [
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(6 + 3/12, "feet"),
  45898. default: true
  45899. },
  45900. ]
  45901. ))
  45902. characterMakers.push(() => makeCharacter(
  45903. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45904. {
  45905. front: {
  45906. height: math.unit(59, "feet"),
  45907. weight: math.unit(40000, "lb"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/inari/front.svg",
  45911. extra: 1884/1350,
  45912. bottom: 95/1979
  45913. }
  45914. },
  45915. },
  45916. [
  45917. {
  45918. name: "Gigantamax",
  45919. height: math.unit(59, "feet"),
  45920. default: true
  45921. },
  45922. ]
  45923. ))
  45924. characterMakers.push(() => makeCharacter(
  45925. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45926. {
  45927. front: {
  45928. height: math.unit(5 + 8/12, "feet"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/elizabeth/front.svg",
  45932. extra: 1395/1298,
  45933. bottom: 54/1449
  45934. }
  45935. },
  45936. mouth: {
  45937. height: math.unit(1.97, "feet"),
  45938. name: "Mouth",
  45939. image: {
  45940. source: "./media/characters/elizabeth/mouth.svg"
  45941. }
  45942. },
  45943. foot: {
  45944. height: math.unit(1.17, "feet"),
  45945. name: "Foot",
  45946. image: {
  45947. source: "./media/characters/elizabeth/foot.svg"
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(5 + 8/12, "feet"),
  45955. default: true
  45956. },
  45957. {
  45958. name: "Minimacro",
  45959. height: math.unit(18, "feet")
  45960. },
  45961. {
  45962. name: "Macro",
  45963. height: math.unit(180, "feet")
  45964. },
  45965. ]
  45966. ))
  45967. characterMakers.push(() => makeCharacter(
  45968. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45969. {
  45970. front: {
  45971. height: math.unit(5 + 2/12, "feet"),
  45972. name: "Front",
  45973. image: {
  45974. source: "./media/characters/october-gossamer/front.svg",
  45975. extra: 505/454,
  45976. bottom: 7/512
  45977. }
  45978. },
  45979. back: {
  45980. height: math.unit(5 + 2/12, "feet"),
  45981. name: "Back",
  45982. image: {
  45983. source: "./media/characters/october-gossamer/back.svg",
  45984. extra: 501/454,
  45985. bottom: 11/512
  45986. }
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(5 + 2/12, "feet"),
  45993. default: true
  45994. },
  45995. ]
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45999. {
  46000. front: {
  46001. height: math.unit(5, "feet"),
  46002. name: "Front",
  46003. image: {
  46004. source: "./media/characters/epiglottis/front.svg",
  46005. extra: 923/849,
  46006. bottom: 17/940
  46007. }
  46008. },
  46009. },
  46010. [
  46011. {
  46012. name: "Original Size",
  46013. height: math.unit(10, "inches")
  46014. },
  46015. {
  46016. name: "Human Size",
  46017. height: math.unit(5, "feet"),
  46018. default: true
  46019. },
  46020. {
  46021. name: "Big",
  46022. height: math.unit(25, "feet")
  46023. },
  46024. {
  46025. name: "Bigger",
  46026. height: math.unit(50, "feet")
  46027. },
  46028. {
  46029. name: "oh lawd",
  46030. height: math.unit(75, "feet")
  46031. },
  46032. ]
  46033. ))
  46034. characterMakers.push(() => makeCharacter(
  46035. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46036. {
  46037. front: {
  46038. height: math.unit(2 + 4/12, "feet"),
  46039. weight: math.unit(60, "lb"),
  46040. name: "Front",
  46041. image: {
  46042. source: "./media/characters/lerm/front.svg",
  46043. extra: 796/790,
  46044. bottom: 79/875
  46045. }
  46046. },
  46047. },
  46048. [
  46049. {
  46050. name: "Normal",
  46051. height: math.unit(2 + 4/12, "feet"),
  46052. default: true
  46053. },
  46054. ]
  46055. ))
  46056. characterMakers.push(() => makeCharacter(
  46057. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46058. {
  46059. front: {
  46060. height: math.unit(5.5, "feet"),
  46061. weight: math.unit(130, "lb"),
  46062. name: "Front",
  46063. image: {
  46064. source: "./media/characters/xena-nebadon/front.svg",
  46065. extra: 1828/1730,
  46066. bottom: 79/1907
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Tiny Puppy",
  46073. height: math.unit(3, "inches")
  46074. },
  46075. {
  46076. name: "Normal",
  46077. height: math.unit(5.5, "feet"),
  46078. default: true
  46079. },
  46080. {
  46081. name: "Lotta Lady",
  46082. height: math.unit(12, "feet")
  46083. },
  46084. {
  46085. name: "Pretty Big",
  46086. height: math.unit(100, "feet")
  46087. },
  46088. {
  46089. name: "Big",
  46090. height: math.unit(500, "feet")
  46091. },
  46092. {
  46093. name: "Skyscraper Toys",
  46094. height: math.unit(2500, "feet")
  46095. },
  46096. {
  46097. name: "Plane Catcher",
  46098. height: math.unit(8, "miles")
  46099. },
  46100. {
  46101. name: "Planet Toys",
  46102. height: math.unit(15, "earths")
  46103. },
  46104. {
  46105. name: "Stardust",
  46106. height: math.unit(0.25, "galaxies")
  46107. },
  46108. {
  46109. name: "Snacks",
  46110. height: math.unit(70, "universes")
  46111. },
  46112. ]
  46113. ))
  46114. characterMakers.push(() => makeCharacter(
  46115. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46116. {
  46117. front: {
  46118. height: math.unit(1.6, "meters"),
  46119. weight: math.unit(60, "kg"),
  46120. name: "Front",
  46121. image: {
  46122. source: "./media/characters/bounty/front.svg",
  46123. extra: 1426/1308,
  46124. bottom: 15/1441
  46125. }
  46126. },
  46127. back: {
  46128. height: math.unit(1.6, "meters"),
  46129. weight: math.unit(60, "kg"),
  46130. name: "Back",
  46131. image: {
  46132. source: "./media/characters/bounty/back.svg",
  46133. extra: 1417/1307,
  46134. bottom: 8/1425
  46135. }
  46136. },
  46137. },
  46138. [
  46139. {
  46140. name: "Normal",
  46141. height: math.unit(1.6, "meters"),
  46142. default: true
  46143. },
  46144. {
  46145. name: "Macro",
  46146. height: math.unit(300, "meters")
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46152. {
  46153. front: {
  46154. height: math.unit(2 + 8/12, "feet"),
  46155. weight: math.unit(15, "lb"),
  46156. name: "Front",
  46157. image: {
  46158. source: "./media/characters/mochi/front.svg",
  46159. extra: 1022/852,
  46160. bottom: 435/1457
  46161. }
  46162. },
  46163. back: {
  46164. height: math.unit(2 + 8/12, "feet"),
  46165. weight: math.unit(15, "lb"),
  46166. name: "Back",
  46167. image: {
  46168. source: "./media/characters/mochi/back.svg",
  46169. extra: 1335/1119,
  46170. bottom: 39/1374
  46171. }
  46172. },
  46173. bird: {
  46174. height: math.unit(2 + 8/12, "feet"),
  46175. weight: math.unit(15, "lb"),
  46176. name: "Bird",
  46177. image: {
  46178. source: "./media/characters/mochi/bird.svg",
  46179. extra: 1251/1113,
  46180. bottom: 178/1429
  46181. }
  46182. },
  46183. kaiju: {
  46184. height: math.unit(154, "feet"),
  46185. weight: math.unit(1e7, "lb"),
  46186. name: "Kaiju",
  46187. image: {
  46188. source: "./media/characters/mochi/kaiju.svg",
  46189. extra: 460/324,
  46190. bottom: 40/500
  46191. }
  46192. },
  46193. head: {
  46194. height: math.unit(1.21, "feet"),
  46195. name: "Head",
  46196. image: {
  46197. source: "./media/characters/mochi/head.svg"
  46198. }
  46199. },
  46200. alternateTail: {
  46201. height: math.unit(2 + 8/12, "feet"),
  46202. weight: math.unit(45, "lb"),
  46203. name: "Alternate Tail",
  46204. image: {
  46205. source: "./media/characters/mochi/alternate-tail.svg",
  46206. extra: 139/76,
  46207. bottom: 45/184
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Micro",
  46214. height: math.unit(2, "inches")
  46215. },
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(2 + 8/12, "feet"),
  46219. default: true
  46220. },
  46221. {
  46222. name: "Macro",
  46223. height: math.unit(106, "feet")
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46229. {
  46230. front: {
  46231. height: math.unit(5.67, "feet"),
  46232. weight: math.unit(135, "lb"),
  46233. name: "Front",
  46234. image: {
  46235. source: "./media/characters/sarel/front.svg",
  46236. extra: 865/788,
  46237. bottom: 97/962
  46238. }
  46239. },
  46240. back: {
  46241. height: math.unit(5.67, "feet"),
  46242. weight: math.unit(135, "lb"),
  46243. name: "Back",
  46244. image: {
  46245. source: "./media/characters/sarel/back.svg",
  46246. extra: 857/777,
  46247. bottom: 32/889
  46248. }
  46249. },
  46250. chozoan: {
  46251. height: math.unit(5.67, "feet"),
  46252. weight: math.unit(135, "lb"),
  46253. name: "Chozoan",
  46254. image: {
  46255. source: "./media/characters/sarel/chozoan.svg",
  46256. extra: 865/788,
  46257. bottom: 97/962
  46258. }
  46259. },
  46260. current: {
  46261. height: math.unit(5.67, "feet"),
  46262. weight: math.unit(135, "lb"),
  46263. name: "Current",
  46264. image: {
  46265. source: "./media/characters/sarel/current.svg",
  46266. extra: 865/788,
  46267. bottom: 97/962
  46268. }
  46269. },
  46270. head: {
  46271. height: math.unit(1.77, "feet"),
  46272. name: "Head",
  46273. image: {
  46274. source: "./media/characters/sarel/head.svg"
  46275. }
  46276. },
  46277. claws: {
  46278. height: math.unit(1.8, "feet"),
  46279. name: "Claws",
  46280. image: {
  46281. source: "./media/characters/sarel/claws.svg"
  46282. }
  46283. },
  46284. clawsAlt: {
  46285. height: math.unit(1.8, "feet"),
  46286. name: "Claws-alt",
  46287. image: {
  46288. source: "./media/characters/sarel/claws-alt.svg"
  46289. }
  46290. },
  46291. },
  46292. [
  46293. {
  46294. name: "Normal",
  46295. height: math.unit(5.67, "feet"),
  46296. default: true
  46297. },
  46298. ]
  46299. ))
  46300. characterMakers.push(() => makeCharacter(
  46301. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46302. {
  46303. front: {
  46304. height: math.unit(5500, "feet"),
  46305. name: "Front",
  46306. image: {
  46307. source: "./media/characters/alyonia/front.svg",
  46308. extra: 1200/1135,
  46309. bottom: 29/1229
  46310. }
  46311. },
  46312. back: {
  46313. height: math.unit(5500, "feet"),
  46314. name: "Back",
  46315. image: {
  46316. source: "./media/characters/alyonia/back.svg",
  46317. extra: 1205/1138,
  46318. bottom: 10/1215
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Small",
  46325. height: math.unit(10, "feet")
  46326. },
  46327. {
  46328. name: "Macro",
  46329. height: math.unit(500, "feet")
  46330. },
  46331. {
  46332. name: "Mega Macro",
  46333. height: math.unit(5500, "feet"),
  46334. default: true
  46335. },
  46336. {
  46337. name: "Mega Macro+",
  46338. height: math.unit(500000, "feet")
  46339. },
  46340. {
  46341. name: "Giga Macro",
  46342. height: math.unit(3000, "miles")
  46343. },
  46344. {
  46345. name: "Tera Macro",
  46346. height: math.unit(2.8e6, "miles")
  46347. },
  46348. {
  46349. name: "Galactic",
  46350. height: math.unit(120000, "lightyears")
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46356. {
  46357. werewolf: {
  46358. height: math.unit(8, "feet"),
  46359. weight: math.unit(425, "lb"),
  46360. name: "Werewolf",
  46361. image: {
  46362. source: "./media/characters/autumn/werewolf.svg",
  46363. extra: 2154/2031,
  46364. bottom: 160/2314
  46365. }
  46366. },
  46367. human: {
  46368. height: math.unit(5 + 8/12, "feet"),
  46369. weight: math.unit(150, "lb"),
  46370. name: "Human",
  46371. image: {
  46372. source: "./media/characters/autumn/human.svg",
  46373. extra: 1200/1149,
  46374. bottom: 30/1230
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Normal",
  46381. height: math.unit(8, "feet"),
  46382. default: true
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(8 + 5/12, "feet"),
  46391. weight: math.unit(825, "lb"),
  46392. name: "Front",
  46393. image: {
  46394. source: "./media/characters/cobalt-charizard/front.svg",
  46395. extra: 1268/1155,
  46396. bottom: 122/1390
  46397. }
  46398. },
  46399. side: {
  46400. height: math.unit(8 + 5/12, "feet"),
  46401. weight: math.unit(825, "lb"),
  46402. name: "Side",
  46403. image: {
  46404. source: "./media/characters/cobalt-charizard/side.svg",
  46405. extra: 1348/1257,
  46406. bottom: 58/1406
  46407. }
  46408. },
  46409. gMax: {
  46410. height: math.unit(134 + 11/12, "feet"),
  46411. name: "G-Max",
  46412. image: {
  46413. source: "./media/characters/cobalt-charizard/g-max.svg",
  46414. extra: 1835/1541,
  46415. bottom: 151/1986
  46416. }
  46417. },
  46418. },
  46419. [
  46420. {
  46421. name: "Normal",
  46422. height: math.unit(8 + 5/12, "feet"),
  46423. default: true
  46424. },
  46425. ]
  46426. ))
  46427. characterMakers.push(() => makeCharacter(
  46428. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46429. {
  46430. front: {
  46431. height: math.unit(6 + 3/12, "feet"),
  46432. weight: math.unit(210, "lb"),
  46433. name: "Front",
  46434. image: {
  46435. source: "./media/characters/stella/front.svg",
  46436. extra: 3549/3335,
  46437. bottom: 51/3600
  46438. }
  46439. },
  46440. },
  46441. [
  46442. {
  46443. name: "Normal",
  46444. height: math.unit(6 + 3/12, "feet"),
  46445. default: true
  46446. },
  46447. ]
  46448. ))
  46449. characterMakers.push(() => makeCharacter(
  46450. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46451. {
  46452. front: {
  46453. height: math.unit(5, "feet"),
  46454. weight: math.unit(90, "lb"),
  46455. name: "Front",
  46456. image: {
  46457. source: "./media/characters/riley-bishop/front.svg",
  46458. extra: 1450/1428,
  46459. bottom: 152/1602
  46460. }
  46461. },
  46462. },
  46463. [
  46464. {
  46465. name: "Normal",
  46466. height: math.unit(5, "feet"),
  46467. default: true
  46468. },
  46469. ]
  46470. ))
  46471. characterMakers.push(() => makeCharacter(
  46472. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46473. {
  46474. side: {
  46475. height: math.unit(8 + 2/12, "feet"),
  46476. weight: math.unit(500, "kg"),
  46477. name: "Side",
  46478. image: {
  46479. source: "./media/characters/theo-arcanine/side.svg",
  46480. extra: 1342/1074,
  46481. bottom: 111/1453
  46482. }
  46483. },
  46484. },
  46485. [
  46486. {
  46487. name: "Normal",
  46488. height: math.unit(8 + 2/12, "feet"),
  46489. default: true
  46490. },
  46491. ]
  46492. ))
  46493. characterMakers.push(() => makeCharacter(
  46494. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46495. {
  46496. front: {
  46497. height: math.unit(4, "feet"),
  46498. name: "Front",
  46499. image: {
  46500. source: "./media/characters/kali/front.svg",
  46501. extra: 1074/867,
  46502. bottom: 34/1108
  46503. }
  46504. },
  46505. back: {
  46506. height: math.unit(4, "feet"),
  46507. name: "Back",
  46508. image: {
  46509. source: "./media/characters/kali/back.svg",
  46510. extra: 1068/863,
  46511. bottom: 26/1094
  46512. }
  46513. },
  46514. frontAlt: {
  46515. height: math.unit(4, "feet"),
  46516. name: "Front (Alt)",
  46517. image: {
  46518. source: "./media/characters/kali/front-alt.svg",
  46519. extra: 1921/1357,
  46520. bottom: 70/1991
  46521. }
  46522. },
  46523. },
  46524. [
  46525. {
  46526. name: "Normal",
  46527. height: math.unit(4, "feet"),
  46528. default: true
  46529. },
  46530. {
  46531. name: "Big'vali",
  46532. height: math.unit(11, "feet")
  46533. },
  46534. {
  46535. name: "Macro",
  46536. height: math.unit(32, "meters")
  46537. },
  46538. {
  46539. name: "Macro+",
  46540. height: math.unit(150, "meters")
  46541. },
  46542. {
  46543. name: "Megamacro",
  46544. height: math.unit(7500, "meters")
  46545. },
  46546. {
  46547. name: "Megamacro+",
  46548. height: math.unit(80, "kilometers")
  46549. },
  46550. ]
  46551. ))
  46552. characterMakers.push(() => makeCharacter(
  46553. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46554. {
  46555. side: {
  46556. height: math.unit(5 + 11/12, "feet"),
  46557. weight: math.unit(236, "lb"),
  46558. name: "Side",
  46559. image: {
  46560. source: "./media/characters/gapp/side.svg",
  46561. extra: 775/340,
  46562. bottom: 58/833
  46563. }
  46564. },
  46565. mouth: {
  46566. height: math.unit(2.98, "feet"),
  46567. name: "Mouth",
  46568. image: {
  46569. source: "./media/characters/gapp/mouth.svg"
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Normal",
  46576. height: math.unit(5 + 1/12, "feet"),
  46577. default: true
  46578. },
  46579. ]
  46580. ))
  46581. characterMakers.push(() => makeCharacter(
  46582. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46583. {
  46584. front: {
  46585. height: math.unit(6, "feet"),
  46586. name: "Front",
  46587. image: {
  46588. source: "./media/characters/persephone/front.svg",
  46589. extra: 1895/1717,
  46590. bottom: 96/1991
  46591. }
  46592. },
  46593. back: {
  46594. height: math.unit(6, "feet"),
  46595. name: "Back",
  46596. image: {
  46597. source: "./media/characters/persephone/back.svg",
  46598. extra: 1868/1679,
  46599. bottom: 26/1894
  46600. }
  46601. },
  46602. casual: {
  46603. height: math.unit(6, "feet"),
  46604. name: "Casual",
  46605. image: {
  46606. source: "./media/characters/persephone/casual.svg",
  46607. extra: 1713/1541,
  46608. bottom: 76/1789
  46609. }
  46610. },
  46611. gaming: {
  46612. height: math.unit(3.55, "feet"),
  46613. name: "Gaming",
  46614. image: {
  46615. source: "./media/characters/persephone/gaming.svg",
  46616. extra: 1242/1038,
  46617. bottom: 66/1308
  46618. }
  46619. },
  46620. head: {
  46621. height: math.unit(2.15, "feet"),
  46622. name: "😐",
  46623. image: {
  46624. source: "./media/characters/persephone/head.svg"
  46625. }
  46626. },
  46627. talking: {
  46628. height: math.unit(2.5, "feet"),
  46629. name: "💬",
  46630. image: {
  46631. source: "./media/characters/persephone/talking.svg"
  46632. }
  46633. },
  46634. hmm: {
  46635. height: math.unit(2.28, "feet"),
  46636. name: "🤨",
  46637. image: {
  46638. source: "./media/characters/persephone/hmm.svg"
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Human Size",
  46645. height: math.unit(6, "feet")
  46646. },
  46647. {
  46648. name: "Big Steppy",
  46649. height: math.unit(600, "meters"),
  46650. default: true
  46651. },
  46652. {
  46653. name: "Galaxy Brain",
  46654. height: math.unit(1, "zettameter")
  46655. },
  46656. ]
  46657. ))
  46658. characterMakers.push(() => makeCharacter(
  46659. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46660. {
  46661. front: {
  46662. height: math.unit(1.85, "meters"),
  46663. name: "Front",
  46664. image: {
  46665. source: "./media/characters/riley-foxthing/front.svg",
  46666. extra: 1495/1354,
  46667. bottom: 122/1617
  46668. }
  46669. },
  46670. frontAlt: {
  46671. height: math.unit(1.85, "meters"),
  46672. name: "Front (Alt)",
  46673. image: {
  46674. source: "./media/characters/riley-foxthing/front-alt.svg",
  46675. extra: 1572/1389,
  46676. bottom: 116/1688
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal Sized",
  46683. height: math.unit(1.85, "meters"),
  46684. default: true
  46685. },
  46686. {
  46687. name: "Quite Sizable",
  46688. height: math.unit(5, "meters")
  46689. },
  46690. {
  46691. name: "Rather Large",
  46692. height: math.unit(20, "meters")
  46693. },
  46694. {
  46695. name: "Macro",
  46696. height: math.unit(450, "meters")
  46697. },
  46698. {
  46699. name: "Giga",
  46700. height: math.unit(5, "km")
  46701. },
  46702. ]
  46703. ))
  46704. characterMakers.push(() => makeCharacter(
  46705. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46706. {
  46707. front: {
  46708. height: math.unit(6, "feet"),
  46709. weight: math.unit(200, "lb"),
  46710. name: "Front",
  46711. image: {
  46712. source: "./media/characters/blizzard/front.svg",
  46713. extra: 1136/990,
  46714. bottom: 136/1272
  46715. }
  46716. },
  46717. back: {
  46718. height: math.unit(6, "feet"),
  46719. weight: math.unit(200, "lb"),
  46720. name: "Back",
  46721. image: {
  46722. source: "./media/characters/blizzard/back.svg",
  46723. extra: 1175/1034,
  46724. bottom: 97/1272
  46725. }
  46726. },
  46727. sitting: {
  46728. height: math.unit(3.725, "feet"),
  46729. weight: math.unit(200, "lb"),
  46730. name: "Sitting",
  46731. image: {
  46732. source: "./media/characters/blizzard/sitting.svg",
  46733. extra: 581/485,
  46734. bottom: 90/671
  46735. }
  46736. },
  46737. frontWizard: {
  46738. height: math.unit(7.9, "feet"),
  46739. weight: math.unit(200, "lb"),
  46740. name: "Front (Wizard)",
  46741. image: {
  46742. source: "./media/characters/blizzard/front-wizard.svg"
  46743. }
  46744. },
  46745. backWizard: {
  46746. height: math.unit(7.9, "feet"),
  46747. weight: math.unit(200, "lb"),
  46748. name: "Back (Wizard)",
  46749. image: {
  46750. source: "./media/characters/blizzard/back-wizard.svg"
  46751. }
  46752. },
  46753. frontNsfw: {
  46754. height: math.unit(6, "feet"),
  46755. weight: math.unit(200, "lb"),
  46756. name: "Front (NSFW)",
  46757. image: {
  46758. source: "./media/characters/blizzard/front-nsfw.svg",
  46759. extra: 1136/990,
  46760. bottom: 136/1272
  46761. }
  46762. },
  46763. backNsfw: {
  46764. height: math.unit(6, "feet"),
  46765. weight: math.unit(200, "lb"),
  46766. name: "Back (NSFW)",
  46767. image: {
  46768. source: "./media/characters/blizzard/back-nsfw.svg",
  46769. extra: 1175/1034,
  46770. bottom: 97/1272
  46771. }
  46772. },
  46773. sittingNsfw: {
  46774. height: math.unit(3.725, "feet"),
  46775. weight: math.unit(200, "lb"),
  46776. name: "Sitting (NSFW)",
  46777. image: {
  46778. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46779. extra: 581/485,
  46780. bottom: 90/671
  46781. }
  46782. },
  46783. wizardFrontNsfw: {
  46784. height: math.unit(7.9, "feet"),
  46785. weight: math.unit(200, "lb"),
  46786. name: "Wizard (Front, NSFW)",
  46787. image: {
  46788. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46789. }
  46790. },
  46791. },
  46792. [
  46793. {
  46794. name: "Normal",
  46795. height: math.unit(6, "feet"),
  46796. default: true
  46797. },
  46798. ]
  46799. ))
  46800. characterMakers.push(() => makeCharacter(
  46801. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46802. {
  46803. front: {
  46804. height: math.unit(5 + 2/12, "feet"),
  46805. name: "Front",
  46806. image: {
  46807. source: "./media/characters/lumi/front.svg",
  46808. extra: 1328/1268,
  46809. bottom: 103/1431
  46810. }
  46811. },
  46812. back: {
  46813. height: math.unit(5 + 2/12, "feet"),
  46814. name: "Back",
  46815. image: {
  46816. source: "./media/characters/lumi/back.svg",
  46817. extra: 1381/1327,
  46818. bottom: 43/1424
  46819. }
  46820. },
  46821. },
  46822. [
  46823. {
  46824. name: "Normal",
  46825. height: math.unit(5 + 2/12, "feet"),
  46826. default: true
  46827. },
  46828. ]
  46829. ))
  46830. characterMakers.push(() => makeCharacter(
  46831. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46832. {
  46833. front: {
  46834. height: math.unit(5 + 9/12, "feet"),
  46835. name: "Front",
  46836. image: {
  46837. source: "./media/characters/aliya-cotton/front.svg",
  46838. extra: 577/564,
  46839. bottom: 29/606
  46840. }
  46841. },
  46842. },
  46843. [
  46844. {
  46845. name: "Normal",
  46846. height: math.unit(5 + 9/12, "feet"),
  46847. default: true
  46848. },
  46849. ]
  46850. ))
  46851. characterMakers.push(() => makeCharacter(
  46852. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46853. {
  46854. front: {
  46855. height: math.unit(2.7, "meters"),
  46856. weight: math.unit(25000, "lb"),
  46857. name: "Front",
  46858. image: {
  46859. source: "./media/characters/noah-luxray/front.svg",
  46860. extra: 1644/825,
  46861. bottom: 339/1983
  46862. }
  46863. },
  46864. side: {
  46865. height: math.unit(2.97, "meters"),
  46866. weight: math.unit(25000, "lb"),
  46867. name: "Side",
  46868. image: {
  46869. source: "./media/characters/noah-luxray/side.svg",
  46870. extra: 1319/650,
  46871. bottom: 163/1482
  46872. }
  46873. },
  46874. dick: {
  46875. height: math.unit(7.4, "feet"),
  46876. weight: math.unit(2500, "lb"),
  46877. name: "Dick",
  46878. image: {
  46879. source: "./media/characters/noah-luxray/dick.svg"
  46880. }
  46881. },
  46882. dickAlt: {
  46883. height: math.unit(10.83, "feet"),
  46884. weight: math.unit(2500, "lb"),
  46885. name: "Dick-alt",
  46886. image: {
  46887. source: "./media/characters/noah-luxray/dick-alt.svg"
  46888. }
  46889. },
  46890. },
  46891. [
  46892. {
  46893. name: "BIG",
  46894. height: math.unit(2.7, "meters"),
  46895. default: true
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46901. {
  46902. standing: {
  46903. height: math.unit(183, "cm"),
  46904. weight: math.unit(68, "kg"),
  46905. name: "Standing",
  46906. image: {
  46907. source: "./media/characters/arion/standing.svg",
  46908. extra: 1869/1807,
  46909. bottom: 93/1962
  46910. }
  46911. },
  46912. reclining: {
  46913. height: math.unit(70.5, "cm"),
  46914. weight: math.unit(68, "lb"),
  46915. name: "Reclining",
  46916. image: {
  46917. source: "./media/characters/arion/reclining.svg",
  46918. extra: 937/870,
  46919. bottom: 63/1000
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Colossus Size, Low",
  46926. height: math.unit(33, "meters"),
  46927. default: true
  46928. },
  46929. {
  46930. name: "Colossus Size, Mid",
  46931. height: math.unit(52, "meters")
  46932. },
  46933. {
  46934. name: "Colossus Size, High",
  46935. height: math.unit(60, "meters")
  46936. },
  46937. {
  46938. name: "Titan Size, Low",
  46939. height: math.unit(91, "meters"),
  46940. },
  46941. {
  46942. name: "Titan Size, Mid",
  46943. height: math.unit(122, "meters")
  46944. },
  46945. {
  46946. name: "Titan Size, High",
  46947. height: math.unit(162, "meters")
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(53, "meters"),
  46956. name: "Front",
  46957. image: {
  46958. source: "./media/characters/stellar-marbey/front.svg",
  46959. extra: 1913/1805,
  46960. bottom: 92/2005
  46961. }
  46962. },
  46963. back: {
  46964. height: math.unit(53, "meters"),
  46965. name: "Back",
  46966. image: {
  46967. source: "./media/characters/stellar-marbey/back.svg",
  46968. extra: 1960/1851,
  46969. bottom: 28/1988
  46970. }
  46971. },
  46972. mouth: {
  46973. height: math.unit(3.5, "meters"),
  46974. name: "Mouth",
  46975. image: {
  46976. source: "./media/characters/stellar-marbey/mouth.svg"
  46977. }
  46978. },
  46979. },
  46980. [
  46981. {
  46982. name: "Macro",
  46983. height: math.unit(53, "meters"),
  46984. default: true
  46985. },
  46986. ]
  46987. ))
  46988. characterMakers.push(() => makeCharacter(
  46989. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46990. {
  46991. front: {
  46992. height: math.unit(8 + 1/12, "feet"),
  46993. weight: math.unit(233, "lb"),
  46994. name: "Front",
  46995. image: {
  46996. source: "./media/characters/matsu/front.svg",
  46997. extra: 832/772,
  46998. bottom: 40/872
  46999. }
  47000. },
  47001. back: {
  47002. height: math.unit(8 + 1/12, "feet"),
  47003. weight: math.unit(233, "lb"),
  47004. name: "Back",
  47005. image: {
  47006. source: "./media/characters/matsu/back.svg",
  47007. extra: 839/780,
  47008. bottom: 47/886
  47009. }
  47010. },
  47011. },
  47012. [
  47013. {
  47014. name: "Normal",
  47015. height: math.unit(8 + 1/12, "feet"),
  47016. default: true
  47017. },
  47018. ]
  47019. ))
  47020. characterMakers.push(() => makeCharacter(
  47021. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47022. {
  47023. front: {
  47024. height: math.unit(4, "feet"),
  47025. weight: math.unit(148, "lb"),
  47026. name: "Front",
  47027. image: {
  47028. source: "./media/characters/thiz/front.svg",
  47029. extra: 1913/1748,
  47030. bottom: 62/1975
  47031. }
  47032. },
  47033. },
  47034. [
  47035. {
  47036. name: "Normal",
  47037. height: math.unit(4, "feet"),
  47038. default: true
  47039. },
  47040. ]
  47041. ))
  47042. characterMakers.push(() => makeCharacter(
  47043. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47044. {
  47045. front: {
  47046. height: math.unit(7 + 6/12, "feet"),
  47047. weight: math.unit(267, "lb"),
  47048. name: "Front",
  47049. image: {
  47050. source: "./media/characters/marcel/front.svg",
  47051. extra: 1221/1096,
  47052. bottom: 76/1297
  47053. }
  47054. },
  47055. },
  47056. [
  47057. {
  47058. name: "Normal",
  47059. height: math.unit(7 + 6/12, "feet"),
  47060. default: true
  47061. },
  47062. ]
  47063. ))
  47064. characterMakers.push(() => makeCharacter(
  47065. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47066. {
  47067. side: {
  47068. height: math.unit(42, "meters"),
  47069. name: "Side",
  47070. image: {
  47071. source: "./media/characters/flake/side.svg",
  47072. extra: 1525/1306,
  47073. bottom: 209/1734
  47074. }
  47075. },
  47076. },
  47077. [
  47078. {
  47079. name: "Normal",
  47080. height: math.unit(42, "meters"),
  47081. default: true
  47082. },
  47083. ]
  47084. ))
  47085. characterMakers.push(() => makeCharacter(
  47086. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47087. {
  47088. dressed: {
  47089. height: math.unit(6 + 4/12, "feet"),
  47090. weight: math.unit(520, "lb"),
  47091. name: "Dressed",
  47092. image: {
  47093. source: "./media/characters/someonne/dressed.svg",
  47094. extra: 1020/1010,
  47095. bottom: 178/1198
  47096. }
  47097. },
  47098. undressed: {
  47099. height: math.unit(6 + 4/12, "feet"),
  47100. weight: math.unit(520, "lb"),
  47101. name: "Undressed",
  47102. image: {
  47103. source: "./media/characters/someonne/undressed.svg",
  47104. extra: 1019/1014,
  47105. bottom: 169/1188
  47106. }
  47107. },
  47108. },
  47109. [
  47110. {
  47111. name: "Normal",
  47112. height: math.unit(6 + 4/12, "feet"),
  47113. default: true
  47114. },
  47115. ]
  47116. ))
  47117. characterMakers.push(() => makeCharacter(
  47118. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47119. {
  47120. front: {
  47121. height: math.unit(3, "feet"),
  47122. weight: math.unit(30, "lb"),
  47123. name: "Front",
  47124. image: {
  47125. source: "./media/characters/till/front.svg",
  47126. extra: 892/823,
  47127. bottom: 55/947
  47128. }
  47129. },
  47130. },
  47131. [
  47132. {
  47133. name: "Normal",
  47134. height: math.unit(3, "feet"),
  47135. default: true
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47141. {
  47142. front: {
  47143. height: math.unit(9 + 8/12, "feet"),
  47144. weight: math.unit(800, "lb"),
  47145. name: "Front",
  47146. image: {
  47147. source: "./media/characters/sydney-heki/front.svg",
  47148. extra: 1360/1300,
  47149. bottom: 22/1382
  47150. }
  47151. },
  47152. back: {
  47153. height: math.unit(9 + 8/12, "feet"),
  47154. weight: math.unit(800, "lb"),
  47155. name: "Back",
  47156. image: {
  47157. source: "./media/characters/sydney-heki/back.svg",
  47158. extra: 1356/1293,
  47159. bottom: 12/1368
  47160. }
  47161. },
  47162. frontDressed: {
  47163. height: math.unit(9 + 8/12, "feet"),
  47164. weight: math.unit(800, "lb"),
  47165. name: "Front-dressed",
  47166. image: {
  47167. source: "./media/characters/sydney-heki/front-dressed.svg",
  47168. extra: 1360/1300,
  47169. bottom: 22/1382
  47170. }
  47171. },
  47172. },
  47173. [
  47174. {
  47175. name: "Normal",
  47176. height: math.unit(9 + 8/12, "feet"),
  47177. default: true
  47178. },
  47179. {
  47180. name: "Macro",
  47181. height: math.unit(500, "feet")
  47182. },
  47183. {
  47184. name: "Megamacro",
  47185. height: math.unit(3.6, "miles")
  47186. },
  47187. ]
  47188. ))
  47189. characterMakers.push(() => makeCharacter(
  47190. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47191. {
  47192. front: {
  47193. height: math.unit(200, "cm"),
  47194. weight: math.unit(250, "lb"),
  47195. name: "Front",
  47196. image: {
  47197. source: "./media/characters/fowler-karlsson/front.svg",
  47198. extra: 897/845,
  47199. bottom: 123/1020
  47200. }
  47201. },
  47202. back: {
  47203. height: math.unit(200, "cm"),
  47204. weight: math.unit(250, "lb"),
  47205. name: "Back",
  47206. image: {
  47207. source: "./media/characters/fowler-karlsson/back.svg",
  47208. extra: 999/944,
  47209. bottom: 26/1025
  47210. }
  47211. },
  47212. dick: {
  47213. height: math.unit(1.92, "feet"),
  47214. weight: math.unit(150, "lb"),
  47215. name: "Dick",
  47216. image: {
  47217. source: "./media/characters/fowler-karlsson/dick.svg"
  47218. }
  47219. },
  47220. },
  47221. [
  47222. {
  47223. name: "Normal",
  47224. height: math.unit(200, "cm"),
  47225. default: true
  47226. },
  47227. {
  47228. name: "Smaller Macro",
  47229. height: math.unit(90, "m")
  47230. },
  47231. {
  47232. name: "Macro",
  47233. height: math.unit(150, "m")
  47234. },
  47235. {
  47236. name: "Bigger Macro",
  47237. height: math.unit(300, "m")
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47243. {
  47244. side: {
  47245. height: math.unit(8 + 2/12, "feet"),
  47246. weight: math.unit(1, "tonne"),
  47247. name: "Side",
  47248. image: {
  47249. source: "./media/characters/rylide/side.svg",
  47250. extra: 1318/1034,
  47251. bottom: 106/1424
  47252. }
  47253. },
  47254. sitting: {
  47255. height: math.unit(303, "cm"),
  47256. weight: math.unit(1, "tonne"),
  47257. name: "Sitting",
  47258. image: {
  47259. source: "./media/characters/rylide/sitting.svg",
  47260. extra: 1303/1103,
  47261. bottom: 36/1339
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Normal",
  47268. height: math.unit(8 + 2/12, "feet"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47275. {
  47276. front: {
  47277. height: math.unit(5 + 10/12, "feet"),
  47278. weight: math.unit(160, "lb"),
  47279. name: "Front",
  47280. image: {
  47281. source: "./media/characters/pudask/front.svg",
  47282. extra: 1616/1590,
  47283. bottom: 161/1777
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Ferret Height",
  47290. height: math.unit(2 + 5/12, "feet")
  47291. },
  47292. {
  47293. name: "Canon Height",
  47294. height: math.unit(5 + 10/12, "feet"),
  47295. default: true
  47296. },
  47297. ]
  47298. ))
  47299. characterMakers.push(() => makeCharacter(
  47300. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47301. {
  47302. front: {
  47303. height: math.unit(3 + 6/12, "feet"),
  47304. weight: math.unit(60, "lb"),
  47305. name: "Front",
  47306. image: {
  47307. source: "./media/characters/ramita/front.svg",
  47308. extra: 1402/1232,
  47309. bottom: 62/1464
  47310. }
  47311. },
  47312. dressed: {
  47313. height: math.unit(3 + 6/12, "feet"),
  47314. weight: math.unit(60, "lb"),
  47315. name: "Dressed",
  47316. image: {
  47317. source: "./media/characters/ramita/dressed.svg",
  47318. extra: 1534/1249,
  47319. bottom: 50/1584
  47320. }
  47321. },
  47322. },
  47323. [
  47324. {
  47325. name: "Normal",
  47326. height: math.unit(3 + 6/12, "feet"),
  47327. default: true
  47328. },
  47329. ]
  47330. ))
  47331. characterMakers.push(() => makeCharacter(
  47332. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47333. {
  47334. front: {
  47335. height: math.unit(8, "feet"),
  47336. name: "Front",
  47337. image: {
  47338. source: "./media/characters/ark/front.svg",
  47339. extra: 772/693,
  47340. bottom: 45/817
  47341. }
  47342. },
  47343. },
  47344. [
  47345. {
  47346. name: "Normal",
  47347. height: math.unit(8, "feet"),
  47348. default: true
  47349. },
  47350. ]
  47351. ))
  47352. characterMakers.push(() => makeCharacter(
  47353. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47354. {
  47355. front: {
  47356. height: math.unit(6, "feet"),
  47357. weight: math.unit(250, "lb"),
  47358. volume: math.unit(5/8, "gallons"),
  47359. name: "Front",
  47360. image: {
  47361. source: "./media/characters/ludwig-horn/front.svg",
  47362. extra: 1782/1635,
  47363. bottom: 96/1878
  47364. }
  47365. },
  47366. back: {
  47367. height: math.unit(6, "feet"),
  47368. weight: math.unit(250, "lb"),
  47369. volume: math.unit(5/8, "gallons"),
  47370. name: "Back",
  47371. image: {
  47372. source: "./media/characters/ludwig-horn/back.svg",
  47373. extra: 1874/1729,
  47374. bottom: 27/1901
  47375. }
  47376. },
  47377. dick: {
  47378. height: math.unit(1.05, "feet"),
  47379. weight: math.unit(15, "lb"),
  47380. volume: math.unit(5/8, "gallons"),
  47381. name: "Dick",
  47382. image: {
  47383. source: "./media/characters/ludwig-horn/dick.svg"
  47384. }
  47385. },
  47386. },
  47387. [
  47388. {
  47389. name: "Small",
  47390. height: math.unit(6, "feet")
  47391. },
  47392. {
  47393. name: "Typical",
  47394. height: math.unit(12, "feet"),
  47395. default: true
  47396. },
  47397. {
  47398. name: "Building",
  47399. height: math.unit(80, "feet")
  47400. },
  47401. {
  47402. name: "Town",
  47403. height: math.unit(800, "feet")
  47404. },
  47405. {
  47406. name: "Kingdom",
  47407. height: math.unit(80000, "feet")
  47408. },
  47409. {
  47410. name: "Planet",
  47411. height: math.unit(8000000, "feet")
  47412. },
  47413. {
  47414. name: "Universe",
  47415. height: math.unit(8000000000, "feet")
  47416. },
  47417. {
  47418. name: "Transcended",
  47419. height: math.unit(8e27, "feet")
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(5, "feet"),
  47428. weight: math.unit(50, "kg"),
  47429. name: "Front",
  47430. image: {
  47431. source: "./media/characters/biot-avery/front.svg",
  47432. extra: 1295/1232,
  47433. bottom: 86/1381
  47434. }
  47435. },
  47436. },
  47437. [
  47438. {
  47439. name: "Normal",
  47440. height: math.unit(5, "feet"),
  47441. default: true
  47442. },
  47443. ]
  47444. ))
  47445. characterMakers.push(() => makeCharacter(
  47446. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47447. {
  47448. front: {
  47449. height: math.unit(6, "feet"),
  47450. name: "Front",
  47451. image: {
  47452. source: "./media/characters/kitsune-kiro/front.svg",
  47453. extra: 1270/1158,
  47454. bottom: 42/1312
  47455. }
  47456. },
  47457. frontAlt: {
  47458. height: math.unit(6, "feet"),
  47459. name: "Front-alt",
  47460. image: {
  47461. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47462. extra: 1130/1081,
  47463. bottom: 36/1166
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Smol",
  47470. height: math.unit(3, "feet")
  47471. },
  47472. {
  47473. name: "Normal",
  47474. height: math.unit(6, "feet"),
  47475. default: true
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(6, "feet"),
  47484. weight: math.unit(125, "lb"),
  47485. name: "Front",
  47486. image: {
  47487. source: "./media/characters/jack-thatcher/front.svg",
  47488. extra: 1474/1370,
  47489. bottom: 26/1500
  47490. }
  47491. },
  47492. back: {
  47493. height: math.unit(6, "feet"),
  47494. weight: math.unit(125, "lb"),
  47495. name: "Back",
  47496. image: {
  47497. source: "./media/characters/jack-thatcher/back.svg",
  47498. extra: 1489/1384,
  47499. bottom: 18/1507
  47500. }
  47501. },
  47502. },
  47503. [
  47504. {
  47505. name: "Normal",
  47506. height: math.unit(6, "feet"),
  47507. default: true
  47508. },
  47509. {
  47510. name: "Macro",
  47511. height: math.unit(75, "feet")
  47512. },
  47513. {
  47514. name: "Macro-er",
  47515. height: math.unit(250, "feet")
  47516. },
  47517. ]
  47518. ))
  47519. characterMakers.push(() => makeCharacter(
  47520. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47521. {
  47522. front: {
  47523. height: math.unit(7, "feet"),
  47524. weight: math.unit(110, "kg"),
  47525. name: "Front",
  47526. image: {
  47527. source: "./media/characters/max-hyper/front.svg",
  47528. extra: 1969/1881,
  47529. bottom: 49/2018
  47530. }
  47531. },
  47532. },
  47533. [
  47534. {
  47535. name: "Normal",
  47536. height: math.unit(7, "feet"),
  47537. default: true
  47538. },
  47539. ]
  47540. ))
  47541. characterMakers.push(() => makeCharacter(
  47542. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47543. {
  47544. front: {
  47545. height: math.unit(5 + 5/12, "feet"),
  47546. weight: math.unit(160, "lb"),
  47547. name: "Front",
  47548. image: {
  47549. source: "./media/characters/spook/front.svg",
  47550. extra: 794/791,
  47551. bottom: 54/848
  47552. }
  47553. },
  47554. back: {
  47555. height: math.unit(5 + 5/12, "feet"),
  47556. weight: math.unit(160, "lb"),
  47557. name: "Back",
  47558. image: {
  47559. source: "./media/characters/spook/back.svg",
  47560. extra: 812/798,
  47561. bottom: 32/844
  47562. }
  47563. },
  47564. },
  47565. [
  47566. {
  47567. name: "Normal",
  47568. height: math.unit(5 + 5/12, "feet"),
  47569. default: true
  47570. },
  47571. ]
  47572. ))
  47573. characterMakers.push(() => makeCharacter(
  47574. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47575. {
  47576. front: {
  47577. height: math.unit(18, "feet"),
  47578. name: "Front",
  47579. image: {
  47580. source: "./media/characters/xeaduulix/front.svg",
  47581. extra: 1380/1166,
  47582. bottom: 110/1490
  47583. }
  47584. },
  47585. back: {
  47586. height: math.unit(18, "feet"),
  47587. name: "Back",
  47588. image: {
  47589. source: "./media/characters/xeaduulix/back.svg",
  47590. extra: 1592/1170,
  47591. bottom: 128/1720
  47592. }
  47593. },
  47594. frontNsfw: {
  47595. height: math.unit(18, "feet"),
  47596. name: "Front (NSFW)",
  47597. image: {
  47598. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47599. extra: 1380/1166,
  47600. bottom: 110/1490
  47601. }
  47602. },
  47603. backNsfw: {
  47604. height: math.unit(18, "feet"),
  47605. name: "Back (NSFW)",
  47606. image: {
  47607. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47608. extra: 1592/1170,
  47609. bottom: 128/1720
  47610. }
  47611. },
  47612. },
  47613. [
  47614. {
  47615. name: "Normal",
  47616. height: math.unit(18, "feet"),
  47617. default: true
  47618. },
  47619. ]
  47620. ))
  47621. characterMakers.push(() => makeCharacter(
  47622. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47623. {
  47624. spreadWings: {
  47625. height: math.unit(20, "feet"),
  47626. name: "Spread Wings",
  47627. image: {
  47628. source: "./media/characters/fledge/spread-wings.svg",
  47629. extra: 693/635,
  47630. bottom: 26/719
  47631. }
  47632. },
  47633. front: {
  47634. height: math.unit(20, "feet"),
  47635. name: "Front",
  47636. image: {
  47637. source: "./media/characters/fledge/front.svg",
  47638. extra: 684/637,
  47639. bottom: 18/702
  47640. }
  47641. },
  47642. frontAlt: {
  47643. height: math.unit(20, "feet"),
  47644. name: "Front (Alt)",
  47645. image: {
  47646. source: "./media/characters/fledge/front-alt.svg",
  47647. extra: 708/664,
  47648. bottom: 13/721
  47649. }
  47650. },
  47651. back: {
  47652. height: math.unit(20, "feet"),
  47653. name: "Back",
  47654. image: {
  47655. source: "./media/characters/fledge/back.svg",
  47656. extra: 718/634,
  47657. bottom: 22/740
  47658. }
  47659. },
  47660. head: {
  47661. height: math.unit(5.55, "feet"),
  47662. name: "Head",
  47663. image: {
  47664. source: "./media/characters/fledge/head.svg"
  47665. }
  47666. },
  47667. headAlt: {
  47668. height: math.unit(5.1, "feet"),
  47669. name: "Head (Alt)",
  47670. image: {
  47671. source: "./media/characters/fledge/head-alt.svg"
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Small",
  47678. height: math.unit(6 + 2/12, "feet")
  47679. },
  47680. {
  47681. name: "Big",
  47682. height: math.unit(20, "feet"),
  47683. default: true
  47684. },
  47685. {
  47686. name: "Giant",
  47687. height: math.unit(100, "feet")
  47688. },
  47689. {
  47690. name: "Macro",
  47691. height: math.unit(200, "feet")
  47692. },
  47693. ]
  47694. ))
  47695. characterMakers.push(() => makeCharacter(
  47696. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47697. {
  47698. front: {
  47699. height: math.unit(1, "meter"),
  47700. name: "Front",
  47701. image: {
  47702. source: "./media/characters/atlas-morenai/front.svg",
  47703. extra: 1275/1043,
  47704. bottom: 19/1294
  47705. }
  47706. },
  47707. back: {
  47708. height: math.unit(1, "meter"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/atlas-morenai/back.svg",
  47712. extra: 1141/1001,
  47713. bottom: 25/1166
  47714. }
  47715. },
  47716. },
  47717. [
  47718. {
  47719. name: "Normal",
  47720. height: math.unit(1, "meter"),
  47721. default: true
  47722. },
  47723. {
  47724. name: "Magic-Infused",
  47725. height: math.unit(5, "meters")
  47726. },
  47727. ]
  47728. ))
  47729. characterMakers.push(() => makeCharacter(
  47730. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47731. {
  47732. front: {
  47733. height: math.unit(5, "meters"),
  47734. name: "Front",
  47735. image: {
  47736. source: "./media/characters/cintia/front.svg",
  47737. extra: 1312/1228,
  47738. bottom: 38/1350
  47739. }
  47740. },
  47741. back: {
  47742. height: math.unit(5, "meters"),
  47743. name: "Back",
  47744. image: {
  47745. source: "./media/characters/cintia/back.svg",
  47746. extra: 1260/1166,
  47747. bottom: 98/1358
  47748. }
  47749. },
  47750. frontDick: {
  47751. height: math.unit(5, "meters"),
  47752. name: "Front (Dick)",
  47753. image: {
  47754. source: "./media/characters/cintia/front-dick.svg",
  47755. extra: 1312/1228,
  47756. bottom: 38/1350
  47757. }
  47758. },
  47759. backDick: {
  47760. height: math.unit(5, "meters"),
  47761. name: "Back (Dick)",
  47762. image: {
  47763. source: "./media/characters/cintia/back-dick.svg",
  47764. extra: 1260/1166,
  47765. bottom: 98/1358
  47766. }
  47767. },
  47768. bust: {
  47769. height: math.unit(1.97, "meters"),
  47770. name: "Bust",
  47771. image: {
  47772. source: "./media/characters/cintia/bust.svg",
  47773. extra: 617/565,
  47774. bottom: 0/617
  47775. }
  47776. },
  47777. },
  47778. [
  47779. {
  47780. name: "Normal",
  47781. height: math.unit(5, "meters"),
  47782. default: true
  47783. },
  47784. ]
  47785. ))
  47786. characterMakers.push(() => makeCharacter(
  47787. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47788. {
  47789. side: {
  47790. height: math.unit(100, "feet"),
  47791. name: "Side",
  47792. image: {
  47793. source: "./media/characters/denora/side.svg",
  47794. extra: 875/803,
  47795. bottom: 9/884
  47796. }
  47797. },
  47798. },
  47799. [
  47800. {
  47801. name: "Standard",
  47802. height: math.unit(100, "feet"),
  47803. default: true
  47804. },
  47805. {
  47806. name: "Grand",
  47807. height: math.unit(1000, "feet")
  47808. },
  47809. {
  47810. name: "Conquering",
  47811. height: math.unit(10000, "feet")
  47812. },
  47813. ]
  47814. ))
  47815. characterMakers.push(() => makeCharacter(
  47816. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47817. {
  47818. dressed: {
  47819. height: math.unit(8 + 5/12, "feet"),
  47820. weight: math.unit(700, "lb"),
  47821. name: "Dressed",
  47822. image: {
  47823. source: "./media/characters/kiva/dressed.svg",
  47824. extra: 1102/1055,
  47825. bottom: 60/1162
  47826. }
  47827. },
  47828. nude: {
  47829. height: math.unit(8 + 5/12, "feet"),
  47830. weight: math.unit(700, "lb"),
  47831. name: "Nude",
  47832. image: {
  47833. source: "./media/characters/kiva/nude.svg",
  47834. extra: 1102/1055,
  47835. bottom: 60/1162
  47836. }
  47837. },
  47838. },
  47839. [
  47840. {
  47841. name: "Base Height",
  47842. height: math.unit(8 + 5/12, "feet"),
  47843. default: true
  47844. },
  47845. {
  47846. name: "Macro",
  47847. height: math.unit(100, "feet")
  47848. },
  47849. {
  47850. name: "Max",
  47851. height: math.unit(3280, "feet")
  47852. },
  47853. ]
  47854. ))
  47855. characterMakers.push(() => makeCharacter(
  47856. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47857. {
  47858. front: {
  47859. height: math.unit(6 + 8/12, "feet"),
  47860. weight: math.unit(250, "lb"),
  47861. name: "Front",
  47862. image: {
  47863. source: "./media/characters/ztragon/front.svg",
  47864. extra: 1825/1684,
  47865. bottom: 98/1923
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(6 + 8/12, "feet"),
  47873. default: true
  47874. },
  47875. {
  47876. name: "Macro",
  47877. height: math.unit(80, "feet")
  47878. },
  47879. ]
  47880. ))
  47881. characterMakers.push(() => makeCharacter(
  47882. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47883. {
  47884. front: {
  47885. height: math.unit(10.4, "feet"),
  47886. weight: math.unit(2, "tons"),
  47887. name: "Front",
  47888. image: {
  47889. source: "./media/characters/yesenia/front.svg",
  47890. extra: 1479/1474,
  47891. bottom: 233/1712
  47892. }
  47893. },
  47894. },
  47895. [
  47896. {
  47897. name: "Normal",
  47898. height: math.unit(10.4, "feet"),
  47899. default: true
  47900. },
  47901. ]
  47902. ))
  47903. characterMakers.push(() => makeCharacter(
  47904. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47905. {
  47906. normal: {
  47907. height: math.unit(6 + 1/12, "feet"),
  47908. weight: math.unit(180, "lb"),
  47909. name: "Normal",
  47910. image: {
  47911. source: "./media/characters/leanne-lycheborne/normal.svg",
  47912. extra: 1748/1660,
  47913. bottom: 98/1846
  47914. }
  47915. },
  47916. were: {
  47917. height: math.unit(12, "feet"),
  47918. weight: math.unit(1600, "lb"),
  47919. name: "Were",
  47920. image: {
  47921. source: "./media/characters/leanne-lycheborne/were.svg",
  47922. extra: 1485/1432,
  47923. bottom: 66/1551
  47924. }
  47925. },
  47926. },
  47927. [
  47928. {
  47929. name: "Normal",
  47930. height: math.unit(6 + 1/12, "feet"),
  47931. default: true
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47937. {
  47938. side: {
  47939. height: math.unit(13, "feet"),
  47940. name: "Side",
  47941. image: {
  47942. source: "./media/characters/kira-tyler/side.svg",
  47943. extra: 693/393,
  47944. bottom: 58/751
  47945. }
  47946. },
  47947. },
  47948. [
  47949. {
  47950. name: "Normal",
  47951. height: math.unit(13, "feet"),
  47952. default: true
  47953. },
  47954. ]
  47955. ))
  47956. characterMakers.push(() => makeCharacter(
  47957. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47958. {
  47959. front: {
  47960. height: math.unit(10.3, "feet"),
  47961. weight: math.unit(150, "lb"),
  47962. name: "Front",
  47963. image: {
  47964. source: "./media/characters/blaze/front.svg",
  47965. extra: 1378/1286,
  47966. bottom: 172/1550
  47967. }
  47968. },
  47969. },
  47970. [
  47971. {
  47972. name: "Normal",
  47973. height: math.unit(10.3, "feet"),
  47974. default: true
  47975. },
  47976. ]
  47977. ))
  47978. characterMakers.push(() => makeCharacter(
  47979. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47980. {
  47981. side: {
  47982. height: math.unit(2, "meters"),
  47983. weight: math.unit(400, "kg"),
  47984. name: "Side",
  47985. image: {
  47986. source: "./media/characters/anu/side.svg",
  47987. extra: 506/394,
  47988. bottom: 18/524
  47989. }
  47990. },
  47991. },
  47992. [
  47993. {
  47994. name: "Humanoid",
  47995. height: math.unit(2, "meters")
  47996. },
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(5, "meters"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48006. {
  48007. front: {
  48008. height: math.unit(5 + 5/12, "feet"),
  48009. weight: math.unit(170, "lb"),
  48010. name: "Front",
  48011. image: {
  48012. source: "./media/characters/synx-the-lynx/front.svg",
  48013. extra: 1893/1745,
  48014. bottom: 17/1910
  48015. }
  48016. },
  48017. side: {
  48018. height: math.unit(5 + 5/12, "feet"),
  48019. weight: math.unit(170, "lb"),
  48020. name: "Side",
  48021. image: {
  48022. source: "./media/characters/synx-the-lynx/side.svg",
  48023. extra: 1884/1740,
  48024. bottom: 39/1923
  48025. }
  48026. },
  48027. back: {
  48028. height: math.unit(5 + 5/12, "feet"),
  48029. weight: math.unit(170, "lb"),
  48030. name: "Back",
  48031. image: {
  48032. source: "./media/characters/synx-the-lynx/back.svg",
  48033. extra: 1903/1755,
  48034. bottom: 14/1917
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(5 + 5/12, "feet"),
  48042. default: true
  48043. },
  48044. ]
  48045. ))
  48046. characterMakers.push(() => makeCharacter(
  48047. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48048. {
  48049. back: {
  48050. height: math.unit(15, "feet"),
  48051. name: "Back",
  48052. image: {
  48053. source: "./media/characters/nadezda-fex/back.svg",
  48054. extra: 1695/1481,
  48055. bottom: 25/1720
  48056. }
  48057. },
  48058. },
  48059. [
  48060. {
  48061. name: "Normal",
  48062. height: math.unit(15, "feet"),
  48063. default: true
  48064. },
  48065. {
  48066. name: "Macro",
  48067. height: math.unit(2.5, "miles")
  48068. },
  48069. {
  48070. name: "Goddess",
  48071. height: math.unit(2, "multiverses")
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48077. {
  48078. front: {
  48079. height: math.unit(216, "cm"),
  48080. name: "Front",
  48081. image: {
  48082. source: "./media/characters/lev/front.svg",
  48083. extra: 1728/1670,
  48084. bottom: 82/1810
  48085. }
  48086. },
  48087. back: {
  48088. height: math.unit(216, "cm"),
  48089. name: "Back",
  48090. image: {
  48091. source: "./media/characters/lev/back.svg",
  48092. extra: 1738/1675,
  48093. bottom: 24/1762
  48094. }
  48095. },
  48096. dressed: {
  48097. height: math.unit(216, "cm"),
  48098. name: "Dressed",
  48099. image: {
  48100. source: "./media/characters/lev/dressed.svg",
  48101. extra: 1397/1351,
  48102. bottom: 73/1470
  48103. }
  48104. },
  48105. head: {
  48106. height: math.unit(0.51, "meter"),
  48107. name: "Head",
  48108. image: {
  48109. source: "./media/characters/lev/head.svg"
  48110. }
  48111. },
  48112. },
  48113. [
  48114. {
  48115. name: "Normal",
  48116. height: math.unit(216, "cm"),
  48117. default: true
  48118. },
  48119. {
  48120. name: "Relatively Macro",
  48121. height: math.unit(80, "meters")
  48122. },
  48123. {
  48124. name: "Megamacro",
  48125. height: math.unit(21600, "meters")
  48126. },
  48127. {
  48128. name: "Megamacro+",
  48129. height: math.unit(64800, "meters")
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48135. {
  48136. front: {
  48137. height: math.unit(2, "meters"),
  48138. weight: math.unit(80, "kg"),
  48139. name: "Front",
  48140. image: {
  48141. source: "./media/characters/moka/front.svg",
  48142. extra: 1337/1255,
  48143. bottom: 58/1395
  48144. }
  48145. },
  48146. },
  48147. [
  48148. {
  48149. name: "Micro",
  48150. height: math.unit(15, "cm")
  48151. },
  48152. {
  48153. name: "Normal",
  48154. height: math.unit(2, "meters"),
  48155. default: true
  48156. },
  48157. {
  48158. name: "Macro",
  48159. height: math.unit(20, "meters"),
  48160. },
  48161. ]
  48162. ))
  48163. characterMakers.push(() => makeCharacter(
  48164. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48165. {
  48166. front: {
  48167. height: math.unit(9, "feet"),
  48168. weight: math.unit(240, "lb"),
  48169. name: "Front",
  48170. image: {
  48171. source: "./media/characters/kuzco/front.svg",
  48172. extra: 1593/1487,
  48173. bottom: 32/1625
  48174. }
  48175. },
  48176. side: {
  48177. height: math.unit(9, "feet"),
  48178. weight: math.unit(240, "lb"),
  48179. name: "Side",
  48180. image: {
  48181. source: "./media/characters/kuzco/side.svg",
  48182. extra: 1575/1485,
  48183. bottom: 30/1605
  48184. }
  48185. },
  48186. back: {
  48187. height: math.unit(9, "feet"),
  48188. weight: math.unit(240, "lb"),
  48189. name: "Back",
  48190. image: {
  48191. source: "./media/characters/kuzco/back.svg",
  48192. extra: 1603/1514,
  48193. bottom: 14/1617
  48194. }
  48195. },
  48196. },
  48197. [
  48198. {
  48199. name: "Normal",
  48200. height: math.unit(9, "feet"),
  48201. default: true
  48202. },
  48203. ]
  48204. ))
  48205. characterMakers.push(() => makeCharacter(
  48206. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48207. {
  48208. side: {
  48209. height: math.unit(2, "meters"),
  48210. weight: math.unit(300, "kg"),
  48211. name: "Side",
  48212. image: {
  48213. source: "./media/characters/ceruleus/side.svg",
  48214. extra: 1068/974,
  48215. bottom: 126/1194
  48216. }
  48217. },
  48218. maw: {
  48219. height: math.unit(0.8125, "meter"),
  48220. name: "Maw",
  48221. image: {
  48222. source: "./media/characters/ceruleus/maw.svg"
  48223. }
  48224. },
  48225. },
  48226. [
  48227. {
  48228. name: "Normal",
  48229. height: math.unit(16, "meters"),
  48230. default: true
  48231. },
  48232. ]
  48233. ))
  48234. characterMakers.push(() => makeCharacter(
  48235. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48236. {
  48237. front: {
  48238. height: math.unit(9, "feet"),
  48239. weight: math.unit(500, "kg"),
  48240. name: "Front",
  48241. image: {
  48242. source: "./media/characters/acouya/front.svg",
  48243. extra: 1660/1473,
  48244. bottom: 28/1688
  48245. }
  48246. },
  48247. },
  48248. [
  48249. {
  48250. name: "Normal",
  48251. height: math.unit(9, "feet"),
  48252. default: true
  48253. },
  48254. ]
  48255. ))
  48256. characterMakers.push(() => makeCharacter(
  48257. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48258. {
  48259. front: {
  48260. height: math.unit(5 + 6/12, "feet"),
  48261. weight: math.unit(195, "lb"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/vant/front.svg",
  48265. extra: 1396/1320,
  48266. bottom: 20/1416
  48267. }
  48268. },
  48269. back: {
  48270. height: math.unit(5 + 6/12, "feet"),
  48271. weight: math.unit(195, "lb"),
  48272. name: "Back",
  48273. image: {
  48274. source: "./media/characters/vant/back.svg",
  48275. extra: 1396/1320,
  48276. bottom: 20/1416
  48277. }
  48278. },
  48279. maw: {
  48280. height: math.unit(0.75, "feet"),
  48281. name: "Maw",
  48282. image: {
  48283. source: "./media/characters/vant/maw.svg"
  48284. }
  48285. },
  48286. paw: {
  48287. height: math.unit(1.07, "feet"),
  48288. name: "Paw",
  48289. image: {
  48290. source: "./media/characters/vant/paw.svg"
  48291. }
  48292. },
  48293. },
  48294. [
  48295. {
  48296. name: "Micro",
  48297. height: math.unit(0.25, "inches")
  48298. },
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(5 + 6/12, "feet"),
  48302. default: true
  48303. },
  48304. {
  48305. name: "Macro",
  48306. height: math.unit(75, "feet")
  48307. },
  48308. ]
  48309. ))
  48310. characterMakers.push(() => makeCharacter(
  48311. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48312. {
  48313. front: {
  48314. height: math.unit(30, "meters"),
  48315. weight: math.unit(363, "tons"),
  48316. name: "Front",
  48317. image: {
  48318. source: "./media/characters/ahra/front.svg",
  48319. extra: 1914/1814,
  48320. bottom: 46/1960
  48321. }
  48322. },
  48323. },
  48324. [
  48325. {
  48326. name: "Macro",
  48327. height: math.unit(30, "meters"),
  48328. default: true
  48329. },
  48330. ]
  48331. ))
  48332. characterMakers.push(() => makeCharacter(
  48333. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48334. {
  48335. undressed: {
  48336. height: math.unit(2, "m"),
  48337. weight: math.unit(250, "kg"),
  48338. name: "Undressed",
  48339. image: {
  48340. source: "./media/characters/coriander/undressed.svg",
  48341. extra: 1757/1606,
  48342. bottom: 107/1864
  48343. }
  48344. },
  48345. dressed: {
  48346. height: math.unit(2, "m"),
  48347. weight: math.unit(250, "kg"),
  48348. name: "Dressed",
  48349. image: {
  48350. source: "./media/characters/coriander/dressed.svg",
  48351. extra: 1757/1606,
  48352. bottom: 107/1864
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Normal",
  48359. height: math.unit(4, "meters"),
  48360. default: true
  48361. },
  48362. {
  48363. name: "XL",
  48364. height: math.unit(6, "meters")
  48365. },
  48366. {
  48367. name: "XXL",
  48368. height: math.unit(8, "meters")
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48374. {
  48375. front: {
  48376. height: math.unit(6, "feet"),
  48377. name: "Front",
  48378. image: {
  48379. source: "./media/characters/syrinx/front.svg",
  48380. extra: 1557/1259,
  48381. bottom: 171/1728
  48382. }
  48383. },
  48384. },
  48385. [
  48386. {
  48387. name: "Normal",
  48388. height: math.unit(6 + 3/12, "feet"),
  48389. default: true
  48390. },
  48391. ]
  48392. ))
  48393. characterMakers.push(() => makeCharacter(
  48394. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48395. {
  48396. front: {
  48397. height: math.unit(11 + 6/12, "feet"),
  48398. weight: math.unit(1.5, "tons"),
  48399. name: "Front",
  48400. image: {
  48401. source: "./media/characters/bor/front.svg",
  48402. extra: 1189/1109,
  48403. bottom: 170/1359
  48404. }
  48405. },
  48406. },
  48407. [
  48408. {
  48409. name: "Normal",
  48410. height: math.unit(11 + 6/12, "feet"),
  48411. default: true
  48412. },
  48413. {
  48414. name: "Macro",
  48415. height: math.unit(32 + 9/12, "feet")
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48421. {
  48422. anthro: {
  48423. height: math.unit(9, "feet"),
  48424. weight: math.unit(2076, "lb"),
  48425. name: "Anthro",
  48426. image: {
  48427. source: "./media/characters/abacus/anthro.svg",
  48428. extra: 1540/1494,
  48429. bottom: 233/1773
  48430. }
  48431. },
  48432. pigeon: {
  48433. height: math.unit(1, "feet"),
  48434. name: "Pigeon",
  48435. image: {
  48436. source: "./media/characters/abacus/pigeon.svg",
  48437. extra: 528/525,
  48438. bottom: 46/574
  48439. }
  48440. },
  48441. },
  48442. [
  48443. {
  48444. name: "Normal",
  48445. height: math.unit(9, "feet"),
  48446. default: true
  48447. },
  48448. ]
  48449. ))
  48450. characterMakers.push(() => makeCharacter(
  48451. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48452. {
  48453. side: {
  48454. height: math.unit(6, "feet"),
  48455. name: "Side",
  48456. image: {
  48457. source: "./media/characters/delkhan/side.svg",
  48458. extra: 1884/1786,
  48459. bottom: 308/2192
  48460. }
  48461. },
  48462. head: {
  48463. height: math.unit(3.38, "feet"),
  48464. name: "Head",
  48465. image: {
  48466. source: "./media/characters/delkhan/head.svg"
  48467. }
  48468. },
  48469. },
  48470. [
  48471. {
  48472. name: "Normal",
  48473. height: math.unit(72, "feet"),
  48474. default: true
  48475. },
  48476. {
  48477. name: "Giant",
  48478. height: math.unit(172, "feet")
  48479. },
  48480. ]
  48481. ))
  48482. characterMakers.push(() => makeCharacter(
  48483. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48484. {
  48485. standing: {
  48486. height: math.unit(6, "feet"),
  48487. name: "Standing",
  48488. image: {
  48489. source: "./media/characters/euchidat/standing.svg",
  48490. extra: 1612/1553,
  48491. bottom: 116/1728
  48492. }
  48493. },
  48494. leaning: {
  48495. height: math.unit(6, "feet"),
  48496. name: "Leaning",
  48497. image: {
  48498. source: "./media/characters/euchidat/leaning.svg",
  48499. extra: 1719/1674,
  48500. bottom: 27/1746
  48501. }
  48502. },
  48503. },
  48504. [
  48505. {
  48506. name: "Normal",
  48507. height: math.unit(175, "feet"),
  48508. default: true
  48509. },
  48510. {
  48511. name: "Megamacro",
  48512. height: math.unit(190, "miles")
  48513. },
  48514. {
  48515. name: "Gigamacro",
  48516. height: math.unit(190000, "miles")
  48517. },
  48518. ]
  48519. ))
  48520. characterMakers.push(() => makeCharacter(
  48521. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48522. {
  48523. front: {
  48524. height: math.unit(6, "feet"),
  48525. weight: math.unit(150, "lb"),
  48526. name: "Front",
  48527. image: {
  48528. source: "./media/characters/rebecca-stack/front.svg",
  48529. extra: 1256/1201,
  48530. bottom: 18/1274
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Normal",
  48537. height: math.unit(5 + 8/12, "feet"),
  48538. default: true
  48539. },
  48540. {
  48541. name: "Demolitionist",
  48542. height: math.unit(200, "feet")
  48543. },
  48544. {
  48545. name: "Out of Control",
  48546. height: math.unit(2, "miles")
  48547. },
  48548. {
  48549. name: "Giga",
  48550. height: math.unit(7200, "miles")
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48556. {
  48557. front: {
  48558. height: math.unit(6, "feet"),
  48559. weight: math.unit(150, "lb"),
  48560. name: "Front",
  48561. image: {
  48562. source: "./media/characters/jenny-cartwright/front.svg",
  48563. extra: 1384/1376,
  48564. bottom: 58/1442
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(6 + 7/12, "feet"),
  48572. default: true
  48573. },
  48574. {
  48575. name: "Librarian",
  48576. height: math.unit(55, "feet")
  48577. },
  48578. {
  48579. name: "Sightseer",
  48580. height: math.unit(50, "miles")
  48581. },
  48582. {
  48583. name: "Giga",
  48584. height: math.unit(30000, "miles")
  48585. },
  48586. ]
  48587. ))
  48588. characterMakers.push(() => makeCharacter(
  48589. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48590. {
  48591. nude: {
  48592. height: math.unit(8, "feet"),
  48593. weight: math.unit(225, "lb"),
  48594. name: "Nude",
  48595. image: {
  48596. source: "./media/characters/marvy/nude.svg",
  48597. extra: 1900/1683,
  48598. bottom: 89/1989
  48599. }
  48600. },
  48601. dressed: {
  48602. height: math.unit(8, "feet"),
  48603. weight: math.unit(225, "lb"),
  48604. name: "Dressed",
  48605. image: {
  48606. source: "./media/characters/marvy/dressed.svg",
  48607. extra: 1900/1683,
  48608. bottom: 89/1989
  48609. }
  48610. },
  48611. head: {
  48612. height: math.unit(2.85, "feet"),
  48613. name: "Head",
  48614. image: {
  48615. source: "./media/characters/marvy/head.svg"
  48616. }
  48617. },
  48618. },
  48619. [
  48620. {
  48621. name: "Normal",
  48622. height: math.unit(8, "feet"),
  48623. default: true
  48624. },
  48625. ]
  48626. ))
  48627. characterMakers.push(() => makeCharacter(
  48628. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48629. {
  48630. front: {
  48631. height: math.unit(8, "feet"),
  48632. weight: math.unit(250, "lb"),
  48633. name: "Front",
  48634. image: {
  48635. source: "./media/characters/leah/front.svg",
  48636. extra: 1257/1149,
  48637. bottom: 109/1366
  48638. }
  48639. },
  48640. },
  48641. [
  48642. {
  48643. name: "Normal",
  48644. height: math.unit(8, "feet"),
  48645. default: true
  48646. },
  48647. {
  48648. name: "Minimacro",
  48649. height: math.unit(40, "feet")
  48650. },
  48651. {
  48652. name: "Macro",
  48653. height: math.unit(124, "feet")
  48654. },
  48655. {
  48656. name: "Megamacro",
  48657. height: math.unit(850, "feet")
  48658. },
  48659. ]
  48660. ))
  48661. characterMakers.push(() => makeCharacter(
  48662. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48663. {
  48664. side: {
  48665. height: math.unit(13 + 6/12, "feet"),
  48666. weight: math.unit(3200, "lb"),
  48667. name: "Side",
  48668. image: {
  48669. source: "./media/characters/alvir/side.svg",
  48670. extra: 896/589,
  48671. bottom: 26/922
  48672. }
  48673. },
  48674. },
  48675. [
  48676. {
  48677. name: "Normal",
  48678. height: math.unit(13 + 6/12, "feet"),
  48679. default: true
  48680. },
  48681. ]
  48682. ))
  48683. characterMakers.push(() => makeCharacter(
  48684. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48685. {
  48686. front: {
  48687. height: math.unit(5 + 4/12, "feet"),
  48688. weight: math.unit(236, "lb"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/zaina-khalil/front.svg",
  48692. extra: 1533/1485,
  48693. bottom: 94/1627
  48694. }
  48695. },
  48696. side: {
  48697. height: math.unit(5 + 4/12, "feet"),
  48698. weight: math.unit(236, "lb"),
  48699. name: "Side",
  48700. image: {
  48701. source: "./media/characters/zaina-khalil/side.svg",
  48702. extra: 1537/1498,
  48703. bottom: 66/1603
  48704. }
  48705. },
  48706. back: {
  48707. height: math.unit(5 + 4/12, "feet"),
  48708. weight: math.unit(236, "lb"),
  48709. name: "Back",
  48710. image: {
  48711. source: "./media/characters/zaina-khalil/back.svg",
  48712. extra: 1546/1494,
  48713. bottom: 89/1635
  48714. }
  48715. },
  48716. },
  48717. [
  48718. {
  48719. name: "Normal",
  48720. height: math.unit(5 + 4/12, "feet"),
  48721. default: true
  48722. },
  48723. ]
  48724. ))
  48725. characterMakers.push(() => makeCharacter(
  48726. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48727. {
  48728. side: {
  48729. height: math.unit(12, "feet"),
  48730. weight: math.unit(4000, "lb"),
  48731. name: "Side",
  48732. image: {
  48733. source: "./media/characters/terry/side.svg",
  48734. extra: 1518/1439,
  48735. bottom: 149/1667
  48736. }
  48737. },
  48738. },
  48739. [
  48740. {
  48741. name: "Normal",
  48742. height: math.unit(12, "feet"),
  48743. default: true
  48744. },
  48745. ]
  48746. ))
  48747. characterMakers.push(() => makeCharacter(
  48748. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48749. {
  48750. front: {
  48751. height: math.unit(12, "feet"),
  48752. weight: math.unit(1500, "lb"),
  48753. name: "Front",
  48754. image: {
  48755. source: "./media/characters/kahea/front.svg",
  48756. extra: 1722/1617,
  48757. bottom: 179/1901
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(12, "feet"),
  48765. default: true
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48771. {
  48772. demonFront: {
  48773. height: math.unit(36, "feet"),
  48774. name: "Front",
  48775. image: {
  48776. source: "./media/characters/alex-xuria/demon-front.svg",
  48777. extra: 1705/1673,
  48778. bottom: 198/1903
  48779. },
  48780. form: "demon",
  48781. default: true
  48782. },
  48783. demonBack: {
  48784. height: math.unit(36, "feet"),
  48785. name: "Back",
  48786. image: {
  48787. source: "./media/characters/alex-xuria/demon-back.svg",
  48788. extra: 1725/1693,
  48789. bottom: 70/1795
  48790. },
  48791. form: "demon"
  48792. },
  48793. demonHead: {
  48794. height: math.unit(2.14, "meters"),
  48795. name: "Head",
  48796. image: {
  48797. source: "./media/characters/alex-xuria/demon-head.svg"
  48798. },
  48799. form: "demon"
  48800. },
  48801. demonHand: {
  48802. height: math.unit(1.61, "meters"),
  48803. name: "Hand",
  48804. image: {
  48805. source: "./media/characters/alex-xuria/demon-hand.svg"
  48806. },
  48807. form: "demon"
  48808. },
  48809. demonPaw: {
  48810. height: math.unit(1.35, "meters"),
  48811. name: "Paw",
  48812. image: {
  48813. source: "./media/characters/alex-xuria/demon-paw.svg"
  48814. },
  48815. form: "demon"
  48816. },
  48817. demonFoot: {
  48818. height: math.unit(2.2, "meters"),
  48819. name: "Foot",
  48820. image: {
  48821. source: "./media/characters/alex-xuria/demon-foot.svg"
  48822. },
  48823. form: "demon"
  48824. },
  48825. demonCock: {
  48826. height: math.unit(1.74, "meters"),
  48827. name: "Cock",
  48828. image: {
  48829. source: "./media/characters/alex-xuria/demon-cock.svg"
  48830. },
  48831. form: "demon"
  48832. },
  48833. demonTailClosed: {
  48834. height: math.unit(1.47, "meters"),
  48835. name: "Tail (Closed)",
  48836. image: {
  48837. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48838. },
  48839. form: "demon"
  48840. },
  48841. demonTailOpen: {
  48842. height: math.unit(2.85, "meters"),
  48843. name: "Tail (Open)",
  48844. image: {
  48845. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48846. },
  48847. form: "demon"
  48848. },
  48849. incubusFront: {
  48850. height: math.unit(12, "feet"),
  48851. name: "Front",
  48852. image: {
  48853. source: "./media/characters/alex-xuria/incubus-front.svg",
  48854. extra: 1754/1677,
  48855. bottom: 125/1879
  48856. },
  48857. form: "incubus",
  48858. default: true
  48859. },
  48860. incubusBack: {
  48861. height: math.unit(12, "feet"),
  48862. name: "Back",
  48863. image: {
  48864. source: "./media/characters/alex-xuria/incubus-back.svg",
  48865. extra: 1702/1647,
  48866. bottom: 30/1732
  48867. },
  48868. form: "incubus"
  48869. },
  48870. incubusHead: {
  48871. height: math.unit(3.45, "feet"),
  48872. name: "Head",
  48873. image: {
  48874. source: "./media/characters/alex-xuria/incubus-head.svg"
  48875. },
  48876. form: "incubus"
  48877. },
  48878. rabbitFront: {
  48879. height: math.unit(6, "feet"),
  48880. name: "Front",
  48881. image: {
  48882. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48883. extra: 1369/1349,
  48884. bottom: 45/1414
  48885. },
  48886. form: "rabbit",
  48887. default: true
  48888. },
  48889. rabbitSide: {
  48890. height: math.unit(6, "feet"),
  48891. name: "Side",
  48892. image: {
  48893. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48894. extra: 1370/1356,
  48895. bottom: 37/1407
  48896. },
  48897. form: "rabbit"
  48898. },
  48899. rabbitBack: {
  48900. height: math.unit(6, "feet"),
  48901. name: "Back",
  48902. image: {
  48903. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48904. extra: 1375/1358,
  48905. bottom: 43/1418
  48906. },
  48907. form: "rabbit"
  48908. },
  48909. },
  48910. [
  48911. {
  48912. name: "Normal",
  48913. height: math.unit(6, "feet"),
  48914. default: true,
  48915. form: "rabbit"
  48916. },
  48917. {
  48918. name: "Incubus",
  48919. height: math.unit(12, "feet"),
  48920. default: true,
  48921. form: "incubus"
  48922. },
  48923. {
  48924. name: "Demon",
  48925. height: math.unit(36, "feet"),
  48926. default: true,
  48927. form: "demon"
  48928. }
  48929. ],
  48930. {
  48931. "demon": {
  48932. name: "Demon",
  48933. default: true
  48934. },
  48935. "incubus": {
  48936. name: "Incubus",
  48937. },
  48938. "rabbit": {
  48939. name: "Rabbit"
  48940. }
  48941. }
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(7 + 5/12, "feet"),
  48948. weight: math.unit(510, "lb"),
  48949. name: "Front",
  48950. image: {
  48951. source: "./media/characters/syrup/front.svg",
  48952. extra: 932/916,
  48953. bottom: 26/958
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(7 + 5/12, "feet"),
  48961. default: true
  48962. },
  48963. {
  48964. name: "Big",
  48965. height: math.unit(50, "feet")
  48966. },
  48967. {
  48968. name: "Macro",
  48969. height: math.unit(300, "feet")
  48970. },
  48971. {
  48972. name: "Megamacro",
  48973. height: math.unit(1, "mile")
  48974. },
  48975. ]
  48976. ))
  48977. characterMakers.push(() => makeCharacter(
  48978. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48979. {
  48980. front: {
  48981. height: math.unit(6 + 9/12, "feet"),
  48982. name: "Front",
  48983. image: {
  48984. source: "./media/characters/zeimne/front.svg",
  48985. extra: 1969/1806,
  48986. bottom: 53/2022
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Normal",
  48993. height: math.unit(6 + 9/12, "feet"),
  48994. default: true
  48995. },
  48996. {
  48997. name: "Giant",
  48998. height: math.unit(550, "feet")
  48999. },
  49000. {
  49001. name: "Mega",
  49002. height: math.unit(3, "miles")
  49003. },
  49004. {
  49005. name: "Giga",
  49006. height: math.unit(250, "miles")
  49007. },
  49008. {
  49009. name: "Tera",
  49010. height: math.unit(1, "AU")
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49016. {
  49017. front: {
  49018. height: math.unit(5 + 2/12, "feet"),
  49019. name: "Front",
  49020. image: {
  49021. source: "./media/characters/grar/front.svg",
  49022. extra: 1331/1119,
  49023. bottom: 60/1391
  49024. }
  49025. },
  49026. back: {
  49027. height: math.unit(5 + 2/12, "feet"),
  49028. name: "Back",
  49029. image: {
  49030. source: "./media/characters/grar/back.svg",
  49031. extra: 1385/1169,
  49032. bottom: 23/1408
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Normal",
  49039. height: math.unit(5 + 2/12, "feet"),
  49040. default: true
  49041. },
  49042. ]
  49043. ))
  49044. characterMakers.push(() => makeCharacter(
  49045. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49046. {
  49047. front: {
  49048. height: math.unit(13 + 7/12, "feet"),
  49049. weight: math.unit(2200, "lb"),
  49050. name: "Front",
  49051. image: {
  49052. source: "./media/characters/endraya/front.svg",
  49053. extra: 1289/1215,
  49054. bottom: 50/1339
  49055. }
  49056. },
  49057. nude: {
  49058. height: math.unit(13 + 7/12, "feet"),
  49059. weight: math.unit(2200, "lb"),
  49060. name: "Nude",
  49061. image: {
  49062. source: "./media/characters/endraya/nude.svg",
  49063. extra: 1247/1171,
  49064. bottom: 40/1287
  49065. }
  49066. },
  49067. head: {
  49068. height: math.unit(2.6, "feet"),
  49069. name: "Head",
  49070. image: {
  49071. source: "./media/characters/endraya/head.svg"
  49072. }
  49073. },
  49074. slit: {
  49075. height: math.unit(3.4, "feet"),
  49076. name: "Slit",
  49077. image: {
  49078. source: "./media/characters/endraya/slit.svg"
  49079. }
  49080. },
  49081. },
  49082. [
  49083. {
  49084. name: "Normal",
  49085. height: math.unit(13 + 7/12, "feet"),
  49086. default: true
  49087. },
  49088. {
  49089. name: "Macro",
  49090. height: math.unit(200, "feet")
  49091. },
  49092. ]
  49093. ))
  49094. characterMakers.push(() => makeCharacter(
  49095. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49096. {
  49097. front: {
  49098. height: math.unit(1.81, "meters"),
  49099. weight: math.unit(69, "kg"),
  49100. name: "Front",
  49101. image: {
  49102. source: "./media/characters/rodryana/front.svg",
  49103. extra: 2002/1921,
  49104. bottom: 53/2055
  49105. }
  49106. },
  49107. back: {
  49108. height: math.unit(1.81, "meters"),
  49109. weight: math.unit(69, "kg"),
  49110. name: "Back",
  49111. image: {
  49112. source: "./media/characters/rodryana/back.svg",
  49113. extra: 1993/1926,
  49114. bottom: 48/2041
  49115. }
  49116. },
  49117. maw: {
  49118. height: math.unit(0.19769417475, "meters"),
  49119. name: "Maw",
  49120. image: {
  49121. source: "./media/characters/rodryana/maw.svg"
  49122. }
  49123. },
  49124. slit: {
  49125. height: math.unit(0.31631067961, "meters"),
  49126. name: "Slit",
  49127. image: {
  49128. source: "./media/characters/rodryana/slit.svg"
  49129. }
  49130. },
  49131. },
  49132. [
  49133. {
  49134. name: "Normal",
  49135. height: math.unit(1.81, "meters")
  49136. },
  49137. {
  49138. name: "Mini Macro",
  49139. height: math.unit(181, "meters")
  49140. },
  49141. {
  49142. name: "Macro",
  49143. height: math.unit(452, "meters"),
  49144. default: true
  49145. },
  49146. {
  49147. name: "Mega Macro",
  49148. height: math.unit(1.375, "km")
  49149. },
  49150. {
  49151. name: "Giga Macro",
  49152. height: math.unit(13.575, "km")
  49153. },
  49154. ]
  49155. ))
  49156. characterMakers.push(() => makeCharacter(
  49157. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49158. {
  49159. front: {
  49160. height: math.unit(6, "feet"),
  49161. weight: math.unit(1000, "lb"),
  49162. name: "Front",
  49163. image: {
  49164. source: "./media/characters/asaya/front.svg",
  49165. extra: 1460/1200,
  49166. bottom: 71/1531
  49167. }
  49168. },
  49169. },
  49170. [
  49171. {
  49172. name: "Normal",
  49173. height: math.unit(8, "km"),
  49174. default: true
  49175. },
  49176. ]
  49177. ))
  49178. characterMakers.push(() => makeCharacter(
  49179. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49180. {
  49181. front: {
  49182. height: math.unit(3.5, "meters"),
  49183. name: "Front",
  49184. image: {
  49185. source: "./media/characters/sarzu-and-israz/front.svg",
  49186. extra: 1570/1558,
  49187. bottom: 150/1720
  49188. },
  49189. },
  49190. back: {
  49191. height: math.unit(3.5, "meters"),
  49192. name: "Back",
  49193. image: {
  49194. source: "./media/characters/sarzu-and-israz/back.svg",
  49195. extra: 1523/1509,
  49196. bottom: 132/1655
  49197. },
  49198. },
  49199. frontFemale: {
  49200. height: math.unit(3.5, "meters"),
  49201. name: "Front (Female)",
  49202. image: {
  49203. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49204. extra: 1570/1558,
  49205. bottom: 150/1720
  49206. },
  49207. },
  49208. frontHerm: {
  49209. height: math.unit(3.5, "meters"),
  49210. name: "Front (Herm)",
  49211. image: {
  49212. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49213. extra: 1570/1558,
  49214. bottom: 150/1720
  49215. },
  49216. },
  49217. },
  49218. [
  49219. {
  49220. name: "Normal",
  49221. height: math.unit(3.5, "meters"),
  49222. default: true,
  49223. },
  49224. {
  49225. name: "Macro",
  49226. height: math.unit(65.5, "meters"),
  49227. },
  49228. ],
  49229. ))
  49230. characterMakers.push(() => makeCharacter(
  49231. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49232. {
  49233. front: {
  49234. height: math.unit(6, "feet"),
  49235. weight: math.unit(250, "lb"),
  49236. name: "Front",
  49237. image: {
  49238. source: "./media/characters/zenimma/front.svg",
  49239. extra: 1346/1320,
  49240. bottom: 58/1404
  49241. }
  49242. },
  49243. back: {
  49244. height: math.unit(6, "feet"),
  49245. weight: math.unit(250, "lb"),
  49246. name: "Back",
  49247. image: {
  49248. source: "./media/characters/zenimma/back.svg",
  49249. extra: 1324/1308,
  49250. bottom: 44/1368
  49251. }
  49252. },
  49253. dick: {
  49254. height: math.unit(1.44, "feet"),
  49255. name: "Dick",
  49256. image: {
  49257. source: "./media/characters/zenimma/dick.svg"
  49258. }
  49259. },
  49260. },
  49261. [
  49262. {
  49263. name: "Canon Height",
  49264. height: math.unit(66, "miles"),
  49265. default: true
  49266. },
  49267. ]
  49268. ))
  49269. characterMakers.push(() => makeCharacter(
  49270. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49271. {
  49272. nude: {
  49273. height: math.unit(6, "feet"),
  49274. weight: math.unit(150, "lb"),
  49275. name: "Nude",
  49276. image: {
  49277. source: "./media/characters/shavon/nude.svg",
  49278. extra: 1242/1096,
  49279. bottom: 98/1340
  49280. }
  49281. },
  49282. dressed: {
  49283. height: math.unit(6, "feet"),
  49284. weight: math.unit(150, "lb"),
  49285. name: "Dressed",
  49286. image: {
  49287. source: "./media/characters/shavon/dressed.svg",
  49288. extra: 1242/1096,
  49289. bottom: 98/1340
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Macro",
  49296. height: math.unit(255, "feet"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(6, "feet"),
  49306. name: "Front",
  49307. image: {
  49308. source: "./media/characters/steph/front.svg",
  49309. extra: 1430/1330,
  49310. bottom: 54/1484
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Normal",
  49317. height: math.unit(6, "feet"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(9, "feet"),
  49327. weight: math.unit(400, "lb"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/kil'aman/front.svg",
  49331. extra: 1210/1159,
  49332. bottom: 109/1319
  49333. }
  49334. },
  49335. head: {
  49336. height: math.unit(2.14, "feet"),
  49337. name: "Head",
  49338. image: {
  49339. source: "./media/characters/kil'aman/head.svg"
  49340. }
  49341. },
  49342. maw: {
  49343. height: math.unit(1.21, "feet"),
  49344. name: "Maw",
  49345. image: {
  49346. source: "./media/characters/kil'aman/maw.svg"
  49347. }
  49348. },
  49349. foot: {
  49350. height: math.unit(1.7, "feet"),
  49351. name: "Foot",
  49352. image: {
  49353. source: "./media/characters/kil'aman/foot.svg"
  49354. }
  49355. },
  49356. dick: {
  49357. height: math.unit(2.1, "feet"),
  49358. name: "Dick",
  49359. image: {
  49360. source: "./media/characters/kil'aman/dick.svg"
  49361. }
  49362. },
  49363. },
  49364. [
  49365. {
  49366. name: "Normal",
  49367. height: math.unit(9, "feet")
  49368. },
  49369. {
  49370. name: "Canon Height",
  49371. height: math.unit(10, "miles"),
  49372. default: true
  49373. },
  49374. {
  49375. name: "Maximum",
  49376. height: math.unit(6e9, "miles")
  49377. },
  49378. ]
  49379. ))
  49380. characterMakers.push(() => makeCharacter(
  49381. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49382. {
  49383. front: {
  49384. height: math.unit(90, "feet"),
  49385. weight: math.unit(675000, "lb"),
  49386. name: "Front",
  49387. image: {
  49388. source: "./media/characters/qadan/front.svg",
  49389. extra: 1012/1004,
  49390. bottom: 78/1090
  49391. }
  49392. },
  49393. back: {
  49394. height: math.unit(90, "feet"),
  49395. weight: math.unit(675000, "lb"),
  49396. name: "Back",
  49397. image: {
  49398. source: "./media/characters/qadan/back.svg",
  49399. extra: 1042/1031,
  49400. bottom: 55/1097
  49401. }
  49402. },
  49403. armored: {
  49404. height: math.unit(90, "feet"),
  49405. weight: math.unit(675000, "lb"),
  49406. name: "Armored",
  49407. image: {
  49408. source: "./media/characters/qadan/armored.svg",
  49409. extra: 1047/1037,
  49410. bottom: 48/1095
  49411. }
  49412. },
  49413. },
  49414. [
  49415. {
  49416. name: "Normal",
  49417. height: math.unit(90, "feet"),
  49418. default: true
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49424. {
  49425. front: {
  49426. height: math.unit(6, "feet"),
  49427. weight: math.unit(225, "lb"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/brooke/front.svg",
  49431. extra: 1050/1010,
  49432. bottom: 66/1116
  49433. }
  49434. },
  49435. back: {
  49436. height: math.unit(6, "feet"),
  49437. weight: math.unit(225, "lb"),
  49438. name: "Back",
  49439. image: {
  49440. source: "./media/characters/brooke/back.svg",
  49441. extra: 1053/1013,
  49442. bottom: 41/1094
  49443. }
  49444. },
  49445. dressed: {
  49446. height: math.unit(6, "feet"),
  49447. weight: math.unit(225, "lb"),
  49448. name: "Dressed",
  49449. image: {
  49450. source: "./media/characters/brooke/dressed.svg",
  49451. extra: 1050/1010,
  49452. bottom: 66/1116
  49453. }
  49454. },
  49455. },
  49456. [
  49457. {
  49458. name: "Canon Height",
  49459. height: math.unit(500, "miles"),
  49460. default: true
  49461. },
  49462. ]
  49463. ))
  49464. characterMakers.push(() => makeCharacter(
  49465. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49466. {
  49467. front: {
  49468. height: math.unit(6 + 2/12, "feet"),
  49469. weight: math.unit(210, "lb"),
  49470. name: "Front",
  49471. image: {
  49472. source: "./media/characters/wubs/front.svg",
  49473. extra: 1345/1325,
  49474. bottom: 70/1415
  49475. }
  49476. },
  49477. back: {
  49478. height: math.unit(6 + 2/12, "feet"),
  49479. weight: math.unit(210, "lb"),
  49480. name: "Back",
  49481. image: {
  49482. source: "./media/characters/wubs/back.svg",
  49483. extra: 1296/1275,
  49484. bottom: 58/1354
  49485. }
  49486. },
  49487. },
  49488. [
  49489. {
  49490. name: "Normal",
  49491. height: math.unit(6 + 2/12, "feet"),
  49492. default: true
  49493. },
  49494. {
  49495. name: "Macro",
  49496. height: math.unit(1000, "feet")
  49497. },
  49498. {
  49499. name: "Megamacro",
  49500. height: math.unit(1, "mile")
  49501. },
  49502. ]
  49503. ))
  49504. characterMakers.push(() => makeCharacter(
  49505. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49506. {
  49507. front: {
  49508. height: math.unit(4, "feet"),
  49509. weight: math.unit(120, "lb"),
  49510. name: "Front",
  49511. image: {
  49512. source: "./media/characters/blue/front.svg",
  49513. extra: 1636/1525,
  49514. bottom: 43/1679
  49515. }
  49516. },
  49517. back: {
  49518. height: math.unit(4, "feet"),
  49519. weight: math.unit(120, "lb"),
  49520. name: "Back",
  49521. image: {
  49522. source: "./media/characters/blue/back.svg",
  49523. extra: 1660/1560,
  49524. bottom: 57/1717
  49525. }
  49526. },
  49527. paws: {
  49528. height: math.unit(0.826, "feet"),
  49529. name: "Paws",
  49530. image: {
  49531. source: "./media/characters/blue/paws.svg"
  49532. }
  49533. },
  49534. },
  49535. [
  49536. {
  49537. name: "Micro",
  49538. height: math.unit(3, "inches")
  49539. },
  49540. {
  49541. name: "Normal",
  49542. height: math.unit(4, "feet"),
  49543. default: true
  49544. },
  49545. {
  49546. name: "Femenine Form",
  49547. height: math.unit(14, "feet")
  49548. },
  49549. {
  49550. name: "Werebat Form",
  49551. height: math.unit(18, "feet")
  49552. },
  49553. ]
  49554. ))
  49555. characterMakers.push(() => makeCharacter(
  49556. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49557. {
  49558. female: {
  49559. height: math.unit(7 + 4/12, "feet"),
  49560. weight: math.unit(243, "lb"),
  49561. name: "Female",
  49562. image: {
  49563. source: "./media/characters/kaya/female.svg",
  49564. extra: 975/898,
  49565. bottom: 34/1009
  49566. }
  49567. },
  49568. herm: {
  49569. height: math.unit(7 + 4/12, "feet"),
  49570. weight: math.unit(243, "lb"),
  49571. name: "Herm",
  49572. image: {
  49573. source: "./media/characters/kaya/herm.svg",
  49574. extra: 975/898,
  49575. bottom: 34/1009
  49576. }
  49577. },
  49578. },
  49579. [
  49580. {
  49581. name: "Normal",
  49582. height: math.unit(7 + 4/12, "feet"),
  49583. default: true
  49584. },
  49585. ]
  49586. ))
  49587. characterMakers.push(() => makeCharacter(
  49588. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49589. {
  49590. female: {
  49591. height: math.unit(9 + 4/12, "feet"),
  49592. weight: math.unit(398, "lb"),
  49593. name: "Female",
  49594. image: {
  49595. source: "./media/characters/kassandra/female.svg",
  49596. extra: 908/839,
  49597. bottom: 61/969
  49598. }
  49599. },
  49600. intersex: {
  49601. height: math.unit(9 + 4/12, "feet"),
  49602. weight: math.unit(398, "lb"),
  49603. name: "Intersex",
  49604. image: {
  49605. source: "./media/characters/kassandra/intersex.svg",
  49606. extra: 908/839,
  49607. bottom: 61/969
  49608. }
  49609. },
  49610. },
  49611. [
  49612. {
  49613. name: "Normal",
  49614. height: math.unit(9 + 4/12, "feet"),
  49615. default: true
  49616. },
  49617. ]
  49618. ))
  49619. characterMakers.push(() => makeCharacter(
  49620. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49621. {
  49622. front: {
  49623. height: math.unit(3, "meters"),
  49624. name: "Front",
  49625. image: {
  49626. source: "./media/characters/amy/front.svg",
  49627. extra: 1380/1343,
  49628. bottom: 70/1450
  49629. }
  49630. },
  49631. back: {
  49632. height: math.unit(3, "meters"),
  49633. name: "Back",
  49634. image: {
  49635. source: "./media/characters/amy/back.svg",
  49636. extra: 1380/1347,
  49637. bottom: 66/1446
  49638. }
  49639. },
  49640. },
  49641. [
  49642. {
  49643. name: "Normal",
  49644. height: math.unit(3, "meters"),
  49645. default: true
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49651. {
  49652. side: {
  49653. height: math.unit(47, "cm"),
  49654. weight: math.unit(10.8, "kg"),
  49655. name: "Side",
  49656. image: {
  49657. source: "./media/characters/alphaschakal/side.svg",
  49658. extra: 1058/568,
  49659. bottom: 62/1120
  49660. }
  49661. },
  49662. back: {
  49663. height: math.unit(78, "cm"),
  49664. weight: math.unit(10.8, "kg"),
  49665. name: "Back",
  49666. image: {
  49667. source: "./media/characters/alphaschakal/back.svg",
  49668. extra: 1102/942,
  49669. bottom: 185/1287
  49670. }
  49671. },
  49672. head: {
  49673. height: math.unit(28, "cm"),
  49674. name: "Head",
  49675. image: {
  49676. source: "./media/characters/alphaschakal/head.svg",
  49677. extra: 696/508,
  49678. bottom: 0/696
  49679. }
  49680. },
  49681. paw: {
  49682. height: math.unit(16, "cm"),
  49683. name: "Paw",
  49684. image: {
  49685. source: "./media/characters/alphaschakal/paw.svg"
  49686. }
  49687. },
  49688. },
  49689. [
  49690. {
  49691. name: "Normal",
  49692. height: math.unit(47, "cm"),
  49693. default: true
  49694. },
  49695. {
  49696. name: "Macro",
  49697. height: math.unit(340, "cm")
  49698. },
  49699. ]
  49700. ))
  49701. characterMakers.push(() => makeCharacter(
  49702. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49703. {
  49704. front: {
  49705. height: math.unit(36, "earths"),
  49706. name: "Front",
  49707. image: {
  49708. source: "./media/characters/ecobyss/front.svg",
  49709. extra: 1282/1215,
  49710. bottom: 11/1293
  49711. }
  49712. },
  49713. back: {
  49714. height: math.unit(36, "earths"),
  49715. name: "Back",
  49716. image: {
  49717. source: "./media/characters/ecobyss/back.svg",
  49718. extra: 1291/1222,
  49719. bottom: 8/1299
  49720. }
  49721. },
  49722. },
  49723. [
  49724. {
  49725. name: "Normal",
  49726. height: math.unit(36, "earths"),
  49727. default: true
  49728. },
  49729. ]
  49730. ))
  49731. characterMakers.push(() => makeCharacter(
  49732. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49733. {
  49734. front: {
  49735. height: math.unit(12, "feet"),
  49736. name: "Front",
  49737. image: {
  49738. source: "./media/characters/vasuk/front.svg",
  49739. extra: 1326/1207,
  49740. bottom: 64/1390
  49741. }
  49742. },
  49743. },
  49744. [
  49745. {
  49746. name: "Normal",
  49747. height: math.unit(12, "feet"),
  49748. default: true
  49749. },
  49750. ]
  49751. ))
  49752. characterMakers.push(() => makeCharacter(
  49753. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49754. {
  49755. side: {
  49756. height: math.unit(100, "feet"),
  49757. name: "Side",
  49758. image: {
  49759. source: "./media/characters/linneaus/side.svg",
  49760. extra: 987/807,
  49761. bottom: 47/1034
  49762. }
  49763. },
  49764. },
  49765. [
  49766. {
  49767. name: "Macro",
  49768. height: math.unit(100, "feet"),
  49769. default: true
  49770. },
  49771. ]
  49772. ))
  49773. characterMakers.push(() => makeCharacter(
  49774. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49775. {
  49776. front: {
  49777. height: math.unit(8, "feet"),
  49778. weight: math.unit(1200, "lb"),
  49779. name: "Front",
  49780. image: {
  49781. source: "./media/characters/nyterious-daligdig/front.svg",
  49782. extra: 1284/1094,
  49783. bottom: 84/1368
  49784. }
  49785. },
  49786. back: {
  49787. height: math.unit(8, "feet"),
  49788. weight: math.unit(1200, "lb"),
  49789. name: "Back",
  49790. image: {
  49791. source: "./media/characters/nyterious-daligdig/back.svg",
  49792. extra: 1301/1121,
  49793. bottom: 129/1430
  49794. }
  49795. },
  49796. mouth: {
  49797. height: math.unit(1.464, "feet"),
  49798. name: "Mouth",
  49799. image: {
  49800. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49801. }
  49802. },
  49803. },
  49804. [
  49805. {
  49806. name: "Small",
  49807. height: math.unit(8, "feet"),
  49808. default: true
  49809. },
  49810. {
  49811. name: "Normal",
  49812. height: math.unit(15, "feet")
  49813. },
  49814. {
  49815. name: "Macro",
  49816. height: math.unit(90, "feet")
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(7 + 4/12, "feet"),
  49825. weight: math.unit(252, "lb"),
  49826. name: "Front",
  49827. image: {
  49828. source: "./media/characters/bandel/front.svg",
  49829. extra: 1946/1775,
  49830. bottom: 26/1972
  49831. }
  49832. },
  49833. back: {
  49834. height: math.unit(7 + 4/12, "feet"),
  49835. weight: math.unit(252, "lb"),
  49836. name: "Back",
  49837. image: {
  49838. source: "./media/characters/bandel/back.svg",
  49839. extra: 1940/1770,
  49840. bottom: 25/1965
  49841. }
  49842. },
  49843. maw: {
  49844. height: math.unit(2.15, "feet"),
  49845. name: "Maw",
  49846. image: {
  49847. source: "./media/characters/bandel/maw.svg"
  49848. }
  49849. },
  49850. stomach: {
  49851. height: math.unit(1.95, "feet"),
  49852. name: "Stomach",
  49853. image: {
  49854. source: "./media/characters/bandel/stomach.svg"
  49855. }
  49856. },
  49857. },
  49858. [
  49859. {
  49860. name: "Normal",
  49861. height: math.unit(7 + 4/12, "feet"),
  49862. default: true
  49863. },
  49864. ]
  49865. ))
  49866. characterMakers.push(() => makeCharacter(
  49867. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49868. {
  49869. front: {
  49870. height: math.unit(10 + 5/12, "feet"),
  49871. weight: math.unit(773.5, "kg"),
  49872. name: "Front",
  49873. image: {
  49874. source: "./media/characters/zed/front.svg",
  49875. extra: 987/941,
  49876. bottom: 52/1039
  49877. }
  49878. },
  49879. },
  49880. [
  49881. {
  49882. name: "Short",
  49883. height: math.unit(5 + 4/12, "feet")
  49884. },
  49885. {
  49886. name: "Average",
  49887. height: math.unit(10 + 5/12, "feet"),
  49888. default: true
  49889. },
  49890. {
  49891. name: "Mini-Macro",
  49892. height: math.unit(24 + 9/12, "feet")
  49893. },
  49894. {
  49895. name: "Macro",
  49896. height: math.unit(249, "feet")
  49897. },
  49898. {
  49899. name: "Mega-Macro",
  49900. height: math.unit(12490, "feet")
  49901. },
  49902. {
  49903. name: "Giga-Macro",
  49904. height: math.unit(24.9, "miles")
  49905. },
  49906. {
  49907. name: "Tera-Macro",
  49908. height: math.unit(24900, "miles")
  49909. },
  49910. {
  49911. name: "Cosmic Scale",
  49912. height: math.unit(38.9, "lightyears")
  49913. },
  49914. {
  49915. name: "Universal Scale",
  49916. height: math.unit(138e12, "lightyears")
  49917. },
  49918. ]
  49919. ))
  49920. characterMakers.push(() => makeCharacter(
  49921. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49922. {
  49923. front: {
  49924. height: math.unit(1561, "inches"),
  49925. name: "Front",
  49926. image: {
  49927. source: "./media/characters/ivan/front.svg",
  49928. extra: 1126/1071,
  49929. bottom: 26/1152
  49930. }
  49931. },
  49932. back: {
  49933. height: math.unit(1561, "inches"),
  49934. name: "Back",
  49935. image: {
  49936. source: "./media/characters/ivan/back.svg",
  49937. extra: 1134/1079,
  49938. bottom: 30/1164
  49939. }
  49940. },
  49941. },
  49942. [
  49943. {
  49944. name: "Normal",
  49945. height: math.unit(1561, "inches"),
  49946. default: true
  49947. },
  49948. ]
  49949. ))
  49950. characterMakers.push(() => makeCharacter(
  49951. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49952. {
  49953. front: {
  49954. height: math.unit(5 + 7/12, "feet"),
  49955. weight: math.unit(150, "lb"),
  49956. name: "Front",
  49957. image: {
  49958. source: "./media/characters/robin-arctic-hare/front.svg",
  49959. extra: 1148/974,
  49960. bottom: 20/1168
  49961. }
  49962. },
  49963. },
  49964. [
  49965. {
  49966. name: "Normal",
  49967. height: math.unit(5 + 7/12, "feet"),
  49968. default: true
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49974. {
  49975. side: {
  49976. height: math.unit(5, "feet"),
  49977. name: "Side",
  49978. image: {
  49979. source: "./media/characters/birch/side.svg",
  49980. extra: 985/796,
  49981. bottom: 111/1096
  49982. }
  49983. },
  49984. },
  49985. [
  49986. {
  49987. name: "Normal",
  49988. height: math.unit(5, "feet"),
  49989. default: true
  49990. },
  49991. ]
  49992. ))
  49993. characterMakers.push(() => makeCharacter(
  49994. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49995. {
  49996. front: {
  49997. height: math.unit(4, "feet"),
  49998. name: "Front",
  49999. image: {
  50000. source: "./media/characters/rasp/front.svg",
  50001. extra: 561/478,
  50002. bottom: 74/635
  50003. }
  50004. },
  50005. },
  50006. [
  50007. {
  50008. name: "Normal",
  50009. height: math.unit(4, "feet"),
  50010. default: true
  50011. },
  50012. ]
  50013. ))
  50014. characterMakers.push(() => makeCharacter(
  50015. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50016. {
  50017. front: {
  50018. height: math.unit(4 + 6/12, "feet"),
  50019. name: "Front",
  50020. image: {
  50021. source: "./media/characters/agatha/front.svg",
  50022. extra: 947/933,
  50023. bottom: 42/989
  50024. }
  50025. },
  50026. back: {
  50027. height: math.unit(4 + 6/12, "feet"),
  50028. name: "Back",
  50029. image: {
  50030. source: "./media/characters/agatha/back.svg",
  50031. extra: 935/922,
  50032. bottom: 48/983
  50033. }
  50034. },
  50035. },
  50036. [
  50037. {
  50038. name: "Normal",
  50039. height: math.unit(4 + 6 /12, "feet"),
  50040. default: true
  50041. },
  50042. {
  50043. name: "Max Size",
  50044. height: math.unit(500, "feet")
  50045. },
  50046. ]
  50047. ))
  50048. characterMakers.push(() => makeCharacter(
  50049. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50050. {
  50051. side: {
  50052. height: math.unit(30, "feet"),
  50053. name: "Side",
  50054. image: {
  50055. source: "./media/characters/roggy/side.svg",
  50056. extra: 909/643,
  50057. bottom: 63/972
  50058. }
  50059. },
  50060. lounging: {
  50061. height: math.unit(20, "feet"),
  50062. name: "Lounging",
  50063. image: {
  50064. source: "./media/characters/roggy/lounging.svg",
  50065. extra: 643/479,
  50066. bottom: 145/788
  50067. }
  50068. },
  50069. handpaw: {
  50070. height: math.unit(13.1, "feet"),
  50071. name: "Handpaw",
  50072. image: {
  50073. source: "./media/characters/roggy/handpaw.svg"
  50074. }
  50075. },
  50076. footpaw: {
  50077. height: math.unit(15.8, "feet"),
  50078. name: "Footpaw",
  50079. image: {
  50080. source: "./media/characters/roggy/footpaw.svg"
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Menacing",
  50087. height: math.unit(30, "feet"),
  50088. default: true
  50089. },
  50090. ]
  50091. ))
  50092. characterMakers.push(() => makeCharacter(
  50093. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50094. {
  50095. front: {
  50096. height: math.unit(5 + 7/12, "feet"),
  50097. weight: math.unit(135, "lb"),
  50098. name: "Front",
  50099. image: {
  50100. source: "./media/characters/naomi/front.svg",
  50101. extra: 1209/1154,
  50102. bottom: 129/1338
  50103. }
  50104. },
  50105. back: {
  50106. height: math.unit(5 + 7/12, "feet"),
  50107. weight: math.unit(135, "lb"),
  50108. name: "Back",
  50109. image: {
  50110. source: "./media/characters/naomi/back.svg",
  50111. extra: 1252/1190,
  50112. bottom: 23/1275
  50113. }
  50114. },
  50115. },
  50116. [
  50117. {
  50118. name: "Normal",
  50119. height: math.unit(5 + 7 /12, "feet"),
  50120. default: true
  50121. },
  50122. ]
  50123. ))
  50124. characterMakers.push(() => makeCharacter(
  50125. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50126. {
  50127. side: {
  50128. height: math.unit(35, "meters"),
  50129. name: "Side",
  50130. image: {
  50131. source: "./media/characters/kimpi/side.svg",
  50132. extra: 419/382,
  50133. bottom: 63/482
  50134. }
  50135. },
  50136. hand: {
  50137. height: math.unit(8.96, "meters"),
  50138. name: "Hand",
  50139. image: {
  50140. source: "./media/characters/kimpi/hand.svg"
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Normal",
  50147. height: math.unit(35, "meters"),
  50148. default: true
  50149. },
  50150. ]
  50151. ))
  50152. characterMakers.push(() => makeCharacter(
  50153. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50154. {
  50155. front: {
  50156. height: math.unit(4 + 4/12, "feet"),
  50157. name: "Front",
  50158. image: {
  50159. source: "./media/characters/pepper-purrloin/front.svg",
  50160. extra: 1141/1024,
  50161. bottom: 21/1162
  50162. }
  50163. },
  50164. },
  50165. [
  50166. {
  50167. name: "Normal",
  50168. height: math.unit(4 + 4/12, "feet"),
  50169. default: true
  50170. },
  50171. ]
  50172. ))
  50173. characterMakers.push(() => makeCharacter(
  50174. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50175. {
  50176. front: {
  50177. height: math.unit(6 + 2/12, "feet"),
  50178. name: "Front",
  50179. image: {
  50180. source: "./media/characters/raphael/front.svg",
  50181. extra: 1101/962,
  50182. bottom: 59/1160
  50183. }
  50184. },
  50185. },
  50186. [
  50187. {
  50188. name: "Normal",
  50189. height: math.unit(6 + 2/12, "feet"),
  50190. default: true
  50191. },
  50192. ]
  50193. ))
  50194. characterMakers.push(() => makeCharacter(
  50195. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50196. {
  50197. front: {
  50198. height: math.unit(6, "feet"),
  50199. weight: math.unit(150, "lb"),
  50200. name: "Front",
  50201. image: {
  50202. source: "./media/characters/victor-williams/front.svg",
  50203. extra: 1894/1825,
  50204. bottom: 67/1961
  50205. }
  50206. },
  50207. },
  50208. [
  50209. {
  50210. name: "Normal",
  50211. height: math.unit(6, "feet"),
  50212. default: true
  50213. },
  50214. ]
  50215. ))
  50216. characterMakers.push(() => makeCharacter(
  50217. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50218. {
  50219. front: {
  50220. height: math.unit(5 + 8/12, "feet"),
  50221. weight: math.unit(150, "lb"),
  50222. name: "Front",
  50223. image: {
  50224. source: "./media/characters/rachel/front.svg",
  50225. extra: 1902/1787,
  50226. bottom: 46/1948
  50227. }
  50228. },
  50229. },
  50230. [
  50231. {
  50232. name: "Base Height",
  50233. height: math.unit(5 + 8/12, "feet"),
  50234. default: true
  50235. },
  50236. {
  50237. name: "Macro",
  50238. height: math.unit(200, "feet")
  50239. },
  50240. {
  50241. name: "Mega Macro",
  50242. height: math.unit(1, "mile")
  50243. },
  50244. {
  50245. name: "Giga Macro",
  50246. height: math.unit(1500, "miles")
  50247. },
  50248. {
  50249. name: "Tera Macro",
  50250. height: math.unit(8000, "miles")
  50251. },
  50252. {
  50253. name: "Tera Macro+",
  50254. height: math.unit(2e5, "miles")
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50260. {
  50261. front: {
  50262. height: math.unit(6.5, "feet"),
  50263. name: "Front",
  50264. image: {
  50265. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50266. extra: 860/819,
  50267. bottom: 307/1167
  50268. }
  50269. },
  50270. back: {
  50271. height: math.unit(6.5, "feet"),
  50272. name: "Back",
  50273. image: {
  50274. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50275. extra: 880/837,
  50276. bottom: 395/1275
  50277. }
  50278. },
  50279. sleeping: {
  50280. height: math.unit(2.79, "feet"),
  50281. name: "Sleeping",
  50282. image: {
  50283. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50284. extra: 465/383,
  50285. bottom: 263/728
  50286. }
  50287. },
  50288. maw: {
  50289. height: math.unit(2.52, "feet"),
  50290. name: "Maw",
  50291. image: {
  50292. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50293. }
  50294. },
  50295. },
  50296. [
  50297. {
  50298. name: "Normal",
  50299. height: math.unit(6.5, "feet"),
  50300. default: true
  50301. },
  50302. ]
  50303. ))
  50304. characterMakers.push(() => makeCharacter(
  50305. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50306. {
  50307. front: {
  50308. height: math.unit(5, "feet"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/nova-nerium/front.svg",
  50312. extra: 1548/1392,
  50313. bottom: 374/1922
  50314. }
  50315. },
  50316. back: {
  50317. height: math.unit(5, "feet"),
  50318. name: "Back",
  50319. image: {
  50320. source: "./media/characters/nova-nerium/back.svg",
  50321. extra: 1658/1468,
  50322. bottom: 257/1915
  50323. }
  50324. },
  50325. },
  50326. [
  50327. {
  50328. name: "Normal",
  50329. height: math.unit(5, "feet"),
  50330. default: true
  50331. },
  50332. ]
  50333. ))
  50334. characterMakers.push(() => makeCharacter(
  50335. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50336. {
  50337. front: {
  50338. height: math.unit(5 + 4/12, "feet"),
  50339. name: "Front",
  50340. image: {
  50341. source: "./media/characters/ashe-pyriph/front.svg",
  50342. extra: 1935/1747,
  50343. bottom: 60/1995
  50344. }
  50345. },
  50346. },
  50347. [
  50348. {
  50349. name: "Normal",
  50350. height: math.unit(5 + 4/12, "feet"),
  50351. default: true
  50352. },
  50353. ]
  50354. ))
  50355. characterMakers.push(() => makeCharacter(
  50356. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50357. {
  50358. front: {
  50359. height: math.unit(8.7, "feet"),
  50360. name: "Front",
  50361. image: {
  50362. source: "./media/characters/flicker-wisp/front.svg",
  50363. extra: 1835/1613,
  50364. bottom: 449/2284
  50365. }
  50366. },
  50367. side: {
  50368. height: math.unit(8.7, "feet"),
  50369. name: "Side",
  50370. image: {
  50371. source: "./media/characters/flicker-wisp/side.svg",
  50372. extra: 1841/1642,
  50373. bottom: 336/2177
  50374. },
  50375. default: true
  50376. },
  50377. maw: {
  50378. height: math.unit(3.35, "feet"),
  50379. name: "Maw",
  50380. image: {
  50381. source: "./media/characters/flicker-wisp/maw.svg",
  50382. extra: 2338/1506,
  50383. bottom: 0/2338
  50384. }
  50385. },
  50386. ovipositor: {
  50387. height: math.unit(4.95, "feet"),
  50388. name: "Ovipositor",
  50389. image: {
  50390. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50391. }
  50392. },
  50393. egg: {
  50394. height: math.unit(0.385, "feet"),
  50395. weight: math.unit(2, "lb"),
  50396. name: "Egg",
  50397. image: {
  50398. source: "./media/characters/flicker-wisp/egg.svg"
  50399. }
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Normal",
  50405. height: math.unit(8.7, "feet"),
  50406. default: true
  50407. },
  50408. ]
  50409. ))
  50410. characterMakers.push(() => makeCharacter(
  50411. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50412. {
  50413. side: {
  50414. height: math.unit(11, "feet"),
  50415. name: "Side",
  50416. image: {
  50417. source: "./media/characters/faefnul/side.svg",
  50418. extra: 1100/1007,
  50419. bottom: 0/1100
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Normal",
  50426. height: math.unit(11, "feet"),
  50427. default: true
  50428. },
  50429. ]
  50430. ))
  50431. characterMakers.push(() => makeCharacter(
  50432. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50433. {
  50434. front: {
  50435. height: math.unit(6 + 2/12, "feet"),
  50436. name: "Front",
  50437. image: {
  50438. source: "./media/characters/shady/front.svg",
  50439. extra: 502/461,
  50440. bottom: 9/511
  50441. }
  50442. },
  50443. kneeling: {
  50444. height: math.unit(4.6, "feet"),
  50445. name: "Kneeling",
  50446. image: {
  50447. source: "./media/characters/shady/kneeling.svg",
  50448. extra: 1328/1219,
  50449. bottom: 117/1445
  50450. }
  50451. },
  50452. maw: {
  50453. height: math.unit(2, "feet"),
  50454. name: "Maw",
  50455. image: {
  50456. source: "./media/characters/shady/maw.svg"
  50457. }
  50458. },
  50459. },
  50460. [
  50461. {
  50462. name: "Nano",
  50463. height: math.unit(1, "mm")
  50464. },
  50465. {
  50466. name: "Micro",
  50467. height: math.unit(12, "mm")
  50468. },
  50469. {
  50470. name: "Tiny",
  50471. height: math.unit(3, "inches")
  50472. },
  50473. {
  50474. name: "Normal",
  50475. height: math.unit(6 + 2/12, "feet"),
  50476. default: true
  50477. },
  50478. {
  50479. name: "Big",
  50480. height: math.unit(15, "feet")
  50481. },
  50482. {
  50483. name: "Macro",
  50484. height: math.unit(150, "feet")
  50485. },
  50486. {
  50487. name: "Titanic",
  50488. height: math.unit(500, "feet")
  50489. },
  50490. ]
  50491. ))
  50492. characterMakers.push(() => makeCharacter(
  50493. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50494. {
  50495. front: {
  50496. height: math.unit(12, "feet"),
  50497. name: "Front",
  50498. image: {
  50499. source: "./media/characters/fenrir/front.svg",
  50500. extra: 968/875,
  50501. bottom: 22/990
  50502. }
  50503. },
  50504. },
  50505. [
  50506. {
  50507. name: "Big",
  50508. height: math.unit(12, "feet"),
  50509. default: true
  50510. },
  50511. ]
  50512. ))
  50513. characterMakers.push(() => makeCharacter(
  50514. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50515. {
  50516. front: {
  50517. height: math.unit(5 + 4/12, "feet"),
  50518. name: "Front",
  50519. image: {
  50520. source: "./media/characters/makar/front.svg",
  50521. extra: 1181/1112,
  50522. bottom: 78/1259
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Normal",
  50529. height: math.unit(5 + 4/12, "feet"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50536. {
  50537. front: {
  50538. height: math.unit(5 + 7/12, "feet"),
  50539. name: "Front",
  50540. image: {
  50541. source: "./media/characters/callow/front.svg",
  50542. extra: 1482/1304,
  50543. bottom: 23/1505
  50544. }
  50545. },
  50546. back: {
  50547. height: math.unit(5 + 7/12, "feet"),
  50548. name: "Back",
  50549. image: {
  50550. source: "./media/characters/callow/back.svg",
  50551. extra: 1484/1296,
  50552. bottom: 25/1509
  50553. }
  50554. },
  50555. },
  50556. [
  50557. {
  50558. name: "Micro",
  50559. height: math.unit(3, "inches"),
  50560. default: true
  50561. },
  50562. {
  50563. name: "Normal",
  50564. height: math.unit(5 + 7/12, "feet")
  50565. },
  50566. ]
  50567. ))
  50568. characterMakers.push(() => makeCharacter(
  50569. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50570. {
  50571. front: {
  50572. height: math.unit(6 + 2/12, "feet"),
  50573. name: "Front",
  50574. image: {
  50575. source: "./media/characters/natel/front.svg",
  50576. extra: 1833/1692,
  50577. bottom: 166/1999
  50578. }
  50579. },
  50580. },
  50581. [
  50582. {
  50583. name: "Normal",
  50584. height: math.unit(6 + 2/12, "feet"),
  50585. default: true
  50586. },
  50587. ]
  50588. ))
  50589. characterMakers.push(() => makeCharacter(
  50590. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50591. {
  50592. front: {
  50593. height: math.unit(1.75, "meters"),
  50594. name: "Front",
  50595. image: {
  50596. source: "./media/characters/misu/front.svg",
  50597. extra: 1690/1558,
  50598. bottom: 234/1924
  50599. }
  50600. },
  50601. back: {
  50602. height: math.unit(1.75, "meters"),
  50603. name: "Back",
  50604. image: {
  50605. source: "./media/characters/misu/back.svg",
  50606. extra: 1762/1618,
  50607. bottom: 146/1908
  50608. }
  50609. },
  50610. frontNude: {
  50611. height: math.unit(1.75, "meters"),
  50612. name: "Front (Nude)",
  50613. image: {
  50614. source: "./media/characters/misu/front-nude.svg",
  50615. extra: 1690/1558,
  50616. bottom: 234/1924
  50617. }
  50618. },
  50619. backNude: {
  50620. height: math.unit(1.75, "meters"),
  50621. name: "Back (Nude)",
  50622. image: {
  50623. source: "./media/characters/misu/back-nude.svg",
  50624. extra: 1762/1618,
  50625. bottom: 146/1908
  50626. }
  50627. },
  50628. frontErect: {
  50629. height: math.unit(1.75, "meters"),
  50630. name: "Front (Erect)",
  50631. image: {
  50632. source: "./media/characters/misu/front-erect.svg",
  50633. extra: 1690/1558,
  50634. bottom: 234/1924
  50635. }
  50636. },
  50637. maw: {
  50638. height: math.unit(0.47, "meters"),
  50639. name: "Maw",
  50640. image: {
  50641. source: "./media/characters/misu/maw.svg"
  50642. }
  50643. },
  50644. head: {
  50645. height: math.unit(0.35, "meters"),
  50646. name: "Head",
  50647. image: {
  50648. source: "./media/characters/misu/head.svg"
  50649. }
  50650. },
  50651. rear: {
  50652. height: math.unit(0.47, "meters"),
  50653. name: "Rear",
  50654. image: {
  50655. source: "./media/characters/misu/rear.svg"
  50656. }
  50657. },
  50658. },
  50659. [
  50660. {
  50661. name: "Normal",
  50662. height: math.unit(1.75, "meters")
  50663. },
  50664. {
  50665. name: "Not good for the people",
  50666. height: math.unit(42, "meters")
  50667. },
  50668. {
  50669. name: "Not good for the neighborhood",
  50670. height: math.unit(135, "meters")
  50671. },
  50672. {
  50673. name: "Bit bigger problem",
  50674. height: math.unit(380, "meters"),
  50675. default: true
  50676. },
  50677. {
  50678. name: "Not good for the city",
  50679. height: math.unit(1.5, "km")
  50680. },
  50681. {
  50682. name: "Not good for the county",
  50683. height: math.unit(5.5, "km")
  50684. },
  50685. {
  50686. name: "Not good for the state",
  50687. height: math.unit(25, "km")
  50688. },
  50689. {
  50690. name: "Not good for the country",
  50691. height: math.unit(125, "km")
  50692. },
  50693. {
  50694. name: "Not good for the continent",
  50695. height: math.unit(2100, "km")
  50696. },
  50697. {
  50698. name: "Not good for the planet",
  50699. height: math.unit(35000, "km")
  50700. },
  50701. {
  50702. name: "Just no",
  50703. height: math.unit(8.5e18, "km")
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(6.5, "feet"),
  50712. name: "Front",
  50713. image: {
  50714. source: "./media/characters/poppy/front.svg",
  50715. extra: 1878/1812,
  50716. bottom: 43/1921
  50717. }
  50718. },
  50719. feet: {
  50720. height: math.unit(1.06, "feet"),
  50721. name: "Feet",
  50722. image: {
  50723. source: "./media/characters/poppy/feet.svg",
  50724. extra: 1083/1083,
  50725. bottom: 87/1170
  50726. }
  50727. },
  50728. },
  50729. [
  50730. {
  50731. name: "Human",
  50732. height: math.unit(6.5, "feet")
  50733. },
  50734. {
  50735. name: "Default",
  50736. height: math.unit(300, "feet"),
  50737. default: true
  50738. },
  50739. {
  50740. name: "Huge",
  50741. height: math.unit(850, "feet")
  50742. },
  50743. {
  50744. name: "Mega",
  50745. height: math.unit(8000, "feet")
  50746. },
  50747. {
  50748. name: "Giga",
  50749. height: math.unit(300, "miles")
  50750. },
  50751. ]
  50752. ))
  50753. characterMakers.push(() => makeCharacter(
  50754. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50755. {
  50756. bipedal: {
  50757. height: math.unit(7, "feet"),
  50758. name: "Bipedal",
  50759. image: {
  50760. source: "./media/characters/zener/bipedal.svg",
  50761. extra: 874/805,
  50762. bottom: 109/983
  50763. }
  50764. },
  50765. quadrupedal: {
  50766. height: math.unit(4.64, "feet"),
  50767. name: "Quadrupedal",
  50768. image: {
  50769. source: "./media/characters/zener/quadrupedal.svg",
  50770. extra: 638/507,
  50771. bottom: 190/828
  50772. }
  50773. },
  50774. cock: {
  50775. height: math.unit(18, "inches"),
  50776. name: "Cock",
  50777. image: {
  50778. source: "./media/characters/zener/cock.svg"
  50779. }
  50780. },
  50781. },
  50782. [
  50783. {
  50784. name: "Normal",
  50785. height: math.unit(7, "feet"),
  50786. default: true
  50787. },
  50788. ]
  50789. ))
  50790. characterMakers.push(() => makeCharacter(
  50791. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50792. {
  50793. nude: {
  50794. height: math.unit(5 + 6/12, "feet"),
  50795. name: "Nude",
  50796. image: {
  50797. source: "./media/characters/charlie-dog/nude.svg",
  50798. extra: 768/734,
  50799. bottom: 26/794
  50800. }
  50801. },
  50802. dressed: {
  50803. height: math.unit(5 + 6/12, "feet"),
  50804. name: "Dressed",
  50805. image: {
  50806. source: "./media/characters/charlie-dog/dressed.svg",
  50807. extra: 768/734,
  50808. bottom: 26/794
  50809. }
  50810. },
  50811. },
  50812. [
  50813. {
  50814. name: "Normal",
  50815. height: math.unit(5 + 6/12, "feet"),
  50816. default: true
  50817. },
  50818. ]
  50819. ))
  50820. characterMakers.push(() => makeCharacter(
  50821. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50822. {
  50823. front: {
  50824. height: math.unit(6 + 4/12, "feet"),
  50825. name: "Front",
  50826. image: {
  50827. source: "./media/characters/ir'istrasz/front.svg",
  50828. extra: 1014/977,
  50829. bottom: 65/1079
  50830. }
  50831. },
  50832. back: {
  50833. height: math.unit(6 + 4/12, "feet"),
  50834. name: "Back",
  50835. image: {
  50836. source: "./media/characters/ir'istrasz/back.svg",
  50837. extra: 1024/992,
  50838. bottom: 34/1058
  50839. }
  50840. },
  50841. },
  50842. [
  50843. {
  50844. name: "Normal",
  50845. height: math.unit(6 + 4/12, "feet"),
  50846. default: true
  50847. },
  50848. ]
  50849. ))
  50850. characterMakers.push(() => makeCharacter(
  50851. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50852. {
  50853. front: {
  50854. height: math.unit(5 + 8/12, "feet"),
  50855. name: "Front",
  50856. image: {
  50857. source: "./media/characters/dee-ditto/front.svg",
  50858. extra: 1874/1785,
  50859. bottom: 68/1942
  50860. }
  50861. },
  50862. back: {
  50863. height: math.unit(5 + 8/12, "feet"),
  50864. name: "Back",
  50865. image: {
  50866. source: "./media/characters/dee-ditto/back.svg",
  50867. extra: 1870/1783,
  50868. bottom: 77/1947
  50869. }
  50870. },
  50871. },
  50872. [
  50873. {
  50874. name: "Normal",
  50875. height: math.unit(5 + 8/12, "feet"),
  50876. default: true
  50877. },
  50878. ]
  50879. ))
  50880. characterMakers.push(() => makeCharacter(
  50881. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50882. {
  50883. front: {
  50884. height: math.unit(7 + 6/12, "feet"),
  50885. name: "Front",
  50886. image: {
  50887. source: "./media/characters/fey/front.svg",
  50888. extra: 995/979,
  50889. bottom: 30/1025
  50890. }
  50891. },
  50892. back: {
  50893. height: math.unit(7 + 6/12, "feet"),
  50894. name: "Back",
  50895. image: {
  50896. source: "./media/characters/fey/back.svg",
  50897. extra: 1079/1008,
  50898. bottom: 5/1084
  50899. }
  50900. },
  50901. dressed: {
  50902. height: math.unit(7 + 6/12, "feet"),
  50903. name: "Dressed",
  50904. image: {
  50905. source: "./media/characters/fey/dressed.svg",
  50906. extra: 995/979,
  50907. bottom: 30/1025
  50908. }
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Normal",
  50914. height: math.unit(7 + 6/12, "feet"),
  50915. default: true
  50916. },
  50917. ]
  50918. ))
  50919. characterMakers.push(() => makeCharacter(
  50920. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50921. {
  50922. standing: {
  50923. height: math.unit(17, "feet"),
  50924. name: "Standing",
  50925. image: {
  50926. source: "./media/characters/aster/standing.svg",
  50927. extra: 1798/1598,
  50928. bottom: 117/1915
  50929. }
  50930. },
  50931. },
  50932. [
  50933. {
  50934. name: "Normal",
  50935. height: math.unit(17, "feet"),
  50936. default: true
  50937. },
  50938. {
  50939. name: "Homewrecker",
  50940. height: math.unit(95, "feet")
  50941. },
  50942. {
  50943. name: "Planet Devourer",
  50944. height: math.unit(1008000, "miles")
  50945. },
  50946. ]
  50947. ))
  50948. characterMakers.push(() => makeCharacter(
  50949. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50950. {
  50951. front: {
  50952. height: math.unit(6 + 5/12, "feet"),
  50953. weight: math.unit(265, "lb"),
  50954. name: "Front",
  50955. image: {
  50956. source: "./media/characters/devon-childs/front.svg",
  50957. extra: 1795/1721,
  50958. bottom: 41/1836
  50959. }
  50960. },
  50961. side: {
  50962. height: math.unit(6 + 5/12, "feet"),
  50963. weight: math.unit(265, "lb"),
  50964. name: "Side",
  50965. image: {
  50966. source: "./media/characters/devon-childs/side.svg",
  50967. extra: 1812/1738,
  50968. bottom: 30/1842
  50969. }
  50970. },
  50971. back: {
  50972. height: math.unit(6 + 5/12, "feet"),
  50973. weight: math.unit(265, "lb"),
  50974. name: "Back",
  50975. image: {
  50976. source: "./media/characters/devon-childs/back.svg",
  50977. extra: 1808/1735,
  50978. bottom: 23/1831
  50979. }
  50980. },
  50981. hand: {
  50982. height: math.unit(1.464, "feet"),
  50983. name: "Hand",
  50984. image: {
  50985. source: "./media/characters/devon-childs/hand.svg"
  50986. }
  50987. },
  50988. foot: {
  50989. height: math.unit(1.6, "feet"),
  50990. name: "Foot",
  50991. image: {
  50992. source: "./media/characters/devon-childs/foot.svg"
  50993. }
  50994. },
  50995. },
  50996. [
  50997. {
  50998. name: "Micro",
  50999. height: math.unit(7, "cm")
  51000. },
  51001. {
  51002. name: "Normal",
  51003. height: math.unit(6 + 5/12, "feet"),
  51004. default: true
  51005. },
  51006. {
  51007. name: "Macro",
  51008. height: math.unit(154, "feet")
  51009. },
  51010. ]
  51011. ))
  51012. characterMakers.push(() => makeCharacter(
  51013. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51014. {
  51015. front: {
  51016. height: math.unit(6, "feet"),
  51017. weight: math.unit(180, "lb"),
  51018. name: "Front",
  51019. image: {
  51020. source: "./media/characters/lydemox-vir/front.svg",
  51021. extra: 1632/1435,
  51022. bottom: 58/1690
  51023. }
  51024. },
  51025. frontSFW: {
  51026. height: math.unit(6, "feet"),
  51027. weight: math.unit(180, "lb"),
  51028. name: "Front (SFW)",
  51029. image: {
  51030. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51031. extra: 1632/1435,
  51032. bottom: 58/1690
  51033. }
  51034. },
  51035. back: {
  51036. height: math.unit(6, "feet"),
  51037. weight: math.unit(180, "lb"),
  51038. name: "Back",
  51039. image: {
  51040. source: "./media/characters/lydemox-vir/back.svg",
  51041. extra: 1593/1408,
  51042. bottom: 31/1624
  51043. }
  51044. },
  51045. paw: {
  51046. height: math.unit(1.85, "feet"),
  51047. name: "Paw",
  51048. image: {
  51049. source: "./media/characters/lydemox-vir/paw.svg"
  51050. }
  51051. },
  51052. dick: {
  51053. height: math.unit(1.8, "feet"),
  51054. name: "Dick",
  51055. image: {
  51056. source: "./media/characters/lydemox-vir/dick.svg"
  51057. }
  51058. },
  51059. },
  51060. [
  51061. {
  51062. name: "Macro",
  51063. height: math.unit(100, "feet"),
  51064. default: true
  51065. },
  51066. {
  51067. name: "Teramacro",
  51068. height: math.unit(1, "earth")
  51069. },
  51070. {
  51071. name: "Planetary",
  51072. height: math.unit(20, "earths")
  51073. },
  51074. ]
  51075. ))
  51076. characterMakers.push(() => makeCharacter(
  51077. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51078. {
  51079. front: {
  51080. height: math.unit(15 + 8/12, "feet"),
  51081. weight: math.unit(1237, "kg"),
  51082. name: "Front",
  51083. image: {
  51084. source: "./media/characters/mia/front.svg",
  51085. extra: 1573/1446,
  51086. bottom: 58/1631
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Small",
  51093. height: math.unit(9 + 5/12, "feet")
  51094. },
  51095. {
  51096. name: "Normal",
  51097. height: math.unit(15 + 8/12, "feet"),
  51098. default: true
  51099. },
  51100. ]
  51101. ))
  51102. characterMakers.push(() => makeCharacter(
  51103. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51104. {
  51105. front: {
  51106. height: math.unit(10 + 6/12, "feet"),
  51107. weight: math.unit(1.3, "tons"),
  51108. name: "Front",
  51109. image: {
  51110. source: "./media/characters/mr-graves/front.svg",
  51111. extra: 1779/1695,
  51112. bottom: 198/1977
  51113. }
  51114. },
  51115. },
  51116. [
  51117. {
  51118. name: "Normal",
  51119. height: math.unit(10 + 6 /12, "feet"),
  51120. default: true
  51121. },
  51122. ]
  51123. ))
  51124. characterMakers.push(() => makeCharacter(
  51125. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51126. {
  51127. dressedFront: {
  51128. height: math.unit(5 + 8/12, "feet"),
  51129. weight: math.unit(125, "lb"),
  51130. name: "Dressed (Front)",
  51131. image: {
  51132. source: "./media/characters/jess/dressed-front.svg",
  51133. extra: 1176/1152,
  51134. bottom: 42/1218
  51135. }
  51136. },
  51137. dressedSide: {
  51138. height: math.unit(5 + 8/12, "feet"),
  51139. weight: math.unit(125, "lb"),
  51140. name: "Dressed (Side)",
  51141. image: {
  51142. source: "./media/characters/jess/dressed-side.svg",
  51143. extra: 1204/1190,
  51144. bottom: 6/1210
  51145. }
  51146. },
  51147. nudeFront: {
  51148. height: math.unit(5 + 8/12, "feet"),
  51149. weight: math.unit(125, "lb"),
  51150. name: "Nude (Front)",
  51151. image: {
  51152. source: "./media/characters/jess/nude-front.svg",
  51153. extra: 1176/1152,
  51154. bottom: 42/1218
  51155. }
  51156. },
  51157. nudeSide: {
  51158. height: math.unit(5 + 8/12, "feet"),
  51159. weight: math.unit(125, "lb"),
  51160. name: "Nude (Side)",
  51161. image: {
  51162. source: "./media/characters/jess/nude-side.svg",
  51163. extra: 1204/1190,
  51164. bottom: 6/1210
  51165. }
  51166. },
  51167. organsFront: {
  51168. height: math.unit(2.83799342105, "feet"),
  51169. name: "Organs (Front)",
  51170. image: {
  51171. source: "./media/characters/jess/organs-front.svg"
  51172. }
  51173. },
  51174. organsSide: {
  51175. height: math.unit(2.64225290474, "feet"),
  51176. name: "Organs (Side)",
  51177. image: {
  51178. source: "./media/characters/jess/organs-side.svg"
  51179. }
  51180. },
  51181. digestiveTractFront: {
  51182. height: math.unit(2.8106580871, "feet"),
  51183. name: "Digestive Tract (Front)",
  51184. image: {
  51185. source: "./media/characters/jess/digestive-tract-front.svg"
  51186. }
  51187. },
  51188. digestiveTractSide: {
  51189. height: math.unit(2.54365045014, "feet"),
  51190. name: "Digestive Tract (Side)",
  51191. image: {
  51192. source: "./media/characters/jess/digestive-tract-side.svg"
  51193. }
  51194. },
  51195. respiratorySystemFront: {
  51196. height: math.unit(1.11196233456, "feet"),
  51197. name: "Respiratory System (Front)",
  51198. image: {
  51199. source: "./media/characters/jess/respiratory-system-front.svg"
  51200. }
  51201. },
  51202. respiratorySystemSide: {
  51203. height: math.unit(0.89327966297, "feet"),
  51204. name: "Respiratory System (Side)",
  51205. image: {
  51206. source: "./media/characters/jess/respiratory-system-side.svg"
  51207. }
  51208. },
  51209. urinaryTractFront: {
  51210. height: math.unit(1.16126356186, "feet"),
  51211. name: "Urinary Tract (Front)",
  51212. image: {
  51213. source: "./media/characters/jess/urinary-tract-front.svg"
  51214. }
  51215. },
  51216. urinaryTractSide: {
  51217. height: math.unit(1.20910039627, "feet"),
  51218. name: "Urinary Tract (Side)",
  51219. image: {
  51220. source: "./media/characters/jess/urinary-tract-side.svg"
  51221. }
  51222. },
  51223. reproductiveOrgansFront: {
  51224. height: math.unit(0.48422591566, "feet"),
  51225. name: "Reproductive Organs (Front)",
  51226. image: {
  51227. source: "./media/characters/jess/reproductive-organs-front.svg"
  51228. }
  51229. },
  51230. reproductiveOrgansSide: {
  51231. height: math.unit(0.61553314481, "feet"),
  51232. name: "Reproductive Organs (Side)",
  51233. image: {
  51234. source: "./media/characters/jess/reproductive-organs-side.svg"
  51235. }
  51236. },
  51237. breastsFront: {
  51238. height: math.unit(0.47690395121, "feet"),
  51239. name: "Breasts (Front)",
  51240. image: {
  51241. source: "./media/characters/jess/breasts-front.svg"
  51242. }
  51243. },
  51244. breastsSide: {
  51245. height: math.unit(0.30556998307, "feet"),
  51246. name: "Breasts (Side)",
  51247. image: {
  51248. source: "./media/characters/jess/breasts-side.svg"
  51249. }
  51250. },
  51251. heartFront: {
  51252. height: math.unit(0.53011022622, "feet"),
  51253. name: "Heart (Front)",
  51254. image: {
  51255. source: "./media/characters/jess/heart-front.svg"
  51256. }
  51257. },
  51258. heartSide: {
  51259. height: math.unit(0.51790695213, "feet"),
  51260. name: "Heart (Side)",
  51261. image: {
  51262. source: "./media/characters/jess/heart-side.svg"
  51263. }
  51264. },
  51265. earsAndNoseFront: {
  51266. height: math.unit(0.29385483995, "feet"),
  51267. name: "Ears and Nose (Front)",
  51268. image: {
  51269. source: "./media/characters/jess/ears-and-nose-front.svg"
  51270. }
  51271. },
  51272. earsAndNoseSide: {
  51273. height: math.unit(0.18109658741, "feet"),
  51274. name: "Ears and Nose (Side)",
  51275. image: {
  51276. source: "./media/characters/jess/ears-and-nose-side.svg"
  51277. }
  51278. },
  51279. },
  51280. [
  51281. {
  51282. name: "Normal",
  51283. height: math.unit(5 + 8/12, "feet"),
  51284. default: true
  51285. },
  51286. ]
  51287. ))
  51288. characterMakers.push(() => makeCharacter(
  51289. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51290. {
  51291. front: {
  51292. height: math.unit(6, "feet"),
  51293. weight: math.unit(6.64467e-7, "grams"),
  51294. name: "Front",
  51295. image: {
  51296. source: "./media/characters/wimpering/front.svg",
  51297. extra: 597/587,
  51298. bottom: 34/631
  51299. }
  51300. },
  51301. },
  51302. [
  51303. {
  51304. name: "Micro",
  51305. height: math.unit(0.4, "mm"),
  51306. default: true
  51307. },
  51308. ]
  51309. ))
  51310. characterMakers.push(() => makeCharacter(
  51311. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51312. {
  51313. front: {
  51314. height: math.unit(5 + 2/12, "feet"),
  51315. weight: math.unit(110, "lb"),
  51316. name: "Front",
  51317. image: {
  51318. source: "./media/characters/keltre/front.svg",
  51319. extra: 1099/1057,
  51320. bottom: 22/1121
  51321. }
  51322. },
  51323. back: {
  51324. height: math.unit(5 + 2/12, "feet"),
  51325. weight: math.unit(110, "lb"),
  51326. name: "Back",
  51327. image: {
  51328. source: "./media/characters/keltre/back.svg",
  51329. extra: 1095/1053,
  51330. bottom: 17/1112
  51331. }
  51332. },
  51333. dressed: {
  51334. height: math.unit(5 + 2/12, "feet"),
  51335. weight: math.unit(110, "lb"),
  51336. name: "Dressed",
  51337. image: {
  51338. source: "./media/characters/keltre/dressed.svg",
  51339. extra: 1099/1057,
  51340. bottom: 22/1121
  51341. }
  51342. },
  51343. winter: {
  51344. height: math.unit(5 + 2/12, "feet"),
  51345. weight: math.unit(110, "lb"),
  51346. name: "Winter",
  51347. image: {
  51348. source: "./media/characters/keltre/winter.svg",
  51349. extra: 1099/1057,
  51350. bottom: 22/1121
  51351. }
  51352. },
  51353. head: {
  51354. height: math.unit(1.61 * 0.86, "feet"),
  51355. name: "Head",
  51356. image: {
  51357. source: "./media/characters/keltre/head.svg",
  51358. extra: 534/421,
  51359. bottom: 0/534
  51360. }
  51361. },
  51362. hand: {
  51363. height: math.unit(1.3 * 0.86, "feet"),
  51364. name: "Hand",
  51365. image: {
  51366. source: "./media/characters/keltre/hand.svg"
  51367. }
  51368. },
  51369. foot: {
  51370. height: math.unit(1.8 * 0.86, "feet"),
  51371. name: "Foot",
  51372. image: {
  51373. source: "./media/characters/keltre/foot.svg"
  51374. }
  51375. },
  51376. },
  51377. [
  51378. {
  51379. name: "Fine",
  51380. height: math.unit(1, "inch")
  51381. },
  51382. {
  51383. name: "Dimnutive",
  51384. height: math.unit(4, "inches")
  51385. },
  51386. {
  51387. name: "Tiny",
  51388. height: math.unit(1, "foot")
  51389. },
  51390. {
  51391. name: "Small",
  51392. height: math.unit(3, "feet")
  51393. },
  51394. {
  51395. name: "Normal",
  51396. height: math.unit(5 + 2/12, "feet"),
  51397. default: true
  51398. },
  51399. ]
  51400. ))
  51401. characterMakers.push(() => makeCharacter(
  51402. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51403. {
  51404. front: {
  51405. height: math.unit(6 + 2/12, "feet"),
  51406. name: "Front",
  51407. image: {
  51408. source: "./media/characters/nox/front.svg",
  51409. extra: 1917/1830,
  51410. bottom: 74/1991
  51411. }
  51412. },
  51413. back: {
  51414. height: math.unit(6 + 2/12, "feet"),
  51415. name: "Back",
  51416. image: {
  51417. source: "./media/characters/nox/back.svg",
  51418. extra: 1896/1815,
  51419. bottom: 21/1917
  51420. }
  51421. },
  51422. head: {
  51423. height: math.unit(1.1, "feet"),
  51424. name: "Head",
  51425. image: {
  51426. source: "./media/characters/nox/head.svg",
  51427. extra: 874/704,
  51428. bottom: 0/874
  51429. }
  51430. },
  51431. tattoo: {
  51432. height: math.unit(0.729, "feet"),
  51433. name: "Tattoo",
  51434. image: {
  51435. source: "./media/characters/nox/tattoo.svg"
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Normal",
  51442. height: math.unit(6 + 2/12, "feet")
  51443. },
  51444. {
  51445. name: "Gigamacro",
  51446. height: math.unit(2, "earths"),
  51447. default: true
  51448. },
  51449. {
  51450. name: "Cosmic",
  51451. height: math.unit(867, "yottameters")
  51452. },
  51453. ]
  51454. ))
  51455. characterMakers.push(() => makeCharacter(
  51456. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51457. {
  51458. front: {
  51459. height: math.unit(6, "feet"),
  51460. weight: math.unit(150, "lb"),
  51461. name: "Front",
  51462. image: {
  51463. source: "./media/characters/caspian/front.svg",
  51464. extra: 1443/1359,
  51465. bottom: 0/1443
  51466. }
  51467. },
  51468. back: {
  51469. height: math.unit(6, "feet"),
  51470. weight: math.unit(150, "lb"),
  51471. name: "Back",
  51472. image: {
  51473. source: "./media/characters/caspian/back.svg",
  51474. extra: 1379/1309,
  51475. bottom: 0/1379
  51476. }
  51477. },
  51478. head: {
  51479. height: math.unit(0.9, "feet"),
  51480. name: "Head",
  51481. image: {
  51482. source: "./media/characters/caspian/head.svg",
  51483. extra: 692/492,
  51484. bottom: 0/692
  51485. }
  51486. },
  51487. headAlt: {
  51488. height: math.unit(0.95, "feet"),
  51489. name: "Head (Alt)",
  51490. image: {
  51491. source: "./media/characters/caspian/head-alt.svg",
  51492. extra: 668/508,
  51493. bottom: 0/668
  51494. }
  51495. },
  51496. hand: {
  51497. height: math.unit(0.8, "feet"),
  51498. name: "Hand",
  51499. image: {
  51500. source: "./media/characters/caspian/hand.svg"
  51501. }
  51502. },
  51503. paw: {
  51504. height: math.unit(0.95, "feet"),
  51505. name: "Paw",
  51506. image: {
  51507. source: "./media/characters/caspian/paw.svg"
  51508. }
  51509. },
  51510. },
  51511. [
  51512. {
  51513. name: "Normal",
  51514. height: math.unit(162, "feet"),
  51515. default: true
  51516. },
  51517. ]
  51518. ))
  51519. characterMakers.push(() => makeCharacter(
  51520. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51521. {
  51522. front: {
  51523. height: math.unit(6, "feet"),
  51524. name: "Front",
  51525. image: {
  51526. source: "./media/characters/myra-aisling/front.svg",
  51527. extra: 1268/1166,
  51528. bottom: 73/1341
  51529. }
  51530. },
  51531. back: {
  51532. height: math.unit(6, "feet"),
  51533. name: "Back",
  51534. image: {
  51535. source: "./media/characters/myra-aisling/back.svg",
  51536. extra: 1249/1149,
  51537. bottom: 79/1328
  51538. }
  51539. },
  51540. dressed: {
  51541. height: math.unit(6, "feet"),
  51542. name: "Dressed",
  51543. image: {
  51544. source: "./media/characters/myra-aisling/dressed.svg",
  51545. extra: 1290/1189,
  51546. bottom: 47/1337
  51547. }
  51548. },
  51549. hand: {
  51550. height: math.unit(1.1, "feet"),
  51551. name: "Hand",
  51552. image: {
  51553. source: "./media/characters/myra-aisling/hand.svg"
  51554. }
  51555. },
  51556. paw: {
  51557. height: math.unit(1.23, "feet"),
  51558. name: "Paw",
  51559. image: {
  51560. source: "./media/characters/myra-aisling/paw.svg"
  51561. }
  51562. },
  51563. },
  51564. [
  51565. {
  51566. name: "Normal",
  51567. height: math.unit(160, "feet"),
  51568. default: true
  51569. },
  51570. ]
  51571. ))
  51572. characterMakers.push(() => makeCharacter(
  51573. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51574. {
  51575. front: {
  51576. height: math.unit(6, "feet"),
  51577. name: "Front",
  51578. image: {
  51579. source: "./media/characters/tenley-sidero/front.svg",
  51580. extra: 1365/1276,
  51581. bottom: 47/1412
  51582. }
  51583. },
  51584. back: {
  51585. height: math.unit(6, "feet"),
  51586. name: "Back",
  51587. image: {
  51588. source: "./media/characters/tenley-sidero/back.svg",
  51589. extra: 1383/1283,
  51590. bottom: 35/1418
  51591. }
  51592. },
  51593. dressed: {
  51594. height: math.unit(6, "feet"),
  51595. name: "Dressed",
  51596. image: {
  51597. source: "./media/characters/tenley-sidero/dressed.svg",
  51598. extra: 1364/1275,
  51599. bottom: 42/1406
  51600. }
  51601. },
  51602. head: {
  51603. height: math.unit(1.47, "feet"),
  51604. name: "Head",
  51605. image: {
  51606. source: "./media/characters/tenley-sidero/head.svg",
  51607. extra: 610/490,
  51608. bottom: 0/610
  51609. }
  51610. },
  51611. },
  51612. [
  51613. {
  51614. name: "Normal",
  51615. height: math.unit(154, "feet"),
  51616. default: true
  51617. },
  51618. ]
  51619. ))
  51620. characterMakers.push(() => makeCharacter(
  51621. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51622. {
  51623. front: {
  51624. height: math.unit(5, "inches"),
  51625. name: "Front",
  51626. image: {
  51627. source: "./media/characters/mallory/front.svg",
  51628. extra: 1919/1678,
  51629. bottom: 29/1948
  51630. }
  51631. },
  51632. hand: {
  51633. height: math.unit(0.73, "inches"),
  51634. name: "Hand",
  51635. image: {
  51636. source: "./media/characters/mallory/hand.svg"
  51637. }
  51638. },
  51639. paw: {
  51640. height: math.unit(0.68, "inches"),
  51641. name: "Paw",
  51642. image: {
  51643. source: "./media/characters/mallory/paw.svg"
  51644. }
  51645. },
  51646. },
  51647. [
  51648. {
  51649. name: "Small",
  51650. height: math.unit(5, "inches"),
  51651. default: true
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51657. {
  51658. naked: {
  51659. height: math.unit(6, "feet"),
  51660. name: "Naked",
  51661. image: {
  51662. source: "./media/characters/mab/naked.svg",
  51663. extra: 1855/1757,
  51664. bottom: 208/2063
  51665. }
  51666. },
  51667. outside: {
  51668. height: math.unit(6, "feet"),
  51669. name: "Outside",
  51670. image: {
  51671. source: "./media/characters/mab/outside.svg",
  51672. extra: 1855/1757,
  51673. bottom: 208/2063
  51674. }
  51675. },
  51676. party: {
  51677. height: math.unit(6, "feet"),
  51678. name: "Party",
  51679. image: {
  51680. source: "./media/characters/mab/party.svg",
  51681. extra: 1855/1757,
  51682. bottom: 208/2063
  51683. }
  51684. },
  51685. },
  51686. [
  51687. {
  51688. name: "Normal",
  51689. height: math.unit(165, "feet"),
  51690. default: true
  51691. },
  51692. ]
  51693. ))
  51694. characterMakers.push(() => makeCharacter(
  51695. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51696. {
  51697. feral: {
  51698. height: math.unit(12, "feet"),
  51699. weight: math.unit(20000, "lb"),
  51700. name: "Side",
  51701. image: {
  51702. source: "./media/characters/winter/feral.svg",
  51703. extra: 1286/943,
  51704. bottom: 112/1398
  51705. },
  51706. form: "feral",
  51707. default: true
  51708. },
  51709. feralNsfw: {
  51710. height: math.unit(12, "feet"),
  51711. weight: math.unit(20000, "lb"),
  51712. name: "Side (NSFW)",
  51713. image: {
  51714. source: "./media/characters/winter/feral-nsfw.svg",
  51715. extra: 1286/943,
  51716. bottom: 112/1398
  51717. },
  51718. form: "feral"
  51719. },
  51720. dick: {
  51721. height: math.unit(3.79, "feet"),
  51722. name: "Dick",
  51723. image: {
  51724. source: "./media/characters/winter/dick.svg"
  51725. },
  51726. form: "feral"
  51727. },
  51728. anthro: {
  51729. height: math.unit(12, "feet"),
  51730. weight: math.unit(10, "tons"),
  51731. name: "Anthro",
  51732. image: {
  51733. source: "./media/characters/winter/anthro.svg",
  51734. extra: 1701/1553,
  51735. bottom: 64/1765
  51736. },
  51737. form: "anthro",
  51738. default: true
  51739. },
  51740. },
  51741. [
  51742. {
  51743. name: "Big",
  51744. height: math.unit(12, "feet"),
  51745. default: true,
  51746. form: "feral"
  51747. },
  51748. {
  51749. name: "Big",
  51750. height: math.unit(12, "feet"),
  51751. default: true,
  51752. form: "anthro"
  51753. },
  51754. ],
  51755. {
  51756. "feral": {
  51757. name: "Feral",
  51758. default: true
  51759. },
  51760. "anthro": {
  51761. name: "Anthro"
  51762. }
  51763. }
  51764. ))
  51765. characterMakers.push(() => makeCharacter(
  51766. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51767. {
  51768. front: {
  51769. height: math.unit(4.1, "inches"),
  51770. name: "Front",
  51771. image: {
  51772. source: "./media/characters/alto/front.svg",
  51773. extra: 736/627,
  51774. bottom: 90/826
  51775. }
  51776. },
  51777. },
  51778. [
  51779. {
  51780. name: "Normal",
  51781. height: math.unit(4.1, "inches"),
  51782. default: true
  51783. },
  51784. ]
  51785. ))
  51786. characterMakers.push(() => makeCharacter(
  51787. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51788. {
  51789. sitting: {
  51790. height: math.unit(3, "feet"),
  51791. name: "Sitting",
  51792. image: {
  51793. source: "./media/characters/ratstrid-v/sitting.svg",
  51794. extra: 355/310,
  51795. bottom: 136/491
  51796. }
  51797. },
  51798. },
  51799. [
  51800. {
  51801. name: "Normal",
  51802. height: math.unit(3, "feet"),
  51803. default: true
  51804. },
  51805. ]
  51806. ))
  51807. characterMakers.push(() => makeCharacter(
  51808. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51809. {
  51810. back: {
  51811. height: math.unit(6, "feet"),
  51812. weight: math.unit(450, "lb"),
  51813. name: "Back",
  51814. image: {
  51815. source: "./media/characters/siz/back.svg",
  51816. extra: 1449/1274,
  51817. bottom: 13/1462
  51818. }
  51819. },
  51820. },
  51821. [
  51822. {
  51823. name: "Smallest",
  51824. height: math.unit(18 + 3/12, "feet")
  51825. },
  51826. {
  51827. name: "Modest",
  51828. height: math.unit(56 + 8/12, "feet"),
  51829. default: true
  51830. },
  51831. {
  51832. name: "Largest",
  51833. height: math.unit(3590, "feet")
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(5 + 9/12, "feet"),
  51842. weight: math.unit(150, "lb"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/ven/front.svg",
  51846. extra: 1372/1320,
  51847. bottom: 73/1445
  51848. }
  51849. },
  51850. side: {
  51851. height: math.unit(5 + 9/12, "feet"),
  51852. weight: math.unit(1150, "lb"),
  51853. name: "Side",
  51854. image: {
  51855. source: "./media/characters/ven/side.svg",
  51856. extra: 1119/1070,
  51857. bottom: 42/1161
  51858. },
  51859. default: true
  51860. },
  51861. },
  51862. [
  51863. {
  51864. name: "Normal",
  51865. height: math.unit(5 + 9/12, "feet"),
  51866. default: true
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51872. {
  51873. front: {
  51874. height: math.unit(12, "feet"),
  51875. weight: math.unit(1000, "kg"),
  51876. name: "Front",
  51877. image: {
  51878. source: "./media/characters/maple/front.svg",
  51879. extra: 1193/1081,
  51880. bottom: 22/1215
  51881. }
  51882. },
  51883. },
  51884. [
  51885. {
  51886. name: "Compressed",
  51887. height: math.unit(7, "feet")
  51888. },
  51889. {
  51890. name: "Normal",
  51891. height: math.unit(12, "feet"),
  51892. default: true
  51893. },
  51894. ]
  51895. ))
  51896. characterMakers.push(() => makeCharacter(
  51897. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51898. {
  51899. front: {
  51900. height: math.unit(9, "feet"),
  51901. weight: math.unit(1500, "lb"),
  51902. name: "Front",
  51903. image: {
  51904. source: "./media/characters/nora/front.svg",
  51905. extra: 1348/1286,
  51906. bottom: 218/1566
  51907. }
  51908. },
  51909. erect: {
  51910. height: math.unit(9, "feet"),
  51911. weight: math.unit(11500, "lb"),
  51912. name: "Erect",
  51913. image: {
  51914. source: "./media/characters/nora/erect.svg",
  51915. extra: 1488/1433,
  51916. bottom: 133/1621
  51917. }
  51918. },
  51919. },
  51920. [
  51921. {
  51922. name: "Normal",
  51923. height: math.unit(9, "feet"),
  51924. default: true
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(25, "feet"),
  51933. weight: math.unit(27500, "lb"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/north-caudin/front.svg",
  51937. extra: 1184/1082,
  51938. bottom: 23/1207
  51939. }
  51940. },
  51941. },
  51942. [
  51943. {
  51944. name: "Compressed",
  51945. height: math.unit(10, "feet")
  51946. },
  51947. {
  51948. name: "Normal",
  51949. height: math.unit(25, "feet"),
  51950. default: true
  51951. },
  51952. ]
  51953. ))
  51954. characterMakers.push(() => makeCharacter(
  51955. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51956. {
  51957. front: {
  51958. height: math.unit(9, "feet"),
  51959. weight: math.unit(1250, "lb"),
  51960. name: "Front",
  51961. image: {
  51962. source: "./media/characters/merrian/front.svg",
  51963. extra: 2393/2304,
  51964. bottom: 40/2433
  51965. }
  51966. },
  51967. },
  51968. [
  51969. {
  51970. name: "Normal",
  51971. height: math.unit(9, "feet"),
  51972. default: true
  51973. },
  51974. ]
  51975. ))
  51976. characterMakers.push(() => makeCharacter(
  51977. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51978. {
  51979. front: {
  51980. height: math.unit(9, "feet"),
  51981. weight: math.unit(1000, "lb"),
  51982. name: "Front",
  51983. image: {
  51984. source: "./media/characters/hazel/front.svg",
  51985. extra: 2351/2298,
  51986. bottom: 38/2389
  51987. }
  51988. },
  51989. },
  51990. [
  51991. {
  51992. name: "Normal",
  51993. height: math.unit(9, "feet"),
  51994. default: true
  51995. },
  51996. ]
  51997. ))
  51998. characterMakers.push(() => makeCharacter(
  51999. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52000. {
  52001. front: {
  52002. height: math.unit(13, "feet"),
  52003. weight: math.unit(3200, "lb"),
  52004. name: "Front",
  52005. image: {
  52006. source: "./media/characters/emma/front.svg",
  52007. extra: 2263/2029,
  52008. bottom: 68/2331
  52009. }
  52010. },
  52011. },
  52012. [
  52013. {
  52014. name: "Normal",
  52015. height: math.unit(13, "feet"),
  52016. default: true
  52017. },
  52018. ]
  52019. ))
  52020. characterMakers.push(() => makeCharacter(
  52021. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52022. {
  52023. front: {
  52024. height: math.unit(11 + 9/12, "feet"),
  52025. weight: math.unit(2500, "lb"),
  52026. name: "Front",
  52027. image: {
  52028. source: "./media/characters/ilumina/front.svg",
  52029. extra: 2248/2209,
  52030. bottom: 164/2412
  52031. }
  52032. },
  52033. },
  52034. [
  52035. {
  52036. name: "Normal",
  52037. height: math.unit(11 + 9/12, "feet"),
  52038. default: true
  52039. },
  52040. ]
  52041. ))
  52042. characterMakers.push(() => makeCharacter(
  52043. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52044. {
  52045. front: {
  52046. height: math.unit(8 + 10/12, "feet"),
  52047. weight: math.unit(1350, "lb"),
  52048. name: "Front",
  52049. image: {
  52050. source: "./media/characters/moonshine/front.svg",
  52051. extra: 2395/2288,
  52052. bottom: 40/2435
  52053. }
  52054. },
  52055. },
  52056. [
  52057. {
  52058. name: "Normal",
  52059. height: math.unit(8 + 10/12, "feet"),
  52060. default: true
  52061. },
  52062. ]
  52063. ))
  52064. characterMakers.push(() => makeCharacter(
  52065. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52066. {
  52067. front: {
  52068. height: math.unit(14, "feet"),
  52069. weight: math.unit(3400, "lb"),
  52070. name: "Front",
  52071. image: {
  52072. source: "./media/characters/aletia/front.svg",
  52073. extra: 1185/1052,
  52074. bottom: 21/1206
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Compressed",
  52081. height: math.unit(8, "feet")
  52082. },
  52083. {
  52084. name: "Normal",
  52085. height: math.unit(14, "feet"),
  52086. default: true
  52087. },
  52088. ]
  52089. ))
  52090. characterMakers.push(() => makeCharacter(
  52091. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52092. {
  52093. front: {
  52094. height: math.unit(17, "feet"),
  52095. weight: math.unit(6500, "lb"),
  52096. name: "Front",
  52097. image: {
  52098. source: "./media/characters/deidra/front.svg",
  52099. extra: 1201/1081,
  52100. bottom: 16/1217
  52101. }
  52102. },
  52103. },
  52104. [
  52105. {
  52106. name: "Compressed",
  52107. height: math.unit(9 + 6/12, "feet")
  52108. },
  52109. {
  52110. name: "Normal",
  52111. height: math.unit(17, "feet"),
  52112. default: true
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52118. {
  52119. front: {
  52120. height: math.unit(7 + 4/12, "feet"),
  52121. weight: math.unit(280, "lb"),
  52122. name: "Front",
  52123. image: {
  52124. source: "./media/characters/freki-yrmori/front.svg",
  52125. extra: 1286/1182,
  52126. bottom: 29/1315
  52127. }
  52128. },
  52129. maw: {
  52130. height: math.unit(0.9, "feet"),
  52131. name: "Maw",
  52132. image: {
  52133. source: "./media/characters/freki-yrmori/maw.svg"
  52134. }
  52135. },
  52136. },
  52137. [
  52138. {
  52139. name: "Normal",
  52140. height: math.unit(7 + 4/12, "feet"),
  52141. default: true
  52142. },
  52143. {
  52144. name: "Macro",
  52145. height: math.unit(38.5, "meters")
  52146. },
  52147. ]
  52148. ))
  52149. characterMakers.push(() => makeCharacter(
  52150. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52151. {
  52152. side: {
  52153. height: math.unit(47.2, "meters"),
  52154. weight: math.unit(10000, "tons"),
  52155. name: "Side",
  52156. image: {
  52157. source: "./media/characters/aetherios/side.svg",
  52158. extra: 2363/642,
  52159. bottom: 221/2584
  52160. }
  52161. },
  52162. top: {
  52163. height: math.unit(240, "meters"),
  52164. weight: math.unit(10000, "tons"),
  52165. name: "Top",
  52166. image: {
  52167. source: "./media/characters/aetherios/top.svg"
  52168. }
  52169. },
  52170. bottom: {
  52171. height: math.unit(240, "meters"),
  52172. weight: math.unit(10000, "tons"),
  52173. name: "Bottom",
  52174. image: {
  52175. source: "./media/characters/aetherios/bottom.svg"
  52176. }
  52177. },
  52178. head: {
  52179. height: math.unit(38.6, "meters"),
  52180. name: "Head",
  52181. image: {
  52182. source: "./media/characters/aetherios/head.svg",
  52183. extra: 1335/1112,
  52184. bottom: 0/1335
  52185. }
  52186. },
  52187. front: {
  52188. height: math.unit(29, "meters"),
  52189. name: "Front",
  52190. image: {
  52191. source: "./media/characters/aetherios/front.svg",
  52192. extra: 1266/953,
  52193. bottom: 158/1424
  52194. }
  52195. },
  52196. maw: {
  52197. height: math.unit(16.37, "meters"),
  52198. name: "Maw",
  52199. image: {
  52200. source: "./media/characters/aetherios/maw.svg",
  52201. extra: 748/637,
  52202. bottom: 0/748
  52203. },
  52204. extraAttributes: {
  52205. preyCapacity: {
  52206. name: "Capacity",
  52207. power: 3,
  52208. type: "volume",
  52209. base: math.unit(1000, "people")
  52210. },
  52211. tongueSize: {
  52212. name: "Tongue Size",
  52213. power: 2,
  52214. type: "area",
  52215. base: math.unit(21, "m^2")
  52216. }
  52217. }
  52218. },
  52219. forepaw: {
  52220. height: math.unit(18, "meters"),
  52221. name: "Forepaw",
  52222. image: {
  52223. source: "./media/characters/aetherios/forepaw.svg"
  52224. }
  52225. },
  52226. hindpaw: {
  52227. height: math.unit(23, "meters"),
  52228. name: "Hindpaw",
  52229. image: {
  52230. source: "./media/characters/aetherios/hindpaw.svg"
  52231. }
  52232. },
  52233. genitals: {
  52234. height: math.unit(42, "meters"),
  52235. name: "Genitals",
  52236. image: {
  52237. source: "./media/characters/aetherios/genitals.svg"
  52238. }
  52239. },
  52240. },
  52241. [
  52242. {
  52243. name: "Normal",
  52244. height: math.unit(47.2, "meters"),
  52245. default: true
  52246. },
  52247. {
  52248. name: "Macro",
  52249. height: math.unit(160, "meters")
  52250. },
  52251. {
  52252. name: "Mega",
  52253. height: math.unit(1.87, "km")
  52254. },
  52255. {
  52256. name: "Giga",
  52257. height: math.unit(40000, "km")
  52258. },
  52259. {
  52260. name: "Stellar",
  52261. height: math.unit(158000000, "km")
  52262. },
  52263. {
  52264. name: "Cosmic",
  52265. height: math.unit(9.46e12, "km")
  52266. },
  52267. ]
  52268. ))
  52269. characterMakers.push(() => makeCharacter(
  52270. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52271. {
  52272. front: {
  52273. height: math.unit(5 + 4/12, "feet"),
  52274. weight: math.unit(80, "lb"),
  52275. name: "Front",
  52276. image: {
  52277. source: "./media/characters/mizu-gieeg/front.svg",
  52278. extra: 850/709,
  52279. bottom: 52/902
  52280. }
  52281. },
  52282. back: {
  52283. height: math.unit(5 + 4/12, "feet"),
  52284. weight: math.unit(80, "lb"),
  52285. name: "Back",
  52286. image: {
  52287. source: "./media/characters/mizu-gieeg/back.svg",
  52288. extra: 882/745,
  52289. bottom: 25/907
  52290. }
  52291. },
  52292. },
  52293. [
  52294. {
  52295. name: "Normal",
  52296. height: math.unit(5 + 4/12, "feet"),
  52297. default: true
  52298. },
  52299. ]
  52300. ))
  52301. characterMakers.push(() => makeCharacter(
  52302. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52303. {
  52304. front: {
  52305. height: math.unit(6, "feet"),
  52306. name: "Front",
  52307. image: {
  52308. source: "./media/characters/roselle-st-papier/front.svg",
  52309. extra: 1430/1280,
  52310. bottom: 37/1467
  52311. }
  52312. },
  52313. back: {
  52314. height: math.unit(6, "feet"),
  52315. name: "Back",
  52316. image: {
  52317. source: "./media/characters/roselle-st-papier/back.svg",
  52318. extra: 1491/1296,
  52319. bottom: 23/1514
  52320. }
  52321. },
  52322. ear: {
  52323. height: math.unit(1.26, "feet"),
  52324. name: "Ear",
  52325. image: {
  52326. source: "./media/characters/roselle-st-papier/ear.svg"
  52327. }
  52328. },
  52329. },
  52330. [
  52331. {
  52332. name: "Normal",
  52333. height: math.unit(150, "feet"),
  52334. default: true
  52335. },
  52336. ]
  52337. ))
  52338. characterMakers.push(() => makeCharacter(
  52339. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52340. {
  52341. front: {
  52342. height: math.unit(1, "inches"),
  52343. name: "Front",
  52344. image: {
  52345. source: "./media/characters/valargent/front.svg",
  52346. extra: 1825/1694,
  52347. bottom: 62/1887
  52348. }
  52349. },
  52350. back: {
  52351. height: math.unit(1, "inches"),
  52352. name: "Back",
  52353. image: {
  52354. source: "./media/characters/valargent/back.svg",
  52355. extra: 1775/1682,
  52356. bottom: 88/1863
  52357. }
  52358. },
  52359. },
  52360. [
  52361. {
  52362. name: "Micro",
  52363. height: math.unit(1, "inch"),
  52364. default: true
  52365. },
  52366. ]
  52367. ))
  52368. characterMakers.push(() => makeCharacter(
  52369. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52370. {
  52371. front: {
  52372. height: math.unit(3.4, "meters"),
  52373. name: "Front",
  52374. image: {
  52375. source: "./media/characters/zarina/front.svg",
  52376. extra: 1733/1425,
  52377. bottom: 93/1826
  52378. }
  52379. },
  52380. squatting: {
  52381. height: math.unit(2.14, "meters"),
  52382. name: "Squatting",
  52383. image: {
  52384. source: "./media/characters/zarina/squatting.svg",
  52385. extra: 1073/788,
  52386. bottom: 63/1136
  52387. }
  52388. },
  52389. back: {
  52390. height: math.unit(2.14, "meters"),
  52391. name: "Back",
  52392. image: {
  52393. source: "./media/characters/zarina/back.svg",
  52394. extra: 1128/885,
  52395. bottom: 0/1128
  52396. }
  52397. },
  52398. },
  52399. [
  52400. {
  52401. name: "Normal",
  52402. height: math.unit(3.4, "meters"),
  52403. default: true
  52404. },
  52405. {
  52406. name: "Big",
  52407. height: math.unit(5, "meters")
  52408. },
  52409. {
  52410. name: "Macro",
  52411. height: math.unit(110, "meters")
  52412. },
  52413. ]
  52414. ))
  52415. characterMakers.push(() => makeCharacter(
  52416. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52417. {
  52418. front: {
  52419. height: math.unit(7, "feet"),
  52420. name: "Front",
  52421. image: {
  52422. source: "./media/characters/ventus-astro-fox/front.svg",
  52423. extra: 1792/1623,
  52424. bottom: 28/1820
  52425. }
  52426. },
  52427. back: {
  52428. height: math.unit(7, "feet"),
  52429. name: "Back",
  52430. image: {
  52431. source: "./media/characters/ventus-astro-fox/back.svg",
  52432. extra: 1789/1620,
  52433. bottom: 31/1820
  52434. }
  52435. },
  52436. outfit: {
  52437. height: math.unit(7, "feet"),
  52438. name: "Outfit",
  52439. image: {
  52440. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52441. extra: 1054/925,
  52442. bottom: 15/1069
  52443. }
  52444. },
  52445. head: {
  52446. height: math.unit(1.12, "feet"),
  52447. name: "Head",
  52448. image: {
  52449. source: "./media/characters/ventus-astro-fox/head.svg",
  52450. extra: 866/504,
  52451. bottom: 0/866
  52452. }
  52453. },
  52454. hand: {
  52455. height: math.unit(1, "feet"),
  52456. name: "Hand",
  52457. image: {
  52458. source: "./media/characters/ventus-astro-fox/hand.svg"
  52459. }
  52460. },
  52461. paw: {
  52462. height: math.unit(1.5, "feet"),
  52463. name: "Paw",
  52464. image: {
  52465. source: "./media/characters/ventus-astro-fox/paw.svg"
  52466. }
  52467. },
  52468. },
  52469. [
  52470. {
  52471. name: "Normal",
  52472. height: math.unit(7, "feet"),
  52473. default: true
  52474. },
  52475. {
  52476. name: "Macro",
  52477. height: math.unit(200, "feet")
  52478. },
  52479. {
  52480. name: "Cosmic",
  52481. height: math.unit(3, "universes")
  52482. },
  52483. ]
  52484. ))
  52485. characterMakers.push(() => makeCharacter(
  52486. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52487. {
  52488. front: {
  52489. height: math.unit(3, "meters"),
  52490. weight: math.unit(7000, "lb"),
  52491. name: "Front",
  52492. image: {
  52493. source: "./media/characters/core-t/front.svg",
  52494. extra: 5729/4941,
  52495. bottom: 1129/6858
  52496. }
  52497. },
  52498. },
  52499. [
  52500. {
  52501. name: "Big",
  52502. height: math.unit(3, "meters"),
  52503. default: true
  52504. },
  52505. ]
  52506. ))
  52507. characterMakers.push(() => makeCharacter(
  52508. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52509. {
  52510. normal: {
  52511. height: math.unit(6 + 6/12, "feet"),
  52512. weight: math.unit(275, "lb"),
  52513. name: "Front",
  52514. image: {
  52515. source: "./media/characters/cadbunny/normal.svg",
  52516. extra: 1129/947,
  52517. bottom: 93/1222
  52518. },
  52519. default: true,
  52520. form: "normal"
  52521. },
  52522. gigantamax: {
  52523. height: math.unit(26, "feet"),
  52524. weight: math.unit(16000, "lb"),
  52525. name: "Front",
  52526. image: {
  52527. source: "./media/characters/cadbunny/gigantamax.svg",
  52528. extra: 1133/944,
  52529. bottom: 90/1223
  52530. },
  52531. default: true,
  52532. form: "gigantamax"
  52533. },
  52534. },
  52535. [
  52536. {
  52537. name: "Normal",
  52538. height: math.unit(6 + 6/12, "feet"),
  52539. default: true,
  52540. form: "normal"
  52541. },
  52542. {
  52543. name: "Small",
  52544. height: math.unit(26, "feet"),
  52545. default: true,
  52546. form: "gigantamax"
  52547. },
  52548. {
  52549. name: "Large",
  52550. height: math.unit(78, "feet"),
  52551. form: "gigantamax"
  52552. },
  52553. ],
  52554. {
  52555. "normal": {
  52556. name: "Normal",
  52557. default: true
  52558. },
  52559. "gigantamax": {
  52560. name: "Gigantamax"
  52561. }
  52562. }
  52563. ))
  52564. characterMakers.push(() => makeCharacter(
  52565. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52566. {
  52567. anthroFront: {
  52568. height: math.unit(8, "feet"),
  52569. weight: math.unit(300, "lb"),
  52570. name: "Front",
  52571. image: {
  52572. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52573. extra: 1272/1176,
  52574. bottom: 53/1325
  52575. },
  52576. form: "anthro",
  52577. default: true
  52578. },
  52579. feralSide: {
  52580. height: math.unit(4, "feet"),
  52581. weight: math.unit(250, "lb"),
  52582. name: "Side",
  52583. image: {
  52584. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52585. extra: 731/621,
  52586. bottom: 0/731
  52587. },
  52588. form: "feral",
  52589. default: true
  52590. },
  52591. },
  52592. [
  52593. {
  52594. name: "Regular",
  52595. height: math.unit(8, "feet"),
  52596. form: "anthro"
  52597. },
  52598. {
  52599. name: "Macro",
  52600. height: math.unit(250, "feet"),
  52601. form: "anthro",
  52602. default: true
  52603. },
  52604. {
  52605. name: "Regular",
  52606. height: math.unit(4, "feet"),
  52607. form: "feral"
  52608. },
  52609. {
  52610. name: "Macro",
  52611. height: math.unit(125, "feet"),
  52612. form: "feral",
  52613. default: true
  52614. },
  52615. ],
  52616. {
  52617. "anthro": {
  52618. name: "Anthro",
  52619. default: true
  52620. },
  52621. "feral": {
  52622. name: "Feral",
  52623. },
  52624. }
  52625. ))
  52626. characterMakers.push(() => makeCharacter(
  52627. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52628. {
  52629. front: {
  52630. height: math.unit(11 + 10/12, "feet"),
  52631. weight: math.unit(1587, "kg"),
  52632. name: "Front",
  52633. image: {
  52634. source: "./media/characters/maple-javira-dragon/front.svg",
  52635. extra: 1136/744,
  52636. bottom: 73/1209
  52637. }
  52638. },
  52639. side: {
  52640. height: math.unit(11 + 10/12, "feet"),
  52641. weight: math.unit(1587, "kg"),
  52642. name: "Side",
  52643. image: {
  52644. source: "./media/characters/maple-javira-dragon/side.svg",
  52645. extra: 712/505,
  52646. bottom: 17/729
  52647. }
  52648. },
  52649. head: {
  52650. height: math.unit(8.05, "feet"),
  52651. name: "Head",
  52652. image: {
  52653. source: "./media/characters/maple-javira-dragon/head.svg",
  52654. extra: 1420/1344,
  52655. bottom: 0/1420
  52656. }
  52657. },
  52658. },
  52659. [
  52660. {
  52661. name: "Normal",
  52662. height: math.unit(11 + 10/12, "feet"),
  52663. default: true
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(117, "cm"),
  52672. weight: math.unit(50, "kg"),
  52673. name: "Front",
  52674. image: {
  52675. source: "./media/characters/sonia-wyverntail/front.svg",
  52676. extra: 708/592,
  52677. bottom: 25/733
  52678. }
  52679. },
  52680. },
  52681. [
  52682. {
  52683. name: "Normal",
  52684. height: math.unit(117, "cm"),
  52685. default: true
  52686. },
  52687. ]
  52688. ))
  52689. characterMakers.push(() => makeCharacter(
  52690. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52691. {
  52692. front: {
  52693. height: math.unit(6 + 5/12, "feet"),
  52694. name: "Front",
  52695. image: {
  52696. source: "./media/characters/micah/front.svg",
  52697. extra: 1758/1546,
  52698. bottom: 214/1972
  52699. }
  52700. },
  52701. },
  52702. [
  52703. {
  52704. name: "Normal",
  52705. height: math.unit(6 + 5/12, "feet"),
  52706. default: true
  52707. },
  52708. ]
  52709. ))
  52710. characterMakers.push(() => makeCharacter(
  52711. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52712. {
  52713. front: {
  52714. height: math.unit(1.75, "meters"),
  52715. weight: math.unit(100, "kg"),
  52716. name: "Front",
  52717. image: {
  52718. source: "./media/characters/zarya/front.svg",
  52719. extra: 741/735,
  52720. bottom: 44/785
  52721. },
  52722. extraAttributes: {
  52723. "tailLength": {
  52724. name: "Tail Length",
  52725. power: 1,
  52726. type: "length",
  52727. base: math.unit(180, "cm")
  52728. },
  52729. "pawLength": {
  52730. name: "Paw Length",
  52731. power: 1,
  52732. type: "length",
  52733. base: math.unit(31, "cm")
  52734. },
  52735. }
  52736. },
  52737. side: {
  52738. height: math.unit(1.75, "meters"),
  52739. weight: math.unit(100, "kg"),
  52740. name: "Side",
  52741. image: {
  52742. source: "./media/characters/zarya/side.svg",
  52743. extra: 776/770,
  52744. bottom: 17/793
  52745. },
  52746. extraAttributes: {
  52747. "tailLength": {
  52748. name: "Tail Length",
  52749. power: 1,
  52750. type: "length",
  52751. base: math.unit(180, "cm")
  52752. },
  52753. "pawLength": {
  52754. name: "Paw Length",
  52755. power: 1,
  52756. type: "length",
  52757. base: math.unit(31, "cm")
  52758. },
  52759. }
  52760. },
  52761. back: {
  52762. height: math.unit(1.75, "meters"),
  52763. weight: math.unit(100, "kg"),
  52764. name: "Back",
  52765. image: {
  52766. source: "./media/characters/zarya/back.svg",
  52767. extra: 741/735,
  52768. bottom: 44/785
  52769. },
  52770. extraAttributes: {
  52771. "tailLength": {
  52772. name: "Tail Length",
  52773. power: 1,
  52774. type: "length",
  52775. base: math.unit(180, "cm")
  52776. },
  52777. "pawLength": {
  52778. name: "Paw Length",
  52779. power: 1,
  52780. type: "length",
  52781. base: math.unit(31, "cm")
  52782. },
  52783. }
  52784. },
  52785. frontNoTail: {
  52786. height: math.unit(1.75, "meters"),
  52787. weight: math.unit(100, "kg"),
  52788. name: "Front (No Tail)",
  52789. image: {
  52790. source: "./media/characters/zarya/front-no-tail.svg",
  52791. extra: 741/735,
  52792. bottom: 44/785
  52793. },
  52794. extraAttributes: {
  52795. "tailLength": {
  52796. name: "Tail Length",
  52797. power: 1,
  52798. type: "length",
  52799. base: math.unit(180, "cm")
  52800. },
  52801. "pawLength": {
  52802. name: "Paw Length",
  52803. power: 1,
  52804. type: "length",
  52805. base: math.unit(31, "cm")
  52806. },
  52807. }
  52808. },
  52809. dressed: {
  52810. height: math.unit(1.75, "meters"),
  52811. weight: math.unit(100, "kg"),
  52812. name: "Dressed",
  52813. image: {
  52814. source: "./media/characters/zarya/dressed.svg",
  52815. extra: 683/672,
  52816. bottom: 79/762
  52817. },
  52818. extraAttributes: {
  52819. "tailLength": {
  52820. name: "Tail Length",
  52821. power: 1,
  52822. type: "length",
  52823. base: math.unit(180, "cm")
  52824. },
  52825. "pawLength": {
  52826. name: "Paw Length",
  52827. power: 1,
  52828. type: "length",
  52829. base: math.unit(31, "cm")
  52830. },
  52831. }
  52832. },
  52833. },
  52834. [
  52835. {
  52836. name: "Micro",
  52837. height: math.unit(5, "cm")
  52838. },
  52839. {
  52840. name: "Normal",
  52841. height: math.unit(1.75, "meters"),
  52842. default: true
  52843. },
  52844. {
  52845. name: "Macro",
  52846. height: math.unit(122, "meters")
  52847. },
  52848. ]
  52849. ))
  52850. characterMakers.push(() => makeCharacter(
  52851. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52852. {
  52853. front: {
  52854. height: math.unit(7.5, "feet"),
  52855. name: "Front",
  52856. image: {
  52857. source: "./media/characters/sven-hatisson/front.svg",
  52858. extra: 917/857,
  52859. bottom: 42/959
  52860. }
  52861. },
  52862. back: {
  52863. height: math.unit(7.5, "feet"),
  52864. name: "Back",
  52865. image: {
  52866. source: "./media/characters/sven-hatisson/back.svg",
  52867. extra: 903/856,
  52868. bottom: 15/918
  52869. }
  52870. },
  52871. },
  52872. [
  52873. {
  52874. name: "Base Height",
  52875. height: math.unit(7.5, "feet")
  52876. },
  52877. {
  52878. name: "Usual Height",
  52879. height: math.unit(13.5, "feet"),
  52880. default: true
  52881. },
  52882. {
  52883. name: "Smaller Macro",
  52884. height: math.unit(85, "feet")
  52885. },
  52886. {
  52887. name: "Moderate Macro",
  52888. height: math.unit(320, "feet")
  52889. },
  52890. {
  52891. name: "Large Macro",
  52892. height: math.unit(1000, "feet")
  52893. },
  52894. {
  52895. name: "Largest Size",
  52896. height: math.unit(2, "miles")
  52897. },
  52898. ]
  52899. ))
  52900. characterMakers.push(() => makeCharacter(
  52901. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52902. {
  52903. side: {
  52904. height: math.unit(1.8, "meters"),
  52905. weight: math.unit(275, "kg"),
  52906. name: "Side",
  52907. image: {
  52908. source: "./media/characters/terra/side.svg",
  52909. extra: 1273/1147,
  52910. bottom: 0/1273
  52911. }
  52912. },
  52913. },
  52914. [
  52915. {
  52916. name: "Normal",
  52917. height: math.unit(16.2, "meters"),
  52918. default: true
  52919. },
  52920. ]
  52921. ))
  52922. characterMakers.push(() => makeCharacter(
  52923. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52924. {
  52925. borzoiFront: {
  52926. height: math.unit(6 + 9/12, "feet"),
  52927. name: "Front",
  52928. image: {
  52929. source: "./media/characters/rae/borzoi-front.svg",
  52930. extra: 1161/1098,
  52931. bottom: 31/1192
  52932. },
  52933. form: "borzoi",
  52934. default: true
  52935. },
  52936. werewolfFront: {
  52937. height: math.unit(8 + 7/12, "feet"),
  52938. name: "Front",
  52939. image: {
  52940. source: "./media/characters/rae/werewolf-front.svg",
  52941. extra: 1411/1334,
  52942. bottom: 127/1538
  52943. },
  52944. form: "werewolf",
  52945. default: true
  52946. },
  52947. },
  52948. [
  52949. {
  52950. name: "Normal",
  52951. height: math.unit(6 + 9/12, "feet"),
  52952. default: true,
  52953. form: "borzoi"
  52954. },
  52955. {
  52956. name: "Normal",
  52957. height: math.unit(8 + 7/12, "feet"),
  52958. default: true,
  52959. form: "werewolf"
  52960. },
  52961. ],
  52962. {
  52963. "borzoi": {
  52964. name: "Borzoi",
  52965. default: true
  52966. },
  52967. "werewolf": {
  52968. name: "Werewolf",
  52969. },
  52970. }
  52971. ))
  52972. characterMakers.push(() => makeCharacter(
  52973. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52974. {
  52975. front: {
  52976. height: math.unit(8 + 7/12, "feet"),
  52977. weight: math.unit(482, "lb"),
  52978. name: "Front",
  52979. image: {
  52980. source: "./media/characters/kit/front.svg",
  52981. extra: 1247/1103,
  52982. bottom: 41/1288
  52983. }
  52984. },
  52985. back: {
  52986. height: math.unit(8 + 7/12, "feet"),
  52987. weight: math.unit(482, "lb"),
  52988. name: "Back",
  52989. image: {
  52990. source: "./media/characters/kit/back.svg",
  52991. extra: 1252/1123,
  52992. bottom: 21/1273
  52993. }
  52994. },
  52995. paw: {
  52996. height: math.unit(1.46, "feet"),
  52997. name: "Paw",
  52998. image: {
  52999. source: "./media/characters/kit/paw.svg"
  53000. }
  53001. },
  53002. },
  53003. [
  53004. {
  53005. name: "Normal",
  53006. height: math.unit(2.61, "meters"),
  53007. default: true
  53008. },
  53009. {
  53010. name: "\"Tall\"",
  53011. height: math.unit(8.21, "meters")
  53012. },
  53013. {
  53014. name: "Tall",
  53015. height: math.unit(19.6, "meters")
  53016. },
  53017. {
  53018. name: "Very Tall",
  53019. height: math.unit(57.91, "meters")
  53020. },
  53021. {
  53022. name: "Semi-Macro",
  53023. height: math.unit(138.64, "meters")
  53024. },
  53025. {
  53026. name: "Macro",
  53027. height: math.unit(831.99, "meters")
  53028. },
  53029. {
  53030. name: "EX-Macro",
  53031. height: math.unit(96451121, "meters")
  53032. },
  53033. {
  53034. name: "S1-Omnipotent",
  53035. height: math.unit(4.42074e+9, "meters")
  53036. },
  53037. {
  53038. name: "S2-Omnipotent",
  53039. height: math.unit(9.42074e+17, "meters")
  53040. },
  53041. {
  53042. name: "Omnipotent",
  53043. height: math.unit(4.23112e+24, "meters")
  53044. },
  53045. {
  53046. name: "Hypergod",
  53047. height: math.unit(5.05176e+27, "meters")
  53048. },
  53049. {
  53050. name: "Hypergod-EX",
  53051. height: math.unit(9.45532e+49, "meters")
  53052. },
  53053. {
  53054. name: "Hypergod-SP",
  53055. height: math.unit(9.45532e+195, "meters")
  53056. },
  53057. ]
  53058. ))
  53059. characterMakers.push(() => makeCharacter(
  53060. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53061. {
  53062. side: {
  53063. height: math.unit(0.6, "meters"),
  53064. weight: math.unit(24, "kg"),
  53065. name: "Side",
  53066. image: {
  53067. source: "./media/characters/celeste/side.svg",
  53068. extra: 810/517,
  53069. bottom: 53/863
  53070. }
  53071. },
  53072. },
  53073. [
  53074. {
  53075. name: "Velociraptor",
  53076. height: math.unit(0.6, "meters"),
  53077. default: true
  53078. },
  53079. {
  53080. name: "Utahraptor",
  53081. height: math.unit(1.8, "meters")
  53082. },
  53083. {
  53084. name: "Gallimimus",
  53085. height: math.unit(4.0, "meters")
  53086. },
  53087. {
  53088. name: "Large",
  53089. height: math.unit(20, "meters")
  53090. },
  53091. {
  53092. name: "Planetary",
  53093. height: math.unit(50, "megameters")
  53094. },
  53095. {
  53096. name: "Stellar",
  53097. height: math.unit(1.5, "gigameters")
  53098. },
  53099. {
  53100. name: "Galactic",
  53101. height: math.unit(100, "exameters")
  53102. },
  53103. ]
  53104. ))
  53105. characterMakers.push(() => makeCharacter(
  53106. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53107. {
  53108. front: {
  53109. height: math.unit(6, "feet"),
  53110. weight: math.unit(210, "lb"),
  53111. name: "Front",
  53112. image: {
  53113. source: "./media/characters/glacia/front.svg",
  53114. extra: 958/901,
  53115. bottom: 45/1003
  53116. }
  53117. },
  53118. },
  53119. [
  53120. {
  53121. name: "Macro",
  53122. height: math.unit(1000, "meters"),
  53123. default: true
  53124. },
  53125. ]
  53126. ))
  53127. characterMakers.push(() => makeCharacter(
  53128. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53129. {
  53130. front: {
  53131. height: math.unit(4, "meters"),
  53132. name: "Front",
  53133. image: {
  53134. source: "./media/characters/giri/front.svg",
  53135. extra: 966/894,
  53136. bottom: 21/987
  53137. }
  53138. },
  53139. },
  53140. [
  53141. {
  53142. name: "Normal",
  53143. height: math.unit(4, "meters"),
  53144. default: true
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53150. {
  53151. back: {
  53152. height: math.unit(4, "feet"),
  53153. weight: math.unit(37, "lb"),
  53154. name: "Back",
  53155. image: {
  53156. source: "./media/characters/tin/back.svg",
  53157. extra: 845/780,
  53158. bottom: 28/873
  53159. }
  53160. },
  53161. },
  53162. [
  53163. {
  53164. name: "Normal",
  53165. height: math.unit(4, "feet"),
  53166. default: true
  53167. },
  53168. ]
  53169. ))
  53170. characterMakers.push(() => makeCharacter(
  53171. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53172. {
  53173. front: {
  53174. height: math.unit(25, "feet"),
  53175. name: "Front",
  53176. image: {
  53177. source: "./media/characters/cadenza-vivace/front.svg",
  53178. extra: 1842/1578,
  53179. bottom: 30/1872
  53180. }
  53181. },
  53182. },
  53183. [
  53184. {
  53185. name: "Macro",
  53186. height: math.unit(25, "feet"),
  53187. default: true
  53188. },
  53189. ]
  53190. ))
  53191. characterMakers.push(() => makeCharacter(
  53192. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53193. {
  53194. front: {
  53195. height: math.unit(10, "feet"),
  53196. weight: math.unit(625, "kg"),
  53197. name: "Front",
  53198. image: {
  53199. source: "./media/characters/zain/front.svg",
  53200. extra: 1682/1498,
  53201. bottom: 223/1905
  53202. }
  53203. },
  53204. back: {
  53205. height: math.unit(10, "feet"),
  53206. weight: math.unit(625, "kg"),
  53207. name: "Back",
  53208. image: {
  53209. source: "./media/characters/zain/back.svg",
  53210. extra: 1814/1657,
  53211. bottom: 152/1966
  53212. }
  53213. },
  53214. head: {
  53215. height: math.unit(10, "feet"),
  53216. weight: math.unit(625, "kg"),
  53217. name: "Head",
  53218. image: {
  53219. source: "./media/characters/zain/head.svg",
  53220. extra: 1059/762,
  53221. bottom: 0/1059
  53222. }
  53223. },
  53224. },
  53225. [
  53226. {
  53227. name: "Normal",
  53228. height: math.unit(10, "feet"),
  53229. default: true
  53230. },
  53231. ]
  53232. ))
  53233. characterMakers.push(() => makeCharacter(
  53234. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53235. {
  53236. front: {
  53237. height: math.unit(6 + 5/12, "feet"),
  53238. weight: math.unit(750, "lb"),
  53239. name: "Front",
  53240. image: {
  53241. source: "./media/characters/ruchex/front.svg",
  53242. extra: 877/820,
  53243. bottom: 17/894
  53244. },
  53245. extraAttributes: {
  53246. "width": {
  53247. name: "Width",
  53248. power: 1,
  53249. type: "length",
  53250. base: math.unit(4.757, "feet")
  53251. },
  53252. }
  53253. },
  53254. },
  53255. [
  53256. {
  53257. name: "Normal",
  53258. height: math.unit(6 + 5/12, "feet"),
  53259. default: true
  53260. },
  53261. ]
  53262. ))
  53263. characterMakers.push(() => makeCharacter(
  53264. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53265. {
  53266. dressedFront: {
  53267. height: math.unit(191, "cm"),
  53268. weight: math.unit(80, "kg"),
  53269. name: "Front",
  53270. image: {
  53271. source: "./media/characters/buster/dressed-front.svg",
  53272. extra: 1022/973,
  53273. bottom: 69/1091
  53274. }
  53275. },
  53276. dressedBack: {
  53277. height: math.unit(191, "cm"),
  53278. weight: math.unit(80, "kg"),
  53279. name: "Back",
  53280. image: {
  53281. source: "./media/characters/buster/dressed-back.svg",
  53282. extra: 1018/970,
  53283. bottom: 55/1073
  53284. }
  53285. },
  53286. nudeFront: {
  53287. height: math.unit(191, "cm"),
  53288. weight: math.unit(80, "kg"),
  53289. name: "Front (Nude)",
  53290. image: {
  53291. source: "./media/characters/buster/nude-front.svg",
  53292. extra: 1022/973,
  53293. bottom: 69/1091
  53294. }
  53295. },
  53296. nudeBack: {
  53297. height: math.unit(191, "cm"),
  53298. weight: math.unit(80, "kg"),
  53299. name: "Back (Nude)",
  53300. image: {
  53301. source: "./media/characters/buster/nude-back.svg",
  53302. extra: 1018/970,
  53303. bottom: 55/1073
  53304. }
  53305. },
  53306. dick: {
  53307. height: math.unit(2.59, "feet"),
  53308. name: "Dick",
  53309. image: {
  53310. source: "./media/characters/buster/dick.svg"
  53311. }
  53312. },
  53313. ass: {
  53314. height: math.unit(1.2, "feet"),
  53315. name: "Ass",
  53316. image: {
  53317. source: "./media/characters/buster/ass.svg"
  53318. }
  53319. },
  53320. },
  53321. [
  53322. {
  53323. name: "Normal",
  53324. height: math.unit(191, "cm"),
  53325. default: true
  53326. },
  53327. ]
  53328. ))
  53329. characterMakers.push(() => makeCharacter(
  53330. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53331. {
  53332. side: {
  53333. height: math.unit(8.1, "feet"),
  53334. weight: math.unit(3500, "lb"),
  53335. name: "Side",
  53336. image: {
  53337. source: "./media/characters/sonya/side.svg",
  53338. extra: 1730/1317,
  53339. bottom: 86/1816
  53340. }
  53341. },
  53342. },
  53343. [
  53344. {
  53345. name: "Normal",
  53346. height: math.unit(8.1, "feet"),
  53347. default: true
  53348. },
  53349. ]
  53350. ))
  53351. characterMakers.push(() => makeCharacter(
  53352. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53353. {
  53354. front: {
  53355. height: math.unit(6, "feet"),
  53356. weight: math.unit(150, "lb"),
  53357. name: "Front",
  53358. image: {
  53359. source: "./media/characters/cadence-andrysiak/front.svg",
  53360. extra: 1164/1121,
  53361. bottom: 60/1224
  53362. }
  53363. },
  53364. back: {
  53365. height: math.unit(6, "feet"),
  53366. weight: math.unit(150, "lb"),
  53367. name: "Back",
  53368. image: {
  53369. source: "./media/characters/cadence-andrysiak/back.svg",
  53370. extra: 1200/1165,
  53371. bottom: 9/1209
  53372. }
  53373. },
  53374. dressed: {
  53375. height: math.unit(6, "feet"),
  53376. weight: math.unit(150, "lb"),
  53377. name: "Dressed",
  53378. image: {
  53379. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53380. extra: 1164/1121,
  53381. bottom: 60/1224
  53382. }
  53383. },
  53384. },
  53385. [
  53386. {
  53387. name: "Micro",
  53388. height: math.unit(1, "mm")
  53389. },
  53390. {
  53391. name: "Normal",
  53392. height: math.unit(6, "feet"),
  53393. default: true
  53394. },
  53395. ]
  53396. ))
  53397. characterMakers.push(() => makeCharacter(
  53398. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53399. {
  53400. front: {
  53401. height: math.unit(60, "inches"),
  53402. weight: math.unit(16, "lb"),
  53403. preyCapacity: math.unit(80, "liters"),
  53404. name: "Front",
  53405. image: {
  53406. source: "./media/characters/penny-lynx/front.svg",
  53407. extra: 1959/1769,
  53408. bottom: 49/2008
  53409. }
  53410. },
  53411. },
  53412. [
  53413. {
  53414. name: "Nokia",
  53415. height: math.unit(2, "inches")
  53416. },
  53417. {
  53418. name: "Desktop",
  53419. height: math.unit(24, "inches")
  53420. },
  53421. {
  53422. name: "TV",
  53423. height: math.unit(60, "inches")
  53424. },
  53425. {
  53426. name: "Jumbotron",
  53427. height: math.unit(12, "feet")
  53428. },
  53429. {
  53430. name: "Billboard",
  53431. height: math.unit(48, "feet"),
  53432. default: true
  53433. },
  53434. {
  53435. name: "IMAX",
  53436. height: math.unit(96, "feet")
  53437. },
  53438. {
  53439. name: "SINGULARITY",
  53440. height: math.unit(864938, "miles")
  53441. },
  53442. ]
  53443. ))
  53444. characterMakers.push(() => makeCharacter(
  53445. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53446. {
  53447. front: {
  53448. height: math.unit(5 + 4/12, "feet"),
  53449. weight: math.unit(230, "lb"),
  53450. name: "Front",
  53451. image: {
  53452. source: "./media/characters/sukebe/front.svg",
  53453. extra: 2130/2038,
  53454. bottom: 90/2220
  53455. }
  53456. },
  53457. back: {
  53458. height: math.unit(3.48, "feet"),
  53459. weight: math.unit(230, "lb"),
  53460. name: "Back",
  53461. image: {
  53462. source: "./media/characters/sukebe/back.svg",
  53463. extra: 1670/1604,
  53464. bottom: 0/1670
  53465. }
  53466. },
  53467. },
  53468. [
  53469. {
  53470. name: "Normal",
  53471. height: math.unit(5 + 4/12, "feet"),
  53472. default: true
  53473. },
  53474. ]
  53475. ))
  53476. characterMakers.push(() => makeCharacter(
  53477. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53478. {
  53479. front: {
  53480. height: math.unit(6, "feet"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/nylla/front.svg",
  53484. extra: 1868/1699,
  53485. bottom: 97/1965
  53486. }
  53487. },
  53488. back: {
  53489. height: math.unit(6, "feet"),
  53490. name: "Back",
  53491. image: {
  53492. source: "./media/characters/nylla/back.svg",
  53493. extra: 1889/1712,
  53494. bottom: 93/1982
  53495. }
  53496. },
  53497. frontNsfw: {
  53498. height: math.unit(6, "feet"),
  53499. name: "Front (NSFW)",
  53500. image: {
  53501. source: "./media/characters/nylla/front-nsfw.svg",
  53502. extra: 1868/1699,
  53503. bottom: 97/1965
  53504. },
  53505. extraAttributes: {
  53506. "dickLength": {
  53507. name: "Dick Length",
  53508. power: 1,
  53509. type: "length",
  53510. base: math.unit(1.4, "feet")
  53511. },
  53512. "cumVolume": {
  53513. name: "Cum Volume",
  53514. power: 3,
  53515. type: "volume",
  53516. base: math.unit(100, "mL")
  53517. },
  53518. }
  53519. },
  53520. backNsfw: {
  53521. height: math.unit(6, "feet"),
  53522. name: "Back (NSFW)",
  53523. image: {
  53524. source: "./media/characters/nylla/back-nsfw.svg",
  53525. extra: 1889/1712,
  53526. bottom: 93/1982
  53527. }
  53528. },
  53529. maw: {
  53530. height: math.unit(2.10, "feet"),
  53531. name: "Maw",
  53532. image: {
  53533. source: "./media/characters/nylla/maw.svg"
  53534. }
  53535. },
  53536. paws: {
  53537. height: math.unit(2.06, "feet"),
  53538. name: "Paws",
  53539. image: {
  53540. source: "./media/characters/nylla/paws.svg"
  53541. }
  53542. },
  53543. muzzle: {
  53544. height: math.unit(0.61, "feet"),
  53545. name: "Muzzle",
  53546. image: {
  53547. source: "./media/characters/nylla/muzzle.svg"
  53548. }
  53549. },
  53550. sheath: {
  53551. height: math.unit(1.305, "feet"),
  53552. name: "Sheath",
  53553. image: {
  53554. source: "./media/characters/nylla/sheath.svg"
  53555. }
  53556. },
  53557. },
  53558. [
  53559. {
  53560. name: "Micro",
  53561. height: math.unit(7.5, "inches")
  53562. },
  53563. {
  53564. name: "Normal",
  53565. height: math.unit(7, "feet"),
  53566. default: true
  53567. },
  53568. {
  53569. name: "Macro",
  53570. height: math.unit(60, "feet")
  53571. },
  53572. {
  53573. name: "Mega",
  53574. height: math.unit(200, "feet")
  53575. },
  53576. ]
  53577. ))
  53578. characterMakers.push(() => makeCharacter(
  53579. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53580. {
  53581. front: {
  53582. height: math.unit(10, "feet"),
  53583. weight: math.unit(2300, "lb"),
  53584. name: "Front",
  53585. image: {
  53586. source: "./media/characters/hunt3r/front.svg",
  53587. extra: 1909/1742,
  53588. bottom: 46/1955
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Normal",
  53595. height: math.unit(10, "feet"),
  53596. default: true
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53602. {
  53603. dressed: {
  53604. height: math.unit(11, "feet"),
  53605. weight: math.unit(18500, "lb"),
  53606. preyCapacity: math.unit(9, "people"),
  53607. name: "Dressed",
  53608. image: {
  53609. source: "./media/characters/cylphis/dressed.svg",
  53610. extra: 1028/1003,
  53611. bottom: 75/1103
  53612. },
  53613. },
  53614. undressed: {
  53615. height: math.unit(11, "feet"),
  53616. weight: math.unit(18500, "lb"),
  53617. preyCapacity: math.unit(9, "people"),
  53618. name: "Undressed",
  53619. image: {
  53620. source: "./media/characters/cylphis/undressed.svg",
  53621. extra: 1028/1003,
  53622. bottom: 75/1103
  53623. }
  53624. },
  53625. full: {
  53626. height: math.unit(11, "feet"),
  53627. weight: math.unit(18500 + 150*9, "lb"),
  53628. preyCapacity: math.unit(9, "people"),
  53629. name: "Full",
  53630. image: {
  53631. source: "./media/characters/cylphis/full.svg",
  53632. extra: 1028/1003,
  53633. bottom: 75/1103
  53634. }
  53635. },
  53636. },
  53637. [
  53638. {
  53639. name: "Small",
  53640. height: math.unit(8, "feet")
  53641. },
  53642. {
  53643. name: "Normal",
  53644. height: math.unit(11, "feet"),
  53645. default: true
  53646. },
  53647. ]
  53648. ))
  53649. characterMakers.push(() => makeCharacter(
  53650. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53651. {
  53652. front: {
  53653. height: math.unit(2 + 7/12, "feet"),
  53654. name: "Front",
  53655. image: {
  53656. source: "./media/characters/orishan/front.svg",
  53657. extra: 1058/1023,
  53658. bottom: 23/1081
  53659. }
  53660. },
  53661. back: {
  53662. height: math.unit(2 + 7/12, "feet"),
  53663. name: "Back",
  53664. image: {
  53665. source: "./media/characters/orishan/back.svg",
  53666. extra: 1058/1023,
  53667. bottom: 23/1081
  53668. }
  53669. },
  53670. },
  53671. [
  53672. {
  53673. name: "Micro",
  53674. height: math.unit(2, "cm")
  53675. },
  53676. {
  53677. name: "Normal",
  53678. height: math.unit(2 + 7/12, "feet"),
  53679. default: true
  53680. },
  53681. ]
  53682. ))
  53683. characterMakers.push(() => makeCharacter(
  53684. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53685. {
  53686. front: {
  53687. height: math.unit(3, "meters"),
  53688. weight: math.unit(508, "kg"),
  53689. name: "Front",
  53690. image: {
  53691. source: "./media/characters/seranis/front.svg",
  53692. extra: 1478/1454,
  53693. bottom: 41/1519
  53694. }
  53695. },
  53696. },
  53697. [
  53698. {
  53699. name: "Normal",
  53700. height: math.unit(3, "meters"),
  53701. default: true
  53702. },
  53703. {
  53704. name: "Macro",
  53705. height: math.unit(108, "meters")
  53706. },
  53707. {
  53708. name: "Megamacro",
  53709. height: math.unit(1250, "meters")
  53710. },
  53711. ]
  53712. ))
  53713. characterMakers.push(() => makeCharacter(
  53714. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53715. {
  53716. undressed: {
  53717. height: math.unit(5 + 3/12, "feet"),
  53718. name: "Undressed",
  53719. image: {
  53720. source: "./media/characters/ankou/undressed.svg",
  53721. extra: 1301/1213,
  53722. bottom: 87/1388
  53723. }
  53724. },
  53725. dressed: {
  53726. height: math.unit(5 + 3/12, "feet"),
  53727. name: "Dressed",
  53728. image: {
  53729. source: "./media/characters/ankou/dressed.svg",
  53730. extra: 1301/1213,
  53731. bottom: 87/1388
  53732. }
  53733. },
  53734. head: {
  53735. height: math.unit(1.61, "feet"),
  53736. name: "Head",
  53737. image: {
  53738. source: "./media/characters/ankou/head.svg"
  53739. }
  53740. },
  53741. },
  53742. [
  53743. {
  53744. name: "Normal",
  53745. height: math.unit(5 + 3/12, "feet"),
  53746. default: true
  53747. },
  53748. ]
  53749. ))
  53750. characterMakers.push(() => makeCharacter(
  53751. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53752. {
  53753. side: {
  53754. height: math.unit(6 + 3/12, "feet"),
  53755. weight: math.unit(200, "kg"),
  53756. name: "Side",
  53757. image: {
  53758. source: "./media/characters/juniper-skunktaur/side.svg",
  53759. extra: 1574/1229,
  53760. bottom: 38/1612
  53761. }
  53762. },
  53763. front: {
  53764. height: math.unit(6 + 3/12, "feet"),
  53765. weight: math.unit(200, "kg"),
  53766. name: "Front",
  53767. image: {
  53768. source: "./media/characters/juniper-skunktaur/front.svg",
  53769. extra: 1337/1278,
  53770. bottom: 22/1359
  53771. }
  53772. },
  53773. back: {
  53774. height: math.unit(6 + 3/12, "feet"),
  53775. weight: math.unit(200, "kg"),
  53776. name: "Back",
  53777. image: {
  53778. source: "./media/characters/juniper-skunktaur/back.svg",
  53779. extra: 1618/1273,
  53780. bottom: 13/1631
  53781. }
  53782. },
  53783. top: {
  53784. height: math.unit(2.62, "feet"),
  53785. weight: math.unit(200, "kg"),
  53786. name: "Top",
  53787. image: {
  53788. source: "./media/characters/juniper-skunktaur/top.svg"
  53789. }
  53790. },
  53791. },
  53792. [
  53793. {
  53794. name: "Normal",
  53795. height: math.unit(6 + 3/12, "feet"),
  53796. default: true
  53797. },
  53798. ]
  53799. ))
  53800. characterMakers.push(() => makeCharacter(
  53801. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53802. {
  53803. front: {
  53804. height: math.unit(20.5, "feet"),
  53805. name: "Front",
  53806. image: {
  53807. source: "./media/characters/rei/front.svg",
  53808. extra: 1349/1195,
  53809. bottom: 31/1380
  53810. }
  53811. },
  53812. back: {
  53813. height: math.unit(20.5, "feet"),
  53814. name: "Back",
  53815. image: {
  53816. source: "./media/characters/rei/back.svg",
  53817. extra: 1358/1204,
  53818. bottom: 22/1380
  53819. }
  53820. },
  53821. pawsDigi: {
  53822. height: math.unit(3.45, "feet"),
  53823. name: "Paws (Digi)",
  53824. image: {
  53825. source: "./media/characters/rei/paws-digi.svg"
  53826. }
  53827. },
  53828. pawsPlanti: {
  53829. height: math.unit(3.45, "feet"),
  53830. name: "Paws (Planti)",
  53831. image: {
  53832. source: "./media/characters/rei/paws-planti.svg"
  53833. }
  53834. },
  53835. },
  53836. [
  53837. {
  53838. name: "Normal",
  53839. height: math.unit(20.5, "feet"),
  53840. default: true
  53841. },
  53842. ]
  53843. ))
  53844. characterMakers.push(() => makeCharacter(
  53845. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53846. {
  53847. front: {
  53848. height: math.unit(5 + 11/12, "feet"),
  53849. name: "Front",
  53850. image: {
  53851. source: "./media/characters/carina/front.svg",
  53852. extra: 1720/1449,
  53853. bottom: 14/1734
  53854. }
  53855. },
  53856. back: {
  53857. height: math.unit(5 + 11/12, "feet"),
  53858. name: "Back",
  53859. image: {
  53860. source: "./media/characters/carina/back.svg",
  53861. extra: 1493/1445,
  53862. bottom: 17/1510
  53863. }
  53864. },
  53865. paw: {
  53866. height: math.unit(0.92, "feet"),
  53867. name: "Paw",
  53868. image: {
  53869. source: "./media/characters/carina/paw.svg"
  53870. }
  53871. },
  53872. },
  53873. [
  53874. {
  53875. name: "Normal",
  53876. height: math.unit(5 + 11/12, "feet"),
  53877. default: true
  53878. },
  53879. ]
  53880. ))
  53881. characterMakers.push(() => makeCharacter(
  53882. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53883. {
  53884. normal_front: {
  53885. height: math.unit(4.88, "meters"),
  53886. name: "Front",
  53887. image: {
  53888. source: "./media/characters/maya/normal-front.svg",
  53889. extra: 1222/1145,
  53890. bottom: 57/1279
  53891. },
  53892. form: "normal",
  53893. default: true
  53894. },
  53895. monstrous_front: {
  53896. height: math.unit(10, "meters"),
  53897. name: "Front",
  53898. image: {
  53899. source: "./media/characters/maya/monstrous-front.svg",
  53900. extra: 1523/1109,
  53901. bottom: 113/1636
  53902. },
  53903. form: "monstrous",
  53904. extraAttributes: {
  53905. "swallowSize": {
  53906. name: "Tailmaw Bite Size",
  53907. power: 3,
  53908. type: "volume",
  53909. base: math.unit(43000, "liters")
  53910. },
  53911. }
  53912. },
  53913. taur_front: {
  53914. height: math.unit(10, "meters"),
  53915. name: "Front",
  53916. image: {
  53917. source: "./media/characters/maya/taur-front.svg",
  53918. extra: 743/506,
  53919. bottom: 101/844
  53920. },
  53921. form: "taur",
  53922. },
  53923. },
  53924. [
  53925. {
  53926. name: "Normal",
  53927. height: math.unit(4.88, "meters"),
  53928. default: true,
  53929. form: "normal"
  53930. },
  53931. {
  53932. name: "Macro",
  53933. height: math.unit(38.1, "meters"),
  53934. form: "normal"
  53935. },
  53936. {
  53937. name: "Macro+",
  53938. height: math.unit(152.4, "meters"),
  53939. form: "normal"
  53940. },
  53941. {
  53942. name: "Macro++",
  53943. height: math.unit(16.09, "km"),
  53944. form: "normal"
  53945. },
  53946. {
  53947. name: "Mega-macro",
  53948. height: math.unit(700, "megameters"),
  53949. form: "normal"
  53950. },
  53951. {
  53952. name: "Satiated",
  53953. height: math.unit(10, "meters"),
  53954. default: true,
  53955. form: "monstrous"
  53956. },
  53957. {
  53958. name: "Hungry",
  53959. height: math.unit(75, "meters"),
  53960. form: "monstrous"
  53961. },
  53962. {
  53963. name: "Ravenous",
  53964. height: math.unit(500, "meters"),
  53965. form: "monstrous"
  53966. },
  53967. {
  53968. name: "\"Normal\"",
  53969. height: math.unit(10, "meters"),
  53970. form: "taur"
  53971. },
  53972. {
  53973. name: "Macro",
  53974. height: math.unit(50, "meters"),
  53975. form: "taur"
  53976. },
  53977. ],
  53978. {
  53979. "normal": {
  53980. name: "Normal",
  53981. default: true
  53982. },
  53983. "monstrous": {
  53984. name: "Monstrous",
  53985. },
  53986. "taur": {
  53987. name: "Taur",
  53988. },
  53989. }
  53990. ))
  53991. characterMakers.push(() => makeCharacter(
  53992. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53993. {
  53994. front: {
  53995. height: math.unit(6 + 2/12, "feet"),
  53996. weight: math.unit(500, "lb"),
  53997. preyCapacity: math.unit(4, "people"),
  53998. name: "Front",
  53999. image: {
  54000. source: "./media/characters/yepir/front.svg"
  54001. }
  54002. },
  54003. side: {
  54004. height: math.unit(6 + 2/12, "feet"),
  54005. weight: math.unit(500, "lb"),
  54006. preyCapacity: math.unit(4, "people"),
  54007. name: "Side",
  54008. image: {
  54009. source: "./media/characters/yepir/side.svg"
  54010. }
  54011. },
  54012. paw: {
  54013. height: math.unit(1.05, "feet"),
  54014. name: "Paw",
  54015. image: {
  54016. source: "./media/characters/yepir/paw.svg"
  54017. }
  54018. },
  54019. },
  54020. [
  54021. {
  54022. name: "Normal",
  54023. height: math.unit(6 + 2/12, "feet"),
  54024. default: true
  54025. },
  54026. ]
  54027. ))
  54028. characterMakers.push(() => makeCharacter(
  54029. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54030. {
  54031. front: {
  54032. height: math.unit(5 + 4/12, "feet"),
  54033. name: "Front",
  54034. image: {
  54035. source: "./media/characters/russec/front.svg",
  54036. extra: 1926/1626,
  54037. bottom: 72/1998
  54038. }
  54039. },
  54040. back: {
  54041. height: math.unit(5 + 4/12, "feet"),
  54042. name: "Back",
  54043. image: {
  54044. source: "./media/characters/russec/back.svg",
  54045. extra: 1910/1591,
  54046. bottom: 48/1958
  54047. }
  54048. },
  54049. },
  54050. [
  54051. {
  54052. name: "Small",
  54053. height: math.unit(5 + 4/12, "feet")
  54054. },
  54055. {
  54056. name: "Normal",
  54057. height: math.unit(72, "feet"),
  54058. default: true
  54059. },
  54060. ]
  54061. ))
  54062. characterMakers.push(() => makeCharacter(
  54063. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54064. {
  54065. side: {
  54066. height: math.unit(12, "feet"),
  54067. name: "Side",
  54068. image: {
  54069. source: "./media/characters/cianus/side.svg",
  54070. extra: 808/526,
  54071. bottom: 61/869
  54072. }
  54073. },
  54074. },
  54075. [
  54076. {
  54077. name: "Normal",
  54078. height: math.unit(12, "feet"),
  54079. default: true
  54080. },
  54081. ]
  54082. ))
  54083. characterMakers.push(() => makeCharacter(
  54084. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54085. {
  54086. front: {
  54087. height: math.unit(9 + 6/12, "feet"),
  54088. weight: math.unit(300, "lb"),
  54089. name: "Front",
  54090. image: {
  54091. source: "./media/characters/ahab/front.svg",
  54092. extra: 1897/1868,
  54093. bottom: 121/2018
  54094. }
  54095. },
  54096. frontNsfw: {
  54097. height: math.unit(9 + 6/12, "feet"),
  54098. weight: math.unit(300, "lb"),
  54099. name: "Front-nsfw",
  54100. image: {
  54101. source: "./media/characters/ahab/front-nsfw.svg",
  54102. extra: 1897/1868,
  54103. bottom: 121/2018
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(9 + 6/12, "feet")
  54111. },
  54112. {
  54113. name: "Macro",
  54114. height: math.unit(657, "feet"),
  54115. default: true
  54116. },
  54117. ]
  54118. ))
  54119. characterMakers.push(() => makeCharacter(
  54120. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54121. {
  54122. front: {
  54123. height: math.unit(2.69, "meters"),
  54124. weight: math.unit(132, "kg"),
  54125. name: "Front",
  54126. image: {
  54127. source: "./media/characters/aarkus/front.svg",
  54128. extra: 1400/1231,
  54129. bottom: 34/1434
  54130. }
  54131. },
  54132. back: {
  54133. height: math.unit(2.69, "meters"),
  54134. weight: math.unit(132, "kg"),
  54135. name: "Back",
  54136. image: {
  54137. source: "./media/characters/aarkus/back.svg",
  54138. extra: 1381/1218,
  54139. bottom: 30/1411
  54140. }
  54141. },
  54142. frontNsfw: {
  54143. height: math.unit(2.69, "meters"),
  54144. weight: math.unit(132, "kg"),
  54145. name: "Front (NSFW)",
  54146. image: {
  54147. source: "./media/characters/aarkus/front-nsfw.svg",
  54148. extra: 1400/1231,
  54149. bottom: 34/1434
  54150. }
  54151. },
  54152. foot: {
  54153. height: math.unit(1.45, "feet"),
  54154. name: "Foot",
  54155. image: {
  54156. source: "./media/characters/aarkus/foot.svg"
  54157. }
  54158. },
  54159. head: {
  54160. height: math.unit(2.85, "feet"),
  54161. name: "Head",
  54162. image: {
  54163. source: "./media/characters/aarkus/head.svg"
  54164. }
  54165. },
  54166. headAlt: {
  54167. height: math.unit(3.07, "feet"),
  54168. name: "Head (Alt)",
  54169. image: {
  54170. source: "./media/characters/aarkus/head-alt.svg"
  54171. }
  54172. },
  54173. mouth: {
  54174. height: math.unit(1.25, "feet"),
  54175. name: "Mouth",
  54176. image: {
  54177. source: "./media/characters/aarkus/mouth.svg"
  54178. }
  54179. },
  54180. dick: {
  54181. height: math.unit(1.77, "feet"),
  54182. name: "Dick",
  54183. image: {
  54184. source: "./media/characters/aarkus/dick.svg"
  54185. }
  54186. },
  54187. },
  54188. [
  54189. {
  54190. name: "Normal",
  54191. height: math.unit(2.69, "meters"),
  54192. default: true
  54193. },
  54194. {
  54195. name: "Macro",
  54196. height: math.unit(269, "meters")
  54197. },
  54198. {
  54199. name: "Macro+",
  54200. height: math.unit(672.5, "meters")
  54201. },
  54202. {
  54203. name: "Megamacro",
  54204. height: math.unit(2.017, "km")
  54205. },
  54206. ]
  54207. ))
  54208. characterMakers.push(() => makeCharacter(
  54209. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54210. {
  54211. front: {
  54212. height: math.unit(23.47, "cm"),
  54213. weight: math.unit(600, "grams"),
  54214. name: "Front",
  54215. image: {
  54216. source: "./media/characters/diode/front.svg",
  54217. extra: 1778/1396,
  54218. bottom: 95/1873
  54219. }
  54220. },
  54221. side: {
  54222. height: math.unit(23.47, "cm"),
  54223. weight: math.unit(600, "grams"),
  54224. name: "Side",
  54225. image: {
  54226. source: "./media/characters/diode/side.svg",
  54227. extra: 1831/1404,
  54228. bottom: 86/1917
  54229. }
  54230. },
  54231. wings: {
  54232. height: math.unit(0.683, "feet"),
  54233. name: "Wings",
  54234. image: {
  54235. source: "./media/characters/diode/wings.svg"
  54236. }
  54237. },
  54238. },
  54239. [
  54240. {
  54241. name: "Normal",
  54242. height: math.unit(23.47, "cm"),
  54243. default: true
  54244. },
  54245. ]
  54246. ))
  54247. characterMakers.push(() => makeCharacter(
  54248. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54249. {
  54250. front: {
  54251. height: math.unit(6 + 3/12, "feet"),
  54252. weight: math.unit(250, "lb"),
  54253. name: "Front",
  54254. image: {
  54255. source: "./media/characters/reika/front.svg",
  54256. extra: 1120/1078,
  54257. bottom: 86/1206
  54258. }
  54259. },
  54260. },
  54261. [
  54262. {
  54263. name: "Normal",
  54264. height: math.unit(6 + 3/12, "feet"),
  54265. default: true
  54266. },
  54267. ]
  54268. ))
  54269. characterMakers.push(() => makeCharacter(
  54270. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54271. {
  54272. front: {
  54273. height: math.unit(16 + 8/12, "feet"),
  54274. weight: math.unit(9000, "lb"),
  54275. name: "Front",
  54276. image: {
  54277. source: "./media/characters/lokuto-takama/front.svg",
  54278. extra: 1774/1632,
  54279. bottom: 147/1921
  54280. },
  54281. extraAttributes: {
  54282. "bustWidth": {
  54283. name: "Bust Width",
  54284. power: 1,
  54285. type: "length",
  54286. base: math.unit(2.4, "meters")
  54287. },
  54288. "breastWeight": {
  54289. name: "Breast Weight",
  54290. power: 3,
  54291. type: "mass",
  54292. base: math.unit(1000, "kg")
  54293. },
  54294. }
  54295. },
  54296. },
  54297. [
  54298. {
  54299. name: "Normal",
  54300. height: math.unit(16 + 8/12, "feet"),
  54301. default: true
  54302. },
  54303. ]
  54304. ))
  54305. characterMakers.push(() => makeCharacter(
  54306. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54307. {
  54308. front: {
  54309. height: math.unit(10, "cm"),
  54310. weight: math.unit(850, "grams"),
  54311. name: "Front",
  54312. image: {
  54313. source: "./media/characters/owak-bone/front.svg",
  54314. extra: 1965/1801,
  54315. bottom: 31/1996
  54316. }
  54317. },
  54318. },
  54319. [
  54320. {
  54321. name: "Normal",
  54322. height: math.unit(10, "cm"),
  54323. default: true
  54324. },
  54325. ]
  54326. ))
  54327. characterMakers.push(() => makeCharacter(
  54328. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54329. {
  54330. front: {
  54331. height: math.unit(2 + 6/12, "feet"),
  54332. weight: math.unit(9, "lb"),
  54333. name: "Front",
  54334. image: {
  54335. source: "./media/characters/muffin/front.svg",
  54336. extra: 1220/1195,
  54337. bottom: 84/1304
  54338. }
  54339. },
  54340. },
  54341. [
  54342. {
  54343. name: "Normal",
  54344. height: math.unit(2 + 6/12, "feet"),
  54345. default: true
  54346. },
  54347. ]
  54348. ))
  54349. characterMakers.push(() => makeCharacter(
  54350. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54351. {
  54352. front: {
  54353. height: math.unit(7, "feet"),
  54354. name: "Front",
  54355. image: {
  54356. source: "./media/characters/chimera/front.svg",
  54357. extra: 1752/1614,
  54358. bottom: 68/1820
  54359. }
  54360. },
  54361. },
  54362. [
  54363. {
  54364. name: "Normal",
  54365. height: math.unit(7, "feet")
  54366. },
  54367. {
  54368. name: "Gigamacro",
  54369. height: math.unit(2.9, "gigameters"),
  54370. default: true
  54371. },
  54372. {
  54373. name: "Universal",
  54374. height: math.unit(1.56e26, "yottameters")
  54375. },
  54376. ]
  54377. ))
  54378. characterMakers.push(() => makeCharacter(
  54379. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54380. {
  54381. front: {
  54382. height: math.unit(3, "feet"),
  54383. weight: math.unit(20, "lb"),
  54384. name: "Front",
  54385. image: {
  54386. source: "./media/characters/kit-fennec-fox/front.svg",
  54387. extra: 1027/932,
  54388. bottom: 16/1043
  54389. }
  54390. },
  54391. back: {
  54392. height: math.unit(3, "feet"),
  54393. weight: math.unit(20, "lb"),
  54394. name: "Back",
  54395. image: {
  54396. source: "./media/characters/kit-fennec-fox/back.svg",
  54397. extra: 1027/932,
  54398. bottom: 16/1043
  54399. }
  54400. },
  54401. },
  54402. [
  54403. {
  54404. name: "Normal",
  54405. height: math.unit(3, "feet"),
  54406. default: true
  54407. },
  54408. ]
  54409. ))
  54410. characterMakers.push(() => makeCharacter(
  54411. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54412. {
  54413. front: {
  54414. height: math.unit(167, "cm"),
  54415. name: "Front",
  54416. image: {
  54417. source: "./media/characters/blue-otter/front.svg",
  54418. extra: 1951/1920,
  54419. bottom: 31/1982
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Otter-Sized",
  54426. height: math.unit(100, "cm")
  54427. },
  54428. {
  54429. name: "Normal",
  54430. height: math.unit(167, "cm"),
  54431. default: true
  54432. },
  54433. ]
  54434. ))
  54435. characterMakers.push(() => makeCharacter(
  54436. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54437. {
  54438. front: {
  54439. height: math.unit(4 + 4/12, "feet"),
  54440. name: "Front",
  54441. image: {
  54442. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54443. extra: 1072/1067,
  54444. bottom: 117/1189
  54445. }
  54446. },
  54447. back: {
  54448. height: math.unit(4 + 4/12, "feet"),
  54449. name: "Back",
  54450. image: {
  54451. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54452. extra: 1135/1129,
  54453. bottom: 57/1192
  54454. }
  54455. },
  54456. head: {
  54457. height: math.unit(1.77, "feet"),
  54458. name: "Head",
  54459. image: {
  54460. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54461. }
  54462. },
  54463. },
  54464. [
  54465. {
  54466. name: "Normal",
  54467. height: math.unit(4 + 4/12, "feet"),
  54468. default: true
  54469. },
  54470. ]
  54471. ))
  54472. characterMakers.push(() => makeCharacter(
  54473. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54474. {
  54475. front: {
  54476. height: math.unit(2, "inches"),
  54477. name: "Front",
  54478. image: {
  54479. source: "./media/characters/carley-hartford/front.svg",
  54480. extra: 1035/988,
  54481. bottom: 23/1058
  54482. }
  54483. },
  54484. back: {
  54485. height: math.unit(2, "inches"),
  54486. name: "Back",
  54487. image: {
  54488. source: "./media/characters/carley-hartford/back.svg",
  54489. extra: 1035/988,
  54490. bottom: 23/1058
  54491. }
  54492. },
  54493. dressed: {
  54494. height: math.unit(2, "inches"),
  54495. name: "Dressed",
  54496. image: {
  54497. source: "./media/characters/carley-hartford/dressed.svg",
  54498. extra: 651/620,
  54499. bottom: 0/651
  54500. }
  54501. },
  54502. },
  54503. [
  54504. {
  54505. name: "Micro",
  54506. height: math.unit(2, "inches"),
  54507. default: true
  54508. },
  54509. {
  54510. name: "Macro",
  54511. height: math.unit(6 + 3/12, "feet")
  54512. },
  54513. ]
  54514. ))
  54515. characterMakers.push(() => makeCharacter(
  54516. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54517. {
  54518. front: {
  54519. height: math.unit(2 + 3/12, "feet"),
  54520. weight: math.unit(15 + 7/16, "lb"),
  54521. name: "Front",
  54522. image: {
  54523. source: "./media/characters/duke/front.svg",
  54524. extra: 910/815,
  54525. bottom: 30/940
  54526. }
  54527. },
  54528. },
  54529. [
  54530. {
  54531. name: "Normal",
  54532. height: math.unit(2 + 3/12, "feet"),
  54533. default: true
  54534. },
  54535. ]
  54536. ))
  54537. characterMakers.push(() => makeCharacter(
  54538. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54539. {
  54540. front: {
  54541. height: math.unit(5 + 4/12, "feet"),
  54542. weight: math.unit(156, "lb"),
  54543. name: "Front",
  54544. image: {
  54545. source: "./media/characters/dein/front.svg",
  54546. extra: 855/815,
  54547. bottom: 48/903
  54548. }
  54549. },
  54550. side: {
  54551. height: math.unit(5 + 4/12, "feet"),
  54552. weight: math.unit(156, "lb"),
  54553. name: "side",
  54554. image: {
  54555. source: "./media/characters/dein/side.svg",
  54556. extra: 846/803,
  54557. bottom: 25/871
  54558. }
  54559. },
  54560. maw: {
  54561. height: math.unit(1.45, "feet"),
  54562. name: "Maw",
  54563. image: {
  54564. source: "./media/characters/dein/maw.svg"
  54565. }
  54566. },
  54567. },
  54568. [
  54569. {
  54570. name: "Ferret Sized",
  54571. height: math.unit(2 + 5/12, "feet")
  54572. },
  54573. {
  54574. name: "Normal",
  54575. height: math.unit(5 + 4/12, "feet"),
  54576. default: true
  54577. },
  54578. ]
  54579. ))
  54580. characterMakers.push(() => makeCharacter(
  54581. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54582. {
  54583. front: {
  54584. height: math.unit(84 + 8/12, "feet"),
  54585. weight: math.unit(942180, "lb"),
  54586. name: "Front",
  54587. image: {
  54588. source: "./media/characters/daurine-arima/front.svg",
  54589. extra: 1989/1782,
  54590. bottom: 37/2026
  54591. }
  54592. },
  54593. side: {
  54594. height: math.unit(84 + 8/12, "feet"),
  54595. weight: math.unit(942180, "lb"),
  54596. name: "Side",
  54597. image: {
  54598. source: "./media/characters/daurine-arima/side.svg",
  54599. extra: 1997/1790,
  54600. bottom: 21/2018
  54601. }
  54602. },
  54603. back: {
  54604. height: math.unit(84 + 8/12, "feet"),
  54605. weight: math.unit(942180, "lb"),
  54606. name: "Back",
  54607. image: {
  54608. source: "./media/characters/daurine-arima/back.svg",
  54609. extra: 1992/1800,
  54610. bottom: 12/2004
  54611. }
  54612. },
  54613. head: {
  54614. height: math.unit(15.5, "feet"),
  54615. name: "Head",
  54616. image: {
  54617. source: "./media/characters/daurine-arima/head.svg"
  54618. }
  54619. },
  54620. headAlt: {
  54621. height: math.unit(19.19, "feet"),
  54622. name: "Head (Alt)",
  54623. image: {
  54624. source: "./media/characters/daurine-arima/head-alt.svg"
  54625. }
  54626. },
  54627. },
  54628. [
  54629. {
  54630. name: "Minimum height",
  54631. height: math.unit(8 + 10/12, "feet")
  54632. },
  54633. {
  54634. name: "Comfort height",
  54635. height: math.unit(19 + 6 /12, "feet")
  54636. },
  54637. {
  54638. name: "\"Normal\" height",
  54639. height: math.unit(28 + 10/12, "feet")
  54640. },
  54641. {
  54642. name: "Base height",
  54643. height: math.unit(84 + 8/12, "feet"),
  54644. default: true
  54645. },
  54646. {
  54647. name: "Mini-macro",
  54648. height: math.unit(2360, "feet")
  54649. },
  54650. {
  54651. name: "Macro",
  54652. height: math.unit(10, "miles")
  54653. },
  54654. {
  54655. name: "Goddess",
  54656. height: math.unit(9.99e40, "yottameters")
  54657. },
  54658. ]
  54659. ))
  54660. characterMakers.push(() => makeCharacter(
  54661. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54662. {
  54663. front: {
  54664. height: math.unit(2.3, "meters"),
  54665. name: "Front",
  54666. image: {
  54667. source: "./media/characters/cilenomon/front.svg",
  54668. extra: 1963/1778,
  54669. bottom: 54/2017
  54670. }
  54671. },
  54672. },
  54673. [
  54674. {
  54675. name: "Normal",
  54676. height: math.unit(2.3, "meters"),
  54677. default: true
  54678. },
  54679. {
  54680. name: "Big",
  54681. height: math.unit(5, "meters")
  54682. },
  54683. {
  54684. name: "Macro",
  54685. height: math.unit(30, "meters")
  54686. },
  54687. {
  54688. name: "True",
  54689. height: math.unit(1, "universe")
  54690. },
  54691. ]
  54692. ))
  54693. characterMakers.push(() => makeCharacter(
  54694. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54695. {
  54696. front: {
  54697. height: math.unit(5, "feet"),
  54698. name: "Front",
  54699. image: {
  54700. source: "./media/characters/sen-mink/front.svg",
  54701. extra: 1727/1675,
  54702. bottom: 35/1762
  54703. }
  54704. },
  54705. },
  54706. [
  54707. {
  54708. name: "Normal",
  54709. height: math.unit(5, "feet"),
  54710. default: true
  54711. },
  54712. ]
  54713. ))
  54714. characterMakers.push(() => makeCharacter(
  54715. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54716. {
  54717. front: {
  54718. height: math.unit(5.42999, "feet"),
  54719. weight: math.unit(100, "lb"),
  54720. name: "Front",
  54721. image: {
  54722. source: "./media/characters/ophois/front.svg",
  54723. extra: 1429/1286,
  54724. bottom: 60/1489
  54725. }
  54726. },
  54727. },
  54728. [
  54729. {
  54730. name: "Normal",
  54731. height: math.unit(5.42999, "feet"),
  54732. default: true
  54733. },
  54734. ]
  54735. ))
  54736. characterMakers.push(() => makeCharacter(
  54737. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54738. {
  54739. front: {
  54740. height: math.unit(2, "meters"),
  54741. name: "Front",
  54742. image: {
  54743. source: "./media/characters/riley/front.svg",
  54744. extra: 1779/1754,
  54745. bottom: 139/1918
  54746. }
  54747. },
  54748. },
  54749. [
  54750. {
  54751. name: "Normal",
  54752. height: math.unit(2, "meters"),
  54753. default: true
  54754. },
  54755. ]
  54756. ))
  54757. characterMakers.push(() => makeCharacter(
  54758. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54759. {
  54760. front: {
  54761. height: math.unit(6 + 2/12, "feet"),
  54762. weight: math.unit(195, "lb"),
  54763. preyCapacity: math.unit(6, "people"),
  54764. name: "Front",
  54765. image: {
  54766. source: "./media/characters/shuken-flash/front.svg",
  54767. extra: 1905/1739,
  54768. bottom: 65/1970
  54769. }
  54770. },
  54771. back: {
  54772. height: math.unit(6 + 2/12, "feet"),
  54773. weight: math.unit(195, "lb"),
  54774. preyCapacity: math.unit(6, "people"),
  54775. name: "Back",
  54776. image: {
  54777. source: "./media/characters/shuken-flash/back.svg",
  54778. extra: 1912/1751,
  54779. bottom: 13/1925
  54780. }
  54781. },
  54782. },
  54783. [
  54784. {
  54785. name: "Normal",
  54786. height: math.unit(6 + 2/12, "feet"),
  54787. default: true
  54788. },
  54789. ]
  54790. ))
  54791. characterMakers.push(() => makeCharacter(
  54792. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54793. {
  54794. front: {
  54795. height: math.unit(5 + 9/12, "feet"),
  54796. weight: math.unit(150, "lb"),
  54797. name: "Front",
  54798. image: {
  54799. source: "./media/characters/plat/front.svg",
  54800. extra: 1816/1703,
  54801. bottom: 43/1859
  54802. }
  54803. },
  54804. side: {
  54805. height: math.unit(5 + 9/12, "feet"),
  54806. weight: math.unit(300, "lb"),
  54807. name: "Side",
  54808. image: {
  54809. source: "./media/characters/plat/side.svg",
  54810. extra: 1824/1699,
  54811. bottom: 18/1842
  54812. }
  54813. },
  54814. },
  54815. [
  54816. {
  54817. name: "Normal",
  54818. height: math.unit(5 + 9/12, "feet"),
  54819. default: true
  54820. },
  54821. ]
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54825. {
  54826. front: {
  54827. height: math.unit(9, "feet"),
  54828. weight: math.unit(1800, "lb"),
  54829. name: "Front",
  54830. image: {
  54831. source: "./media/characters/elaine/front.svg",
  54832. extra: 1833/1354,
  54833. bottom: 25/1858
  54834. }
  54835. },
  54836. back: {
  54837. height: math.unit(8.8, "feet"),
  54838. weight: math.unit(1800, "lb"),
  54839. name: "Back",
  54840. image: {
  54841. source: "./media/characters/elaine/back.svg",
  54842. extra: 1641/1233,
  54843. bottom: 53/1694
  54844. }
  54845. },
  54846. },
  54847. [
  54848. {
  54849. name: "Normal",
  54850. height: math.unit(9, "feet"),
  54851. default: true
  54852. },
  54853. ]
  54854. ))
  54855. characterMakers.push(() => makeCharacter(
  54856. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54857. {
  54858. front: {
  54859. height: math.unit(17 + 9/12, "feet"),
  54860. weight: math.unit(8000, "lb"),
  54861. name: "Front",
  54862. image: {
  54863. source: "./media/characters/vera-raven/front.svg",
  54864. extra: 1457/1412,
  54865. bottom: 121/1578
  54866. }
  54867. },
  54868. side: {
  54869. height: math.unit(17 + 9/12, "feet"),
  54870. weight: math.unit(8000, "lb"),
  54871. name: "Side",
  54872. image: {
  54873. source: "./media/characters/vera-raven/side.svg",
  54874. extra: 1510/1464,
  54875. bottom: 54/1564
  54876. }
  54877. },
  54878. },
  54879. [
  54880. {
  54881. name: "Normal",
  54882. height: math.unit(17 + 9/12, "feet"),
  54883. default: true
  54884. },
  54885. ]
  54886. ))
  54887. characterMakers.push(() => makeCharacter(
  54888. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54889. {
  54890. dressed: {
  54891. height: math.unit(6 + 9/12, "feet"),
  54892. name: "Dressed",
  54893. image: {
  54894. source: "./media/characters/nakisha/dressed.svg",
  54895. extra: 1909/1757,
  54896. bottom: 48/1957
  54897. }
  54898. },
  54899. nude: {
  54900. height: math.unit(6 + 9/12, "feet"),
  54901. name: "Nude",
  54902. image: {
  54903. source: "./media/characters/nakisha/nude.svg",
  54904. extra: 1917/1765,
  54905. bottom: 34/1951
  54906. }
  54907. },
  54908. },
  54909. [
  54910. {
  54911. name: "Normal",
  54912. height: math.unit(6 + 9/12, "feet"),
  54913. default: true
  54914. },
  54915. ]
  54916. ))
  54917. characterMakers.push(() => makeCharacter(
  54918. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54919. {
  54920. front: {
  54921. height: math.unit(87, "meters"),
  54922. name: "Front",
  54923. image: {
  54924. source: "./media/characters/serafin/front.svg",
  54925. extra: 1919/1776,
  54926. bottom: 65/1984
  54927. }
  54928. },
  54929. },
  54930. [
  54931. {
  54932. name: "Normal",
  54933. height: math.unit(87, "meters"),
  54934. default: true
  54935. },
  54936. ]
  54937. ))
  54938. characterMakers.push(() => makeCharacter(
  54939. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54940. {
  54941. front: {
  54942. height: math.unit(6, "feet"),
  54943. weight: math.unit(200, "lb"),
  54944. name: "Front",
  54945. image: {
  54946. source: "./media/characters/poptart/front.svg",
  54947. extra: 615/583,
  54948. bottom: 23/638
  54949. }
  54950. },
  54951. back: {
  54952. height: math.unit(6, "feet"),
  54953. weight: math.unit(200, "lb"),
  54954. name: "Back",
  54955. image: {
  54956. source: "./media/characters/poptart/back.svg",
  54957. extra: 617/584,
  54958. bottom: 22/639
  54959. }
  54960. },
  54961. frontNsfw: {
  54962. height: math.unit(6, "feet"),
  54963. weight: math.unit(200, "lb"),
  54964. name: "Front (NSFW)",
  54965. image: {
  54966. source: "./media/characters/poptart/front-nsfw.svg",
  54967. extra: 615/583,
  54968. bottom: 23/638
  54969. }
  54970. },
  54971. backNsfw: {
  54972. height: math.unit(6, "feet"),
  54973. weight: math.unit(200, "lb"),
  54974. name: "Back (NSFW)",
  54975. image: {
  54976. source: "./media/characters/poptart/back-nsfw.svg",
  54977. extra: 617/584,
  54978. bottom: 22/639
  54979. }
  54980. },
  54981. hand: {
  54982. height: math.unit(1.14, "feet"),
  54983. name: "Hand",
  54984. image: {
  54985. source: "./media/characters/poptart/hand.svg"
  54986. }
  54987. },
  54988. foot: {
  54989. height: math.unit(1.5, "feet"),
  54990. name: "Foot",
  54991. image: {
  54992. source: "./media/characters/poptart/foot.svg"
  54993. }
  54994. },
  54995. },
  54996. [
  54997. {
  54998. name: "Normal",
  54999. height: math.unit(6, "feet"),
  55000. default: true
  55001. },
  55002. {
  55003. name: "Grande",
  55004. height: math.unit(350, "feet")
  55005. },
  55006. {
  55007. name: "Massif",
  55008. height: math.unit(967, "feet")
  55009. },
  55010. ]
  55011. ))
  55012. characterMakers.push(() => makeCharacter(
  55013. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55014. {
  55015. hyenaSide: {
  55016. height: math.unit(120, "cm"),
  55017. weight: math.unit(120, "lb"),
  55018. name: "Side",
  55019. image: {
  55020. source: "./media/characters/trance/hyena-side.svg",
  55021. extra: 998/904,
  55022. bottom: 76/1074
  55023. }
  55024. },
  55025. },
  55026. [
  55027. {
  55028. name: "Normal",
  55029. height: math.unit(120, "cm"),
  55030. default: true
  55031. },
  55032. {
  55033. name: "Dire",
  55034. height: math.unit(230, "cm")
  55035. },
  55036. {
  55037. name: "Macro",
  55038. height: math.unit(37, "feet")
  55039. },
  55040. ]
  55041. ))
  55042. characterMakers.push(() => makeCharacter(
  55043. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55044. {
  55045. front: {
  55046. height: math.unit(6 + 3/12, "feet"),
  55047. name: "Front",
  55048. image: {
  55049. source: "./media/characters/michael-berretta/front.svg",
  55050. extra: 515/494,
  55051. bottom: 20/535
  55052. }
  55053. },
  55054. back: {
  55055. height: math.unit(6 + 3/12, "feet"),
  55056. name: "Back",
  55057. image: {
  55058. source: "./media/characters/michael-berretta/back.svg",
  55059. extra: 520/497,
  55060. bottom: 21/541
  55061. }
  55062. },
  55063. frontNsfw: {
  55064. height: math.unit(6 + 3/12, "feet"),
  55065. name: "Front (NSFW)",
  55066. image: {
  55067. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55068. extra: 515/494,
  55069. bottom: 20/535
  55070. }
  55071. },
  55072. dick: {
  55073. height: math.unit(1, "feet"),
  55074. name: "Dick",
  55075. image: {
  55076. source: "./media/characters/michael-berretta/dick.svg"
  55077. }
  55078. },
  55079. },
  55080. [
  55081. {
  55082. name: "Normal",
  55083. height: math.unit(6 + 3/12, "feet"),
  55084. default: true
  55085. },
  55086. {
  55087. name: "Big",
  55088. height: math.unit(12, "feet")
  55089. },
  55090. {
  55091. name: "Macro",
  55092. height: math.unit(187.5, "feet")
  55093. },
  55094. ]
  55095. ))
  55096. characterMakers.push(() => makeCharacter(
  55097. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55098. {
  55099. front: {
  55100. height: math.unit(9 + 9/12, "feet"),
  55101. weight: math.unit(1244, "lb"),
  55102. name: "Front",
  55103. image: {
  55104. source: "./media/characters/stella-edgecomb/front.svg",
  55105. extra: 1835/1706,
  55106. bottom: 49/1884
  55107. }
  55108. },
  55109. pen: {
  55110. height: math.unit(0.95, "feet"),
  55111. name: "Pen",
  55112. image: {
  55113. source: "./media/characters/stella-edgecomb/pen.svg"
  55114. }
  55115. },
  55116. },
  55117. [
  55118. {
  55119. name: "Cozy Bear",
  55120. height: math.unit(0.5, "inches")
  55121. },
  55122. {
  55123. name: "Normal",
  55124. height: math.unit(9 + 9/12, "feet"),
  55125. default: true
  55126. },
  55127. {
  55128. name: "Giga Bear",
  55129. height: math.unit(1, "mile")
  55130. },
  55131. {
  55132. name: "Great Bear",
  55133. height: math.unit(53, "miles")
  55134. },
  55135. {
  55136. name: "Goddess Bear",
  55137. height: math.unit(40000, "miles")
  55138. },
  55139. {
  55140. name: "Sun Bear",
  55141. height: math.unit(900000, "miles")
  55142. },
  55143. ]
  55144. ))
  55145. characterMakers.push(() => makeCharacter(
  55146. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55147. {
  55148. anthroFront: {
  55149. height: math.unit(556, "cm"),
  55150. weight: math.unit(2650, "kg"),
  55151. preyCapacity: math.unit(3, "people"),
  55152. name: "Front",
  55153. image: {
  55154. source: "./media/characters/ash´iika/front.svg",
  55155. extra: 710/673,
  55156. bottom: 15/725
  55157. },
  55158. form: "anthro",
  55159. default: true
  55160. },
  55161. anthroSide: {
  55162. height: math.unit(556, "cm"),
  55163. weight: math.unit(2650, "kg"),
  55164. preyCapacity: math.unit(3, "people"),
  55165. name: "Side",
  55166. image: {
  55167. source: "./media/characters/ash´iika/side.svg",
  55168. extra: 696/676,
  55169. bottom: 13/709
  55170. },
  55171. form: "anthro"
  55172. },
  55173. anthroDressed: {
  55174. height: math.unit(556, "cm"),
  55175. weight: math.unit(2650, "kg"),
  55176. preyCapacity: math.unit(3, "people"),
  55177. name: "Dressed",
  55178. image: {
  55179. source: "./media/characters/ash´iika/dressed.svg",
  55180. extra: 710/673,
  55181. bottom: 15/725
  55182. },
  55183. form: "anthro"
  55184. },
  55185. anthroHead: {
  55186. height: math.unit(3.5, "feet"),
  55187. name: "Head",
  55188. image: {
  55189. source: "./media/characters/ash´iika/head.svg",
  55190. extra: 348/291,
  55191. bottom: 45/393
  55192. },
  55193. form: "anthro"
  55194. },
  55195. feralSide: {
  55196. height: math.unit(870, "cm"),
  55197. weight: math.unit(17500, "kg"),
  55198. preyCapacity: math.unit(15, "people"),
  55199. name: "Side",
  55200. image: {
  55201. source: "./media/characters/ash´iika/feral.svg",
  55202. extra: 595/199,
  55203. bottom: 7/602
  55204. },
  55205. form: "feral",
  55206. default: true,
  55207. },
  55208. },
  55209. [
  55210. {
  55211. name: "Normal",
  55212. height: math.unit(556, "cm"),
  55213. default: true,
  55214. form: "anthro"
  55215. },
  55216. {
  55217. name: "Macro",
  55218. height: math.unit(88, "meters"),
  55219. form: "anthro"
  55220. },
  55221. {
  55222. name: "Normal",
  55223. height: math.unit(870, "cm"),
  55224. default: true,
  55225. form: "feral"
  55226. },
  55227. {
  55228. name: "Large",
  55229. height: math.unit(25, "meters"),
  55230. form: "feral"
  55231. },
  55232. ],
  55233. {
  55234. "anthro": {
  55235. name: "Anthro",
  55236. default: true
  55237. },
  55238. "feral": {
  55239. name: "Feral",
  55240. },
  55241. }
  55242. ))
  55243. characterMakers.push(() => makeCharacter(
  55244. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55245. {
  55246. front: {
  55247. height: math.unit(10, "feet"),
  55248. weight: math.unit(800, "lb"),
  55249. name: "Front",
  55250. image: {
  55251. source: "./media/characters/yen/front.svg",
  55252. extra: 443/411,
  55253. bottom: 6/449
  55254. }
  55255. },
  55256. sleeping: {
  55257. height: math.unit(10, "feet"),
  55258. weight: math.unit(800, "lb"),
  55259. name: "Sleeping",
  55260. image: {
  55261. source: "./media/characters/yen/sleeping.svg",
  55262. extra: 470/422,
  55263. bottom: 0/470
  55264. }
  55265. },
  55266. head: {
  55267. height: math.unit(2.2, "feet"),
  55268. name: "Head",
  55269. image: {
  55270. source: "./media/characters/yen/head.svg"
  55271. }
  55272. },
  55273. headAlt: {
  55274. height: math.unit(2.1, "feet"),
  55275. name: "Head (Alt)",
  55276. image: {
  55277. source: "./media/characters/yen/head-alt.svg"
  55278. }
  55279. },
  55280. },
  55281. [
  55282. {
  55283. name: "Normal",
  55284. height: math.unit(10, "feet"),
  55285. default: true
  55286. },
  55287. ]
  55288. ))
  55289. characterMakers.push(() => makeCharacter(
  55290. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55291. {
  55292. front: {
  55293. height: math.unit(12, "feet"),
  55294. name: "Front",
  55295. image: {
  55296. source: "./media/characters/citra/front.svg",
  55297. extra: 1950/1710,
  55298. bottom: 47/1997
  55299. }
  55300. },
  55301. },
  55302. [
  55303. {
  55304. name: "Normal",
  55305. height: math.unit(12, "feet"),
  55306. default: true
  55307. },
  55308. ]
  55309. ))
  55310. characterMakers.push(() => makeCharacter(
  55311. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55312. {
  55313. side: {
  55314. height: math.unit(7 + 10/12, "feet"),
  55315. name: "Side",
  55316. image: {
  55317. source: "./media/characters/sholstim/side.svg",
  55318. extra: 786/682,
  55319. bottom: 40/826
  55320. }
  55321. },
  55322. },
  55323. [
  55324. {
  55325. name: "Normal",
  55326. height: math.unit(7 + 10/12, "feet"),
  55327. default: true
  55328. },
  55329. ]
  55330. ))
  55331. characterMakers.push(() => makeCharacter(
  55332. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55333. {
  55334. front: {
  55335. height: math.unit(3.10, "meters"),
  55336. name: "Front",
  55337. image: {
  55338. source: "./media/characters/aggyn/front.svg",
  55339. extra: 1188/963,
  55340. bottom: 24/1212
  55341. }
  55342. },
  55343. },
  55344. [
  55345. {
  55346. name: "Normal",
  55347. height: math.unit(3.10, "meters"),
  55348. default: true
  55349. },
  55350. ]
  55351. ))
  55352. characterMakers.push(() => makeCharacter(
  55353. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55354. {
  55355. front: {
  55356. height: math.unit(7 + 5/12, "feet"),
  55357. weight: math.unit(687, "lb"),
  55358. name: "Front",
  55359. image: {
  55360. source: "./media/characters/alsandair-hergenroether/front.svg",
  55361. extra: 1251/1186,
  55362. bottom: 75/1326
  55363. }
  55364. },
  55365. back: {
  55366. height: math.unit(7 + 5/12, "feet"),
  55367. weight: math.unit(687, "lb"),
  55368. name: "Back",
  55369. image: {
  55370. source: "./media/characters/alsandair-hergenroether/back.svg",
  55371. extra: 1290/1229,
  55372. bottom: 17/1307
  55373. }
  55374. },
  55375. },
  55376. [
  55377. {
  55378. name: "Max Compression",
  55379. height: math.unit(7 + 5/12, "feet"),
  55380. default: true
  55381. },
  55382. {
  55383. name: "\"Normal\"",
  55384. height: math.unit(2, "universes")
  55385. },
  55386. ]
  55387. ))
  55388. characterMakers.push(() => makeCharacter(
  55389. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55390. {
  55391. front: {
  55392. height: math.unit(4 + 1/12, "feet"),
  55393. weight: math.unit(92, "lb"),
  55394. name: "Front",
  55395. image: {
  55396. source: "./media/characters/ie/front.svg",
  55397. extra: 1585/1352,
  55398. bottom: 91/1676
  55399. }
  55400. },
  55401. },
  55402. [
  55403. {
  55404. name: "Normal",
  55405. height: math.unit(4 + 1/12, "feet"),
  55406. default: true
  55407. },
  55408. ]
  55409. ))
  55410. characterMakers.push(() => makeCharacter(
  55411. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55412. {
  55413. anthro: {
  55414. height: math.unit(6, "feet"),
  55415. weight: math.unit(150, "lb"),
  55416. name: "Front",
  55417. image: {
  55418. source: "./media/characters/willow/anthro.svg",
  55419. extra: 1073/986,
  55420. bottom: 34/1107
  55421. },
  55422. form: "anthro",
  55423. default: true
  55424. },
  55425. taur: {
  55426. height: math.unit(6, "feet"),
  55427. weight: math.unit(150, "lb"),
  55428. name: "Side",
  55429. image: {
  55430. source: "./media/characters/willow/taur.svg",
  55431. extra: 647/512,
  55432. bottom: 136/783
  55433. },
  55434. form: "taur",
  55435. default: true
  55436. },
  55437. },
  55438. [
  55439. {
  55440. name: "Humanoid",
  55441. height: math.unit(2.7, "meters"),
  55442. form: "anthro"
  55443. },
  55444. {
  55445. name: "Normal",
  55446. height: math.unit(9, "meters"),
  55447. form: "anthro",
  55448. default: true
  55449. },
  55450. {
  55451. name: "Humanoid",
  55452. height: math.unit(2.1, "meters"),
  55453. form: "taur"
  55454. },
  55455. {
  55456. name: "Normal",
  55457. height: math.unit(7, "meters"),
  55458. form: "taur",
  55459. default: true
  55460. },
  55461. ],
  55462. {
  55463. "anthro": {
  55464. name: "Anthro",
  55465. default: true
  55466. },
  55467. "taur": {
  55468. name: "Taur",
  55469. },
  55470. }
  55471. ))
  55472. characterMakers.push(() => makeCharacter(
  55473. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55474. {
  55475. front: {
  55476. height: math.unit(2 + 5/12, "feet"),
  55477. name: "Front",
  55478. image: {
  55479. source: "./media/characters/kyan/front.svg",
  55480. extra: 460/334,
  55481. bottom: 23/483
  55482. },
  55483. extraAttributes: {
  55484. "toeLength": {
  55485. name: "Toe Length",
  55486. power: 1,
  55487. type: "length",
  55488. base: math.unit(7, "cm")
  55489. },
  55490. "toeclawLength": {
  55491. name: "Toeclaw Length",
  55492. power: 1,
  55493. type: "length",
  55494. base: math.unit(4.7, "cm")
  55495. },
  55496. "earHeight": {
  55497. name: "Ear Height",
  55498. power: 1,
  55499. type: "length",
  55500. base: math.unit(14.1, "cm")
  55501. },
  55502. }
  55503. },
  55504. paws: {
  55505. height: math.unit(0.45, "feet"),
  55506. name: "Paws",
  55507. image: {
  55508. source: "./media/characters/kyan/paws.svg",
  55509. extra: 581/581,
  55510. bottom: 114/695
  55511. }
  55512. },
  55513. },
  55514. [
  55515. {
  55516. name: "Normal",
  55517. height: math.unit(2 + 5/12, "feet"),
  55518. default: true
  55519. },
  55520. ]
  55521. ))
  55522. characterMakers.push(() => makeCharacter(
  55523. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55524. {
  55525. front: {
  55526. height: math.unit(2 + 2/3, "feet"),
  55527. name: "Front",
  55528. image: {
  55529. source: "./media/characters/xazzon/front.svg",
  55530. extra: 1109/984,
  55531. bottom: 42/1151
  55532. }
  55533. },
  55534. back: {
  55535. height: math.unit(2 + 2/3, "feet"),
  55536. name: "Back",
  55537. image: {
  55538. source: "./media/characters/xazzon/back.svg",
  55539. extra: 1095/971,
  55540. bottom: 23/1118
  55541. }
  55542. },
  55543. },
  55544. [
  55545. {
  55546. name: "Normal",
  55547. height: math.unit(2 + 2/3, "feet"),
  55548. default: true
  55549. },
  55550. ]
  55551. ))
  55552. characterMakers.push(() => makeCharacter(
  55553. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55554. {
  55555. front: {
  55556. height: math.unit(8, "feet"),
  55557. weight: math.unit(300, "lb"),
  55558. name: "Front",
  55559. image: {
  55560. source: "./media/characters/khyla-shadowsong/front.svg",
  55561. extra: 861/798,
  55562. bottom: 32/893
  55563. }
  55564. },
  55565. side: {
  55566. height: math.unit(8, "feet"),
  55567. weight: math.unit(300, "lb"),
  55568. name: "Side",
  55569. image: {
  55570. source: "./media/characters/khyla-shadowsong/side.svg",
  55571. extra: 790/750,
  55572. bottom: 87/877
  55573. }
  55574. },
  55575. back: {
  55576. height: math.unit(8, "feet"),
  55577. weight: math.unit(300, "lb"),
  55578. name: "Back",
  55579. image: {
  55580. source: "./media/characters/khyla-shadowsong/back.svg",
  55581. extra: 855/808,
  55582. bottom: 14/869
  55583. }
  55584. },
  55585. head: {
  55586. height: math.unit(2.7, "feet"),
  55587. name: "Head",
  55588. image: {
  55589. source: "./media/characters/khyla-shadowsong/head.svg"
  55590. }
  55591. },
  55592. },
  55593. [
  55594. {
  55595. name: "Micro",
  55596. height: math.unit(6, "inches")
  55597. },
  55598. {
  55599. name: "Normal",
  55600. height: math.unit(8, "feet"),
  55601. default: true
  55602. },
  55603. ]
  55604. ))
  55605. characterMakers.push(() => makeCharacter(
  55606. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55607. {
  55608. hyperFront: {
  55609. height: math.unit(9 + 4/12, "feet"),
  55610. weight: math.unit(2000, "lb"),
  55611. name: "Front",
  55612. image: {
  55613. source: "./media/characters/tiden/hyper-front.svg",
  55614. extra: 400/382,
  55615. bottom: 6/406
  55616. },
  55617. form: "hyper",
  55618. },
  55619. regularFront: {
  55620. height: math.unit(7 + 10/12, "feet"),
  55621. weight: math.unit(470, "lb"),
  55622. name: "Front",
  55623. image: {
  55624. source: "./media/characters/tiden/regular-front.svg",
  55625. extra: 468/442,
  55626. bottom: 6/474
  55627. },
  55628. form: "regular",
  55629. },
  55630. },
  55631. [
  55632. {
  55633. name: "Normal",
  55634. height: math.unit(9 + 4/12, "feet"),
  55635. default: true,
  55636. form: "hyper"
  55637. },
  55638. {
  55639. name: "Normal",
  55640. height: math.unit(7 + 10/12, "feet"),
  55641. default: true,
  55642. form: "regular"
  55643. },
  55644. ],
  55645. {
  55646. "hyper": {
  55647. name: "Hyper",
  55648. default: true
  55649. },
  55650. "regular": {
  55651. name: "Regular",
  55652. },
  55653. }
  55654. ))
  55655. characterMakers.push(() => makeCharacter(
  55656. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55657. {
  55658. side: {
  55659. height: math.unit(6, "feet"),
  55660. weight: math.unit(150, "lb"),
  55661. name: "Side",
  55662. image: {
  55663. source: "./media/characters/jason-crowe/side.svg",
  55664. extra: 1771/766,
  55665. bottom: 219/1990
  55666. }
  55667. },
  55668. },
  55669. [
  55670. {
  55671. name: "Pocket Gryphon",
  55672. height: math.unit(6, "cm")
  55673. },
  55674. {
  55675. name: "Raven",
  55676. height: math.unit(60, "cm")
  55677. },
  55678. {
  55679. name: "Normal",
  55680. height: math.unit(1, "meter"),
  55681. default: true
  55682. },
  55683. ]
  55684. ))
  55685. characterMakers.push(() => makeCharacter(
  55686. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55687. {
  55688. front: {
  55689. height: math.unit(9 + 6/12, "feet"),
  55690. weight: math.unit(1100, "lb"),
  55691. name: "Front",
  55692. image: {
  55693. source: "./media/characters/django/front.svg",
  55694. extra: 1231/1136,
  55695. bottom: 34/1265
  55696. }
  55697. },
  55698. side: {
  55699. height: math.unit(9 + 6/12, "feet"),
  55700. weight: math.unit(1100, "lb"),
  55701. name: "Side",
  55702. image: {
  55703. source: "./media/characters/django/side.svg",
  55704. extra: 1267/1174,
  55705. bottom: 9/1276
  55706. }
  55707. },
  55708. },
  55709. [
  55710. {
  55711. name: "Normal",
  55712. height: math.unit(9 + 6/12, "feet"),
  55713. default: true
  55714. },
  55715. {
  55716. name: "Macro 1",
  55717. height: math.unit(50, "feet")
  55718. },
  55719. {
  55720. name: "Macro 2",
  55721. height: math.unit(500, "feet")
  55722. },
  55723. {
  55724. name: "Mega Macro",
  55725. height: math.unit(5300, "feet")
  55726. },
  55727. ]
  55728. ))
  55729. characterMakers.push(() => makeCharacter(
  55730. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55731. {
  55732. frontSfw: {
  55733. height: math.unit(120, "cm"),
  55734. weight: math.unit(15, "kg"),
  55735. name: "Front (SFW)",
  55736. image: {
  55737. source: "./media/characters/eri/front-sfw.svg",
  55738. extra: 1014/939,
  55739. bottom: 37/1051
  55740. },
  55741. form: "moth",
  55742. },
  55743. frontNsfw: {
  55744. height: math.unit(120, "cm"),
  55745. weight: math.unit(15, "kg"),
  55746. name: "Front (NSFW)",
  55747. image: {
  55748. source: "./media/characters/eri/front-nsfw.svg",
  55749. extra: 1014/939,
  55750. bottom: 37/1051
  55751. },
  55752. form: "moth",
  55753. default: true
  55754. },
  55755. egg: {
  55756. height: math.unit(10, "cm"),
  55757. name: "Egg",
  55758. image: {
  55759. source: "./media/characters/eri/egg.svg"
  55760. },
  55761. form: "egg",
  55762. default: true
  55763. },
  55764. },
  55765. [
  55766. {
  55767. name: "Normal",
  55768. height: math.unit(120, "cm"),
  55769. default: true,
  55770. form: "moth"
  55771. },
  55772. {
  55773. name: "Normal",
  55774. height: math.unit(10, "cm"),
  55775. default: true,
  55776. form: "egg"
  55777. },
  55778. ],
  55779. {
  55780. "moth": {
  55781. name: "Moth",
  55782. default: true
  55783. },
  55784. "egg": {
  55785. name: "Egg",
  55786. },
  55787. }
  55788. ))
  55789. characterMakers.push(() => makeCharacter(
  55790. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55791. {
  55792. front: {
  55793. height: math.unit(200, "feet"),
  55794. name: "Front",
  55795. image: {
  55796. source: "./media/characters/bishop-dowser/front.svg",
  55797. extra: 933/868,
  55798. bottom: 106/1039
  55799. }
  55800. },
  55801. },
  55802. [
  55803. {
  55804. name: "Giant",
  55805. height: math.unit(200, "feet"),
  55806. default: true
  55807. },
  55808. ]
  55809. ))
  55810. characterMakers.push(() => makeCharacter(
  55811. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55812. {
  55813. front: {
  55814. height: math.unit(2, "meters"),
  55815. preyCapacity: math.unit(3, "people"),
  55816. name: "Front",
  55817. image: {
  55818. source: "./media/characters/fryra/front.svg",
  55819. extra: 1025/948,
  55820. bottom: 30/1055
  55821. },
  55822. extraAttributes: {
  55823. "breastVolume": {
  55824. name: "Breast Volume",
  55825. power: 3,
  55826. type: "volume",
  55827. base: math.unit(8, "liters")
  55828. },
  55829. }
  55830. },
  55831. back: {
  55832. height: math.unit(2, "meters"),
  55833. preyCapacity: math.unit(3, "people"),
  55834. name: "Back",
  55835. image: {
  55836. source: "./media/characters/fryra/back.svg",
  55837. extra: 993/938,
  55838. bottom: 38/1031
  55839. },
  55840. extraAttributes: {
  55841. "breastVolume": {
  55842. name: "Breast Volume",
  55843. power: 3,
  55844. type: "volume",
  55845. base: math.unit(8, "liters")
  55846. },
  55847. }
  55848. },
  55849. head: {
  55850. height: math.unit(1.33, "feet"),
  55851. name: "Head",
  55852. image: {
  55853. source: "./media/characters/fryra/head.svg"
  55854. }
  55855. },
  55856. maw: {
  55857. height: math.unit(0.56, "feet"),
  55858. name: "Maw",
  55859. image: {
  55860. source: "./media/characters/fryra/maw.svg"
  55861. }
  55862. },
  55863. },
  55864. [
  55865. {
  55866. name: "Micro",
  55867. height: math.unit(5, "cm")
  55868. },
  55869. {
  55870. name: "Normal",
  55871. height: math.unit(2, "meters"),
  55872. default: true
  55873. },
  55874. {
  55875. name: "Small Macro",
  55876. height: math.unit(8, "meters")
  55877. },
  55878. {
  55879. name: "Macro",
  55880. height: math.unit(50, "meters")
  55881. },
  55882. {
  55883. name: "Megamacro",
  55884. height: math.unit(1, "km")
  55885. },
  55886. {
  55887. name: "Planetary",
  55888. height: math.unit(300000, "km")
  55889. },
  55890. {
  55891. name: "Universal",
  55892. height: math.unit(250, "lightyears")
  55893. },
  55894. {
  55895. name: "Fabric of Reality",
  55896. height: math.unit(1000, "multiverses")
  55897. },
  55898. ]
  55899. ))
  55900. characterMakers.push(() => makeCharacter(
  55901. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55902. {
  55903. frontDressed: {
  55904. height: math.unit(6 + 2/12, "feet"),
  55905. name: "Front (Dressed)",
  55906. image: {
  55907. source: "./media/characters/fiera/front-dressed.svg",
  55908. extra: 1883/1793,
  55909. bottom: 70/1953
  55910. }
  55911. },
  55912. backDressed: {
  55913. height: math.unit(6 + 2/12, "feet"),
  55914. name: "Back (Dressed)",
  55915. image: {
  55916. source: "./media/characters/fiera/back-dressed.svg",
  55917. extra: 1847/1780,
  55918. bottom: 70/1917
  55919. }
  55920. },
  55921. frontNude: {
  55922. height: math.unit(6 + 2/12, "feet"),
  55923. name: "Front (Nude)",
  55924. image: {
  55925. source: "./media/characters/fiera/front-nude.svg",
  55926. extra: 1875/1785,
  55927. bottom: 66/1941
  55928. }
  55929. },
  55930. backNude: {
  55931. height: math.unit(6 + 2/12, "feet"),
  55932. name: "Back (Nude)",
  55933. image: {
  55934. source: "./media/characters/fiera/back-nude.svg",
  55935. extra: 1855/1788,
  55936. bottom: 44/1899
  55937. }
  55938. },
  55939. maw: {
  55940. height: math.unit(1.3, "feet"),
  55941. name: "Maw",
  55942. image: {
  55943. source: "./media/characters/fiera/maw.svg"
  55944. }
  55945. },
  55946. paw: {
  55947. height: math.unit(1, "feet"),
  55948. name: "Paw",
  55949. image: {
  55950. source: "./media/characters/fiera/paw.svg"
  55951. }
  55952. },
  55953. shoe: {
  55954. height: math.unit(1.05, "feet"),
  55955. name: "Shoe",
  55956. image: {
  55957. source: "./media/characters/fiera/shoe.svg"
  55958. }
  55959. },
  55960. },
  55961. [
  55962. {
  55963. name: "Normal",
  55964. height: math.unit(6 + 2/12, "feet"),
  55965. default: true
  55966. },
  55967. {
  55968. name: "Size Difference",
  55969. height: math.unit(13, "feet")
  55970. },
  55971. {
  55972. name: "Macro",
  55973. height: math.unit(60, "feet")
  55974. },
  55975. {
  55976. name: "Mega Macro",
  55977. height: math.unit(200, "feet")
  55978. },
  55979. ]
  55980. ))
  55981. characterMakers.push(() => makeCharacter(
  55982. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55983. {
  55984. back: {
  55985. height: math.unit(6, "feet"),
  55986. name: "Back",
  55987. image: {
  55988. source: "./media/characters/flare/back.svg",
  55989. extra: 1883/1765,
  55990. bottom: 32/1915
  55991. }
  55992. },
  55993. },
  55994. [
  55995. {
  55996. name: "Normal",
  55997. height: math.unit(6 + 2/12, "feet"),
  55998. default: true
  55999. },
  56000. {
  56001. name: "Size Difference",
  56002. height: math.unit(13, "feet")
  56003. },
  56004. {
  56005. name: "Macro",
  56006. height: math.unit(60, "feet")
  56007. },
  56008. {
  56009. name: "Macro 2",
  56010. height: math.unit(100, "feet")
  56011. },
  56012. {
  56013. name: "Mega Macro",
  56014. height: math.unit(200, "feet")
  56015. },
  56016. ]
  56017. ))
  56018. characterMakers.push(() => makeCharacter(
  56019. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56020. {
  56021. front: {
  56022. height: math.unit(2.2, "m"),
  56023. weight: math.unit(300, "kg"),
  56024. name: "Front",
  56025. image: {
  56026. source: "./media/characters/hanna/front.svg",
  56027. extra: 1696/1502,
  56028. bottom: 206/1902
  56029. }
  56030. },
  56031. },
  56032. [
  56033. {
  56034. name: "Humanoid",
  56035. height: math.unit(2.2, "meters")
  56036. },
  56037. {
  56038. name: "Normal",
  56039. height: math.unit(4.8, "meters"),
  56040. default: true
  56041. },
  56042. ]
  56043. ))
  56044. characterMakers.push(() => makeCharacter(
  56045. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56046. {
  56047. front: {
  56048. height: math.unit(2.8, "meters"),
  56049. name: "Front",
  56050. image: {
  56051. source: "./media/characters/argo/front.svg",
  56052. extra: 731/518,
  56053. bottom: 84/815
  56054. }
  56055. },
  56056. },
  56057. [
  56058. {
  56059. name: "Normal",
  56060. height: math.unit(3, "meters"),
  56061. default: true
  56062. },
  56063. ]
  56064. ))
  56065. characterMakers.push(() => makeCharacter(
  56066. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56067. {
  56068. side: {
  56069. height: math.unit(3.8, "meters"),
  56070. name: "Side",
  56071. image: {
  56072. source: "./media/characters/sybil/side.svg",
  56073. extra: 382/361,
  56074. bottom: 25/407
  56075. }
  56076. },
  56077. },
  56078. [
  56079. {
  56080. name: "Normal",
  56081. height: math.unit(3.8, "meters"),
  56082. default: true
  56083. },
  56084. ]
  56085. ))
  56086. characterMakers.push(() => makeCharacter(
  56087. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56088. {
  56089. side: {
  56090. height: math.unit(6, "meters"),
  56091. name: "Side",
  56092. image: {
  56093. source: "./media/characters/plum/side.svg",
  56094. extra: 858/755,
  56095. bottom: 45/903
  56096. },
  56097. form: "taur",
  56098. default: true
  56099. },
  56100. back: {
  56101. height: math.unit(6.3, "meters"),
  56102. name: "Back",
  56103. image: {
  56104. source: "./media/characters/plum/back.svg",
  56105. extra: 887/813,
  56106. bottom: 32/919
  56107. },
  56108. form: "taur",
  56109. },
  56110. feral: {
  56111. height: math.unit(5.5, "meter"),
  56112. name: "Front",
  56113. image: {
  56114. source: "./media/characters/plum/feral.svg",
  56115. extra: 568/403,
  56116. bottom: 51/619
  56117. },
  56118. form: "feral",
  56119. default: true
  56120. },
  56121. head: {
  56122. height: math.unit(1.46, "meter"),
  56123. name: "Head",
  56124. image: {
  56125. source: "./media/characters/plum/head.svg"
  56126. },
  56127. form: "taur"
  56128. },
  56129. tailTop: {
  56130. height: math.unit(5.6, "meter"),
  56131. name: "Tail (Top)",
  56132. image: {
  56133. source: "./media/characters/plum/tail-top.svg"
  56134. },
  56135. form: "taur",
  56136. },
  56137. tailBottom: {
  56138. height: math.unit(5.6, "meter"),
  56139. name: "Tail (Bottom)",
  56140. image: {
  56141. source: "./media/characters/plum/tail-bottom.svg"
  56142. },
  56143. form: "taur",
  56144. },
  56145. feralHead: {
  56146. height: math.unit(2.56549521, "meter"),
  56147. name: "Head",
  56148. image: {
  56149. source: "./media/characters/plum/head.svg"
  56150. },
  56151. form: "feral"
  56152. },
  56153. feralTailTop: {
  56154. height: math.unit(5.44728435, "meter"),
  56155. name: "Tail (Top)",
  56156. image: {
  56157. source: "./media/characters/plum/tail-top.svg"
  56158. },
  56159. form: "feral",
  56160. },
  56161. feralTailBottom: {
  56162. height: math.unit(5.44728435, "meter"),
  56163. name: "Tail (Bottom)",
  56164. image: {
  56165. source: "./media/characters/plum/tail-bottom.svg"
  56166. },
  56167. form: "feral",
  56168. },
  56169. },
  56170. [
  56171. {
  56172. name: "Normal",
  56173. height: math.unit(6, "meters"),
  56174. default: true,
  56175. form: "taur"
  56176. },
  56177. {
  56178. name: "Normal",
  56179. height: math.unit(5.5, "meters"),
  56180. default: true,
  56181. form: "feral"
  56182. },
  56183. ],
  56184. {
  56185. "taur": {
  56186. name: "Taur",
  56187. default: true
  56188. },
  56189. "feral": {
  56190. name: "Feral",
  56191. },
  56192. }
  56193. ))
  56194. characterMakers.push(() => makeCharacter(
  56195. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56196. {
  56197. front: {
  56198. height: math.unit(6, "feet"),
  56199. weight: math.unit(115, "lb"),
  56200. name: "Front",
  56201. image: {
  56202. source: "./media/characters/celeste-kitsune/front.svg",
  56203. extra: 393/366,
  56204. bottom: 7/400
  56205. }
  56206. },
  56207. side: {
  56208. height: math.unit(6, "feet"),
  56209. weight: math.unit(115, "lb"),
  56210. name: "Side",
  56211. image: {
  56212. source: "./media/characters/celeste-kitsune/side.svg",
  56213. extra: 818/765,
  56214. bottom: 40/858
  56215. }
  56216. },
  56217. },
  56218. [
  56219. {
  56220. name: "Megamacro",
  56221. height: math.unit(1500, "miles"),
  56222. default: true
  56223. },
  56224. ]
  56225. ))
  56226. characterMakers.push(() => makeCharacter(
  56227. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56228. {
  56229. front: {
  56230. height: math.unit(8, "meters"),
  56231. name: "Front",
  56232. image: {
  56233. source: "./media/characters/io/front.svg",
  56234. extra: 865/722,
  56235. bottom: 58/923
  56236. }
  56237. },
  56238. back: {
  56239. height: math.unit(8, "meters"),
  56240. name: "Back",
  56241. image: {
  56242. source: "./media/characters/io/back.svg",
  56243. extra: 920/776,
  56244. bottom: 42/962
  56245. }
  56246. },
  56247. head: {
  56248. height: math.unit(5.09, "meters"),
  56249. name: "Head",
  56250. image: {
  56251. source: "./media/characters/io/head.svg"
  56252. }
  56253. },
  56254. hand: {
  56255. height: math.unit(1.6, "meters"),
  56256. name: "Hand",
  56257. image: {
  56258. source: "./media/characters/io/hand.svg"
  56259. }
  56260. },
  56261. foot: {
  56262. height: math.unit(2.4, "meters"),
  56263. name: "Foot",
  56264. image: {
  56265. source: "./media/characters/io/foot.svg"
  56266. }
  56267. },
  56268. },
  56269. [
  56270. {
  56271. name: "Normal",
  56272. height: math.unit(8, "meters"),
  56273. default: true
  56274. },
  56275. ]
  56276. ))
  56277. characterMakers.push(() => makeCharacter(
  56278. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56279. {
  56280. side: {
  56281. height: math.unit(6 + 3/12, "feet"),
  56282. weight: math.unit(225, "lb"),
  56283. name: "Side",
  56284. image: {
  56285. source: "./media/characters/silas/side.svg",
  56286. extra: 703/653,
  56287. bottom: 23/726
  56288. },
  56289. extraAttributes: {
  56290. "pawLength": {
  56291. name: "Paw Length",
  56292. power: 1,
  56293. type: "length",
  56294. base: math.unit(12, "inches")
  56295. },
  56296. "pawWidth": {
  56297. name: "Paw Width",
  56298. power: 1,
  56299. type: "length",
  56300. base: math.unit(4.5, "inches")
  56301. },
  56302. "pawArea": {
  56303. name: "Paw Area",
  56304. power: 2,
  56305. type: "area",
  56306. base: math.unit(12 * 4.5, "inches^2")
  56307. },
  56308. }
  56309. },
  56310. },
  56311. [
  56312. {
  56313. name: "Normal",
  56314. height: math.unit(6 + 3/12, "feet"),
  56315. default: true
  56316. },
  56317. ]
  56318. ))
  56319. characterMakers.push(() => makeCharacter(
  56320. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56321. {
  56322. back: {
  56323. height: math.unit(1.6, "meters"),
  56324. weight: math.unit(150, "lb"),
  56325. name: "Back",
  56326. image: {
  56327. source: "./media/characters/zari/back.svg",
  56328. extra: 424/411,
  56329. bottom: 32/456
  56330. },
  56331. extraAttributes: {
  56332. "bladderCapacity": {
  56333. name: "Bladder Size",
  56334. power: 3,
  56335. type: "volume",
  56336. base: math.unit(500, "mL")
  56337. },
  56338. "bladderFlow": {
  56339. name: "Flow Rate",
  56340. power: 3,
  56341. type: "volume",
  56342. base: math.unit(25, "mL")
  56343. },
  56344. }
  56345. },
  56346. },
  56347. [
  56348. {
  56349. name: "Normal",
  56350. height: math.unit(1.6, "meters"),
  56351. default: true
  56352. },
  56353. ]
  56354. ))
  56355. characterMakers.push(() => makeCharacter(
  56356. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56357. {
  56358. front: {
  56359. height: math.unit(25, "feet"),
  56360. weight: math.unit(5, "tons"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/charlie-human/front.svg",
  56364. extra: 1870/1740,
  56365. bottom: 102/1972
  56366. },
  56367. extraAttributes: {
  56368. "dickLength": {
  56369. name: "Dick Length",
  56370. power: 1,
  56371. type: "length",
  56372. base: math.unit(9, "feet")
  56373. },
  56374. }
  56375. },
  56376. back: {
  56377. height: math.unit(25, "feet"),
  56378. weight: math.unit(5, "tons"),
  56379. name: "Back",
  56380. image: {
  56381. source: "./media/characters/charlie-human/back.svg",
  56382. extra: 1858/1733,
  56383. bottom: 105/1963
  56384. },
  56385. extraAttributes: {
  56386. "dickLength": {
  56387. name: "Dick Length",
  56388. power: 1,
  56389. type: "length",
  56390. base: math.unit(9, "feet")
  56391. },
  56392. }
  56393. },
  56394. },
  56395. [
  56396. {
  56397. name: "\"Normal\"",
  56398. height: math.unit(6 + 4/12, "feet")
  56399. },
  56400. {
  56401. name: "Big",
  56402. height: math.unit(25, "feet"),
  56403. default: true
  56404. },
  56405. ]
  56406. ))
  56407. characterMakers.push(() => makeCharacter(
  56408. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56409. {
  56410. front: {
  56411. height: math.unit(6 + 4/12, "feet"),
  56412. weight: math.unit(320, "lb"),
  56413. name: "Front",
  56414. image: {
  56415. source: "./media/characters/ookitsu/front.svg",
  56416. extra: 1160/976,
  56417. bottom: 38/1198
  56418. }
  56419. },
  56420. frontNsfw: {
  56421. height: math.unit(6 + 4/12, "feet"),
  56422. weight: math.unit(320, "lb"),
  56423. name: "Front (NSFW)",
  56424. image: {
  56425. source: "./media/characters/ookitsu/front-nsfw.svg",
  56426. extra: 1160/976,
  56427. bottom: 38/1198
  56428. }
  56429. },
  56430. back: {
  56431. height: math.unit(6 + 4/12, "feet"),
  56432. weight: math.unit(320, "lb"),
  56433. name: "Back",
  56434. image: {
  56435. source: "./media/characters/ookitsu/back.svg",
  56436. extra: 1030/975,
  56437. bottom: 70/1100
  56438. }
  56439. },
  56440. head: {
  56441. height: math.unit(1.79, "feet"),
  56442. name: "Head",
  56443. image: {
  56444. source: "./media/characters/ookitsu/head.svg"
  56445. }
  56446. },
  56447. hand: {
  56448. height: math.unit(0.92, "feet"),
  56449. name: "Hand",
  56450. image: {
  56451. source: "./media/characters/ookitsu/hand.svg"
  56452. }
  56453. },
  56454. tails: {
  56455. height: math.unit(3.3, "feet"),
  56456. name: "Tails",
  56457. image: {
  56458. source: "./media/characters/ookitsu/tails.svg"
  56459. }
  56460. },
  56461. dick: {
  56462. height: math.unit(1.10833, "feet"),
  56463. name: "Dick",
  56464. image: {
  56465. source: "./media/characters/ookitsu/dick.svg"
  56466. }
  56467. },
  56468. },
  56469. [
  56470. {
  56471. name: "Normal",
  56472. height: math.unit(6 + 4/12, "feet"),
  56473. default: true
  56474. },
  56475. {
  56476. name: "Macro",
  56477. height: math.unit(30, "feet")
  56478. },
  56479. ]
  56480. ))
  56481. characterMakers.push(() => makeCharacter(
  56482. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56483. {
  56484. anthroFront: {
  56485. height: math.unit(6, "feet"),
  56486. weight: math.unit(250, "lb"),
  56487. name: "Front",
  56488. image: {
  56489. source: "./media/characters/jhusky/anthro-front.svg",
  56490. extra: 474/439,
  56491. bottom: 7/481
  56492. },
  56493. form: "anthro",
  56494. default: true
  56495. },
  56496. taurSideSfw: {
  56497. height: math.unit(6 + 4/12, "feet"),
  56498. weight: math.unit(500, "lb"),
  56499. name: "Side (SFW)",
  56500. image: {
  56501. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56502. extra: 1741/1629,
  56503. bottom: 196/1937
  56504. },
  56505. form: "taur",
  56506. default: true
  56507. },
  56508. taurSideNsfw: {
  56509. height: math.unit(6 + 4/12, "feet"),
  56510. weight: math.unit(500, "lb"),
  56511. name: "Taur (NSFW)",
  56512. image: {
  56513. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56514. extra: 1741/1629,
  56515. bottom: 196/1937
  56516. },
  56517. form: "taur",
  56518. },
  56519. },
  56520. [
  56521. {
  56522. name: "Huge",
  56523. height: math.unit(500, "feet"),
  56524. form: "anthro"
  56525. },
  56526. {
  56527. name: "Macro",
  56528. height: math.unit(1000, "feet"),
  56529. default: true,
  56530. form: "anthro"
  56531. },
  56532. {
  56533. name: "Megamacro",
  56534. height: math.unit(10000, "feet"),
  56535. form: "anthro"
  56536. },
  56537. {
  56538. name: "Huge",
  56539. height: math.unit(528, "feet"),
  56540. form: "taur"
  56541. },
  56542. {
  56543. name: "Macro",
  56544. height: math.unit(1056, "feet"),
  56545. default: true,
  56546. form: "taur"
  56547. },
  56548. {
  56549. name: "Megamacro",
  56550. height: math.unit(10556, "feet"),
  56551. form: "taur"
  56552. },
  56553. ],
  56554. {
  56555. "anthro": {
  56556. name: "Anthro",
  56557. default: true
  56558. },
  56559. "taur": {
  56560. name: "Taur",
  56561. },
  56562. }
  56563. ))
  56564. characterMakers.push(() => makeCharacter(
  56565. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56566. {
  56567. front: {
  56568. height: math.unit(8, "feet"),
  56569. weight: math.unit(500, "lb"),
  56570. name: "Front",
  56571. image: {
  56572. source: "./media/characters/armail/front.svg",
  56573. extra: 1753/1669,
  56574. bottom: 155/1908
  56575. }
  56576. },
  56577. back: {
  56578. height: math.unit(8, "feet"),
  56579. weight: math.unit(500, "lb"),
  56580. name: "Back",
  56581. image: {
  56582. source: "./media/characters/armail/back.svg",
  56583. extra: 1872/1803,
  56584. bottom: 63/1935
  56585. }
  56586. },
  56587. },
  56588. [
  56589. {
  56590. name: "Micro",
  56591. height: math.unit(0.25, "feet")
  56592. },
  56593. {
  56594. name: "Normal",
  56595. height: math.unit(8, "feet"),
  56596. default: true
  56597. },
  56598. {
  56599. name: "Mini-macro",
  56600. height: math.unit(30, "feet")
  56601. },
  56602. {
  56603. name: "Macro",
  56604. height: math.unit(400, "feet")
  56605. },
  56606. {
  56607. name: "Mega-macro",
  56608. height: math.unit(6000, "feet")
  56609. },
  56610. ]
  56611. ))
  56612. characterMakers.push(() => makeCharacter(
  56613. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56614. {
  56615. front: {
  56616. height: math.unit(6 + 7/12, "feet"),
  56617. weight: math.unit(210, "lb"),
  56618. name: "Front",
  56619. image: {
  56620. source: "./media/characters/wilfred-t-buxton/front.svg",
  56621. extra: 1068/882,
  56622. bottom: 28/1096
  56623. }
  56624. },
  56625. },
  56626. [
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(6 + 7/12, "feet"),
  56630. default: true
  56631. },
  56632. ]
  56633. ))
  56634. characterMakers.push(() => makeCharacter(
  56635. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56636. {
  56637. front: {
  56638. height: math.unit(5 + 2/12, "feet"),
  56639. weight: math.unit(120, "lb"),
  56640. name: "Front",
  56641. image: {
  56642. source: "./media/characters/leighton-marrow/front.svg",
  56643. extra: 441/409,
  56644. bottom: 37/478
  56645. }
  56646. },
  56647. },
  56648. [
  56649. {
  56650. name: "Normal",
  56651. height: math.unit(5 + 2/12, "feet"),
  56652. default: true
  56653. },
  56654. ]
  56655. ))
  56656. characterMakers.push(() => makeCharacter(
  56657. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56658. {
  56659. front: {
  56660. height: math.unit(4, "meters"),
  56661. weight: math.unit(1200, "kg"),
  56662. name: "Front",
  56663. image: {
  56664. source: "./media/characters/licos/front.svg",
  56665. extra: 1727/1604,
  56666. bottom: 101/1828
  56667. },
  56668. form: "anthro",
  56669. default: true
  56670. },
  56671. taur_side: {
  56672. height: math.unit(20, "meters"),
  56673. weight: math.unit(1100000, "kg"),
  56674. name: "Side",
  56675. image: {
  56676. source: "./media/characters/licos/taur.svg",
  56677. extra: 1158/1091,
  56678. bottom: 80/1238
  56679. },
  56680. form: "taur",
  56681. default: true
  56682. },
  56683. },
  56684. [
  56685. {
  56686. name: "Normal",
  56687. height: math.unit(4, "meters"),
  56688. default: true,
  56689. form: "anthro"
  56690. },
  56691. {
  56692. name: "Normal",
  56693. height: math.unit(20, "meters"),
  56694. default: true,
  56695. form: "taur"
  56696. },
  56697. ],
  56698. {
  56699. "anthro": {
  56700. name: "Anthro",
  56701. default: true
  56702. },
  56703. "taur": {
  56704. name: "Taur",
  56705. },
  56706. }
  56707. ))
  56708. characterMakers.push(() => makeCharacter(
  56709. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56710. {
  56711. front: {
  56712. height: math.unit(10 + 3/12, "feet"),
  56713. name: "Front",
  56714. image: {
  56715. source: "./media/characters/theo-monkey/front.svg",
  56716. extra: 1735/1658,
  56717. bottom: 73/1808
  56718. }
  56719. },
  56720. back: {
  56721. height: math.unit(10 + 3/12, "feet"),
  56722. name: "Back",
  56723. image: {
  56724. source: "./media/characters/theo-monkey/back.svg",
  56725. extra: 1742/1664,
  56726. bottom: 33/1775
  56727. }
  56728. },
  56729. head: {
  56730. height: math.unit(2.29, "feet"),
  56731. name: "Head",
  56732. image: {
  56733. source: "./media/characters/theo-monkey/head.svg"
  56734. }
  56735. },
  56736. handPalm: {
  56737. height: math.unit(1.73, "feet"),
  56738. name: "Hand (Palm)",
  56739. image: {
  56740. source: "./media/characters/theo-monkey/hand-palm.svg"
  56741. }
  56742. },
  56743. handBack: {
  56744. height: math.unit(1.63, "feet"),
  56745. name: "Hand (Back)",
  56746. image: {
  56747. source: "./media/characters/theo-monkey/hand-back.svg"
  56748. }
  56749. },
  56750. footSole: {
  56751. height: math.unit(2.15, "feet"),
  56752. name: "Foot (Sole)",
  56753. image: {
  56754. source: "./media/characters/theo-monkey/foot-sole.svg"
  56755. }
  56756. },
  56757. footSide: {
  56758. height: math.unit(1.6, "feet"),
  56759. name: "Foot (Side)",
  56760. image: {
  56761. source: "./media/characters/theo-monkey/foot-side.svg"
  56762. }
  56763. },
  56764. },
  56765. [
  56766. {
  56767. name: "Normal",
  56768. height: math.unit(10 + 3/12, "feet"),
  56769. default: true
  56770. },
  56771. ]
  56772. ))
  56773. characterMakers.push(() => makeCharacter(
  56774. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56775. {
  56776. front: {
  56777. height: math.unit(11, "feet"),
  56778. weight: math.unit(3000, "lb"),
  56779. preyCapacity: math.unit(10, "people"),
  56780. name: "Front",
  56781. image: {
  56782. source: "./media/characters/brook/front.svg",
  56783. extra: 909/835,
  56784. bottom: 108/1017
  56785. }
  56786. },
  56787. back: {
  56788. height: math.unit(11, "feet"),
  56789. weight: math.unit(3000, "lb"),
  56790. preyCapacity: math.unit(10, "people"),
  56791. name: "Back",
  56792. image: {
  56793. source: "./media/characters/brook/back.svg",
  56794. extra: 976/916,
  56795. bottom: 34/1010
  56796. }
  56797. },
  56798. backAlt: {
  56799. height: math.unit(11, "feet"),
  56800. weight: math.unit(3000, "lb"),
  56801. preyCapacity: math.unit(10, "people"),
  56802. name: "Back (Alt)",
  56803. image: {
  56804. source: "./media/characters/brook/back-alt.svg",
  56805. extra: 1283/1213,
  56806. bottom: 35/1318
  56807. }
  56808. },
  56809. bust: {
  56810. height: math.unit(9.0859030837, "feet"),
  56811. weight: math.unit(3000, "lb"),
  56812. preyCapacity: math.unit(10, "people"),
  56813. name: "Bust",
  56814. image: {
  56815. source: "./media/characters/brook/bust.svg",
  56816. extra: 2043/1923,
  56817. bottom: 0/2043
  56818. }
  56819. },
  56820. },
  56821. [
  56822. {
  56823. name: "Small",
  56824. height: math.unit(11, "feet"),
  56825. default: true
  56826. },
  56827. {
  56828. name: "Towering",
  56829. height: math.unit(5, "km")
  56830. },
  56831. {
  56832. name: "Enormous",
  56833. height: math.unit(25, "earths")
  56834. },
  56835. ]
  56836. ))
  56837. characterMakers.push(() => makeCharacter(
  56838. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56839. {
  56840. front: {
  56841. height: math.unit(4, "feet"),
  56842. weight: math.unit(150, "lb"),
  56843. name: "Front",
  56844. image: {
  56845. source: "./media/characters/squishi/front.svg",
  56846. extra: 1428/1271,
  56847. bottom: 30/1458
  56848. },
  56849. extraAttributes: {
  56850. "pawSize": {
  56851. name: "Paw Size",
  56852. power: 1,
  56853. type: "length",
  56854. base: math.unit(14, "ShoeSizeMensUS"),
  56855. defaultUnit: "ShoeSizeMensUS"
  56856. },
  56857. }
  56858. },
  56859. side: {
  56860. height: math.unit(4, "feet"),
  56861. weight: math.unit(150, "lb"),
  56862. name: "Side",
  56863. image: {
  56864. source: "./media/characters/squishi/side.svg",
  56865. extra: 1428/1271,
  56866. bottom: 30/1458
  56867. },
  56868. extraAttributes: {
  56869. "pawSize": {
  56870. name: "Paw Size",
  56871. power: 1,
  56872. type: "length",
  56873. base: math.unit(14, "ShoeSizeMensUS"),
  56874. defaultUnit: "ShoeSizeMensUS"
  56875. },
  56876. }
  56877. },
  56878. back: {
  56879. height: math.unit(4, "feet"),
  56880. weight: math.unit(150, "lb"),
  56881. name: "Back",
  56882. image: {
  56883. source: "./media/characters/squishi/back.svg",
  56884. extra: 1428/1271,
  56885. bottom: 30/1458
  56886. },
  56887. extraAttributes: {
  56888. "pawSize": {
  56889. name: "Paw Size",
  56890. power: 1,
  56891. type: "length",
  56892. base: math.unit(14, "ShoeSizeMensUS"),
  56893. defaultUnit: "ShoeSizeMensUS"
  56894. },
  56895. }
  56896. },
  56897. },
  56898. [
  56899. {
  56900. name: "Normal",
  56901. height: math.unit(4, "feet"),
  56902. default: true
  56903. },
  56904. ]
  56905. ))
  56906. characterMakers.push(() => makeCharacter(
  56907. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56908. {
  56909. front: {
  56910. height: math.unit(7 + 8/12, "feet"),
  56911. weight: math.unit(333, "lb"),
  56912. name: "Front",
  56913. image: {
  56914. source: "./media/characters/vincent-vasroc/front.svg",
  56915. extra: 1962/1860,
  56916. bottom: 41/2003
  56917. }
  56918. },
  56919. back: {
  56920. height: math.unit(7 + 8/12, "feet"),
  56921. weight: math.unit(333, "lb"),
  56922. name: "Back",
  56923. image: {
  56924. source: "./media/characters/vincent-vasroc/back.svg",
  56925. extra: 1952/1815,
  56926. bottom: 33/1985
  56927. }
  56928. },
  56929. paw: {
  56930. height: math.unit(1.24, "feet"),
  56931. name: "Paw",
  56932. image: {
  56933. source: "./media/characters/vincent-vasroc/paw.svg"
  56934. }
  56935. },
  56936. ear: {
  56937. height: math.unit(0.75, "feet"),
  56938. name: "Ear",
  56939. image: {
  56940. source: "./media/characters/vincent-vasroc/ear.svg"
  56941. }
  56942. },
  56943. },
  56944. [
  56945. {
  56946. name: "Nano",
  56947. height: math.unit(92, "micrometers")
  56948. },
  56949. {
  56950. name: "Normal",
  56951. height: math.unit(7 + 8/12, "feet"),
  56952. default: true
  56953. },
  56954. ]
  56955. ))
  56956. characterMakers.push(() => makeCharacter(
  56957. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56958. {
  56959. frontNsfw: {
  56960. height: math.unit(40, "feet"),
  56961. weight: math.unit(58, "tons"),
  56962. name: "Front (NSFW)",
  56963. image: {
  56964. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56965. extra: 1265/965,
  56966. bottom: 155/1420
  56967. }
  56968. },
  56969. frontSfw: {
  56970. height: math.unit(40, "feet"),
  56971. weight: math.unit(58, "tons"),
  56972. name: "Front (SFW)",
  56973. image: {
  56974. source: "./media/characters/ru-kahn/front-sfw.svg",
  56975. extra: 1265/965,
  56976. bottom: 80/1345
  56977. }
  56978. },
  56979. },
  56980. [
  56981. {
  56982. name: "Small",
  56983. height: math.unit(4, "feet")
  56984. },
  56985. {
  56986. name: "Normal",
  56987. height: math.unit(40, "feet"),
  56988. default: true
  56989. },
  56990. {
  56991. name: "Macro",
  56992. height: math.unit(400, "feet")
  56993. },
  56994. ]
  56995. ))
  56996. characterMakers.push(() => makeCharacter(
  56997. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56998. {
  56999. frontNude: {
  57000. height: math.unit(6 + 5/12, "feet"),
  57001. name: "Front (Nude)",
  57002. image: {
  57003. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57004. extra: 1369/1366,
  57005. bottom: 68/1437
  57006. }
  57007. },
  57008. frontDressed: {
  57009. height: math.unit(6 + 5/12, "feet"),
  57010. name: "Front (Dressed)",
  57011. image: {
  57012. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57013. extra: 1369/1366,
  57014. bottom: 68/1437
  57015. }
  57016. },
  57017. },
  57018. [
  57019. {
  57020. name: "Normal",
  57021. height: math.unit(6 + 5/12, "feet"),
  57022. default: true
  57023. },
  57024. {
  57025. name: "Maximum",
  57026. height: math.unit(1930, "feet")
  57027. },
  57028. ]
  57029. ))
  57030. characterMakers.push(() => makeCharacter(
  57031. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57032. {
  57033. front: {
  57034. height: math.unit(5 + 6/12, "feet"),
  57035. name: "Front",
  57036. image: {
  57037. source: "./media/characters/kaja/front.svg",
  57038. extra: 1874/1514,
  57039. bottom: 117/1991
  57040. }
  57041. },
  57042. },
  57043. [
  57044. {
  57045. name: "Normal",
  57046. height: math.unit(5 + 6/12, "feet"),
  57047. default: true
  57048. },
  57049. ]
  57050. ))
  57051. characterMakers.push(() => makeCharacter(
  57052. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57053. {
  57054. front: {
  57055. height: math.unit(5 + 9/12, "feet"),
  57056. weight: math.unit(200, "lb"),
  57057. name: "Front",
  57058. image: {
  57059. source: "./media/characters/mark-smith/front.svg",
  57060. extra: 1004/943,
  57061. bottom: 58/1062
  57062. }
  57063. },
  57064. back: {
  57065. height: math.unit(5 + 9/12, "feet"),
  57066. weight: math.unit(200, "lb"),
  57067. name: "Back",
  57068. image: {
  57069. source: "./media/characters/mark-smith/back.svg",
  57070. extra: 1023/953,
  57071. bottom: 24/1047
  57072. }
  57073. },
  57074. head: {
  57075. height: math.unit(1.82, "feet"),
  57076. name: "Head",
  57077. image: {
  57078. source: "./media/characters/mark-smith/head.svg"
  57079. }
  57080. },
  57081. hand: {
  57082. height: math.unit(1.4, "feet"),
  57083. name: "Hand",
  57084. image: {
  57085. source: "./media/characters/mark-smith/hand.svg"
  57086. }
  57087. },
  57088. paw: {
  57089. height: math.unit(1.69, "feet"),
  57090. name: "Paw",
  57091. image: {
  57092. source: "./media/characters/mark-smith/paw.svg"
  57093. }
  57094. },
  57095. },
  57096. [
  57097. {
  57098. name: "Micro",
  57099. height: math.unit(0.25, "inches")
  57100. },
  57101. {
  57102. name: "Normal",
  57103. height: math.unit(5 + 9/12, "feet"),
  57104. default: true
  57105. },
  57106. {
  57107. name: "Macro",
  57108. height: math.unit(500, "feet")
  57109. },
  57110. ]
  57111. ))
  57112. characterMakers.push(() => makeCharacter(
  57113. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57114. {
  57115. frontNude: {
  57116. height: math.unit(6, "feet"),
  57117. name: "Front (Nude)",
  57118. image: {
  57119. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57120. extra: 1384/1321,
  57121. bottom: 57/1441
  57122. }
  57123. },
  57124. frontDressed: {
  57125. height: math.unit(6, "feet"),
  57126. name: "Front (Dressed)",
  57127. image: {
  57128. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57129. extra: 1384/1321,
  57130. bottom: 57/1441
  57131. }
  57132. },
  57133. },
  57134. [
  57135. {
  57136. name: "Normal",
  57137. height: math.unit(6, "feet"),
  57138. default: true
  57139. },
  57140. {
  57141. name: "Maximum",
  57142. height: math.unit(1776, "feet")
  57143. },
  57144. ]
  57145. ))
  57146. characterMakers.push(() => makeCharacter(
  57147. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57148. {
  57149. front: {
  57150. height: math.unit(2 + 4/12, "feet"),
  57151. weight: math.unit(350, "lb"),
  57152. name: "Front",
  57153. image: {
  57154. source: "./media/characters/devos/front.svg",
  57155. extra: 958/852,
  57156. bottom: 143/1101
  57157. }
  57158. },
  57159. },
  57160. [
  57161. {
  57162. name: "Base",
  57163. height: math.unit(2 + 4/12, "feet"),
  57164. default: true
  57165. },
  57166. ]
  57167. ))
  57168. characterMakers.push(() => makeCharacter(
  57169. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57170. {
  57171. front: {
  57172. height: math.unit(9 + 2/12, "feet"),
  57173. name: "Front",
  57174. image: {
  57175. source: "./media/characters/hiveheart/front.svg",
  57176. extra: 394/364,
  57177. bottom: 65/459
  57178. }
  57179. },
  57180. back: {
  57181. height: math.unit(9 + 2/12, "feet"),
  57182. name: "Back",
  57183. image: {
  57184. source: "./media/characters/hiveheart/back.svg",
  57185. extra: 374/357,
  57186. bottom: 63/437
  57187. }
  57188. },
  57189. },
  57190. [
  57191. {
  57192. name: "Base",
  57193. height: math.unit(9 + 2/12, "feet"),
  57194. default: true
  57195. },
  57196. ]
  57197. ))
  57198. characterMakers.push(() => makeCharacter(
  57199. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57200. {
  57201. front: {
  57202. height: math.unit(2.5, "inches"),
  57203. weight: math.unit(0.6, "oz"),
  57204. name: "Front",
  57205. image: {
  57206. source: "./media/characters/bryn/front.svg",
  57207. extra: 1484/1119,
  57208. bottom: 66/1550
  57209. }
  57210. },
  57211. back: {
  57212. height: math.unit(2.5, "inches"),
  57213. weight: math.unit(0.6, "oz"),
  57214. name: "Back",
  57215. image: {
  57216. source: "./media/characters/bryn/back.svg",
  57217. extra: 1472/1170,
  57218. bottom: 32/1504
  57219. }
  57220. },
  57221. wings: {
  57222. height: math.unit(2.5, "inches"),
  57223. weight: math.unit(0.6, "oz"),
  57224. name: "Wings",
  57225. image: {
  57226. source: "./media/characters/bryn/wings.svg",
  57227. extra: 567/448,
  57228. bottom: 10/577
  57229. }
  57230. },
  57231. dressed: {
  57232. height: math.unit(2.5, "inches"),
  57233. weight: math.unit(0.6, "oz"),
  57234. name: "Dressed",
  57235. image: {
  57236. source: "./media/characters/bryn/dressed.svg",
  57237. extra: 719/589,
  57238. bottom: 54/773
  57239. }
  57240. },
  57241. head: {
  57242. height: math.unit(1.75, "inches"),
  57243. name: "Head",
  57244. image: {
  57245. source: "./media/characters/bryn/head.svg"
  57246. }
  57247. },
  57248. foot: {
  57249. height: math.unit(0.4, "inches"),
  57250. name: "Foot",
  57251. image: {
  57252. source: "./media/characters/bryn/foot.svg"
  57253. }
  57254. },
  57255. },
  57256. [
  57257. {
  57258. name: "Normal",
  57259. height: math.unit(2.5, "inches"),
  57260. default: true
  57261. },
  57262. ]
  57263. ))
  57264. characterMakers.push(() => makeCharacter(
  57265. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57266. {
  57267. side: {
  57268. height: math.unit(7, "feet"),
  57269. weight: math.unit(657, "kg"),
  57270. name: "Side",
  57271. image: {
  57272. source: "./media/characters/delta/side.svg",
  57273. extra: 781/212,
  57274. bottom: 7/788
  57275. },
  57276. extraAttributes: {
  57277. "wingspan": {
  57278. name: "Wingspan",
  57279. power: 1,
  57280. type: "length",
  57281. base: math.unit(48, "feet")
  57282. },
  57283. "length": {
  57284. name: "Length",
  57285. power: 1,
  57286. type: "length",
  57287. base: math.unit(21, "feet")
  57288. },
  57289. "pawSize": {
  57290. name: "Paw Size",
  57291. power: 2,
  57292. type: "area",
  57293. base: math.unit(1.5*1.4, "feet^2")
  57294. },
  57295. }
  57296. },
  57297. },
  57298. [
  57299. {
  57300. name: "Normal",
  57301. height: math.unit(6, "feet"),
  57302. default: true
  57303. },
  57304. ]
  57305. ))
  57306. characterMakers.push(() => makeCharacter(
  57307. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57308. {
  57309. front: {
  57310. height: math.unit(6, "feet"),
  57311. name: "Front",
  57312. image: {
  57313. source: "./media/characters/pyrow/front.svg",
  57314. extra: 513/486,
  57315. bottom: 14/527
  57316. }
  57317. },
  57318. frontWing: {
  57319. height: math.unit(6, "feet"),
  57320. name: "Front (Wing)",
  57321. image: {
  57322. source: "./media/characters/pyrow/front-wing.svg",
  57323. extra: 539/383,
  57324. bottom: 20/559
  57325. }
  57326. },
  57327. back: {
  57328. height: math.unit(6, "feet"),
  57329. name: "Back",
  57330. image: {
  57331. source: "./media/characters/pyrow/back.svg",
  57332. extra: 500/473,
  57333. bottom: 9/509
  57334. }
  57335. },
  57336. },
  57337. [
  57338. {
  57339. name: "Normal",
  57340. height: math.unit(6, "feet"),
  57341. default: true
  57342. },
  57343. ]
  57344. ))
  57345. characterMakers.push(() => makeCharacter(
  57346. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57347. {
  57348. front: {
  57349. height: math.unit(5, "meters"),
  57350. weight: math.unit(3, "tonnes"),
  57351. name: "Front",
  57352. image: {
  57353. source: "./media/characters/velikan/front.svg",
  57354. extra: 867/744,
  57355. bottom: 71/938
  57356. },
  57357. extraAttributes: {
  57358. "shoeSize": {
  57359. name: "Shoe Size",
  57360. power: 1,
  57361. type: "length",
  57362. base: math.unit(135, "ShoeSizeUK"),
  57363. defaultUnit: "ShoeSizeUK"
  57364. },
  57365. }
  57366. },
  57367. },
  57368. [
  57369. {
  57370. name: "Normal",
  57371. height: math.unit(5, "meters"),
  57372. default: true
  57373. },
  57374. {
  57375. name: "Macro",
  57376. height: math.unit(1, "km")
  57377. },
  57378. {
  57379. name: "Mega Macro",
  57380. height: math.unit(100, "km")
  57381. },
  57382. {
  57383. name: "Giga Macro",
  57384. height: math.unit(2, "megameters")
  57385. },
  57386. {
  57387. name: "Planetary",
  57388. height: math.unit(22, "megameters")
  57389. },
  57390. {
  57391. name: "Solar",
  57392. height: math.unit(8, "gigameters")
  57393. },
  57394. {
  57395. name: "Cosmic",
  57396. height: math.unit(10, "zettameters")
  57397. },
  57398. {
  57399. name: "Omni",
  57400. height: math.unit(9e260, "multiverses")
  57401. },
  57402. ]
  57403. ))
  57404. characterMakers.push(() => makeCharacter(
  57405. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57406. {
  57407. front: {
  57408. height: math.unit(4 + 3/12, "feet"),
  57409. weight: math.unit(90, "lb"),
  57410. name: "Front",
  57411. image: {
  57412. source: "./media/characters/sabiki/front.svg",
  57413. extra: 1662/1423,
  57414. bottom: 65/1727
  57415. }
  57416. },
  57417. },
  57418. [
  57419. {
  57420. name: "Normal",
  57421. height: math.unit(4 + 3/12, "feet"),
  57422. default: true
  57423. },
  57424. ]
  57425. ))
  57426. characterMakers.push(() => makeCharacter(
  57427. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57428. {
  57429. frontSfw: {
  57430. height: math.unit(2, "mm"),
  57431. name: "Front (SFW)",
  57432. image: {
  57433. source: "./media/characters/carmel/front-sfw.svg",
  57434. extra: 1131/1006,
  57435. bottom: 66/1197
  57436. }
  57437. },
  57438. frontNsfw: {
  57439. height: math.unit(2, "mm"),
  57440. name: "Front (NSFW)",
  57441. image: {
  57442. source: "./media/characters/carmel/front-nsfw.svg",
  57443. extra: 1131/1006,
  57444. bottom: 66/1197
  57445. }
  57446. },
  57447. foot: {
  57448. height: math.unit(0.3, "mm"),
  57449. name: "Foot",
  57450. image: {
  57451. source: "./media/characters/carmel/foot.svg"
  57452. }
  57453. },
  57454. tongue: {
  57455. height: math.unit(0.71, "mm"),
  57456. name: "Tongue",
  57457. image: {
  57458. source: "./media/characters/carmel/tongue.svg"
  57459. }
  57460. },
  57461. dick: {
  57462. height: math.unit(0.085, "mm"),
  57463. name: "Dick",
  57464. image: {
  57465. source: "./media/characters/carmel/dick.svg"
  57466. }
  57467. },
  57468. },
  57469. [
  57470. {
  57471. name: "Micro",
  57472. height: math.unit(2, "mm"),
  57473. default: true
  57474. },
  57475. {
  57476. name: "Normal",
  57477. height: math.unit(4 + 8/12, "feet")
  57478. },
  57479. {
  57480. name: "Mega Macro",
  57481. height: math.unit(250, "feet")
  57482. },
  57483. {
  57484. name: "BIGGER",
  57485. height: math.unit(1000, "feet")
  57486. },
  57487. {
  57488. name: "BIGGEST",
  57489. height: math.unit(2, "miles")
  57490. },
  57491. ]
  57492. ))
  57493. characterMakers.push(() => makeCharacter(
  57494. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57495. {
  57496. front: {
  57497. height: math.unit(6.5, "feet"),
  57498. weight: math.unit(198, "lb"),
  57499. name: "Front",
  57500. image: {
  57501. source: "./media/characters/tamani/anthro.svg",
  57502. extra: 930/890,
  57503. bottom: 34/964
  57504. },
  57505. form: "anthro",
  57506. default: true
  57507. },
  57508. side: {
  57509. height: math.unit(6, "feet"),
  57510. weight: math.unit(198*2, "lb"),
  57511. name: "Side",
  57512. image: {
  57513. source: "./media/characters/tamani/feral.svg",
  57514. extra: 559/519,
  57515. bottom: 43/602
  57516. },
  57517. form: "feral"
  57518. },
  57519. },
  57520. [
  57521. {
  57522. name: "Normal",
  57523. height: math.unit(6.5, "feet"),
  57524. default: true,
  57525. form: "anthro"
  57526. },
  57527. {
  57528. name: "Normal",
  57529. height: math.unit(6, "feet"),
  57530. default: true,
  57531. form: "feral"
  57532. },
  57533. ],
  57534. {
  57535. "anthro": {
  57536. name: "Anthro",
  57537. default: true
  57538. },
  57539. "feral": {
  57540. name: "Feral",
  57541. },
  57542. }
  57543. ))
  57544. characterMakers.push(() => makeCharacter(
  57545. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57546. {
  57547. front: {
  57548. height: math.unit(4 + 1/12, "feet"),
  57549. weight: math.unit(114, "lb"),
  57550. name: "Front",
  57551. image: {
  57552. source: "./media/characters/dex/front.svg",
  57553. extra: 787/680,
  57554. bottom: 18/805
  57555. }
  57556. },
  57557. side: {
  57558. height: math.unit(4 + 1/12, "feet"),
  57559. weight: math.unit(114, "lb"),
  57560. name: "Side",
  57561. image: {
  57562. source: "./media/characters/dex/side.svg",
  57563. extra: 785/680,
  57564. bottom: 12/797
  57565. }
  57566. },
  57567. back: {
  57568. height: math.unit(4 + 1/12, "feet"),
  57569. weight: math.unit(114, "lb"),
  57570. name: "Back",
  57571. image: {
  57572. source: "./media/characters/dex/back.svg",
  57573. extra: 785/681,
  57574. bottom: 17/802
  57575. }
  57576. },
  57577. loungewear: {
  57578. height: math.unit(4 + 1/12, "feet"),
  57579. weight: math.unit(114, "lb"),
  57580. name: "Loungewear",
  57581. image: {
  57582. source: "./media/characters/dex/loungewear.svg",
  57583. extra: 787/680,
  57584. bottom: 18/805
  57585. }
  57586. },
  57587. workout: {
  57588. height: math.unit(4 + 1/12, "feet"),
  57589. weight: math.unit(114, "lb"),
  57590. name: "Workout",
  57591. image: {
  57592. source: "./media/characters/dex/workout.svg",
  57593. extra: 787/680,
  57594. bottom: 18/805
  57595. }
  57596. },
  57597. schoolUniform: {
  57598. height: math.unit(4 + 1/12, "feet"),
  57599. weight: math.unit(114, "lb"),
  57600. name: "School-uniform",
  57601. image: {
  57602. source: "./media/characters/dex/school-uniform.svg",
  57603. extra: 787/680,
  57604. bottom: 18/805
  57605. }
  57606. },
  57607. maw: {
  57608. height: math.unit(0.55, "feet"),
  57609. name: "Maw",
  57610. image: {
  57611. source: "./media/characters/dex/maw.svg"
  57612. }
  57613. },
  57614. paw: {
  57615. height: math.unit(0.87, "feet"),
  57616. name: "Paw",
  57617. image: {
  57618. source: "./media/characters/dex/paw.svg"
  57619. }
  57620. },
  57621. bust: {
  57622. height: math.unit(1.67, "feet"),
  57623. name: "Bust",
  57624. image: {
  57625. source: "./media/characters/dex/bust.svg"
  57626. }
  57627. },
  57628. },
  57629. [
  57630. {
  57631. name: "Normal",
  57632. height: math.unit(4 + 1/12, "feet"),
  57633. default: true
  57634. },
  57635. ]
  57636. ))
  57637. characterMakers.push(() => makeCharacter(
  57638. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57639. {
  57640. front: {
  57641. height: math.unit(4 + 3/12, "feet"),
  57642. weight: math.unit(60, "lb"),
  57643. name: "Front",
  57644. image: {
  57645. source: "./media/characters/silke/front.svg",
  57646. extra: 1334/1122,
  57647. bottom: 21/1355
  57648. }
  57649. },
  57650. back: {
  57651. height: math.unit(4 + 3/12, "feet"),
  57652. weight: math.unit(60, "lb"),
  57653. name: "Back",
  57654. image: {
  57655. source: "./media/characters/silke/back.svg",
  57656. extra: 1328/1092,
  57657. bottom: 16/1344
  57658. }
  57659. },
  57660. dressed: {
  57661. height: math.unit(4 + 3/12, "feet"),
  57662. weight: math.unit(60, "lb"),
  57663. name: "Dressed",
  57664. image: {
  57665. source: "./media/characters/silke/dressed.svg",
  57666. extra: 1334/1122,
  57667. bottom: 43/1377
  57668. }
  57669. },
  57670. },
  57671. [
  57672. {
  57673. name: "Normal",
  57674. height: math.unit(4 + 3/12, "feet"),
  57675. default: true
  57676. },
  57677. ]
  57678. ))
  57679. characterMakers.push(() => makeCharacter(
  57680. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57681. {
  57682. front: {
  57683. height: math.unit(1.58, "meters"),
  57684. weight: math.unit(47, "kg"),
  57685. name: "Front",
  57686. image: {
  57687. source: "./media/characters/wireshark/front.svg",
  57688. extra: 883/838,
  57689. bottom: 66/949
  57690. }
  57691. },
  57692. },
  57693. [
  57694. {
  57695. name: "Normal",
  57696. height: math.unit(1.58, "meters"),
  57697. default: true
  57698. },
  57699. ]
  57700. ))
  57701. characterMakers.push(() => makeCharacter(
  57702. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57703. {
  57704. front: {
  57705. height: math.unit(6, "meters"),
  57706. weight: math.unit(15000, "kg"),
  57707. name: "Front",
  57708. image: {
  57709. source: "./media/characters/gallagher/front.svg",
  57710. extra: 532/493,
  57711. bottom: 0/532
  57712. }
  57713. },
  57714. },
  57715. [
  57716. {
  57717. name: "Normal",
  57718. height: math.unit(6, "meters"),
  57719. default: true
  57720. },
  57721. ]
  57722. ))
  57723. characterMakers.push(() => makeCharacter(
  57724. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57725. {
  57726. front: {
  57727. height: math.unit(2.4, "meters"),
  57728. weight: math.unit(270, "kg"),
  57729. name: "Front",
  57730. image: {
  57731. source: "./media/characters/alice/front.svg",
  57732. extra: 950/900,
  57733. bottom: 36/986
  57734. }
  57735. },
  57736. side: {
  57737. height: math.unit(2.4, "meters"),
  57738. weight: math.unit(270, "kg"),
  57739. name: "Side",
  57740. image: {
  57741. source: "./media/characters/alice/side.svg",
  57742. extra: 921/876,
  57743. bottom: 19/940
  57744. }
  57745. },
  57746. dressed: {
  57747. height: math.unit(2.4, "meters"),
  57748. weight: math.unit(270, "kg"),
  57749. name: "Dressed",
  57750. image: {
  57751. source: "./media/characters/alice/dressed.svg",
  57752. extra: 905/850,
  57753. bottom: 81/986
  57754. }
  57755. },
  57756. fishnet: {
  57757. height: math.unit(2.4, "meters"),
  57758. weight: math.unit(270, "kg"),
  57759. name: "Fishnet",
  57760. image: {
  57761. source: "./media/characters/alice/fishnet.svg",
  57762. extra: 905/850,
  57763. bottom: 81/986
  57764. }
  57765. },
  57766. },
  57767. [
  57768. {
  57769. name: "Normal",
  57770. height: math.unit(2.4, "meters"),
  57771. default: true
  57772. },
  57773. ]
  57774. ))
  57775. characterMakers.push(() => makeCharacter(
  57776. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57777. {
  57778. front: {
  57779. height: math.unit(175.25, "feet"),
  57780. name: "Front",
  57781. image: {
  57782. source: "./media/characters/fio/front.svg",
  57783. extra: 1883/1591,
  57784. bottom: 34/1917
  57785. }
  57786. },
  57787. },
  57788. [
  57789. {
  57790. name: "Normal",
  57791. height: math.unit(175.25, "cm"),
  57792. default: true
  57793. },
  57794. ]
  57795. ))
  57796. characterMakers.push(() => makeCharacter(
  57797. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57798. {
  57799. side: {
  57800. height: math.unit(6, "meters"),
  57801. weight: math.unit(3400, "kg"),
  57802. preyCapacity: math.unit(1700, "liters"),
  57803. name: "Side",
  57804. image: {
  57805. source: "./media/characters/hass/side.svg",
  57806. extra: 1058/997,
  57807. bottom: 177/1235
  57808. }
  57809. },
  57810. feeding: {
  57811. height: math.unit(6*0.63, "meters"),
  57812. weight: math.unit(3400, "kg"),
  57813. preyCapacity: math.unit(1700, "liters"),
  57814. name: "Feeding",
  57815. image: {
  57816. source: "./media/characters/hass/feeding.svg",
  57817. extra: 689/579,
  57818. bottom: 146/835
  57819. }
  57820. },
  57821. guts: {
  57822. height: math.unit(6, "meters"),
  57823. weight: math.unit(3400, "kg"),
  57824. name: "Guts",
  57825. image: {
  57826. source: "./media/characters/hass/guts.svg",
  57827. extra: 1223/1198,
  57828. bottom: 182/1405
  57829. }
  57830. },
  57831. dickFront: {
  57832. height: math.unit(1.4, "meters"),
  57833. name: "Dick (Front)",
  57834. image: {
  57835. source: "./media/characters/hass/dick-front.svg"
  57836. }
  57837. },
  57838. dickSide: {
  57839. height: math.unit(1.3, "meters"),
  57840. name: "Dick (Side)",
  57841. image: {
  57842. source: "./media/characters/hass/dick-side.svg"
  57843. }
  57844. },
  57845. dickBack: {
  57846. height: math.unit(1.4, "meters"),
  57847. name: "Dick (Back)",
  57848. image: {
  57849. source: "./media/characters/hass/dick-back.svg"
  57850. }
  57851. },
  57852. },
  57853. [
  57854. {
  57855. name: "Normal",
  57856. height: math.unit(6, "meters"),
  57857. default: true
  57858. },
  57859. ]
  57860. ))
  57861. characterMakers.push(() => makeCharacter(
  57862. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57863. {
  57864. front: {
  57865. height: math.unit(4, "feet"),
  57866. weight: math.unit(60, "lb"),
  57867. name: "Front",
  57868. image: {
  57869. source: "./media/characters/hickory-finnegan/front.svg",
  57870. extra: 444/411,
  57871. bottom: 10/454
  57872. }
  57873. },
  57874. side: {
  57875. height: math.unit(4, "feet"),
  57876. weight: math.unit(60, "lb"),
  57877. name: "Side",
  57878. image: {
  57879. source: "./media/characters/hickory-finnegan/side.svg",
  57880. extra: 444/411,
  57881. bottom: 10/454
  57882. }
  57883. },
  57884. back: {
  57885. height: math.unit(4, "feet"),
  57886. weight: math.unit(60, "lb"),
  57887. name: "Back",
  57888. image: {
  57889. source: "./media/characters/hickory-finnegan/back.svg",
  57890. extra: 444/411,
  57891. bottom: 10/454
  57892. }
  57893. },
  57894. },
  57895. [
  57896. {
  57897. name: "Normal",
  57898. height: math.unit(4, "feet"),
  57899. default: true
  57900. },
  57901. ]
  57902. ))
  57903. characterMakers.push(() => makeCharacter(
  57904. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57905. {
  57906. snivy_front: {
  57907. height: math.unit(2, "feet"),
  57908. weight: math.unit(17.9, "lb"),
  57909. name: "Front",
  57910. image: {
  57911. source: "./media/characters/robin-phox/snivy-front.svg",
  57912. extra: 569/504,
  57913. bottom: 33/602
  57914. },
  57915. form: "snivy",
  57916. default: true
  57917. },
  57918. snivy_frontNsfw: {
  57919. height: math.unit(2, "feet"),
  57920. weight: math.unit(17.9, "lb"),
  57921. name: "Front (NSFW)",
  57922. image: {
  57923. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57924. extra: 569/504,
  57925. bottom: 33/602
  57926. },
  57927. form: "snivy",
  57928. },
  57929. snivy_back: {
  57930. height: math.unit(2, "feet"),
  57931. weight: math.unit(17.9, "lb"),
  57932. name: "Back",
  57933. image: {
  57934. source: "./media/characters/robin-phox/snivy-back.svg",
  57935. extra: 577/508,
  57936. bottom: 21/598
  57937. },
  57938. form: "snivy",
  57939. },
  57940. snivy_foot: {
  57941. height: math.unit(0.68, "feet"),
  57942. name: "Foot",
  57943. image: {
  57944. source: "./media/characters/robin-phox/snivy-foot.svg"
  57945. },
  57946. form: "snivy",
  57947. },
  57948. snivy_sole: {
  57949. height: math.unit(0.68, "feet"),
  57950. name: "Sole",
  57951. image: {
  57952. source: "./media/characters/robin-phox/snivy-sole.svg"
  57953. },
  57954. form: "snivy",
  57955. },
  57956. yoshi_front: {
  57957. height: math.unit(6, "feet"),
  57958. weight: math.unit(150, "lb"),
  57959. name: "Front",
  57960. image: {
  57961. source: "./media/characters/robin-phox/yoshi-front.svg",
  57962. extra: 890/792,
  57963. bottom: 29/919
  57964. },
  57965. form: "yoshi",
  57966. default: true
  57967. },
  57968. yoshi_frontNsfw: {
  57969. height: math.unit(6, "feet"),
  57970. weight: math.unit(150, "lb"),
  57971. name: "Front (NSFW)",
  57972. image: {
  57973. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57974. extra: 890/792,
  57975. bottom: 29/919
  57976. },
  57977. form: "yoshi",
  57978. },
  57979. yoshi_back: {
  57980. height: math.unit(6, "feet"),
  57981. weight: math.unit(150, "lb"),
  57982. name: "Back",
  57983. image: {
  57984. source: "./media/characters/robin-phox/yoshi-back.svg",
  57985. extra: 890/792,
  57986. bottom: 29/919
  57987. },
  57988. form: "yoshi",
  57989. },
  57990. yoshi_foot: {
  57991. height: math.unit(1.5, "feet"),
  57992. name: "Foot",
  57993. image: {
  57994. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57995. },
  57996. form: "yoshi",
  57997. },
  57998. delphox_front: {
  57999. height: math.unit(4 + 11/12, "feet"),
  58000. weight: math.unit(86, "lb"),
  58001. name: "Front",
  58002. image: {
  58003. source: "./media/characters/robin-phox/delphox-front.svg",
  58004. extra: 1266/1069,
  58005. bottom: 32/1298
  58006. },
  58007. form: "delphox",
  58008. default: true
  58009. },
  58010. delphox_frontNsfw: {
  58011. height: math.unit(4 + 11/12, "feet"),
  58012. weight: math.unit(86, "lb"),
  58013. name: "Front (NSFW)",
  58014. image: {
  58015. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58016. extra: 1266/1069,
  58017. bottom: 32/1298
  58018. },
  58019. form: "delphox",
  58020. },
  58021. delphox_back: {
  58022. height: math.unit(4 + 11/12, "feet"),
  58023. weight: math.unit(86, "lb"),
  58024. name: "Back",
  58025. image: {
  58026. source: "./media/characters/robin-phox/delphox-back.svg",
  58027. extra: 1269/1083,
  58028. bottom: 15/1284
  58029. },
  58030. form: "delphox",
  58031. },
  58032. mienshao_front: {
  58033. height: math.unit(4 + 7/12, "feet"),
  58034. weight: math.unit(78.3, "lb"),
  58035. name: "Front",
  58036. image: {
  58037. source: "./media/characters/robin-phox/mienshao-front.svg",
  58038. extra: 1052/970,
  58039. bottom: 108/1160
  58040. },
  58041. form: "mienshao",
  58042. default: true
  58043. },
  58044. mienshao_frontNsfw: {
  58045. height: math.unit(4 + 7/12, "feet"),
  58046. weight: math.unit(78.3, "lb"),
  58047. name: "Front (NSFW)",
  58048. image: {
  58049. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58050. extra: 1052/970,
  58051. bottom: 108/1160
  58052. },
  58053. form: "mienshao",
  58054. },
  58055. mienshao_back: {
  58056. height: math.unit(4 + 7/12, "feet"),
  58057. weight: math.unit(78.3, "lb"),
  58058. name: "Back",
  58059. image: {
  58060. source: "./media/characters/robin-phox/mienshao-back.svg",
  58061. extra: 1102/982,
  58062. bottom: 32/1134
  58063. },
  58064. form: "mienshao",
  58065. },
  58066. inteleon_front: {
  58067. height: math.unit(6 + 3/12, "feet"),
  58068. weight: math.unit(99.6, "lb"),
  58069. name: "Front",
  58070. image: {
  58071. source: "./media/characters/robin-phox/inteleon-front.svg",
  58072. extra: 910/799,
  58073. bottom: 76/986
  58074. },
  58075. form: "inteleon",
  58076. default: true
  58077. },
  58078. inteleon_frontNsfw: {
  58079. height: math.unit(6 + 3/12, "feet"),
  58080. weight: math.unit(99.6, "lb"),
  58081. name: "Front (NSFW)",
  58082. image: {
  58083. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58084. extra: 910/799,
  58085. bottom: 76/986
  58086. },
  58087. form: "inteleon",
  58088. },
  58089. inteleon_back: {
  58090. height: math.unit(6 + 3/12, "feet"),
  58091. weight: math.unit(99.6, "lb"),
  58092. name: "Back",
  58093. image: {
  58094. source: "./media/characters/robin-phox/inteleon-back.svg",
  58095. extra: 907/796,
  58096. bottom: 25/932
  58097. },
  58098. form: "inteleon",
  58099. },
  58100. reshiram_front: {
  58101. height: math.unit(10 + 6/12, "feet"),
  58102. weight: math.unit(727.5, "lb"),
  58103. name: "Front",
  58104. image: {
  58105. source: "./media/characters/robin-phox/reshiram-front.svg",
  58106. extra: 1198/940,
  58107. bottom: 123/1321
  58108. },
  58109. form: "reshiram",
  58110. },
  58111. reshiram_frontNsfw: {
  58112. height: math.unit(10 + 6/12, "feet"),
  58113. weight: math.unit(727.5, "lb"),
  58114. name: "Front-nsfw",
  58115. image: {
  58116. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58117. extra: 1198/940,
  58118. bottom: 123/1321
  58119. },
  58120. form: "reshiram",
  58121. },
  58122. reshiram_back: {
  58123. height: math.unit(10 + 6/12, "feet"),
  58124. weight: math.unit(727.5, "lb"),
  58125. name: "Back",
  58126. image: {
  58127. source: "./media/characters/robin-phox/reshiram-back.svg",
  58128. extra: 1024/904,
  58129. bottom: 85/1109
  58130. },
  58131. form: "reshiram",
  58132. },
  58133. samurott_front: {
  58134. height: math.unit(8, "feet"),
  58135. weight: math.unit(208.6, "lb"),
  58136. name: "Front",
  58137. image: {
  58138. source: "./media/characters/robin-phox/samurott-front.svg",
  58139. extra: 1048/984,
  58140. bottom: 100/1148
  58141. },
  58142. form: "samurott",
  58143. },
  58144. samurott_frontNsfw: {
  58145. height: math.unit(8, "feet"),
  58146. weight: math.unit(208.6, "lb"),
  58147. name: "Front-nsfw",
  58148. image: {
  58149. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58150. extra: 1048/984,
  58151. bottom: 100/1148
  58152. },
  58153. form: "samurott",
  58154. },
  58155. samurott_back: {
  58156. height: math.unit(8, "feet"),
  58157. weight: math.unit(208.6, "lb"),
  58158. name: "Back",
  58159. image: {
  58160. source: "./media/characters/robin-phox/samurott-back.svg",
  58161. extra: 1110/1042,
  58162. bottom: 12/1122
  58163. },
  58164. form: "samurott",
  58165. },
  58166. samurott_feral: {
  58167. height: math.unit(4 + 11/12, "feet"),
  58168. weight: math.unit(208.6, "lb"),
  58169. name: "Feral",
  58170. image: {
  58171. source: "./media/characters/robin-phox/samurott-feral.svg",
  58172. extra: 766/681,
  58173. bottom: 108/874
  58174. },
  58175. form: "samurott",
  58176. },
  58177. },
  58178. [
  58179. {
  58180. name: "Normal",
  58181. height: math.unit(2, "feet"),
  58182. default: true,
  58183. form: "snivy"
  58184. },
  58185. {
  58186. name: "Normal",
  58187. height: math.unit(6, "feet"),
  58188. default: true,
  58189. form: "yoshi"
  58190. },
  58191. {
  58192. name: "Normal",
  58193. height: math.unit(4 + 11/12, "feet"),
  58194. default: true,
  58195. form: "delphox"
  58196. },
  58197. {
  58198. name: "Normal",
  58199. height: math.unit(4 + 7/12, "feet"),
  58200. default: true,
  58201. form: "mienshao"
  58202. },
  58203. {
  58204. name: "Normal",
  58205. height: math.unit(6 + 3/12, "feet"),
  58206. default: true,
  58207. form: "inteleon"
  58208. },
  58209. {
  58210. name: "Normal",
  58211. height: math.unit(10 + 6/12, "feet"),
  58212. default: true,
  58213. form: "reshiram"
  58214. },
  58215. {
  58216. name: "Normal",
  58217. height: math.unit(8, "feet"),
  58218. default: true,
  58219. form: "samurott"
  58220. },
  58221. {
  58222. name: "Macro",
  58223. height: math.unit(500, "feet"),
  58224. allForms: true
  58225. },
  58226. {
  58227. name: "Mega Macro",
  58228. height: math.unit(10, "earths"),
  58229. allForms: true
  58230. },
  58231. {
  58232. name: "Giga Macro",
  58233. height: math.unit(1, "galaxy"),
  58234. allForms: true
  58235. },
  58236. {
  58237. name: "Godly Macro",
  58238. height: math.unit(1e10, "multiverses"),
  58239. allForms: true
  58240. },
  58241. ],
  58242. {
  58243. "snivy": {
  58244. name: "Snivy",
  58245. default: true
  58246. },
  58247. "yoshi": {
  58248. name: "Yoshi",
  58249. },
  58250. "delphox": {
  58251. name: "Delphox",
  58252. },
  58253. "mienshao": {
  58254. name: "Mienshao",
  58255. },
  58256. "inteleon": {
  58257. name: "Inteleon",
  58258. },
  58259. "reshiram": {
  58260. name: "Reshiram",
  58261. },
  58262. "samurott": {
  58263. name: "Samurott",
  58264. },
  58265. }
  58266. ))
  58267. characterMakers.push(() => makeCharacter(
  58268. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58269. {
  58270. front: {
  58271. height: math.unit(4, "feet"),
  58272. name: "Front",
  58273. image: {
  58274. source: "./media/characters/ash-leung/front.svg",
  58275. extra: 1916/1792,
  58276. bottom: 50/1966
  58277. }
  58278. },
  58279. },
  58280. [
  58281. {
  58282. name: "Atomic",
  58283. height: math.unit(1, "angstrom")
  58284. },
  58285. {
  58286. name: "Microscopic",
  58287. height: math.unit(4000, "angstroms")
  58288. },
  58289. {
  58290. name: "Speck",
  58291. height: math.unit(1, "mm")
  58292. },
  58293. {
  58294. name: "Small",
  58295. height: math.unit(1, "inch")
  58296. },
  58297. {
  58298. name: "Normal",
  58299. height: math.unit(4, "feet"),
  58300. default: true
  58301. },
  58302. ]
  58303. ))
  58304. characterMakers.push(() => makeCharacter(
  58305. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58306. {
  58307. frontDressed: {
  58308. height: math.unit(2.08, "meters"),
  58309. weight: math.unit(175, "lb"),
  58310. name: "Front (Dressed)",
  58311. image: {
  58312. source: "./media/characters/carie/front-dressed.svg",
  58313. extra: 456/417,
  58314. bottom: 7/463
  58315. }
  58316. },
  58317. backDressed: {
  58318. height: math.unit(2.08, "meters"),
  58319. weight: math.unit(175, "lb"),
  58320. name: "Back (Dressed)",
  58321. image: {
  58322. source: "./media/characters/carie/back-dressed.svg",
  58323. extra: 455/414,
  58324. bottom: 11/466
  58325. }
  58326. },
  58327. front: {
  58328. height: math.unit(2, "meters"),
  58329. weight: math.unit(175, "lb"),
  58330. name: "Front",
  58331. image: {
  58332. source: "./media/characters/carie/front.svg",
  58333. extra: 438/399,
  58334. bottom: 12/450
  58335. }
  58336. },
  58337. back: {
  58338. height: math.unit(2, "meters"),
  58339. weight: math.unit(175, "lb"),
  58340. name: "Back",
  58341. image: {
  58342. source: "./media/characters/carie/back.svg",
  58343. extra: 438/397,
  58344. bottom: 7/445
  58345. }
  58346. },
  58347. },
  58348. [
  58349. {
  58350. name: "Normal",
  58351. height: math.unit(2.08, "meters"),
  58352. default: true
  58353. },
  58354. {
  58355. name: "Macro",
  58356. height: math.unit(2.08e3, "meters")
  58357. },
  58358. {
  58359. name: "Mega Macro",
  58360. height: math.unit(2.08e6, "meters")
  58361. },
  58362. {
  58363. name: "Giga Macro",
  58364. height: math.unit(2.08e9, "meters")
  58365. },
  58366. {
  58367. name: "Tera Macro",
  58368. height: math.unit(2.08e12, "meters")
  58369. },
  58370. {
  58371. name: "Peta Macro",
  58372. height: math.unit(2.08e15, "meters")
  58373. },
  58374. {
  58375. name: "Exa Macro",
  58376. height: math.unit(2.08e18, "meters")
  58377. },
  58378. {
  58379. name: "Zetta Macro",
  58380. height: math.unit(2.08e21, "meters")
  58381. },
  58382. {
  58383. name: "Yotta Macro",
  58384. height: math.unit(2.08e24, "meters")
  58385. },
  58386. ]
  58387. ))
  58388. characterMakers.push(() => makeCharacter(
  58389. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58390. {
  58391. front: {
  58392. height: math.unit(5 + 2/12, "feet"),
  58393. weight: math.unit(120, "lb"),
  58394. name: "Front",
  58395. image: {
  58396. source: "./media/characters/sai-bree/front.svg",
  58397. extra: 1843/1702,
  58398. bottom: 91/1934
  58399. }
  58400. },
  58401. back: {
  58402. height: math.unit(5 + 2/12, "feet"),
  58403. weight: math.unit(120, "lb"),
  58404. name: "Back",
  58405. image: {
  58406. source: "./media/characters/sai-bree/back.svg",
  58407. extra: 1809/1637,
  58408. bottom: 56/1865
  58409. }
  58410. },
  58411. },
  58412. [
  58413. {
  58414. name: "Normal",
  58415. height: math.unit(5 + 2/12, "feet"),
  58416. default: true
  58417. },
  58418. {
  58419. name: "Macro",
  58420. height: math.unit(500, "feet")
  58421. },
  58422. ]
  58423. ))
  58424. characterMakers.push(() => makeCharacter(
  58425. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58426. {
  58427. side: {
  58428. height: math.unit(0.77, "meters"),
  58429. weight: math.unit(120, "lb"),
  58430. name: "Side",
  58431. image: {
  58432. source: "./media/characters/davwyn/side.svg",
  58433. extra: 1557/1225,
  58434. bottom: 131/1688
  58435. }
  58436. },
  58437. front: {
  58438. height: math.unit(0.835410, "meters"),
  58439. weight: math.unit(120, "lb"),
  58440. name: "Front",
  58441. image: {
  58442. source: "./media/characters/davwyn/front.svg",
  58443. extra: 870/843,
  58444. bottom: 175/1045
  58445. }
  58446. },
  58447. },
  58448. [
  58449. {
  58450. name: "Minidrake",
  58451. height: math.unit(0.77/4, "meters")
  58452. },
  58453. {
  58454. name: "Normal",
  58455. height: math.unit(0.77, "meters"),
  58456. default: true
  58457. },
  58458. ]
  58459. ))
  58460. characterMakers.push(() => makeCharacter(
  58461. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58462. {
  58463. front: {
  58464. height: math.unit(10 + 3/12, "feet"),
  58465. weight: math.unit(2857, "lb"),
  58466. name: "Front",
  58467. image: {
  58468. source: "./media/characters/balans/front.svg",
  58469. extra: 427/402,
  58470. bottom: 26/453
  58471. }
  58472. },
  58473. side: {
  58474. height: math.unit(10 + 3/12, "feet"),
  58475. weight: math.unit(2857, "lb"),
  58476. name: "Side",
  58477. image: {
  58478. source: "./media/characters/balans/side.svg",
  58479. extra: 397/371,
  58480. bottom: 17/414
  58481. }
  58482. },
  58483. back: {
  58484. height: math.unit(10 + 3/12, "feet"),
  58485. weight: math.unit(2857, "lb"),
  58486. name: "Back",
  58487. image: {
  58488. source: "./media/characters/balans/back.svg",
  58489. extra: 408/381,
  58490. bottom: 14/422
  58491. }
  58492. },
  58493. hand: {
  58494. height: math.unit(1.15, "feet"),
  58495. name: "Hand",
  58496. image: {
  58497. source: "./media/characters/balans/hand.svg"
  58498. }
  58499. },
  58500. footRest: {
  58501. height: math.unit(3.1, "feet"),
  58502. name: "Foot (Rest)",
  58503. image: {
  58504. source: "./media/characters/balans/foot-rest.svg"
  58505. }
  58506. },
  58507. footActive: {
  58508. height: math.unit(3.5, "feet"),
  58509. name: "Foot (Active)",
  58510. image: {
  58511. source: "./media/characters/balans/foot-active.svg"
  58512. }
  58513. },
  58514. },
  58515. [
  58516. {
  58517. name: "Normal",
  58518. height: math.unit(10 + 3/12, "feet"),
  58519. default: true
  58520. },
  58521. ]
  58522. ))
  58523. characterMakers.push(() => makeCharacter(
  58524. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58525. {
  58526. side: {
  58527. height: math.unit(9, "meters"),
  58528. weight: math.unit(114, "tonnes"),
  58529. name: "Side",
  58530. image: {
  58531. source: "./media/characters/eldkveikir/side.svg",
  58532. extra: 1927/338,
  58533. bottom: 42/1969
  58534. }
  58535. },
  58536. sitting: {
  58537. height: math.unit(13.4, "meters"),
  58538. weight: math.unit(114, "tonnes"),
  58539. name: "Sitting",
  58540. image: {
  58541. source: "./media/characters/eldkveikir/sitting.svg",
  58542. extra: 1108/963,
  58543. bottom: 610/1718
  58544. }
  58545. },
  58546. maw: {
  58547. height: math.unit(8.36, "meters"),
  58548. name: "Maw",
  58549. image: {
  58550. source: "./media/characters/eldkveikir/maw.svg"
  58551. }
  58552. },
  58553. hand: {
  58554. height: math.unit(4.84, "meters"),
  58555. name: "Hand",
  58556. image: {
  58557. source: "./media/characters/eldkveikir/hand.svg"
  58558. }
  58559. },
  58560. foot: {
  58561. height: math.unit(6.9, "meters"),
  58562. name: "Foot",
  58563. image: {
  58564. source: "./media/characters/eldkveikir/foot.svg"
  58565. }
  58566. },
  58567. genitals: {
  58568. height: math.unit(9.6, "meters"),
  58569. name: "Genitals",
  58570. image: {
  58571. source: "./media/characters/eldkveikir/genitals.svg"
  58572. }
  58573. },
  58574. },
  58575. [
  58576. {
  58577. name: "Normal",
  58578. height: math.unit(9, "meters"),
  58579. default: true
  58580. },
  58581. ]
  58582. ))
  58583. characterMakers.push(() => makeCharacter(
  58584. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58585. {
  58586. front: {
  58587. height: math.unit(14, "feet"),
  58588. weight: math.unit(4100, "lb"),
  58589. name: "Front",
  58590. image: {
  58591. source: "./media/characters/arrow/front.svg",
  58592. extra: 330/318,
  58593. bottom: 56/386
  58594. }
  58595. },
  58596. },
  58597. [
  58598. {
  58599. name: "Normal",
  58600. height: math.unit(14, "feet"),
  58601. default: true
  58602. },
  58603. {
  58604. name: "Minimacro",
  58605. height: math.unit(63, "feet")
  58606. },
  58607. {
  58608. name: "Macro",
  58609. height: math.unit(630, "feet")
  58610. },
  58611. {
  58612. name: "Megamacro",
  58613. height: math.unit(12600, "feet")
  58614. },
  58615. {
  58616. name: "Gigamacro",
  58617. height: math.unit(18000, "miles")
  58618. },
  58619. ]
  58620. ))
  58621. characterMakers.push(() => makeCharacter(
  58622. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58623. {
  58624. front: {
  58625. height: math.unit(10, "feet"),
  58626. weight: math.unit(2.4, "tons"),
  58627. name: "Front",
  58628. image: {
  58629. source: "./media/characters/3yk-k0-unit/front.svg",
  58630. extra: 573/561,
  58631. bottom: 33/606
  58632. }
  58633. },
  58634. back: {
  58635. height: math.unit(10, "feet"),
  58636. weight: math.unit(2.4, "tons"),
  58637. name: "Back",
  58638. image: {
  58639. source: "./media/characters/3yk-k0-unit/back.svg",
  58640. extra: 614/573,
  58641. bottom: 32/646
  58642. }
  58643. },
  58644. maw: {
  58645. height: math.unit(2.15, "feet"),
  58646. name: "Maw",
  58647. image: {
  58648. source: "./media/characters/3yk-k0-unit/maw.svg"
  58649. }
  58650. },
  58651. },
  58652. [
  58653. {
  58654. name: "Normal",
  58655. height: math.unit(10, "feet"),
  58656. default: true
  58657. },
  58658. ]
  58659. ))
  58660. characterMakers.push(() => makeCharacter(
  58661. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58662. {
  58663. front: {
  58664. height: math.unit(8 + 8/12, "feet"),
  58665. name: "Front",
  58666. image: {
  58667. source: "./media/characters/nemo/front.svg",
  58668. extra: 1308/1217,
  58669. bottom: 57/1365
  58670. }
  58671. },
  58672. },
  58673. [
  58674. {
  58675. name: "Normal",
  58676. height: math.unit(8 + 8/12, "feet"),
  58677. default: true
  58678. },
  58679. ]
  58680. ))
  58681. characterMakers.push(() => makeCharacter(
  58682. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58683. {
  58684. front: {
  58685. height: math.unit(8, "feet"),
  58686. weight: math.unit(760, "lb"),
  58687. name: "Front",
  58688. image: {
  58689. source: "./media/characters/rexx/front.svg",
  58690. extra: 786/750,
  58691. bottom: 17/803
  58692. },
  58693. extraAttributes: {
  58694. "pawLength": {
  58695. name: "Paw Length",
  58696. power: 1,
  58697. type: "length",
  58698. base: math.unit(27, "inches")
  58699. },
  58700. }
  58701. },
  58702. },
  58703. [
  58704. {
  58705. name: "Micro",
  58706. height: math.unit(2, "inches")
  58707. },
  58708. {
  58709. name: "Normal",
  58710. height: math.unit(8, "feet"),
  58711. default: true
  58712. },
  58713. {
  58714. name: "Macro",
  58715. height: math.unit(150, "feet")
  58716. },
  58717. ]
  58718. ))
  58719. characterMakers.push(() => makeCharacter(
  58720. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58721. {
  58722. front: {
  58723. height: math.unit(18, "feet"),
  58724. weight: math.unit(1975, "lb"),
  58725. name: "Front",
  58726. image: {
  58727. source: "./media/characters/draco/front.svg",
  58728. extra: 1325/1241,
  58729. bottom: 83/1408
  58730. }
  58731. },
  58732. back: {
  58733. height: math.unit(18, "feet"),
  58734. weight: math.unit(1975, "lb"),
  58735. name: "Back",
  58736. image: {
  58737. source: "./media/characters/draco/back.svg",
  58738. extra: 1332/1250,
  58739. bottom: 43/1375
  58740. }
  58741. },
  58742. dick: {
  58743. height: math.unit(7.5, "feet"),
  58744. name: "Dick",
  58745. image: {
  58746. source: "./media/characters/draco/dick.svg"
  58747. }
  58748. },
  58749. },
  58750. [
  58751. {
  58752. name: "Normal",
  58753. height: math.unit(18, "feet"),
  58754. default: true
  58755. },
  58756. ]
  58757. ))
  58758. characterMakers.push(() => makeCharacter(
  58759. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58760. {
  58761. front: {
  58762. height: math.unit(3.2, "meters"),
  58763. name: "Front",
  58764. image: {
  58765. source: "./media/characters/harriett/front.svg",
  58766. extra: 1966/1915,
  58767. bottom: 9/1975
  58768. }
  58769. },
  58770. },
  58771. [
  58772. {
  58773. name: "Normal",
  58774. height: math.unit(3.2, "meters"),
  58775. default: true
  58776. },
  58777. ]
  58778. ))
  58779. characterMakers.push(() => makeCharacter(
  58780. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58781. {
  58782. standing: {
  58783. height: math.unit(180, "cm"),
  58784. weight: math.unit(185, "lb"),
  58785. name: "Standing",
  58786. image: {
  58787. source: "./media/characters/serpentus/standing.svg",
  58788. extra: 882/878,
  58789. bottom: 16/898
  58790. }
  58791. },
  58792. sitting: {
  58793. height: math.unit(0.8, "meter"),
  58794. weight: math.unit(155, "lb"),
  58795. name: "Sitting",
  58796. image: {
  58797. source: "./media/characters/serpentus/sitting.svg",
  58798. extra: 293/290,
  58799. bottom: 140/433
  58800. }
  58801. },
  58802. },
  58803. [
  58804. {
  58805. name: "Normal",
  58806. height: math.unit(1.8, "meter"),
  58807. default: true
  58808. },
  58809. ]
  58810. ))
  58811. characterMakers.push(() => makeCharacter(
  58812. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58813. {
  58814. front: {
  58815. height: math.unit(5.7174385736, "feet"),
  58816. name: "Front",
  58817. image: {
  58818. source: "./media/characters/nova-polecat/front.svg",
  58819. extra: 1317/1216,
  58820. bottom: 92/1409
  58821. }
  58822. },
  58823. },
  58824. [
  58825. {
  58826. name: "Normal",
  58827. height: math.unit(5.7174385736, "feet"),
  58828. default: true
  58829. },
  58830. ]
  58831. ))
  58832. characterMakers.push(() => makeCharacter(
  58833. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58834. {
  58835. front: {
  58836. height: math.unit(5 + 4/12, "feet"),
  58837. weight: math.unit(250, "lb"),
  58838. name: "Front",
  58839. image: {
  58840. source: "./media/characters/mook/front.svg",
  58841. extra: 1088/1037,
  58842. bottom: 132/1220
  58843. }
  58844. },
  58845. back: {
  58846. height: math.unit(5 + 1/12, "feet"),
  58847. weight: math.unit(250, "lb"),
  58848. name: "Back",
  58849. image: {
  58850. source: "./media/characters/mook/back.svg",
  58851. extra: 1184/905,
  58852. bottom: 96/1280
  58853. }
  58854. },
  58855. head: {
  58856. height: math.unit(1.85, "feet"),
  58857. name: "Head",
  58858. image: {
  58859. source: "./media/characters/mook/head.svg"
  58860. }
  58861. },
  58862. hand: {
  58863. height: math.unit(1.9, "feet"),
  58864. name: "Hand",
  58865. image: {
  58866. source: "./media/characters/mook/hand.svg"
  58867. }
  58868. },
  58869. palm: {
  58870. height: math.unit(1.84, "feet"),
  58871. name: "Palm",
  58872. image: {
  58873. source: "./media/characters/mook/palm.svg"
  58874. }
  58875. },
  58876. foot: {
  58877. height: math.unit(1.44, "feet"),
  58878. name: "Foot",
  58879. image: {
  58880. source: "./media/characters/mook/foot.svg"
  58881. }
  58882. },
  58883. sole: {
  58884. height: math.unit(1.44, "feet"),
  58885. name: "Sole",
  58886. image: {
  58887. source: "./media/characters/mook/sole.svg"
  58888. }
  58889. },
  58890. },
  58891. [
  58892. {
  58893. name: "Normal",
  58894. height: math.unit(5 + 4/12, "feet"),
  58895. default: true
  58896. },
  58897. {
  58898. name: "Big",
  58899. height: math.unit(12, "feet")
  58900. },
  58901. ]
  58902. ))
  58903. characterMakers.push(() => makeCharacter(
  58904. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58905. {
  58906. front: {
  58907. height: math.unit(6 + 10/12, "feet"),
  58908. weight: math.unit(233, "lb"),
  58909. name: "Front",
  58910. image: {
  58911. source: "./media/characters/kayla/front.svg",
  58912. extra: 1850/1775,
  58913. bottom: 65/1915
  58914. }
  58915. },
  58916. },
  58917. [
  58918. {
  58919. name: "Normal",
  58920. height: math.unit(6 + 10/12, "feet"),
  58921. default: true
  58922. },
  58923. {
  58924. name: "Amazonian",
  58925. height: math.unit(12 + 5/12, "feet")
  58926. },
  58927. {
  58928. name: "Mini Giantess",
  58929. height: math.unit(26, "feet")
  58930. },
  58931. {
  58932. name: "Giantess",
  58933. height: math.unit(200, "feet")
  58934. },
  58935. {
  58936. name: "Mega Giantess",
  58937. height: math.unit(2500, "feet")
  58938. },
  58939. {
  58940. name: "City Sized",
  58941. height: math.unit(50, "miles")
  58942. },
  58943. {
  58944. name: "Country Sized",
  58945. height: math.unit(500, "miles")
  58946. },
  58947. {
  58948. name: "Continent Sized",
  58949. height: math.unit(2500, "miles")
  58950. },
  58951. {
  58952. name: "Planet Sized",
  58953. height: math.unit(10000, "miles")
  58954. },
  58955. {
  58956. name: "Star Sized",
  58957. height: math.unit(5e6, "miles")
  58958. },
  58959. {
  58960. name: "Solar System Sized",
  58961. height: math.unit(125, "AU")
  58962. },
  58963. {
  58964. name: "Galaxy Sized",
  58965. height: math.unit(300e3, "lightyears")
  58966. },
  58967. {
  58968. name: "Universe Sized",
  58969. height: math.unit(200e9, "lightyears")
  58970. },
  58971. {
  58972. name: "Multiverse Sized",
  58973. height: math.unit(20, "exauniverses")
  58974. },
  58975. {
  58976. name: "Mother of Existence",
  58977. height: math.unit(1e6, "yottauniverses")
  58978. },
  58979. ]
  58980. ))
  58981. characterMakers.push(() => makeCharacter(
  58982. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58983. {
  58984. side: {
  58985. height: math.unit(9.5, "meters"),
  58986. name: "Side",
  58987. image: {
  58988. source: "./media/characters/kulve-ragnarok/side.svg",
  58989. extra: 364/326,
  58990. bottom: 50/414
  58991. }
  58992. },
  58993. },
  58994. [
  58995. {
  58996. name: "Normal",
  58997. height: math.unit(9.5, "meters"),
  58998. default: true
  58999. },
  59000. ]
  59001. ))
  59002. characterMakers.push(() => makeCharacter(
  59003. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59004. {
  59005. front: {
  59006. height: math.unit(8 + 9/12, "feet"),
  59007. name: "Front",
  59008. image: {
  59009. source: "./media/characters/atlas-goat/front.svg",
  59010. extra: 1462/1323,
  59011. bottom: 12/1474
  59012. }
  59013. },
  59014. },
  59015. [
  59016. {
  59017. name: "Normal",
  59018. height: math.unit(8 + 9/12, "feet"),
  59019. default: true
  59020. },
  59021. {
  59022. name: "Skyline",
  59023. height: math.unit(845, "feet")
  59024. },
  59025. {
  59026. name: "Orbital",
  59027. height: math.unit(93000, "miles")
  59028. },
  59029. {
  59030. name: "Constellation",
  59031. height: math.unit(27000, "lightyears")
  59032. },
  59033. ]
  59034. ))
  59035. characterMakers.push(() => makeCharacter(
  59036. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59037. {
  59038. side: {
  59039. height: math.unit(1.8, "meters"),
  59040. weight: math.unit(120, "kg"),
  59041. name: "Side",
  59042. image: {
  59043. source: "./media/characters/xie-ling/side.svg",
  59044. extra: 646/574,
  59045. bottom: 44/690
  59046. }
  59047. },
  59048. },
  59049. [
  59050. {
  59051. name: "Tiny",
  59052. height: math.unit(1.80, "meters")
  59053. },
  59054. {
  59055. name: "Small",
  59056. height: math.unit(6, "meters")
  59057. },
  59058. {
  59059. name: "Medium",
  59060. height: math.unit(15, "meters")
  59061. },
  59062. {
  59063. name: "Normal",
  59064. height: math.unit(30, "meters"),
  59065. default: true
  59066. },
  59067. {
  59068. name: "Above Normal",
  59069. height: math.unit(60, "meters")
  59070. },
  59071. {
  59072. name: "Big",
  59073. height: math.unit(220, "meters")
  59074. },
  59075. {
  59076. name: "Giant",
  59077. height: math.unit(2.2, "km")
  59078. },
  59079. {
  59080. name: "Macro",
  59081. height: math.unit(25, "km")
  59082. },
  59083. {
  59084. name: "Mega Macro",
  59085. height: math.unit(350, "km")
  59086. },
  59087. {
  59088. name: "Mega Macro+",
  59089. height: math.unit(5000, "km")
  59090. },
  59091. {
  59092. name: "Goddess",
  59093. height: math.unit(3, "multiverses")
  59094. },
  59095. ]
  59096. ))
  59097. characterMakers.push(() => makeCharacter(
  59098. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59099. {
  59100. frontSfw: {
  59101. height: math.unit(5 + 11/12, "feet"),
  59102. weight: math.unit(210, "lb"),
  59103. name: "Front",
  59104. image: {
  59105. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59106. extra: 1928/1821,
  59107. bottom: 45/1973
  59108. }
  59109. },
  59110. backSfw: {
  59111. height: math.unit(5 + 11/12, "feet"),
  59112. weight: math.unit(210, "lb"),
  59113. name: "Back",
  59114. image: {
  59115. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59116. extra: 1920/1813,
  59117. bottom: 34/1954
  59118. }
  59119. },
  59120. frontNsfw: {
  59121. height: math.unit(5 + 11/12, "feet"),
  59122. weight: math.unit(210, "lb"),
  59123. name: "Front (NSFW)",
  59124. image: {
  59125. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59126. extra: 1928/1821,
  59127. bottom: 45/1973
  59128. }
  59129. },
  59130. backNsfw: {
  59131. height: math.unit(5 + 11/12, "feet"),
  59132. weight: math.unit(210, "lb"),
  59133. name: "Back (NSFW)",
  59134. image: {
  59135. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59136. extra: 1920/1813,
  59137. bottom: 34/1954
  59138. }
  59139. },
  59140. },
  59141. [
  59142. {
  59143. name: "Normal",
  59144. height: math.unit(5 + 11/12, "feet"),
  59145. default: true
  59146. },
  59147. {
  59148. name: "Goddess",
  59149. height: math.unit(20 + 3/12, "feet")
  59150. },
  59151. {
  59152. name: "Breaker of Man",
  59153. height: math.unit(329 + 9/12, "feet")
  59154. },
  59155. {
  59156. name: "Solar Justice",
  59157. height: math.unit(0.6, "solarradii")
  59158. },
  59159. {
  59160. name: "She Who Judges",
  59161. height: math.unit(1, "universe")
  59162. },
  59163. ]
  59164. ))
  59165. characterMakers.push(() => makeCharacter(
  59166. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59167. {
  59168. casual_front: {
  59169. height: math.unit(6 + 1/12, "feet"),
  59170. weight: math.unit(190, "lb"),
  59171. preyCapacity: math.unit(1, "people"),
  59172. name: "Front",
  59173. image: {
  59174. source: "./media/characters/managarmr/casual-front.svg",
  59175. extra: 411/381,
  59176. bottom: 15/426
  59177. },
  59178. extraAttributes: {
  59179. "pawSize": {
  59180. name: "Paw Size",
  59181. power: 1,
  59182. type: "length",
  59183. base: math.unit(0.2, "meters")
  59184. },
  59185. },
  59186. form: "casual",
  59187. },
  59188. casual_back: {
  59189. height: math.unit(6 + 1/12, "feet"),
  59190. weight: math.unit(190, "lb"),
  59191. preyCapacity: math.unit(1, "people"),
  59192. name: "Back",
  59193. image: {
  59194. source: "./media/characters/managarmr/casual-back.svg",
  59195. extra: 413/383,
  59196. bottom: 13/426
  59197. },
  59198. extraAttributes: {
  59199. "pawSize": {
  59200. name: "Paw Size",
  59201. power: 1,
  59202. type: "length",
  59203. base: math.unit(0.2, "meters")
  59204. },
  59205. },
  59206. form: "casual",
  59207. },
  59208. base_front: {
  59209. height: math.unit(7, "feet"),
  59210. weight: math.unit(210, "lb"),
  59211. preyCapacity: math.unit(2, "people"),
  59212. name: "Front",
  59213. image: {
  59214. source: "./media/characters/managarmr/base-front.svg",
  59215. extra: 580/485,
  59216. bottom: 32/612
  59217. },
  59218. extraAttributes: {
  59219. "wingspan": {
  59220. name: "Wingspan",
  59221. power: 1,
  59222. type: "length",
  59223. base: math.unit(4, "meters")
  59224. },
  59225. "pawSize": {
  59226. name: "Paw Size",
  59227. power: 1,
  59228. type: "length",
  59229. base: math.unit(0.2, "meters")
  59230. },
  59231. },
  59232. form: "base",
  59233. },
  59234. "true-divine_front": {
  59235. height: math.unit(40, "feet"),
  59236. weight: math.unit(39000, "lb"),
  59237. preyCapacity: math.unit(375, "people"),
  59238. name: "Front",
  59239. image: {
  59240. source: "./media/characters/managarmr/true-divine-front.svg",
  59241. extra: 725/573,
  59242. bottom: 120/845
  59243. },
  59244. extraAttributes: {
  59245. "wingspan": {
  59246. name: "Wingspan",
  59247. power: 1,
  59248. type: "length",
  59249. base: math.unit(20, "meters")
  59250. },
  59251. "pawSize": {
  59252. name: "Paw Size",
  59253. power: 1,
  59254. type: "length",
  59255. base: math.unit(1.5, "meters")
  59256. },
  59257. },
  59258. form: "true-divine",
  59259. },
  59260. },
  59261. [
  59262. {
  59263. name: "Normal",
  59264. height: math.unit(6 + 1/12, "feet"),
  59265. form: "casual",
  59266. default: true
  59267. },
  59268. {
  59269. name: "Normal",
  59270. height: math.unit(7, "feet"),
  59271. form: "base",
  59272. default: true
  59273. },
  59274. ],
  59275. {
  59276. "casual": {
  59277. name: "Casual",
  59278. default: true
  59279. },
  59280. "base": {
  59281. name: "Base",
  59282. },
  59283. "true-divine": {
  59284. name: "True Divine",
  59285. },
  59286. }
  59287. ))
  59288. characterMakers.push(() => makeCharacter(
  59289. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59290. {
  59291. front: {
  59292. height: math.unit(1.8, "meters"),
  59293. weight: math.unit(110, "kg"),
  59294. name: "Front",
  59295. image: {
  59296. source: "./media/characters/mystra/front.svg",
  59297. extra: 529/442,
  59298. bottom: 31/560
  59299. }
  59300. },
  59301. frontLewd: {
  59302. height: math.unit(1.8, "meters"),
  59303. weight: math.unit(110, "kg"),
  59304. name: "Front (Lewd)",
  59305. image: {
  59306. source: "./media/characters/mystra/front-lewd.svg",
  59307. extra: 529/442,
  59308. bottom: 31/560
  59309. }
  59310. },
  59311. head: {
  59312. height: math.unit(1.63, "feet"),
  59313. name: "Head",
  59314. image: {
  59315. source: "./media/characters/mystra/head.svg"
  59316. }
  59317. },
  59318. paw: {
  59319. height: math.unit(1.9, "feet"),
  59320. name: "Paw",
  59321. image: {
  59322. source: "./media/characters/mystra/paw.svg"
  59323. }
  59324. },
  59325. },
  59326. [
  59327. {
  59328. name: "Incognito",
  59329. height: math.unit(2.3, "meters")
  59330. },
  59331. {
  59332. name: "Small Macro",
  59333. height: math.unit(300, "meters")
  59334. },
  59335. {
  59336. name: "Small Mega",
  59337. height: math.unit(2, "km")
  59338. },
  59339. {
  59340. name: "Mega",
  59341. height: math.unit(30, "km")
  59342. },
  59343. {
  59344. name: "Small Giga",
  59345. height: math.unit(100, "km")
  59346. },
  59347. {
  59348. name: "Giga",
  59349. height: math.unit(1000, "km"),
  59350. default: true
  59351. },
  59352. {
  59353. name: "Continental",
  59354. height: math.unit(5000, "km")
  59355. },
  59356. {
  59357. name: "Terra",
  59358. height: math.unit(20000, "km")
  59359. },
  59360. {
  59361. name: "Solar",
  59362. height: math.unit(2e6, "km")
  59363. },
  59364. {
  59365. name: "Galactic",
  59366. height: math.unit(528502, "lightyears")
  59367. },
  59368. {
  59369. name: "Universal",
  59370. height: math.unit(20, "universes")
  59371. },
  59372. ]
  59373. ))
  59374. characterMakers.push(() => makeCharacter(
  59375. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59376. {
  59377. front: {
  59378. height: math.unit(2, "meters"),
  59379. weight: math.unit(140, "kg"),
  59380. name: "Front",
  59381. image: {
  59382. source: "./media/characters/caleb/front.svg",
  59383. extra: 873/817,
  59384. bottom: 47/920
  59385. }
  59386. },
  59387. back: {
  59388. height: math.unit(2, "meters"),
  59389. weight: math.unit(140, "kg"),
  59390. name: "Back",
  59391. image: {
  59392. source: "./media/characters/caleb/back.svg",
  59393. extra: 877/828,
  59394. bottom: 24/901
  59395. }
  59396. },
  59397. snakeTail: {
  59398. height: math.unit(1.44, "feet"),
  59399. name: "Snake Tail",
  59400. image: {
  59401. source: "./media/characters/caleb/snake-tail.svg"
  59402. }
  59403. },
  59404. dick: {
  59405. height: math.unit(2.6, "feet"),
  59406. name: "Dick",
  59407. image: {
  59408. source: "./media/characters/caleb/dick.svg"
  59409. }
  59410. },
  59411. },
  59412. [
  59413. {
  59414. name: "Incognito",
  59415. height: math.unit(3, "meters")
  59416. },
  59417. {
  59418. name: "Home Size",
  59419. height: math.unit(200, "meters"),
  59420. default: true
  59421. },
  59422. {
  59423. name: "Macro",
  59424. height: math.unit(500, "meters")
  59425. },
  59426. {
  59427. name: "Big Macro",
  59428. height: math.unit(5, "km")
  59429. },
  59430. {
  59431. name: "Giga",
  59432. height: math.unit(250, "km")
  59433. },
  59434. {
  59435. name: "Giga+",
  59436. height: math.unit(5000, "km")
  59437. },
  59438. {
  59439. name: "Small Terra",
  59440. height: math.unit(35e3, "km")
  59441. },
  59442. {
  59443. name: "Terra",
  59444. height: math.unit(2e6, "km")
  59445. },
  59446. {
  59447. name: "Terra+",
  59448. height: math.unit(1.5e6, "km")
  59449. },
  59450. ]
  59451. ))
  59452. characterMakers.push(() => makeCharacter(
  59453. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59454. {
  59455. front: {
  59456. height: math.unit(2, "meters"),
  59457. weight: math.unit(120, "kg"),
  59458. name: "Front",
  59459. image: {
  59460. source: "./media/characters/gilirian/front.svg",
  59461. extra: 805/737,
  59462. bottom: 13/818
  59463. }
  59464. },
  59465. side: {
  59466. height: math.unit(2, "meters"),
  59467. weight: math.unit(120, "kg"),
  59468. name: "Side",
  59469. image: {
  59470. source: "./media/characters/gilirian/side.svg",
  59471. extra: 810/746,
  59472. bottom: 6/816
  59473. }
  59474. },
  59475. back: {
  59476. height: math.unit(2, "meters"),
  59477. weight: math.unit(120, "kg"),
  59478. name: "Back",
  59479. image: {
  59480. source: "./media/characters/gilirian/back.svg",
  59481. extra: 815/745,
  59482. bottom: 15/830
  59483. }
  59484. },
  59485. frontNsfw: {
  59486. height: math.unit(2, "meters"),
  59487. weight: math.unit(120, "kg"),
  59488. name: "Front (NSFW)",
  59489. image: {
  59490. source: "./media/characters/gilirian/front-nsfw.svg",
  59491. extra: 805/737,
  59492. bottom: 13/818
  59493. }
  59494. },
  59495. sideNsfw: {
  59496. height: math.unit(2, "meters"),
  59497. weight: math.unit(120, "kg"),
  59498. name: "Side (NSFW)",
  59499. image: {
  59500. source: "./media/characters/gilirian/side-nsfw.svg",
  59501. extra: 810/746,
  59502. bottom: 6/816
  59503. }
  59504. },
  59505. },
  59506. [
  59507. {
  59508. name: "Incognito",
  59509. height: math.unit(2, "meters"),
  59510. default: true
  59511. },
  59512. {
  59513. name: "Macro",
  59514. height: math.unit(250, "meters")
  59515. },
  59516. {
  59517. name: "Big Macro",
  59518. height: math.unit(1500, "meters")
  59519. },
  59520. {
  59521. name: "Mega",
  59522. height: math.unit(40, "km")
  59523. },
  59524. {
  59525. name: "Giga",
  59526. height: math.unit(300, "km")
  59527. },
  59528. {
  59529. name: "Extra Giga",
  59530. height: math.unit(5000, "km")
  59531. },
  59532. {
  59533. name: "Small Terra",
  59534. height: math.unit(10e3, "km")
  59535. },
  59536. {
  59537. name: "Terra",
  59538. height: math.unit(3e5, "km")
  59539. },
  59540. {
  59541. name: "Galactic",
  59542. height: math.unit(369950, "lightyears")
  59543. },
  59544. ]
  59545. ))
  59546. characterMakers.push(() => makeCharacter(
  59547. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59548. {
  59549. front: {
  59550. height: math.unit(2.5, "meters"),
  59551. weight: math.unit(230, "lb"),
  59552. name: "Front",
  59553. image: {
  59554. source: "./media/characters/tarken/front.svg",
  59555. extra: 764/720,
  59556. bottom: 49/813
  59557. }
  59558. },
  59559. back: {
  59560. height: math.unit(2.5, "meters"),
  59561. weight: math.unit(230, "lb"),
  59562. name: "Back",
  59563. image: {
  59564. source: "./media/characters/tarken/back.svg",
  59565. extra: 756/720,
  59566. bottom: 35/791
  59567. }
  59568. },
  59569. frontNsfw: {
  59570. height: math.unit(2.5, "meters"),
  59571. weight: math.unit(230, "lb"),
  59572. name: "Front (NSFW)",
  59573. image: {
  59574. source: "./media/characters/tarken/front-nsfw.svg",
  59575. extra: 764/720,
  59576. bottom: 49/813
  59577. }
  59578. },
  59579. backNsfw: {
  59580. height: math.unit(2.5, "meters"),
  59581. weight: math.unit(230, "lb"),
  59582. name: "Back (NSFW)",
  59583. image: {
  59584. source: "./media/characters/tarken/back-nsfw.svg",
  59585. extra: 756/720,
  59586. bottom: 35/791
  59587. }
  59588. },
  59589. head: {
  59590. height: math.unit(2.22, "feet"),
  59591. name: "Head",
  59592. image: {
  59593. source: "./media/characters/tarken/head.svg"
  59594. }
  59595. },
  59596. tail: {
  59597. height: math.unit(5.25, "feet"),
  59598. name: "Tail",
  59599. image: {
  59600. source: "./media/characters/tarken/tail.svg"
  59601. }
  59602. },
  59603. dick: {
  59604. height: math.unit(1.95, "feet"),
  59605. name: "Dick",
  59606. image: {
  59607. source: "./media/characters/tarken/dick.svg"
  59608. }
  59609. },
  59610. hand: {
  59611. height: math.unit(1.78, "feet"),
  59612. name: "Hand",
  59613. image: {
  59614. source: "./media/characters/tarken/hand.svg"
  59615. }
  59616. },
  59617. beam: {
  59618. height: math.unit(1.5, "feet"),
  59619. name: "Beam",
  59620. image: {
  59621. source: "./media/characters/tarken/beam.svg"
  59622. }
  59623. },
  59624. },
  59625. [
  59626. {
  59627. name: "Original Size",
  59628. height: math.unit(2.5, "meters")
  59629. },
  59630. {
  59631. name: "Macro",
  59632. height: math.unit(150, "meters"),
  59633. default: true
  59634. },
  59635. {
  59636. name: "Macro+",
  59637. height: math.unit(300, "meters")
  59638. },
  59639. {
  59640. name: "Mega",
  59641. height: math.unit(2, "km")
  59642. },
  59643. {
  59644. name: "Mega+",
  59645. height: math.unit(35, "km")
  59646. },
  59647.  {
  59648. name: "Mega++",
  59649. height: math.unit(60, "km")
  59650. },
  59651. {
  59652. name: "Giga",
  59653. height: math.unit(200, "km")
  59654. },
  59655. {
  59656. name: "Giga+",
  59657. height: math.unit(2500, "km")
  59658. },
  59659. {
  59660. name: "Giga++",
  59661. height: math.unit(6600, "km")
  59662. },
  59663. {
  59664. name: "Terra",
  59665. height: math.unit(20000, "km")
  59666. },
  59667. {
  59668. name: "Terra+",
  59669. height: math.unit(300000, "km")
  59670. },
  59671. ]
  59672. ))
  59673. characterMakers.push(() => makeCharacter(
  59674. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59675. {
  59676. magpie_dressed: {
  59677. height: math.unit(1.7, "meters"),
  59678. weight: math.unit(70, "kg"),
  59679. name: "Dressed",
  59680. image: {
  59681. source: "./media/characters/otreus/magpie-dressed.svg",
  59682. extra: 691/672,
  59683. bottom: 116/807
  59684. },
  59685. form: "magpie",
  59686. default: true
  59687. },
  59688. magpie_nude: {
  59689. height: math.unit(1.7, "meters"),
  59690. weight: math.unit(70, "kg"),
  59691. name: "Nude",
  59692. image: {
  59693. source: "./media/characters/otreus/magpie-nude.svg",
  59694. extra: 691/672,
  59695. bottom: 116/807
  59696. },
  59697. form: "magpie",
  59698. },
  59699. magpie_dressedLewd: {
  59700. height: math.unit(1.7, "meters"),
  59701. weight: math.unit(70, "kg"),
  59702. name: "Dressed (Lewd)",
  59703. image: {
  59704. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59705. extra: 691/672,
  59706. bottom: 116/807
  59707. },
  59708. form: "magpie",
  59709. },
  59710. magpie_nudeLewd: {
  59711. height: math.unit(1.7, "meters"),
  59712. weight: math.unit(70, "kg"),
  59713. name: "Nude (Lewd)",
  59714. image: {
  59715. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59716. extra: 691/672,
  59717. bottom: 116/807
  59718. },
  59719. form: "magpie",
  59720. },
  59721. magpie_leftFoot: {
  59722. height: math.unit(1.58, "feet"),
  59723. name: "Left Foot",
  59724. image: {
  59725. source: "./media/characters/otreus/magpie-left-foot.svg"
  59726. },
  59727. form: "magpie",
  59728. },
  59729. magpie_rightFoot: {
  59730. height: math.unit(1.58, "feet"),
  59731. name: "Right Foot",
  59732. image: {
  59733. source: "./media/characters/otreus/magpie-right-foot.svg"
  59734. },
  59735. form: "magpie",
  59736. },
  59737. magpie_wingspan: {
  59738. height: math.unit(2, "meters"),
  59739. weight: math.unit(70, "kg"),
  59740. name: "Wingspan",
  59741. image: {
  59742. source: "./media/characters/otreus/magpie-wingspan.svg"
  59743. },
  59744. extraAttributes: {
  59745. "wingspan": {
  59746. name: "Wingspan",
  59747. power: 1,
  59748. type: "length",
  59749. base: math.unit(3.35, "meters")
  59750. },
  59751. },
  59752. form: "magpie",
  59753. },
  59754. hippogriff_dressed: {
  59755. height: math.unit(1.7, "meters"),
  59756. weight: math.unit(70, "kg"),
  59757. name: "Dressed",
  59758. image: {
  59759. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59760. extra: 710/689,
  59761. bottom: 67/777
  59762. },
  59763. form: "hippogriff",
  59764. default: true
  59765. },
  59766. hippogriff_nude: {
  59767. height: math.unit(1.7, "meters"),
  59768. weight: math.unit(70, "kg"),
  59769. name: "Nude",
  59770. image: {
  59771. source: "./media/characters/otreus/hippogriff-nude.svg",
  59772. extra: 710/689,
  59773. bottom: 67/777
  59774. },
  59775. form: "hippogriff",
  59776. },
  59777. hippogriff_dressedLewd: {
  59778. height: math.unit(1.7, "meters"),
  59779. weight: math.unit(70, "kg"),
  59780. name: "Dressed (Lewd)",
  59781. image: {
  59782. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59783. extra: 710/689,
  59784. bottom: 67/777
  59785. },
  59786. form: "hippogriff",
  59787. },
  59788. hippogriff_nudeLewd: {
  59789. height: math.unit(1.7, "meters"),
  59790. weight: math.unit(70, "kg"),
  59791. name: "Nude (Lewd)",
  59792. image: {
  59793. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59794. extra: 710/689,
  59795. bottom: 67/777
  59796. },
  59797. form: "hippogriff",
  59798. },
  59799. },
  59800. [
  59801. {
  59802. name: "Original Size",
  59803. height: math.unit(1.7, "meters"),
  59804. allForms: true
  59805. },
  59806. {
  59807. name: "Incognito Size",
  59808. height: math.unit(2, "meters"),
  59809. allForms: true
  59810. },
  59811. {
  59812. name: "Mega",
  59813. height: math.unit(2, "km"),
  59814. allForms: true
  59815. },
  59816. {
  59817. name: "Mega+",
  59818. height: math.unit(40, "km"),
  59819. allForms: true
  59820. },
  59821. {
  59822. name: "Giga",
  59823. height: math.unit(250, "km"),
  59824. allForms: true
  59825. },
  59826. {
  59827. name: "Giga+",
  59828. height: math.unit(3000, "km"),
  59829. allForms: true
  59830. },
  59831. {
  59832. name: "Terra",
  59833. height: math.unit(20000, "km"),
  59834. allForms: true
  59835. },
  59836. {
  59837. name: "Solar (Home Size)",
  59838. height: math.unit(3e6, "km"),
  59839. allForms: true,
  59840. default: true
  59841. },
  59842. ],
  59843. {
  59844. "magpie": {
  59845. name: "Magpie",
  59846. default: true
  59847. },
  59848. "hippogriff": {
  59849. name: "Hippogriff",
  59850. },
  59851. }
  59852. ))
  59853. characterMakers.push(() => makeCharacter(
  59854. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59855. {
  59856. frontDressed: {
  59857. height: math.unit(1.8, "meters"),
  59858. weight: math.unit(90, "kg"),
  59859. name: "Front (Dressed)",
  59860. image: {
  59861. source: "./media/characters/thalia/front-dressed.svg",
  59862. extra: 478/402,
  59863. bottom: 55/533
  59864. }
  59865. },
  59866. backDressed: {
  59867. height: math.unit(1.8, "meters"),
  59868. weight: math.unit(90, "kg"),
  59869. name: "Back (Dressed)",
  59870. image: {
  59871. source: "./media/characters/thalia/back-dressed.svg",
  59872. extra: 500/424,
  59873. bottom: 15/515
  59874. }
  59875. },
  59876. frontNude: {
  59877. height: math.unit(1.8, "meters"),
  59878. weight: math.unit(90, "kg"),
  59879. name: "Front (Nude)",
  59880. image: {
  59881. source: "./media/characters/thalia/front-nude.svg",
  59882. extra: 478/402,
  59883. bottom: 55/533
  59884. }
  59885. },
  59886. backNude: {
  59887. height: math.unit(1.8, "meters"),
  59888. weight: math.unit(90, "kg"),
  59889. name: "Back (Nude)",
  59890. image: {
  59891. source: "./media/characters/thalia/back-nude.svg",
  59892. extra: 500/424,
  59893. bottom: 15/515
  59894. }
  59895. },
  59896. },
  59897. [
  59898. {
  59899. name: "Incognito",
  59900. height: math.unit(3, "meters")
  59901. },
  59902. {
  59903. name: "Macro",
  59904. height: math.unit(500, "meters")
  59905. },
  59906. {
  59907. name: "Mega",
  59908. height: math.unit(5, "km")
  59909. },
  59910. {
  59911. name: "Mega+",
  59912. height: math.unit(30, "km")
  59913. },
  59914. {
  59915. name: "Giga",
  59916. height: math.unit(350, "km")
  59917. },
  59918. {
  59919. name: "Giga+",
  59920. height: math.unit(4000, "km")
  59921. },
  59922. {
  59923. name: "Terra",
  59924. height: math.unit(35000, "km")
  59925. },
  59926. {
  59927. name: "Original Size",
  59928. height: math.unit(130000, "km")
  59929. },
  59930. {
  59931. name: "Solar (Home Size)",
  59932. height: math.unit(4e6, "km"),
  59933. default: true
  59934. },
  59935. ]
  59936. ))
  59937. characterMakers.push(() => makeCharacter(
  59938. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59939. {
  59940. front: {
  59941. height: math.unit(1.8, "meters"),
  59942. weight: math.unit(95, "kg"),
  59943. name: "Front",
  59944. image: {
  59945. source: "./media/characters/shango/front.svg",
  59946. extra: 1925/1774,
  59947. bottom: 67/1992
  59948. }
  59949. },
  59950. back: {
  59951. height: math.unit(1.8, "meters"),
  59952. weight: math.unit(95, "kg"),
  59953. name: "Back",
  59954. image: {
  59955. source: "./media/characters/shango/back.svg",
  59956. extra: 1915/1766,
  59957. bottom: 52/1967
  59958. }
  59959. },
  59960. frontLewd: {
  59961. height: math.unit(1.8, "meters"),
  59962. weight: math.unit(95, "kg"),
  59963. name: "Front (Lewd)",
  59964. image: {
  59965. source: "./media/characters/shango/front-lewd.svg",
  59966. extra: 1925/1774,
  59967. bottom: 67/1992
  59968. }
  59969. },
  59970. backLewd: {
  59971. height: math.unit(1.8, "meters"),
  59972. weight: math.unit(95, "kg"),
  59973. name: "Back (Lewd)",
  59974. image: {
  59975. source: "./media/characters/shango/back-lewd.svg",
  59976. extra: 1915/1766,
  59977. bottom: 52/1967
  59978. }
  59979. },
  59980. maw: {
  59981. height: math.unit(1.64, "feet"),
  59982. name: "Maw",
  59983. image: {
  59984. source: "./media/characters/shango/maw.svg"
  59985. }
  59986. },
  59987. dick: {
  59988. height: math.unit(2.14, "feet"),
  59989. name: "Dick",
  59990. image: {
  59991. source: "./media/characters/shango/dick.svg"
  59992. }
  59993. },
  59994. },
  59995. [
  59996. {
  59997. name: "Incognito",
  59998. height: math.unit(1.8, "meters")
  59999. },
  60000. {
  60001. name: "Home Size",
  60002. height: math.unit(60, "meters"),
  60003. default: true
  60004. },
  60005. {
  60006. name: "Macro",
  60007. height: math.unit(450, "meters")
  60008. },
  60009. {
  60010. name: "Mega",
  60011. height: math.unit(6, "km")
  60012. },
  60013. {
  60014. name: "Mega+",
  60015. height: math.unit(35, "km")
  60016. },
  60017. {
  60018. name: "Giga",
  60019. height: math.unit(500, "km")
  60020. },
  60021. {
  60022. name: "Giga+",
  60023. height: math.unit(5000, "km")
  60024. },
  60025. {
  60026. name: "Terra",
  60027. height: math.unit(60000, "km")
  60028. },
  60029. {
  60030. name: "Terra+",
  60031. height: math.unit(400000, "km")
  60032. },
  60033. ]
  60034. ))
  60035. characterMakers.push(() => makeCharacter(
  60036. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60037. {
  60038. front: {
  60039. height: math.unit(2, "meters"),
  60040. weight: math.unit(95, "kg"),
  60041. name: "Front",
  60042. image: {
  60043. source: "./media/characters/osiris-gryphon/front.svg",
  60044. extra: 1508/1313,
  60045. bottom: 87/1595
  60046. }
  60047. },
  60048. back: {
  60049. height: math.unit(2, "meters"),
  60050. weight: math.unit(95, "kg"),
  60051. name: "Back",
  60052. image: {
  60053. source: "./media/characters/osiris-gryphon/back.svg",
  60054. extra: 1436/1309,
  60055. bottom: 64/1500
  60056. }
  60057. },
  60058. frontLewd: {
  60059. height: math.unit(2, "meters"),
  60060. weight: math.unit(95, "kg"),
  60061. name: "Front-lewd",
  60062. image: {
  60063. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60064. extra: 1508/1313,
  60065. bottom: 87/1595
  60066. }
  60067. },
  60068. wing: {
  60069. height: math.unit(6.3333, "feet"),
  60070. name: "Wing",
  60071. image: {
  60072. source: "./media/characters/osiris-gryphon/wing.svg"
  60073. }
  60074. },
  60075. },
  60076. [
  60077. {
  60078. name: "Incognito",
  60079. height: math.unit(2, "meters")
  60080. },
  60081. {
  60082. name: "Home Size",
  60083. height: math.unit(30, "meters"),
  60084. default: true
  60085. },
  60086. {
  60087. name: "Macro",
  60088. height: math.unit(100, "meters")
  60089. },
  60090. {
  60091. name: "Macro+",
  60092. height: math.unit(350, "meters")
  60093. },
  60094. {
  60095. name: "Mega",
  60096. height: math.unit(40, "km")
  60097. },
  60098. {
  60099. name: "Giga",
  60100. height: math.unit(300, "km")
  60101. },
  60102. {
  60103. name: "Giga+",
  60104. height: math.unit(2000, "km")
  60105. },
  60106. {
  60107. name: "Terra",
  60108. height: math.unit(30000, "km")
  60109. },
  60110. ]
  60111. ))
  60112. characterMakers.push(() => makeCharacter(
  60113. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60114. {
  60115. front: {
  60116. height: math.unit(2.5, "meters"),
  60117. weight: math.unit(200, "kg"),
  60118. name: "Front",
  60119. image: {
  60120. source: "./media/characters/atlas-dragon/front.svg",
  60121. extra: 745/462,
  60122. bottom: 36/781
  60123. }
  60124. },
  60125. back: {
  60126. height: math.unit(2.5, "meters"),
  60127. weight: math.unit(200, "kg"),
  60128. name: "Back",
  60129. image: {
  60130. source: "./media/characters/atlas-dragon/back.svg",
  60131. extra: 848/822,
  60132. bottom: 57/905
  60133. }
  60134. },
  60135. frontLewd: {
  60136. height: math.unit(2.5, "meters"),
  60137. weight: math.unit(200, "kg"),
  60138. name: "Front (Lewd)",
  60139. image: {
  60140. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60141. extra: 745/462,
  60142. bottom: 36/781
  60143. }
  60144. },
  60145. backLewd: {
  60146. height: math.unit(2.5, "meters"),
  60147. weight: math.unit(200, "kg"),
  60148. name: "Back (Lewd)",
  60149. image: {
  60150. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60151. extra: 848/822,
  60152. bottom: 57/905
  60153. }
  60154. },
  60155. },
  60156. [
  60157. {
  60158. name: "Incognito",
  60159. height: math.unit(2.5, "meters")
  60160. },
  60161. {
  60162. name: "Small Macro",
  60163. height: math.unit(50, "meters")
  60164. },
  60165. {
  60166. name: "Macro",
  60167. height: math.unit(350, "meters")
  60168. },
  60169. {
  60170. name: "Mega",
  60171. height: math.unit(5.5, "kilometers")
  60172. },
  60173. {
  60174. name: "Mega+",
  60175. height: math.unit(50, "km")
  60176. },
  60177. {
  60178. name: "Giga",
  60179. height: math.unit(350, "km")
  60180. },
  60181. {
  60182. name: "Giga+",
  60183. height: math.unit(2000, "km")
  60184. },
  60185. {
  60186. name: "Giga++",
  60187. height: math.unit(6500, "km")
  60188. },
  60189. {
  60190. name: "Terra",
  60191. height: math.unit(30000, "km")
  60192. },
  60193. {
  60194. name: "Terra+",
  60195. height: math.unit(250000, "km")
  60196. },
  60197. {
  60198. name: "True Size",
  60199. height: math.unit(100, "multiverses"),
  60200. default: true
  60201. },
  60202. ]
  60203. ))
  60204. characterMakers.push(() => makeCharacter(
  60205. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60206. {
  60207. front: {
  60208. height: math.unit(1.8, "m"),
  60209. weight: math.unit(120, "kg"),
  60210. name: "Front",
  60211. image: {
  60212. source: "./media/characters/chey/front.svg",
  60213. extra: 1359/1270,
  60214. bottom: 18/1377
  60215. }
  60216. },
  60217. arm: {
  60218. height: math.unit(2.05, "feet"),
  60219. name: "Arm",
  60220. image: {
  60221. source: "./media/characters/chey/arm.svg"
  60222. }
  60223. },
  60224. head: {
  60225. height: math.unit(1.89, "feet"),
  60226. name: "Head",
  60227. image: {
  60228. source: "./media/characters/chey/head.svg"
  60229. }
  60230. },
  60231. },
  60232. [
  60233. {
  60234. name: "Original Size",
  60235. height: math.unit(5, "cm")
  60236. },
  60237. {
  60238. name: "Incognito Size",
  60239. height: math.unit(2.4, "m")
  60240. },
  60241. {
  60242. name: "Home Size",
  60243. height: math.unit(200, "meters"),
  60244. default: true
  60245. },
  60246. {
  60247. name: "Mega",
  60248. height: math.unit(2, "km")
  60249. },
  60250. {
  60251. name: "Giga (Preferred Size)",
  60252. height: math.unit(2000, "km")
  60253. },
  60254. {
  60255. name: "Giga+",
  60256. height: math.unit(6000, "km")
  60257. },
  60258. {
  60259. name: "Terra",
  60260. height: math.unit(17000, "km")
  60261. },
  60262. {
  60263. name: "Terra+",
  60264. height: math.unit(75000, "km")
  60265. },
  60266. {
  60267. name: "Terra++",
  60268. height: math.unit(225000, "km")
  60269. },
  60270. ]
  60271. ))
  60272. characterMakers.push(() => makeCharacter(
  60273. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60274. {
  60275. side: {
  60276. height: math.unit(7.8, "meters"),
  60277. name: "Side",
  60278. image: {
  60279. source: "./media/characters/ragnarok/side.svg",
  60280. extra: 725/621,
  60281. bottom: 72/797
  60282. }
  60283. },
  60284. },
  60285. [
  60286. {
  60287. name: "Normal",
  60288. height: math.unit(7.8, "meters"),
  60289. default: true
  60290. },
  60291. ]
  60292. ))
  60293. characterMakers.push(() => makeCharacter(
  60294. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60295. {
  60296. hyena_front: {
  60297. height: math.unit(2.1, "meters"),
  60298. weight: math.unit(110, "kg"),
  60299. name: "Front",
  60300. image: {
  60301. source: "./media/characters/nima/hyena-front.svg",
  60302. extra: 1904/1796,
  60303. bottom: 67/1971
  60304. },
  60305. form: "hyena",
  60306. },
  60307. hyena_back: {
  60308. height: math.unit(2.1, "meters"),
  60309. weight: math.unit(110, "kg"),
  60310. name: "Back",
  60311. image: {
  60312. source: "./media/characters/nima/hyena-back.svg",
  60313. extra: 1964/1884,
  60314. bottom: 35/1999
  60315. },
  60316. form: "hyena",
  60317. },
  60318. shark_front: {
  60319. height: math.unit(1.95, "meters"),
  60320. weight: math.unit(110, "kg"),
  60321. name: "Front",
  60322. image: {
  60323. source: "./media/characters/nima/shark-front.svg",
  60324. extra: 2238/2013,
  60325. bottom: 0/223
  60326. },
  60327. form: "shark",
  60328. },
  60329. paw: {
  60330. height: math.unit(1, "feet"),
  60331. name: "Paw",
  60332. image: {
  60333. source: "./media/characters/nima/paw.svg"
  60334. }
  60335. },
  60336. circlet: {
  60337. height: math.unit(0.3, "feet"),
  60338. name: "Circlet",
  60339. image: {
  60340. source: "./media/characters/nima/circlet.svg"
  60341. }
  60342. },
  60343. necklace: {
  60344. height: math.unit(1.2, "feet"),
  60345. name: "Necklace",
  60346. image: {
  60347. source: "./media/characters/nima/necklace.svg"
  60348. }
  60349. },
  60350. bracelet: {
  60351. height: math.unit(0.51, "feet"),
  60352. name: "Bracelet",
  60353. image: {
  60354. source: "./media/characters/nima/bracelet.svg"
  60355. }
  60356. },
  60357. armband: {
  60358. height: math.unit(1.3, "feet"),
  60359. name: "Armband",
  60360. image: {
  60361. source: "./media/characters/nima/armband.svg"
  60362. }
  60363. },
  60364. },
  60365. [
  60366. {
  60367. name: "Incognito",
  60368. height: math.unit(2.1, "meters"),
  60369. allForms: true
  60370. },
  60371. {
  60372. name: "Small Macro",
  60373. height: math.unit(50, "meters"),
  60374. allForms: true
  60375. },
  60376. {
  60377. name: "Macro",
  60378. height: math.unit(200, "meters"),
  60379. allForms: true
  60380. },
  60381. {
  60382. name: "Mega",
  60383. height: math.unit(2.5, "km"),
  60384. allForms: true
  60385. },
  60386. {
  60387. name: "Mega+",
  60388. height: math.unit(30, "km"),
  60389. allForms: true
  60390. },
  60391. {
  60392. name: "Giga (Home Size)",
  60393. height: math.unit(400, "km"),
  60394. allForms: true,
  60395. default: true
  60396. },
  60397. {
  60398. name: "Giga+",
  60399. height: math.unit(2500, "km"),
  60400. allForms: true
  60401. },
  60402. {
  60403. name: "Giga++",
  60404. height: math.unit(8000, "km"),
  60405. allForms: true
  60406. },
  60407. {
  60408. name: "Terra",
  60409. height: math.unit(20000, "km"),
  60410. allForms: true
  60411. },
  60412. {
  60413. name: "Terra+",
  60414. height: math.unit(70000, "km"),
  60415. allForms: true
  60416. },
  60417. {
  60418. name: "Terra++",
  60419. height: math.unit(600000, "km"),
  60420. allForms: true
  60421. },
  60422. {
  60423. name: "Galactic",
  60424. height: math.unit(40, "galaxies"),
  60425. allForms: true
  60426. },
  60427. {
  60428. name: "Universal",
  60429. height: math.unit(40, "universes"),
  60430. allForms: true
  60431. },
  60432. ],
  60433. {
  60434. "hyena": {
  60435. name: "Hyena",
  60436. default: true
  60437. },
  60438. "shark": {
  60439. name: "Shark",
  60440. },
  60441. }
  60442. ))
  60443. characterMakers.push(() => makeCharacter(
  60444. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60445. {
  60446. anthro_front: {
  60447. height: math.unit(1.5, "meters"),
  60448. name: "Front",
  60449. image: {
  60450. source: "./media/characters/adelaide/anthro-front.svg",
  60451. extra: 860/783,
  60452. bottom: 60/920
  60453. },
  60454. form: "anthro",
  60455. default: true
  60456. },
  60457. hand: {
  60458. height: math.unit(0.65, "feet"),
  60459. name: "Hand",
  60460. image: {
  60461. source: "./media/characters/adelaide/hand.svg"
  60462. },
  60463. form: "anthro"
  60464. },
  60465. foot: {
  60466. height: math.unit(1.38 * 259 / 314, "feet"),
  60467. name: "Foot",
  60468. image: {
  60469. source: "./media/characters/adelaide/foot.svg",
  60470. extra: 259/259,
  60471. bottom: 55/314
  60472. },
  60473. form: "anthro"
  60474. },
  60475. feather: {
  60476. height: math.unit(0.85, "feet"),
  60477. name: "Feather",
  60478. image: {
  60479. source: "./media/characters/adelaide/feather.svg"
  60480. },
  60481. form: "anthro"
  60482. },
  60483. feral_side: {
  60484. height: math.unit(1, "meters"),
  60485. name: "Side",
  60486. image: {
  60487. source: "./media/characters/adelaide/feral-side.svg",
  60488. extra: 550/467,
  60489. bottom: 37/587
  60490. },
  60491. form: "feral",
  60492. default: true
  60493. },
  60494. feral_hand: {
  60495. height: math.unit(0.58, "feet"),
  60496. name: "Hand",
  60497. image: {
  60498. source: "./media/characters/adelaide/hand.svg"
  60499. },
  60500. form: "feral"
  60501. },
  60502. feral_foot: {
  60503. height: math.unit(1.2 * 259 / 314, "feet"),
  60504. name: "Foot",
  60505. image: {
  60506. source: "./media/characters/adelaide/foot.svg",
  60507. extra: 259/259,
  60508. bottom: 55/314
  60509. },
  60510. form: "feral"
  60511. },
  60512. feral_feather: {
  60513. height: math.unit(0.63, "feet"),
  60514. name: "Feather",
  60515. image: {
  60516. source: "./media/characters/adelaide/feather.svg"
  60517. },
  60518. form: "feral"
  60519. },
  60520. },
  60521. [
  60522. {
  60523. name: "Normal",
  60524. height: math.unit(1.5, "meters"),
  60525. form: "anthro",
  60526. default: true
  60527. },
  60528. {
  60529. name: "Normal",
  60530. height: math.unit(1, "meters"),
  60531. form: "feral",
  60532. default: true
  60533. },
  60534. ],
  60535. {
  60536. "anthro": {
  60537. name: "Anthro",
  60538. default: true
  60539. },
  60540. "feral": {
  60541. name: "Feral",
  60542. },
  60543. }
  60544. ))
  60545. characterMakers.push(() => makeCharacter(
  60546. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60547. {
  60548. front: {
  60549. height: math.unit(2.5, "meters"),
  60550. name: "Front",
  60551. image: {
  60552. source: "./media/characters/goa/front.svg",
  60553. extra: 1109/1013,
  60554. bottom: 150/1259
  60555. }
  60556. },
  60557. },
  60558. [
  60559. {
  60560. name: "Normal",
  60561. height: math.unit(2.5, "meters"),
  60562. default: true
  60563. },
  60564. ]
  60565. ))
  60566. characterMakers.push(() => makeCharacter(
  60567. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60568. {
  60569. front: {
  60570. height: math.unit(2, "meters"),
  60571. weight: math.unit(100, "kg"),
  60572. name: "Front",
  60573. image: {
  60574. source: "./media/characters/kiki-weavile/front.svg",
  60575. extra: 357/332,
  60576. bottom: 60/417
  60577. }
  60578. },
  60579. },
  60580. [
  60581. {
  60582. name: "Normal",
  60583. height: math.unit(2, "meters"),
  60584. default: true
  60585. },
  60586. ]
  60587. ))
  60588. characterMakers.push(() => makeCharacter(
  60589. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60590. {
  60591. side: {
  60592. height: math.unit(1.6, "meters"),
  60593. name: "Side",
  60594. image: {
  60595. source: "./media/characters/liza/side.svg",
  60596. extra: 943/915,
  60597. bottom: 72/1015
  60598. }
  60599. },
  60600. },
  60601. [
  60602. {
  60603. name: "Normal",
  60604. height: math.unit(1.6, "meters"),
  60605. default: true
  60606. },
  60607. ]
  60608. ))
  60609. characterMakers.push(() => makeCharacter(
  60610. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60611. {
  60612. side: {
  60613. height: math.unit(2.5, "meters"),
  60614. preyCapacity: math.unit(1, "people"),
  60615. name: "Side",
  60616. image: {
  60617. source: "./media/characters/persephone-sweetbreath/side.svg",
  60618. extra: 796/700,
  60619. bottom: 44/840
  60620. }
  60621. },
  60622. sideVore: {
  60623. height: math.unit(2.5, "meters"),
  60624. preyCapacity: math.unit(1, "people"),
  60625. name: "Side (Full)",
  60626. image: {
  60627. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60628. extra: 796/700,
  60629. bottom: 44/840
  60630. }
  60631. },
  60632. },
  60633. [
  60634. {
  60635. name: "Normal",
  60636. height: math.unit(2.5, "meters"),
  60637. default: true
  60638. },
  60639. ]
  60640. ))
  60641. characterMakers.push(() => makeCharacter(
  60642. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60643. {
  60644. front: {
  60645. height: math.unit(32, "meters"),
  60646. name: "Front",
  60647. image: {
  60648. source: "./media/characters/pierce/front.svg",
  60649. extra: 1695/1475,
  60650. bottom: 185/1880
  60651. }
  60652. },
  60653. side: {
  60654. height: math.unit(32, "meters"),
  60655. name: "Side",
  60656. image: {
  60657. source: "./media/characters/pierce/side.svg",
  60658. extra: 974/859,
  60659. bottom: 43/1017
  60660. }
  60661. },
  60662. frontWingless: {
  60663. height: math.unit(32, "meters"),
  60664. name: "Front (Wingless)",
  60665. image: {
  60666. source: "./media/characters/pierce/front-wingless.svg",
  60667. extra: 1695/1475,
  60668. bottom: 185/1880
  60669. }
  60670. },
  60671. sideWingless: {
  60672. height: math.unit(32, "meters"),
  60673. name: "Side (Wingless)",
  60674. image: {
  60675. source: "./media/characters/pierce/side-wingless.svg",
  60676. extra: 974/859,
  60677. bottom: 43/1017
  60678. }
  60679. },
  60680. maw: {
  60681. height: math.unit(19.3, "meters"),
  60682. name: "Maw",
  60683. image: {
  60684. source: "./media/characters/pierce/maw.svg"
  60685. }
  60686. },
  60687. },
  60688. [
  60689. {
  60690. name: "Small",
  60691. height: math.unit(8.5, "meters")
  60692. },
  60693. {
  60694. name: "Normal",
  60695. height: math.unit(32, "meters"),
  60696. default: true
  60697. },
  60698. ]
  60699. ))
  60700. characterMakers.push(() => makeCharacter(
  60701. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60702. {
  60703. front: {
  60704. height: math.unit(2.3, "meters"),
  60705. weight: math.unit(165, "kg"),
  60706. name: "Front",
  60707. image: {
  60708. source: "./media/characters/shira/front.svg",
  60709. extra: 924/919,
  60710. bottom: 17/941
  60711. },
  60712. form: "cobra",
  60713. default: true
  60714. },
  60715. back: {
  60716. height: math.unit(2.3, "meters"),
  60717. weight: math.unit(165, "kg"),
  60718. name: "Back",
  60719. image: {
  60720. source: "./media/characters/shira/back.svg",
  60721. extra: 928/922,
  60722. bottom: 18/946
  60723. },
  60724. form: "cobra"
  60725. },
  60726. frontLewd: {
  60727. height: math.unit(2.3, "meters"),
  60728. weight: math.unit(165, "kg"),
  60729. name: "Front (Lewd)",
  60730. image: {
  60731. source: "./media/characters/shira/front-lewd.svg",
  60732. extra: 924/919,
  60733. bottom: 17/941
  60734. },
  60735. form: "cobra"
  60736. },
  60737. backLewd: {
  60738. height: math.unit(2.3, "meters"),
  60739. weight: math.unit(165, "kg"),
  60740. name: "Back (Lewd)",
  60741. image: {
  60742. source: "./media/characters/shira/back-lewd.svg",
  60743. extra: 928/922,
  60744. bottom: 18/946
  60745. },
  60746. form: "cobra"
  60747. },
  60748. maw: {
  60749. height: math.unit(1.14, "feet"),
  60750. name: "Maw",
  60751. image: {
  60752. source: "./media/characters/shira/maw.svg"
  60753. },
  60754. form: "cobra"
  60755. },
  60756. magma_front: {
  60757. height: math.unit(2.3, "meters"),
  60758. weight: math.unit(165, "kg"),
  60759. name: "Front",
  60760. image: {
  60761. source: "./media/characters/shira/magma-front.svg",
  60762. extra: 1870/1693,
  60763. bottom: 24/1894
  60764. },
  60765. form: "magma",
  60766. },
  60767. magma_back: {
  60768. height: math.unit(2.3, "meters"),
  60769. weight: math.unit(165, "kg"),
  60770. name: "Back",
  60771. image: {
  60772. source: "./media/characters/shira/magma-back.svg",
  60773. extra: 1918/1756,
  60774. bottom: 46/1964
  60775. },
  60776. form: "magma",
  60777. },
  60778. },
  60779. [
  60780. {
  60781. name: "Incognito",
  60782. height: math.unit(2.3, "meters"),
  60783. allForms: true
  60784. },
  60785. {
  60786. name: "Home Size",
  60787. height: math.unit(150, "meters"),
  60788. default: true,
  60789. allForms: true
  60790. },
  60791. {
  60792. name: "Macro",
  60793. height: math.unit(2, "km"),
  60794. allForms: true
  60795. },
  60796. {
  60797. name: "Mega",
  60798. height: math.unit(30, "km"),
  60799. allForms: true
  60800. },
  60801. {
  60802. name: "Giga",
  60803. height: math.unit(450, "km"),
  60804. allForms: true
  60805. },
  60806. {
  60807. name: "Giga+",
  60808. height: math.unit(3000, "km"),
  60809. allForms: true
  60810. },
  60811. {
  60812. name: "Giga++",
  60813. height: math.unit(6000, "km"),
  60814. allForms: true
  60815. },
  60816. {
  60817. name: "Terra",
  60818. height: math.unit(80000, "km"),
  60819. allForms: true
  60820. },
  60821. {
  60822. name: "Terra+",
  60823. height: math.unit(350000, "km"),
  60824. allForms: true
  60825. },
  60826. {
  60827. name: "Solar",
  60828. height: math.unit(1e6, "km"),
  60829. allForms: true
  60830. },
  60831. ],
  60832. {
  60833. "cobra": {
  60834. name: "Cobra",
  60835. default: true
  60836. },
  60837. "magma": {
  60838. name: "Magma Dragon",
  60839. },
  60840. }
  60841. ))
  60842. characterMakers.push(() => makeCharacter(
  60843. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60844. {
  60845. front: {
  60846. height: math.unit(2, "meters"),
  60847. weight: math.unit(160, "kg"),
  60848. name: "Front",
  60849. image: {
  60850. source: "./media/characters/daxerios/front.svg",
  60851. extra: 1334/1277,
  60852. bottom: 45/1379
  60853. }
  60854. },
  60855. frontLewd: {
  60856. height: math.unit(2, "meters"),
  60857. weight: math.unit(160, "kg"),
  60858. name: "Front (Lewd)",
  60859. image: {
  60860. source: "./media/characters/daxerios/front-lewd.svg",
  60861. extra: 1334/1277,
  60862. bottom: 45/1379
  60863. }
  60864. },
  60865. dick: {
  60866. height: math.unit(2.35, "feet"),
  60867. name: "Dick",
  60868. image: {
  60869. source: "./media/characters/daxerios/dick.svg"
  60870. }
  60871. },
  60872. },
  60873. [
  60874. {
  60875. name: "\"Small\"",
  60876. height: math.unit(5, "meters")
  60877. },
  60878. {
  60879. name: "Original Size",
  60880. height: math.unit(500, "meters"),
  60881. default: true
  60882. },
  60883. {
  60884. name: "Mega",
  60885. height: math.unit(2, "km")
  60886. },
  60887. {
  60888. name: "Mega+",
  60889. height: math.unit(35, "km")
  60890. },
  60891. {
  60892. name: "Giga",
  60893. height: math.unit(250, "km")
  60894. },
  60895. {
  60896. name: "Giga+",
  60897. height: math.unit(3000, "km")
  60898. },
  60899. {
  60900. name: "Terra",
  60901. height: math.unit(25000, "km")
  60902. },
  60903. {
  60904. name: "Terra+",
  60905. height: math.unit(300000, "km")
  60906. },
  60907. {
  60908. name: "Solar",
  60909. height: math.unit(1e6, "km")
  60910. },
  60911. ]
  60912. ))
  60913. characterMakers.push(() => makeCharacter(
  60914. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60915. {
  60916. front: {
  60917. height: math.unit(8 + 4/12, "feet"),
  60918. weight: math.unit(464, "lb"),
  60919. name: "Front",
  60920. image: {
  60921. source: "./media/characters/caveat/front.svg",
  60922. extra: 1861/1678,
  60923. bottom: 40/1901
  60924. }
  60925. },
  60926. },
  60927. [
  60928. {
  60929. name: "Normal",
  60930. height: math.unit(8 + 4/12, "feet"),
  60931. default: true
  60932. },
  60933. ]
  60934. ))
  60935. characterMakers.push(() => makeCharacter(
  60936. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60937. {
  60938. front: {
  60939. height: math.unit(12, "feet"),
  60940. weight: math.unit(1800, "lb"),
  60941. name: "Front",
  60942. image: {
  60943. source: "./media/characters/centbair/front.svg",
  60944. extra: 781/663,
  60945. bottom: 25/806
  60946. }
  60947. },
  60948. frontNsfw: {
  60949. height: math.unit(12, "feet"),
  60950. weight: math.unit(1800, "lb"),
  60951. name: "Front (NSFW)",
  60952. image: {
  60953. source: "./media/characters/centbair/front-nsfw.svg",
  60954. extra: 781/663,
  60955. bottom: 25/806
  60956. }
  60957. },
  60958. back: {
  60959. height: math.unit(12, "feet"),
  60960. weight: math.unit(1800, "lb"),
  60961. name: "Back",
  60962. image: {
  60963. source: "./media/characters/centbair/back.svg",
  60964. extra: 808/761,
  60965. bottom: 19/827
  60966. }
  60967. },
  60968. dick: {
  60969. height: math.unit(6.5, "feet"),
  60970. name: "Dick",
  60971. image: {
  60972. source: "./media/characters/centbair/dick.svg"
  60973. }
  60974. },
  60975. slit: {
  60976. height: math.unit(3.25, "feet"),
  60977. name: "Slit",
  60978. image: {
  60979. source: "./media/characters/centbair/slit.svg"
  60980. }
  60981. },
  60982. },
  60983. [
  60984. {
  60985. name: "Normal",
  60986. height: math.unit(12, "feet"),
  60987. default: true
  60988. },
  60989. ]
  60990. ))
  60991. characterMakers.push(() => makeCharacter(
  60992. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60993. {
  60994. front: {
  60995. height: math.unit(5 + 7/12, "feet"),
  60996. name: "Front",
  60997. image: {
  60998. source: "./media/characters/andy/front.svg",
  60999. extra: 634/588,
  61000. bottom: 36/670
  61001. },
  61002. extraAttributes: {
  61003. "pawLength": {
  61004. name: "Paw Length",
  61005. power: 1,
  61006. type: "length",
  61007. base: math.unit(1, "feet")
  61008. },
  61009. }
  61010. },
  61011. side: {
  61012. height: math.unit(5 + 7/12, "feet"),
  61013. name: "Side",
  61014. image: {
  61015. source: "./media/characters/andy/side.svg",
  61016. extra: 641/596,
  61017. bottom: 34/675
  61018. },
  61019. extraAttributes: {
  61020. "pawLength": {
  61021. name: "Paw Length",
  61022. power: 1,
  61023. type: "length",
  61024. base: math.unit(1, "feet")
  61025. },
  61026. }
  61027. },
  61028. back: {
  61029. height: math.unit(5 + 7/12, "feet"),
  61030. name: "Back",
  61031. image: {
  61032. source: "./media/characters/andy/back.svg",
  61033. extra: 618/583,
  61034. bottom: 39/657
  61035. },
  61036. extraAttributes: {
  61037. "pawLength": {
  61038. name: "Paw Length",
  61039. power: 1,
  61040. type: "length",
  61041. base: math.unit(1, "feet")
  61042. },
  61043. }
  61044. },
  61045. paw: {
  61046. height: math.unit(1.13, "feet"),
  61047. name: "Paw",
  61048. image: {
  61049. source: "./media/characters/andy/paw.svg"
  61050. }
  61051. },
  61052. },
  61053. [
  61054. {
  61055. name: "Micro",
  61056. height: math.unit(4, "inches")
  61057. },
  61058. {
  61059. name: "Normal",
  61060. height: math.unit(5 + 7/12, "feet"),
  61061. default: true
  61062. },
  61063. {
  61064. name: "Macro",
  61065. height: math.unit(390.42, "feet")
  61066. },
  61067. ]
  61068. ))
  61069. characterMakers.push(() => makeCharacter(
  61070. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61071. {
  61072. front: {
  61073. height: math.unit(7, "feet"),
  61074. weight: math.unit(250, "lb"),
  61075. name: "Front",
  61076. image: {
  61077. source: "./media/characters/vix-titan/front.svg",
  61078. extra: 460/428,
  61079. bottom: 15/475
  61080. },
  61081. extraAttributes: {
  61082. "pawWidth": {
  61083. name: "Paw Width",
  61084. power: 1,
  61085. type: "length",
  61086. base: math.unit(0.75, "feet")
  61087. },
  61088. }
  61089. },
  61090. },
  61091. [
  61092. {
  61093. name: "Normal",
  61094. height: math.unit(7, "feet"),
  61095. default: true
  61096. },
  61097. {
  61098. name: "Giant",
  61099. height: math.unit(1500, "feet")
  61100. },
  61101. {
  61102. name: "Mega",
  61103. height: math.unit(10, "miles")
  61104. },
  61105. {
  61106. name: "Giga",
  61107. height: math.unit(150, "miles")
  61108. },
  61109. {
  61110. name: "Tera",
  61111. height: math.unit(144000, "miles")
  61112. },
  61113. ]
  61114. ))
  61115. characterMakers.push(() => makeCharacter(
  61116. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61117. {
  61118. front: {
  61119. height: math.unit(6 + 2/12, "feet"),
  61120. name: "Front",
  61121. image: {
  61122. source: "./media/characters/reiku/front.svg",
  61123. extra: 1910/1757,
  61124. bottom: 103/2013
  61125. },
  61126. extraAttributes: {
  61127. "thighThickness": {
  61128. name: "Thigh Thickness",
  61129. power: 1,
  61130. type: "length",
  61131. base: math.unit(1.12, "feet")
  61132. },
  61133. "assThickness": {
  61134. name: "Ass Thickness",
  61135. power: 1,
  61136. type: "length",
  61137. base: math.unit(1.12*2, "feet")
  61138. },
  61139. }
  61140. },
  61141. side: {
  61142. height: math.unit(6 + 2/12, "feet"),
  61143. name: "Side",
  61144. image: {
  61145. source: "./media/characters/reiku/side.svg",
  61146. extra: 1846/1748,
  61147. bottom: 99/1945
  61148. },
  61149. extraAttributes: {
  61150. "thighThickness": {
  61151. name: "Thigh Thickness",
  61152. power: 1,
  61153. type: "length",
  61154. base: math.unit(1.12, "feet")
  61155. },
  61156. "assThickness": {
  61157. name: "Ass Thickness",
  61158. power: 1,
  61159. type: "length",
  61160. base: math.unit(1.12*2, "feet")
  61161. },
  61162. }
  61163. },
  61164. back: {
  61165. height: math.unit(6 + 2/12, "feet"),
  61166. name: "Back",
  61167. image: {
  61168. source: "./media/characters/reiku/back.svg",
  61169. extra: 1941/1786,
  61170. bottom: 34/1975
  61171. },
  61172. extraAttributes: {
  61173. "thighThickness": {
  61174. name: "Thigh Thickness",
  61175. power: 1,
  61176. type: "length",
  61177. base: math.unit(1.12, "feet")
  61178. },
  61179. "assThickness": {
  61180. name: "Ass Thickness",
  61181. power: 1,
  61182. type: "length",
  61183. base: math.unit(1.12*2, "feet")
  61184. },
  61185. }
  61186. },
  61187. head: {
  61188. height: math.unit(1.8, "feet"),
  61189. name: "Head",
  61190. image: {
  61191. source: "./media/characters/reiku/head.svg"
  61192. }
  61193. },
  61194. tailTop: {
  61195. height: math.unit(8.4, "feet"),
  61196. name: "Tail (Top)",
  61197. image: {
  61198. source: "./media/characters/reiku/tail-top.svg"
  61199. }
  61200. },
  61201. tailBottom: {
  61202. height: math.unit(8.4, "feet"),
  61203. name: "Tail (Bottom)",
  61204. image: {
  61205. source: "./media/characters/reiku/tail-bottom.svg"
  61206. }
  61207. },
  61208. foot: {
  61209. height: math.unit(2.6, "feet"),
  61210. name: "Foot",
  61211. image: {
  61212. source: "./media/characters/reiku/foot.svg"
  61213. }
  61214. },
  61215. footCurled: {
  61216. height: math.unit(2.3, "feet"),
  61217. name: "Foot (Curled)",
  61218. image: {
  61219. source: "./media/characters/reiku/foot-curled.svg"
  61220. }
  61221. },
  61222. footSide: {
  61223. height: math.unit(1.26, "feet"),
  61224. name: "Foot (Side)",
  61225. image: {
  61226. source: "./media/characters/reiku/foot-side.svg"
  61227. }
  61228. },
  61229. },
  61230. [
  61231. {
  61232. name: "Normal",
  61233. height: math.unit(6 + 2/12, "feet"),
  61234. default: true
  61235. },
  61236. ]
  61237. ))
  61238. characterMakers.push(() => makeCharacter(
  61239. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61240. {
  61241. front: {
  61242. height: math.unit(7, "feet"),
  61243. weight: math.unit(500, "kg"),
  61244. name: "Front",
  61245. image: {
  61246. source: "./media/characters/cialda/front.svg",
  61247. extra: 912/745,
  61248. bottom: 55/967
  61249. }
  61250. },
  61251. },
  61252. [
  61253. {
  61254. name: "Normal",
  61255. height: math.unit(7, "feet"),
  61256. default: true
  61257. },
  61258. ]
  61259. ))
  61260. characterMakers.push(() => makeCharacter(
  61261. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61262. {
  61263. side: {
  61264. height: math.unit(6, "feet"),
  61265. weight: math.unit(600, "lb"),
  61266. preyCapacity: math.unit(25, "liters"),
  61267. name: "Side",
  61268. image: {
  61269. source: "./media/characters/darkkin/side.svg",
  61270. extra: 1597/1447,
  61271. bottom: 101/1698
  61272. }
  61273. },
  61274. },
  61275. [
  61276. {
  61277. name: "Canon Height",
  61278. height: math.unit(568, "feet"),
  61279. default: true
  61280. },
  61281. ]
  61282. ))
  61283. characterMakers.push(() => makeCharacter(
  61284. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61285. {
  61286. front: {
  61287. height: math.unit(6, "feet"),
  61288. weight: math.unit(1500, "lb"),
  61289. preyCapacity: math.unit(3, "people"),
  61290. name: "Front",
  61291. image: {
  61292. source: "./media/characters/livnia/front.svg",
  61293. extra: 934/932,
  61294. bottom: 83/1017
  61295. }
  61296. },
  61297. back: {
  61298. height: math.unit(6, "feet"),
  61299. weight: math.unit(1500, "lb"),
  61300. preyCapacity: math.unit(3, "people"),
  61301. name: "Back",
  61302. image: {
  61303. source: "./media/characters/livnia/back.svg",
  61304. extra: 916/915,
  61305. bottom: 58/974
  61306. }
  61307. },
  61308. head: {
  61309. height: math.unit(1.53, "feet"),
  61310. name: "Head",
  61311. image: {
  61312. source: "./media/characters/livnia/head.svg"
  61313. }
  61314. },
  61315. maw: {
  61316. height: math.unit(0.78, "feet"),
  61317. name: "Maw",
  61318. image: {
  61319. source: "./media/characters/livnia/maw.svg"
  61320. }
  61321. },
  61322. genitals: {
  61323. height: math.unit(0.35, "feet"),
  61324. name: "Genitals",
  61325. image: {
  61326. source: "./media/characters/livnia/genitals.svg"
  61327. }
  61328. },
  61329. },
  61330. [
  61331. {
  61332. name: "Normal",
  61333. height: math.unit(1000, "feet"),
  61334. default: true
  61335. },
  61336. ]
  61337. ))
  61338. characterMakers.push(() => makeCharacter(
  61339. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61340. {
  61341. front: {
  61342. height: math.unit(4, "feet"),
  61343. weight: math.unit(73, "lb"),
  61344. name: "Front",
  61345. image: {
  61346. source: "./media/characters/hayaku/front.svg",
  61347. extra: 1011/888,
  61348. bottom: 33/1044
  61349. }
  61350. },
  61351. back: {
  61352. height: math.unit(4, "feet"),
  61353. weight: math.unit(73, "lb"),
  61354. name: "Back",
  61355. image: {
  61356. source: "./media/characters/hayaku/back.svg",
  61357. extra: 1040/930,
  61358. bottom: 20/1060
  61359. }
  61360. },
  61361. },
  61362. [
  61363. {
  61364. name: "Normal",
  61365. height: math.unit(4, "feet"),
  61366. default: true
  61367. },
  61368. ]
  61369. ))
  61370. characterMakers.push(() => makeCharacter(
  61371. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61372. {
  61373. front: {
  61374. height: math.unit(6 + 7/12, "feet"),
  61375. weight: math.unit(300, "lb"),
  61376. name: "Front",
  61377. image: {
  61378. source: "./media/characters/athena-bryzant/front.svg",
  61379. extra: 870/835,
  61380. bottom: 33/903
  61381. }
  61382. },
  61383. back: {
  61384. height: math.unit(6 + 7/12, "feet"),
  61385. weight: math.unit(300, "lb"),
  61386. name: "Back",
  61387. image: {
  61388. source: "./media/characters/athena-bryzant/back.svg",
  61389. extra: 858/823,
  61390. bottom: 30/888
  61391. }
  61392. },
  61393. head: {
  61394. height: math.unit(2.38, "feet"),
  61395. name: "Head",
  61396. image: {
  61397. source: "./media/characters/athena-bryzant/head.svg"
  61398. }
  61399. },
  61400. wings: {
  61401. height: math.unit(2.85, "feet"),
  61402. name: "Wings",
  61403. image: {
  61404. source: "./media/characters/athena-bryzant/wings.svg"
  61405. }
  61406. },
  61407. },
  61408. [
  61409. {
  61410. name: "Normal",
  61411. height: math.unit(6 + 7/12, "feet"),
  61412. default: true
  61413. },
  61414. {
  61415. name: "Big",
  61416. height: math.unit(8, "feet")
  61417. },
  61418. {
  61419. name: "Very Big",
  61420. height: math.unit(11, "feet")
  61421. },
  61422. ]
  61423. ))
  61424. characterMakers.push(() => makeCharacter(
  61425. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61426. {
  61427. side: {
  61428. height: math.unit(3, "meters"),
  61429. weight: math.unit(7500, "kg"),
  61430. preyCapacity: math.unit(1e12, "people"),
  61431. name: "Side",
  61432. image: {
  61433. source: "./media/characters/zel-kesh/side.svg",
  61434. extra: 910/407,
  61435. bottom: 147/1057
  61436. }
  61437. },
  61438. },
  61439. [
  61440. {
  61441. name: "Normal",
  61442. height: math.unit(3, "meters"),
  61443. default: true
  61444. },
  61445. ]
  61446. ))
  61447. characterMakers.push(() => makeCharacter(
  61448. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61449. {
  61450. front: {
  61451. height: math.unit(2, "meters"),
  61452. weight: math.unit(95, "kg"),
  61453. name: "Front",
  61454. image: {
  61455. source: "./media/characters/kane-fox/front.svg",
  61456. extra: 945/888,
  61457. bottom: 27/972
  61458. }
  61459. },
  61460. back: {
  61461. height: math.unit(2, "meters"),
  61462. weight: math.unit(95, "kg"),
  61463. name: "Back",
  61464. image: {
  61465. source: "./media/characters/kane-fox/back.svg",
  61466. extra: 959/914,
  61467. bottom: 15/974
  61468. }
  61469. },
  61470. frontLewd: {
  61471. height: math.unit(2, "meters"),
  61472. weight: math.unit(95, "kg"),
  61473. name: "Front (Lewd)",
  61474. image: {
  61475. source: "./media/characters/kane-fox/front-lewd.svg",
  61476. extra: 945/888,
  61477. bottom: 27/972
  61478. }
  61479. },
  61480. },
  61481. [
  61482. {
  61483. name: "Home Size",
  61484. height: math.unit(2, "meters"),
  61485. default: true
  61486. },
  61487. {
  61488. name: "Macro",
  61489. height: math.unit(200, "meters")
  61490. },
  61491. {
  61492. name: "Small Mega",
  61493. height: math.unit(3, "km")
  61494. },
  61495. {
  61496. name: "Mega",
  61497. height: math.unit(50, "km")
  61498. },
  61499. {
  61500. name: "Giga",
  61501. height: math.unit(200, "km")
  61502. },
  61503. {
  61504. name: "Giga+",
  61505. height: math.unit(2500, "km")
  61506. },
  61507. {
  61508. name: "Terra",
  61509. height: math.unit(70000, "km")
  61510. },
  61511. {
  61512. name: "Terra+",
  61513. height: math.unit(150000, "km")
  61514. },
  61515. {
  61516. name: "Terra++",
  61517. height: math.unit(400000, "km")
  61518. },
  61519. ]
  61520. ))
  61521. characterMakers.push(() => makeCharacter(
  61522. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61523. {
  61524. otter_front: {
  61525. height: math.unit(1.8, "meters"),
  61526. weight: math.unit(90, "kg"),
  61527. name: "Front",
  61528. image: {
  61529. source: "./media/characters/ayranus/otter-front.svg",
  61530. extra: 468/452,
  61531. bottom: 43/511
  61532. },
  61533. form: "otter",
  61534. },
  61535. otter_frontLewd: {
  61536. height: math.unit(1.8, "meters"),
  61537. weight: math.unit(90, "kg"),
  61538. name: "Front (Lewd)",
  61539. image: {
  61540. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61541. extra: 468/452,
  61542. bottom: 43/511
  61543. },
  61544. form: "otter",
  61545. },
  61546. lionbat_front: {
  61547. height: math.unit(1.8, "meters"),
  61548. weight: math.unit(90, "kg"),
  61549. name: "Front (Lewd)",
  61550. image: {
  61551. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61552. extra: 797/740,
  61553. bottom: 78/875
  61554. },
  61555. form: "lionbat",
  61556. },
  61557. paw: {
  61558. height: math.unit(1.5, "feet"),
  61559. name: "Paw",
  61560. image: {
  61561. source: "./media/characters/ayranus/paw.svg"
  61562. },
  61563. },
  61564. },
  61565. [
  61566. {
  61567. name: "Incognito",
  61568. height: math.unit(1.8, "meters"),
  61569. allForms: true
  61570. },
  61571. {
  61572. name: "Macro",
  61573. height: math.unit(60, "meters"),
  61574. allForms: true
  61575. },
  61576. {
  61577. name: "Macro+",
  61578. height: math.unit(200, "meters"),
  61579. allForms: true
  61580. },
  61581. {
  61582. name: "Mega",
  61583. height: math.unit(35, "km"),
  61584. allForms: true
  61585. },
  61586. {
  61587. name: "Giga",
  61588. height: math.unit(220, "km"),
  61589. allForms: true
  61590. },
  61591. {
  61592. name: "Giga+",
  61593. height: math.unit(1500, "km"),
  61594. allForms: true
  61595. },
  61596. {
  61597. name: "Terra",
  61598. height: math.unit(13000, "km"),
  61599. allForms: true
  61600. },
  61601. {
  61602. name: "Terra+",
  61603. height: math.unit(500000, "km"),
  61604. allForms: true
  61605. },
  61606. {
  61607. name: "Galactic",
  61608. height: math.unit(486080, "parsecs"),
  61609. default: true,
  61610. allForms: true
  61611. },
  61612. ],
  61613. {
  61614. "otter": {
  61615. name: "Otter",
  61616. default: true
  61617. },
  61618. "lionbat": {
  61619. name: "Lionbat",
  61620. },
  61621. }
  61622. ))
  61623. characterMakers.push(() => makeCharacter(
  61624. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61625. {
  61626. front: {
  61627. height: math.unit(7 + 4/12, "feet"),
  61628. weight: math.unit(400, "lb"),
  61629. name: "Front",
  61630. image: {
  61631. source: "./media/characters/proxy/front.svg",
  61632. extra: 1605/1542,
  61633. bottom: 55/1660
  61634. }
  61635. },
  61636. side: {
  61637. height: math.unit(7 + 4/12, "feet"),
  61638. weight: math.unit(400, "lb"),
  61639. name: "Side",
  61640. image: {
  61641. source: "./media/characters/proxy/side.svg",
  61642. extra: 794/759,
  61643. bottom: 6/800
  61644. }
  61645. },
  61646. hand: {
  61647. height: math.unit(1.54, "feet"),
  61648. name: "Hand",
  61649. image: {
  61650. source: "./media/characters/proxy/hand.svg"
  61651. }
  61652. },
  61653. paw: {
  61654. height: math.unit(1.53, "feet"),
  61655. name: "Paw",
  61656. image: {
  61657. source: "./media/characters/proxy/paw.svg"
  61658. }
  61659. },
  61660. maw: {
  61661. height: math.unit(1.9, "feet"),
  61662. name: "Maw",
  61663. image: {
  61664. source: "./media/characters/proxy/maw.svg"
  61665. }
  61666. },
  61667. },
  61668. [
  61669. {
  61670. name: "Normal",
  61671. height: math.unit(7 + 4/12, "feet"),
  61672. default: true
  61673. },
  61674. ]
  61675. ))
  61676. characterMakers.push(() => makeCharacter(
  61677. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61678. {
  61679. front: {
  61680. height: math.unit(4, "meters"),
  61681. name: "Front",
  61682. image: {
  61683. source: "./media/characters/crocozilla/front.svg",
  61684. extra: 1790/1742,
  61685. bottom: 78/1868
  61686. }
  61687. },
  61688. },
  61689. [
  61690. {
  61691. name: "Normal",
  61692. height: math.unit(4, "meters"),
  61693. default: true
  61694. },
  61695. ]
  61696. ))
  61697. characterMakers.push(() => makeCharacter(
  61698. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61699. {
  61700. front: {
  61701. height: math.unit(1.8, "meters"),
  61702. weight: math.unit(120, "kg"),
  61703. name: "Front",
  61704. image: {
  61705. source: "./media/characters/kurz/front.svg",
  61706. extra: 1960/1824,
  61707. bottom: 41/2001
  61708. }
  61709. },
  61710. back: {
  61711. height: math.unit(1.8, "meters"),
  61712. weight: math.unit(120, "kg"),
  61713. name: "Back",
  61714. image: {
  61715. source: "./media/characters/kurz/back.svg",
  61716. extra: 1906/1787,
  61717. bottom: 60/1966
  61718. }
  61719. },
  61720. frontLewd: {
  61721. height: math.unit(1.8, "meters"),
  61722. weight: math.unit(120, "kg"),
  61723. name: "Front (Lewd)",
  61724. image: {
  61725. source: "./media/characters/kurz/front-lewd.svg",
  61726. extra: 1960/1824,
  61727. bottom: 41/2001
  61728. }
  61729. },
  61730. maw: {
  61731. height: math.unit(0.69, "meters"),
  61732. name: "Maw",
  61733. image: {
  61734. source: "./media/characters/kurz/maw.svg"
  61735. }
  61736. },
  61737. },
  61738. [
  61739. {
  61740. name: "Original Size",
  61741. height: math.unit(1.8, "meters")
  61742. },
  61743. {
  61744. name: "Incognito Size",
  61745. height: math.unit(2.4, "meters"),
  61746. default: true
  61747. },
  61748. {
  61749. name: "Macro",
  61750. height: math.unit(30, "meters")
  61751. },
  61752. {
  61753. name: "Macro+",
  61754. height: math.unit(250, "meters")
  61755. },
  61756. {
  61757. name: "Mega",
  61758. height: math.unit(2, "km")
  61759. },
  61760. {
  61761. name: "Mega+",
  61762. height: math.unit(35, "km")
  61763. },
  61764. {
  61765. name: "Mega++",
  61766. height: math.unit(75, "km")
  61767. },
  61768. {
  61769. name: "Giga",
  61770. height: math.unit(250, "km")
  61771. },
  61772. {
  61773. name: "Terra",
  61774. height: math.unit(15000, "km")
  61775. },
  61776. {
  61777. name: "Terra+",
  61778. height: math.unit(2250000, "km")
  61779. },
  61780. ]
  61781. ))
  61782. characterMakers.push(() => makeCharacter(
  61783. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61784. {
  61785. front: {
  61786. height: math.unit(16 + 3/12, "feet"),
  61787. weight: math.unit(3575, "lb"),
  61788. name: "Front",
  61789. image: {
  61790. source: "./media/characters/nikita/front.svg",
  61791. extra: 1064/955,
  61792. bottom: 47/1111
  61793. }
  61794. },
  61795. },
  61796. [
  61797. {
  61798. name: "Normal",
  61799. height: math.unit(16 + 3/12, "feet"),
  61800. default: true
  61801. },
  61802. {
  61803. name: "Big",
  61804. height: math.unit(21, "feet")
  61805. },
  61806. {
  61807. name: "Biggest",
  61808. height: math.unit(50, "feet")
  61809. },
  61810. ]
  61811. ))
  61812. characterMakers.push(() => makeCharacter(
  61813. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61814. {
  61815. front: {
  61816. height: math.unit(1.92, "m"),
  61817. weight: math.unit(76, "kg"),
  61818. name: "Front",
  61819. image: {
  61820. source: "./media/characters/kyara/front.svg",
  61821. extra: 1550/1438,
  61822. bottom: 139/1689
  61823. }
  61824. },
  61825. back: {
  61826. height: math.unit(1.92, "m"),
  61827. weight: math.unit(76, "kg"),
  61828. name: "Back",
  61829. image: {
  61830. source: "./media/characters/kyara/back.svg",
  61831. extra: 1523/1427,
  61832. bottom: 83/1606
  61833. }
  61834. },
  61835. head: {
  61836. height: math.unit(1.22, "feet"),
  61837. name: "Head",
  61838. image: {
  61839. source: "./media/characters/kyara/head.svg"
  61840. }
  61841. },
  61842. maw: {
  61843. height: math.unit(0.73, "feet"),
  61844. name: "Maw",
  61845. image: {
  61846. source: "./media/characters/kyara/maw.svg"
  61847. }
  61848. },
  61849. paws: {
  61850. height: math.unit(0.95, "feet"),
  61851. name: "Paws",
  61852. image: {
  61853. source: "./media/characters/kyara/paws.svg"
  61854. }
  61855. },
  61856. },
  61857. [
  61858. {
  61859. name: "Normal",
  61860. height: math.unit(1.92, "meters"),
  61861. default: true
  61862. },
  61863. {
  61864. name: "Mini Macro",
  61865. height: math.unit(192, "meters")
  61866. },
  61867. {
  61868. name: "Macro",
  61869. height: math.unit(480, "meters")
  61870. },
  61871. {
  61872. name: "Mega Macro",
  61873. height: math.unit(1440, "meters")
  61874. },
  61875. ]
  61876. ))
  61877. characterMakers.push(() => makeCharacter(
  61878. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61879. {
  61880. front: {
  61881. height: math.unit(6, "feet"),
  61882. weight: math.unit(160, "lbs"),
  61883. preyCapacity: math.unit(0.05, "people"),
  61884. name: "Front",
  61885. image: {
  61886. source: "./media/characters/layla-amari/front.svg",
  61887. extra: 1922/1723,
  61888. bottom: 90/2012
  61889. }
  61890. },
  61891. back: {
  61892. height: math.unit(6, "feet"),
  61893. weight: math.unit(160, "lbs"),
  61894. preyCapacity: math.unit(0.05, "people"),
  61895. name: "Back",
  61896. image: {
  61897. source: "./media/characters/layla-amari/back.svg",
  61898. extra: 1917/1718,
  61899. bottom: 50/1967
  61900. }
  61901. },
  61902. frontDressed: {
  61903. height: math.unit(6, "feet"),
  61904. weight: math.unit(160, "lbs"),
  61905. preyCapacity: math.unit(0.05, "people"),
  61906. name: "Front (Dressed)",
  61907. image: {
  61908. source: "./media/characters/layla-amari/front-dressed.svg",
  61909. extra: 1922/1723,
  61910. bottom: 90/2012
  61911. }
  61912. },
  61913. face: {
  61914. height: math.unit(0.93, "feet"),
  61915. name: "Face",
  61916. image: {
  61917. source: "./media/characters/layla-amari/face.svg"
  61918. }
  61919. },
  61920. hand: {
  61921. height: math.unit(0.66 , "feet"),
  61922. name: "Hand",
  61923. image: {
  61924. source: "./media/characters/layla-amari/hand.svg"
  61925. }
  61926. },
  61927. foot: {
  61928. height: math.unit(1, "feet"),
  61929. name: "Foot",
  61930. image: {
  61931. source: "./media/characters/layla-amari/foot.svg"
  61932. }
  61933. },
  61934. necklace: {
  61935. height: math.unit(0.32, "feet"),
  61936. name: "Necklace",
  61937. image: {
  61938. source: "./media/characters/layla-amari/necklace.svg"
  61939. }
  61940. },
  61941. nipple: {
  61942. height: math.unit(0.2, "feet"),
  61943. name: "Nipple",
  61944. image: {
  61945. source: "./media/characters/layla-amari/nipple.svg"
  61946. }
  61947. },
  61948. slit: {
  61949. height: math.unit(0.26, "feet"),
  61950. name: "Slit",
  61951. image: {
  61952. source: "./media/characters/layla-amari/slit.svg"
  61953. }
  61954. },
  61955. },
  61956. [
  61957. {
  61958. name: "Natural",
  61959. height: math.unit(825, "feet"),
  61960. default: true
  61961. },
  61962. {
  61963. name: "Enhanced",
  61964. height: math.unit(8250, "feet")
  61965. },
  61966. {
  61967. name: "Apparent Size",
  61968. height: math.unit(9.04363e+8, "meters")
  61969. },
  61970. ]
  61971. ))
  61972. characterMakers.push(() => makeCharacter(
  61973. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61974. {
  61975. front: {
  61976. height: math.unit(1.3, "meters"),
  61977. name: "Front",
  61978. image: {
  61979. source: "./media/characters/percy/front.svg",
  61980. extra: 1444/1289,
  61981. bottom: 54/1498
  61982. }
  61983. },
  61984. },
  61985. [
  61986. {
  61987. name: "Normal",
  61988. height: math.unit(1.3, "meters"),
  61989. default: true
  61990. },
  61991. ]
  61992. ))
  61993. characterMakers.push(() => makeCharacter(
  61994. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61995. {
  61996. side: {
  61997. height: math.unit(10, "meters"),
  61998. name: "Side",
  61999. image: {
  62000. source: "./media/characters/grev/side.svg",
  62001. extra: 653/266,
  62002. bottom: 77/730
  62003. }
  62004. },
  62005. head: {
  62006. height: math.unit(16.2, "m"),
  62007. name: "Head",
  62008. image: {
  62009. source: "./media/characters/grev/head.svg"
  62010. }
  62011. },
  62012. dick: {
  62013. height: math.unit(2.8135932034, "m"),
  62014. name: "Dick",
  62015. image: {
  62016. source: "./media/characters/grev/dick.svg"
  62017. }
  62018. },
  62019. },
  62020. [
  62021. {
  62022. name: "Friend-Sized",
  62023. height: math.unit(80, "cm")
  62024. },
  62025. {
  62026. name: "Normal",
  62027. height: math.unit(10, "meters"),
  62028. default: true
  62029. },
  62030. {
  62031. name: "Macro",
  62032. height: math.unit(200, "meters")
  62033. },
  62034. ]
  62035. ))
  62036. characterMakers.push(() => makeCharacter(
  62037. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62038. {
  62039. front: {
  62040. height: math.unit(19.75, "feet"),
  62041. weight: math.unit(20000, "lb"),
  62042. name: "Front",
  62043. image: {
  62044. source: "./media/characters/azuuca/front.svg",
  62045. extra: 1593/1511,
  62046. bottom: 55/1648
  62047. }
  62048. },
  62049. },
  62050. [
  62051. {
  62052. name: "Normal",
  62053. height: math.unit(19.75, "feet"),
  62054. default: true
  62055. },
  62056. ]
  62057. ))
  62058. characterMakers.push(() => makeCharacter(
  62059. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62060. {
  62061. front: {
  62062. height: math.unit(15, "feet"),
  62063. weight: math.unit(1500, "lb"),
  62064. name: "Front",
  62065. image: {
  62066. source: "./media/characters/valuria/front.svg",
  62067. extra: 1588/1486,
  62068. bottom: 31/1619
  62069. }
  62070. },
  62071. },
  62072. [
  62073. {
  62074. name: "Normal",
  62075. height: math.unit(15, "feet"),
  62076. default: true
  62077. },
  62078. {
  62079. name: "Small",
  62080. height: math.unit(500, "feet")
  62081. },
  62082. {
  62083. name: "Macro",
  62084. height: math.unit(4000, "feet")
  62085. },
  62086. {
  62087. name: "Mega Macro",
  62088. height: math.unit(2000, "miles")
  62089. },
  62090. {
  62091. name: "Giga Macro",
  62092. height: math.unit(3e6, "miles")
  62093. },
  62094. ]
  62095. ))
  62096. characterMakers.push(() => makeCharacter(
  62097. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62098. {
  62099. front: {
  62100. height: math.unit(3500, "solarradii"),
  62101. name: "Front",
  62102. image: {
  62103. source: "./media/characters/terigaia/front.svg",
  62104. extra: 1531/1451,
  62105. bottom: 98/1629
  62106. }
  62107. },
  62108. },
  62109. [
  62110. {
  62111. name: "Normal",
  62112. height: math.unit(3500, "solarradii"),
  62113. default: true
  62114. },
  62115. ]
  62116. ))
  62117. characterMakers.push(() => makeCharacter(
  62118. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62119. {
  62120. front: {
  62121. height: math.unit(9.34, "feet"),
  62122. weight: math.unit(600, "lb"),
  62123. name: "Front",
  62124. image: {
  62125. source: "./media/characters/blair-blaziken/front.svg",
  62126. extra: 1557/1462,
  62127. bottom: 55/1612
  62128. }
  62129. },
  62130. },
  62131. [
  62132. {
  62133. name: "Normal",
  62134. height: math.unit(9.34, "feet"),
  62135. default: true
  62136. },
  62137. ]
  62138. ))
  62139. characterMakers.push(() => makeCharacter(
  62140. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62141. {
  62142. pistrogre_front: {
  62143. height: math.unit(10, "feet"),
  62144. weight: math.unit(10, "tons"),
  62145. name: "Front",
  62146. image: {
  62147. source: "./media/characters/braxia/pistrogre-front.svg",
  62148. extra: 1531/1334,
  62149. bottom: 114/1645
  62150. },
  62151. form: "pistrogre",
  62152. default: true
  62153. },
  62154. human_front: {
  62155. height: math.unit(10, "feet"),
  62156. weight: math.unit(10, "tons"),
  62157. name: "Front",
  62158. image: {
  62159. source: "./media/characters/braxia/human-front.svg",
  62160. extra: 1574/1501,
  62161. bottom: 37/1611
  62162. },
  62163. form: "human",
  62164. default: true
  62165. },
  62166. },
  62167. [
  62168. {
  62169. name: "Normal",
  62170. height: math.unit(10, "feet"),
  62171. default: true,
  62172. allForms: true
  62173. },
  62174. {
  62175. name: "Macro",
  62176. height: math.unit(1000, "feet"),
  62177. allForms: true
  62178. },
  62179. {
  62180. name: "Mega Macro",
  62181. height: math.unit(100, "miles"),
  62182. allForms: true
  62183. },
  62184. {
  62185. name: "Cosmic",
  62186. height: math.unit(1000000, "lightyears"),
  62187. allForms: true
  62188. },
  62189. {
  62190. name: "ϐѮԆԬӁꭍϞԢ",
  62191. height: math.unit(1000, "multiverses"),
  62192. allForms: true
  62193. },
  62194. ],
  62195. {
  62196. "pistrogre": {
  62197. name: "Pistrogre",
  62198. default: true
  62199. },
  62200. "human": {
  62201. name: "Human",
  62202. },
  62203. }
  62204. ))
  62205. characterMakers.push(() => makeCharacter(
  62206. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62207. {
  62208. front: {
  62209. height: math.unit(6 + 1/12, "feet"),
  62210. weight: math.unit(280, "lb"),
  62211. name: "Front",
  62212. image: {
  62213. source: "./media/characters/kiriga-yato/front.svg",
  62214. extra: 445/394,
  62215. bottom: 11/456
  62216. }
  62217. },
  62218. },
  62219. [
  62220. {
  62221. name: "Descended",
  62222. height: math.unit(3, "feet")
  62223. },
  62224. {
  62225. name: "Average",
  62226. height: math.unit(6 + 1/12, "feet"),
  62227. default: true
  62228. },
  62229. {
  62230. name: "Ascended",
  62231. height: math.unit(9 + 2/12, "feet")
  62232. },
  62233. ]
  62234. ))
  62235. characterMakers.push(() => makeCharacter(
  62236. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62237. {
  62238. front: {
  62239. height: math.unit(6, "feet"),
  62240. weight: math.unit(150, "lb"),
  62241. name: "Front",
  62242. image: {
  62243. source: "./media/characters/kylie/front.svg",
  62244. extra: 1114/1046,
  62245. bottom: 65/1179
  62246. },
  62247. extraAttributes: {
  62248. "hoofSize": {
  62249. name: "Hoof Size",
  62250. power: 2,
  62251. type: "area",
  62252. base: math.unit(0.034, "m^2")
  62253. },
  62254. "footSize": {
  62255. name: "Foot Size",
  62256. power: 2,
  62257. type: "area",
  62258. base: math.unit(0.75, "m^2")
  62259. },
  62260. }
  62261. },
  62262. side: {
  62263. height: math.unit(6, "feet"),
  62264. weight: math.unit(150, "lb"),
  62265. name: "Side",
  62266. image: {
  62267. source: "./media/characters/kylie/side.svg",
  62268. extra: 1178/1110,
  62269. bottom: 21/1199
  62270. },
  62271. extraAttributes: {
  62272. "hoofSize": {
  62273. name: "Hoof Size",
  62274. power: 2,
  62275. type: "area",
  62276. base: math.unit(0.034, "m^2")
  62277. },
  62278. "footSize": {
  62279. name: "Foot Size",
  62280. power: 2,
  62281. type: "area",
  62282. base: math.unit(0.75, "m^2")
  62283. },
  62284. }
  62285. },
  62286. back: {
  62287. height: math.unit(6, "feet"),
  62288. weight: math.unit(150, "lb"),
  62289. name: "Back",
  62290. image: {
  62291. source: "./media/characters/kylie/back.svg",
  62292. extra: 1115/1047,
  62293. bottom: 66/1181
  62294. },
  62295. extraAttributes: {
  62296. "hoofSize": {
  62297. name: "Hoof Size",
  62298. power: 2,
  62299. type: "area",
  62300. base: math.unit(0.034, "m^2")
  62301. },
  62302. "footSize": {
  62303. name: "Foot Size",
  62304. power: 2,
  62305. type: "area",
  62306. base: math.unit(0.75, "m^2")
  62307. },
  62308. }
  62309. },
  62310. head: {
  62311. height: math.unit(1.85, "feet"),
  62312. name: "Head",
  62313. image: {
  62314. source: "./media/characters/kylie/head.svg"
  62315. }
  62316. },
  62317. },
  62318. [
  62319. {
  62320. name: "Normal",
  62321. height: math.unit(90, "meters"),
  62322. default: true
  62323. },
  62324. ]
  62325. ))
  62326. characterMakers.push(() => makeCharacter(
  62327. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62328. {
  62329. front: {
  62330. height: math.unit(245, "feet"),
  62331. weight: math.unit(400000, "lb"),
  62332. name: "Front",
  62333. image: {
  62334. source: "./media/characters/sabado/front.svg",
  62335. extra: 1309/1164,
  62336. bottom: 29/1338
  62337. }
  62338. },
  62339. },
  62340. [
  62341. {
  62342. name: "Normal",
  62343. height: math.unit(245, "feet"),
  62344. default: true
  62345. },
  62346. ]
  62347. ))
  62348. characterMakers.push(() => makeCharacter(
  62349. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62350. {
  62351. shark_front: {
  62352. height: math.unit(2, "meters"),
  62353. weight: math.unit(200, "kg"),
  62354. name: "Front",
  62355. image: {
  62356. source: "./media/characters/zechal/shark-front.svg",
  62357. extra: 969/925,
  62358. bottom: 74/1043
  62359. },
  62360. form: "shark",
  62361. },
  62362. shark_back: {
  62363. height: math.unit(2, "meters"),
  62364. weight: math.unit(200, "kg"),
  62365. name: "Back",
  62366. image: {
  62367. source: "./media/characters/zechal/shark-back.svg",
  62368. extra: 994/949,
  62369. bottom: 176/1170
  62370. },
  62371. form: "shark",
  62372. },
  62373. shark_frontLewd: {
  62374. height: math.unit(2, "meters"),
  62375. weight: math.unit(200, "kg"),
  62376. name: "Front (Lewd)",
  62377. image: {
  62378. source: "./media/characters/zechal/shark-front-lewd.svg",
  62379. extra: 969/925,
  62380. bottom: 74/1043
  62381. },
  62382. form: "shark",
  62383. },
  62384. shark_side: {
  62385. height: math.unit(1.56, "meters"),
  62386. weight: math.unit(200, "kg"),
  62387. name: "Side",
  62388. image: {
  62389. source: "./media/characters/zechal/shark-side.svg"
  62390. },
  62391. form: "shark",
  62392. },
  62393. dragon_front: {
  62394. height: math.unit(2, "meters"),
  62395. weight: math.unit(200, "kg"),
  62396. name: "Front",
  62397. image: {
  62398. source: "./media/characters/zechal/dragon-front.svg",
  62399. extra: 1041/925,
  62400. bottom: 74/1115
  62401. },
  62402. form: "dragon",
  62403. },
  62404. dragon_back: {
  62405. height: math.unit(2, "meters"),
  62406. weight: math.unit(200, "kg"),
  62407. name: "Back",
  62408. image: {
  62409. source: "./media/characters/zechal/dragon-back.svg",
  62410. extra: 1061/949,
  62411. bottom: 176/1237
  62412. },
  62413. form: "dragon",
  62414. },
  62415. dragon_frontLewd: {
  62416. height: math.unit(2, "meters"),
  62417. weight: math.unit(200, "kg"),
  62418. name: "Front (Lewd)",
  62419. image: {
  62420. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62421. extra: 1041/925,
  62422. bottom: 74/1115
  62423. },
  62424. form: "dragon",
  62425. },
  62426. dragon_side: {
  62427. height: math.unit(1.56, "meters"),
  62428. weight: math.unit(200, "kg"),
  62429. name: "Side",
  62430. image: {
  62431. source: "./media/characters/zechal/dragon-side.svg"
  62432. },
  62433. form: "dragon",
  62434. },
  62435. foot: {
  62436. height: math.unit(0.5, "meters"),
  62437. name: "Foot",
  62438. image: {
  62439. source: "./media/characters/zechal/foot.svg"
  62440. }
  62441. },
  62442. sheathFront: {
  62443. height: math.unit(0.45, "meters"),
  62444. name: "Sheath (Front)",
  62445. image: {
  62446. source: "./media/characters/zechal/sheath-front.svg"
  62447. }
  62448. },
  62449. sheathSide: {
  62450. height: math.unit(0.45, "meters"),
  62451. name: "Sheath (Side)",
  62452. image: {
  62453. source: "./media/characters/zechal/sheath-side.svg"
  62454. }
  62455. },
  62456. },
  62457. [
  62458. {
  62459. name: "Incognito",
  62460. height: math.unit(2, "meters"),
  62461. allForms: true
  62462. },
  62463. {
  62464. name: "Small Rampage",
  62465. height: math.unit(25, "meters"),
  62466. allForms: true
  62467. },
  62468. {
  62469. name: "Home Size",
  62470. height: math.unit(250, "meters"),
  62471. allForms: true,
  62472. default: true
  62473. },
  62474. {
  62475. name: "Macro+",
  62476. height: math.unit(700, "meters"),
  62477. allForms: true
  62478. },
  62479. {
  62480. name: "Small Mega",
  62481. height: math.unit(3, "km"),
  62482. allForms: true
  62483. },
  62484. {
  62485. name: "Mega",
  62486. height: math.unit(15, "km"),
  62487. allForms: true
  62488. },
  62489. {
  62490. name: "Giga",
  62491. height: math.unit(300, "km"),
  62492. allForms: true
  62493. },
  62494. {
  62495. name: "Giga+",
  62496. height: math.unit(1750, "km"),
  62497. allForms: true
  62498. },
  62499. {
  62500. name: "Continental",
  62501. height: math.unit(5000, "km"),
  62502. allForms: true
  62503. },
  62504. {
  62505. name: "Terra",
  62506. height: math.unit(20000, "km"),
  62507. allForms: true
  62508. },
  62509. {
  62510. name: "Terra+",
  62511. height: math.unit(300000, "km"),
  62512. allForms: true
  62513. },
  62514. {
  62515. name: "Solar",
  62516. height: math.unit(40000000, "km"),
  62517. allForms: true
  62518. },
  62519. {
  62520. name: "Galactic",
  62521. height: math.unit(810133, "parsecs"),
  62522. allForms: true
  62523. },
  62524. {
  62525. name: "Universal",
  62526. height: math.unit(25, "universes"),
  62527. allForms: true
  62528. },
  62529. ],
  62530. {
  62531. "shark": {
  62532. name: "Shark",
  62533. default: true
  62534. },
  62535. "dragon": {
  62536. name: "Dragon",
  62537. },
  62538. }
  62539. ))
  62540. characterMakers.push(() => makeCharacter(
  62541. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62542. {
  62543. front: {
  62544. height: math.unit(2.2, "meters"),
  62545. weight: math.unit(150, "kg"),
  62546. name: "Front",
  62547. image: {
  62548. source: "./media/characters/sergis/front.svg",
  62549. extra: 1314/1312,
  62550. bottom: 112/1426
  62551. }
  62552. },
  62553. back: {
  62554. height: math.unit(2.2, "meters"),
  62555. weight: math.unit(150, "kg"),
  62556. name: "Back",
  62557. image: {
  62558. source: "./media/characters/sergis/back.svg",
  62559. extra: 1335/1333,
  62560. bottom: 19/1354
  62561. }
  62562. },
  62563. frontLewd: {
  62564. height: math.unit(2.2, "meters"),
  62565. weight: math.unit(150, "kg"),
  62566. name: "Front (Lewd)",
  62567. image: {
  62568. source: "./media/characters/sergis/front-lewd.svg",
  62569. extra: 1314/1312,
  62570. bottom: 112/1426
  62571. }
  62572. },
  62573. frontDressed: {
  62574. height: math.unit(2.2, "meters"),
  62575. weight: math.unit(150, "kg"),
  62576. name: "Front (Dressed)",
  62577. image: {
  62578. source: "./media/characters/sergis/front-dressed.svg",
  62579. extra: 1330/1328,
  62580. bottom: 95/1425
  62581. }
  62582. },
  62583. frontDressedLewd: {
  62584. height: math.unit(2.2, "meters"),
  62585. weight: math.unit(150, "kg"),
  62586. name: "Front (Dressed, Lewd)",
  62587. image: {
  62588. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62589. extra: 1330/1328,
  62590. bottom: 95/1425
  62591. }
  62592. },
  62593. maw: {
  62594. height: math.unit(0.48, "meters"),
  62595. name: "Maw",
  62596. image: {
  62597. source: "./media/characters/sergis/maw.svg"
  62598. }
  62599. },
  62600. sheath: {
  62601. height: math.unit(0.38, "meters"),
  62602. name: "Sheath",
  62603. image: {
  62604. source: "./media/characters/sergis/sheath.svg"
  62605. }
  62606. },
  62607. },
  62608. [
  62609. {
  62610. name: "Incognito Size",
  62611. height: math.unit(2.2, "meters")
  62612. },
  62613. {
  62614. name: "Small Macro",
  62615. height: math.unit(40, "meters")
  62616. },
  62617. {
  62618. name: "Macro",
  62619. height: math.unit(150, "meters")
  62620. },
  62621. {
  62622. name: "Macro+",
  62623. height: math.unit(300, "meters")
  62624. },
  62625. {
  62626. name: "Mega",
  62627. height: math.unit(2.5, "km")
  62628. },
  62629. {
  62630. name: "Mega+",
  62631. height: math.unit(30, "km")
  62632. },
  62633. {
  62634. name: "Home Size",
  62635. height: math.unit(300, "km"),
  62636. default: true
  62637. },
  62638. {
  62639. name: "Giga+",
  62640. height: math.unit(1000, "km")
  62641. },
  62642. {
  62643. name: "Giga++",
  62644. height: math.unit(6000, "km")
  62645. },
  62646. {
  62647. name: "Terra",
  62648. height: math.unit(70000, "km")
  62649. },
  62650. {
  62651. name: "Terra+",
  62652. height: math.unit(200000, "km")
  62653. },
  62654. {
  62655. name: "Galactic",
  62656. height: math.unit(634200, "lightyears")
  62657. },
  62658. ]
  62659. ))
  62660. characterMakers.push(() => makeCharacter(
  62661. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62662. {
  62663. standard: {
  62664. height: math.unit(1 + 5/12, "feet"),
  62665. name: "Standard",
  62666. image: {
  62667. source: "./media/characters/spade/standard.svg",
  62668. extra: 1794/1703,
  62669. bottom: 115/1909
  62670. }
  62671. },
  62672. disguised: {
  62673. height: math.unit(1 + 5/12, "feet"),
  62674. name: "Disguised",
  62675. image: {
  62676. source: "./media/characters/spade/disguised.svg",
  62677. extra: 1794/1700,
  62678. bottom: 98/1892
  62679. }
  62680. },
  62681. },
  62682. [
  62683. {
  62684. name: "Normal",
  62685. height: math.unit(1 + 5/12, "feet"),
  62686. default: true
  62687. },
  62688. ]
  62689. ))
  62690. characterMakers.push(() => makeCharacter(
  62691. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62692. {
  62693. frontNsfw: {
  62694. height: math.unit(5, "meters"),
  62695. weight: math.unit(2000, "kg"),
  62696. preyCapacity: math.unit(5, "people"),
  62697. name: "Front (NSFW)",
  62698. image: {
  62699. source: "./media/characters/zeanlain/front-nsfw.svg",
  62700. extra: 1087/938,
  62701. bottom: 93/1180
  62702. },
  62703. extraAttributes: {
  62704. "wingspan": {
  62705. name: "Wingspan",
  62706. power: 1,
  62707. type: "length",
  62708. base: math.unit(10, "meters")
  62709. },
  62710. "footSize": {
  62711. name: "Foot Size",
  62712. power: 1,
  62713. type: "length",
  62714. base: math.unit(0.68, "meters")
  62715. },
  62716. "cockLength": {
  62717. name: "Cock Length",
  62718. power: 1,
  62719. type: "length",
  62720. base: math.unit(1.69, "meters")
  62721. },
  62722. "ballVolume": {
  62723. name: "Ball Volume",
  62724. power: 3,
  62725. type: "volume",
  62726. base: math.unit(0.028, "m^3")
  62727. },
  62728. }
  62729. },
  62730. front: {
  62731. height: math.unit(5, "meters"),
  62732. weight: math.unit(2000, "kg"),
  62733. preyCapacity: math.unit(3, "people"),
  62734. name: "Front",
  62735. image: {
  62736. source: "./media/characters/zeanlain/front.svg",
  62737. extra: 1087/938,
  62738. bottom: 93/1180
  62739. },
  62740. extraAttributes: {
  62741. "wingspan": {
  62742. name: "Wingspan",
  62743. power: 1,
  62744. type: "length",
  62745. base: math.unit(10, "meters")
  62746. },
  62747. "footSize": {
  62748. name: "Foot Size",
  62749. power: 1,
  62750. type: "length",
  62751. base: math.unit(0.68, "meters")
  62752. },
  62753. }
  62754. },
  62755. dick: {
  62756. height: math.unit(5.15, "feet"),
  62757. name: "Dick",
  62758. image: {
  62759. source: "./media/characters/zeanlain/dick.svg"
  62760. }
  62761. },
  62762. },
  62763. [
  62764. {
  62765. name: "Normal",
  62766. height: math.unit(5, "meters"),
  62767. default: true
  62768. },
  62769. ]
  62770. ))
  62771. characterMakers.push(() => makeCharacter(
  62772. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62773. {
  62774. front: {
  62775. height: math.unit(10, "meters"),
  62776. weight: math.unit(250000, "kg"),
  62777. name: "Front",
  62778. image: {
  62779. source: "./media/characters/airamis/front.svg",
  62780. extra: 865/835,
  62781. bottom: 13/878
  62782. }
  62783. },
  62784. },
  62785. [
  62786. {
  62787. name: "Normal",
  62788. height: math.unit(10, "meters"),
  62789. default: true
  62790. },
  62791. ]
  62792. ))
  62793. characterMakers.push(() => makeCharacter(
  62794. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62795. {
  62796. front: {
  62797. height: math.unit(3 + 3/12, "feet"),
  62798. weight: math.unit(75, "lb"),
  62799. name: "Front",
  62800. image: {
  62801. source: "./media/characters/corra-tourmaline/front.svg",
  62802. extra: 1037/864,
  62803. bottom: 39/1076
  62804. }
  62805. },
  62806. back: {
  62807. height: math.unit(3 + 3/12, "feet"),
  62808. weight: math.unit(75, "lb"),
  62809. name: "Back",
  62810. image: {
  62811. source: "./media/characters/corra-tourmaline/back.svg",
  62812. extra: 1022/849,
  62813. bottom: 26/1048
  62814. }
  62815. },
  62816. dressed: {
  62817. height: math.unit(3 + 3/12, "feet"),
  62818. weight: math.unit(75, "lb"),
  62819. name: "Dressed",
  62820. image: {
  62821. source: "./media/characters/corra-tourmaline/dressed.svg",
  62822. extra: 1037/864,
  62823. bottom: 39/1076
  62824. }
  62825. },
  62826. beans: {
  62827. height: math.unit(0.37, "feet"),
  62828. name: "Beans",
  62829. image: {
  62830. source: "./media/characters/corra-tourmaline/beans.svg"
  62831. }
  62832. },
  62833. },
  62834. [
  62835. {
  62836. name: "Normal",
  62837. height: math.unit(3 + 3/12, "feet"),
  62838. default: true
  62839. },
  62840. {
  62841. name: "Macro",
  62842. height: math.unit(32, "feet")
  62843. },
  62844. ]
  62845. ))
  62846. characterMakers.push(() => makeCharacter(
  62847. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62848. {
  62849. front: {
  62850. height: math.unit(6 + 2/12, "feet"),
  62851. weight: math.unit(203, "lb"),
  62852. name: "Front",
  62853. image: {
  62854. source: "./media/characters/maki-kawa/front.svg",
  62855. extra: 950/890,
  62856. bottom: 62/1012
  62857. }
  62858. },
  62859. back: {
  62860. height: math.unit(6 + 2/12, "feet"),
  62861. weight: math.unit(203, "lb"),
  62862. name: "Back",
  62863. image: {
  62864. source: "./media/characters/maki-kawa/back.svg",
  62865. extra: 953/878,
  62866. bottom: 49/1002
  62867. }
  62868. },
  62869. frontBarista: {
  62870. height: math.unit(6 + 2/12, "feet"),
  62871. weight: math.unit(203, "lb"),
  62872. name: "Front (Barista)",
  62873. image: {
  62874. source: "./media/characters/maki-kawa/front-barista.svg",
  62875. extra: 943/883,
  62876. bottom: 69/1012
  62877. }
  62878. },
  62879. backBarista: {
  62880. height: math.unit(6 + 2/12, "feet"),
  62881. weight: math.unit(203, "lb"),
  62882. name: "Back (Barista)",
  62883. image: {
  62884. source: "./media/characters/maki-kawa/back-barista.svg",
  62885. extra: 953/878,
  62886. bottom: 49/1002
  62887. }
  62888. },
  62889. frontWrestler: {
  62890. height: math.unit(6 + 2/12, "feet"),
  62891. weight: math.unit(203, "lb"),
  62892. name: "Front (Wrestler)",
  62893. image: {
  62894. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62895. extra: 950/890,
  62896. bottom: 62/1012
  62897. }
  62898. },
  62899. backWrestler: {
  62900. height: math.unit(6 + 2/12, "feet"),
  62901. weight: math.unit(203, "lb"),
  62902. name: "Back (Wrestler)",
  62903. image: {
  62904. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62905. extra: 953/878,
  62906. bottom: 49/1002
  62907. }
  62908. },
  62909. headFront: {
  62910. height: math.unit(1.64, "feet"),
  62911. name: "Head (Front)",
  62912. image: {
  62913. source: "./media/characters/maki-kawa/head-front.svg"
  62914. }
  62915. },
  62916. headSide: {
  62917. height: math.unit(1.59, "feet"),
  62918. name: "Head (Side)",
  62919. image: {
  62920. source: "./media/characters/maki-kawa/head-side.svg"
  62921. }
  62922. },
  62923. paw: {
  62924. height: math.unit(0.9, "feet"),
  62925. name: "Paw",
  62926. image: {
  62927. source: "./media/characters/maki-kawa/paw.svg"
  62928. }
  62929. },
  62930. },
  62931. [
  62932. {
  62933. name: "Normal",
  62934. height: math.unit(6 + 2/12, "feet"),
  62935. default: true
  62936. },
  62937. {
  62938. name: "Macro",
  62939. height: math.unit(617, "feet")
  62940. },
  62941. ]
  62942. ))
  62943. characterMakers.push(() => makeCharacter(
  62944. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62945. {
  62946. frontNsfw: {
  62947. height: math.unit(10, "feet"),
  62948. weight: math.unit(1500, "lb"),
  62949. name: "Front (NSFW)",
  62950. image: {
  62951. source: "./media/characters/lennox/front-nsfw.svg",
  62952. extra: 1623/1496,
  62953. bottom: 18/1641
  62954. },
  62955. extraAttributes: {
  62956. "cumVolume": {
  62957. name: "Cum Volume",
  62958. power: 3,
  62959. type: "volume",
  62960. base: math.unit(75, "liters")
  62961. },
  62962. }
  62963. },
  62964. backNsfw: {
  62965. height: math.unit(10, "feet"),
  62966. weight: math.unit(1500, "lb"),
  62967. name: "Back (NSFW)",
  62968. image: {
  62969. source: "./media/characters/lennox/back-nsfw.svg",
  62970. extra: 1641/1481,
  62971. bottom: 13/1654
  62972. },
  62973. extraAttributes: {
  62974. "cumVolume": {
  62975. name: "Cum Volume",
  62976. power: 3,
  62977. type: "volume",
  62978. base: math.unit(75, "liters")
  62979. },
  62980. }
  62981. },
  62982. frontSfw: {
  62983. height: math.unit(10, "feet"),
  62984. weight: math.unit(1500, "lb"),
  62985. name: "Front (SFW)",
  62986. image: {
  62987. source: "./media/characters/lennox/front-sfw.svg",
  62988. extra: 1623/1496,
  62989. bottom: 18/1641
  62990. }
  62991. },
  62992. backSfw: {
  62993. height: math.unit(10, "feet"),
  62994. weight: math.unit(1500, "lb"),
  62995. name: "Back (SFW)",
  62996. image: {
  62997. source: "./media/characters/lennox/back-sfw.svg",
  62998. extra: 1641/1481,
  62999. bottom: 13/1654
  63000. }
  63001. },
  63002. maw: {
  63003. height: math.unit(2.94, "feet"),
  63004. name: "Maw",
  63005. image: {
  63006. source: "./media/characters/lennox/maw.svg"
  63007. }
  63008. },
  63009. dick: {
  63010. height: math.unit(0.8323, "meters"),
  63011. weight: math.unit(0.07315728637*1000, "kg"),
  63012. name: "Dick",
  63013. image: {
  63014. source: "./media/characters/lennox/dick.svg"
  63015. },
  63016. extraAttributes: {
  63017. "thickness": {
  63018. name: "Thickness",
  63019. power: 1,
  63020. type: "length",
  63021. base: math.unit(0.330, "meters")
  63022. },
  63023. "length": {
  63024. name: "Length",
  63025. power: 1,
  63026. type: "length",
  63027. base: math.unit(0.8, "meters")
  63028. },
  63029. "cumVolume": {
  63030. name: "Cum Volume",
  63031. power: 3,
  63032. type: "volume",
  63033. base: math.unit(75, "liters")
  63034. },
  63035. }
  63036. },
  63037. },
  63038. [
  63039. {
  63040. name: "Micro",
  63041. height: math.unit(1, "inch")
  63042. },
  63043. {
  63044. name: "Normal",
  63045. height: math.unit(10, "feet"),
  63046. default: true
  63047. },
  63048. {
  63049. name: "Macro",
  63050. height: math.unit(200, "feet")
  63051. },
  63052. ]
  63053. ))
  63054. characterMakers.push(() => makeCharacter(
  63055. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63056. {
  63057. frontDressed: {
  63058. height: math.unit(15 + 7/12, "feet"),
  63059. weight: math.unit(5000, "lb"),
  63060. name: "Front (Dressed)",
  63061. image: {
  63062. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63063. extra: 1136/1023,
  63064. bottom: 51/1187
  63065. }
  63066. },
  63067. backDressed: {
  63068. height: math.unit(15 + 7/12, "feet"),
  63069. weight: math.unit(5000, "lb"),
  63070. name: "Back (Dressed)",
  63071. image: {
  63072. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63073. extra: 2359/2143,
  63074. bottom: 103/2462
  63075. }
  63076. },
  63077. front: {
  63078. height: math.unit(15 + 7/12, "feet"),
  63079. weight: math.unit(5000, "lb"),
  63080. name: "Front",
  63081. image: {
  63082. source: "./media/characters/vyse-iron-thunder/front.svg",
  63083. extra: 1136/1023,
  63084. bottom: 51/1187
  63085. }
  63086. },
  63087. hand: {
  63088. height: math.unit(2.36, "feet"),
  63089. name: "Hand",
  63090. image: {
  63091. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63092. }
  63093. },
  63094. foot: {
  63095. height: math.unit(1.72, "feet"),
  63096. name: "Foot",
  63097. image: {
  63098. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63099. }
  63100. },
  63101. mouth: {
  63102. height: math.unit(2, "feet"),
  63103. name: "Mouth",
  63104. image: {
  63105. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63106. }
  63107. },
  63108. eye: {
  63109. height: math.unit(0.58, "feet"),
  63110. name: "Eye",
  63111. image: {
  63112. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63113. }
  63114. },
  63115. },
  63116. [
  63117. {
  63118. name: "Normal",
  63119. height: math.unit(15 + 7/12, "feet"),
  63120. default: true
  63121. },
  63122. {
  63123. name: "Macro",
  63124. height: math.unit(157, "feet")
  63125. },
  63126. {
  63127. name: "Macro+",
  63128. height: math.unit(1570, "feet")
  63129. },
  63130. {
  63131. name: "Macro++",
  63132. height: math.unit(15700, "feet")
  63133. },
  63134. {
  63135. name: "Macro+++",
  63136. height: math.unit(157000, "feet")
  63137. },
  63138. {
  63139. name: "Macro++++",
  63140. height: math.unit(1570000, "feet")
  63141. },
  63142. ]
  63143. ))
  63144. characterMakers.push(() => makeCharacter(
  63145. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63146. {
  63147. side: {
  63148. height: math.unit(6, "feet"),
  63149. weight: math.unit(115, "lb"),
  63150. name: "Side",
  63151. image: {
  63152. source: "./media/characters/moonbeam/side.svg",
  63153. extra: 839/485,
  63154. bottom: 60/899
  63155. }
  63156. },
  63157. },
  63158. [
  63159. {
  63160. name: "Normal",
  63161. height: math.unit(6, "feet"),
  63162. default: true
  63163. },
  63164. ]
  63165. ))
  63166. characterMakers.push(() => makeCharacter(
  63167. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63168. {
  63169. front: {
  63170. height: math.unit(3500, "miles"),
  63171. weight: math.unit(1659, "petatonnes"),
  63172. name: "Front",
  63173. image: {
  63174. source: "./media/characters/baltica/front.svg",
  63175. extra: 429/428,
  63176. bottom: 41/470
  63177. }
  63178. },
  63179. back: {
  63180. height: math.unit(3500, "miles"),
  63181. weight: math.unit(1659, "petatonnes"),
  63182. name: "Back",
  63183. image: {
  63184. source: "./media/characters/baltica/back.svg",
  63185. extra: 452/451,
  63186. bottom: 8/460
  63187. }
  63188. },
  63189. },
  63190. [
  63191. {
  63192. name: "Gigamacro",
  63193. height: math.unit(3500, "miles"),
  63194. default: true
  63195. },
  63196. ]
  63197. ))
  63198. characterMakers.push(() => makeCharacter(
  63199. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63200. {
  63201. front: {
  63202. height: math.unit(6 + 10/12, "feet"),
  63203. weight: math.unit(200, "lb"),
  63204. name: "Front",
  63205. image: {
  63206. source: "./media/characters/shadow-wolf/front.svg",
  63207. extra: 1931/1760,
  63208. bottom: 88/2019
  63209. }
  63210. },
  63211. },
  63212. [
  63213. {
  63214. name: "Normal",
  63215. height: math.unit(6 + 10/12, "feet"),
  63216. default: true
  63217. },
  63218. ]
  63219. ))
  63220. characterMakers.push(() => makeCharacter(
  63221. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63222. {
  63223. front: {
  63224. height: math.unit(5 + 10/12, "feet"),
  63225. name: "Front",
  63226. image: {
  63227. source: "./media/characters/quincy-praying-mantis/front.svg",
  63228. extra: 1055/891,
  63229. bottom: 92/1147
  63230. }
  63231. },
  63232. soles: {
  63233. height: math.unit(0.85, "feet"),
  63234. name: "Soles",
  63235. image: {
  63236. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63237. extra: 429/324,
  63238. bottom: 89/518
  63239. },
  63240. extraAttributes: {
  63241. "shoeSize": {
  63242. name: "Shoe Size",
  63243. power: 1,
  63244. type: "length",
  63245. base: math.unit(23, "ShoeSizeMensUS"),
  63246. defaultUnit: "ShoeSizeMensUS"
  63247. },
  63248. }
  63249. },
  63250. foot: {
  63251. height: math.unit(0.72, "feet"),
  63252. name: "Foot",
  63253. image: {
  63254. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63255. extra: 349/349,
  63256. bottom: 76/425
  63257. }
  63258. },
  63259. },
  63260. [
  63261. {
  63262. name: "Normal",
  63263. height: math.unit(5 + 10/12, "feet"),
  63264. default: true
  63265. },
  63266. ]
  63267. ))
  63268. characterMakers.push(() => makeCharacter(
  63269. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63270. {
  63271. front: {
  63272. height: math.unit(6, "feet"),
  63273. name: "Front",
  63274. image: {
  63275. source: "./media/characters/christopher-redwood/front.svg",
  63276. extra: 1402/1341,
  63277. bottom: 23/1425
  63278. }
  63279. },
  63280. back: {
  63281. height: math.unit(6, "feet"),
  63282. name: "Back",
  63283. image: {
  63284. source: "./media/characters/christopher-redwood/back.svg",
  63285. extra: 1406/1345,
  63286. bottom: 36/1442
  63287. }
  63288. },
  63289. head: {
  63290. height: math.unit(1.685, "feet"),
  63291. name: "Head",
  63292. image: {
  63293. source: "./media/characters/christopher-redwood/head.svg"
  63294. }
  63295. },
  63296. },
  63297. [
  63298. {
  63299. name: "Normal",
  63300. height: math.unit(6, "feet"),
  63301. default: true
  63302. },
  63303. ]
  63304. ))
  63305. characterMakers.push(() => makeCharacter(
  63306. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63307. {
  63308. front: {
  63309. height: math.unit(1.9, "meters"),
  63310. weight: math.unit(140, "lb"),
  63311. name: "Front",
  63312. image: {
  63313. source: "./media/characters/kara-fox/front.svg",
  63314. extra: 766/711,
  63315. bottom: 41/807
  63316. }
  63317. },
  63318. back: {
  63319. height: math.unit(1.9, "meters"),
  63320. weight: math.unit(140, "lb"),
  63321. name: "Back",
  63322. image: {
  63323. source: "./media/characters/kara-fox/back.svg",
  63324. extra: 766/596,
  63325. bottom: 29/795
  63326. }
  63327. },
  63328. maw: {
  63329. height: math.unit(0.78, "feet"),
  63330. name: "Maw",
  63331. image: {
  63332. source: "./media/characters/kara-fox/maw.svg"
  63333. }
  63334. },
  63335. pawpads: {
  63336. height: math.unit(0.96, "feet"),
  63337. name: "Pawpads",
  63338. image: {
  63339. source: "./media/characters/kara-fox/pawpads.svg"
  63340. }
  63341. },
  63342. },
  63343. [
  63344. {
  63345. name: "Normal",
  63346. height: math.unit(1.9, "meters"),
  63347. default: true
  63348. },
  63349. {
  63350. name: "Giantess",
  63351. height: math.unit(80, "meters")
  63352. },
  63353. ]
  63354. ))
  63355. characterMakers.push(() => makeCharacter(
  63356. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63357. {
  63358. front: {
  63359. height: math.unit(12, "feet"),
  63360. name: "Front",
  63361. image: {
  63362. source: "./media/characters/naomi-espeon/front.svg",
  63363. extra: 892/797,
  63364. bottom: 5/897
  63365. }
  63366. },
  63367. back: {
  63368. height: math.unit(12, "feet"),
  63369. name: "Back",
  63370. image: {
  63371. source: "./media/characters/naomi-espeon/back.svg",
  63372. extra: 890/785,
  63373. bottom: 12/902
  63374. }
  63375. },
  63376. },
  63377. [
  63378. {
  63379. name: "Normal",
  63380. height: math.unit(12, "feet"),
  63381. default: true
  63382. },
  63383. ]
  63384. ))
  63385. characterMakers.push(() => makeCharacter(
  63386. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63387. {
  63388. anthro_front: {
  63389. height: math.unit(8, "feet"),
  63390. weight: math.unit(625, "lb"),
  63391. name: "Front",
  63392. image: {
  63393. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63394. extra: 638/574,
  63395. bottom: 73/711
  63396. },
  63397. form: "anthro",
  63398. default: true
  63399. },
  63400. anthro_back: {
  63401. height: math.unit(8, "feet"),
  63402. weight: math.unit(625, "lb"),
  63403. name: "Back",
  63404. image: {
  63405. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63406. extra: 674/614,
  63407. bottom: 7/681
  63408. },
  63409. form: "anthro",
  63410. },
  63411. taur_side: {
  63412. height: math.unit(16, "feet"),
  63413. weight: math.unit(4.5, "tons"),
  63414. name: "Side",
  63415. image: {
  63416. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63417. extra: 704/646,
  63418. bottom: 132/836
  63419. },
  63420. form: "taur",
  63421. default: true
  63422. },
  63423. },
  63424. [
  63425. {
  63426. name: "Normal",
  63427. height: math.unit(8, "feet"),
  63428. default: true,
  63429. form: "anthro"
  63430. },
  63431. {
  63432. name: "Normal",
  63433. height: math.unit(16, "feet"),
  63434. default: true,
  63435. form: "taur"
  63436. },
  63437. ],
  63438. {
  63439. "anthro": {
  63440. name: "Anthro",
  63441. default: true
  63442. },
  63443. "taur": {
  63444. name: "Taur",
  63445. },
  63446. }
  63447. ))
  63448. characterMakers.push(() => makeCharacter(
  63449. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63450. {
  63451. front: {
  63452. height: math.unit(190, "cm"),
  63453. weight: math.unit(110, "kg"),
  63454. name: "Front",
  63455. image: {
  63456. source: "./media/characters/amelie/front.svg",
  63457. extra: 530/442,
  63458. bottom: 35/565
  63459. }
  63460. },
  63461. },
  63462. [
  63463. {
  63464. name: "Normal",
  63465. height: math.unit(190, "cm"),
  63466. default: true
  63467. },
  63468. ]
  63469. ))
  63470. characterMakers.push(() => makeCharacter(
  63471. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63472. {
  63473. front: {
  63474. height: math.unit(21, "feet"),
  63475. weight: math.unit(30000, "lb"),
  63476. name: "Front",
  63477. image: {
  63478. source: "./media/characters/valence/front.svg",
  63479. extra: 1430/1306,
  63480. bottom: 51/1481
  63481. }
  63482. },
  63483. },
  63484. [
  63485. {
  63486. name: "Normal",
  63487. height: math.unit(21, "feet"),
  63488. default: true
  63489. },
  63490. ]
  63491. ))
  63492. characterMakers.push(() => makeCharacter(
  63493. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63494. {
  63495. front: {
  63496. height: math.unit(5 + 9/12, "feet"),
  63497. weight: math.unit(170, "lb"),
  63498. name: "Front",
  63499. image: {
  63500. source: "./media/characters/aurora-adkins/front.svg",
  63501. extra: 1141/1089,
  63502. bottom: 41/1182
  63503. }
  63504. },
  63505. },
  63506. [
  63507. {
  63508. name: "Tiny",
  63509. height: math.unit(7, "mm")
  63510. },
  63511. {
  63512. name: "Small",
  63513. height: math.unit(3.4, "inches")
  63514. },
  63515. {
  63516. name: "Normal",
  63517. height: math.unit(5 + 9/12, "feet"),
  63518. default: true
  63519. },
  63520. {
  63521. name: "Big",
  63522. height: math.unit(31, "feet")
  63523. },
  63524. {
  63525. name: "Giant",
  63526. height: math.unit(300, "feet")
  63527. },
  63528. ]
  63529. ))
  63530. characterMakers.push(() => makeCharacter(
  63531. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63532. {
  63533. front: {
  63534. height: math.unit(5 + 6/12, "feet"),
  63535. weight: math.unit(210, "lb"),
  63536. name: "Front",
  63537. image: {
  63538. source: "./media/characters/cyber/front.svg",
  63539. extra: 1968/1798,
  63540. bottom: 10/1978
  63541. },
  63542. extraAttributes: {
  63543. "shoeSize": {
  63544. name: "Shoe Size",
  63545. power: 1,
  63546. type: "length",
  63547. base: math.unit(30, "ShoeSizeMensUS")
  63548. },
  63549. }
  63550. },
  63551. },
  63552. [
  63553. {
  63554. name: "Normal",
  63555. height: math.unit(5 + 6/12, "feet"),
  63556. default: true
  63557. },
  63558. ]
  63559. ))
  63560. characterMakers.push(() => makeCharacter(
  63561. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63562. {
  63563. front: {
  63564. height: math.unit(6 + 6/12, "feet"),
  63565. weight: math.unit(140, "lb"),
  63566. name: "Front",
  63567. image: {
  63568. source: "./media/characters/sapphire-wairimea/front.svg",
  63569. extra: 475/458,
  63570. bottom: 14/489
  63571. }
  63572. },
  63573. },
  63574. [
  63575. {
  63576. name: "Normal",
  63577. height: math.unit(6 + 6/12, "feet")
  63578. },
  63579. {
  63580. name: "Macro",
  63581. height: math.unit(132, "feet"),
  63582. default: true
  63583. },
  63584. ]
  63585. ))
  63586. characterMakers.push(() => makeCharacter(
  63587. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63588. {
  63589. front: {
  63590. height: math.unit(1.6, "meters"),
  63591. weight: math.unit(100, "lb"),
  63592. name: "Front",
  63593. image: {
  63594. source: "./media/characters/cirkazi/front.svg",
  63595. extra: 489/477,
  63596. bottom: 0/489
  63597. }
  63598. },
  63599. },
  63600. [
  63601. {
  63602. name: "Normal",
  63603. height: math.unit(1.6, "meters")
  63604. },
  63605. {
  63606. name: "Macro",
  63607. height: math.unit(800, "feet"),
  63608. default: true
  63609. },
  63610. ]
  63611. ))
  63612. characterMakers.push(() => makeCharacter(
  63613. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63614. {
  63615. front: {
  63616. height: math.unit(5 + 10/12, "feet"),
  63617. weight: math.unit(145, "lb"),
  63618. name: "Front",
  63619. image: {
  63620. source: "./media/characters/corrin-cavelli/front.svg",
  63621. extra: 483/464,
  63622. bottom: 6/489
  63623. }
  63624. },
  63625. },
  63626. [
  63627. {
  63628. name: "Human",
  63629. height: math.unit(5 + 10/12, "feet")
  63630. },
  63631. {
  63632. name: "Giant",
  63633. height: math.unit(210, "feet"),
  63634. default: true
  63635. },
  63636. ]
  63637. ))
  63638. characterMakers.push(() => makeCharacter(
  63639. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63640. {
  63641. back: {
  63642. height: math.unit(5 + 6/12, "feet"),
  63643. weight: math.unit(115, "lb"),
  63644. name: "Back",
  63645. image: {
  63646. source: "./media/characters/lori-lopez/back.svg",
  63647. extra: 483/474,
  63648. bottom: 6/489
  63649. }
  63650. },
  63651. },
  63652. [
  63653. {
  63654. name: "Human",
  63655. height: math.unit(5 + 6/12, "feet")
  63656. },
  63657. {
  63658. name: "Macro",
  63659. height: math.unit(198, "feet"),
  63660. default: true
  63661. },
  63662. ]
  63663. ))
  63664. characterMakers.push(() => makeCharacter(
  63665. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63666. {
  63667. front: {
  63668. height: math.unit(6, "feet"),
  63669. weight: math.unit(220, "lb"),
  63670. name: "Front",
  63671. image: {
  63672. source: "./media/characters/sylvia-beauregard/front.svg",
  63673. extra: 483/479,
  63674. bottom: 6/489
  63675. }
  63676. },
  63677. },
  63678. [
  63679. {
  63680. name: "Macro",
  63681. height: math.unit(2071, "feet"),
  63682. default: true
  63683. },
  63684. ]
  63685. ))
  63686. characterMakers.push(() => makeCharacter(
  63687. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63688. {
  63689. back: {
  63690. height: math.unit(5 + 6/12, "feet"),
  63691. weight: math.unit(160, "lb"),
  63692. name: "Back",
  63693. image: {
  63694. source: "./media/characters/akiko-takahashi/back.svg",
  63695. extra: 459/454,
  63696. bottom: 27/486
  63697. }
  63698. },
  63699. },
  63700. [
  63701. {
  63702. name: "Human",
  63703. height: math.unit(5 + 6/12, "feet")
  63704. },
  63705. {
  63706. name: "Macro",
  63707. height: math.unit(198, "feet"),
  63708. default: true
  63709. },
  63710. {
  63711. name: "Megamacro",
  63712. height: math.unit(7128, "feet")
  63713. },
  63714. ]
  63715. ))
  63716. characterMakers.push(() => makeCharacter(
  63717. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63718. {
  63719. front: {
  63720. height: math.unit(6, "feet"),
  63721. weight: math.unit(140, "lb"),
  63722. name: "Front",
  63723. image: {
  63724. source: "./media/characters/velvet-garza/front.svg",
  63725. extra: 480/462,
  63726. bottom: 7/487
  63727. }
  63728. },
  63729. },
  63730. [
  63731. {
  63732. name: "Macro",
  63733. height: math.unit(37, "feet"),
  63734. default: true
  63735. },
  63736. ]
  63737. ))
  63738. characterMakers.push(() => makeCharacter(
  63739. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63740. {
  63741. front: {
  63742. height: math.unit(7 + 6/12, "feet"),
  63743. weight: math.unit(400, "lb"),
  63744. name: "Front",
  63745. image: {
  63746. source: "./media/characters/gaia/front.svg",
  63747. extra: 474/463,
  63748. bottom: 13/487
  63749. }
  63750. },
  63751. },
  63752. [
  63753. {
  63754. name: "MiniMacro",
  63755. height: math.unit(7 + 6/12, "feet")
  63756. },
  63757. {
  63758. name: "GigaMacro",
  63759. height: math.unit(14500, "feet"),
  63760. default: true
  63761. },
  63762. ]
  63763. ))
  63764. characterMakers.push(() => makeCharacter(
  63765. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63766. {
  63767. front: {
  63768. height: math.unit(6, "feet"),
  63769. weight: math.unit(150, "lb"),
  63770. name: "Front",
  63771. image: {
  63772. source: "./media/characters/tim/front.svg",
  63773. extra: 1878/1743,
  63774. bottom: 9/1887
  63775. }
  63776. },
  63777. frontDressed: {
  63778. height: math.unit(6, "feet"),
  63779. weight: math.unit(150, "lb"),
  63780. name: "Front (Dressed)",
  63781. image: {
  63782. source: "./media/characters/tim/front-dressed.svg",
  63783. extra: 1765/1485,
  63784. bottom: 48/1813
  63785. }
  63786. },
  63787. backDressed: {
  63788. height: math.unit(6, "feet"),
  63789. weight: math.unit(150, "lb"),
  63790. name: "Back (Dressed)",
  63791. image: {
  63792. source: "./media/characters/tim/back-dressed.svg",
  63793. extra: 1750/1465,
  63794. bottom: 25/1775
  63795. }
  63796. },
  63797. dick: {
  63798. height: math.unit(1.5, "feet"),
  63799. weight: math.unit(6, "lb"),
  63800. name: "Dick",
  63801. image: {
  63802. source: "./media/characters/tim/dick.svg"
  63803. }
  63804. },
  63805. hand: {
  63806. height: math.unit(0.522, "feet"),
  63807. name: "Hand",
  63808. image: {
  63809. source: "./media/characters/tim/hand.svg"
  63810. }
  63811. },
  63812. palm: {
  63813. height: math.unit(0.48, "feet"),
  63814. name: "Palm",
  63815. image: {
  63816. source: "./media/characters/tim/palm.svg"
  63817. }
  63818. },
  63819. paw: {
  63820. height: math.unit(0.9, "feet"),
  63821. name: "Paw",
  63822. image: {
  63823. source: "./media/characters/tim/paw.svg"
  63824. }
  63825. },
  63826. sole: {
  63827. height: math.unit(0.88, "feet"),
  63828. name: "Sole",
  63829. image: {
  63830. source: "./media/characters/tim/sole.svg"
  63831. }
  63832. },
  63833. },
  63834. [
  63835. {
  63836. name: "Macro",
  63837. height: math.unit(1000, "feet")
  63838. },
  63839. {
  63840. name: "Megamacro",
  63841. height: math.unit(10000, "feet"),
  63842. default: true
  63843. },
  63844. {
  63845. name: "Megamacro+",
  63846. height: math.unit(50000, "feet")
  63847. },
  63848. {
  63849. name: "Gigamacro",
  63850. height: math.unit(150000, "km")
  63851. },
  63852. ]
  63853. ))
  63854. characterMakers.push(() => makeCharacter(
  63855. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63856. {
  63857. front: {
  63858. height: math.unit(5 + 8/12, "feet"),
  63859. weight: math.unit(170, "lb"),
  63860. name: "Front",
  63861. image: {
  63862. source: "./media/characters/abel-delreoux/front.svg",
  63863. extra: 1615/1500,
  63864. bottom: 82/1697
  63865. }
  63866. },
  63867. back: {
  63868. height: math.unit(5 + 8/12, "feet"),
  63869. weight: math.unit(170, "lb"),
  63870. name: "Back",
  63871. image: {
  63872. source: "./media/characters/abel-delreoux/back.svg",
  63873. extra: 1644/1534,
  63874. bottom: 24/1668
  63875. }
  63876. },
  63877. casual: {
  63878. height: math.unit(5 + 8/12, "feet"),
  63879. weight: math.unit(170, "lb"),
  63880. name: "Casual",
  63881. image: {
  63882. source: "./media/characters/abel-delreoux/casual.svg",
  63883. extra: 1716/1598,
  63884. bottom: 29/1745
  63885. }
  63886. },
  63887. sleepy: {
  63888. height: math.unit(5 + 8/12, "feet"),
  63889. weight: math.unit(170, "lb"),
  63890. name: "Sleepy",
  63891. image: {
  63892. source: "./media/characters/abel-delreoux/sleepy.svg",
  63893. extra: 1649/1573,
  63894. bottom: 22/1671
  63895. }
  63896. },
  63897. fem: {
  63898. height: math.unit(5 + 8/12, "feet"),
  63899. weight: math.unit(170, "lb"),
  63900. name: "Fem",
  63901. image: {
  63902. source: "./media/characters/abel-delreoux/fem.svg",
  63903. extra: 1680/1564,
  63904. bottom: 17/1697
  63905. }
  63906. },
  63907. hand: {
  63908. height: math.unit(0.78, "feet"),
  63909. name: "Hand",
  63910. image: {
  63911. source: "./media/characters/abel-delreoux/hand.svg"
  63912. }
  63913. },
  63914. paw: {
  63915. height: math.unit(0.78, "feet"),
  63916. name: "Paw",
  63917. image: {
  63918. source: "./media/characters/abel-delreoux/paw.svg"
  63919. }
  63920. },
  63921. },
  63922. [
  63923. {
  63924. name: "Normal",
  63925. height: math.unit(5 + 8/12, "feet"),
  63926. default: true
  63927. },
  63928. ]
  63929. ))
  63930. characterMakers.push(() => makeCharacter(
  63931. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63932. {
  63933. front: {
  63934. height: math.unit(6, "feet"),
  63935. weight: math.unit(159, "lb"),
  63936. name: "Front",
  63937. image: {
  63938. source: "./media/characters/meus/front.svg",
  63939. extra: 938/843,
  63940. bottom: 37/975
  63941. }
  63942. },
  63943. back: {
  63944. height: math.unit(6, "feet"),
  63945. weight: math.unit(159, "lb"),
  63946. name: "Back",
  63947. image: {
  63948. source: "./media/characters/meus/back.svg",
  63949. extra: 967/873,
  63950. bottom: 12/979
  63951. }
  63952. },
  63953. },
  63954. [
  63955. {
  63956. name: "Micro",
  63957. height: math.unit(2, "inches")
  63958. },
  63959. {
  63960. name: "Mini",
  63961. height: math.unit(6, "inches")
  63962. },
  63963. {
  63964. name: "Normal",
  63965. height: math.unit(6, "feet"),
  63966. default: true
  63967. },
  63968. {
  63969. name: "Macro",
  63970. height: math.unit(84, "feet")
  63971. },
  63972. ]
  63973. ))
  63974. characterMakers.push(() => makeCharacter(
  63975. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63976. {
  63977. front: {
  63978. height: math.unit(60, "cm"),
  63979. weight: math.unit(18, "kg"),
  63980. name: "Front",
  63981. image: {
  63982. source: "./media/characters/yamato/front.svg",
  63983. extra: 733/688,
  63984. bottom: 29/762
  63985. }
  63986. },
  63987. },
  63988. [
  63989. {
  63990. name: "Micro",
  63991. height: math.unit(6, "cm")
  63992. },
  63993. {
  63994. name: "Normal",
  63995. height: math.unit(60, "cm"),
  63996. default: true
  63997. },
  63998. ]
  63999. ))
  64000. characterMakers.push(() => makeCharacter(
  64001. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64002. {
  64003. front: {
  64004. height: math.unit(9, "feet"),
  64005. weight: math.unit(518, "lb"),
  64006. name: "Front",
  64007. image: {
  64008. source: "./media/characters/barus/front.svg",
  64009. extra: 1877/1795,
  64010. bottom: 55/1932
  64011. }
  64012. },
  64013. },
  64014. [
  64015. {
  64016. name: "Base Height",
  64017. height: math.unit(9, "feet"),
  64018. default: true
  64019. },
  64020. {
  64021. name: "Large",
  64022. height: math.unit(18, "feet")
  64023. },
  64024. {
  64025. name: "Giant",
  64026. height: math.unit(100, "feet")
  64027. },
  64028. {
  64029. name: "Huge",
  64030. height: math.unit(500, "feet")
  64031. },
  64032. {
  64033. name: "Enormous",
  64034. height: math.unit(300, "meters")
  64035. },
  64036. {
  64037. name: "Deity Among Man",
  64038. height: math.unit(3000, "meters")
  64039. },
  64040. ]
  64041. ))
  64042. characterMakers.push(() => makeCharacter(
  64043. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64044. {
  64045. front: {
  64046. height: math.unit(1.7, "meters"),
  64047. name: "Front",
  64048. image: {
  64049. source: "./media/characters/yari/front.svg",
  64050. extra: 1210/1125,
  64051. bottom: 283/1493
  64052. }
  64053. },
  64054. back: {
  64055. height: math.unit(1.7, "meters"),
  64056. name: "Back",
  64057. image: {
  64058. source: "./media/characters/yari/back.svg",
  64059. extra: 1240/1195,
  64060. bottom: 180/1420
  64061. }
  64062. },
  64063. head: {
  64064. height: math.unit(1.26, "feet"),
  64065. name: "Head",
  64066. image: {
  64067. source: "./media/characters/yari/head.svg"
  64068. }
  64069. },
  64070. },
  64071. [
  64072. {
  64073. name: "Nano",
  64074. height: math.unit(0.5, "mm")
  64075. },
  64076. {
  64077. name: "Micro",
  64078. height: math.unit(3, "inches")
  64079. },
  64080. {
  64081. name: "Short",
  64082. height: math.unit(1.5, "meters")
  64083. },
  64084. {
  64085. name: "Norm",
  64086. height: math.unit(1.7, "meters"),
  64087. default: true
  64088. },
  64089. ]
  64090. ))
  64091. characterMakers.push(() => makeCharacter(
  64092. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64093. {
  64094. front: {
  64095. height: math.unit(5 + 2/12, "feet"),
  64096. weight: math.unit(110, "lb"),
  64097. name: "Front",
  64098. image: {
  64099. source: "./media/characters/salem/front.svg",
  64100. extra: 1895/1800,
  64101. bottom: 23/1918
  64102. }
  64103. },
  64104. back: {
  64105. height: math.unit(5 + 2/12, "feet"),
  64106. weight: math.unit(110, "lb"),
  64107. name: "Back",
  64108. image: {
  64109. source: "./media/characters/salem/back.svg",
  64110. extra: 1875/1802,
  64111. bottom: 20/1895
  64112. }
  64113. },
  64114. head: {
  64115. height: math.unit(1, "feet"),
  64116. name: "Head",
  64117. image: {
  64118. source: "./media/characters/salem/head.svg"
  64119. }
  64120. },
  64121. paw: {
  64122. height: math.unit(0.59, "feet"),
  64123. name: "Paw",
  64124. image: {
  64125. source: "./media/characters/salem/paw.svg"
  64126. }
  64127. },
  64128. beans: {
  64129. height: math.unit(0.66, "feet"),
  64130. name: "Beans",
  64131. image: {
  64132. source: "./media/characters/salem/beans.svg"
  64133. }
  64134. },
  64135. eye: {
  64136. height: math.unit(0.224, "feet"),
  64137. name: "Eye",
  64138. image: {
  64139. source: "./media/characters/salem/eye.svg"
  64140. }
  64141. },
  64142. semiferal: {
  64143. height: math.unit(2.3, "feet"),
  64144. name: "Semiferal",
  64145. image: {
  64146. source: "./media/characters/salem/semiferal.svg",
  64147. extra: 914/839,
  64148. bottom: 32/946
  64149. }
  64150. },
  64151. },
  64152. [
  64153. {
  64154. name: "Micro",
  64155. height: math.unit(4, "inches")
  64156. },
  64157. {
  64158. name: "Normal",
  64159. height: math.unit(5 + 2/12, "feet"),
  64160. default: true
  64161. },
  64162. {
  64163. name: "Macro",
  64164. height: math.unit(108, "feet")
  64165. },
  64166. {
  64167. name: "Macro+",
  64168. height: math.unit(1500, "feet")
  64169. },
  64170. ]
  64171. ))
  64172. characterMakers.push(() => makeCharacter(
  64173. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64174. {
  64175. front: {
  64176. height: math.unit(7 + 6/12, "feet"),
  64177. weight: math.unit(600, "kg"),
  64178. preyCapacity: math.unit(10, "people"),
  64179. name: "Front",
  64180. image: {
  64181. source: "./media/characters/kii/front.svg",
  64182. extra: 3296/3087,
  64183. bottom: 130/3426
  64184. }
  64185. },
  64186. },
  64187. [
  64188. {
  64189. name: "Normal",
  64190. height: math.unit(7 + 6/12, "feet"),
  64191. default: true
  64192. },
  64193. ]
  64194. ))
  64195. characterMakers.push(() => makeCharacter(
  64196. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64197. {
  64198. front: {
  64199. height: math.unit(2, "meters"),
  64200. weight: math.unit(200, "lb"),
  64201. name: "Front",
  64202. image: {
  64203. source: "./media/characters/taffy/front.svg",
  64204. extra: 1666/1618,
  64205. bottom: 157/1823
  64206. }
  64207. },
  64208. back: {
  64209. height: math.unit(2, "meters"),
  64210. weight: math.unit(200, "lb"),
  64211. name: "Back",
  64212. image: {
  64213. source: "./media/characters/taffy/back.svg",
  64214. extra: 1635/1583,
  64215. bottom: 153/1788
  64216. }
  64217. },
  64218. },
  64219. [
  64220. {
  64221. name: "Normal",
  64222. height: math.unit(2, "meters"),
  64223. default: true
  64224. },
  64225. ]
  64226. ))
  64227. characterMakers.push(() => makeCharacter(
  64228. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64229. {
  64230. front: {
  64231. height: math.unit(1.55, "meters"),
  64232. weight: math.unit(60, "kg"),
  64233. name: "Front",
  64234. image: {
  64235. source: "./media/characters/barley/front.svg",
  64236. extra: 1520/1340,
  64237. bottom: 47/1567
  64238. }
  64239. },
  64240. back: {
  64241. height: math.unit(1.55, "meters"),
  64242. weight: math.unit(60, "kg"),
  64243. name: "Back",
  64244. image: {
  64245. source: "./media/characters/barley/back.svg",
  64246. extra: 1543/1341,
  64247. bottom: 12/1555
  64248. }
  64249. },
  64250. feet: {
  64251. height: math.unit(2.18, "feet"),
  64252. name: "Feet",
  64253. image: {
  64254. source: "./media/characters/barley/feet.svg"
  64255. }
  64256. },
  64257. },
  64258. [
  64259. {
  64260. name: "Normal",
  64261. height: math.unit(1.55, "meters"),
  64262. default: true
  64263. },
  64264. ]
  64265. ))
  64266. characterMakers.push(() => makeCharacter(
  64267. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64268. {
  64269. dressed: {
  64270. height: math.unit(6, "feet"),
  64271. name: "Dressed",
  64272. image: {
  64273. source: "./media/characters/lydia-lopez/dressed.svg",
  64274. extra: 1319/1277,
  64275. bottom: 90/1409
  64276. }
  64277. },
  64278. nude: {
  64279. height: math.unit(6, "feet"),
  64280. name: "Nude",
  64281. image: {
  64282. source: "./media/characters/lydia-lopez/nude.svg",
  64283. extra: 1319/1277,
  64284. bottom: 90/1409
  64285. }
  64286. },
  64287. },
  64288. [
  64289. {
  64290. name: "Normal",
  64291. height: math.unit(6, "feet"),
  64292. default: true
  64293. },
  64294. {
  64295. name: "Maximum",
  64296. height: math.unit(2101, "feet")
  64297. },
  64298. ]
  64299. ))
  64300. characterMakers.push(() => makeCharacter(
  64301. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64302. {
  64303. front: {
  64304. height: math.unit(5 + 4/12, "feet"),
  64305. weight: math.unit(250, "lb"),
  64306. volume: math.unit(20, "gallons"),
  64307. name: "Front",
  64308. image: {
  64309. source: "./media/characters/kira-slime/front.svg",
  64310. extra: 442/403,
  64311. bottom: 18/460
  64312. }
  64313. },
  64314. frontNsfw: {
  64315. height: math.unit(5 + 4/12, "feet"),
  64316. weight: math.unit(250, "lb"),
  64317. volume: math.unit(20, "gallons"),
  64318. name: "Front (NSFW)",
  64319. image: {
  64320. source: "./media/characters/kira-slime/front-nsfw.svg",
  64321. extra: 442/403,
  64322. bottom: 18/460
  64323. }
  64324. },
  64325. },
  64326. [
  64327. {
  64328. name: "Droplet",
  64329. height: math.unit(0.0464452, "feet")
  64330. },
  64331. {
  64332. name: "Pint",
  64333. height: math.unit(0.9824, "feet")
  64334. },
  64335. {
  64336. name: "Bucket",
  64337. height: math.unit(2.83, "feet")
  64338. },
  64339. {
  64340. name: "Normal",
  64341. height: math.unit(5 + 4/12, "feet"),
  64342. default: true
  64343. },
  64344. {
  64345. name: "Tub",
  64346. height: math.unit(8.46614, "feet")
  64347. },
  64348. {
  64349. name: "Pool",
  64350. height: math.unit(31.1895, "feet")
  64351. },
  64352. {
  64353. name: "Pond",
  64354. height: math.unit(170.349, "feet")
  64355. },
  64356. {
  64357. name: "Lake",
  64358. height: math.unit(289334, "feet")
  64359. },
  64360. {
  64361. name: "Ocean",
  64362. height: math.unit(1.11940e+7, "feet")
  64363. },
  64364. ]
  64365. ))
  64366. characterMakers.push(() => makeCharacter(
  64367. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64368. {
  64369. front: {
  64370. height: math.unit(5 + 6/12, "feet"),
  64371. weight: math.unit(120, "lb"),
  64372. name: "Front",
  64373. image: {
  64374. source: "./media/characters/holiday/front.svg",
  64375. extra: 456/403,
  64376. bottom: 4/460
  64377. }
  64378. },
  64379. back: {
  64380. height: math.unit(5 + 6/12, "feet"),
  64381. weight: math.unit(120, "lb"),
  64382. name: "Back",
  64383. image: {
  64384. source: "./media/characters/holiday/back.svg",
  64385. extra: 450/404,
  64386. bottom: 12/462
  64387. }
  64388. },
  64389. head: {
  64390. height: math.unit(2.3, "feet"),
  64391. name: "Head",
  64392. image: {
  64393. source: "./media/characters/holiday/head.svg"
  64394. }
  64395. },
  64396. },
  64397. [
  64398. {
  64399. name: "Normal",
  64400. height: math.unit(5 + 6/12, "feet"),
  64401. default: true
  64402. },
  64403. {
  64404. name: "Macro",
  64405. height: math.unit(6574.25, "feet")
  64406. },
  64407. ]
  64408. ))
  64409. characterMakers.push(() => makeCharacter(
  64410. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64411. {
  64412. front: {
  64413. height: math.unit(6 + 2/12, "feet"),
  64414. weight: math.unit(200, "lb"),
  64415. name: "Front",
  64416. image: {
  64417. source: "./media/characters/camina/front.svg",
  64418. extra: 1048/985,
  64419. bottom: 30/1078
  64420. }
  64421. },
  64422. },
  64423. [
  64424. {
  64425. name: "Normal",
  64426. height: math.unit(6 + 2/12, "feet"),
  64427. default: true
  64428. },
  64429. ]
  64430. ))
  64431. characterMakers.push(() => makeCharacter(
  64432. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64433. {
  64434. front: {
  64435. height: math.unit(30, "cm"),
  64436. weight: math.unit(420, "grams"),
  64437. name: "Front",
  64438. image: {
  64439. source: "./media/characters/smuck/front.svg",
  64440. extra: 379/345,
  64441. bottom: 36/415
  64442. }
  64443. },
  64444. },
  64445. [
  64446. {
  64447. name: "Smuck-Sized",
  64448. height: math.unit(30, "cm"),
  64449. default: true
  64450. },
  64451. ]
  64452. ))
  64453. characterMakers.push(() => makeCharacter(
  64454. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64455. {
  64456. frontSfw: {
  64457. height: math.unit(10, "feet"),
  64458. weight: math.unit(1000, "kg"),
  64459. preyCapacity: math.unit(2, "people"),
  64460. name: "Front (SFW)",
  64461. image: {
  64462. source: "./media/characters/bylur/front-sfw.svg",
  64463. extra: 419/343,
  64464. bottom: 3/422
  64465. },
  64466. default: true
  64467. },
  64468. frontSheath: {
  64469. height: math.unit(10, "feet"),
  64470. weight: math.unit(1000, "kg"),
  64471. preyCapacity: math.unit(2, "people"),
  64472. name: "Front (Sheath)",
  64473. image: {
  64474. source: "./media/characters/bylur/front-sheath.svg",
  64475. extra: 419/343,
  64476. bottom: 3/422
  64477. }
  64478. },
  64479. frontErect: {
  64480. height: math.unit(10, "feet"),
  64481. weight: math.unit(1000, "kg"),
  64482. preyCapacity: math.unit(2, "people"),
  64483. name: "Front (Erect)",
  64484. image: {
  64485. source: "./media/characters/bylur/front-erect.svg",
  64486. extra: 419/343,
  64487. bottom: 3/422
  64488. }
  64489. },
  64490. back: {
  64491. height: math.unit(10, "feet"),
  64492. weight: math.unit(1000, "kg"),
  64493. preyCapacity: math.unit(2, "people"),
  64494. name: "Back",
  64495. image: {
  64496. source: "./media/characters/bylur/back.svg",
  64497. extra: 392/315,
  64498. bottom: 3/395
  64499. }
  64500. },
  64501. maw: {
  64502. height: math.unit(3.65, "feet"),
  64503. name: "Maw",
  64504. image: {
  64505. source: "./media/characters/bylur/maw.svg"
  64506. }
  64507. },
  64508. },
  64509. [
  64510. {
  64511. name: "Slightly Human Sized",
  64512. height: math.unit(10, "feet")
  64513. },
  64514. {
  64515. name: "Normal",
  64516. height: math.unit(35, "feet"),
  64517. default: true
  64518. },
  64519. {
  64520. name: "Macro",
  64521. height: math.unit(130, "feet")
  64522. },
  64523. ]
  64524. ))
  64525. characterMakers.push(() => makeCharacter(
  64526. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64527. {
  64528. frontNsfw: {
  64529. height: math.unit(6, "feet"),
  64530. weight: math.unit(250, "lb"),
  64531. preyCapacity: math.unit(0.05, "people"),
  64532. name: "Front (NSFW)",
  64533. image: {
  64534. source: "./media/characters/oarven/front-nsfw.svg",
  64535. extra: 1795/1783,
  64536. bottom: 142/1937
  64537. }
  64538. },
  64539. frontSfw: {
  64540. height: math.unit(6, "feet"),
  64541. weight: math.unit(250, "lb"),
  64542. preyCapacity: math.unit(0.05, "people"),
  64543. name: "Front (SFW)",
  64544. image: {
  64545. source: "./media/characters/oarven/front-sfw.svg",
  64546. extra: 1795/1783,
  64547. bottom: 142/1937
  64548. }
  64549. },
  64550. },
  64551. [
  64552. {
  64553. name: "Megamacro",
  64554. height: math.unit(5, "miles"),
  64555. default: true
  64556. },
  64557. {
  64558. name: "Maximum Height",
  64559. height: math.unit(5, "AUs")
  64560. },
  64561. ]
  64562. ))
  64563. characterMakers.push(() => makeCharacter(
  64564. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64565. {
  64566. side: {
  64567. height: math.unit(1065, "meters"),
  64568. weight: math.unit(1e12, "kg"),
  64569. volume: math.unit(3265000000, "m^3"),
  64570. name: "Side",
  64571. image: {
  64572. source: "./media/characters/solidarity/side.svg"
  64573. }
  64574. },
  64575. front: {
  64576. height: math.unit(1065, "meters"),
  64577. weight: math.unit(3265000000000, "kg"),
  64578. volume: math.unit(3265000000, "m^3"),
  64579. name: "Front",
  64580. image: {
  64581. source: "./media/characters/solidarity/front.svg"
  64582. }
  64583. },
  64584. top: {
  64585. height: math.unit(5823, "meters"),
  64586. weight: math.unit(3265000000000, "kg"),
  64587. volume: math.unit(3265000000, "m^3"),
  64588. name: "Top",
  64589. image: {
  64590. source: "./media/characters/solidarity/top.svg"
  64591. }
  64592. },
  64593. },
  64594. [
  64595. {
  64596. name: "Normal",
  64597. height: math.unit(1065, "meters"),
  64598. default: true
  64599. },
  64600. ]
  64601. ))
  64602. characterMakers.push(() => makeCharacter(
  64603. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64604. {
  64605. side: {
  64606. height: math.unit(18 + 4/12, "feet"),
  64607. weight: math.unit(13000, "kg"),
  64608. name: "Side",
  64609. image: {
  64610. source: "./media/characters/ani'szi/side.svg",
  64611. extra: 468/459,
  64612. bottom: 60/528
  64613. }
  64614. },
  64615. head: {
  64616. height: math.unit(4.8, "feet"),
  64617. name: "Head",
  64618. image: {
  64619. source: "./media/characters/ani'szi/head.svg"
  64620. }
  64621. },
  64622. jaws: {
  64623. height: math.unit(2.25, "feet"),
  64624. name: "Jaws",
  64625. image: {
  64626. source: "./media/characters/ani'szi/jaws.svg"
  64627. }
  64628. },
  64629. bust: {
  64630. height: math.unit(8.9, "feet"),
  64631. name: "Bust",
  64632. image: {
  64633. source: "./media/characters/ani'szi/bust.svg"
  64634. }
  64635. },
  64636. back: {
  64637. height: math.unit(13.53, "feet"),
  64638. name: "Back",
  64639. image: {
  64640. source: "./media/characters/ani'szi/back.svg"
  64641. }
  64642. },
  64643. eye: {
  64644. height: math.unit(0.44, "feet"),
  64645. name: "Eye",
  64646. image: {
  64647. source: "./media/characters/ani'szi/eye.svg"
  64648. }
  64649. },
  64650. },
  64651. [
  64652. {
  64653. name: "Normal",
  64654. height: math.unit(18 + 4/12, "feet"),
  64655. default: true
  64656. },
  64657. ]
  64658. ))
  64659. characterMakers.push(() => makeCharacter(
  64660. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64661. {
  64662. front: {
  64663. height: math.unit(7 + 6/12, "feet"),
  64664. weight: math.unit(300, "lb"),
  64665. name: "Front",
  64666. image: {
  64667. source: "./media/characters/rain/front.svg",
  64668. extra: 2955/2698,
  64669. bottom: 235/3190
  64670. }
  64671. },
  64672. dressed: {
  64673. height: math.unit(7 + 6/12, "feet"),
  64674. weight: math.unit(300, "lb"),
  64675. name: "Dressed",
  64676. image: {
  64677. source: "./media/characters/rain/dressed.svg",
  64678. extra: 2783/2572,
  64679. bottom: 430/3213
  64680. }
  64681. },
  64682. },
  64683. [
  64684. {
  64685. name: "Normal",
  64686. height: math.unit(7 + 6/12, "feet"),
  64687. default: true
  64688. },
  64689. {
  64690. name: "Macro",
  64691. height: math.unit(200, "feet")
  64692. },
  64693. {
  64694. name: "Macro+",
  64695. height: math.unit(500, "feet")
  64696. },
  64697. {
  64698. name: "Megamacro",
  64699. height: math.unit(5, "miles")
  64700. },
  64701. ]
  64702. ))
  64703. characterMakers.push(() => makeCharacter(
  64704. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64705. {
  64706. taur_side: {
  64707. height: math.unit(3, "meters"),
  64708. name: "Side",
  64709. image: {
  64710. source: "./media/characters/anise/taur-side.svg",
  64711. extra: 1833/926,
  64712. bottom: 134/1967
  64713. },
  64714. form: "taur",
  64715. default: true
  64716. },
  64717. feral_side: {
  64718. height: math.unit(3, "meters"),
  64719. name: "Side",
  64720. image: {
  64721. source: "./media/characters/anise/feral-side.svg",
  64722. extra: 681/349,
  64723. bottom: 26/707
  64724. },
  64725. form: "feral"
  64726. },
  64727. },
  64728. [
  64729. {
  64730. name: "Normal",
  64731. height: math.unit(3, "meters"),
  64732. default: true,
  64733. allForms: true
  64734. },
  64735. ],
  64736. {
  64737. "taur": {
  64738. name: "Taur",
  64739. default: true
  64740. },
  64741. "feral": {
  64742. name: "Feral",
  64743. },
  64744. }
  64745. ))
  64746. characterMakers.push(() => makeCharacter(
  64747. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64748. {
  64749. front: {
  64750. height: math.unit(1.9, "meters"),
  64751. weight: math.unit(75, "kg"),
  64752. name: "Front",
  64753. image: {
  64754. source: "./media/characters/sarina/front.svg",
  64755. extra: 1275/1200,
  64756. bottom: 49/1324
  64757. }
  64758. },
  64759. back: {
  64760. height: math.unit(1.9, "meters"),
  64761. weight: math.unit(75, "kg"),
  64762. name: "Back",
  64763. image: {
  64764. source: "./media/characters/sarina/back.svg",
  64765. extra: 1279/1209,
  64766. bottom: 14/1293
  64767. }
  64768. },
  64769. dressed: {
  64770. height: math.unit(1.9, "meters"),
  64771. weight: math.unit(75, "kg"),
  64772. name: "Dressed",
  64773. image: {
  64774. source: "./media/characters/sarina/dressed.svg",
  64775. extra: 1256/1187,
  64776. bottom: 56/1312
  64777. }
  64778. },
  64779. paw: {
  64780. height: math.unit(0.57, "feet"),
  64781. name: "Paw",
  64782. image: {
  64783. source: "./media/characters/sarina/paw.svg"
  64784. }
  64785. },
  64786. toering: {
  64787. height: math.unit(0.27, "feet"),
  64788. name: "Toering",
  64789. image: {
  64790. source: "./media/characters/sarina/toering.svg"
  64791. }
  64792. },
  64793. },
  64794. [
  64795. {
  64796. name: "Incognito",
  64797. height: math.unit(1.9, "meters")
  64798. },
  64799. {
  64800. name: "Home Size",
  64801. height: math.unit(160, "meters"),
  64802. default: true
  64803. },
  64804. {
  64805. name: "Mega",
  64806. height: math.unit(50, "km")
  64807. },
  64808. {
  64809. name: "Small Giga",
  64810. height: math.unit(250, "km")
  64811. },
  64812. {
  64813. name: "Giga (Preferred Size)",
  64814. height: math.unit(3000, "km")
  64815. },
  64816. {
  64817. name: "Terra",
  64818. height: math.unit(40000, "km")
  64819. },
  64820. {
  64821. name: "Terra+",
  64822. height: math.unit(400000, "km")
  64823. },
  64824. {
  64825. name: "Solar",
  64826. height: math.unit(35e6, "km")
  64827. },
  64828. {
  64829. name: "Galactic",
  64830. height: math.unit(648106, "parsecs")
  64831. },
  64832. {
  64833. name: "Universal",
  64834. height: math.unit(7, "universes")
  64835. },
  64836. {
  64837. name: "Universal+",
  64838. height: math.unit(30, "universes")
  64839. },
  64840. ]
  64841. ))
  64842. characterMakers.push(() => makeCharacter(
  64843. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64844. {
  64845. front: {
  64846. height: math.unit(5 + 6/12, "feet"),
  64847. name: "Front",
  64848. image: {
  64849. source: "./media/characters/sifray/front.svg",
  64850. extra: 722/691,
  64851. bottom: 64/786
  64852. }
  64853. },
  64854. },
  64855. [
  64856. {
  64857. name: "Normal",
  64858. height: math.unit(5 + 6/12, "feet"),
  64859. default: true
  64860. },
  64861. ]
  64862. ))
  64863. characterMakers.push(() => makeCharacter(
  64864. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64865. {
  64866. side: {
  64867. height: math.unit(2.64, "feet"),
  64868. weight: math.unit(100, "lb"),
  64869. preyCapacity: math.unit(3, "people"),
  64870. name: "Side",
  64871. image: {
  64872. source: "./media/characters/spots/side.svg",
  64873. extra: 1859/977,
  64874. bottom: 19/1878
  64875. },
  64876. extraAttributes: {
  64877. "preyPerMinute": {
  64878. name: "Prey Per Minute",
  64879. power: 3,
  64880. type: "volume",
  64881. base: math.unit(6, "people"),
  64882. defaultUnit: "people"
  64883. },
  64884. "preyPerDay": {
  64885. name: "Prey Per Day",
  64886. power: 3,
  64887. type: "volume",
  64888. base: math.unit(6 * 60 * 24, "people"),
  64889. defaultUnit: "people"
  64890. },
  64891. }
  64892. },
  64893. },
  64894. [
  64895. {
  64896. name: "Normal",
  64897. height: math.unit(2.64, "feet"),
  64898. default: true
  64899. },
  64900. ]
  64901. ))
  64902. characterMakers.push(() => makeCharacter(
  64903. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64904. {
  64905. front: {
  64906. height: math.unit(29 + 11/12, "feet"),
  64907. weight: math.unit(40, "tons"),
  64908. name: "Front",
  64909. image: {
  64910. source: "./media/characters/mona/front.svg",
  64911. extra: 1257/1116,
  64912. bottom: 34/1291
  64913. }
  64914. },
  64915. },
  64916. [
  64917. {
  64918. name: "Normal",
  64919. height: math.unit(29 + 11/12, "feet"),
  64920. default: true
  64921. },
  64922. ]
  64923. ))
  64924. characterMakers.push(() => makeCharacter(
  64925. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64926. {
  64927. front: {
  64928. height: math.unit(15, "feet"),
  64929. weight: math.unit(3000, "kg"),
  64930. preyCapacity: math.unit(5, "people"),
  64931. name: "Front",
  64932. image: {
  64933. source: "./media/characters/frostfire/front.svg",
  64934. extra: 675/558,
  64935. bottom: 73/748
  64936. }
  64937. },
  64938. side: {
  64939. height: math.unit(15, "feet"),
  64940. weight: math.unit(3000, "kg"),
  64941. preyCapacity: math.unit(5, "people"),
  64942. name: "Side",
  64943. image: {
  64944. source: "./media/characters/frostfire/side.svg",
  64945. extra: 687/585,
  64946. bottom: 50/737
  64947. }
  64948. },
  64949. back: {
  64950. height: math.unit(15, "feet"),
  64951. weight: math.unit(3000, "kg"),
  64952. preyCapacity: math.unit(5, "people"),
  64953. name: "Back",
  64954. image: {
  64955. source: "./media/characters/frostfire/back.svg",
  64956. extra: 707/607,
  64957. bottom: 16/723
  64958. }
  64959. },
  64960. head: {
  64961. height: math.unit(9.35, "feet"),
  64962. name: "Head",
  64963. image: {
  64964. source: "./media/characters/frostfire/head.svg"
  64965. }
  64966. },
  64967. maw: {
  64968. height: math.unit(3.32, "feet"),
  64969. name: "Maw",
  64970. image: {
  64971. source: "./media/characters/frostfire/maw.svg"
  64972. }
  64973. },
  64974. hand: {
  64975. height: math.unit(3.7, "feet"),
  64976. name: "Hand",
  64977. image: {
  64978. source: "./media/characters/frostfire/hand.svg"
  64979. }
  64980. },
  64981. paw: {
  64982. height: math.unit(5.8, "feet"),
  64983. name: "Paw",
  64984. image: {
  64985. source: "./media/characters/frostfire/paw.svg"
  64986. }
  64987. },
  64988. },
  64989. [
  64990. {
  64991. name: "Normal",
  64992. height: math.unit(15, "feet"),
  64993. default: true
  64994. },
  64995. ]
  64996. ))
  64997. characterMakers.push(() => makeCharacter(
  64998. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64999. {
  65000. front: {
  65001. height: math.unit(5 + 2/12, "feet"),
  65002. weight: math.unit(122, "lb"),
  65003. name: "Front",
  65004. image: {
  65005. source: "./media/characters/valeroo/front.svg",
  65006. extra: 1789/1534,
  65007. bottom: 66/1855
  65008. }
  65009. },
  65010. back: {
  65011. height: math.unit(5 + 2/12, "feet"),
  65012. weight: math.unit(122, "lb"),
  65013. name: "Back",
  65014. image: {
  65015. source: "./media/characters/valeroo/back.svg",
  65016. extra: 1848/1588,
  65017. bottom: 68/1916
  65018. }
  65019. },
  65020. head: {
  65021. height: math.unit(1.87, "feet"),
  65022. name: "Head",
  65023. image: {
  65024. source: "./media/characters/valeroo/head.svg"
  65025. }
  65026. },
  65027. hand: {
  65028. height: math.unit(0.82, "feet"),
  65029. name: "Hand",
  65030. image: {
  65031. source: "./media/characters/valeroo/hand.svg"
  65032. }
  65033. },
  65034. foot: {
  65035. height: math.unit(2.42, "feet"),
  65036. name: "Foot",
  65037. image: {
  65038. source: "./media/characters/valeroo/foot.svg"
  65039. }
  65040. },
  65041. },
  65042. [
  65043. {
  65044. name: "Normal",
  65045. height: math.unit(5 + 2/12, "feet"),
  65046. default: true
  65047. },
  65048. ]
  65049. ))
  65050. characterMakers.push(() => makeCharacter(
  65051. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65052. {
  65053. front: {
  65054. height: math.unit(11 + 3/12, "feet"),
  65055. name: "Front",
  65056. image: {
  65057. source: "./media/characters/corrin/front.svg",
  65058. extra: 665/597,
  65059. bottom: 74/739
  65060. }
  65061. },
  65062. },
  65063. [
  65064. {
  65065. name: "Standard",
  65066. height: math.unit(11 + 3/12, "feet"),
  65067. default: true
  65068. },
  65069. {
  65070. name: "The Boss",
  65071. height: math.unit(110, "feet")
  65072. },
  65073. {
  65074. name: "Shipbreaker",
  65075. height: math.unit(38, "km")
  65076. },
  65077. ]
  65078. ))
  65079. characterMakers.push(() => makeCharacter(
  65080. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65081. {
  65082. front: {
  65083. height: math.unit(10, "feet"),
  65084. weight: math.unit(1750, "lb"),
  65085. name: "Front",
  65086. image: {
  65087. source: "./media/characters/kiba-ulrich/front.svg",
  65088. extra: 1037/973,
  65089. bottom: 36/1073
  65090. }
  65091. },
  65092. },
  65093. [
  65094. {
  65095. name: "Normal",
  65096. height: math.unit(10, "feet"),
  65097. default: true
  65098. },
  65099. {
  65100. name: "Minimacro",
  65101. height: math.unit(20, "feet")
  65102. },
  65103. {
  65104. name: "Macro",
  65105. height: math.unit(200, "feet")
  65106. },
  65107. {
  65108. name: "Megamacro",
  65109. height: math.unit(22500, "feet")
  65110. },
  65111. {
  65112. name: "Gigamacro",
  65113. height: math.unit(2700, "miles")
  65114. },
  65115. {
  65116. name: "Teramacro",
  65117. height: math.unit(10000, "miles")
  65118. },
  65119. ]
  65120. ))
  65121. characterMakers.push(() => makeCharacter(
  65122. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65123. {
  65124. gryphon_front: {
  65125. height: math.unit(220, "cm"),
  65126. weight: math.unit(160, "kg"),
  65127. name: "Front",
  65128. image: {
  65129. source: "./media/characters/ceanoth/gryphon-front.svg",
  65130. extra: 616/552,
  65131. bottom: 33/649
  65132. },
  65133. form: "gryphon",
  65134. default: true
  65135. },
  65136. },
  65137. [
  65138. {
  65139. name: "Normal",
  65140. height: math.unit(220, "cm"),
  65141. form: "gryphon",
  65142. default: true
  65143. },
  65144. ],
  65145. {
  65146. "gryphon": {
  65147. name: "Grpyhon",
  65148. default: true
  65149. },
  65150. }
  65151. ))
  65152. characterMakers.push(() => makeCharacter(
  65153. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65154. {
  65155. dressed: {
  65156. height: math.unit(2.2 * 0.79, "meters"),
  65157. weight: math.unit(0.5, "tonnes"),
  65158. name: "Dressed",
  65159. image: {
  65160. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65161. extra: 665/315,
  65162. bottom: 106/771
  65163. },
  65164. extraAttributes: {
  65165. "bodyLength": {
  65166. name: "Body Length",
  65167. power: 1,
  65168. type: "length",
  65169. base: math.unit(2.5, "meters")
  65170. },
  65171. "tailLength": {
  65172. name: "Tail Length",
  65173. power: 1,
  65174. type: "length",
  65175. base: math.unit(4.5, "meters")
  65176. },
  65177. "wingspan": {
  65178. name: "Wingspan",
  65179. power: 1,
  65180. type: "length",
  65181. base: math.unit(6, "meters")
  65182. },
  65183. "taurStomachCapacity": {
  65184. name: "Taur Stomach Capacity",
  65185. power: 3,
  65186. type: "volume",
  65187. base: math.unit(4, "people"),
  65188. defaultUnit: "people"
  65189. },
  65190. "anthroStomachCapacity": {
  65191. name: "Anthro Stomach Capacity",
  65192. power: 3,
  65193. type: "volume",
  65194. base: math.unit(1, "people"),
  65195. defaultUnit: "people"
  65196. },
  65197. }
  65198. },
  65199. nude: {
  65200. height: math.unit(2.2 * 0.79, "meters"),
  65201. weight: math.unit(0.5, "tonnes"),
  65202. name: "Nude",
  65203. image: {
  65204. source: "./media/characters/vanadiya-athelya/nude.svg",
  65205. extra: 665/315,
  65206. bottom: 106/771
  65207. },
  65208. extraAttributes: {
  65209. "bodyLength": {
  65210. name: "Body Length",
  65211. power: 1,
  65212. type: "length",
  65213. base: math.unit(2.5, "meters")
  65214. },
  65215. "tailLength": {
  65216. name: "Tail Length",
  65217. power: 1,
  65218. type: "length",
  65219. base: math.unit(4.5, "meters")
  65220. },
  65221. "wingspan": {
  65222. name: "Wingspan",
  65223. power: 1,
  65224. type: "length",
  65225. base: math.unit(6, "meters")
  65226. },
  65227. "taurStomachCapacity": {
  65228. name: "Taur Stomach Capacity",
  65229. power: 3,
  65230. type: "volume",
  65231. base: math.unit(4, "people"),
  65232. defaultUnit: "people"
  65233. },
  65234. "anthroStomachCapacity": {
  65235. name: "Anthro Stomach Capacity",
  65236. power: 3,
  65237. type: "volume",
  65238. base: math.unit(1, "people"),
  65239. defaultUnit: "people"
  65240. },
  65241. }
  65242. },
  65243. },
  65244. [
  65245. {
  65246. name: "Handheld",
  65247. height: math.unit(0.79 * 0.06, "meters")
  65248. },
  65249. {
  65250. name: "Mini",
  65251. height: math.unit(0.79 * 0.7, "meters")
  65252. },
  65253. {
  65254. name: "Short",
  65255. height: math.unit(0.79 * 1.4, "meters")
  65256. },
  65257. {
  65258. name: "Imposing",
  65259. height: math.unit(0.79 * 2.2, "meters"),
  65260. default: true
  65261. },
  65262. {
  65263. name: "Big",
  65264. height: math.unit(0.79 * 3.8, "meters")
  65265. },
  65266. {
  65267. name: "Giant",
  65268. height: math.unit(0.79 * 6.7, "meters")
  65269. },
  65270. {
  65271. name: "Airliner",
  65272. height: math.unit(0.79 * 64, "meters")
  65273. },
  65274. {
  65275. name: "Skyscraper",
  65276. height: math.unit(0.79 * 220, "meters")
  65277. },
  65278. {
  65279. name: "Mountain",
  65280. height: math.unit(0.79 * 3.6, "km")
  65281. },
  65282. {
  65283. name: "Spacescraper",
  65284. height: math.unit(0.79 * 70, "km")
  65285. },
  65286. {
  65287. name: "Continental",
  65288. height: math.unit(0.79 * 1290, "km")
  65289. },
  65290. {
  65291. name: "Moon",
  65292. height: math.unit(0.79 * 32200, "km")
  65293. },
  65294. {
  65295. name: "Planetary",
  65296. height: math.unit(0.79 * 145000, "km")
  65297. },
  65298. {
  65299. name: "Stellar",
  65300. height: math.unit(0.79 * 19e6, "km")
  65301. },
  65302. {
  65303. name: "Solar",
  65304. height: math.unit(0.79 * 40, "AU")
  65305. },
  65306. {
  65307. name: "Intersteller",
  65308. height: math.unit(0.79 * 3, "lightyears")
  65309. },
  65310. {
  65311. name: "Star Cluster",
  65312. height: math.unit(0.79 * 80, "lightyears")
  65313. },
  65314. {
  65315. name: "Ecumenical",
  65316. height: math.unit(0.79 * 2e3, "lightyears")
  65317. },
  65318. {
  65319. name: "Galactic",
  65320. height: math.unit(0.79 * 175000, "lightyears")
  65321. },
  65322. {
  65323. name: "Galaxy Cluster",
  65324. height: math.unit(0.79 * 25e6, "lightyears")
  65325. },
  65326. ]
  65327. ))
  65328. characterMakers.push(() => makeCharacter(
  65329. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65330. {
  65331. front: {
  65332. height: math.unit(6 + 2/12, "feet"),
  65333. weight: math.unit(160, "lb"),
  65334. name: "Front",
  65335. image: {
  65336. source: "./media/characters/yana-amelin/front.svg",
  65337. extra: 1413/1295,
  65338. bottom: 42/1455
  65339. }
  65340. },
  65341. back: {
  65342. height: math.unit(6 + 2/12, "feet"),
  65343. weight: math.unit(160, "lb"),
  65344. name: "Back",
  65345. image: {
  65346. source: "./media/characters/yana-amelin/back.svg",
  65347. extra: 1424/1310,
  65348. bottom: 24/1448
  65349. }
  65350. },
  65351. paws: {
  65352. height: math.unit(1.48, "feet"),
  65353. name: "Paws",
  65354. image: {
  65355. source: "./media/characters/yana-amelin/paws.svg",
  65356. extra: 304/304,
  65357. bottom: 49/353
  65358. }
  65359. },
  65360. },
  65361. [
  65362. {
  65363. name: "Micro",
  65364. height: math.unit(4, "inches")
  65365. },
  65366. {
  65367. name: "Normal",
  65368. height: math.unit(6 + 2/12, "feet"),
  65369. default: true
  65370. },
  65371. {
  65372. name: "Minimacro",
  65373. height: math.unit(20, "feet")
  65374. },
  65375. {
  65376. name: "Macro",
  65377. height: math.unit(70, "feet")
  65378. },
  65379. ]
  65380. ))
  65381. characterMakers.push(() => makeCharacter(
  65382. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65383. {
  65384. frontNsfw: {
  65385. height: math.unit(2.48, "meters"),
  65386. weight: math.unit(112, "kg"),
  65387. name: "Front (NSFW)",
  65388. image: {
  65389. source: "./media/characters/titania/front-nsfw.svg",
  65390. extra: 1302/1232,
  65391. bottom: 90/1392
  65392. }
  65393. },
  65394. backNsfw: {
  65395. height: math.unit(2.48, "meters"),
  65396. weight: math.unit(112, "kg"),
  65397. name: "Back (NSFW)",
  65398. image: {
  65399. source: "./media/characters/titania/back-nsfw.svg",
  65400. extra: 1355/1288,
  65401. bottom: 18/1373
  65402. }
  65403. },
  65404. frontSfw: {
  65405. height: math.unit(2.48, "meters"),
  65406. weight: math.unit(112, "kg"),
  65407. name: "Front (SFW)",
  65408. image: {
  65409. source: "./media/characters/titania/front-sfw.svg",
  65410. extra: 1302/1232,
  65411. bottom: 90/1392
  65412. }
  65413. },
  65414. backSfw: {
  65415. height: math.unit(2.48, "meters"),
  65416. weight: math.unit(112, "kg"),
  65417. name: "Back (SFW)",
  65418. image: {
  65419. source: "./media/characters/titania/back-sfw.svg",
  65420. extra: 1355/1288,
  65421. bottom: 18/1373
  65422. }
  65423. },
  65424. head: {
  65425. height: math.unit(2.06, "feet"),
  65426. name: "Head",
  65427. image: {
  65428. source: "./media/characters/titania/head.svg"
  65429. }
  65430. },
  65431. maw: {
  65432. height: math.unit(0.8, "feet"),
  65433. name: "Maw",
  65434. image: {
  65435. source: "./media/characters/titania/maw.svg"
  65436. }
  65437. },
  65438. foot: {
  65439. height: math.unit(1.65, "feet"),
  65440. name: "Foot",
  65441. image: {
  65442. source: "./media/characters/titania/foot.svg"
  65443. }
  65444. },
  65445. nethers: {
  65446. height: math.unit(1.7, "feet"),
  65447. name: "Nethers",
  65448. image: {
  65449. source: "./media/characters/titania/nethers.svg"
  65450. }
  65451. },
  65452. },
  65453. [
  65454. {
  65455. name: "Normal",
  65456. height: math.unit(2.48, "meters"),
  65457. default: true
  65458. },
  65459. {
  65460. name: "Mini Macro",
  65461. height: math.unit(248, "meters")
  65462. },
  65463. {
  65464. name: "Macro",
  65465. height: math.unit(620, "meters")
  65466. },
  65467. {
  65468. name: "Mega Macro",
  65469. height: math.unit(1860, "meters")
  65470. },
  65471. ]
  65472. ))
  65473. characterMakers.push(() => makeCharacter(
  65474. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65475. {
  65476. front: {
  65477. height: math.unit(5 + 9/12, "feet"),
  65478. weight: math.unit(1500, "lb"),
  65479. name: "Front",
  65480. image: {
  65481. source: "./media/characters/tony-gray/front.svg",
  65482. extra: 700/575,
  65483. bottom: 71/771
  65484. }
  65485. },
  65486. },
  65487. [
  65488. {
  65489. name: "Normal",
  65490. height: math.unit(5 + 9/12, "feet"),
  65491. default: true
  65492. },
  65493. ]
  65494. ))
  65495. characterMakers.push(() => makeCharacter(
  65496. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65497. {
  65498. side: {
  65499. height: math.unit(8 + 2/12, "feet"),
  65500. name: "Side",
  65501. image: {
  65502. source: "./media/characters/kelby/side.svg",
  65503. extra: 804/578,
  65504. bottom: 70/874
  65505. },
  65506. form: "regular",
  65507. default: true
  65508. },
  65509. lounging: {
  65510. height: math.unit(12.41, "feet"),
  65511. name: "Lounging",
  65512. image: {
  65513. source: "./media/characters/kelby/lounging.svg"
  65514. },
  65515. form: "regular"
  65516. },
  65517. maw: {
  65518. height: math.unit(5, "feet"),
  65519. name: "Maw",
  65520. image: {
  65521. source: "./media/characters/kelby/maw.svg"
  65522. },
  65523. form: "regular"
  65524. },
  65525. dick: {
  65526. height: math.unit(2.4, "feet"),
  65527. name: "Dick",
  65528. image: {
  65529. source: "./media/characters/kelby/dick.svg"
  65530. },
  65531. form: "regular"
  65532. },
  65533. slit: {
  65534. height: math.unit(1.2, "feet"),
  65535. name: "Slit",
  65536. image: {
  65537. source: "./media/characters/kelby/slit.svg"
  65538. },
  65539. form: "regular"
  65540. },
  65541. chibi: {
  65542. height: math.unit(5, "feet"),
  65543. name: "Chibi",
  65544. image: {
  65545. source: "./media/characters/kelby/chibi.svg",
  65546. extra: 245/200,
  65547. bottom: 43/288
  65548. },
  65549. form: "chibi",
  65550. default: true
  65551. },
  65552. },
  65553. [
  65554. {
  65555. name: "Normal",
  65556. height: math.unit(8 + 2/12, "feet"),
  65557. default: true,
  65558. form: "regular"
  65559. },
  65560. {
  65561. name: "Normal",
  65562. height: math.unit(5, "feet"),
  65563. default: true,
  65564. form: "chibi"
  65565. },
  65566. ],
  65567. {
  65568. "regular": {
  65569. name: "Regular",
  65570. default: true
  65571. },
  65572. "chibi": {
  65573. name: "Chibi",
  65574. },
  65575. }
  65576. ))
  65577. characterMakers.push(() => makeCharacter(
  65578. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65579. {
  65580. front: {
  65581. height: math.unit(7 + 10/12, "feet"),
  65582. weight: math.unit(300, "lb"),
  65583. name: "Front",
  65584. image: {
  65585. source: "./media/characters/elisa-mitchell/front.svg",
  65586. extra: 2562/2355,
  65587. bottom: 62/2624
  65588. }
  65589. },
  65590. maw: {
  65591. height: math.unit(2.37, "feet"),
  65592. name: "Maw",
  65593. image: {
  65594. source: "./media/characters/elisa-mitchell/maw.svg"
  65595. }
  65596. },
  65597. },
  65598. [
  65599. {
  65600. name: "Normal",
  65601. height: math.unit(7 + 10/12, "feet"),
  65602. default: true
  65603. },
  65604. {
  65605. name: "Macro",
  65606. height: math.unit(1490, "feet"),
  65607. default: true
  65608. },
  65609. ]
  65610. ))
  65611. characterMakers.push(() => makeCharacter(
  65612. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65613. {
  65614. front: {
  65615. height: math.unit(122, "cm"),
  65616. weight: math.unit(40, "lb"),
  65617. name: "Front",
  65618. image: {
  65619. source: "./media/characters/camia-vertigo-zott/front.svg",
  65620. extra: 2112/1902,
  65621. bottom: 21/2133
  65622. }
  65623. },
  65624. },
  65625. [
  65626. {
  65627. name: "Base Height",
  65628. height: math.unit(122, "cm")
  65629. },
  65630. {
  65631. name: "Macro Height",
  65632. height: math.unit(345, "meters"),
  65633. default: true
  65634. },
  65635. ]
  65636. ))
  65637. characterMakers.push(() => makeCharacter(
  65638. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65639. {
  65640. front: {
  65641. height: math.unit(6 + 3/12, "feet"),
  65642. weight: math.unit(180, "lb"),
  65643. name: "Front",
  65644. image: {
  65645. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65646. extra: 2580/2457,
  65647. bottom: 131/2711
  65648. }
  65649. },
  65650. },
  65651. [
  65652. {
  65653. name: "Normal",
  65654. height: math.unit(6 + 3/12, "feet"),
  65655. default: true
  65656. },
  65657. ]
  65658. ))
  65659. characterMakers.push(() => makeCharacter(
  65660. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65661. {
  65662. front: {
  65663. height: math.unit(165, "cm"),
  65664. weight: math.unit(130, "lb"),
  65665. name: "Front",
  65666. image: {
  65667. source: "./media/characters/sleeka/front.svg",
  65668. extra: 1252/1200,
  65669. bottom: 46/1298
  65670. }
  65671. },
  65672. },
  65673. [
  65674. {
  65675. name: "Normal",
  65676. height: math.unit(165, "cm")
  65677. },
  65678. {
  65679. name: "Galactic",
  65680. height: math.unit(5.8e22, "meters"),
  65681. default: true
  65682. },
  65683. {
  65684. name: "Universal",
  65685. height: math.unit(1.02e29, "meters")
  65686. },
  65687. ]
  65688. ))
  65689. characterMakers.push(() => makeCharacter(
  65690. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65691. {
  65692. front: {
  65693. height: math.unit(5 + 11/12, "feet"),
  65694. weight: math.unit(145, "lb"),
  65695. name: "Front",
  65696. image: {
  65697. source: "./media/characters/emily-whitetail/front.svg",
  65698. extra: 2510/2280,
  65699. bottom: 128/2638
  65700. }
  65701. },
  65702. },
  65703. [
  65704. {
  65705. name: "Normal",
  65706. height: math.unit(5 + 11/12, "feet")
  65707. },
  65708. {
  65709. name: "Galactic",
  65710. height: math.unit(6.3e22, "meters"),
  65711. default: true
  65712. },
  65713. {
  65714. name: "Universal",
  65715. height: math.unit(1.12e29, "meters")
  65716. },
  65717. ]
  65718. ))
  65719. characterMakers.push(() => makeCharacter(
  65720. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65721. {
  65722. front: {
  65723. height: math.unit(5 + 4/12, "feet"),
  65724. weight: math.unit(110, "lb"),
  65725. name: "Front",
  65726. image: {
  65727. source: "./media/characters/buck-whitetail/front.svg",
  65728. extra: 2430/2186,
  65729. bottom: 125/2555
  65730. }
  65731. },
  65732. },
  65733. [
  65734. {
  65735. name: "Normal",
  65736. height: math.unit(5 + 4/12, "feet")
  65737. },
  65738. {
  65739. name: "Galactic",
  65740. height: math.unit(5.4e22, "meters"),
  65741. default: true
  65742. },
  65743. {
  65744. name: "Universal",
  65745. height: math.unit(9.6e28, "meters")
  65746. },
  65747. ]
  65748. ))
  65749. characterMakers.push(() => makeCharacter(
  65750. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65751. {
  65752. front: {
  65753. height: math.unit(5 + 3/12, "feet"),
  65754. name: "Front",
  65755. image: {
  65756. source: "./media/characters/zoey-frisk/front.svg",
  65757. extra: 2825/2646,
  65758. bottom: 57/2882
  65759. }
  65760. },
  65761. },
  65762. [
  65763. {
  65764. name: "Normal",
  65765. height: math.unit(5 + 3/12, "feet"),
  65766. default: true
  65767. },
  65768. {
  65769. name: "Macro",
  65770. height: math.unit(800, "feet")
  65771. },
  65772. ]
  65773. ))
  65774. characterMakers.push(() => makeCharacter(
  65775. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65776. {
  65777. front: {
  65778. height: math.unit(210, "cm"),
  65779. weight: math.unit(102, "kg"),
  65780. name: "Front",
  65781. image: {
  65782. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65783. extra: 831/790,
  65784. bottom: 19/850
  65785. }
  65786. },
  65787. },
  65788. [
  65789. {
  65790. name: "Micro",
  65791. height: math.unit(1, "mm")
  65792. },
  65793. {
  65794. name: "Small",
  65795. height: math.unit(1, "cm")
  65796. },
  65797. {
  65798. name: "Short",
  65799. height: math.unit(1, "foot")
  65800. },
  65801. {
  65802. name: "Normal",
  65803. height: math.unit(210, "cm"),
  65804. default: true
  65805. },
  65806. {
  65807. name: "Big",
  65808. height: math.unit(15, "feet")
  65809. },
  65810. {
  65811. name: "Macro",
  65812. height: math.unit(50, "feet")
  65813. },
  65814. ]
  65815. ))
  65816. characterMakers.push(() => makeCharacter(
  65817. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65818. {
  65819. front: {
  65820. height: math.unit(80, "feet"),
  65821. weight: math.unit(410000, "lb"),
  65822. name: "Front",
  65823. image: {
  65824. source: "./media/characters/trouble/front.svg",
  65825. extra: 780/723,
  65826. bottom: 11/791
  65827. },
  65828. extraAttributes: {
  65829. "pawArea": {
  65830. name: "Paw Area",
  65831. power: 2,
  65832. type: "area",
  65833. base: math.unit(49, "feet^2")
  65834. },
  65835. }
  65836. },
  65837. },
  65838. [
  65839. {
  65840. name: "Normal",
  65841. height: math.unit(80, "feet"),
  65842. default: true
  65843. },
  65844. ]
  65845. ))
  65846. characterMakers.push(() => makeCharacter(
  65847. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65848. {
  65849. front: {
  65850. height: math.unit(5 + 7/12, "feet"),
  65851. weight: math.unit(140, "lb"),
  65852. name: "Front",
  65853. image: {
  65854. source: "./media/characters/bastion-aralus/front.svg",
  65855. extra: 1122/1045,
  65856. bottom: 24/1146
  65857. }
  65858. },
  65859. back: {
  65860. height: math.unit(5 + 7/12, "feet"),
  65861. weight: math.unit(140, "lb"),
  65862. name: "Back",
  65863. image: {
  65864. source: "./media/characters/bastion-aralus/back.svg",
  65865. extra: 1158/1078,
  65866. bottom: 39/1197
  65867. }
  65868. },
  65869. dick: {
  65870. height: math.unit(1.16, "feet"),
  65871. name: "Dick",
  65872. image: {
  65873. source: "./media/characters/bastion-aralus/dick.svg"
  65874. }
  65875. },
  65876. },
  65877. [
  65878. {
  65879. name: "Micro",
  65880. height: math.unit(1, "mm")
  65881. },
  65882. {
  65883. name: "Normal",
  65884. height: math.unit(5 + 7/12, "feet"),
  65885. default: true
  65886. },
  65887. {
  65888. name: "Macro",
  65889. height: math.unit(57, "feet")
  65890. },
  65891. ]
  65892. ))
  65893. characterMakers.push(() => makeCharacter(
  65894. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65895. {
  65896. sona_front: {
  65897. height: math.unit(6, "feet"),
  65898. weight: math.unit(350, "lb"),
  65899. name: "Front",
  65900. image: {
  65901. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65902. extra: 1099/1005,
  65903. bottom: 22/1121
  65904. },
  65905. form: "sona",
  65906. default: true
  65907. },
  65908. sona_side: {
  65909. height: math.unit(6, "feet"),
  65910. weight: math.unit(350, "lb"),
  65911. name: "Side",
  65912. image: {
  65913. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65914. extra: 1075/1017,
  65915. bottom: 20/1095
  65916. },
  65917. form: "sona",
  65918. },
  65919. character_front: {
  65920. height: math.unit(6, "feet"),
  65921. weight: math.unit(300, "lb"),
  65922. name: "Front",
  65923. image: {
  65924. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65925. extra: 1099/1005,
  65926. bottom: 22/1121
  65927. },
  65928. form: "character",
  65929. default: true
  65930. },
  65931. character_side: {
  65932. height: math.unit(6, "feet"),
  65933. weight: math.unit(300, "lb"),
  65934. name: "Side",
  65935. image: {
  65936. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65937. extra: 1075/1017,
  65938. bottom: 20/1095
  65939. },
  65940. form: "character",
  65941. },
  65942. },
  65943. [
  65944. {
  65945. name: "Normal",
  65946. height: math.unit(500, "feet"),
  65947. default: true,
  65948. form: "sona"
  65949. },
  65950. {
  65951. name: "Normal",
  65952. height: math.unit(50, "feet"),
  65953. default: true,
  65954. form: "character"
  65955. },
  65956. ],
  65957. {
  65958. "sona": {
  65959. name: "Sona",
  65960. default: true
  65961. },
  65962. "character": {
  65963. name: "Character",
  65964. },
  65965. }
  65966. ))
  65967. characterMakers.push(() => makeCharacter(
  65968. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  65969. {
  65970. front: {
  65971. height: math.unit(5 + 4/12, "feet"),
  65972. weight: math.unit(58, "kg"),
  65973. name: "Front",
  65974. image: {
  65975. source: "./media/characters/hood/front.svg",
  65976. extra: 1474/1309,
  65977. bottom: 0/1474
  65978. }
  65979. },
  65980. },
  65981. [
  65982. {
  65983. name: "Normal",
  65984. height: math.unit(5 + 4/12, "feet"),
  65985. default: true
  65986. },
  65987. ]
  65988. ))
  65989. characterMakers.push(() => makeCharacter(
  65990. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  65991. {
  65992. front: {
  65993. height: math.unit(8 + 2/12, "feet"),
  65994. name: "Front",
  65995. image: {
  65996. source: "./media/characters/rena/front.svg",
  65997. extra: 1768/1632,
  65998. bottom: 57/1825
  65999. }
  66000. },
  66001. },
  66002. [
  66003. {
  66004. name: "Normal",
  66005. height: math.unit(8 + 2/12, "feet"),
  66006. default: true
  66007. },
  66008. ]
  66009. ))
  66010. characterMakers.push(() => makeCharacter(
  66011. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66012. {
  66013. front: {
  66014. height: math.unit(5 + 3/12, "feet"),
  66015. name: "Front",
  66016. image: {
  66017. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66018. extra: 1209/1159,
  66019. bottom: 33/1242
  66020. }
  66021. },
  66022. maw: {
  66023. height: math.unit(1.75, "feet"),
  66024. name: "Maw",
  66025. image: {
  66026. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66027. }
  66028. },
  66029. },
  66030. [
  66031. {
  66032. name: "Micro",
  66033. height: math.unit(3, "inches")
  66034. },
  66035. {
  66036. name: "Regular",
  66037. height: math.unit(5 + 3/12, "feet"),
  66038. default: true
  66039. },
  66040. {
  66041. name: "Imagined",
  66042. height: math.unit(90, "meters")
  66043. },
  66044. ]
  66045. ))
  66046. characterMakers.push(() => makeCharacter(
  66047. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66048. {
  66049. front: {
  66050. height: math.unit(11.75, "feet"),
  66051. weight: math.unit(4346, "lb"),
  66052. preyCapacity: math.unit(20, "people"),
  66053. name: "Front",
  66054. image: {
  66055. source: "./media/characters/suma-roo/front.svg",
  66056. extra: 1370/1365,
  66057. bottom: 164/1534
  66058. }
  66059. },
  66060. },
  66061. [
  66062. {
  66063. name: "Normal",
  66064. height: math.unit(11.75, "feet"),
  66065. default: true
  66066. },
  66067. ]
  66068. ))
  66069. characterMakers.push(() => makeCharacter(
  66070. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66071. {
  66072. front: {
  66073. height: math.unit(2.35, "meters"),
  66074. weight: math.unit(240, "kg"),
  66075. name: "Front",
  66076. image: {
  66077. source: "./media/characters/hymmanios/front.svg",
  66078. extra: 2032/1994,
  66079. bottom: 194/2226
  66080. }
  66081. },
  66082. },
  66083. [
  66084. {
  66085. name: "Normal",
  66086. height: math.unit(2.35, "meters"),
  66087. default: true
  66088. },
  66089. {
  66090. name: "Macro",
  66091. height: math.unit(75, "meters")
  66092. },
  66093. {
  66094. name: "Mega",
  66095. height: math.unit(1250, "meters")
  66096. },
  66097. {
  66098. name: "Giga",
  66099. height: math.unit(235000, "meters")
  66100. },
  66101. ]
  66102. ))
  66103. characterMakers.push(() => makeCharacter(
  66104. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66105. {
  66106. front: {
  66107. height: math.unit(134, "feet"),
  66108. weight: math.unit(932.635, "tons"),
  66109. name: "Front",
  66110. image: {
  66111. source: "./media/characters/azalea/front.svg",
  66112. extra: 703/687,
  66113. bottom: 75/778
  66114. }
  66115. },
  66116. },
  66117. [
  66118. {
  66119. name: "Normal",
  66120. height: math.unit(134, "feet"),
  66121. default: true
  66122. },
  66123. ]
  66124. ))
  66125. characterMakers.push(() => makeCharacter(
  66126. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66127. {
  66128. front: {
  66129. height: math.unit(6.4, "feet"),
  66130. weight: math.unit(167.5, "lb"),
  66131. name: "Front",
  66132. image: {
  66133. source: "./media/characters/lizzy/front.svg",
  66134. extra: 1916/1791,
  66135. bottom: 103/2019
  66136. }
  66137. },
  66138. back: {
  66139. height: math.unit(6.4, "feet"),
  66140. weight: math.unit(167.5, "lb"),
  66141. name: "Back",
  66142. image: {
  66143. source: "./media/characters/lizzy/back.svg",
  66144. extra: 1995/1856,
  66145. bottom: 11/2006
  66146. }
  66147. },
  66148. },
  66149. [
  66150. {
  66151. name: "Normal",
  66152. height: math.unit(6.4, "feet"),
  66153. default: true
  66154. },
  66155. ]
  66156. ))
  66157. characterMakers.push(() => makeCharacter(
  66158. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66159. {
  66160. front: {
  66161. height: math.unit(66, "inches"),
  66162. name: "Front",
  66163. image: {
  66164. source: "./media/characters/sasha/front.svg",
  66165. extra: 620/571,
  66166. bottom: 33/653
  66167. }
  66168. },
  66169. back: {
  66170. height: math.unit(66, "inches"),
  66171. name: "Back",
  66172. image: {
  66173. source: "./media/characters/sasha/back.svg",
  66174. extra: 615/564,
  66175. bottom: 38/653
  66176. }
  66177. },
  66178. },
  66179. [
  66180. {
  66181. name: "IRL",
  66182. height: math.unit(2, "inches")
  66183. },
  66184. {
  66185. name: "Normal",
  66186. height: math.unit(66, "inches"),
  66187. default: true
  66188. },
  66189. {
  66190. name: "Macro",
  66191. height: math.unit(400, "feet")
  66192. },
  66193. {
  66194. name: "Mega Macro",
  66195. height: math.unit(500000, "feet")
  66196. },
  66197. {
  66198. name: "Giga Macro",
  66199. height: math.unit(50000, "miles")
  66200. },
  66201. ]
  66202. ))
  66203. characterMakers.push(() => makeCharacter(
  66204. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66205. {
  66206. front: {
  66207. height: math.unit(52, "inches"),
  66208. name: "Front",
  66209. image: {
  66210. source: "./media/characters/autumn-avali/front.svg",
  66211. extra: 1031/908,
  66212. bottom: 38/1069
  66213. }
  66214. },
  66215. back: {
  66216. height: math.unit(52, "inches"),
  66217. name: "Back",
  66218. image: {
  66219. source: "./media/characters/autumn-avali/back.svg",
  66220. extra: 1047/923,
  66221. bottom: 11/1058
  66222. }
  66223. },
  66224. maw: {
  66225. height: math.unit(0.59, "feet"),
  66226. name: "Maw",
  66227. image: {
  66228. source: "./media/characters/autumn-avali/maw.svg"
  66229. }
  66230. },
  66231. },
  66232. [
  66233. {
  66234. name: "Normal",
  66235. height: math.unit(52, "inches"),
  66236. default: true
  66237. },
  66238. {
  66239. name: "Big'vali",
  66240. height: math.unit(3.5, "meters")
  66241. },
  66242. {
  66243. name: "Macro",
  66244. height: math.unit(35, "meters")
  66245. },
  66246. {
  66247. name: "Macro+",
  66248. height: math.unit(165, "meters")
  66249. },
  66250. {
  66251. name: "Megamacro",
  66252. height: math.unit(8250, "meters")
  66253. },
  66254. {
  66255. name: "Megamacro+",
  66256. height: math.unit(88000, "meters")
  66257. },
  66258. {
  66259. name: "Gigamacro",
  66260. height: math.unit(1.32, "megameters")
  66261. },
  66262. {
  66263. name: "Planet Cracker",
  66264. height: math.unit(77, "megameters")
  66265. },
  66266. ]
  66267. ))
  66268. characterMakers.push(() => makeCharacter(
  66269. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66270. {
  66271. front: {
  66272. height: math.unit(200, "feet"),
  66273. name: "Front",
  66274. image: {
  66275. source: "./media/characters/sophie/front.svg",
  66276. extra: 710/680,
  66277. bottom: 3/713
  66278. },
  66279. extraAttributes: {
  66280. "milkProduction": {
  66281. name: "Milk Production",
  66282. power: 3,
  66283. type: "volume",
  66284. base: math.unit(27000, "liters")
  66285. },
  66286. }
  66287. },
  66288. },
  66289. [
  66290. {
  66291. name: "Normal",
  66292. height: math.unit(200, "feet"),
  66293. default: true
  66294. },
  66295. ]
  66296. ))
  66297. characterMakers.push(() => makeCharacter(
  66298. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66299. {
  66300. front: {
  66301. height: math.unit(23, "feet"),
  66302. name: "Front",
  66303. image: {
  66304. source: "./media/characters/adelaide-spireborn/front.svg",
  66305. extra: 671/625,
  66306. bottom: 18/689
  66307. }
  66308. },
  66309. maw: {
  66310. height: math.unit(7.8, "feet"),
  66311. name: "Maw",
  66312. image: {
  66313. source: "./media/characters/adelaide-spireborn/maw.svg"
  66314. }
  66315. },
  66316. sword: {
  66317. height: math.unit(13.4, "feet"),
  66318. name: "Sword",
  66319. image: {
  66320. source: "./media/characters/adelaide-spireborn/sword.svg"
  66321. }
  66322. },
  66323. },
  66324. [
  66325. {
  66326. name: "Magically Induced",
  66327. height: math.unit(8.5, "feet")
  66328. },
  66329. {
  66330. name: "Normal",
  66331. height: math.unit(23, "feet"),
  66332. default: true
  66333. },
  66334. ]
  66335. ))
  66336. characterMakers.push(() => makeCharacter(
  66337. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66338. {
  66339. side: {
  66340. height: math.unit(8, "feet"),
  66341. name: "Side",
  66342. image: {
  66343. source: "./media/characters/artemus/side.svg",
  66344. extra: 800/397,
  66345. bottom: 83/883
  66346. }
  66347. },
  66348. front: {
  66349. height: math.unit(8, "feet"),
  66350. name: "Front",
  66351. image: {
  66352. source: "./media/characters/artemus/front.svg",
  66353. extra: 763/348,
  66354. bottom: 89/852
  66355. }
  66356. },
  66357. maw: {
  66358. height: math.unit(5.63, "feet"),
  66359. name: "Maw",
  66360. image: {
  66361. source: "./media/characters/artemus/maw.svg"
  66362. }
  66363. },
  66364. forepaw: {
  66365. height: math.unit(3.13, "feet"),
  66366. name: "Forepaw",
  66367. image: {
  66368. source: "./media/characters/artemus/forepaw.svg"
  66369. }
  66370. },
  66371. hindpaw: {
  66372. height: math.unit(4.85, "feet"),
  66373. name: "Hindpaw",
  66374. image: {
  66375. source: "./media/characters/artemus/hindpaw.svg"
  66376. }
  66377. },
  66378. },
  66379. [
  66380. {
  66381. name: "Normal",
  66382. height: math.unit(8, "feet"),
  66383. default: true
  66384. },
  66385. ]
  66386. ))
  66387. //characters
  66388. function makeCharacters() {
  66389. const results = [];
  66390. characterMakers.forEach(character => {
  66391. results.push(character());
  66392. });
  66393. return results;
  66394. }