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.
 
 
 

65118 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. }
  2375. //species
  2376. function getSpeciesInfo(speciesList) {
  2377. let result = new Set();
  2378. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2379. result.add(entry)
  2380. });
  2381. return Array.from(result);
  2382. };
  2383. function getSpeciesInfoHelper(species) {
  2384. if (!speciesData[species]) {
  2385. console.warn(species + " doesn't exist");
  2386. return [];
  2387. }
  2388. if (speciesData[species].parents) {
  2389. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2390. } else {
  2391. return [species];
  2392. }
  2393. }
  2394. characterMakers.push(() => makeCharacter(
  2395. {
  2396. name: "Fen",
  2397. species: ["crux"],
  2398. description: {
  2399. title: "Bio",
  2400. text: "Very furry. Sheds on everything."
  2401. },
  2402. tags: [
  2403. "anthro",
  2404. "goo"
  2405. ]
  2406. },
  2407. {
  2408. front: {
  2409. height: math.unit(12, "feet"),
  2410. weight: math.unit(2400, "lb"),
  2411. preyCapacity: math.unit(1, "people"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/fen/front.svg",
  2415. extra: 1804/1562,
  2416. bottom: 205/2009
  2417. },
  2418. extraAttributes: {
  2419. pawSize: {
  2420. name: "Paw Size",
  2421. power: 2,
  2422. type: "area",
  2423. base: math.unit(0.35, "m^2")
  2424. }
  2425. }
  2426. },
  2427. diving: {
  2428. height: math.unit(4.9, "meters"),
  2429. weight: math.unit(2400, "lb"),
  2430. name: "Diving",
  2431. image: {
  2432. source: "./media/characters/fen/diving.svg"
  2433. }
  2434. },
  2435. sleeby: {
  2436. height: math.unit(3.45, "meters"),
  2437. weight: math.unit(2400, "lb"),
  2438. name: "Sleeby",
  2439. image: {
  2440. source: "./media/characters/fen/sleeby.svg"
  2441. }
  2442. },
  2443. goo: {
  2444. height: math.unit(12, "feet"),
  2445. weight: math.unit(3600, "lb"),
  2446. volume: math.unit(1000, "liters"),
  2447. preyCapacity: math.unit(6, "people"),
  2448. name: "Goo",
  2449. image: {
  2450. source: "./media/characters/fen/goo.svg",
  2451. extra: 1307/1071,
  2452. bottom: 134/1441
  2453. }
  2454. },
  2455. horror: {
  2456. height: math.unit(13.6, "feet"),
  2457. weight: math.unit(2400, "lb"),
  2458. preyCapacity: math.unit(1, "people"),
  2459. name: "Horror",
  2460. image: {
  2461. source: "./media/characters/fen/horror.svg",
  2462. extra: 893/797,
  2463. bottom: 0/893
  2464. }
  2465. },
  2466. gooNsfw: {
  2467. height: math.unit(12, "feet"),
  2468. weight: math.unit(3750, "lb"),
  2469. volume: math.unit(1000, "liters"),
  2470. preyCapacity: math.unit(6, "people"),
  2471. name: "Goo (NSFW)",
  2472. image: {
  2473. source: "./media/characters/fen/goo-nsfw.svg",
  2474. extra: 1875/1734,
  2475. bottom: 122/1997
  2476. }
  2477. },
  2478. maw: {
  2479. height: math.unit(5.03, "feet"),
  2480. name: "Maw",
  2481. image: {
  2482. source: "./media/characters/fen/maw.svg"
  2483. }
  2484. },
  2485. gooCeiling: {
  2486. height: math.unit(6.6, "feet"),
  2487. weight: math.unit(3000, "lb"),
  2488. volume: math.unit(1000, "liters"),
  2489. preyCapacity: math.unit(6, "people"),
  2490. name: "Maw (Goo)",
  2491. image: {
  2492. source: "./media/characters/fen/goo-maw.svg"
  2493. }
  2494. },
  2495. paw: {
  2496. height: math.unit(3.77, "feet"),
  2497. name: "Paw",
  2498. image: {
  2499. source: "./media/characters/fen/paw.svg"
  2500. },
  2501. extraAttributes: {
  2502. "toeSize": {
  2503. name: "Toe Size",
  2504. power: 2,
  2505. type: "area",
  2506. base: math.unit(0.02875, "m^2")
  2507. },
  2508. "pawSize": {
  2509. name: "Paw Size",
  2510. power: 2,
  2511. type: "area",
  2512. base: math.unit(0.378, "m^2")
  2513. },
  2514. }
  2515. },
  2516. tail: {
  2517. height: math.unit(12.1, "feet"),
  2518. name: "Tail",
  2519. image: {
  2520. source: "./media/characters/fen/tail.svg"
  2521. }
  2522. },
  2523. tailFull: {
  2524. height: math.unit(12.1, "feet"),
  2525. name: "Full Tail",
  2526. image: {
  2527. source: "./media/characters/fen/tail-full.svg"
  2528. }
  2529. },
  2530. back: {
  2531. height: math.unit(12, "feet"),
  2532. weight: math.unit(2400, "lb"),
  2533. name: "Back",
  2534. image: {
  2535. source: "./media/characters/fen/back.svg",
  2536. },
  2537. info: {
  2538. description: {
  2539. mode: "append",
  2540. text: "\n\nHe is not currently looking at you."
  2541. }
  2542. }
  2543. },
  2544. full: {
  2545. height: math.unit(1.85, "meter"),
  2546. weight: math.unit(3200, "lb"),
  2547. preyCapacity: math.unit(3, "people"),
  2548. name: "Full",
  2549. image: {
  2550. source: "./media/characters/fen/full.svg",
  2551. extra: 1133/859,
  2552. bottom: 145/1278
  2553. },
  2554. info: {
  2555. description: {
  2556. mode: "append",
  2557. text: "\n\nMunch."
  2558. }
  2559. }
  2560. },
  2561. gooLounging: {
  2562. height: math.unit(4.53, "feet"),
  2563. weight: math.unit(3000, "lb"),
  2564. preyCapacity: math.unit(6, "people"),
  2565. name: "Goo (Lounging)",
  2566. image: {
  2567. source: "./media/characters/fen/goo-lounging.svg",
  2568. bottom: 116 / 613
  2569. }
  2570. },
  2571. lounging: {
  2572. height: math.unit(10.52, "feet"),
  2573. weight: math.unit(2400, "lb"),
  2574. name: "Lounging",
  2575. image: {
  2576. source: "./media/characters/fen/lounging.svg"
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Small",
  2583. height: math.unit(2.2428, "meter")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(12, "feet"),
  2588. default: true,
  2589. },
  2590. {
  2591. name: "Big",
  2592. height: math.unit(20, "feet")
  2593. },
  2594. {
  2595. name: "Minimacro",
  2596. height: math.unit(40, "feet"),
  2597. info: {
  2598. description: {
  2599. mode: "append",
  2600. text: "\n\nTOO DAMN BIG"
  2601. }
  2602. }
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(100, "feet"),
  2607. info: {
  2608. description: {
  2609. mode: "append",
  2610. text: "\n\nTOO DAMN BIG"
  2611. }
  2612. }
  2613. },
  2614. {
  2615. name: "Megamacro",
  2616. height: math.unit(2, "miles")
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(10, "earths")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(183, "cm"),
  2629. weight: math.unit(80, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/sofia-fluttertail/front.svg",
  2633. bottom: 0.01,
  2634. extra: 2154 / 2081
  2635. }
  2636. },
  2637. frontAlt: {
  2638. height: math.unit(183, "cm"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Front (alt)",
  2641. image: {
  2642. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(183, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/back.svg"
  2651. }
  2652. },
  2653. kneeling: {
  2654. height: math.unit(125, "cm"),
  2655. weight: math.unit(80, "kg"),
  2656. name: "Kneeling",
  2657. image: {
  2658. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2659. extra: 1033 / 977,
  2660. bottom: 23.7 / 1057
  2661. }
  2662. },
  2663. maw: {
  2664. height: math.unit(183 / 5, "cm"),
  2665. name: "Maw",
  2666. image: {
  2667. source: "./media/characters/sofia-fluttertail/maw.svg"
  2668. }
  2669. },
  2670. mawcloseup: {
  2671. height: math.unit(183 / 5 * 0.41, "cm"),
  2672. name: "Maw (Closeup)",
  2673. image: {
  2674. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2675. }
  2676. },
  2677. paws: {
  2678. height: math.unit(1.17, "feet"),
  2679. name: "Paws",
  2680. image: {
  2681. source: "./media/characters/sofia-fluttertail/paws.svg",
  2682. extra: 851 / 851,
  2683. bottom: 17 / 868
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(1.83, "meter")
  2691. },
  2692. {
  2693. name: "Size Thief",
  2694. height: math.unit(18, "feet")
  2695. },
  2696. {
  2697. name: "50 Foot Collie",
  2698. height: math.unit(50, "feet")
  2699. },
  2700. {
  2701. name: "Macro",
  2702. height: math.unit(96, "feet"),
  2703. default: true
  2704. },
  2705. {
  2706. name: "Megamerger",
  2707. height: math.unit(650, "feet")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(7, "feet"),
  2716. weight: math.unit(100, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/march/front.svg",
  2720. extra: 1992/1851,
  2721. bottom: 39/2031
  2722. }
  2723. },
  2724. foot: {
  2725. height: math.unit(0.9, "feet"),
  2726. name: "Foot",
  2727. image: {
  2728. source: "./media/characters/march/foot.svg"
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Normal",
  2735. height: math.unit(7.9, "feet")
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(220, "meters")
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(2.98, "km"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Gigamacro",
  2748. height: math.unit(15963, "km")
  2749. },
  2750. {
  2751. name: "Teramacro",
  2752. height: math.unit(2980000000, "km")
  2753. },
  2754. {
  2755. name: "Examacro",
  2756. height: math.unit(250, "parsecs")
  2757. },
  2758. ]
  2759. ))
  2760. characterMakers.push(() => makeCharacter(
  2761. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2762. {
  2763. front: {
  2764. height: math.unit(6, "feet"),
  2765. weight: math.unit(60, "kg"),
  2766. name: "Front",
  2767. image: {
  2768. source: "./media/characters/noir/front.svg",
  2769. extra: 1,
  2770. bottom: 0.032
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(6.6, "feet")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(500, "feet")
  2782. },
  2783. {
  2784. name: "Megamacro",
  2785. height: math.unit(2.5, "km"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(22500, "km")
  2791. },
  2792. {
  2793. name: "Teramacro",
  2794. height: math.unit(2500000000, "km")
  2795. },
  2796. {
  2797. name: "Examacro",
  2798. height: math.unit(200, "parsecs")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(7, "feet"),
  2807. weight: math.unit(100, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/okuri/front.svg",
  2811. extra: 739/665,
  2812. bottom: 39/778
  2813. }
  2814. },
  2815. back: {
  2816. height: math.unit(7, "feet"),
  2817. weight: math.unit(100, "kg"),
  2818. name: "Back",
  2819. image: {
  2820. source: "./media/characters/okuri/back.svg",
  2821. extra: 734/653,
  2822. bottom: 13/747
  2823. }
  2824. },
  2825. sitting: {
  2826. height: math.unit(2.95, "feet"),
  2827. weight: math.unit(100, "kg"),
  2828. name: "Sitting",
  2829. image: {
  2830. source: "./media/characters/okuri/sitting.svg",
  2831. extra: 370/318,
  2832. bottom: 99/469
  2833. }
  2834. },
  2835. },
  2836. [
  2837. {
  2838. name: "Smallest",
  2839. height: math.unit(5 + 2/12, "feet")
  2840. },
  2841. {
  2842. name: "Smaller",
  2843. height: math.unit(300, "feet")
  2844. },
  2845. {
  2846. name: "Small",
  2847. height: math.unit(1000, "feet")
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(1, "mile")
  2852. },
  2853. {
  2854. name: "Mega Macro (Small)",
  2855. height: math.unit(20, "km")
  2856. },
  2857. {
  2858. name: "Mega Macro (Large)",
  2859. height: math.unit(600, "km")
  2860. },
  2861. {
  2862. name: "Giga Macro",
  2863. height: math.unit(10000, "km")
  2864. },
  2865. {
  2866. name: "Normal",
  2867. height: math.unit(577560, "km"),
  2868. default: true
  2869. },
  2870. {
  2871. name: "Large",
  2872. height: math.unit(4, "galaxies")
  2873. },
  2874. {
  2875. name: "Largest",
  2876. height: math.unit(15, "multiverses")
  2877. },
  2878. ]
  2879. ))
  2880. characterMakers.push(() => makeCharacter(
  2881. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2882. {
  2883. front: {
  2884. height: math.unit(7, "feet"),
  2885. weight: math.unit(100, "kg"),
  2886. name: "Front",
  2887. image: {
  2888. source: "./media/characters/manny/front.svg",
  2889. extra: 1,
  2890. bottom: 0.06
  2891. }
  2892. },
  2893. back: {
  2894. height: math.unit(7, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Back",
  2897. image: {
  2898. source: "./media/characters/manny/back.svg",
  2899. extra: 1,
  2900. bottom: 0.014
  2901. }
  2902. },
  2903. },
  2904. [
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(7, "feet"),
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(78, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Macro+",
  2916. height: math.unit(300, "meters")
  2917. },
  2918. {
  2919. name: "Macro++",
  2920. height: math.unit(2400, "meters")
  2921. },
  2922. {
  2923. name: "Megamacro",
  2924. height: math.unit(5167, "meters")
  2925. },
  2926. {
  2927. name: "Gigamacro",
  2928. height: math.unit(41769, "miles")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2934. {
  2935. front: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front",
  2939. image: {
  2940. source: "./media/characters/adake/front-1.svg"
  2941. }
  2942. },
  2943. frontAlt: {
  2944. height: math.unit(7, "feet"),
  2945. weight: math.unit(100, "kg"),
  2946. name: "Front (Alt)",
  2947. image: {
  2948. source: "./media/characters/adake/front-2.svg",
  2949. extra: 1,
  2950. bottom: 0.01
  2951. }
  2952. },
  2953. back: {
  2954. height: math.unit(7, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Back",
  2957. image: {
  2958. source: "./media/characters/adake/back.svg",
  2959. }
  2960. },
  2961. kneel: {
  2962. height: math.unit(5.385, "feet"),
  2963. weight: math.unit(100, "kg"),
  2964. name: "Kneeling",
  2965. image: {
  2966. source: "./media/characters/adake/kneel.svg",
  2967. bottom: 0.052
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(7, "feet"),
  2975. },
  2976. {
  2977. name: "Macro",
  2978. height: math.unit(78, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Macro+",
  2983. height: math.unit(300, "meters")
  2984. },
  2985. {
  2986. name: "Macro++",
  2987. height: math.unit(2400, "meters")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(5167, "meters")
  2992. },
  2993. {
  2994. name: "Gigamacro",
  2995. height: math.unit(41769, "miles")
  2996. },
  2997. ]
  2998. ))
  2999. characterMakers.push(() => makeCharacter(
  3000. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3001. {
  3002. front: {
  3003. height: math.unit(1.65, "meters"),
  3004. weight: math.unit(50, "kg"),
  3005. name: "Front",
  3006. image: {
  3007. source: "./media/characters/elijah/front.svg",
  3008. extra: 858 / 830,
  3009. bottom: 95.5 / 953.8559
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(1.65, "meters"),
  3014. weight: math.unit(50, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/elijah/back.svg",
  3018. extra: 895 / 850,
  3019. bottom: 5.3 / 897.956
  3020. }
  3021. },
  3022. frontNsfw: {
  3023. height: math.unit(1.65, "meters"),
  3024. weight: math.unit(50, "kg"),
  3025. name: "Front (NSFW)",
  3026. image: {
  3027. source: "./media/characters/elijah/front-nsfw.svg",
  3028. extra: 858 / 830,
  3029. bottom: 95.5 / 953.8559
  3030. }
  3031. },
  3032. backNsfw: {
  3033. height: math.unit(1.65, "meters"),
  3034. weight: math.unit(50, "kg"),
  3035. name: "Back (NSFW)",
  3036. image: {
  3037. source: "./media/characters/elijah/back-nsfw.svg",
  3038. extra: 895 / 850,
  3039. bottom: 5.3 / 897.956
  3040. }
  3041. },
  3042. dick: {
  3043. height: math.unit(1, "feet"),
  3044. name: "Dick",
  3045. image: {
  3046. source: "./media/characters/elijah/dick.svg"
  3047. }
  3048. },
  3049. beakOpen: {
  3050. height: math.unit(1.25, "feet"),
  3051. name: "Beak (Open)",
  3052. image: {
  3053. source: "./media/characters/elijah/beak-open.svg"
  3054. }
  3055. },
  3056. beakShut: {
  3057. height: math.unit(1.25, "feet"),
  3058. name: "Beak (Shut)",
  3059. image: {
  3060. source: "./media/characters/elijah/beak-shut.svg"
  3061. }
  3062. },
  3063. footFlexing: {
  3064. height: math.unit(1.61, "feet"),
  3065. name: "Foot (Flexing)",
  3066. image: {
  3067. source: "./media/characters/elijah/foot-flexing.svg"
  3068. }
  3069. },
  3070. footStepping: {
  3071. height: math.unit(1.44, "feet"),
  3072. name: "Foot (Stepping)",
  3073. image: {
  3074. source: "./media/characters/elijah/foot-stepping.svg"
  3075. }
  3076. },
  3077. plantigradeLeg: {
  3078. height: math.unit(2.34, "feet"),
  3079. name: "Plantigrade Leg",
  3080. image: {
  3081. source: "./media/characters/elijah/plantigrade-leg.svg"
  3082. }
  3083. },
  3084. plantigradeFootLeft: {
  3085. height: math.unit(0.9, "feet"),
  3086. name: "Plantigrade Foot (Left)",
  3087. image: {
  3088. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3089. }
  3090. },
  3091. plantigradeFootRight: {
  3092. height: math.unit(0.9, "feet"),
  3093. name: "Plantigrade Foot (Right)",
  3094. image: {
  3095. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3096. }
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(1.65, "meters")
  3103. },
  3104. {
  3105. name: "Macro",
  3106. height: math.unit(55, "meters"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Macro+",
  3111. height: math.unit(105, "meters")
  3112. },
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3117. {
  3118. front: {
  3119. height: math.unit(7 + 2/12, "feet"),
  3120. weight: math.unit(320, "kg"),
  3121. preyCapacity: math.unit(0.276549935, "people"),
  3122. name: "Front",
  3123. image: {
  3124. source: "./media/characters/rai/front.svg",
  3125. extra: 1802/1696,
  3126. bottom: 68/1870
  3127. },
  3128. form: "anthro",
  3129. default: true
  3130. },
  3131. frontDressed: {
  3132. height: math.unit(7 + 2/12, "feet"),
  3133. weight: math.unit(320, "kg"),
  3134. preyCapacity: math.unit(0.276549935, "people"),
  3135. name: "Front (Dressed)",
  3136. image: {
  3137. source: "./media/characters/rai/front-dressed.svg",
  3138. extra: 1802/1696,
  3139. bottom: 68/1870
  3140. },
  3141. form: "anthro"
  3142. },
  3143. side: {
  3144. height: math.unit(7 + 2/12, "feet"),
  3145. weight: math.unit(320, "kg"),
  3146. preyCapacity: math.unit(0.276549935, "people"),
  3147. name: "Side",
  3148. image: {
  3149. source: "./media/characters/rai/side.svg",
  3150. extra: 1789/1710,
  3151. bottom: 115/1904
  3152. },
  3153. form: "anthro"
  3154. },
  3155. back: {
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. weight: math.unit(320, "kg"),
  3158. preyCapacity: math.unit(0.276549935, "people"),
  3159. name: "Back",
  3160. image: {
  3161. source: "./media/characters/rai/back.svg",
  3162. extra: 1770/1707,
  3163. bottom: 28/1798
  3164. },
  3165. form: "anthro"
  3166. },
  3167. feral: {
  3168. height: math.unit(9.5, "feet"),
  3169. weight: math.unit(640, "kg"),
  3170. preyCapacity: math.unit(4, "people"),
  3171. name: "Feral",
  3172. image: {
  3173. source: "./media/characters/rai/feral.svg",
  3174. extra: 945/553,
  3175. bottom: 176/1121
  3176. },
  3177. form: "feral",
  3178. default: true
  3179. },
  3180. dragon: {
  3181. height: math.unit(23, "feet"),
  3182. weight: math.unit(50000, "lb"),
  3183. name: "Dragon",
  3184. image: {
  3185. source: "./media/characters/rai/dragon.svg",
  3186. extra: 2498 / 2030,
  3187. bottom: 85.2 / 2584
  3188. },
  3189. form: "dragon",
  3190. default: true
  3191. },
  3192. maw: {
  3193. height: math.unit(1.69, "feet"),
  3194. name: "Maw",
  3195. image: {
  3196. source: "./media/characters/rai/maw.svg"
  3197. },
  3198. form: "anthro"
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Normal",
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. form: "anthro"
  3206. },
  3207. {
  3208. name: "Big",
  3209. height: math.unit(11, "feet"),
  3210. form: "anthro"
  3211. },
  3212. {
  3213. name: "Minimacro",
  3214. height: math.unit(77, "feet"),
  3215. form: "anthro"
  3216. },
  3217. {
  3218. name: "Macro",
  3219. height: math.unit(302, "feet"),
  3220. default: true,
  3221. form: "anthro"
  3222. },
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(9.5, "feet"),
  3226. form: "feral",
  3227. default: true
  3228. },
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(23, "feet"),
  3232. form: "dragon",
  3233. default: true
  3234. }
  3235. ],
  3236. {
  3237. "anthro": {
  3238. name: "Anthro",
  3239. default: true
  3240. },
  3241. "feral": {
  3242. name: "Feral",
  3243. },
  3244. "dragon": {
  3245. name: "Dragon",
  3246. },
  3247. }
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3251. {
  3252. frontDressed: {
  3253. height: math.unit(216, "feet"),
  3254. weight: math.unit(7000000, "lb"),
  3255. preyCapacity: math.unit(1321, "people"),
  3256. name: "Front (Dressed)",
  3257. image: {
  3258. source: "./media/characters/jazzy/front-dressed.svg",
  3259. extra: 2738 / 2651,
  3260. bottom: 41.8 / 2786
  3261. }
  3262. },
  3263. backDressed: {
  3264. height: math.unit(216, "feet"),
  3265. weight: math.unit(7000000, "lb"),
  3266. preyCapacity: math.unit(1321, "people"),
  3267. name: "Back (Dressed)",
  3268. image: {
  3269. source: "./media/characters/jazzy/back-dressed.svg",
  3270. extra: 2775 / 2673,
  3271. bottom: 36.8 / 2817
  3272. }
  3273. },
  3274. front: {
  3275. height: math.unit(216, "feet"),
  3276. weight: math.unit(7000000, "lb"),
  3277. preyCapacity: math.unit(1321, "people"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/jazzy/front.svg",
  3281. extra: 2738 / 2651,
  3282. bottom: 41.8 / 2786
  3283. }
  3284. },
  3285. back: {
  3286. height: math.unit(216, "feet"),
  3287. weight: math.unit(7000000, "lb"),
  3288. preyCapacity: math.unit(1321, "people"),
  3289. name: "Back",
  3290. image: {
  3291. source: "./media/characters/jazzy/back.svg",
  3292. extra: 2775 / 2673,
  3293. bottom: 36.8 / 2817
  3294. }
  3295. },
  3296. maw: {
  3297. height: math.unit(20, "feet"),
  3298. name: "Maw",
  3299. image: {
  3300. source: "./media/characters/jazzy/maw.svg"
  3301. }
  3302. },
  3303. paws: {
  3304. height: math.unit(27.5, "feet"),
  3305. name: "Paws",
  3306. image: {
  3307. source: "./media/characters/jazzy/paws.svg"
  3308. }
  3309. },
  3310. eye: {
  3311. height: math.unit(4.4, "feet"),
  3312. name: "Eye",
  3313. image: {
  3314. source: "./media/characters/jazzy/eye.svg"
  3315. }
  3316. },
  3317. droneOffense: {
  3318. height: math.unit(9.5, "inches"),
  3319. name: "Drone (Offense)",
  3320. image: {
  3321. source: "./media/characters/jazzy/drone-offense.svg"
  3322. }
  3323. },
  3324. droneRecon: {
  3325. height: math.unit(9.5, "inches"),
  3326. name: "Drone (Recon)",
  3327. image: {
  3328. source: "./media/characters/jazzy/drone-recon.svg"
  3329. }
  3330. },
  3331. droneDefense: {
  3332. height: math.unit(9.5, "inches"),
  3333. name: "Drone (Defense)",
  3334. image: {
  3335. source: "./media/characters/jazzy/drone-defense.svg"
  3336. }
  3337. },
  3338. },
  3339. [
  3340. {
  3341. name: "Macro",
  3342. height: math.unit(216, "feet"),
  3343. default: true
  3344. },
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(9 + 6/12, "feet"),
  3352. weight: math.unit(700, "lb"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/flamm/front.svg",
  3356. extra: 1736/1596,
  3357. bottom: 93/1829
  3358. }
  3359. },
  3360. buff: {
  3361. height: math.unit(9 + 6/12, "feet"),
  3362. weight: math.unit(950, "lb"),
  3363. name: "Buff",
  3364. image: {
  3365. source: "./media/characters/flamm/buff.svg",
  3366. extra: 3018/2874,
  3367. bottom: 221/3239
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(9.5, "feet")
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(200, "feet"),
  3379. default: true
  3380. },
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(5 + 3/12, "feet"),
  3388. weight: math.unit(60, "kg"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/zephiro/front.svg",
  3392. extra: 1873/1761,
  3393. bottom: 147/2020
  3394. }
  3395. },
  3396. side: {
  3397. height: math.unit(5 + 3/12, "feet"),
  3398. weight: math.unit(60, "kg"),
  3399. name: "Side",
  3400. image: {
  3401. source: "./media/characters/zephiro/side.svg",
  3402. extra: 1929/1827,
  3403. bottom: 65/1994
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(5 + 3/12, "feet"),
  3408. weight: math.unit(60, "kg"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/zephiro/back.svg",
  3412. extra: 1926/1816,
  3413. bottom: 41/1967
  3414. }
  3415. },
  3416. hand: {
  3417. height: math.unit(0.68, "feet"),
  3418. name: "Hand",
  3419. image: {
  3420. source: "./media/characters/zephiro/hand.svg"
  3421. }
  3422. },
  3423. paw: {
  3424. height: math.unit(1, "feet"),
  3425. name: "Paw",
  3426. image: {
  3427. source: "./media/characters/zephiro/paw.svg"
  3428. }
  3429. },
  3430. beans: {
  3431. height: math.unit(0.93, "feet"),
  3432. name: "Beans",
  3433. image: {
  3434. source: "./media/characters/zephiro/beans.svg"
  3435. }
  3436. },
  3437. },
  3438. [
  3439. {
  3440. name: "Micro",
  3441. height: math.unit(3, "inches")
  3442. },
  3443. {
  3444. name: "Normal",
  3445. height: math.unit(5 + 3 / 12, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(118, "feet")
  3451. },
  3452. ]
  3453. ))
  3454. characterMakers.push(() => makeCharacter(
  3455. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3456. {
  3457. front: {
  3458. height: math.unit(5, "feet"),
  3459. weight: math.unit(90, "kg"),
  3460. preyCapacity: math.unit(14, "people"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/fory/front.svg",
  3464. extra: 2862 / 2674,
  3465. bottom: 180 / 3043.8
  3466. },
  3467. form: "weaselbun",
  3468. default: true,
  3469. extraAttributes: {
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.1596, "m^2")
  3475. },
  3476. "pawLength": {
  3477. name: "Paw Length",
  3478. power: 1,
  3479. type: "length",
  3480. base: math.unit(0.7, "m")
  3481. }
  3482. }
  3483. },
  3484. back: {
  3485. height: math.unit(5, "feet"),
  3486. weight: math.unit(90, "kg"),
  3487. preyCapacity: math.unit(14, "people"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/fory/back.svg",
  3491. extra: 1790/1672,
  3492. bottom: 84/1874
  3493. },
  3494. form: "weaselbun",
  3495. extraAttributes: {
  3496. "pawSize": {
  3497. name: "Paw Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.1596, "m^2")
  3501. },
  3502. "pawLength": {
  3503. name: "Paw Length",
  3504. power: 1,
  3505. type: "length",
  3506. base: math.unit(0.7, "m")
  3507. }
  3508. }
  3509. },
  3510. paw: {
  3511. height: math.unit(2.14, "feet"),
  3512. name: "Paw",
  3513. image: {
  3514. source: "./media/characters/fory/paw.svg"
  3515. },
  3516. form: "weaselbun",
  3517. extraAttributes: {
  3518. "pawSize": {
  3519. name: "Paw Size",
  3520. power: 2,
  3521. type: "area",
  3522. base: math.unit(0.1596, "m^2")
  3523. },
  3524. "pawLength": {
  3525. name: "Paw Length",
  3526. power: 1,
  3527. type: "length",
  3528. base: math.unit(0.48, "m")
  3529. }
  3530. }
  3531. },
  3532. bunBack: {
  3533. height: math.unit(3, "feet"),
  3534. weight: math.unit(20, "kg"),
  3535. preyCapacity: math.unit(3, "people"),
  3536. name: "Back",
  3537. image: {
  3538. source: "./media/characters/fory/bun-back.svg",
  3539. extra: 1749/1564,
  3540. bottom: 246/1995
  3541. },
  3542. form: "bun",
  3543. default: true,
  3544. extraAttributes: {
  3545. "pawSize": {
  3546. name: "Paw Size",
  3547. power: 2,
  3548. type: "area",
  3549. base: math.unit(0.072, "m^2")
  3550. },
  3551. "pawLength": {
  3552. name: "Paw Length",
  3553. power: 1,
  3554. type: "length",
  3555. base: math.unit(0.45, "m")
  3556. }
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(5, "feet"),
  3564. form: "weaselbun"
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(50, "feet"),
  3569. default: true,
  3570. form: "weaselbun"
  3571. },
  3572. {
  3573. name: "Megamacro",
  3574. height: math.unit(10, "miles"),
  3575. form: "weaselbun"
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(5, "earths"),
  3580. form: "weaselbun"
  3581. },
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(3, "feet"),
  3585. default: true,
  3586. form: "bun"
  3587. },
  3588. {
  3589. name: "Fun-Size",
  3590. height: math.unit(12, "feet"),
  3591. form: "bun"
  3592. },
  3593. {
  3594. name: "Macro",
  3595. height: math.unit(100, "feet"),
  3596. form: "bun"
  3597. },
  3598. {
  3599. name: "Planetary",
  3600. height: math.unit(3, "earths"),
  3601. form: "bun"
  3602. },
  3603. ],
  3604. {
  3605. "weaselbun": {
  3606. name: "Weaselbun",
  3607. default: true
  3608. },
  3609. "bun": {
  3610. name: "Bun",
  3611. },
  3612. }
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(7, "feet"),
  3619. weight: math.unit(90, "kg"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/kurrikage/front.svg",
  3623. extra: 1845/1733,
  3624. bottom: 119/1964
  3625. }
  3626. },
  3627. back: {
  3628. height: math.unit(7, "feet"),
  3629. weight: math.unit(90, "kg"),
  3630. name: "Back",
  3631. image: {
  3632. source: "./media/characters/kurrikage/back.svg",
  3633. extra: 1790/1677,
  3634. bottom: 61/1851
  3635. }
  3636. },
  3637. dressed: {
  3638. height: math.unit(7, "feet"),
  3639. weight: math.unit(90, "kg"),
  3640. name: "Dressed",
  3641. image: {
  3642. source: "./media/characters/kurrikage/dressed.svg",
  3643. extra: 1845/1733,
  3644. bottom: 119/1964
  3645. }
  3646. },
  3647. foot: {
  3648. height: math.unit(1.5, "feet"),
  3649. name: "Foot",
  3650. image: {
  3651. source: "./media/characters/kurrikage/foot.svg"
  3652. }
  3653. },
  3654. staff: {
  3655. height: math.unit(6.7, "feet"),
  3656. name: "Staff",
  3657. image: {
  3658. source: "./media/characters/kurrikage/staff.svg"
  3659. }
  3660. },
  3661. peek: {
  3662. height: math.unit(1.05, "feet"),
  3663. name: "Peeking",
  3664. image: {
  3665. source: "./media/characters/kurrikage/peek.svg",
  3666. bottom: 0.08
  3667. }
  3668. },
  3669. },
  3670. [
  3671. {
  3672. name: "Normal",
  3673. height: math.unit(12, "feet"),
  3674. default: true
  3675. },
  3676. {
  3677. name: "Big",
  3678. height: math.unit(20, "feet")
  3679. },
  3680. {
  3681. name: "Macro",
  3682. height: math.unit(500, "feet")
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(20, "miles")
  3687. },
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3692. {
  3693. front: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/shingo/front.svg",
  3699. extra: 1900/1825,
  3700. bottom: 82/1982
  3701. }
  3702. },
  3703. side: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Side",
  3707. image: {
  3708. source: "./media/characters/shingo/side.svg",
  3709. extra: 1930/1865,
  3710. bottom: 16/1946
  3711. }
  3712. },
  3713. back: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(75, "kg"),
  3716. name: "Back",
  3717. image: {
  3718. source: "./media/characters/shingo/back.svg",
  3719. extra: 1922/1852,
  3720. bottom: 16/1938
  3721. }
  3722. },
  3723. frontDressed: {
  3724. height: math.unit(6, "feet"),
  3725. weight: math.unit(150, "lb"),
  3726. name: "Front-dressed",
  3727. image: {
  3728. source: "./media/characters/shingo/front-dressed.svg",
  3729. extra: 1900/1825,
  3730. bottom: 82/1982
  3731. }
  3732. },
  3733. paw: {
  3734. height: math.unit(1.29, "feet"),
  3735. name: "Paw",
  3736. image: {
  3737. source: "./media/characters/shingo/paw.svg"
  3738. }
  3739. },
  3740. hand: {
  3741. height: math.unit(1.07, "feet"),
  3742. name: "Hand",
  3743. image: {
  3744. source: "./media/characters/shingo/hand.svg"
  3745. }
  3746. },
  3747. frontAlt: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Front (Alt)",
  3751. image: {
  3752. source: "./media/characters/shingo/front-alt.svg",
  3753. extra: 3511 / 3338,
  3754. bottom: 0.005
  3755. }
  3756. },
  3757. frontAlt2: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Front (Alt 2)",
  3761. image: {
  3762. source: "./media/characters/shingo/front-alt-2.svg",
  3763. extra: 706/681,
  3764. bottom: 11/717
  3765. }
  3766. },
  3767. pawAlt: {
  3768. height: math.unit(1, "feet"),
  3769. name: "Paw (Alt)",
  3770. image: {
  3771. source: "./media/characters/shingo/paw-alt.svg"
  3772. }
  3773. },
  3774. },
  3775. [
  3776. {
  3777. name: "Micro",
  3778. height: math.unit(4, "inches")
  3779. },
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(6, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(108, "feet")
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(1500, "feet")
  3792. },
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3797. {
  3798. side: {
  3799. height: math.unit(6, "feet"),
  3800. weight: math.unit(75, "kg"),
  3801. name: "Side",
  3802. image: {
  3803. source: "./media/characters/aigey/side.svg"
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(200, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(100, "miles")
  3816. },
  3817. ]
  3818. )
  3819. )
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3822. {
  3823. front: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(75, "kg"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/natasha/front.svg",
  3829. extra: 859 / 824,
  3830. bottom: 23 / 879.6
  3831. }
  3832. },
  3833. frontNsfw: {
  3834. height: math.unit(5 + 5 / 12, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Front (NSFW)",
  3837. image: {
  3838. source: "./media/characters/natasha/front-nsfw.svg",
  3839. extra: 859 / 824,
  3840. bottom: 23 / 879.6
  3841. }
  3842. },
  3843. frontErect: {
  3844. height: math.unit(5 + 5 / 12, "feet"),
  3845. weight: math.unit(75, "kg"),
  3846. name: "Front (Erect)",
  3847. image: {
  3848. source: "./media/characters/natasha/front-erect.svg",
  3849. extra: 859 / 824,
  3850. bottom: 23 / 879.6
  3851. }
  3852. },
  3853. back: {
  3854. height: math.unit(5 + 5 / 12, "feet"),
  3855. weight: math.unit(75, "kg"),
  3856. name: "Back",
  3857. image: {
  3858. source: "./media/characters/natasha/back.svg",
  3859. extra: 887.9 / 852.6,
  3860. bottom: 9.7 / 896.4
  3861. }
  3862. },
  3863. backAlt: {
  3864. height: math.unit(5 + 5 / 12, "feet"),
  3865. weight: math.unit(75, "kg"),
  3866. name: "Back (Alt)",
  3867. image: {
  3868. source: "./media/characters/natasha/back-alt.svg",
  3869. extra: 1236.7 / 1192,
  3870. bottom: 22.3 / 1258.2
  3871. }
  3872. },
  3873. dick: {
  3874. height: math.unit(1.772, "feet"),
  3875. name: "Dick",
  3876. image: {
  3877. source: "./media/characters/natasha/dick.svg"
  3878. }
  3879. },
  3880. paw: {
  3881. height: math.unit(0.250, "meters"),
  3882. name: "Paw",
  3883. image: {
  3884. source: "./media/characters/natasha/paw.svg"
  3885. },
  3886. extraAttributes: {
  3887. "toeSize": {
  3888. name: "Toe Size",
  3889. power: 2,
  3890. type: "area",
  3891. base: math.unit(0.0024, "m^2")
  3892. },
  3893. "padSize": {
  3894. name: "Pad Size",
  3895. power: 2,
  3896. type: "area",
  3897. base: math.unit(0.00889, "m^2")
  3898. },
  3899. "pawSize": {
  3900. name: "Paw Size",
  3901. power: 2,
  3902. type: "area",
  3903. base: math.unit(0.023667, "m^2")
  3904. },
  3905. }
  3906. },
  3907. },
  3908. [
  3909. {
  3910. name: "Shortstack",
  3911. height: math.unit(3, "feet"),
  3912. default: true
  3913. },
  3914. {
  3915. name: "Normal",
  3916. height: math.unit(5 + 5 / 12, "feet")
  3917. },
  3918. {
  3919. name: "Large",
  3920. height: math.unit(12, "feet")
  3921. },
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(100, "feet")
  3925. },
  3926. {
  3927. name: "Macro+",
  3928. height: math.unit(260, "feet")
  3929. },
  3930. {
  3931. name: "Macro++",
  3932. height: math.unit(1, "mile")
  3933. },
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/malik/front.svg",
  3945. extra: 1750/1561,
  3946. bottom: 80/1830
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. side: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Side",
  3967. image: {
  3968. source: "./media/characters/malik/side.svg",
  3969. extra: 1802/1685,
  3970. bottom: 42/1844
  3971. },
  3972. extraAttributes: {
  3973. "toeSize": {
  3974. name: "Toe Size",
  3975. power: 2,
  3976. type: "area",
  3977. base: math.unit(0.0159, "m^2")
  3978. },
  3979. "pawSize": {
  3980. name: "Paw Size",
  3981. power: 2,
  3982. type: "area",
  3983. base: math.unit(0.09834, "m^2")
  3984. },
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(75, "kg"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/malik/back.svg",
  3993. extra: 1803/1607,
  3994. bottom: 33/1836
  3995. },
  3996. extraAttributes: {
  3997. "toeSize": {
  3998. name: "Toe Size",
  3999. power: 2,
  4000. type: "area",
  4001. base: math.unit(0.0159, "m^2")
  4002. },
  4003. "pawSize": {
  4004. name: "Paw Size",
  4005. power: 2,
  4006. type: "area",
  4007. base: math.unit(0.09834, "m^2")
  4008. },
  4009. }
  4010. },
  4011. },
  4012. [
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(156, "feet"),
  4016. default: true
  4017. },
  4018. {
  4019. name: "Macro+",
  4020. height: math.unit(1188, "feet")
  4021. },
  4022. ]
  4023. ))
  4024. characterMakers.push(() => makeCharacter(
  4025. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4026. {
  4027. front: {
  4028. height: math.unit(6, "feet"),
  4029. weight: math.unit(75, "kg"),
  4030. name: "Front",
  4031. image: {
  4032. source: "./media/characters/sefer/front.svg",
  4033. extra: 848 / 659,
  4034. bottom: 28.3 / 876.442
  4035. }
  4036. },
  4037. back: {
  4038. height: math.unit(6, "feet"),
  4039. weight: math.unit(75, "kg"),
  4040. name: "Back",
  4041. image: {
  4042. source: "./media/characters/sefer/back.svg",
  4043. extra: 864 / 695,
  4044. bottom: 10 / 871
  4045. }
  4046. },
  4047. frontDressed: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(75, "kg"),
  4050. name: "Dressed",
  4051. image: {
  4052. source: "./media/characters/sefer/dressed.svg",
  4053. extra: 839 / 653,
  4054. bottom: 37.6 / 878
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(6, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Big",
  4066. height: math.unit(8, "meters")
  4067. },
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4072. {
  4073. body: {
  4074. height: math.unit(2.2428, "meter"),
  4075. weight: math.unit(124.738, "kg"),
  4076. name: "Body",
  4077. image: {
  4078. extra: 1225 / 1050,
  4079. source: "./media/characters/north/front.svg"
  4080. }
  4081. }
  4082. },
  4083. [
  4084. {
  4085. name: "Micro",
  4086. height: math.unit(4, "inches")
  4087. },
  4088. {
  4089. name: "Macro",
  4090. height: math.unit(63, "meters")
  4091. },
  4092. {
  4093. name: "Megamacro",
  4094. height: math.unit(101, "miles"),
  4095. default: true
  4096. }
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4101. {
  4102. angled: {
  4103. height: math.unit(4, "meter"),
  4104. weight: math.unit(150, "kg"),
  4105. name: "Angled",
  4106. image: {
  4107. source: "./media/characters/talan/angled-sfw.svg",
  4108. bottom: 29 / 3734
  4109. }
  4110. },
  4111. angledNsfw: {
  4112. height: math.unit(4, "meter"),
  4113. weight: math.unit(150, "kg"),
  4114. name: "Angled (NSFW)",
  4115. image: {
  4116. source: "./media/characters/talan/angled-nsfw.svg",
  4117. bottom: 29 / 3734
  4118. }
  4119. },
  4120. frontNsfw: {
  4121. height: math.unit(4, "meter"),
  4122. weight: math.unit(150, "kg"),
  4123. name: "Front (NSFW)",
  4124. image: {
  4125. source: "./media/characters/talan/front-nsfw.svg",
  4126. bottom: 29 / 3734
  4127. }
  4128. },
  4129. sideNsfw: {
  4130. height: math.unit(4, "meter"),
  4131. weight: math.unit(150, "kg"),
  4132. name: "Side (NSFW)",
  4133. image: {
  4134. source: "./media/characters/talan/side-nsfw.svg",
  4135. bottom: 29 / 3734
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(4, "meter"),
  4140. weight: math.unit(150, "kg"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/talan/back.svg"
  4144. }
  4145. },
  4146. dickBottom: {
  4147. height: math.unit(0.621, "meter"),
  4148. name: "Dick (Bottom)",
  4149. image: {
  4150. source: "./media/characters/talan/dick-bottom.svg"
  4151. }
  4152. },
  4153. dickTop: {
  4154. height: math.unit(0.621, "meter"),
  4155. name: "Dick (Top)",
  4156. image: {
  4157. source: "./media/characters/talan/dick-top.svg"
  4158. }
  4159. },
  4160. dickSide: {
  4161. height: math.unit(0.305, "meter"),
  4162. name: "Dick (Side)",
  4163. image: {
  4164. source: "./media/characters/talan/dick-side.svg"
  4165. }
  4166. },
  4167. dickFront: {
  4168. height: math.unit(0.305, "meter"),
  4169. name: "Dick (Front)",
  4170. image: {
  4171. source: "./media/characters/talan/dick-front.svg"
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(4, "meters")
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(100, "meters")
  4183. },
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(2, "miles"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Gigamacro",
  4191. height: math.unit(5000, "miles")
  4192. },
  4193. {
  4194. name: "Teramacro",
  4195. height: math.unit(100, "parsecs")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(90, "kg"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/gael'rathus/front.svg"
  4208. }
  4209. },
  4210. frontAlt: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front (alt)",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front-alt.svg"
  4216. }
  4217. },
  4218. frontAlt2: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(90, "kg"),
  4221. name: "Front (alt 2)",
  4222. image: {
  4223. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Normal",
  4230. height: math.unit(9, "feet"),
  4231. default: true
  4232. },
  4233. {
  4234. name: "Large",
  4235. height: math.unit(25, "feet")
  4236. },
  4237. {
  4238. name: "Macro",
  4239. height: math.unit(0.25, "miles")
  4240. },
  4241. {
  4242. name: "Megamacro",
  4243. height: math.unit(10, "miles")
  4244. }
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4249. {
  4250. side: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(140, "kg"),
  4253. name: "Side",
  4254. image: {
  4255. source: "./media/characters/sosha/side.svg",
  4256. extra: 1170/1006,
  4257. bottom: 94/1264
  4258. }
  4259. },
  4260. maw: {
  4261. height: math.unit(2.87, "feet"),
  4262. name: "Maw",
  4263. image: {
  4264. source: "./media/characters/sosha/maw.svg",
  4265. extra: 966/865,
  4266. bottom: 0/966
  4267. }
  4268. },
  4269. cooch: {
  4270. height: math.unit(5.6, "feet"),
  4271. name: "Cooch",
  4272. image: {
  4273. source: "./media/characters/sosha/cooch.svg"
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(12, "feet"),
  4281. default: true
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4287. {
  4288. side: {
  4289. height: math.unit(5 + 5 / 12, "feet"),
  4290. weight: math.unit(170, "kg"),
  4291. name: "Side",
  4292. image: {
  4293. source: "./media/characters/runnola/side.svg",
  4294. extra: 741 / 448,
  4295. bottom: 0.05
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "Small",
  4302. height: math.unit(3, "feet")
  4303. },
  4304. {
  4305. name: "Normal",
  4306. height: math.unit(5 + 5 / 12, "feet"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Big",
  4311. height: math.unit(10, "feet")
  4312. },
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4317. {
  4318. front: {
  4319. height: math.unit(2, "meter"),
  4320. weight: math.unit(50, "kg"),
  4321. name: "Front",
  4322. image: {
  4323. source: "./media/characters/kurribird/front.svg",
  4324. bottom: 0.015
  4325. }
  4326. },
  4327. frontAlt: {
  4328. height: math.unit(1.5, "meter"),
  4329. weight: math.unit(50, "kg"),
  4330. name: "Front (Alt)",
  4331. image: {
  4332. source: "./media/characters/kurribird/front-alt.svg",
  4333. extra: 1.45
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(7, "feet")
  4341. },
  4342. {
  4343. name: "Big",
  4344. height: math.unit(12, "feet"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Macro",
  4349. height: math.unit(1500, "feet")
  4350. },
  4351. {
  4352. name: "Megamacro",
  4353. height: math.unit(2, "miles")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(2, "meter"),
  4362. weight: math.unit(80, "kg"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/elbial/front.svg",
  4366. extra: 1643 / 1556,
  4367. bottom: 60.2 / 1696
  4368. }
  4369. },
  4370. side: {
  4371. height: math.unit(2, "meter"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Side",
  4374. image: {
  4375. source: "./media/characters/elbial/side.svg",
  4376. extra: 1601/1528,
  4377. bottom: 97/1698
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(80, "kg"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/elbial/back.svg",
  4386. extra: 1653/1569,
  4387. bottom: 20/1673
  4388. }
  4389. },
  4390. frontDressed: {
  4391. height: math.unit(2, "meter"),
  4392. weight: math.unit(80, "kg"),
  4393. name: "Front (Dressed)",
  4394. image: {
  4395. source: "./media/characters/elbial/front-dressed.svg",
  4396. extra: 1638/1569,
  4397. bottom: 70/1708
  4398. }
  4399. },
  4400. genitals: {
  4401. height: math.unit(2 / 3.367, "meter"),
  4402. name: "Genitals",
  4403. image: {
  4404. source: "./media/characters/elbial/genitals.svg"
  4405. }
  4406. },
  4407. },
  4408. [
  4409. {
  4410. name: "Large",
  4411. height: math.unit(100, "feet")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(500, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Megamacro",
  4420. height: math.unit(10, "miles")
  4421. },
  4422. {
  4423. name: "Gigamacro",
  4424. height: math.unit(25000, "miles")
  4425. },
  4426. {
  4427. name: "Full-Size",
  4428. height: math.unit(8000000, "gigaparsecs")
  4429. }
  4430. ]
  4431. ))
  4432. characterMakers.push(() => makeCharacter(
  4433. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4434. {
  4435. front: {
  4436. height: math.unit(2, "meter"),
  4437. weight: math.unit(60, "kg"),
  4438. name: "Front",
  4439. image: {
  4440. source: "./media/characters/noah/front.svg",
  4441. extra: 1383/1313,
  4442. bottom: 104/1487
  4443. }
  4444. },
  4445. hand: {
  4446. height: math.unit(0.6, "feet"),
  4447. name: "Hand",
  4448. image: {
  4449. source: "./media/characters/noah/hand.svg"
  4450. }
  4451. },
  4452. talons: {
  4453. height: math.unit(1.385, "feet"),
  4454. name: "Talons",
  4455. image: {
  4456. source: "./media/characters/noah/talons.svg"
  4457. }
  4458. },
  4459. beak: {
  4460. height: math.unit(0.43, "feet"),
  4461. name: "Beak",
  4462. image: {
  4463. source: "./media/characters/noah/beak.svg"
  4464. }
  4465. },
  4466. collar: {
  4467. height: math.unit(0.88, "feet"),
  4468. name: "Collar",
  4469. image: {
  4470. source: "./media/characters/noah/collar.svg"
  4471. }
  4472. },
  4473. eyeNarrow: {
  4474. height: math.unit(0.18, "feet"),
  4475. name: "Eye (Narrow)",
  4476. image: {
  4477. source: "./media/characters/noah/eye-narrow.svg"
  4478. }
  4479. },
  4480. eyeNormal: {
  4481. height: math.unit(0.18, "feet"),
  4482. name: "Eye (Normal)",
  4483. image: {
  4484. source: "./media/characters/noah/eye-normal.svg"
  4485. }
  4486. },
  4487. eyeWide: {
  4488. height: math.unit(0.18, "feet"),
  4489. name: "Eye (Wide)",
  4490. image: {
  4491. source: "./media/characters/noah/eye-wide.svg"
  4492. }
  4493. },
  4494. ear: {
  4495. height: math.unit(0.64, "feet"),
  4496. name: "Ear",
  4497. image: {
  4498. source: "./media/characters/noah/ear.svg"
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Large",
  4505. height: math.unit(50, "feet")
  4506. },
  4507. {
  4508. name: "Macro",
  4509. height: math.unit(750, "feet"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(50, "miles")
  4515. },
  4516. {
  4517. name: "Gigamacro",
  4518. height: math.unit(100000, "miles")
  4519. },
  4520. {
  4521. name: "Full-Size",
  4522. height: math.unit(3000000000, "miles")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(80, "kg"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/natalya/front.svg"
  4535. }
  4536. },
  4537. back: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(80, "kg"),
  4540. name: "Back",
  4541. image: {
  4542. source: "./media/characters/natalya/back.svg"
  4543. }
  4544. }
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(150, "feet"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "Megamacro",
  4554. height: math.unit(5, "miles")
  4555. },
  4556. {
  4557. name: "Full-Size",
  4558. height: math.unit(600, "kiloparsecs")
  4559. }
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(2, "meter"),
  4567. weight: math.unit(50, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/erestrebah/front.svg",
  4571. extra: 1262/1162,
  4572. bottom: 96/1358
  4573. }
  4574. },
  4575. back: {
  4576. height: math.unit(2, "meter"),
  4577. weight: math.unit(50, "kg"),
  4578. name: "Back",
  4579. image: {
  4580. source: "./media/characters/erestrebah/back.svg",
  4581. extra: 1257/1139,
  4582. bottom: 13/1270
  4583. }
  4584. },
  4585. wing: {
  4586. height: math.unit(2, "meter"),
  4587. weight: math.unit(50, "kg"),
  4588. name: "Wing",
  4589. image: {
  4590. source: "./media/characters/erestrebah/wing.svg",
  4591. extra: 1262/1162,
  4592. bottom: 96/1358
  4593. }
  4594. },
  4595. mouth: {
  4596. height: math.unit(0.39, "feet"),
  4597. name: "Mouth",
  4598. image: {
  4599. source: "./media/characters/erestrebah/mouth.svg"
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(10, "feet")
  4607. },
  4608. {
  4609. name: "Large",
  4610. height: math.unit(50, "feet"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro",
  4615. height: math.unit(300, "feet")
  4616. },
  4617. {
  4618. name: "Macro+",
  4619. height: math.unit(750, "feet")
  4620. },
  4621. {
  4622. name: "Megamacro",
  4623. height: math.unit(3, "miles")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4629. {
  4630. front: {
  4631. height: math.unit(2, "meter"),
  4632. weight: math.unit(80, "kg"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/jennifer/front.svg",
  4636. bottom: 0.11,
  4637. extra: 1.16
  4638. }
  4639. },
  4640. frontAlt: {
  4641. height: math.unit(2, "meter"),
  4642. weight: math.unit(80, "kg"),
  4643. name: "Front (Alt)",
  4644. image: {
  4645. source: "./media/characters/jennifer/front-alt.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Canon Height",
  4652. height: math.unit(120, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(300, "feet")
  4658. },
  4659. {
  4660. name: "Megamacro",
  4661. height: math.unit(20000, "feet")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(50, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/kalista/front.svg",
  4674. extra: 1314/1145,
  4675. bottom: 101/1415
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(2, "meter"),
  4680. weight: math.unit(50, "kg"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/kalista/back.svg",
  4684. extra: 1366 / 1156,
  4685. bottom: 33.9 / 1362.78
  4686. }
  4687. }
  4688. },
  4689. [
  4690. {
  4691. name: "Uncomfortably Small",
  4692. height: math.unit(10, "feet")
  4693. },
  4694. {
  4695. name: "Small",
  4696. height: math.unit(30, "feet")
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(100, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Macro+",
  4705. height: math.unit(2000, "feet")
  4706. },
  4707. {
  4708. name: "True Form",
  4709. height: math.unit(8924, "miles")
  4710. }
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(120, "kg"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/ggv/front.svg"
  4722. }
  4723. },
  4724. side: {
  4725. height: math.unit(2, "meter"),
  4726. weight: math.unit(120, "kg"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/ggv/side.svg"
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Extremely Puny",
  4736. height: math.unit(9 + 5 / 12, "feet")
  4737. },
  4738. {
  4739. name: "Horribly Small",
  4740. height: math.unit(47.7, "miles"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Reasonably Sized",
  4745. height: math.unit(25000, "parsecs")
  4746. },
  4747. {
  4748. name: "Slightly Uncompressed",
  4749. height: math.unit(7.77e31, "parsecs")
  4750. },
  4751. {
  4752. name: "Omniversal",
  4753. height: math.unit(1e300, "meters")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(2, "meter"),
  4762. weight: math.unit(75, "lb"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/napalm/front.svg"
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(2, "meter"),
  4770. weight: math.unit(75, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/napalm/back.svg"
  4774. }
  4775. }
  4776. },
  4777. [
  4778. {
  4779. name: "Standard",
  4780. height: math.unit(55, "feet"),
  4781. default: true
  4782. }
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4787. {
  4788. front: {
  4789. height: math.unit(7 + 5 / 6, "feet"),
  4790. weight: math.unit(325, "lb"),
  4791. name: "Front",
  4792. image: {
  4793. source: "./media/characters/asana/front.svg",
  4794. extra: 1133 / 1060,
  4795. bottom: 15.2 / 1148.6
  4796. }
  4797. },
  4798. back: {
  4799. height: math.unit(7 + 5 / 6, "feet"),
  4800. weight: math.unit(325, "lb"),
  4801. name: "Back",
  4802. image: {
  4803. source: "./media/characters/asana/back.svg",
  4804. extra: 1114 / 1043,
  4805. bottom: 5 / 1120
  4806. }
  4807. },
  4808. dressedDark: {
  4809. height: math.unit(7 + 5 / 6, "feet"),
  4810. weight: math.unit(325, "lb"),
  4811. name: "Dressed (Dark)",
  4812. image: {
  4813. source: "./media/characters/asana/dressed-dark.svg",
  4814. extra: 1133 / 1060,
  4815. bottom: 15.2 / 1148.6
  4816. }
  4817. },
  4818. dressedLight: {
  4819. height: math.unit(7 + 5 / 6, "feet"),
  4820. weight: math.unit(325, "lb"),
  4821. name: "Dressed (Light)",
  4822. image: {
  4823. source: "./media/characters/asana/dressed-light.svg",
  4824. extra: 1133 / 1060,
  4825. bottom: 15.2 / 1148.6
  4826. }
  4827. },
  4828. },
  4829. [
  4830. {
  4831. name: "Standard",
  4832. height: math.unit(7 + 5 / 6, "feet"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "Large",
  4837. height: math.unit(10, "meters")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(2500, "meters")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(5e6, "meters")
  4846. },
  4847. {
  4848. name: "Examacro",
  4849. height: math.unit(5e12, "lightyears")
  4850. },
  4851. {
  4852. name: "Max Size",
  4853. height: math.unit(1e31, "lightyears")
  4854. }
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4859. {
  4860. front: {
  4861. height: math.unit(2, "meter"),
  4862. weight: math.unit(60, "kg"),
  4863. name: "Front",
  4864. image: {
  4865. source: "./media/characters/ebony/front.svg",
  4866. bottom: 0.03,
  4867. extra: 1045 / 810 + 0.03
  4868. }
  4869. },
  4870. side: {
  4871. height: math.unit(2, "meter"),
  4872. weight: math.unit(60, "kg"),
  4873. name: "Side",
  4874. image: {
  4875. source: "./media/characters/ebony/side.svg",
  4876. bottom: 0.03,
  4877. extra: 1045 / 810 + 0.03
  4878. }
  4879. },
  4880. back: {
  4881. height: math.unit(2, "meter"),
  4882. weight: math.unit(60, "kg"),
  4883. name: "Back",
  4884. image: {
  4885. source: "./media/characters/ebony/back.svg",
  4886. bottom: 0.01,
  4887. extra: 1045 / 810 + 0.01
  4888. }
  4889. },
  4890. },
  4891. [
  4892. // TODO check why I did this lol
  4893. {
  4894. name: "Standard",
  4895. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro",
  4900. height: math.unit(200, "feet")
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(13000, "km")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(175, "lb"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/mountain/front.svg",
  4917. extra: 972 / 955,
  4918. bottom: 64 / 1036.6
  4919. }
  4920. },
  4921. back: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(175, "lb"),
  4924. name: "Back",
  4925. image: {
  4926. source: "./media/characters/mountain/back.svg",
  4927. extra: 970 / 950,
  4928. bottom: 28.25 / 999
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Large",
  4935. height: math.unit(20, "meters")
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(300, "meters")
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(10000, "km"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Examacro",
  4948. height: math.unit(10e9, "lightyears")
  4949. }
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4954. {
  4955. front: {
  4956. height: math.unit(8, "feet"),
  4957. weight: math.unit(500, "lb"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/rick/front.svg"
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(8, "feet"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Macro",
  4972. height: math.unit(5, "km")
  4973. }
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(120, "lb"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/ona/front.svg"
  4985. }
  4986. },
  4987. frontAlt: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Front (Alt)",
  4991. image: {
  4992. source: "./media/characters/ona/front-alt.svg"
  4993. }
  4994. },
  4995. back: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(120, "lb"),
  4998. name: "Back",
  4999. image: {
  5000. source: "./media/characters/ona/back.svg"
  5001. }
  5002. },
  5003. foot: {
  5004. height: math.unit(1.1, "feet"),
  5005. name: "Foot",
  5006. image: {
  5007. source: "./media/characters/ona/foot.svg"
  5008. }
  5009. }
  5010. },
  5011. [
  5012. {
  5013. name: "Megamacro",
  5014. height: math.unit(70, "km"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Gigamacro",
  5019. height: math.unit(681818, "miles")
  5020. },
  5021. {
  5022. name: "Examacro",
  5023. height: math.unit(3800000, "lightyears")
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(12, "feet"),
  5032. weight: math.unit(3000, "lb"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/mech/front.svg",
  5036. extra: 2900 / 2770,
  5037. bottom: 110 / 3010
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(12, "feet"),
  5042. weight: math.unit(3000, "lb"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/mech/back.svg",
  5046. extra: 3011 / 2890,
  5047. bottom: 94 / 3105
  5048. }
  5049. },
  5050. maw: {
  5051. height: math.unit(3.07, "feet"),
  5052. name: "Maw",
  5053. image: {
  5054. source: "./media/characters/mech/maw.svg"
  5055. }
  5056. },
  5057. head: {
  5058. height: math.unit(3.07, "feet"),
  5059. name: "Head",
  5060. image: {
  5061. source: "./media/characters/mech/head.svg"
  5062. }
  5063. },
  5064. dick: {
  5065. height: math.unit(1.43, "feet"),
  5066. name: "Dick",
  5067. image: {
  5068. source: "./media/characters/mech/dick.svg"
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(12, "feet")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(300, "feet"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro+",
  5084. height: math.unit(1500, "feet")
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(1.3, "meter"),
  5093. weight: math.unit(30, "kg"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/gregory/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(1.3, "meter"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Macro",
  5108. height: math.unit(20, "meter")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5114. {
  5115. front: {
  5116. height: math.unit(2.8, "meter"),
  5117. weight: math.unit(200, "kg"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/elory/front.svg",
  5121. }
  5122. }
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(2.8, "meter"),
  5128. default: true
  5129. },
  5130. {
  5131. name: "Macro",
  5132. height: math.unit(38, "meter")
  5133. }
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5138. {
  5139. front: {
  5140. height: math.unit(470, "feet"),
  5141. weight: math.unit(924, "tons"),
  5142. name: "Front",
  5143. image: {
  5144. source: "./media/characters/angelpatamon/front.svg",
  5145. }
  5146. }
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(470, "feet"),
  5152. default: true
  5153. },
  5154. {
  5155. name: "Deity Size I",
  5156. height: math.unit(28651.2, "km")
  5157. },
  5158. {
  5159. name: "Deity Size II",
  5160. height: math.unit(171907.2, "km")
  5161. }
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5166. {
  5167. side: {
  5168. height: math.unit(7.2, "meter"),
  5169. weight: math.unit(8.2, "tons"),
  5170. name: "Side",
  5171. image: {
  5172. source: "./media/characters/cryae/side.svg",
  5173. extra: 3500 / 1500
  5174. }
  5175. }
  5176. },
  5177. [
  5178. {
  5179. name: "Normal",
  5180. height: math.unit(7.2, "meter"),
  5181. default: true
  5182. }
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5187. {
  5188. front: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(175, "lb"),
  5191. name: "Front",
  5192. image: {
  5193. source: "./media/characters/xera/front.svg",
  5194. extra: 2377 / 1972,
  5195. bottom: 75.5 / 2452
  5196. }
  5197. },
  5198. side: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(175, "lb"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/xera/side.svg",
  5204. extra: 2345 / 2019,
  5205. bottom: 39.7 / 2384
  5206. }
  5207. },
  5208. back: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(175, "lb"),
  5211. name: "Back",
  5212. image: {
  5213. source: "./media/characters/xera/back.svg",
  5214. extra: 2095 / 1984,
  5215. bottom: 67 / 2166
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Small",
  5222. height: math.unit(10, "feet")
  5223. },
  5224. {
  5225. name: "Macro",
  5226. height: math.unit(500, "meters"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Macro+",
  5231. height: math.unit(10, "km")
  5232. },
  5233. {
  5234. name: "Gigamacro",
  5235. height: math.unit(25000, "km")
  5236. },
  5237. {
  5238. name: "Teramacro",
  5239. height: math.unit(3e6, "km")
  5240. }
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5245. {
  5246. front: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(175, "lb"),
  5249. name: "Front",
  5250. image: {
  5251. source: "./media/characters/nebula/front.svg",
  5252. extra: 2566 / 2362,
  5253. bottom: 81 / 2644
  5254. }
  5255. }
  5256. },
  5257. [
  5258. {
  5259. name: "Small",
  5260. height: math.unit(4.5, "meters")
  5261. },
  5262. {
  5263. name: "Macro",
  5264. height: math.unit(1500, "meters"),
  5265. default: true
  5266. },
  5267. {
  5268. name: "Megamacro",
  5269. height: math.unit(150, "km")
  5270. },
  5271. {
  5272. name: "Gigamacro",
  5273. height: math.unit(27000, "km")
  5274. }
  5275. ]
  5276. ))
  5277. characterMakers.push(() => makeCharacter(
  5278. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5279. {
  5280. front: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(225, "lb"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/abysgar/front.svg",
  5286. extra: 1739/1614,
  5287. bottom: 71/1810
  5288. }
  5289. },
  5290. frontNsfw: {
  5291. height: math.unit(6, "feet"),
  5292. weight: math.unit(225, "lb"),
  5293. name: "Front (NSFW)",
  5294. image: {
  5295. source: "./media/characters/abysgar/front-nsfw.svg",
  5296. extra: 1739/1614,
  5297. bottom: 71/1810
  5298. }
  5299. },
  5300. back: {
  5301. height: math.unit(4.6, "feet"),
  5302. weight: math.unit(225, "lb"),
  5303. name: "Back",
  5304. image: {
  5305. source: "./media/characters/abysgar/back.svg",
  5306. extra: 1384/1327,
  5307. bottom: 0/1384
  5308. }
  5309. },
  5310. head: {
  5311. height: math.unit(1.25, "feet"),
  5312. name: "Head",
  5313. image: {
  5314. source: "./media/characters/abysgar/head.svg",
  5315. extra: 669/569,
  5316. bottom: 0/669
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Small",
  5323. height: math.unit(4.5, "meters")
  5324. },
  5325. {
  5326. name: "Macro",
  5327. height: math.unit(1250, "meters"),
  5328. default: true
  5329. },
  5330. {
  5331. name: "Megamacro",
  5332. height: math.unit(125, "km")
  5333. },
  5334. {
  5335. name: "Gigamacro",
  5336. height: math.unit(26000, "km")
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(180, "lb"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/yakuz/front.svg"
  5349. }
  5350. }
  5351. },
  5352. [
  5353. {
  5354. name: "Small",
  5355. height: math.unit(5, "meters")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(1500, "meters"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(200, "km")
  5365. },
  5366. {
  5367. name: "Gigamacro",
  5368. height: math.unit(100000, "km")
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(175, "lb"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/mirova/front.svg",
  5381. extra: 3334 / 3071,
  5382. bottom: 42 / 3375.6
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Small",
  5389. height: math.unit(5, "meters")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(900, "meters"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(135, "km")
  5399. },
  5400. {
  5401. name: "Gigamacro",
  5402. height: math.unit(20000, "km")
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(28.35, "feet"),
  5411. weight: math.unit(99.75, "tons"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/asana-mech/side.svg",
  5415. extra: 923 / 699,
  5416. bottom: 50 / 975
  5417. }
  5418. },
  5419. chaingun: {
  5420. height: math.unit(7, "feet"),
  5421. weight: math.unit(2400, "lb"),
  5422. name: "Chaingun",
  5423. image: {
  5424. source: "./media/characters/asana-mech/chaingun.svg"
  5425. }
  5426. },
  5427. laser: {
  5428. height: math.unit(7.12, "feet"),
  5429. weight: math.unit(2000, "lb"),
  5430. name: "Laser",
  5431. image: {
  5432. source: "./media/characters/asana-mech/laser.svg"
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(28.35, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(2500, "feet")
  5445. },
  5446. {
  5447. name: "Megamacro",
  5448. height: math.unit(25, "miles")
  5449. },
  5450. {
  5451. name: "Examacro",
  5452. height: math.unit(6e8, "lightyears")
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5458. {
  5459. front: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Front",
  5463. image: {
  5464. source: "./media/characters/asche/front.svg",
  5465. extra: 1258 / 1190,
  5466. bottom: 47 / 1305
  5467. }
  5468. },
  5469. frontUnderwear: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Front (Underwear)",
  5473. image: {
  5474. source: "./media/characters/asche/front-underwear.svg",
  5475. extra: 1258 / 1190,
  5476. bottom: 47 / 1305
  5477. }
  5478. },
  5479. frontDressed: {
  5480. height: math.unit(5, "meters"),
  5481. weight: math.unit(1000, "kg"),
  5482. name: "Front (Dressed)",
  5483. image: {
  5484. source: "./media/characters/asche/front-dressed.svg",
  5485. extra: 1258 / 1190,
  5486. bottom: 47 / 1305
  5487. }
  5488. },
  5489. frontArmor: {
  5490. height: math.unit(5, "meters"),
  5491. weight: math.unit(1000, "kg"),
  5492. name: "Front (Armored)",
  5493. image: {
  5494. source: "./media/characters/asche/front-armored.svg",
  5495. extra: 1374 / 1308,
  5496. bottom: 23 / 1397
  5497. }
  5498. },
  5499. mp724: {
  5500. height: math.unit(0.96, "meters"),
  5501. weight: math.unit(38, "kg"),
  5502. name: "H&K MP724",
  5503. image: {
  5504. source: "./media/characters/asche/h&k-mp724.svg"
  5505. }
  5506. },
  5507. side: {
  5508. height: math.unit(5, "meters"),
  5509. weight: math.unit(1000, "kg"),
  5510. name: "Side",
  5511. image: {
  5512. source: "./media/characters/asche/side.svg",
  5513. extra: 1717 / 1609,
  5514. bottom: 0.005
  5515. }
  5516. },
  5517. back: {
  5518. height: math.unit(5, "meters"),
  5519. weight: math.unit(1000, "kg"),
  5520. name: "Back",
  5521. image: {
  5522. source: "./media/characters/asche/back.svg",
  5523. extra: 1570 / 1501
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "DEFCON 5",
  5530. height: math.unit(5, "meters")
  5531. },
  5532. {
  5533. name: "DEFCON 4",
  5534. height: math.unit(500, "meters"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "DEFCON 3",
  5539. height: math.unit(5, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 2",
  5543. height: math.unit(500, "km")
  5544. },
  5545. {
  5546. name: "DEFCON 1",
  5547. height: math.unit(500000, "km")
  5548. },
  5549. {
  5550. name: "DEFCON 0",
  5551. height: math.unit(3, "gigaparsecs")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(7, "feet"),
  5560. weight: math.unit(92.7, "kg"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/gale/front.svg",
  5564. extra: 977/919,
  5565. bottom: 105/1082
  5566. }
  5567. },
  5568. side: {
  5569. height: math.unit(6.7, "feet"),
  5570. weight: math.unit(92.7, "kg"),
  5571. name: "Side",
  5572. image: {
  5573. source: "./media/characters/gale/side.svg",
  5574. extra: 978/922,
  5575. bottom: 140/1118
  5576. }
  5577. },
  5578. back: {
  5579. height: math.unit(7, "feet"),
  5580. weight: math.unit(92.7, "kg"),
  5581. name: "Back",
  5582. image: {
  5583. source: "./media/characters/gale/back.svg",
  5584. extra: 966/920,
  5585. bottom: 61/1027
  5586. }
  5587. },
  5588. maw: {
  5589. height: math.unit(2.23, "feet"),
  5590. name: "Maw",
  5591. image: {
  5592. source: "./media/characters/gale/maw.svg"
  5593. }
  5594. },
  5595. foot: {
  5596. height: math.unit(2.1, "feet"),
  5597. name: "Foot",
  5598. image: {
  5599. source: "./media/characters/gale/foot.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(7, "feet")
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(150, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Macro+",
  5615. height: math.unit(300, "feet")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5621. {
  5622. front: {
  5623. height: math.unit(5 + 10/12, "feet"),
  5624. weight: math.unit(67, "kg"),
  5625. name: "Front",
  5626. image: {
  5627. source: "./media/characters/draylen/front.svg",
  5628. extra: 832/777,
  5629. bottom: 85/917
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(5 + 10/12, "feet")
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(150, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(7 + 9 / 12, "feet"),
  5650. weight: math.unit(379, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/chez/front.svg"
  5654. }
  5655. },
  5656. side: {
  5657. height: math.unit(7 + 9 / 12, "feet"),
  5658. weight: math.unit(379, "lbs"),
  5659. name: "Side",
  5660. image: {
  5661. source: "./media/characters/chez/side.svg"
  5662. }
  5663. }
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(7 + 9 / 12, "feet"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "God King",
  5673. height: math.unit(9750000, "meters")
  5674. }
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(275, "lbs"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/kaylum/front.svg",
  5686. bottom: 0.01,
  5687. extra: 1166 / 1031
  5688. }
  5689. },
  5690. frontWingless: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(275, "lbs"),
  5693. name: "Front (Wingless)",
  5694. image: {
  5695. source: "./media/characters/kaylum/front-wingless.svg",
  5696. bottom: 0.01,
  5697. extra: 1117 / 1031
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(3.05, "meters")
  5705. },
  5706. {
  5707. name: "Master",
  5708. height: math.unit(5.5, "meters")
  5709. },
  5710. {
  5711. name: "Rampage",
  5712. height: math.unit(19, "meters")
  5713. },
  5714. {
  5715. name: "Macro Lite",
  5716. height: math.unit(37, "meters")
  5717. },
  5718. {
  5719. name: "Hyper Predator",
  5720. height: math.unit(61, "meters")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(138, "meters"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5731. {
  5732. front: {
  5733. height: math.unit(5 + 5 / 12, "feet"),
  5734. weight: math.unit(120, "lbs"),
  5735. name: "Front",
  5736. image: {
  5737. source: "./media/characters/geta/front.svg",
  5738. extra: 1003/933,
  5739. bottom: 21/1024
  5740. }
  5741. },
  5742. paw: {
  5743. height: math.unit(0.35, "feet"),
  5744. name: "Paw",
  5745. image: {
  5746. source: "./media/characters/geta/paw.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Micro",
  5753. height: math.unit(3, "inches"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Normal",
  5758. height: math.unit(5 + 5 / 12, "feet")
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(300, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/tyrnn/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Main Height",
  5777. height: math.unit(355, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Fave. Height",
  5782. height: math.unit(2400, "feet")
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(300, "lbs"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/appledectomy/front.svg"
  5795. }
  5796. }
  5797. },
  5798. [
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(2500, "feet")
  5802. },
  5803. {
  5804. name: "Megamacro",
  5805. height: math.unit(50, "miles"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Gigamacro",
  5810. height: math.unit(5000, "miles")
  5811. },
  5812. {
  5813. name: "Teramacro",
  5814. height: math.unit(250000, "miles")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(200, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/vulpes/front.svg",
  5827. extra: 573 / 543,
  5828. bottom: 0.033
  5829. }
  5830. },
  5831. side: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(200, "lbs"),
  5834. name: "Side",
  5835. image: {
  5836. source: "./media/characters/vulpes/side.svg",
  5837. extra: 577 / 549,
  5838. bottom: 11 / 588
  5839. }
  5840. },
  5841. back: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(200, "lbs"),
  5844. name: "Back",
  5845. image: {
  5846. source: "./media/characters/vulpes/back.svg",
  5847. extra: 573 / 549,
  5848. bottom: 20 / 593
  5849. }
  5850. },
  5851. feet: {
  5852. height: math.unit(1.276, "feet"),
  5853. name: "Feet",
  5854. image: {
  5855. source: "./media/characters/vulpes/feet.svg"
  5856. }
  5857. },
  5858. maw: {
  5859. height: math.unit(1.18, "feet"),
  5860. name: "Maw",
  5861. image: {
  5862. source: "./media/characters/vulpes/maw.svg"
  5863. }
  5864. },
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(2, "inches")
  5870. },
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(6.3, "feet")
  5874. },
  5875. {
  5876. name: "Macro",
  5877. height: math.unit(850, "feet")
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(7500, "feet"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Gigamacro",
  5886. height: math.unit(570000, "miles")
  5887. }
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5892. {
  5893. front: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/front.svg"
  5899. }
  5900. },
  5901. side: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Side",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/side.svg"
  5907. }
  5908. },
  5909. back: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(210, "lbs"),
  5912. name: "Back",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/back.svg"
  5915. }
  5916. },
  5917. feral: {
  5918. height: math.unit(9, "feet"),
  5919. weight: math.unit(700, "lbs"),
  5920. name: "Feral",
  5921. image: {
  5922. source: "./media/characters/rain-fallen/feral.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Meddling with Mortals",
  5929. height: math.unit(8 + 8/12, "feet")
  5930. },
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(5, "meter")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(150, "meter"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(278e6, "meter")
  5943. },
  5944. {
  5945. name: "Gigamacro",
  5946. height: math.unit(2e9, "meter")
  5947. },
  5948. {
  5949. name: "Teramacro",
  5950. height: math.unit(8e12, "meter")
  5951. },
  5952. {
  5953. name: "Devourer",
  5954. height: math.unit(14, "zettameters")
  5955. },
  5956. {
  5957. name: "Scarlet King",
  5958. height: math.unit(18, "yottameters")
  5959. },
  5960. {
  5961. name: "Void",
  5962. height: math.unit(1e88, "yottameters")
  5963. }
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5968. {
  5969. standing: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(180, "lbs"),
  5972. name: "Standing",
  5973. image: {
  5974. source: "./media/characters/zaakira/standing.svg",
  5975. extra: 1599/1504,
  5976. bottom: 39/1638
  5977. }
  5978. },
  5979. laying: {
  5980. height: math.unit(3.3, "feet"),
  5981. weight: math.unit(180, "lbs"),
  5982. name: "Laying",
  5983. image: {
  5984. source: "./media/characters/zaakira/laying.svg"
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(12, "feet")
  5992. },
  5993. {
  5994. name: "Macro",
  5995. height: math.unit(279, "feet"),
  5996. default: true
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6002. {
  6003. femSfw: {
  6004. height: math.unit(8, "feet"),
  6005. weight: math.unit(350, "lb"),
  6006. name: "Fem",
  6007. image: {
  6008. source: "./media/characters/sigvald/fem-sfw.svg",
  6009. extra: 182 / 164,
  6010. bottom: 8.7 / 190.5
  6011. }
  6012. },
  6013. femNsfw: {
  6014. height: math.unit(8, "feet"),
  6015. weight: math.unit(350, "lb"),
  6016. name: "Fem (NSFW)",
  6017. image: {
  6018. source: "./media/characters/sigvald/fem-nsfw.svg",
  6019. extra: 182 / 164,
  6020. bottom: 8.7 / 190.5
  6021. }
  6022. },
  6023. maleNsfw: {
  6024. height: math.unit(8, "feet"),
  6025. weight: math.unit(350, "lb"),
  6026. name: "Male (NSFW)",
  6027. image: {
  6028. source: "./media/characters/sigvald/male-nsfw.svg",
  6029. extra: 182 / 164,
  6030. bottom: 8.7 / 190.5
  6031. }
  6032. },
  6033. hermNsfw: {
  6034. height: math.unit(8, "feet"),
  6035. weight: math.unit(350, "lb"),
  6036. name: "Herm (NSFW)",
  6037. image: {
  6038. source: "./media/characters/sigvald/herm-nsfw.svg",
  6039. extra: 182 / 164,
  6040. bottom: 8.7 / 190.5
  6041. }
  6042. },
  6043. dick: {
  6044. height: math.unit(2.36, "feet"),
  6045. name: "Dick",
  6046. image: {
  6047. source: "./media/characters/sigvald/dick.svg"
  6048. }
  6049. },
  6050. eye: {
  6051. height: math.unit(0.31, "feet"),
  6052. name: "Eye",
  6053. image: {
  6054. source: "./media/characters/sigvald/eye.svg"
  6055. }
  6056. },
  6057. mouth: {
  6058. height: math.unit(0.92, "feet"),
  6059. name: "Mouth",
  6060. image: {
  6061. source: "./media/characters/sigvald/mouth.svg"
  6062. }
  6063. },
  6064. paws: {
  6065. height: math.unit(2.2, "feet"),
  6066. name: "Paws",
  6067. image: {
  6068. source: "./media/characters/sigvald/paws.svg"
  6069. }
  6070. }
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(8, "feet")
  6076. },
  6077. {
  6078. name: "Large",
  6079. height: math.unit(12, "feet")
  6080. },
  6081. {
  6082. name: "Larger",
  6083. height: math.unit(20, "feet")
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(150, "feet")
  6088. },
  6089. {
  6090. name: "Macro+",
  6091. height: math.unit(200, "feet"),
  6092. default: true
  6093. },
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6098. {
  6099. side: {
  6100. height: math.unit(12, "feet"),
  6101. weight: math.unit(2000, "kg"),
  6102. name: "Side",
  6103. image: {
  6104. source: "./media/characters/scott/side.svg",
  6105. extra: 754 / 724,
  6106. bottom: 0.069
  6107. }
  6108. },
  6109. upright: {
  6110. height: math.unit(12, "feet"),
  6111. weight: math.unit(2000, "kg"),
  6112. name: "Upright",
  6113. image: {
  6114. source: "./media/characters/scott/upright.svg",
  6115. extra: 3881 / 3722,
  6116. bottom: 0.05
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(12, "feet"),
  6124. default: true
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6130. {
  6131. side: {
  6132. height: math.unit(8, "meters"),
  6133. weight: math.unit(84755, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/tobias/side.svg",
  6137. extra: 1474 / 1096,
  6138. bottom: 38.9 / 1513.1235
  6139. }
  6140. },
  6141. maw: {
  6142. height: math.unit(2.3, "meters"),
  6143. name: "Maw",
  6144. image: {
  6145. source: "./media/characters/tobias/maw.svg"
  6146. }
  6147. },
  6148. burp: {
  6149. height: math.unit(2.85, "meters"),
  6150. name: "Burp",
  6151. image: {
  6152. source: "./media/characters/tobias/burp.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(8, "meters"),
  6160. default: true
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6166. {
  6167. front: {
  6168. height: math.unit(5.5, "feet"),
  6169. weight: math.unit(400, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/kieran/front.svg",
  6173. extra: 2694 / 2364,
  6174. bottom: 217 / 2908
  6175. }
  6176. },
  6177. side: {
  6178. height: math.unit(5.5, "feet"),
  6179. weight: math.unit(400, "lbs"),
  6180. name: "Side",
  6181. image: {
  6182. source: "./media/characters/kieran/side.svg",
  6183. extra: 875 / 777,
  6184. bottom: 84.6 / 959
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(5.5, "feet"),
  6192. default: true
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6198. {
  6199. side: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(70, "kg"),
  6202. name: "Side",
  6203. image: {
  6204. source: "./media/characters/sanya/side.svg",
  6205. bottom: 0.02,
  6206. extra: 1.02
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Small",
  6213. height: math.unit(2, "meters")
  6214. },
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(3, "meters")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(16, "meters"),
  6222. default: true
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(2, "meters"),
  6231. weight: math.unit(120, "kg"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/miranda/front.svg",
  6235. extra: 195 / 185,
  6236. bottom: 10.9 / 206.5
  6237. }
  6238. },
  6239. back: {
  6240. height: math.unit(2, "meters"),
  6241. weight: math.unit(120, "kg"),
  6242. name: "Back",
  6243. image: {
  6244. source: "./media/characters/miranda/back.svg",
  6245. extra: 201 / 193,
  6246. bottom: 2.3 / 203.7
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(10, "feet"),
  6254. default: true
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "James", species: ["deer"], tags: ["anthro"] },
  6260. {
  6261. side: {
  6262. height: math.unit(2, "meters"),
  6263. weight: math.unit(100, "kg"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/james/front.svg",
  6267. extra: 10 / 8.5
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(8.5, "feet"),
  6275. default: true
  6276. }
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6281. {
  6282. side: {
  6283. height: math.unit(9.5, "feet"),
  6284. weight: math.unit(2500, "lbs"),
  6285. name: "Side",
  6286. image: {
  6287. source: "./media/characters/heather/side.svg"
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(9.5, "feet"),
  6295. default: true
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6301. {
  6302. side: {
  6303. height: math.unit(6.5, "feet"),
  6304. weight: math.unit(400, "lbs"),
  6305. name: "Side",
  6306. image: {
  6307. source: "./media/characters/lukas/side.svg",
  6308. extra: 7.25 / 6.5
  6309. }
  6310. },
  6311. },
  6312. [
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(6.5, "feet"),
  6316. default: true
  6317. }
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6322. {
  6323. side: {
  6324. height: math.unit(5, "feet"),
  6325. weight: math.unit(3000, "lbs"),
  6326. name: "Side",
  6327. image: {
  6328. source: "./media/characters/louise/side.svg"
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(5, "feet"),
  6336. default: true
  6337. }
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6342. {
  6343. side: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(150, "lbs"),
  6346. name: "Side",
  6347. image: {
  6348. source: "./media/characters/ramona/side.svg",
  6349. extra: 871/854,
  6350. bottom: 41/912
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(6 + 4/12, "feet")
  6358. },
  6359. {
  6360. name: "Minimacro",
  6361. height: math.unit(5.3, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(20, "stories")
  6367. },
  6368. {
  6369. name: "Macro+",
  6370. height: math.unit(50, "stories")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6376. {
  6377. standing: {
  6378. height: math.unit(5.75, "feet"),
  6379. weight: math.unit(160, "lbs"),
  6380. name: "Standing",
  6381. image: {
  6382. source: "./media/characters/deerpuff/standing.svg",
  6383. extra: 682 / 624
  6384. }
  6385. },
  6386. sitting: {
  6387. height: math.unit(5.75 / 1.79, "feet"),
  6388. weight: math.unit(160, "lbs"),
  6389. name: "Sitting",
  6390. image: {
  6391. source: "./media/characters/deerpuff/sitting.svg",
  6392. bottom: 44 / 400,
  6393. extra: 1
  6394. }
  6395. },
  6396. taurLaying: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(400, "lbs"),
  6399. name: "Taur (Laying)",
  6400. image: {
  6401. source: "./media/characters/deerpuff/taur-laying.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Puffball",
  6408. height: math.unit(6, "inches")
  6409. },
  6410. {
  6411. name: "Normalpuff",
  6412. height: math.unit(5.75, "feet")
  6413. },
  6414. {
  6415. name: "Macropuff",
  6416. height: math.unit(1500, "feet"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Megapuff",
  6421. height: math.unit(500, "miles")
  6422. },
  6423. {
  6424. name: "Gigapuff",
  6425. height: math.unit(250000, "miles")
  6426. },
  6427. {
  6428. name: "Omegapuff",
  6429. height: math.unit(1000, "lightyears")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6435. {
  6436. stomping: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(170, "lbs"),
  6439. name: "Stomping",
  6440. image: {
  6441. source: "./media/characters/vivian/stomping.svg"
  6442. }
  6443. },
  6444. sitting: {
  6445. height: math.unit(6 / 1.75, "feet"),
  6446. weight: math.unit(170, "lbs"),
  6447. name: "Sitting",
  6448. image: {
  6449. source: "./media/characters/vivian/sitting.svg",
  6450. bottom: 1 / 6.4,
  6451. extra: 1,
  6452. }
  6453. },
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(7, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(10, "stories")
  6464. },
  6465. {
  6466. name: "Macro+",
  6467. height: math.unit(30, "stories")
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(10, "miles")
  6472. },
  6473. {
  6474. name: "Megamacro+",
  6475. height: math.unit(2750000, "meters")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(160, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/prince/front.svg",
  6488. extra: 1938/1682,
  6489. bottom: 45/1983
  6490. }
  6491. },
  6492. back: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(160, "lbs"),
  6495. name: "Back",
  6496. image: {
  6497. source: "./media/characters/prince/back.svg",
  6498. extra: 1955/1726,
  6499. bottom: 6/1961
  6500. }
  6501. },
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(7.75, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Not cute",
  6511. height: math.unit(17, "feet")
  6512. },
  6513. {
  6514. name: "I said NOT",
  6515. height: math.unit(91, "feet")
  6516. },
  6517. {
  6518. name: "Please stop",
  6519. height: math.unit(560, "feet")
  6520. },
  6521. {
  6522. name: "What have you done",
  6523. height: math.unit(2200, "feet")
  6524. },
  6525. {
  6526. name: "Deer God",
  6527. height: math.unit(3.6, "miles")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6533. {
  6534. standing: {
  6535. height: math.unit(6, "feet"),
  6536. weight: math.unit(300, "lbs"),
  6537. name: "Standing",
  6538. image: {
  6539. source: "./media/characters/psymon/standing.svg",
  6540. extra: 1888 / 1810,
  6541. bottom: 0.05
  6542. }
  6543. },
  6544. slithering: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(300, "lbs"),
  6547. name: "Slithering",
  6548. image: {
  6549. source: "./media/characters/psymon/slithering.svg",
  6550. extra: 1330 / 1224
  6551. }
  6552. },
  6553. slitheringAlt: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(300, "lbs"),
  6556. name: "Slithering (Alt)",
  6557. image: {
  6558. source: "./media/characters/psymon/slithering-alt.svg",
  6559. extra: 1330 / 1224
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(11.25, "feet"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Large",
  6571. height: math.unit(27, "feet")
  6572. },
  6573. {
  6574. name: "Giant",
  6575. height: math.unit(87, "feet")
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(365, "feet")
  6580. },
  6581. {
  6582. name: "Megamacro",
  6583. height: math.unit(3, "miles")
  6584. },
  6585. {
  6586. name: "World Serpent",
  6587. height: math.unit(8000, "miles")
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(180, "lbs"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/daimos/front.svg",
  6600. extra: 4160 / 3897,
  6601. bottom: 0.021
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(8, "feet"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Big Dog",
  6613. height: math.unit(22, "feet")
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(127, "feet")
  6618. },
  6619. {
  6620. name: "Megamacro",
  6621. height: math.unit(3600, "feet")
  6622. },
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6627. {
  6628. side: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(180, "lbs"),
  6631. name: "Side",
  6632. image: {
  6633. source: "./media/characters/blake/side.svg",
  6634. extra: 1212 / 1120,
  6635. bottom: 0.05
  6636. }
  6637. },
  6638. crouched: {
  6639. height: math.unit(6 * 0.57, "feet"),
  6640. weight: math.unit(180, "lbs"),
  6641. name: "Crouched",
  6642. image: {
  6643. source: "./media/characters/blake/crouched.svg",
  6644. extra: 840 / 587,
  6645. bottom: 0.04
  6646. }
  6647. },
  6648. bent: {
  6649. height: math.unit(6 * 0.75, "feet"),
  6650. weight: math.unit(180, "lbs"),
  6651. name: "Bent",
  6652. image: {
  6653. source: "./media/characters/blake/bent.svg",
  6654. extra: 592 / 544,
  6655. bottom: 0.035
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(8 + 1 / 6, "feet"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Big Backside",
  6667. height: math.unit(37, "feet")
  6668. },
  6669. {
  6670. name: "Subway Shredder",
  6671. height: math.unit(72, "feet")
  6672. },
  6673. {
  6674. name: "City Carver",
  6675. height: math.unit(1675, "feet")
  6676. },
  6677. {
  6678. name: "Tectonic Tweaker",
  6679. height: math.unit(2300, "miles")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(180, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/guisetto/front.svg",
  6692. extra: 856 / 817,
  6693. bottom: 0.06
  6694. }
  6695. },
  6696. airborne: {
  6697. height: math.unit(6, "feet"),
  6698. weight: math.unit(180, "lbs"),
  6699. name: "Airborne",
  6700. image: {
  6701. source: "./media/characters/guisetto/airborne.svg",
  6702. extra: 584 / 525
  6703. }
  6704. },
  6705. },
  6706. [
  6707. {
  6708. name: "Normal",
  6709. height: math.unit(10 + 11 / 12, "feet"),
  6710. default: true
  6711. },
  6712. {
  6713. name: "Large",
  6714. height: math.unit(35, "feet")
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(475, "feet")
  6719. },
  6720. ]
  6721. ))
  6722. characterMakers.push(() => makeCharacter(
  6723. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6724. {
  6725. front: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(180, "lbs"),
  6728. name: "Front",
  6729. image: {
  6730. source: "./media/characters/luxor/front.svg",
  6731. extra: 2940 / 2152
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(6, "feet"),
  6736. weight: math.unit(180, "lbs"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/luxor/back.svg",
  6740. extra: 1083 / 960
  6741. }
  6742. },
  6743. },
  6744. [
  6745. {
  6746. name: "Normal",
  6747. height: math.unit(5 + 5 / 6, "feet"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Lamp",
  6752. height: math.unit(50, "feet")
  6753. },
  6754. {
  6755. name: "Lämp",
  6756. height: math.unit(300, "feet")
  6757. },
  6758. {
  6759. name: "The sun is a lamp",
  6760. height: math.unit(250000, "miles")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(50, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/huoyan/front.svg"
  6773. }
  6774. },
  6775. side: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(180, "lbs"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/huoyan/side.svg"
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Chef",
  6787. height: math.unit(9, "feet")
  6788. },
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(65, "feet"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(780, "feet")
  6797. },
  6798. {
  6799. name: "Flaming Mountain",
  6800. height: math.unit(4.8, "miles")
  6801. },
  6802. {
  6803. name: "Celestial",
  6804. height: math.unit(765000, "miles")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(5 + 3 / 4, "feet"),
  6813. weight: math.unit(120, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/tails/front.svg"
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(5 + 3 / 4, "feet"),
  6824. default: true
  6825. }
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(4, "feet"),
  6833. weight: math.unit(50, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/rainy/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(800, "feet"),
  6844. default: true
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(150, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/rainier/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(2, "mm"),
  6864. default: true
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(8 + 4/12, "feet"),
  6873. weight: math.unit(450, "kilograms"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/andy-renard/front.svg",
  6877. extra: 862/809,
  6878. bottom: 85/947
  6879. },
  6880. extraAttributes: {
  6881. "pawSize": {
  6882. name: "Paw Size",
  6883. power: 2,
  6884. type: "area",
  6885. base: math.unit(0.45*0.3, "meters^2")
  6886. },
  6887. "handSize": {
  6888. name: "Hand Size",
  6889. power: 2,
  6890. type: "area",
  6891. base: math.unit(0.4 * 0.3, "meters^2")
  6892. },
  6893. "cockSize": {
  6894. name: "Cock Length",
  6895. power: 1,
  6896. type: "length",
  6897. base: math.unit(0.75, "meters")
  6898. },
  6899. "ballDiameter": {
  6900. name: "Ball Diameter",
  6901. power: 1,
  6902. type: "length",
  6903. base: math.unit(0.3, "meters")
  6904. },
  6905. "ballVolume": {
  6906. name: "Ball Volume",
  6907. power: 3,
  6908. type: "volume",
  6909. base: math.unit(0.01413716694, "meters^3")
  6910. },
  6911. }
  6912. },
  6913. back: {
  6914. height: math.unit(8 + 4/12, "feet"),
  6915. weight: math.unit(450, "kilograms"),
  6916. name: "Back",
  6917. image: {
  6918. source: "./media/characters/andy-renard/back.svg",
  6919. extra: 1112/1033,
  6920. bottom: 64/1176
  6921. },
  6922. extraAttributes: {
  6923. "pawSize": {
  6924. name: "Paw Size",
  6925. power: 2,
  6926. type: "area",
  6927. base: math.unit(0.45*0.3, "meters^2")
  6928. },
  6929. "handSize": {
  6930. name: "Hand Size",
  6931. power: 2,
  6932. type: "area",
  6933. base: math.unit(0.4 * 0.3, "meters^2")
  6934. },
  6935. "cockSize": {
  6936. name: "Cock Length",
  6937. power: 1,
  6938. type: "length",
  6939. base: math.unit(0.75, "meters")
  6940. },
  6941. "ballDiameter": {
  6942. name: "Ball Diameter",
  6943. power: 1,
  6944. type: "length",
  6945. base: math.unit(0.3, "meters")
  6946. },
  6947. "ballVolume": {
  6948. name: "Ball Volume",
  6949. power: 3,
  6950. type: "volume",
  6951. base: math.unit(0.01413716694, "meters^3")
  6952. },
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Tall",
  6959. height: math.unit(6 + 8/12, "feet")
  6960. },
  6961. {
  6962. name: "Very Tall",
  6963. height: math.unit(8 + 4/12, "feet")
  6964. },
  6965. {
  6966. name: "Mini Macro",
  6967. height: math.unit(15, "feet"),
  6968. default: true
  6969. },
  6970. {
  6971. name: "Giant",
  6972. height: math.unit(50, "feet")
  6973. },
  6974. {
  6975. name: "Nice",
  6976. height: math.unit(69, "feet")
  6977. },
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(100, "feet")
  6981. },
  6982. {
  6983. name: "Enormous",
  6984. height: math.unit(500, "feet")
  6985. },
  6986. {
  6987. name: "Gargantuan",
  6988. height: math.unit(1000, "feet")
  6989. },
  6990. {
  6991. name: "Mega",
  6992. height: math.unit(1, "mile")
  6993. },
  6994. {
  6995. name: "Giga",
  6996. height: math.unit(50, "miles")
  6997. },
  6998. {
  6999. name: "Tera",
  7000. height: math.unit(1000, "miles")
  7001. },
  7002. {
  7003. name: "Cosmic",
  7004. height: math.unit(1.5, "galaxies")
  7005. },
  7006. {
  7007. name: "God",
  7008. height: math.unit(1.5, "universes")
  7009. },
  7010. {
  7011. name: "Chief Execute God",
  7012. height: math.unit(1.5, "multiverses")
  7013. },
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(6, "feet"),
  7021. weight: math.unit(210, "lbs"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/cimmaron/front-sfw.svg",
  7025. extra: 701 / 676,
  7026. bottom: 0.046
  7027. }
  7028. },
  7029. back: {
  7030. height: math.unit(6, "feet"),
  7031. weight: math.unit(210, "lbs"),
  7032. name: "Back",
  7033. image: {
  7034. source: "./media/characters/cimmaron/back-sfw.svg",
  7035. extra: 701 / 676,
  7036. bottom: 0.046
  7037. }
  7038. },
  7039. frontNsfw: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(210, "lbs"),
  7042. name: "Front (NSFW)",
  7043. image: {
  7044. source: "./media/characters/cimmaron/front-nsfw.svg",
  7045. extra: 701 / 676,
  7046. bottom: 0.046
  7047. }
  7048. },
  7049. backNsfw: {
  7050. height: math.unit(6, "feet"),
  7051. weight: math.unit(210, "lbs"),
  7052. name: "Back (NSFW)",
  7053. image: {
  7054. source: "./media/characters/cimmaron/back-nsfw.svg",
  7055. extra: 701 / 676,
  7056. bottom: 0.046
  7057. }
  7058. },
  7059. dick: {
  7060. height: math.unit(1.714, "feet"),
  7061. name: "Dick",
  7062. image: {
  7063. source: "./media/characters/cimmaron/dick.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(6, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro Mayor",
  7075. height: math.unit(350, "meters")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(200, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/akari/front.svg",
  7088. extra: 962 / 901,
  7089. bottom: 0.04
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(5, "inches"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(7, "feet")
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(140, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/cynosura/front.svg",
  7114. extra: 437/410,
  7115. bottom: 9/446
  7116. }
  7117. },
  7118. back: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(140, "lbs"),
  7121. name: "Back",
  7122. image: {
  7123. source: "./media/characters/cynosura/back.svg",
  7124. extra: 1304/1160,
  7125. bottom: 71/1375
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(4, "inches")
  7133. },
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(5.75, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Tall",
  7141. height: math.unit(10, "feet")
  7142. },
  7143. {
  7144. name: "Big",
  7145. height: math.unit(20, "feet")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(50, "feet")
  7150. },
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(13 + 2/12, "feet"),
  7158. weight: math.unit(800, "kg"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/gin/front.svg",
  7162. extra: 1312/1191,
  7163. bottom: 45/1357
  7164. }
  7165. },
  7166. mouth: {
  7167. height: math.unit(2.39 * 1.8, "feet"),
  7168. name: "Mouth",
  7169. image: {
  7170. source: "./media/characters/gin/mouth.svg"
  7171. }
  7172. },
  7173. hand: {
  7174. height: math.unit(1.57 * 2.19, "feet"),
  7175. name: "Hand",
  7176. image: {
  7177. source: "./media/characters/gin/hand.svg"
  7178. }
  7179. },
  7180. foot: {
  7181. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7182. name: "Foot",
  7183. image: {
  7184. source: "./media/characters/gin/foot.svg"
  7185. }
  7186. },
  7187. sole: {
  7188. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7189. name: "Sole",
  7190. image: {
  7191. source: "./media/characters/gin/sole.svg"
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Very Small",
  7198. height: math.unit(13 + 2 / 12, "feet")
  7199. },
  7200. {
  7201. name: "Micro",
  7202. height: math.unit(600, "miles")
  7203. },
  7204. {
  7205. name: "Regular",
  7206. height: math.unit(20, "earths"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(2.2, "solarradii")
  7212. },
  7213. {
  7214. name: "Teramacro",
  7215. height: math.unit(1.2, "galaxies")
  7216. },
  7217. {
  7218. name: "Omegamacro",
  7219. height: math.unit(200, "universes")
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6 + 1 / 6, "feet"),
  7228. weight: math.unit(178, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/guy/front.svg"
  7232. }
  7233. }
  7234. },
  7235. [
  7236. {
  7237. name: "Normal",
  7238. height: math.unit(6 + 1 / 6, "feet"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Large",
  7243. height: math.unit(25 + 7 / 12, "feet")
  7244. },
  7245. {
  7246. name: "Macro",
  7247. height: math.unit(60 + 9 / 12, "feet")
  7248. },
  7249. {
  7250. name: "Macro+",
  7251. height: math.unit(246, "feet")
  7252. },
  7253. {
  7254. name: "Macro++",
  7255. height: math.unit(878, "feet")
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(9, "feet"),
  7264. weight: math.unit(800, "lbs"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/tiberius/front.svg",
  7268. extra: 2295 / 2071
  7269. }
  7270. },
  7271. back: {
  7272. height: math.unit(9, "feet"),
  7273. weight: math.unit(800, "lbs"),
  7274. name: "Back",
  7275. image: {
  7276. source: "./media/characters/tiberius/back.svg",
  7277. extra: 2373 / 2160
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(9, "feet"),
  7285. default: true
  7286. }
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(600, "lbs"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/surgo/front.svg",
  7298. extra: 3591 / 2227
  7299. }
  7300. },
  7301. back: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(600, "lbs"),
  7304. name: "Back",
  7305. image: {
  7306. source: "./media/characters/surgo/back.svg",
  7307. extra: 3557 / 2228
  7308. }
  7309. },
  7310. laying: {
  7311. height: math.unit(6 * 0.85, "feet"),
  7312. weight: math.unit(600, "lbs"),
  7313. name: "Laying",
  7314. image: {
  7315. source: "./media/characters/surgo/laying.svg"
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(6, "feet"),
  7323. default: true
  7324. }
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7329. {
  7330. side: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(150, "lbs"),
  7333. name: "Side",
  7334. image: {
  7335. source: "./media/characters/cibus/side.svg",
  7336. extra: 800 / 400
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(6, "feet"),
  7344. default: true
  7345. }
  7346. ]
  7347. ))
  7348. characterMakers.push(() => makeCharacter(
  7349. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7350. {
  7351. front: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(240, "lbs"),
  7354. name: "Front",
  7355. image: {
  7356. source: "./media/characters/nibbles/front.svg"
  7357. }
  7358. },
  7359. side: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(240, "lbs"),
  7362. name: "Side",
  7363. image: {
  7364. source: "./media/characters/nibbles/side.svg"
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9, "feet"),
  7372. default: true
  7373. }
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7378. {
  7379. side: {
  7380. height: math.unit(5 + 1 / 6, "feet"),
  7381. weight: math.unit(130, "lbs"),
  7382. name: "Side",
  7383. image: {
  7384. source: "./media/characters/rikky/side.svg",
  7385. extra: 851 / 801
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(5 + 1 / 6, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(152, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(7, "miles")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7407. {
  7408. side: {
  7409. height: math.unit(370, "cm"),
  7410. weight: math.unit(350, "lbs"),
  7411. name: "Side",
  7412. image: {
  7413. source: "./media/characters/malfressa/side.svg"
  7414. }
  7415. },
  7416. walking: {
  7417. height: math.unit(370, "cm"),
  7418. weight: math.unit(350, "lbs"),
  7419. name: "Walking",
  7420. image: {
  7421. source: "./media/characters/malfressa/walking.svg"
  7422. }
  7423. },
  7424. feral: {
  7425. height: math.unit(2500, "cm"),
  7426. weight: math.unit(100000, "lbs"),
  7427. name: "Feral",
  7428. image: {
  7429. source: "./media/characters/malfressa/feral.svg",
  7430. extra: 2108 / 837,
  7431. bottom: 0.02
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(370, "cm")
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(300, "meters"),
  7443. default: true
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(60, "kg"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/jaro/front.svg",
  7456. extra: 845/817,
  7457. bottom: 45/890
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(60, "kg"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/jaro/back.svg",
  7466. extra: 847/817,
  7467. bottom: 34/881
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Micro",
  7474. height: math.unit(7, "inches")
  7475. },
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(5.5, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Minimacro",
  7483. height: math.unit(20, "feet")
  7484. },
  7485. {
  7486. name: "Macro",
  7487. height: math.unit(200, "meters")
  7488. }
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(195, "lb"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/rogue/front.svg"
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(90, "feet"),
  7507. default: true
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7513. {
  7514. standing: {
  7515. height: math.unit(5 + 8 / 12, "feet"),
  7516. weight: math.unit(140, "lb"),
  7517. name: "Standing",
  7518. image: {
  7519. source: "./media/characters/piper/standing.svg",
  7520. extra: 1440/1284,
  7521. bottom: 66/1506
  7522. }
  7523. },
  7524. running: {
  7525. height: math.unit(5 + 8 / 12, "feet"),
  7526. weight: math.unit(140, "lb"),
  7527. name: "Running",
  7528. image: {
  7529. source: "./media/characters/piper/running.svg",
  7530. extra: 3948/3655,
  7531. bottom: 0/3948
  7532. }
  7533. },
  7534. sole: {
  7535. height: math.unit(0.81, "feet"),
  7536. weight: math.unit(2, "kg"),
  7537. name: "Sole",
  7538. image: {
  7539. source: "./media/characters/piper/sole.svg"
  7540. }
  7541. },
  7542. nipple: {
  7543. height: math.unit(0.25, "feet"),
  7544. weight: math.unit(1.5, "lb"),
  7545. name: "Nipple",
  7546. image: {
  7547. source: "./media/characters/piper/nipple.svg"
  7548. }
  7549. },
  7550. head: {
  7551. height: math.unit(1.1, "feet"),
  7552. name: "Head",
  7553. image: {
  7554. source: "./media/characters/piper/head.svg"
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(2, "inches")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5 + 8 / 12, "feet")
  7566. },
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(250, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(7, "miles")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(220, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/gemini/front.svg"
  7587. }
  7588. },
  7589. back: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(220, "lb"),
  7592. name: "Back",
  7593. image: {
  7594. source: "./media/characters/gemini/back.svg"
  7595. }
  7596. },
  7597. kneeling: {
  7598. height: math.unit(6 / 1.5, "feet"),
  7599. weight: math.unit(220, "lb"),
  7600. name: "Kneeling",
  7601. image: {
  7602. source: "./media/characters/gemini/kneeling.svg",
  7603. bottom: 0.02
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(300, "meters"),
  7611. default: true
  7612. },
  7613. {
  7614. name: "Megamacro",
  7615. height: math.unit(6900, "meters")
  7616. },
  7617. ]
  7618. ))
  7619. characterMakers.push(() => makeCharacter(
  7620. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7621. {
  7622. anthro: {
  7623. height: math.unit(2.35, "meters"),
  7624. weight: math.unit(73, "kg"),
  7625. name: "Anthro",
  7626. image: {
  7627. source: "./media/characters/alicia/anthro.svg",
  7628. extra: 2571 / 2385,
  7629. bottom: 75 / 2648
  7630. }
  7631. },
  7632. paw: {
  7633. height: math.unit(1.32, "feet"),
  7634. name: "Paw",
  7635. image: {
  7636. source: "./media/characters/alicia/paw.svg"
  7637. }
  7638. },
  7639. feral: {
  7640. height: math.unit(1.69, "meters"),
  7641. weight: math.unit(73, "kg"),
  7642. name: "Feral",
  7643. image: {
  7644. source: "./media/characters/alicia/feral.svg",
  7645. extra: 2123 / 1715,
  7646. bottom: 222 / 2349
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(2.35, "meters")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(60, "meters"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(10000, "kilometers")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(7, "feet"),
  7671. weight: math.unit(250, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/archy/front.svg"
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Micro",
  7681. height: math.unit(1, "inch")
  7682. },
  7683. {
  7684. name: "Shorty",
  7685. height: math.unit(5, "feet")
  7686. },
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(7, "feet")
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(600, "meters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(1, "mile")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(1.65, "meters"),
  7707. weight: math.unit(74, "kg"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/berri/front.svg",
  7711. extra: 857 / 837,
  7712. bottom: 18 / 877
  7713. }
  7714. },
  7715. bum: {
  7716. height: math.unit(1.46, "feet"),
  7717. name: "Bum",
  7718. image: {
  7719. source: "./media/characters/berri/bum.svg"
  7720. }
  7721. },
  7722. mouth: {
  7723. height: math.unit(0.44, "feet"),
  7724. name: "Mouth",
  7725. image: {
  7726. source: "./media/characters/berri/mouth.svg"
  7727. }
  7728. },
  7729. paw: {
  7730. height: math.unit(0.826, "feet"),
  7731. name: "Paw",
  7732. image: {
  7733. source: "./media/characters/berri/paw.svg"
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(1.65, "meters")
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(60, "m"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Megamacro",
  7749. height: math.unit(9.213, "km")
  7750. },
  7751. {
  7752. name: "Planet Eater",
  7753. height: math.unit(489, "megameters")
  7754. },
  7755. {
  7756. name: "Teramacro",
  7757. height: math.unit(2471635000000, "meters")
  7758. },
  7759. {
  7760. name: "Examacro",
  7761. height: math.unit(8.0624e+26, "meters")
  7762. }
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(1.72, "meters"),
  7770. weight: math.unit(68, "kg"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/lexi/front.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Very Smol",
  7780. height: math.unit(10, "mm")
  7781. },
  7782. {
  7783. name: "Micro",
  7784. height: math.unit(6.8, "cm"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(1.72, "m")
  7790. }
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(1.69, "meters"),
  7798. weight: math.unit(68, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/martin/front.svg",
  7802. extra: 596 / 581
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(6.85, "cm"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Normal",
  7814. height: math.unit(1.69, "m")
  7815. }
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(1.69, "meters"),
  7823. weight: math.unit(68, "kg"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/juno/front.svg"
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(7, "cm")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(1.89, "m")
  7838. },
  7839. {
  7840. name: "Macro",
  7841. height: math.unit(353, "meters"),
  7842. default: true
  7843. }
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(1.93, "meters"),
  7851. weight: math.unit(83, "kg"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/samantha/front.svg"
  7855. }
  7856. },
  7857. frontClothed: {
  7858. height: math.unit(1.93, "meters"),
  7859. weight: math.unit(83, "kg"),
  7860. name: "Front (Clothed)",
  7861. image: {
  7862. source: "./media/characters/samantha/front-clothed.svg"
  7863. }
  7864. },
  7865. back: {
  7866. height: math.unit(1.93, "meters"),
  7867. weight: math.unit(83, "kg"),
  7868. name: "Back",
  7869. image: {
  7870. source: "./media/characters/samantha/back.svg"
  7871. }
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(1.93, "m")
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(74, "meters"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro+",
  7886. height: math.unit(223, "meters"),
  7887. },
  7888. {
  7889. name: "Megamacro",
  7890. height: math.unit(8381, "meters"),
  7891. },
  7892. {
  7893. name: "Megamacro+",
  7894. height: math.unit(12000, "kilometers")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(1.92, "meters"),
  7903. weight: math.unit(80, "kg"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/dr-clay/front.svg"
  7907. }
  7908. },
  7909. frontClothed: {
  7910. height: math.unit(1.92, "meters"),
  7911. weight: math.unit(80, "kg"),
  7912. name: "Front (Clothed)",
  7913. image: {
  7914. source: "./media/characters/dr-clay/front-clothed.svg"
  7915. }
  7916. }
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(1.92, "m")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(214, "meters"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Macro+",
  7930. height: math.unit(12.237, "meters"),
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(557, "megameters"),
  7935. },
  7936. {
  7937. name: "Unimaginable",
  7938. height: math.unit(120e9, "lightyears")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(2, "meters"),
  7947. weight: math.unit(80, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Teramacro",
  7957. height: math.unit(500000, "lightyears"),
  7958. default: true
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7964. {
  7965. crux: {
  7966. height: math.unit(2, "meters"),
  7967. weight: math.unit(150, "kg"),
  7968. name: "Crux",
  7969. image: {
  7970. source: "./media/characters/vemus/crux.svg",
  7971. extra: 1074/936,
  7972. bottom: 23/1097
  7973. }
  7974. },
  7975. skunkTanuki: {
  7976. height: math.unit(2, "meters"),
  7977. weight: math.unit(150, "kg"),
  7978. name: "Skunk-Tanuki",
  7979. image: {
  7980. source: "./media/characters/vemus/skunk-tanuki.svg",
  7981. extra: 926/893,
  7982. bottom: 20/946
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(4, "meters"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Big",
  7994. height: math.unit(8, "meters")
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(100, "meters")
  7999. },
  8000. {
  8001. name: "Macro+",
  8002. height: math.unit(1500, "meters")
  8003. },
  8004. {
  8005. name: "Stellar",
  8006. height: math.unit(14e8, "meters")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(2, "meters"),
  8015. weight: math.unit(70, "kg"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/beherit/front.svg",
  8019. extra: 1234/1109,
  8020. bottom: 55/1289
  8021. }
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(6, "feet")
  8028. },
  8029. {
  8030. name: "Lorg",
  8031. height: math.unit(25, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Lorger",
  8036. height: math.unit(75, "feet")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(200, "meters")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8046. {
  8047. front: {
  8048. height: math.unit(2, "meters"),
  8049. weight: math.unit(150, "kg"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/everett/front.svg",
  8053. extra: 1017/866,
  8054. bottom: 86/1103
  8055. }
  8056. },
  8057. paw: {
  8058. height: math.unit(2 / 3.6, "meters"),
  8059. name: "Paw",
  8060. image: {
  8061. source: "./media/characters/everett/paw.svg"
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(15, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Lorg",
  8073. height: math.unit(70, "feet"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Lorger",
  8078. height: math.unit(250, "feet")
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(500, "meters")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(2, "meters"),
  8091. weight: math.unit(86, "kg"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/rose/front.svg",
  8095. extra: 1785/1636,
  8096. bottom: 30/1815
  8097. },
  8098. form: "liom",
  8099. default: true
  8100. },
  8101. frontSporty: {
  8102. height: math.unit(2, "meters"),
  8103. weight: math.unit(86, "kg"),
  8104. name: "Front (Sporty)",
  8105. image: {
  8106. source: "./media/characters/rose/front-sporty.svg",
  8107. extra: 350/335,
  8108. bottom: 10/360
  8109. },
  8110. form: "liom"
  8111. },
  8112. frontAlt: {
  8113. height: math.unit(1.6, "meters"),
  8114. weight: math.unit(86, "kg"),
  8115. name: "Front (Alt)",
  8116. image: {
  8117. source: "./media/characters/rose/front-alt.svg",
  8118. extra: 299/283,
  8119. bottom: 3/302
  8120. },
  8121. form: "liom"
  8122. },
  8123. plush: {
  8124. height: math.unit(2, "meters"),
  8125. weight: math.unit(86/3, "kg"),
  8126. name: "Plush",
  8127. image: {
  8128. source: "./media/characters/rose/plush.svg",
  8129. extra: 361/337,
  8130. bottom: 11/372
  8131. },
  8132. form: "plush",
  8133. default: true
  8134. },
  8135. faeStanding: {
  8136. height: math.unit(10, "cm"),
  8137. weight: math.unit(10, "grams"),
  8138. name: "Standing",
  8139. image: {
  8140. source: "./media/characters/rose/fae-standing.svg",
  8141. extra: 1189/1060,
  8142. bottom: 27/1216
  8143. },
  8144. form: "fae",
  8145. default: true
  8146. },
  8147. faeSitting: {
  8148. height: math.unit(5, "cm"),
  8149. weight: math.unit(10, "grams"),
  8150. name: "Sitting",
  8151. image: {
  8152. source: "./media/characters/rose/fae-sitting.svg",
  8153. extra: 737/577,
  8154. bottom: 356/1093
  8155. },
  8156. form: "fae"
  8157. },
  8158. faePaw: {
  8159. height: math.unit(1.35, "cm"),
  8160. name: "Paw",
  8161. image: {
  8162. source: "./media/characters/rose/fae-paw.svg"
  8163. },
  8164. form: "fae"
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "True Micro",
  8170. height: math.unit(9, "cm"),
  8171. form: "liom"
  8172. },
  8173. {
  8174. name: "Micro",
  8175. height: math.unit(16, "cm"),
  8176. form: "liom"
  8177. },
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(1.85, "meters"),
  8181. default: true,
  8182. form: "liom"
  8183. },
  8184. {
  8185. name: "Mini-Macro",
  8186. height: math.unit(5, "meters"),
  8187. form: "liom"
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(15, "meters"),
  8192. form: "liom"
  8193. },
  8194. {
  8195. name: "True Macro",
  8196. height: math.unit(40, "meters"),
  8197. form: "liom"
  8198. },
  8199. {
  8200. name: "City Scale",
  8201. height: math.unit(1, "km"),
  8202. form: "liom"
  8203. },
  8204. {
  8205. name: "Plushie",
  8206. height: math.unit(9, "cm"),
  8207. form: "plush",
  8208. default: true
  8209. },
  8210. {
  8211. name: "Fae",
  8212. height: math.unit(10, "cm"),
  8213. form: "fae",
  8214. default: true
  8215. },
  8216. ],
  8217. {
  8218. "liom": {
  8219. name: "Liom"
  8220. },
  8221. "plush": {
  8222. name: "Plush"
  8223. },
  8224. "fae": {
  8225. name: "Fae Fox",
  8226. default: true
  8227. }
  8228. }
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(2, "meters"),
  8235. weight: math.unit(350, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/regal/front.svg"
  8239. }
  8240. },
  8241. back: {
  8242. height: math.unit(2, "meters"),
  8243. weight: math.unit(350, "lbs"),
  8244. name: "Back",
  8245. image: {
  8246. source: "./media/characters/regal/back.svg"
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(350, "feet"),
  8254. default: true
  8255. }
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8260. {
  8261. standing: {
  8262. height: math.unit(4 + 11/12, "feet"),
  8263. weight: math.unit(100, "lb"),
  8264. name: "Standing",
  8265. image: {
  8266. source: "./media/characters/opal/standing.svg",
  8267. extra: 1588/1513,
  8268. bottom: 23/1611
  8269. }
  8270. },
  8271. sitting: {
  8272. height: math.unit(2.3, "feet"),
  8273. weight: math.unit(100, "lb"),
  8274. name: "Sitting",
  8275. image: {
  8276. source: "./media/characters/opal/sitting.svg",
  8277. extra: 1031/892,
  8278. bottom: 142/1173
  8279. }
  8280. },
  8281. hand: {
  8282. height: math.unit(0.59, "feet"),
  8283. name: "Hand",
  8284. image: {
  8285. source: "./media/characters/opal/hand.svg"
  8286. }
  8287. },
  8288. foot: {
  8289. height: math.unit(0.61, "feet"),
  8290. name: "Foot",
  8291. image: {
  8292. source: "./media/characters/opal/foot.svg"
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Small",
  8299. height: math.unit(4 + 11 / 12, "feet")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(20, "feet"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(120, "feet")
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(80, "miles")
  8313. },
  8314. {
  8315. name: "True Size",
  8316. height: math.unit(100000, "lightyears")
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(200, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/vector-wuff/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(2.8, "meters")
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(450, "meters"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(15, "kilometers")
  8345. }
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(256, "lbs"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/dannik/front.svg"
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(69.57, "meters"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(120, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/azura-saharah/front.svg"
  8377. }
  8378. },
  8379. back: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(120, "lbs"),
  8382. name: "Back",
  8383. image: {
  8384. source: "./media/characters/azura-saharah/back.svg"
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(100, "feet"),
  8392. default: true
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8398. {
  8399. side: {
  8400. height: math.unit(5 + 4 / 12, "feet"),
  8401. weight: math.unit(163, "lbs"),
  8402. name: "Side",
  8403. image: {
  8404. source: "./media/characters/kennedy/side.svg"
  8405. }
  8406. }
  8407. },
  8408. [
  8409. {
  8410. name: "Standard Doggo",
  8411. height: math.unit(5 + 4 / 12, "feet")
  8412. },
  8413. {
  8414. name: "Big Doggo",
  8415. height: math.unit(25 + 3 / 12, "feet"),
  8416. default: true
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(5 + 5/12, "feet"),
  8425. weight: math.unit(100, "lbs"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/odios-de-lunar/front.svg",
  8429. extra: 1468/1323,
  8430. bottom: 22/1490
  8431. }
  8432. }
  8433. },
  8434. [
  8435. {
  8436. name: "Micro",
  8437. height: math.unit(3, "inches")
  8438. },
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(5.5, "feet"),
  8442. default: true
  8443. },
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(100, "feet")
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8452. {
  8453. back: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(220, "lbs"),
  8456. name: "Back",
  8457. image: {
  8458. source: "./media/characters/mandake/back.svg"
  8459. }
  8460. }
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(7, "feet"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(78, "feet")
  8471. },
  8472. {
  8473. name: "Macro+",
  8474. height: math.unit(300, "meters")
  8475. },
  8476. {
  8477. name: "Macro++",
  8478. height: math.unit(2400, "feet")
  8479. },
  8480. {
  8481. name: "Megamacro",
  8482. height: math.unit(5167, "meters")
  8483. },
  8484. {
  8485. name: "Gigamacro",
  8486. height: math.unit(41769, "miles")
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(120, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/yozey/front.svg"
  8499. }
  8500. },
  8501. frontAlt: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(120, "lbs"),
  8504. name: "Front (Alt)",
  8505. image: {
  8506. source: "./media/characters/yozey/front-alt.svg"
  8507. }
  8508. },
  8509. side: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(120, "lbs"),
  8512. name: "Side",
  8513. image: {
  8514. source: "./media/characters/yozey/side.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Micro",
  8521. height: math.unit(3, "inches"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(6, "feet")
  8527. }
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(103, "lbs"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/valeska-voss/front.svg"
  8539. }
  8540. }
  8541. },
  8542. [
  8543. {
  8544. name: "Mini-Sized Sub",
  8545. height: math.unit(3.1, "inches")
  8546. },
  8547. {
  8548. name: "Mid-Sized Sub",
  8549. height: math.unit(6.2, "inches")
  8550. },
  8551. {
  8552. name: "Full-Sized Sub",
  8553. height: math.unit(9.3, "inches")
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(5 + 2 / 12, "foot"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(160, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/gene-zeta/front.svg",
  8571. extra: 3006 / 2826,
  8572. bottom: 182 / 3188
  8573. }
  8574. }
  8575. },
  8576. [
  8577. {
  8578. name: "Micro",
  8579. height: math.unit(6, "inches")
  8580. },
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(5 + 11 / 12, "foot"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Macro",
  8588. height: math.unit(140, "feet")
  8589. },
  8590. {
  8591. name: "Supercharged",
  8592. height: math.unit(2500, "feet")
  8593. },
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(350, "lbs"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/razinox/front.svg",
  8605. extra: 1686 / 1548,
  8606. bottom: 28.2 / 1868
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(350, "lbs"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/razinox/back.svg",
  8615. extra: 1660 / 1590,
  8616. bottom: 15 / 1665
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(10 + 8 / 12, "foot")
  8624. },
  8625. {
  8626. name: "Minimacro",
  8627. height: math.unit(15, "foot")
  8628. },
  8629. {
  8630. name: "Macro",
  8631. height: math.unit(60, "foot"),
  8632. default: true
  8633. },
  8634. {
  8635. name: "Megamacro",
  8636. height: math.unit(5, "miles")
  8637. },
  8638. {
  8639. name: "Gigamacro",
  8640. height: math.unit(6000, "miles")
  8641. },
  8642. ]
  8643. ))
  8644. characterMakers.push(() => makeCharacter(
  8645. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8646. {
  8647. front: {
  8648. height: math.unit(6, "feet"),
  8649. weight: math.unit(150, "lbs"),
  8650. name: "Front",
  8651. image: {
  8652. source: "./media/characters/cobalt/front.svg"
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Normal",
  8659. height: math.unit(8 + 1 / 12, "foot")
  8660. },
  8661. {
  8662. name: "Macro",
  8663. height: math.unit(111, "foot"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Supracosmic",
  8668. height: math.unit(1e42, "feet")
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5, "inches"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/amanda/front.svg",
  8680. extra: 926/791,
  8681. bottom: 38/964
  8682. }
  8683. },
  8684. back: {
  8685. height: math.unit(5, "inches"),
  8686. name: "Back",
  8687. image: {
  8688. source: "./media/characters/amanda/back.svg",
  8689. extra: 909/805,
  8690. bottom: 43/952
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(5, "inches"),
  8698. default: true
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(2.75, "meters"),
  8707. weight: math.unit(1200, "lb"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/teal/front.svg",
  8711. extra: 2463 / 2320,
  8712. bottom: 166 / 2629
  8713. }
  8714. },
  8715. back: {
  8716. height: math.unit(2.75, "meters"),
  8717. weight: math.unit(1200, "lb"),
  8718. name: "Back",
  8719. image: {
  8720. source: "./media/characters/teal/back.svg",
  8721. extra: 2580 / 2489,
  8722. bottom: 151 / 2731
  8723. }
  8724. },
  8725. sitting: {
  8726. height: math.unit(1.9, "meters"),
  8727. weight: math.unit(1200, "lb"),
  8728. name: "Sitting",
  8729. image: {
  8730. source: "./media/characters/teal/sitting.svg",
  8731. extra: 623 / 590,
  8732. bottom: 121 / 744
  8733. }
  8734. },
  8735. standing: {
  8736. height: math.unit(2.75, "meters"),
  8737. weight: math.unit(1200, "lb"),
  8738. name: "Standing",
  8739. image: {
  8740. source: "./media/characters/teal/standing.svg",
  8741. extra: 923 / 893,
  8742. bottom: 60 / 983
  8743. }
  8744. },
  8745. stretching: {
  8746. height: math.unit(3.65, "meters"),
  8747. weight: math.unit(1200, "lb"),
  8748. name: "Stretching",
  8749. image: {
  8750. source: "./media/characters/teal/stretching.svg",
  8751. extra: 1276 / 1244,
  8752. bottom: 0 / 1276
  8753. }
  8754. },
  8755. legged: {
  8756. height: math.unit(1.3, "meters"),
  8757. weight: math.unit(100, "lb"),
  8758. name: "Legged",
  8759. image: {
  8760. source: "./media/characters/teal/legged.svg",
  8761. extra: 462 / 437,
  8762. bottom: 24 / 486
  8763. }
  8764. },
  8765. naga: {
  8766. height: math.unit(5.4, "meters"),
  8767. weight: math.unit(4000, "lb"),
  8768. name: "Naga",
  8769. image: {
  8770. source: "./media/characters/teal/naga.svg",
  8771. extra: 1902 / 1858,
  8772. bottom: 0 / 1902
  8773. }
  8774. },
  8775. hand: {
  8776. height: math.unit(0.52, "meters"),
  8777. name: "Hand",
  8778. image: {
  8779. source: "./media/characters/teal/hand.svg"
  8780. }
  8781. },
  8782. maw: {
  8783. height: math.unit(0.43, "meters"),
  8784. name: "Maw",
  8785. image: {
  8786. source: "./media/characters/teal/maw.svg"
  8787. }
  8788. },
  8789. slit: {
  8790. height: math.unit(0.25, "meters"),
  8791. name: "Slit",
  8792. image: {
  8793. source: "./media/characters/teal/slit.svg"
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(2.75, "meters"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Macro",
  8805. height: math.unit(300, "feet")
  8806. },
  8807. {
  8808. name: "Macro+",
  8809. height: math.unit(2000, "feet")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8815. {
  8816. frontCat: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(180, "lbs"),
  8819. name: "Front (Cat)",
  8820. image: {
  8821. source: "./media/characters/ravin-amulet/front-cat.svg"
  8822. }
  8823. },
  8824. frontCatAlt: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(180, "lbs"),
  8827. name: "Front (Alt, Cat)",
  8828. image: {
  8829. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8830. }
  8831. },
  8832. frontWerewolf: {
  8833. height: math.unit(6 * 1.2, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Front (Werewolf)",
  8836. image: {
  8837. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8838. }
  8839. },
  8840. backWerewolf: {
  8841. height: math.unit(6 * 1.2, "feet"),
  8842. weight: math.unit(225, "lbs"),
  8843. name: "Back (Werewolf)",
  8844. image: {
  8845. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Nano",
  8852. height: math.unit(1, "micrometer")
  8853. },
  8854. {
  8855. name: "Micro",
  8856. height: math.unit(1, "inch")
  8857. },
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(6, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(60, "feet")
  8866. }
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(165, "lbs"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/fluoresce/front.svg"
  8878. }
  8879. }
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(6, "cm")
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(5 + 7 / 12, "feet"),
  8889. default: true
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(56, "feet")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(1.9, "miles")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(9 + 6 / 12, "feet"),
  8906. weight: math.unit(523, "lbs"),
  8907. name: "Side",
  8908. image: {
  8909. source: "./media/characters/aurora/side.svg",
  8910. extra: 474/393,
  8911. bottom: 5/479
  8912. }
  8913. }
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(9 + 6 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(96, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Macro+",
  8927. height: math.unit(243, "feet")
  8928. },
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(194, "cm"),
  8936. weight: math.unit(90, "kg"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/ranek/front.svg",
  8940. extra: 1862/1791,
  8941. bottom: 80/1942
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(194, "cm"),
  8946. weight: math.unit(90, "kg"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/ranek/back.svg",
  8950. extra: 1853/1787,
  8951. bottom: 74/1927
  8952. }
  8953. },
  8954. feral: {
  8955. height: math.unit(30, "cm"),
  8956. weight: math.unit(1.6, "lbs"),
  8957. name: "Feral",
  8958. image: {
  8959. source: "./media/characters/ranek/feral.svg",
  8960. extra: 990/631,
  8961. bottom: 29/1019
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Normal",
  8968. height: math.unit(194, "cm"),
  8969. default: true
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(100, "meters")
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(5 + 6 / 12, "feet"),
  8982. weight: math.unit(153, "lbs"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/andrew-cooper/front.svg"
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Nano",
  8992. height: math.unit(1, "mm")
  8993. },
  8994. {
  8995. name: "Micro",
  8996. height: math.unit(2, "inches")
  8997. },
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(5 + 6 / 12, "feet"),
  9001. default: true
  9002. }
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(6, "feet"),
  9010. weight: math.unit(180, "lbs"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/akane-sato/front.svg",
  9014. extra: 1219 / 1140
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(180, "lbs"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/akane-sato/back.svg",
  9023. extra: 1219 / 1170
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(2.5, "meters")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(250, "meters"),
  9035. default: true
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(25, "km")
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(6, "feet"),
  9048. weight: math.unit(65, "kg"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/rook/front.svg",
  9052. extra: 960 / 950
  9053. }
  9054. }
  9055. },
  9056. [
  9057. {
  9058. name: "Normal",
  9059. height: math.unit(8.8, "feet")
  9060. },
  9061. {
  9062. name: "Macro",
  9063. height: math.unit(88, "feet"),
  9064. default: true
  9065. },
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(8, "miles")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(12 + 2 / 12, "feet"),
  9077. weight: math.unit(808, "lbs"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/prodigy/front.svg"
  9081. }
  9082. }
  9083. },
  9084. [
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(12 + 2 / 12, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(143, "feet")
  9093. },
  9094. {
  9095. name: "Macro+",
  9096. height: math.unit(400, "feet")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(225, "lbs"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/daniel/front.svg"
  9109. }
  9110. },
  9111. leaning: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(225, "lbs"),
  9114. name: "Leaning",
  9115. image: {
  9116. source: "./media/characters/daniel/leaning.svg"
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(1000, "feet"),
  9124. default: true
  9125. },
  9126. ]
  9127. ))
  9128. characterMakers.push(() => makeCharacter(
  9129. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9130. {
  9131. front: {
  9132. height: math.unit(6, "feet"),
  9133. weight: math.unit(88, "lbs"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/chiros/front.svg",
  9137. extra: 306 / 226
  9138. }
  9139. },
  9140. side: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(88, "lbs"),
  9143. name: "Side",
  9144. image: {
  9145. source: "./media/characters/chiros/side.svg",
  9146. extra: 306 / 226
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(6, "cm"),
  9154. default: true
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9160. {
  9161. front: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(100, "lbs"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/selka/front.svg",
  9167. extra: 947 / 887
  9168. }
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(5, "cm"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(8 + 3 / 12, "feet"),
  9184. weight: math.unit(424, "lbs"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/verin/front.svg",
  9188. extra: 1845 / 1550
  9189. }
  9190. },
  9191. frontArmored: {
  9192. height: math.unit(8 + 3 / 12, "feet"),
  9193. weight: math.unit(424, "lbs"),
  9194. name: "Front (Armored)",
  9195. image: {
  9196. source: "./media/characters/verin/front-armor.svg",
  9197. extra: 1845 / 1550,
  9198. bottom: 0.01
  9199. }
  9200. },
  9201. back: {
  9202. height: math.unit(8 + 3 / 12, "feet"),
  9203. weight: math.unit(424, "lbs"),
  9204. name: "Back",
  9205. image: {
  9206. source: "./media/characters/verin/back.svg",
  9207. bottom: 0.1,
  9208. extra: 1
  9209. }
  9210. },
  9211. foot: {
  9212. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9213. name: "Foot",
  9214. image: {
  9215. source: "./media/characters/verin/foot.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(8 + 3 / 12, "feet")
  9223. },
  9224. {
  9225. name: "Minimacro",
  9226. height: math.unit(21, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(626, "feet")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(2.718, "meters"),
  9240. weight: math.unit(150, "lbs"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/sovrim-terraquian/front.svg",
  9244. extra: 1752/1689,
  9245. bottom: 36/1788
  9246. }
  9247. },
  9248. back: {
  9249. height: math.unit(2.718, "meters"),
  9250. weight: math.unit(150, "lbs"),
  9251. name: "Back",
  9252. image: {
  9253. source: "./media/characters/sovrim-terraquian/back.svg",
  9254. extra: 1698/1657,
  9255. bottom: 58/1756
  9256. }
  9257. },
  9258. tongue: {
  9259. height: math.unit(2.865, "feet"),
  9260. name: "Tongue",
  9261. image: {
  9262. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9263. }
  9264. },
  9265. hand: {
  9266. height: math.unit(1.61, "feet"),
  9267. name: "Hand",
  9268. image: {
  9269. source: "./media/characters/sovrim-terraquian/hand.svg"
  9270. }
  9271. },
  9272. foot: {
  9273. height: math.unit(1.05, "feet"),
  9274. name: "Foot",
  9275. image: {
  9276. source: "./media/characters/sovrim-terraquian/foot.svg"
  9277. }
  9278. },
  9279. footAlt: {
  9280. height: math.unit(0.88, "feet"),
  9281. name: "Foot (Alt)",
  9282. image: {
  9283. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Micro",
  9290. height: math.unit(2, "inches")
  9291. },
  9292. {
  9293. name: "Small",
  9294. height: math.unit(1, "meter")
  9295. },
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(Math.E, "meters"),
  9299. default: true
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(20, "meters")
  9304. },
  9305. {
  9306. name: "Macro+",
  9307. height: math.unit(400, "meters")
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(7, "feet"),
  9316. weight: math.unit(489, "lbs"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/reece-silvermane/front.svg",
  9320. bottom: 0.02,
  9321. extra: 1
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(1.5, "miles"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(6, "feet"),
  9338. weight: math.unit(78, "kg"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/kane/front.svg",
  9342. extra: 978 / 899
  9343. }
  9344. },
  9345. back: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(78, "kg"),
  9348. name: "Back",
  9349. image: {
  9350. source: "./media/characters/kane/back.svg",
  9351. extra: 1966/1800,
  9352. bottom: 0/1966
  9353. }
  9354. },
  9355. head: {
  9356. height: math.unit(1.4, "feet"),
  9357. name: "Head",
  9358. image: {
  9359. source: "./media/characters/kane/head.svg"
  9360. }
  9361. },
  9362. },
  9363. [
  9364. {
  9365. name: "Normal",
  9366. height: math.unit(2.1, "m"),
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(1, "km"),
  9371. default: true
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(6, "feet"),
  9380. weight: math.unit(200, "kg"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/tegon/front.svg",
  9384. bottom: 0.01,
  9385. extra: 1
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Micro",
  9392. height: math.unit(1, "inch")
  9393. },
  9394. {
  9395. name: "Normal",
  9396. height: math.unit(6 + 3 / 12, "feet"),
  9397. default: true
  9398. },
  9399. {
  9400. name: "Macro",
  9401. height: math.unit(300, "feet")
  9402. },
  9403. {
  9404. name: "Megamacro",
  9405. height: math.unit(69, "miles")
  9406. },
  9407. ]
  9408. ))
  9409. characterMakers.push(() => makeCharacter(
  9410. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9411. {
  9412. side: {
  9413. height: math.unit(6, "feet"),
  9414. weight: math.unit(2304, "lbs"),
  9415. name: "Side",
  9416. image: {
  9417. source: "./media/characters/arcturax/side.svg",
  9418. extra: 790 / 376,
  9419. bottom: 0.01
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Micro",
  9426. height: math.unit(2, "inch")
  9427. },
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(6, "feet")
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(39, "feet"),
  9435. default: true
  9436. },
  9437. {
  9438. name: "Megamacro",
  9439. height: math.unit(7, "miles")
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9445. {
  9446. front: {
  9447. height: math.unit(6, "feet"),
  9448. weight: math.unit(50, "lbs"),
  9449. name: "Front",
  9450. image: {
  9451. source: "./media/characters/sentri/front.svg",
  9452. extra: 1750 / 1570,
  9453. bottom: 0.025
  9454. }
  9455. },
  9456. frontAlt: {
  9457. height: math.unit(6, "feet"),
  9458. weight: math.unit(50, "lbs"),
  9459. name: "Front (Alt)",
  9460. image: {
  9461. source: "./media/characters/sentri/front-alt.svg",
  9462. extra: 1750 / 1570,
  9463. bottom: 0.025
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(15, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Macro",
  9475. height: math.unit(2500, "feet")
  9476. }
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9481. {
  9482. front: {
  9483. height: math.unit(5 + 8 / 12, "feet"),
  9484. weight: math.unit(130, "lbs"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/corvin/front.svg",
  9488. extra: 1803 / 1629
  9489. }
  9490. },
  9491. frontShirt: {
  9492. height: math.unit(5 + 8 / 12, "feet"),
  9493. weight: math.unit(130, "lbs"),
  9494. name: "Front (Shirt)",
  9495. image: {
  9496. source: "./media/characters/corvin/front-shirt.svg",
  9497. extra: 1803 / 1629
  9498. }
  9499. },
  9500. frontPoncho: {
  9501. height: math.unit(5 + 8 / 12, "feet"),
  9502. weight: math.unit(130, "lbs"),
  9503. name: "Front (Poncho)",
  9504. image: {
  9505. source: "./media/characters/corvin/front-poncho.svg",
  9506. extra: 1803 / 1629
  9507. }
  9508. },
  9509. side: {
  9510. height: math.unit(5 + 8 / 12, "feet"),
  9511. weight: math.unit(130, "lbs"),
  9512. name: "Side",
  9513. image: {
  9514. source: "./media/characters/corvin/side.svg",
  9515. extra: 1012 / 945
  9516. }
  9517. },
  9518. back: {
  9519. height: math.unit(5 + 8 / 12, "feet"),
  9520. weight: math.unit(130, "lbs"),
  9521. name: "Back",
  9522. image: {
  9523. source: "./media/characters/corvin/back.svg",
  9524. extra: 1803 / 1629
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Micro",
  9531. height: math.unit(3, "inches")
  9532. },
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(5 + 8 / 12, "feet")
  9536. },
  9537. {
  9538. name: "Macro",
  9539. height: math.unit(300, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Megamacro",
  9544. height: math.unit(500, "miles")
  9545. }
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(135, "lbs"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/q/front.svg",
  9557. extra: 854 / 752,
  9558. bottom: 0.005
  9559. }
  9560. },
  9561. back: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(130, "lbs"),
  9564. name: "Back",
  9565. image: {
  9566. source: "./media/characters/q/back.svg",
  9567. extra: 854 / 752
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(90, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Extra Macro",
  9579. height: math.unit(300, "feet"),
  9580. },
  9581. {
  9582. name: "BIG WALF",
  9583. height: math.unit(750, "feet"),
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(3, "feet"),
  9592. weight: math.unit(28, "lbs"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/citrine/front.svg"
  9596. }
  9597. }
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(3, "feet"),
  9603. default: true
  9604. }
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9609. {
  9610. front: {
  9611. height: math.unit(14, "feet"),
  9612. weight: math.unit(1450, "kg"),
  9613. preyCapacity: math.unit(15, "people"),
  9614. name: "Front",
  9615. image: {
  9616. source: "./media/characters/aura-starwind/front.svg",
  9617. extra: 1440/1327,
  9618. bottom: 11/1451
  9619. }
  9620. },
  9621. side: {
  9622. height: math.unit(14, "feet"),
  9623. weight: math.unit(1450, "kg"),
  9624. preyCapacity: math.unit(15, "people"),
  9625. name: "Side",
  9626. image: {
  9627. source: "./media/characters/aura-starwind/side.svg",
  9628. extra: 1654 / 1497
  9629. }
  9630. },
  9631. taur: {
  9632. height: math.unit(18, "feet"),
  9633. weight: math.unit(5500, "kg"),
  9634. preyCapacity: math.unit(50, "people"),
  9635. name: "Taur",
  9636. image: {
  9637. source: "./media/characters/aura-starwind/taur.svg",
  9638. extra: 1760 / 1650
  9639. }
  9640. },
  9641. feral: {
  9642. height: math.unit(46, "feet"),
  9643. weight: math.unit(25000, "kg"),
  9644. preyCapacity: math.unit(120, "people"),
  9645. name: "Feral",
  9646. image: {
  9647. source: "./media/characters/aura-starwind/feral.svg"
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(14, "feet"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Macro",
  9659. height: math.unit(50, "meters")
  9660. },
  9661. {
  9662. name: "Megamacro",
  9663. height: math.unit(5000, "meters")
  9664. },
  9665. {
  9666. name: "Gigamacro",
  9667. height: math.unit(100000, "kilometers")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(2 + 7 / 12, "feet"),
  9676. weight: math.unit(32, "lbs"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/rivet/front.svg",
  9680. extra: 1716 / 1658,
  9681. bottom: 0.03
  9682. }
  9683. },
  9684. foot: {
  9685. height: math.unit(0.551, "feet"),
  9686. name: "Rivet's Foot",
  9687. image: {
  9688. source: "./media/characters/rivet/foot.svg"
  9689. },
  9690. rename: true
  9691. }
  9692. },
  9693. [
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(1.5, "inches"),
  9697. },
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(2 + 7 / 12, "feet"),
  9701. default: true
  9702. },
  9703. {
  9704. name: "Macro",
  9705. height: math.unit(85, "feet")
  9706. },
  9707. {
  9708. name: "Megamacro",
  9709. height: math.unit(2.2, "km")
  9710. }
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. weight: math.unit(150, "lbs"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/coffee/front.svg",
  9722. extra: 946/880,
  9723. bottom: 66/1012
  9724. }
  9725. },
  9726. foot: {
  9727. height: math.unit(1.29, "feet"),
  9728. name: "Foot",
  9729. image: {
  9730. source: "./media/characters/coffee/foot.svg"
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(2, "inches"),
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(5 + 9 / 12, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(800, "feet")
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(25, "miles")
  9751. }
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(6, "feet"),
  9759. weight: math.unit(200, "lbs"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/chari-gal/front.svg",
  9763. extra: 735/649,
  9764. bottom: 55/790
  9765. },
  9766. form: "normal",
  9767. default: true
  9768. },
  9769. back: {
  9770. height: math.unit(6, "feet"),
  9771. weight: math.unit(200, "lb"),
  9772. name: "Back",
  9773. image: {
  9774. source: "./media/characters/chari-gal/back.svg",
  9775. extra: 762/666,
  9776. bottom: 31/793
  9777. },
  9778. form: "normal"
  9779. },
  9780. mouth: {
  9781. height: math.unit(1.35, "feet"),
  9782. name: "Mouth",
  9783. image: {
  9784. source: "./media/characters/chari-gal/mouth.svg"
  9785. },
  9786. form: "normal"
  9787. },
  9788. gigantamax: {
  9789. height: math.unit(6 * 16, "feet"),
  9790. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9791. name: "Gigantamax",
  9792. image: {
  9793. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9794. extra: 1507/1149,
  9795. bottom: 254/1761
  9796. },
  9797. form: "gigantamax",
  9798. default: true
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(5 + 7 / 12, "feet"),
  9805. form: "normal",
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(200, "feet"),
  9810. default: true,
  9811. form: "normal"
  9812. },
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9816. form: "gigantamax",
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(16 * 200, "feet"),
  9821. default: true,
  9822. form: "gigantamax"
  9823. },
  9824. ],
  9825. {
  9826. "normal": {
  9827. name: "Normal",
  9828. default: true
  9829. },
  9830. "gigantamax": {
  9831. name: "Gigantamax",
  9832. },
  9833. }
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9837. {
  9838. front: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(150, "lbs"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/nova/front.svg",
  9844. extra: 5000 / 4722,
  9845. bottom: 0.02
  9846. }
  9847. }
  9848. },
  9849. [
  9850. {
  9851. name: "Micro-",
  9852. height: math.unit(0.8, "inches")
  9853. },
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(2, "inches"),
  9857. default: true
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9863. {
  9864. koboldFront: {
  9865. height: math.unit(3 + 1 / 12, "feet"),
  9866. weight: math.unit(21.7, "lbs"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/argent/kobold-front.svg",
  9870. extra: 1471 / 1331,
  9871. bottom: 100.8 / 1575.5
  9872. },
  9873. form: "kobold",
  9874. default: true
  9875. },
  9876. dragonFront: {
  9877. height: math.unit(75, "inches"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/argent/dragon-front.svg",
  9881. extra: 1389/1248,
  9882. bottom: 54/1443
  9883. },
  9884. form: "dragon",
  9885. },
  9886. dragonBack: {
  9887. height: math.unit(75, "inches"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/argent/dragon-back.svg",
  9891. extra: 1399/1271,
  9892. bottom: 23/1422
  9893. },
  9894. form: "dragon",
  9895. },
  9896. dragonDressed: {
  9897. height: math.unit(75, "inches"),
  9898. name: "Dressed",
  9899. image: {
  9900. source: "./media/characters/argent/dragon-dressed.svg",
  9901. extra: 1350/1215,
  9902. bottom: 26/1376
  9903. },
  9904. form: "dragon"
  9905. },
  9906. dragonHead: {
  9907. height: math.unit(23.5, "inches"),
  9908. name: "Head",
  9909. image: {
  9910. source: "./media/characters/argent/dragon-head.svg"
  9911. },
  9912. form: "dragon",
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Micro",
  9918. height: math.unit(2, "inches"),
  9919. form: "kobold",
  9920. },
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(3 + 1 / 12, "feet"),
  9924. form: "kobold",
  9925. default: true
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(120, "feet"),
  9930. form: "kobold",
  9931. },
  9932. {
  9933. name: "Speck",
  9934. height: math.unit(1, "mm"),
  9935. form: "dragon",
  9936. },
  9937. {
  9938. name: "Tiny",
  9939. height: math.unit(1, "cm"),
  9940. form: "dragon",
  9941. },
  9942. {
  9943. name: "Micro",
  9944. height: math.unit(5, "cm"),
  9945. form: "dragon",
  9946. },
  9947. {
  9948. name: "Normal",
  9949. height: math.unit(75, "inches"),
  9950. form: "dragon",
  9951. default: true
  9952. },
  9953. {
  9954. name: "Extra Tall",
  9955. height: math.unit(9, "feet"),
  9956. form: "dragon",
  9957. },
  9958. {
  9959. name: "Inconvenient",
  9960. height: math.unit(5, "meters"),
  9961. form: "dragon",
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(70, "meters"),
  9966. form: "dragon",
  9967. },
  9968. {
  9969. name: "Macro+",
  9970. height: math.unit(250, "meters"),
  9971. form: "dragon",
  9972. },
  9973. {
  9974. name: "Megamacro",
  9975. height: math.unit(20, "km"),
  9976. form: "dragon",
  9977. },
  9978. {
  9979. name: "Mountainous",
  9980. height: math.unit(100, "km"),
  9981. form: "dragon",
  9982. },
  9983. {
  9984. name: "Continental",
  9985. height: math.unit(2, "megameters"),
  9986. form: "dragon",
  9987. },
  9988. {
  9989. name: "Too Big",
  9990. height: math.unit(900, "megameters"),
  9991. form: "dragon",
  9992. },
  9993. ],
  9994. {
  9995. "kobold": {
  9996. name: "Kobold",
  9997. default: true
  9998. },
  9999. "dragon": {
  10000. name: "Dragon",
  10001. },
  10002. }
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10006. {
  10007. lamp: {
  10008. height: math.unit(7 * 1559 / 989, "feet"),
  10009. name: "Magic Lamp",
  10010. image: {
  10011. source: "./media/characters/mira-al-cul/lamp.svg",
  10012. extra: 1617 / 1559
  10013. }
  10014. },
  10015. front: {
  10016. height: math.unit(7, "feet"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/mira-al-cul/front.svg",
  10020. extra: 1044 / 990
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Heavily Restricted",
  10027. height: math.unit(7 * 1559 / 989, "feet")
  10028. },
  10029. {
  10030. name: "Freshly Freed",
  10031. height: math.unit(50 * 1559 / 989, "feet")
  10032. },
  10033. {
  10034. name: "World Encompassing",
  10035. height: math.unit(10000 * 1559 / 989, "miles")
  10036. },
  10037. {
  10038. name: "Galactic",
  10039. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10040. },
  10041. {
  10042. name: "Palmed Universe",
  10043. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Multiversal Matriarch",
  10048. height: math.unit(8.87e10, "yottameters")
  10049. },
  10050. {
  10051. name: "Void Mother",
  10052. height: math.unit(3.14e110, "yottaparsecs")
  10053. },
  10054. {
  10055. name: "Toying with Transcendence",
  10056. height: math.unit(1e307, "meters")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10062. {
  10063. front: {
  10064. height: math.unit(17 + 1 / 12, "feet"),
  10065. weight: math.unit(476.2 * 5, "lbs"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/kuro-shi-uchū/front.svg",
  10069. extra: 2329 / 1835,
  10070. bottom: 0.02
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(2, "inches")
  10078. },
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(12, "meters")
  10082. },
  10083. {
  10084. name: "Planetary",
  10085. height: math.unit(0.00929, "AU"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Universal",
  10090. height: math.unit(20, "gigaparsecs")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(5 + 2 / 12, "feet"),
  10099. weight: math.unit(120, "lbs"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/katherine/front.svg",
  10103. extra: 2075 / 1969
  10104. }
  10105. },
  10106. dress: {
  10107. height: math.unit(5 + 2 / 12, "feet"),
  10108. weight: math.unit(120, "lbs"),
  10109. name: "Dress",
  10110. image: {
  10111. source: "./media/characters/katherine/dress.svg",
  10112. extra: 2258 / 2064
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1, "inches"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Normal",
  10124. height: math.unit(5 + 2 / 12, "feet")
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(100, "meters")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(80, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(7 + 8 / 12, "feet"),
  10141. weight: math.unit(250, "lbs"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/yevis/front.svg",
  10145. extra: 1938 / 1755
  10146. }
  10147. }
  10148. },
  10149. [
  10150. {
  10151. name: "Mortal",
  10152. height: math.unit(7 + 8 / 12, "feet")
  10153. },
  10154. {
  10155. name: "Battle",
  10156. height: math.unit(25 + 11 / 12, "feet")
  10157. },
  10158. {
  10159. name: "Wrath",
  10160. height: math.unit(1654 + 11 / 12, "feet")
  10161. },
  10162. {
  10163. name: "Planet Destroyer",
  10164. height: math.unit(12000, "miles")
  10165. },
  10166. {
  10167. name: "Galaxy Conqueror",
  10168. height: math.unit(1.45, "zettameters"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Universal War",
  10173. height: math.unit(184, "gigaparsecs")
  10174. },
  10175. {
  10176. name: "Eternity War",
  10177. height: math.unit(1.98e55, "yottaparsecs")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(5 + 8 / 12, "feet"),
  10186. weight: math.unit(63, "kg"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/xavier/front.svg",
  10190. extra: 944 / 883
  10191. }
  10192. },
  10193. frontStretch: {
  10194. height: math.unit(5 + 8 / 12, "feet"),
  10195. weight: math.unit(63, "kg"),
  10196. name: "Stretching",
  10197. image: {
  10198. source: "./media/characters/xavier/front-stretch.svg",
  10199. extra: 962 / 820
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(5 + 8 / 12, "feet")
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(100, "meters"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "McLargeHuge",
  10215. height: math.unit(10, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(5 + 5 / 12, "feet"),
  10224. weight: math.unit(150, "lb"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/joshii/front.svg",
  10228. extra: 765 / 653,
  10229. bottom: 51 / 816
  10230. }
  10231. },
  10232. foot: {
  10233. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10234. name: "Foot",
  10235. image: {
  10236. source: "./media/characters/joshii/foot.svg"
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Micro",
  10243. height: math.unit(2, "inches")
  10244. },
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(5 + 5 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(785, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Megamacro",
  10256. height: math.unit(24.5, "miles")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(150, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/goddess-elizabeth/front.svg",
  10269. extra: 1800 / 1525,
  10270. bottom: 0.005
  10271. }
  10272. },
  10273. foot: {
  10274. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10275. name: "Foot",
  10276. image: {
  10277. source: "./media/characters/goddess-elizabeth/foot.svg"
  10278. }
  10279. },
  10280. mouth: {
  10281. height: math.unit(6, "feet"),
  10282. name: "Mouth",
  10283. image: {
  10284. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(12, "feet")
  10292. },
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(80, "miles"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(15000, "parsecs")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(5 + 9 / 12, "feet"),
  10309. weight: math.unit(144, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/kara/front.svg"
  10313. }
  10314. },
  10315. feet: {
  10316. height: math.unit(6 / 6.765, "feet"),
  10317. name: "Kara's Feet",
  10318. rename: true,
  10319. image: {
  10320. source: "./media/characters/kara/feet.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(5 + 9 / 12, "feet")
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(174, "feet"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(18, "feet"),
  10341. weight: math.unit(4050, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/tyrone/front.svg",
  10345. extra: 2405 / 2270,
  10346. bottom: 182 / 2587
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(18, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(300, "feet")
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(15, "km")
  10363. },
  10364. {
  10365. name: "Gigamacro",
  10366. height: math.unit(500, "km")
  10367. },
  10368. {
  10369. name: "Teramacro",
  10370. height: math.unit(0.5, "gigameters")
  10371. },
  10372. {
  10373. name: "Omnimacro",
  10374. height: math.unit(1e252, "yottauniverse")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(7 + 8 / 12, "feet"),
  10383. weight: math.unit(120, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/danny/front.svg",
  10387. extra: 1490 / 1350
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(7 + 8 / 12, "feet"),
  10392. weight: math.unit(120, "lb"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/danny/back.svg",
  10396. extra: 1490 / 1350
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(7 + 8 / 12, "feet"),
  10404. default: true
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(3.5, "inches"),
  10413. weight: math.unit(19, "grams"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/mallow/front.svg",
  10417. extra: 471 / 431
  10418. }
  10419. },
  10420. back: {
  10421. height: math.unit(3.5, "inches"),
  10422. weight: math.unit(19, "grams"),
  10423. name: "Back",
  10424. image: {
  10425. source: "./media/characters/mallow/back.svg",
  10426. extra: 471 / 431
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(3.5, "inches"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(9, "feet"),
  10443. weight: math.unit(230, "kg"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/starry-aqua/front.svg"
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(9, "feet"),
  10451. weight: math.unit(230, "kg"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/starry-aqua/back.svg"
  10455. }
  10456. },
  10457. hand: {
  10458. height: math.unit(9 * 0.1168, "feet"),
  10459. name: "Hand",
  10460. image: {
  10461. source: "./media/characters/starry-aqua/hand.svg"
  10462. }
  10463. },
  10464. foot: {
  10465. height: math.unit(9 * 0.18, "feet"),
  10466. name: "Foot",
  10467. image: {
  10468. source: "./media/characters/starry-aqua/foot.svg"
  10469. }
  10470. }
  10471. },
  10472. [
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(3, "inches")
  10476. },
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(9, "feet")
  10480. },
  10481. {
  10482. name: "Macro",
  10483. height: math.unit(300, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(3200, "feet")
  10489. }
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(15, "feet"),
  10497. weight: math.unit(5026, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/luka-towers/front.svg",
  10501. extra: 1269/1133,
  10502. bottom: 51/1320
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(15, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Minimacro",
  10514. height: math.unit(25, "feet")
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(320, "feet")
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(35000, "feet")
  10523. },
  10524. {
  10525. name: "Gigamacro",
  10526. height: math.unit(4000, "miles")
  10527. },
  10528. {
  10529. name: "Teramacro",
  10530. height: math.unit(15000, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/natalie-nightring/front.svg",
  10543. extra: 1,
  10544. bottom: 0.06
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Uh Oh",
  10551. height: math.unit(0.1, "mm")
  10552. },
  10553. {
  10554. name: "Small",
  10555. height: math.unit(3, "inches")
  10556. },
  10557. {
  10558. name: "Human Scale",
  10559. height: math.unit(6, "feet")
  10560. },
  10561. {
  10562. name: "Librarian",
  10563. height: math.unit(50, "feet"),
  10564. default: true
  10565. },
  10566. {
  10567. name: "Immense",
  10568. height: math.unit(200, "miles")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(180, "lbs"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/danni-rosie/front.svg",
  10581. extra: 1260 / 1128,
  10582. bottom: 0.022
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Micro",
  10589. height: math.unit(2, "inches"),
  10590. default: true
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(5 + 9 / 12, "feet"),
  10599. weight: math.unit(220, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/samantha-kruse/front.svg",
  10603. extra: (985 / 935),
  10604. bottom: 0.03
  10605. }
  10606. },
  10607. frontUndressed: {
  10608. height: math.unit(5 + 9 / 12, "feet"),
  10609. weight: math.unit(220, "lb"),
  10610. name: "Front (Undressed)",
  10611. image: {
  10612. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10613. extra: (973 / 923),
  10614. bottom: 0.025
  10615. }
  10616. },
  10617. fat: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(900, "lb"),
  10620. name: "Front (Fat)",
  10621. image: {
  10622. source: "./media/characters/samantha-kruse/fat.svg",
  10623. extra: 2688 / 2561
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(5 + 9 / 12, "feet"),
  10631. default: true
  10632. }
  10633. ]
  10634. ))
  10635. characterMakers.push(() => makeCharacter(
  10636. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10637. {
  10638. back: {
  10639. height: math.unit(5 + 4 / 12, "feet"),
  10640. weight: math.unit(4963, "lb"),
  10641. name: "Back",
  10642. image: {
  10643. source: "./media/characters/amelia-rosie/back.svg",
  10644. extra: 1113 / 963,
  10645. bottom: 0.01
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Level 0",
  10652. height: math.unit(5 + 4 / 12, "feet")
  10653. },
  10654. {
  10655. name: "Level 1",
  10656. height: math.unit(164597, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Level 2",
  10661. height: math.unit(956243, "miles")
  10662. },
  10663. {
  10664. name: "Level 3",
  10665. height: math.unit(29421709423, "miles")
  10666. },
  10667. {
  10668. name: "Level 4",
  10669. height: math.unit(154, "lightyears")
  10670. },
  10671. {
  10672. name: "Level 5",
  10673. height: math.unit(4738272, "lightyears")
  10674. },
  10675. {
  10676. name: "Level 6",
  10677. height: math.unit(145787152896, "lightyears")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 11 / 12, "feet"),
  10686. weight: math.unit(65, "kg"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/rook-kitara/front.svg",
  10690. extra: 1347 / 1274,
  10691. bottom: 0.005
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Totally Unfair",
  10698. height: math.unit(1.8, "mm")
  10699. },
  10700. {
  10701. name: "Lap Rookie",
  10702. height: math.unit(1.4, "feet")
  10703. },
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(5 + 11 / 12, "feet"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "How Did This Happen",
  10711. height: math.unit(80, "miles")
  10712. }
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(7, "feet"),
  10720. weight: math.unit(300, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/pisces/front.svg",
  10724. extra: 2255 / 2115,
  10725. bottom: 0.03
  10726. }
  10727. },
  10728. back: {
  10729. height: math.unit(7, "feet"),
  10730. weight: math.unit(300, "lb"),
  10731. name: "Back",
  10732. image: {
  10733. source: "./media/characters/pisces/back.svg",
  10734. extra: 2146 / 2055,
  10735. bottom: 0.04
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(7, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Swimming Pool",
  10747. height: math.unit(12.2, "meters")
  10748. },
  10749. {
  10750. name: "Olympic Swimming Pool",
  10751. height: math.unit(56.3, "meters")
  10752. },
  10753. {
  10754. name: "Lake Superior",
  10755. height: math.unit(93900, "meters")
  10756. },
  10757. {
  10758. name: "Mediterranean Sea",
  10759. height: math.unit(644457, "meters")
  10760. },
  10761. {
  10762. name: "World's Oceans",
  10763. height: math.unit(4567491, "meters")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10769. {
  10770. front: {
  10771. height: math.unit(2.3, "meters"),
  10772. weight: math.unit(120, "kg"),
  10773. name: "Front",
  10774. image: {
  10775. source: "./media/characters/zelas/front.svg"
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(2.3, "meters"),
  10780. weight: math.unit(120, "kg"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/zelas/side.svg"
  10784. }
  10785. },
  10786. back: {
  10787. height: math.unit(2.3, "meters"),
  10788. weight: math.unit(120, "kg"),
  10789. name: "Back",
  10790. image: {
  10791. source: "./media/characters/zelas/back.svg"
  10792. }
  10793. },
  10794. foot: {
  10795. height: math.unit(1.116, "feet"),
  10796. name: "Foot",
  10797. image: {
  10798. source: "./media/characters/zelas/foot.svg"
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(2.3, "meters")
  10806. },
  10807. {
  10808. name: "Macro",
  10809. height: math.unit(30, "meters"),
  10810. default: true
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(1, "inch"),
  10819. weight: math.unit(0.21, "grams"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/talbot/front.svg",
  10823. extra: 594 / 544
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Micro",
  10830. height: math.unit(1, "inch"),
  10831. default: true
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10837. {
  10838. front: {
  10839. height: math.unit(3 + 3 / 12, "feet"),
  10840. weight: math.unit(51.8, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/fliss/front.svg",
  10844. extra: 840 / 640
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Teeny Tiny",
  10851. height: math.unit(1, "mm")
  10852. },
  10853. {
  10854. name: "Small",
  10855. height: math.unit(1, "inch"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Standard Sylveon",
  10860. height: math.unit(3 + 3 / 12, "feet")
  10861. },
  10862. {
  10863. name: "Large Nuisance",
  10864. height: math.unit(33, "feet")
  10865. },
  10866. {
  10867. name: "City Filler",
  10868. height: math.unit(3000, "feet")
  10869. },
  10870. {
  10871. name: "New Horizon",
  10872. height: math.unit(6000, "miles")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(5, "cm"),
  10881. weight: math.unit(1.94, "g"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/fleta/front.svg",
  10885. extra: 835 / 803
  10886. }
  10887. },
  10888. back: {
  10889. height: math.unit(5, "cm"),
  10890. weight: math.unit(1.94, "g"),
  10891. name: "Back",
  10892. image: {
  10893. source: "./media/characters/fleta/back.svg",
  10894. extra: 835 / 803
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Micro",
  10901. height: math.unit(5, "cm"),
  10902. default: true
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(225, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/dominic/front.svg",
  10915. extra: 1770 / 1620,
  10916. bottom: 0.025
  10917. }
  10918. },
  10919. back: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(225, "lb"),
  10922. name: "Back",
  10923. image: {
  10924. source: "./media/characters/dominic/back.svg",
  10925. extra: 1745 / 1620,
  10926. bottom: 0.065
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Nano",
  10933. height: math.unit(0.1, "mm")
  10934. },
  10935. {
  10936. name: "Micro-",
  10937. height: math.unit(1, "mm")
  10938. },
  10939. {
  10940. name: "Micro",
  10941. height: math.unit(4, "inches")
  10942. },
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(6 + 4 / 12, "feet"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(115, "feet")
  10951. },
  10952. {
  10953. name: "Macro+",
  10954. height: math.unit(955, "feet")
  10955. },
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(8990, "feet")
  10959. },
  10960. {
  10961. name: "Gigmacro",
  10962. height: math.unit(9310, "miles")
  10963. },
  10964. {
  10965. name: "Teramacro",
  10966. height: math.unit(1567005010, "miles")
  10967. },
  10968. {
  10969. name: "Examacro",
  10970. height: math.unit(1425, "parsecs")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(400, "feet"),
  10979. weight: math.unit(44444444, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/major-colonel/front.svg"
  10983. }
  10984. },
  10985. back: {
  10986. height: math.unit(400, "feet"),
  10987. weight: math.unit(44444444, "lb"),
  10988. name: "Back",
  10989. image: {
  10990. source: "./media/characters/major-colonel/back.svg"
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(400, "feet"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11004. {
  11005. catFront: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(120, "lb"),
  11008. name: "Front (Cat Side)",
  11009. image: {
  11010. source: "./media/characters/axel-lycan/cat-front.svg",
  11011. extra: 430 / 402,
  11012. bottom: 43 / 472.35
  11013. }
  11014. },
  11015. catBack: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(120, "lb"),
  11018. name: "Back (Cat Side)",
  11019. image: {
  11020. source: "./media/characters/axel-lycan/cat-back.svg",
  11021. extra: 447 / 419,
  11022. bottom: 23.3 / 469
  11023. }
  11024. },
  11025. wolfFront: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(120, "lb"),
  11028. name: "Front (Wolf Side)",
  11029. image: {
  11030. source: "./media/characters/axel-lycan/wolf-front.svg",
  11031. extra: 485 / 456,
  11032. bottom: 19 / 504
  11033. }
  11034. },
  11035. wolfBack: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(120, "lb"),
  11038. name: "Back (Wolf Side)",
  11039. image: {
  11040. source: "./media/characters/axel-lycan/wolf-back.svg",
  11041. extra: 475 / 438,
  11042. bottom: 39.2 / 514
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(1, "km"),
  11050. default: true
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(5 + 9 / 12, "feet"),
  11059. weight: math.unit(175, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/vanrel-hyena/front.svg",
  11063. extra: 1086 / 1010,
  11064. bottom: 0.04
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(5 + 9 / 12, "feet"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(103, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/abbott-absol/front.svg",
  11085. extra: 765/694,
  11086. bottom: 47/812
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Megamicro",
  11093. height: math.unit(0.1, "mm")
  11094. },
  11095. {
  11096. name: "Micro",
  11097. height: math.unit(1, "inch")
  11098. },
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(6, "feet"),
  11102. default: true
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(264, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/hector/front.svg",
  11115. extra: 2280 / 2130,
  11116. bottom: 0.07
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(12.25, "foot"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Macro",
  11128. height: math.unit(160, "feet")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/sal/front.svg",
  11141. extra: 1846 / 1699,
  11142. bottom: 0.04
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Megamacro",
  11149. height: math.unit(10, "miles"),
  11150. default: true
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11156. {
  11157. front: {
  11158. height: math.unit(3, "meters"),
  11159. weight: math.unit(450, "kg"),
  11160. name: "front",
  11161. image: {
  11162. source: "./media/characters/ranger/front.svg",
  11163. extra: 2401 / 2243,
  11164. bottom: 0.05
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(3, "meters"),
  11172. default: true
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(14, "feet"),
  11181. weight: math.unit(800, "kg"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/theresa/front.svg",
  11185. extra: 3575 / 3346,
  11186. bottom: 0.03
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(14, "feet"),
  11194. default: true
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(3, "kg"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/ine/front.svg",
  11207. extra: 678 / 539,
  11208. bottom: 0.023
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(2.265, "feet"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(5, "feet"),
  11225. weight: math.unit(30, "kg"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/vial/front.svg",
  11229. extra: 1365 / 1277,
  11230. bottom: 0.04
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(5, "feet"),
  11238. default: true
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11244. {
  11245. side: {
  11246. height: math.unit(3.4, "meters"),
  11247. weight: math.unit(1000, "lb"),
  11248. name: "Side",
  11249. image: {
  11250. source: "./media/characters/rovoska/side.svg",
  11251. extra: 4403 / 1515
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(3.4, "meters"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(8, "feet"),
  11268. weight: math.unit(315, "lb"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/gunner-rotthbauer/front.svg"
  11272. }
  11273. },
  11274. back: {
  11275. height: math.unit(8, "feet"),
  11276. weight: math.unit(315, "lb"),
  11277. name: "Back",
  11278. image: {
  11279. source: "./media/characters/gunner-rotthbauer/back.svg"
  11280. }
  11281. },
  11282. },
  11283. [
  11284. {
  11285. name: "Micro",
  11286. height: math.unit(3.5, "inches")
  11287. },
  11288. {
  11289. name: "Normal",
  11290. height: math.unit(8, "feet"),
  11291. default: true
  11292. },
  11293. {
  11294. name: "Macro",
  11295. height: math.unit(250, "feet")
  11296. },
  11297. {
  11298. name: "Megamacro",
  11299. height: math.unit(1, "AU")
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11305. {
  11306. front: {
  11307. height: math.unit(5 + 5 / 12, "feet"),
  11308. weight: math.unit(140, "lb"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/allatia/front.svg",
  11312. extra: 1227 / 1180,
  11313. bottom: 0.027
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(5 + 5 / 12, "feet")
  11321. },
  11322. {
  11323. name: "Macro",
  11324. height: math.unit(250, "feet"),
  11325. default: true
  11326. },
  11327. {
  11328. name: "Megamacro",
  11329. height: math.unit(8, "miles")
  11330. }
  11331. ]
  11332. ))
  11333. characterMakers.push(() => makeCharacter(
  11334. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11335. {
  11336. front: {
  11337. height: math.unit(6, "feet"),
  11338. weight: math.unit(120, "lb"),
  11339. name: "Front",
  11340. image: {
  11341. source: "./media/characters/tene/front.svg",
  11342. extra: 814/750,
  11343. bottom: 36/850
  11344. }
  11345. },
  11346. stomping: {
  11347. height: math.unit(2.025, "meters"),
  11348. weight: math.unit(120, "lb"),
  11349. name: "Stomping",
  11350. image: {
  11351. source: "./media/characters/tene/stomping.svg",
  11352. extra: 885/821,
  11353. bottom: 15/900
  11354. }
  11355. },
  11356. sitting: {
  11357. height: math.unit(1, "meter"),
  11358. weight: math.unit(120, "lb"),
  11359. name: "Sitting",
  11360. image: {
  11361. source: "./media/characters/tene/sitting.svg",
  11362. extra: 396/366,
  11363. bottom: 79/475
  11364. }
  11365. },
  11366. smiling: {
  11367. height: math.unit(1.2, "feet"),
  11368. name: "Smiling",
  11369. image: {
  11370. source: "./media/characters/tene/smiling.svg",
  11371. extra: 1364/1071,
  11372. bottom: 0/1364
  11373. }
  11374. },
  11375. smug: {
  11376. height: math.unit(1.3, "feet"),
  11377. name: "Smug",
  11378. image: {
  11379. source: "./media/characters/tene/smug.svg",
  11380. extra: 1323/1082,
  11381. bottom: 0/1323
  11382. }
  11383. },
  11384. feral: {
  11385. height: math.unit(3.9, "feet"),
  11386. weight: math.unit(250, "lb"),
  11387. name: "Feral",
  11388. image: {
  11389. source: "./media/characters/tene/feral.svg",
  11390. extra: 717 / 458,
  11391. bottom: 0.179
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(6, "feet")
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(300, "feet"),
  11403. default: true
  11404. },
  11405. {
  11406. name: "Megamacro",
  11407. height: math.unit(5, "miles")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11413. {
  11414. side: {
  11415. height: math.unit(6, "feet"),
  11416. name: "Side",
  11417. image: {
  11418. source: "./media/characters/evander/side.svg",
  11419. extra: 877 / 477
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(0.83, "meters"),
  11427. default: true
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11433. {
  11434. front: {
  11435. height: math.unit(12, "feet"),
  11436. weight: math.unit(1000, "lb"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11440. extra: 1762 / 1611
  11441. }
  11442. },
  11443. back: {
  11444. height: math.unit(12, "feet"),
  11445. weight: math.unit(1000, "lb"),
  11446. name: "Back",
  11447. image: {
  11448. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11449. extra: 1762 / 1611
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(12, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Kaiju",
  11461. height: math.unit(150, "feet")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/zero-alurus/front.svg"
  11474. }
  11475. },
  11476. back: {
  11477. height: math.unit(6, "feet"),
  11478. weight: math.unit(150, "lb"),
  11479. name: "Back",
  11480. image: {
  11481. source: "./media/characters/zero-alurus/back.svg"
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Normal",
  11488. height: math.unit(5 + 10 / 12, "feet")
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(60, "feet"),
  11493. default: true
  11494. },
  11495. {
  11496. name: "Macro+",
  11497. height: math.unit(450, "feet")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(200, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/mega-shi/front.svg",
  11510. extra: 1279 / 1250,
  11511. bottom: 0.02
  11512. }
  11513. },
  11514. back: {
  11515. height: math.unit(6, "feet"),
  11516. weight: math.unit(200, "lb"),
  11517. name: "Back",
  11518. image: {
  11519. source: "./media/characters/mega-shi/back.svg",
  11520. extra: 1279 / 1250,
  11521. bottom: 0.02
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Micro",
  11528. height: math.unit(16 + 6 / 12, "feet")
  11529. },
  11530. {
  11531. name: "Third Dimension",
  11532. height: math.unit(40, "meters")
  11533. },
  11534. {
  11535. name: "Normal",
  11536. height: math.unit(660, "feet"),
  11537. default: true
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(10, "miles")
  11542. },
  11543. {
  11544. name: "Planetary Launch",
  11545. height: math.unit(500, "miles")
  11546. },
  11547. {
  11548. name: "Interstellar",
  11549. height: math.unit(1e9, "miles")
  11550. },
  11551. {
  11552. name: "Leaving the Universe",
  11553. height: math.unit(1, "gigaparsec")
  11554. },
  11555. {
  11556. name: "Travelling Universes",
  11557. height: math.unit(30e15, "parsecs")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(5 + 4/12, "feet"),
  11566. weight: math.unit(120, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/odyssey/front.svg",
  11570. extra: 1747/1571,
  11571. bottom: 47/1794
  11572. }
  11573. },
  11574. side: {
  11575. height: math.unit(5.1, "feet"),
  11576. weight: math.unit(120, "lb"),
  11577. name: "Side",
  11578. image: {
  11579. source: "./media/characters/odyssey/side.svg",
  11580. extra: 1847/1619,
  11581. bottom: 47/1894
  11582. }
  11583. },
  11584. lounging: {
  11585. height: math.unit(1.464, "feet"),
  11586. weight: math.unit(120, "lb"),
  11587. name: "Lounging",
  11588. image: {
  11589. source: "./media/characters/odyssey/lounging.svg",
  11590. extra: 1235/837,
  11591. bottom: 551/1786
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Normal",
  11598. height: math.unit(5 + 4 / 12, "feet")
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(1, "km")
  11603. },
  11604. {
  11605. name: "Megamacro",
  11606. height: math.unit(3000, "km")
  11607. },
  11608. {
  11609. name: "Gigamacro",
  11610. height: math.unit(1, "AU"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Omniversal",
  11615. height: math.unit(100e14, "lightyears")
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(5 + 10/12, "feet"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/mekuto/front.svg",
  11627. extra: 875/835,
  11628. bottom: 46/921
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Minimicro",
  11635. height: math.unit(0.2, "inches")
  11636. },
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(1.5, "inches")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(5 + 10 / 12, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Minimacro",
  11648. height: math.unit(17 + 9 / 12, "feet")
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(177.5, "feet")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(152, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(6.5, "inches"),
  11665. weight: math.unit(13, "oz"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/dafydd-tomos/front.svg",
  11669. extra: 2990 / 2603,
  11670. bottom: 0.03
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Micro",
  11677. height: math.unit(6.5, "inches"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/splinter/front.svg",
  11691. extra: 2990 / 2882,
  11692. bottom: 0.04
  11693. }
  11694. },
  11695. back: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Back",
  11699. image: {
  11700. source: "./media/characters/splinter/back.svg",
  11701. extra: 2990 / 2882,
  11702. bottom: 0.04
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(6, "feet")
  11710. },
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(230, "meters"),
  11714. default: true
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(4 + 10 / 12, "feet"),
  11723. weight: math.unit(480, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/snow-gabumon/front.svg",
  11727. extra: 1140 / 963,
  11728. bottom: 0.058
  11729. }
  11730. },
  11731. back: {
  11732. height: math.unit(4 + 10 / 12, "feet"),
  11733. weight: math.unit(480, "lb"),
  11734. name: "Back",
  11735. image: {
  11736. source: "./media/characters/snow-gabumon/back.svg",
  11737. extra: 1115 / 962,
  11738. bottom: 0.041
  11739. }
  11740. },
  11741. frontUndresed: {
  11742. height: math.unit(4 + 10 / 12, "feet"),
  11743. weight: math.unit(480, "lb"),
  11744. name: "Front (Undressed)",
  11745. image: {
  11746. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11747. extra: 1061 / 960,
  11748. bottom: 0.045
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(1, "inch")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(4 + 10 / 12, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(200, "feet")
  11765. },
  11766. {
  11767. name: "Megamacro",
  11768. height: math.unit(120, "miles")
  11769. },
  11770. {
  11771. name: "Gigamacro",
  11772. height: math.unit(9800, "miles")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(1.7, "meters"),
  11781. weight: math.unit(140, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/moody/front.svg",
  11785. extra: 3226 / 3007,
  11786. bottom: 0.087
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Micro",
  11793. height: math.unit(1, "mm")
  11794. },
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(1.7, "meters"),
  11798. default: true
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(80, "meters")
  11803. },
  11804. {
  11805. name: "Macro+",
  11806. height: math.unit(500, "meters")
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/zyas/front.svg",
  11819. extra: 1180 / 1120,
  11820. bottom: 0.045
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(10, "feet"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(500, "feet")
  11833. },
  11834. {
  11835. name: "Megamacro",
  11836. height: math.unit(5, "miles")
  11837. },
  11838. {
  11839. name: "Teramacro",
  11840. height: math.unit(150000, "miles")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/cuon/front.svg",
  11853. extra: 1390 / 1320,
  11854. bottom: 0.008
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Micro",
  11861. height: math.unit(3, "inches")
  11862. },
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(18 + 9 / 12, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Macro",
  11870. height: math.unit(360, "feet")
  11871. },
  11872. {
  11873. name: "Megamacro",
  11874. height: math.unit(360, "miles")
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(2.4, "meters"),
  11883. weight: math.unit(70, "kg"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/nyanuxk/front.svg",
  11887. extra: 1172 / 1084,
  11888. bottom: 0.065
  11889. }
  11890. },
  11891. side: {
  11892. height: math.unit(2.4, "meters"),
  11893. weight: math.unit(70, "kg"),
  11894. name: "Side",
  11895. image: {
  11896. source: "./media/characters/nyanuxk/side.svg",
  11897. extra: 1190 / 1132,
  11898. bottom: 0.007
  11899. }
  11900. },
  11901. back: {
  11902. height: math.unit(2.4, "meters"),
  11903. weight: math.unit(70, "kg"),
  11904. name: "Back",
  11905. image: {
  11906. source: "./media/characters/nyanuxk/back.svg",
  11907. extra: 1200 / 1141,
  11908. bottom: 0.015
  11909. }
  11910. },
  11911. foot: {
  11912. height: math.unit(0.52, "meters"),
  11913. name: "Foot",
  11914. image: {
  11915. source: "./media/characters/nyanuxk/foot.svg"
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(2, "cm")
  11923. },
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(2.4, "meters"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Smaller Macro",
  11931. height: math.unit(120, "meters")
  11932. },
  11933. {
  11934. name: "Bigger Macro",
  11935. height: math.unit(1.2, "km")
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(15, "kilometers")
  11940. },
  11941. {
  11942. name: "Gigamacro",
  11943. height: math.unit(2000, "km")
  11944. },
  11945. {
  11946. name: "Teramacro",
  11947. height: math.unit(500000, "km")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11953. {
  11954. side: {
  11955. height: math.unit(6, "feet"),
  11956. name: "Side",
  11957. image: {
  11958. source: "./media/characters/ailbhe/side.svg",
  11959. extra: 757 / 464,
  11960. bottom: 0.041
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Normal",
  11967. height: math.unit(1.07, "meters"),
  11968. default: true
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(6, "feet"),
  11977. weight: math.unit(120, "kg"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/zevulfius/front.svg",
  11981. extra: 965 / 903
  11982. }
  11983. },
  11984. side: {
  11985. height: math.unit(6, "feet"),
  11986. weight: math.unit(120, "kg"),
  11987. name: "Side",
  11988. image: {
  11989. source: "./media/characters/zevulfius/side.svg",
  11990. extra: 939 / 900
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(6, "feet"),
  11995. weight: math.unit(120, "kg"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/zevulfius/back.svg",
  11999. extra: 918 / 854,
  12000. bottom: 0.005
  12001. }
  12002. },
  12003. foot: {
  12004. height: math.unit(6 / 3.72, "feet"),
  12005. name: "Foot",
  12006. image: {
  12007. source: "./media/characters/zevulfius/foot.svg"
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(750, "meters")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(20, "km"),
  12019. default: true
  12020. },
  12021. {
  12022. name: "Gigamacro",
  12023. height: math.unit(2000, "km")
  12024. },
  12025. {
  12026. name: "Teramacro",
  12027. height: math.unit(250000, "km")
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(100, "feet"),
  12036. weight: math.unit(350, "kg"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/rikes/front.svg",
  12040. extra: 1565 / 1483,
  12041. bottom: 0.017
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(100, "feet"),
  12049. default: true
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(8, "feet"),
  12058. weight: math.unit(356, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/adam-silver-mane/front.svg",
  12062. extra: 1036/937,
  12063. bottom: 63/1099
  12064. }
  12065. },
  12066. side: {
  12067. height: math.unit(8, "feet"),
  12068. weight: math.unit(356, "lb"),
  12069. name: "Side",
  12070. image: {
  12071. source: "./media/characters/adam-silver-mane/side.svg",
  12072. extra: 997/901,
  12073. bottom: 59/1056
  12074. }
  12075. },
  12076. frontNsfw: {
  12077. height: math.unit(8, "feet"),
  12078. weight: math.unit(356, "lb"),
  12079. name: "Front (NSFW)",
  12080. image: {
  12081. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12082. extra: 1036/937,
  12083. bottom: 63/1099
  12084. }
  12085. },
  12086. sideNsfw: {
  12087. height: math.unit(8, "feet"),
  12088. weight: math.unit(356, "lb"),
  12089. name: "Side (NSFW)",
  12090. image: {
  12091. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12092. extra: 997/901,
  12093. bottom: 59/1056
  12094. }
  12095. },
  12096. dick: {
  12097. height: math.unit(2.1, "feet"),
  12098. name: "Dick",
  12099. image: {
  12100. source: "./media/characters/adam-silver-mane/dick.svg"
  12101. }
  12102. },
  12103. taur: {
  12104. height: math.unit(16, "feet"),
  12105. weight: math.unit(1500, "kg"),
  12106. name: "Taur",
  12107. image: {
  12108. source: "./media/characters/adam-silver-mane/taur.svg",
  12109. extra: 1713 / 1571,
  12110. bottom: 0.01
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(8, "feet")
  12118. },
  12119. {
  12120. name: "Minimacro",
  12121. height: math.unit(80, "feet")
  12122. },
  12123. {
  12124. name: "MDA",
  12125. height: math.unit(80, "meters")
  12126. },
  12127. {
  12128. name: "Macro",
  12129. height: math.unit(800, "feet"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(8000, "feet")
  12135. },
  12136. {
  12137. name: "Gigamacro",
  12138. height: math.unit(800, "miles")
  12139. },
  12140. {
  12141. name: "Teramacro",
  12142. height: math.unit(80000, "miles")
  12143. },
  12144. {
  12145. name: "Celestial",
  12146. height: math.unit(8e6, "miles")
  12147. },
  12148. {
  12149. name: "Star Dragon",
  12150. height: math.unit(800000, "parsecs")
  12151. },
  12152. {
  12153. name: "Godly",
  12154. height: math.unit(800, "teraparsecs")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6, "feet"),
  12163. weight: math.unit(150, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/ky'owin/front.svg",
  12167. extra: 3862/3053,
  12168. bottom: 74/3936
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Normal",
  12175. height: math.unit(6 + 8 / 12, "feet")
  12176. },
  12177. {
  12178. name: "Large",
  12179. height: math.unit(68, "feet")
  12180. },
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(132, "feet")
  12184. },
  12185. {
  12186. name: "Macro+",
  12187. height: math.unit(340, "feet")
  12188. },
  12189. {
  12190. name: "Macro++",
  12191. height: math.unit(680, "feet"),
  12192. default: true
  12193. },
  12194. {
  12195. name: "Megamacro",
  12196. height: math.unit(1, "mile")
  12197. },
  12198. {
  12199. name: "Megamacro+",
  12200. height: math.unit(10, "miles")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12206. {
  12207. front: {
  12208. height: math.unit(4, "feet"),
  12209. weight: math.unit(50, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/mal/front.svg",
  12213. extra: 785 / 724,
  12214. bottom: 0.07
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(4, "inches")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(4, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(200, "feet")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(150, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/jordan-deware/front.svg",
  12243. extra: 1191 / 1012
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Nano",
  12250. height: math.unit(0.01, "mm")
  12251. },
  12252. {
  12253. name: "Minimicro",
  12254. height: math.unit(1, "mm")
  12255. },
  12256. {
  12257. name: "Micro",
  12258. height: math.unit(0.5, "inches")
  12259. },
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(4, "feet"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Minimacro",
  12267. height: math.unit(40, "meters")
  12268. },
  12269. {
  12270. name: "Small Macro",
  12271. height: math.unit(400, "meters")
  12272. },
  12273. {
  12274. name: "Macro",
  12275. height: math.unit(4, "miles")
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(40, "miles")
  12280. },
  12281. {
  12282. name: "Megamacro+",
  12283. height: math.unit(400, "miles")
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(400000, "miles")
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12293. {
  12294. side: {
  12295. height: math.unit(6, "feet"),
  12296. weight: math.unit(150, "lb"),
  12297. name: "Side",
  12298. image: {
  12299. source: "./media/characters/kimiko/side.svg",
  12300. extra: 600 / 358
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(15, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(220, "feet")
  12313. },
  12314. {
  12315. name: "Macro+",
  12316. height: math.unit(1450, "feet")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(11500, "feet")
  12321. },
  12322. {
  12323. name: "Gigamacro",
  12324. height: math.unit(9500, "miles")
  12325. },
  12326. {
  12327. name: "Teramacro",
  12328. height: math.unit(2208005005, "miles")
  12329. },
  12330. {
  12331. name: "Examacro",
  12332. height: math.unit(2750, "parsecs")
  12333. },
  12334. {
  12335. name: "Zettamacro",
  12336. height: math.unit(101500, "parsecs")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(70, "kg"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/andrew-sleepy/front.svg"
  12349. }
  12350. },
  12351. side: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(70, "kg"),
  12354. name: "Side",
  12355. image: {
  12356. source: "./media/characters/andrew-sleepy/side.svg"
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Micro",
  12363. height: math.unit(1, "mm"),
  12364. default: true
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12370. {
  12371. front: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(150, "lb"),
  12374. name: "Front",
  12375. image: {
  12376. source: "./media/characters/judio/front.svg",
  12377. extra: 1258 / 1110
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(5 + 6 / 12, "feet")
  12385. },
  12386. {
  12387. name: "Macro",
  12388. height: math.unit(1000, "feet"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Megamacro",
  12393. height: math.unit(10, "miles")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12399. {
  12400. frontDressed: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(68, "kg"),
  12403. name: "Front (Dressed)",
  12404. image: {
  12405. source: "./media/characters/nomaxice/front-dressed.svg",
  12406. extra: 1137/824,
  12407. bottom: 74/1211
  12408. }
  12409. },
  12410. frontShorts: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(68, "kg"),
  12413. name: "Front (Shorts)",
  12414. image: {
  12415. source: "./media/characters/nomaxice/front-shorts.svg",
  12416. extra: 1137/824,
  12417. bottom: 74/1211
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(68, "kg"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/nomaxice/back.svg",
  12426. extra: 822/786,
  12427. bottom: 39/861
  12428. }
  12429. },
  12430. hand: {
  12431. height: math.unit(0.565, "feet"),
  12432. name: "Hand",
  12433. image: {
  12434. source: "./media/characters/nomaxice/hand.svg"
  12435. }
  12436. },
  12437. foot: {
  12438. height: math.unit(1, "feet"),
  12439. name: "Foot",
  12440. image: {
  12441. source: "./media/characters/nomaxice/foot.svg"
  12442. }
  12443. },
  12444. },
  12445. [
  12446. {
  12447. name: "Micro",
  12448. height: math.unit(8, "cm")
  12449. },
  12450. {
  12451. name: "Norm",
  12452. height: math.unit(1.82, "m")
  12453. },
  12454. {
  12455. name: "Norm+",
  12456. height: math.unit(8.8, "feet"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Big",
  12461. height: math.unit(8, "meters")
  12462. },
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(18, "meters")
  12466. },
  12467. {
  12468. name: "Macro+",
  12469. height: math.unit(88, "meters")
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(12, "feet"),
  12478. weight: math.unit(1.5, "tons"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/dydros/front.svg",
  12482. extra: 863 / 800,
  12483. bottom: 0.015
  12484. }
  12485. },
  12486. back: {
  12487. height: math.unit(12, "feet"),
  12488. weight: math.unit(1.5, "tons"),
  12489. name: "Back",
  12490. image: {
  12491. source: "./media/characters/dydros/back.svg",
  12492. extra: 900 / 843,
  12493. bottom: 0.005
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(12, "feet"),
  12501. default: true
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(6, "feet"),
  12510. weight: math.unit(100, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/riggi/front.svg",
  12514. extra: 5787 / 5303
  12515. }
  12516. },
  12517. hyper: {
  12518. height: math.unit(6 * 5 / 3, "feet"),
  12519. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12520. name: "Hyper",
  12521. image: {
  12522. source: "./media/characters/riggi/hyper.svg",
  12523. extra: 3595 / 3485
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Small Macro",
  12530. height: math.unit(50, "feet")
  12531. },
  12532. {
  12533. name: "Default",
  12534. height: math.unit(200, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Loom",
  12539. height: math.unit(10000, "feet")
  12540. },
  12541. {
  12542. name: "Cruising Altitude",
  12543. height: math.unit(30000, "feet")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(100, "miles")
  12548. },
  12549. {
  12550. name: "Continent Sized",
  12551. height: math.unit(2800, "miles")
  12552. },
  12553. {
  12554. name: "Earth Sized",
  12555. height: math.unit(8000, "miles")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(6, "feet"),
  12564. weight: math.unit(250, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/alexi/front.svg",
  12568. extra: 3483 / 3291,
  12569. bottom: 0.04
  12570. }
  12571. },
  12572. back: {
  12573. height: math.unit(6, "feet"),
  12574. weight: math.unit(250, "lb"),
  12575. name: "Back",
  12576. image: {
  12577. source: "./media/characters/alexi/back.svg",
  12578. extra: 3533 / 3356,
  12579. bottom: 0.021
  12580. }
  12581. },
  12582. frontTransforming: {
  12583. height: math.unit(8.58, "feet"),
  12584. weight: math.unit(1300, "lb"),
  12585. name: "Transforming",
  12586. image: {
  12587. source: "./media/characters/alexi/front-transforming.svg",
  12588. extra: 437 / 409,
  12589. bottom: 19 / 458.66
  12590. }
  12591. },
  12592. frontTransformed: {
  12593. height: math.unit(12.5, "feet"),
  12594. weight: math.unit(4000, "lb"),
  12595. name: "Transformed",
  12596. image: {
  12597. source: "./media/characters/alexi/front-transformed.svg",
  12598. extra: 639 / 614,
  12599. bottom: 30.55 / 671
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Normal",
  12606. height: math.unit(14, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Minimacro",
  12611. height: math.unit(30, "meters")
  12612. },
  12613. {
  12614. name: "Macro",
  12615. height: math.unit(500, "meters")
  12616. },
  12617. {
  12618. name: "Megamacro",
  12619. height: math.unit(9000, "km")
  12620. },
  12621. {
  12622. name: "Teramacro",
  12623. height: math.unit(384000, "km")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/kayroo/front.svg",
  12636. extra: 1153 / 1038,
  12637. bottom: 0.06
  12638. }
  12639. },
  12640. foot: {
  12641. height: math.unit(6, "feet"),
  12642. weight: math.unit(150, "lb"),
  12643. name: "Foot",
  12644. image: {
  12645. source: "./media/characters/kayroo/foot.svg"
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(8, "feet"),
  12653. default: true
  12654. },
  12655. {
  12656. name: "Minimacro",
  12657. height: math.unit(250, "feet")
  12658. },
  12659. {
  12660. name: "Macro",
  12661. height: math.unit(2800, "feet")
  12662. },
  12663. {
  12664. name: "Megamacro",
  12665. height: math.unit(5200, "feet")
  12666. },
  12667. {
  12668. name: "Gigamacro",
  12669. height: math.unit(27000, "feet")
  12670. },
  12671. {
  12672. name: "Omega",
  12673. height: math.unit(45000, "feet")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(18, "feet"),
  12682. weight: math.unit(5800, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/rhys/front.svg",
  12686. extra: 3386 / 3090,
  12687. bottom: 0.07
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(18, "feet"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Working Size",
  12699. height: math.unit(200, "feet")
  12700. },
  12701. {
  12702. name: "Demolition Size",
  12703. height: math.unit(2000, "feet")
  12704. },
  12705. {
  12706. name: "Maximum Licensed Size",
  12707. height: math.unit(5, "miles")
  12708. },
  12709. {
  12710. name: "Maximum Observed Size",
  12711. height: math.unit(10, "yottameters")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(250, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/toto/front.svg",
  12724. extra: 527 / 479,
  12725. bottom: 0.05
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Micro",
  12732. height: math.unit(3, "feet")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(10, "feet")
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(150, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(1200, "feet")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "King", species: ["lion"], tags: ["anthro"] },
  12751. {
  12752. back: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(150, "lb"),
  12755. name: "Back",
  12756. image: {
  12757. source: "./media/characters/king/back.svg"
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Micro",
  12764. height: math.unit(2, "inches")
  12765. },
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(8, "feet")
  12769. },
  12770. {
  12771. name: "Macro",
  12772. height: math.unit(200, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(50, "miles")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(11, "feet"),
  12786. weight: math.unit(1400, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/cordite/front.svg",
  12790. extra: 1919/1827,
  12791. bottom: 40/1959
  12792. }
  12793. },
  12794. side: {
  12795. height: math.unit(11, "feet"),
  12796. weight: math.unit(1400, "lb"),
  12797. name: "Side",
  12798. image: {
  12799. source: "./media/characters/cordite/side.svg",
  12800. extra: 1908/1793,
  12801. bottom: 38/1946
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(11, "feet"),
  12806. weight: math.unit(1400, "lb"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/cordite/back.svg",
  12810. extra: 1938/1837,
  12811. bottom: 10/1948
  12812. }
  12813. },
  12814. feral: {
  12815. height: math.unit(2, "feet"),
  12816. weight: math.unit(90, "lb"),
  12817. name: "Feral",
  12818. image: {
  12819. source: "./media/characters/cordite/feral.svg",
  12820. extra: 1260 / 755,
  12821. bottom: 0.05
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(11, "feet"),
  12829. default: true
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12835. {
  12836. front: {
  12837. height: math.unit(6, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/pianostrong/front.svg",
  12842. extra: 6577 / 6254,
  12843. bottom: 0.02
  12844. }
  12845. },
  12846. side: {
  12847. height: math.unit(6, "feet"),
  12848. weight: math.unit(150, "lb"),
  12849. name: "Side",
  12850. image: {
  12851. source: "./media/characters/pianostrong/side.svg",
  12852. extra: 6106 / 5730
  12853. }
  12854. },
  12855. back: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Back",
  12859. image: {
  12860. source: "./media/characters/pianostrong/back.svg",
  12861. extra: 6085 / 5733,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(100, "feet")
  12870. },
  12871. {
  12872. name: "Macro+",
  12873. height: math.unit(300, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro++",
  12878. height: math.unit(1000, "feet")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/kona/front.svg",
  12891. extra: 2960 / 2629,
  12892. bottom: 0.005
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(11 + 8 / 12, "feet")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(850, "feet"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Macro+",
  12908. height: math.unit(1.5, "km"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(80, "miles")
  12914. },
  12915. {
  12916. name: "Gigamacro",
  12917. height: math.unit(3500, "miles")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12923. {
  12924. side: {
  12925. height: math.unit(1.9, "meters"),
  12926. weight: math.unit(326, "kg"),
  12927. name: "Side",
  12928. image: {
  12929. source: "./media/characters/levi/side.svg",
  12930. extra: 1704 / 1334,
  12931. bottom: 0.02
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(1.9, "meters"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Macro",
  12943. height: math.unit(20, "meters")
  12944. },
  12945. {
  12946. name: "Macro+",
  12947. height: math.unit(200, "meters")
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(2, "km")
  12952. },
  12953. {
  12954. name: "Megamacro+",
  12955. height: math.unit(20, "km")
  12956. },
  12957. {
  12958. name: "Gigamacro",
  12959. height: math.unit(2500, "km")
  12960. },
  12961. {
  12962. name: "Gigamacro+",
  12963. height: math.unit(120000, "km")
  12964. },
  12965. {
  12966. name: "Teramacro",
  12967. height: math.unit(7.77e6, "km")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6 + 4/12, "feet"),
  12976. weight: math.unit(190, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/bmc/front.svg",
  12980. extra: 1626/1472,
  12981. bottom: 79/1705
  12982. }
  12983. },
  12984. back: {
  12985. height: math.unit(6 + 4/12, "feet"),
  12986. weight: math.unit(190, "lb"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/bmc/back.svg",
  12990. extra: 1640/1479,
  12991. bottom: 45/1685
  12992. }
  12993. },
  12994. frontArmor: {
  12995. height: math.unit(6 + 4/12, "feet"),
  12996. weight: math.unit(190, "lb"),
  12997. name: "Front-armor",
  12998. image: {
  12999. source: "./media/characters/bmc/front-armor.svg",
  13000. extra: 1538/1468,
  13001. bottom: 79/1617
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Human-sized",
  13008. height: math.unit(6 + 4 / 12, "feet")
  13009. },
  13010. {
  13011. name: "Interactive Size",
  13012. height: math.unit(25, "feet")
  13013. },
  13014. {
  13015. name: "Small",
  13016. height: math.unit(250, "feet")
  13017. },
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(1250, "feet"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Good Day",
  13025. height: math.unit(88, "miles")
  13026. },
  13027. {
  13028. name: "Largest Measured Size",
  13029. height: math.unit(105.960, "galaxies")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(20, "feet"),
  13038. weight: math.unit(2016, "kg"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/sven-the-kaiju/front.svg",
  13042. extra: 1277/1250,
  13043. bottom: 35/1312
  13044. }
  13045. },
  13046. mouth: {
  13047. height: math.unit(1.85, "feet"),
  13048. name: "Mouth",
  13049. image: {
  13050. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Fairy",
  13057. height: math.unit(6, "inches")
  13058. },
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(20, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Rampage",
  13066. height: math.unit(200, "feet")
  13067. },
  13068. {
  13069. name: "Archfey Forest Guardian",
  13070. height: math.unit(1, "mile")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(4, "meters"),
  13079. weight: math.unit(2, "tons"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/marik/front.svg",
  13083. extra: 1057 / 1003,
  13084. bottom: 0.08
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(4, "meters"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(20, "meters")
  13097. },
  13098. {
  13099. name: "Megamacro",
  13100. height: math.unit(50, "km")
  13101. },
  13102. {
  13103. name: "Gigamacro",
  13104. height: math.unit(100, "km")
  13105. },
  13106. {
  13107. name: "Alpha Macro",
  13108. height: math.unit(7.88e7, "yottameters")
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13114. {
  13115. front: {
  13116. height: math.unit(6, "feet"),
  13117. weight: math.unit(110, "lb"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/mel/front.svg",
  13121. extra: 736 / 617,
  13122. bottom: 0.017
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Pico",
  13129. height: math.unit(3, "pm")
  13130. },
  13131. {
  13132. name: "Nano",
  13133. height: math.unit(3, "nm")
  13134. },
  13135. {
  13136. name: "Micro",
  13137. height: math.unit(0.3, "mm"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Micro+",
  13142. height: math.unit(3, "mm")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(5 + 10.5 / 12, "feet")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13152. {
  13153. kaiju: {
  13154. height: math.unit(1.75, "meters"),
  13155. weight: math.unit(55, "kg"),
  13156. name: "Kaiju",
  13157. image: {
  13158. source: "./media/characters/lykonous/kaiju.svg",
  13159. extra: 1055 / 946,
  13160. bottom: 0.135
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(2.5, "meters"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Kaiju Dragon",
  13172. height: math.unit(60, "meters")
  13173. },
  13174. {
  13175. name: "Mega Kaiju",
  13176. height: math.unit(120, "km")
  13177. },
  13178. {
  13179. name: "Giga Kaiju",
  13180. height: math.unit(200, "megameters")
  13181. },
  13182. {
  13183. name: "Terra Kaiju",
  13184. height: math.unit(400, "gigameters")
  13185. },
  13186. {
  13187. name: "Kaiju Dragon God",
  13188. height: math.unit(13000, "exaparsecs")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/blü/front.svg",
  13201. extra: 1883 / 1564,
  13202. bottom: 0.031
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(13, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Big Boi",
  13214. height: math.unit(150, "meters")
  13215. },
  13216. {
  13217. name: "Mini Stomper",
  13218. height: math.unit(300, "meters")
  13219. },
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(1000, "meters")
  13223. },
  13224. {
  13225. name: "Megamacro",
  13226. height: math.unit(11000, "meters")
  13227. },
  13228. {
  13229. name: "Gigamacro",
  13230. height: math.unit(11000, "km")
  13231. },
  13232. {
  13233. name: "Teramacro",
  13234. height: math.unit(420000, "km")
  13235. },
  13236. {
  13237. name: "Examacro",
  13238. height: math.unit(120, "parsecs")
  13239. },
  13240. {
  13241. name: "God Tho",
  13242. height: math.unit(98000000000, "parsecs")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13248. {
  13249. taurFront: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(200, "lb"),
  13252. name: "Taur (Front)",
  13253. image: {
  13254. source: "./media/characters/scales/taur-front.svg",
  13255. extra: 1,
  13256. bottom: 0.05
  13257. }
  13258. },
  13259. taurBack: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(200, "lb"),
  13262. name: "Taur (Back)",
  13263. image: {
  13264. source: "./media/characters/scales/taur-back.svg",
  13265. extra: 1,
  13266. bottom: 0.08
  13267. }
  13268. },
  13269. anthro: {
  13270. height: math.unit(6 * 7 / 12, "feet"),
  13271. weight: math.unit(100, "lb"),
  13272. name: "Anthro",
  13273. image: {
  13274. source: "./media/characters/scales/anthro.svg",
  13275. extra: 1,
  13276. bottom: 0.06
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(12, "feet"),
  13284. default: true
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/koragos/front.svg",
  13297. extra: 841 / 794,
  13298. bottom: 0.035
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/koragos/back.svg",
  13307. extra: 841 / 810,
  13308. bottom: 0.022
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(6 + 11 / 12, "feet"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Macro",
  13320. height: math.unit(490, "feet")
  13321. },
  13322. {
  13323. name: "Megamacro",
  13324. height: math.unit(10, "miles")
  13325. },
  13326. {
  13327. name: "Gigamacro",
  13328. height: math.unit(50, "miles")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(250, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/xylrem/front.svg",
  13341. extra: 3323 / 3050,
  13342. bottom: 0.065
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Micro",
  13349. height: math.unit(4, "feet")
  13350. },
  13351. {
  13352. name: "Normal",
  13353. height: math.unit(16, "feet"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(2720, "feet")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(25000, "miles")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(8, "feet"),
  13371. weight: math.unit(250, "kg"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/ikideru/front.svg",
  13375. extra: 930 / 870,
  13376. bottom: 0.087
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(8, "feet"),
  13381. weight: math.unit(250, "kg"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/ikideru/back.svg",
  13385. extra: 919 / 852,
  13386. bottom: 0.055
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Rare",
  13393. height: math.unit(8, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Playful Loom",
  13398. height: math.unit(80, "feet")
  13399. },
  13400. {
  13401. name: "City Leaner",
  13402. height: math.unit(230, "feet")
  13403. },
  13404. {
  13405. name: "Megamacro",
  13406. height: math.unit(2500, "feet")
  13407. },
  13408. {
  13409. name: "Gigamacro",
  13410. height: math.unit(26400, "feet")
  13411. },
  13412. {
  13413. name: "Tectonic Shifter",
  13414. height: math.unit(1.7, "megameters")
  13415. },
  13416. {
  13417. name: "Planet Carer",
  13418. height: math.unit(21, "megameters")
  13419. },
  13420. {
  13421. name: "God",
  13422. height: math.unit(11157.22, "parsecs")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(120, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/neo/front.svg"
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Micro",
  13441. height: math.unit(2, "inches"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Human Size",
  13446. height: math.unit(5 + 8 / 12, "feet")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(13 + 10 / 12, "feet"),
  13455. weight: math.unit(5320, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/chauncey-chantz/front.svg",
  13459. extra: 1587 / 1435,
  13460. bottom: 0.02
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Normal",
  13467. height: math.unit(13 + 10 / 12, "feet"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(45, "feet")
  13473. },
  13474. {
  13475. name: "Megamacro",
  13476. height: math.unit(250, "miles")
  13477. },
  13478. {
  13479. name: "Planetary",
  13480. height: math.unit(10000, "miles")
  13481. },
  13482. {
  13483. name: "Galactic",
  13484. height: math.unit(40000, "parsecs")
  13485. },
  13486. {
  13487. name: "Universal",
  13488. height: math.unit(1, "yottameter")
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13494. {
  13495. front: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/epifox/front.svg",
  13501. extra: 1,
  13502. bottom: 0.075
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Micro",
  13509. height: math.unit(6, "inches")
  13510. },
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(12, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(3810, "feet")
  13519. },
  13520. {
  13521. name: "Megamacro",
  13522. height: math.unit(500, "miles")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(1.8796, "m"),
  13531. weight: math.unit(230, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/colin-t/front.svg",
  13535. extra: 1272 / 1193,
  13536. bottom: 0.07
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Micro",
  13543. height: math.unit(0.571, "meters")
  13544. },
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(1.8796, "meters"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Tall",
  13552. height: math.unit(4, "meters")
  13553. },
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(67.241, "meters")
  13557. },
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(371.856, "meters")
  13561. },
  13562. {
  13563. name: "Planetary",
  13564. height: math.unit(12631.5689, "km")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(1.85, "meters"),
  13573. weight: math.unit(80, "kg"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/matvei/front.svg",
  13577. extra: 456/447,
  13578. bottom: 8/464
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(1.85, "meters"),
  13583. weight: math.unit(80, "kg"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/matvei/back.svg",
  13587. extra: 434/427,
  13588. bottom: 11/445
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(1.85, "meters"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(5 + 9 / 12, "feet"),
  13605. weight: math.unit(70, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/quincy/front.svg",
  13609. extra: 3041 / 2751
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(5 + 9 / 12, "feet"),
  13614. weight: math.unit(70, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/quincy/back.svg",
  13618. extra: 3041 / 2751
  13619. }
  13620. },
  13621. flying: {
  13622. height: math.unit(5 + 4 / 12, "feet"),
  13623. weight: math.unit(70, "lb"),
  13624. name: "Flying",
  13625. image: {
  13626. source: "./media/characters/quincy/flying.svg",
  13627. extra: 1044 / 930
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Micro",
  13634. height: math.unit(3, "cm")
  13635. },
  13636. {
  13637. name: "Normal",
  13638. height: math.unit(5 + 9 / 12, "feet")
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(200, "meters"),
  13643. default: true
  13644. },
  13645. {
  13646. name: "Megamacro",
  13647. height: math.unit(1000, "meters")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(3 + 11/12, "feet"),
  13656. weight: math.unit(50, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/vanrel/front.svg",
  13660. extra: 1104/949,
  13661. bottom: 52/1156
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(3 + 11/12, "feet"),
  13666. weight: math.unit(50, "lb"),
  13667. name: "Back",
  13668. image: {
  13669. source: "./media/characters/vanrel/back.svg",
  13670. extra: 1119/976,
  13671. bottom: 37/1156
  13672. }
  13673. },
  13674. tome: {
  13675. height: math.unit(1.35, "feet"),
  13676. weight: math.unit(10, "lb"),
  13677. name: "Vanrel's Tome",
  13678. rename: true,
  13679. image: {
  13680. source: "./media/characters/vanrel/tome.svg"
  13681. }
  13682. },
  13683. beans: {
  13684. height: math.unit(0.89, "feet"),
  13685. name: "Beans",
  13686. image: {
  13687. source: "./media/characters/vanrel/beans.svg"
  13688. }
  13689. },
  13690. },
  13691. [
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(3 + 11/12, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(7 + 5 / 12, "feet"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/kuiper-vanrel/front.svg",
  13707. extra: 1219/1169,
  13708. bottom: 69/1288
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(7 + 5 / 12, "feet"),
  13713. name: "Back",
  13714. image: {
  13715. source: "./media/characters/kuiper-vanrel/back.svg",
  13716. extra: 1236/1193,
  13717. bottom: 27/1263
  13718. }
  13719. },
  13720. foot: {
  13721. height: math.unit(0.55, "meters"),
  13722. name: "Foot",
  13723. image: {
  13724. source: "./media/characters/kuiper-vanrel/foot.svg",
  13725. }
  13726. },
  13727. battle: {
  13728. height: math.unit(6.824, "feet"),
  13729. name: "Battle",
  13730. image: {
  13731. source: "./media/characters/kuiper-vanrel/battle.svg",
  13732. extra: 1466 / 1327,
  13733. bottom: 29 / 1492.5
  13734. }
  13735. },
  13736. meerkui: {
  13737. height: math.unit(18, "inches"),
  13738. name: "Meerkui",
  13739. image: {
  13740. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13741. extra: 1354/1289,
  13742. bottom: 69/1423
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Normal",
  13749. height: math.unit(7 + 5 / 12, "feet"),
  13750. default: true
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13756. {
  13757. front: {
  13758. height: math.unit(8 + 5 / 12, "feet"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/keset-vanrel/front.svg",
  13762. extra: 1231/1148,
  13763. bottom: 82/1313
  13764. }
  13765. },
  13766. back: {
  13767. height: math.unit(8 + 5 / 12, "feet"),
  13768. name: "Back",
  13769. image: {
  13770. source: "./media/characters/keset-vanrel/back.svg",
  13771. extra: 1240/1174,
  13772. bottom: 33/1273
  13773. }
  13774. },
  13775. hand: {
  13776. height: math.unit(0.6, "meters"),
  13777. name: "Hand",
  13778. image: {
  13779. source: "./media/characters/keset-vanrel/hand.svg"
  13780. }
  13781. },
  13782. foot: {
  13783. height: math.unit(0.94978, "meters"),
  13784. name: "Foot",
  13785. image: {
  13786. source: "./media/characters/keset-vanrel/foot.svg"
  13787. }
  13788. },
  13789. battle: {
  13790. height: math.unit(7.408, "feet"),
  13791. name: "Battle",
  13792. image: {
  13793. source: "./media/characters/keset-vanrel/battle.svg",
  13794. extra: 1890 / 1386,
  13795. bottom: 73.28 / 1970
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(8 + 5 / 12, "feet"),
  13803. default: true
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(150, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/neos/front.svg",
  13816. extra: 1696 / 992,
  13817. bottom: 0.14
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Normal",
  13824. height: math.unit(54, "cm"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Macro",
  13829. height: math.unit(100, "m")
  13830. },
  13831. {
  13832. name: "Megamacro",
  13833. height: math.unit(10, "km")
  13834. },
  13835. {
  13836. name: "Megamacro+",
  13837. height: math.unit(100, "km")
  13838. },
  13839. {
  13840. name: "Gigamacro",
  13841. height: math.unit(100, "Mm")
  13842. },
  13843. {
  13844. name: "Teramacro",
  13845. height: math.unit(100, "Gm")
  13846. },
  13847. {
  13848. name: "Examacro",
  13849. height: math.unit(100, "Em")
  13850. },
  13851. {
  13852. name: "Godly",
  13853. height: math.unit(10000, "Ym")
  13854. },
  13855. {
  13856. name: "Beyond Godly",
  13857. height: math.unit(25, "multiverses")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13863. {
  13864. feminine: {
  13865. height: math.unit(5, "feet"),
  13866. weight: math.unit(100, "lb"),
  13867. name: "Feminine",
  13868. image: {
  13869. source: "./media/characters/sammy-mouse/feminine.svg",
  13870. extra: 2526 / 2425,
  13871. bottom: 0.123
  13872. }
  13873. },
  13874. masculine: {
  13875. height: math.unit(5, "feet"),
  13876. weight: math.unit(100, "lb"),
  13877. name: "Masculine",
  13878. image: {
  13879. source: "./media/characters/sammy-mouse/masculine.svg",
  13880. extra: 2526 / 2425,
  13881. bottom: 0.123
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Micro",
  13888. height: math.unit(5, "inches")
  13889. },
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(5, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Macro",
  13897. height: math.unit(60, "feet")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(4, "feet"),
  13906. weight: math.unit(50, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/kole/front.svg",
  13910. extra: 1423 / 1303,
  13911. bottom: 0.025
  13912. }
  13913. },
  13914. back: {
  13915. height: math.unit(4, "feet"),
  13916. weight: math.unit(50, "lb"),
  13917. name: "Back",
  13918. image: {
  13919. source: "./media/characters/kole/back.svg",
  13920. extra: 1426 / 1280,
  13921. bottom: 0.02
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(4, "feet"),
  13929. default: true
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(2.5, "feet"),
  13938. weight: math.unit(32, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/rufran/front.svg",
  13942. extra: 1313/885,
  13943. bottom: 94/1407
  13944. }
  13945. },
  13946. side: {
  13947. height: math.unit(2.5, "feet"),
  13948. weight: math.unit(32, "lb"),
  13949. name: "Side",
  13950. image: {
  13951. source: "./media/characters/rufran/side.svg",
  13952. extra: 1109/852,
  13953. bottom: 118/1227
  13954. }
  13955. },
  13956. back: {
  13957. height: math.unit(2.5, "feet"),
  13958. weight: math.unit(32, "lb"),
  13959. name: "Back",
  13960. image: {
  13961. source: "./media/characters/rufran/back.svg",
  13962. extra: 1280/878,
  13963. bottom: 131/1411
  13964. }
  13965. },
  13966. mouth: {
  13967. height: math.unit(1.13, "feet"),
  13968. name: "Mouth",
  13969. image: {
  13970. source: "./media/characters/rufran/mouth.svg"
  13971. }
  13972. },
  13973. foot: {
  13974. height: math.unit(1.33, "feet"),
  13975. name: "Foot",
  13976. image: {
  13977. source: "./media/characters/rufran/foot.svg"
  13978. }
  13979. },
  13980. koboldFront: {
  13981. height: math.unit(2 + 6 / 12, "feet"),
  13982. weight: math.unit(20, "lb"),
  13983. name: "Front (Kobold)",
  13984. image: {
  13985. source: "./media/characters/rufran/kobold-front.svg",
  13986. extra: 2041 / 1839,
  13987. bottom: 0.055
  13988. }
  13989. },
  13990. koboldBack: {
  13991. height: math.unit(2 + 6 / 12, "feet"),
  13992. weight: math.unit(20, "lb"),
  13993. name: "Back (Kobold)",
  13994. image: {
  13995. source: "./media/characters/rufran/kobold-back.svg",
  13996. extra: 2054 / 1839,
  13997. bottom: 0.01
  13998. }
  13999. },
  14000. koboldHand: {
  14001. height: math.unit(0.2166, "meters"),
  14002. name: "Hand (Kobold)",
  14003. image: {
  14004. source: "./media/characters/rufran/kobold-hand.svg"
  14005. }
  14006. },
  14007. koboldFoot: {
  14008. height: math.unit(0.185, "meters"),
  14009. name: "Foot (Kobold)",
  14010. image: {
  14011. source: "./media/characters/rufran/kobold-foot.svg"
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Micro",
  14018. height: math.unit(1, "inch")
  14019. },
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(2 + 6 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Big",
  14027. height: math.unit(60, "feet")
  14028. },
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(325, "feet")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(0.3, "meters"),
  14040. weight: math.unit(3.5, "kg"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/chip/front.svg",
  14044. extra: 748 / 674
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(1, "inch"),
  14052. default: true
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14058. {
  14059. side: {
  14060. height: math.unit(2.3, "meters"),
  14061. weight: math.unit(3500, "lb"),
  14062. name: "Side",
  14063. image: {
  14064. source: "./media/characters/torvid/side.svg",
  14065. extra: 1972 / 722,
  14066. bottom: 0.035
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(2.3, "meters"),
  14074. default: true
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(2, "meters"),
  14083. weight: math.unit(150.5, "kg"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/susan/front.svg",
  14087. extra: 693 / 635,
  14088. bottom: 0.05
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(505, "miles"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/raindrops/front.svg",
  14109. extra: 2655 / 2461,
  14110. bottom: 49 / 2705
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(6, "feet"),
  14115. weight: math.unit(150, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/raindrops/back.svg",
  14119. extra: 2574 / 2400,
  14120. bottom: 65 / 2634
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Micro",
  14127. height: math.unit(6, "inches")
  14128. },
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(6 + 2 / 12, "feet")
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(131, "feet"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Megamacro",
  14140. height: math.unit(15, "miles")
  14141. },
  14142. {
  14143. name: "Gigamacro",
  14144. height: math.unit(4000, "miles")
  14145. },
  14146. {
  14147. name: "Teramacro",
  14148. height: math.unit(315000, "miles")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(2.794, "meters"),
  14157. weight: math.unit(325, "kg"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/tezwa/front.svg",
  14161. extra: 2083 / 1906,
  14162. bottom: 0.031
  14163. }
  14164. },
  14165. foot: {
  14166. height: math.unit(0.687, "meters"),
  14167. name: "Foot",
  14168. image: {
  14169. source: "./media/characters/tezwa/foot.svg"
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(9 + 2 / 12, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(58, "feet"),
  14186. weight: math.unit(89000, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/typhus/front.svg",
  14190. extra: 816 / 800,
  14191. bottom: 0.065
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(58, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14205. {
  14206. front: {
  14207. height: math.unit(12, "feet"),
  14208. weight: math.unit(6, "tonnes"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/lyra-von-wulf/front.svg",
  14212. extra: 1,
  14213. bottom: 0.10
  14214. }
  14215. },
  14216. frontMecha: {
  14217. height: math.unit(12, "feet"),
  14218. weight: math.unit(12, "tonnes"),
  14219. name: "Front (Mecha)",
  14220. image: {
  14221. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14222. extra: 1,
  14223. bottom: 0.042
  14224. }
  14225. },
  14226. maw: {
  14227. height: math.unit(2.2, "feet"),
  14228. name: "Maw",
  14229. image: {
  14230. source: "./media/characters/lyra-von-wulf/maw.svg"
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Normal",
  14237. height: math.unit(12, "feet"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Classic",
  14242. height: math.unit(50, "feet")
  14243. },
  14244. {
  14245. name: "Macro",
  14246. height: math.unit(500, "feet")
  14247. },
  14248. {
  14249. name: "Megamacro",
  14250. height: math.unit(1, "mile")
  14251. },
  14252. {
  14253. name: "Gigamacro",
  14254. height: math.unit(400, "miles")
  14255. },
  14256. {
  14257. name: "Teramacro",
  14258. height: math.unit(22000, "miles")
  14259. },
  14260. {
  14261. name: "Solarmacro",
  14262. height: math.unit(8600000, "miles")
  14263. },
  14264. {
  14265. name: "Galactic",
  14266. height: math.unit(1057000, "lightyears")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(6 + 10 / 12, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/dixon/front.svg",
  14279. extra: 3361 / 3209,
  14280. bottom: 0.01
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Normal",
  14287. height: math.unit(6 + 10 / 12, "feet"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Big",
  14292. height: math.unit(12, "meters")
  14293. },
  14294. {
  14295. name: "Macro",
  14296. height: math.unit(500, "meters")
  14297. },
  14298. {
  14299. name: "Megamacro",
  14300. height: math.unit(2, "km")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(185, "cm"),
  14309. weight: math.unit(68, "kg"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/kauko/front.svg",
  14313. extra: 1455 / 1421,
  14314. bottom: 0.03
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(185, "cm"),
  14319. weight: math.unit(68, "kg"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/kauko/back.svg",
  14323. extra: 1455 / 1421,
  14324. bottom: 0.004
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(185, "cm"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14338. {
  14339. frontSfw: {
  14340. height: math.unit(5, "meters"),
  14341. weight: math.unit(4250, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/varg/front-sfw.svg",
  14345. extra: 1103/1010,
  14346. bottom: 50/1153
  14347. },
  14348. form: "anthro",
  14349. default: true
  14350. },
  14351. backSfw: {
  14352. height: math.unit(5, "meters"),
  14353. weight: math.unit(4250, "lb"),
  14354. name: "Back",
  14355. image: {
  14356. source: "./media/characters/varg/back-sfw.svg",
  14357. extra: 1038/1022,
  14358. bottom: 36/1074
  14359. },
  14360. form: "anthro"
  14361. },
  14362. frontNsfw: {
  14363. height: math.unit(5, "meters"),
  14364. weight: math.unit(4250, "lb"),
  14365. name: "Front (NSFW)",
  14366. image: {
  14367. source: "./media/characters/varg/front-nsfw.svg",
  14368. extra: 1103/1010,
  14369. bottom: 50/1153
  14370. },
  14371. form: "anthro"
  14372. },
  14373. sheath: {
  14374. height: math.unit(3.8, "feet"),
  14375. weight: math.unit(90, "kilograms"),
  14376. name: "Sheath",
  14377. image: {
  14378. source: "./media/characters/varg/sheath.svg"
  14379. },
  14380. form: "anthro"
  14381. },
  14382. dick: {
  14383. height: math.unit(4.6, "feet"),
  14384. weight: math.unit(451, "kilograms"),
  14385. name: "Dick",
  14386. image: {
  14387. source: "./media/characters/varg/dick.svg"
  14388. },
  14389. form: "anthro"
  14390. },
  14391. feralSfw: {
  14392. height: math.unit(5, "meters"),
  14393. weight: math.unit(100000, "lb"),
  14394. name: "Side",
  14395. image: {
  14396. source: "./media/characters/varg/feral-sfw.svg",
  14397. extra: 1065/511,
  14398. bottom: 211/1276
  14399. },
  14400. form: "feral",
  14401. default: true
  14402. },
  14403. feralNsfw: {
  14404. height: math.unit(5, "meters"),
  14405. weight: math.unit(100000, "lb"),
  14406. name: "Side (NSFW)",
  14407. image: {
  14408. source: "./media/characters/varg/feral-nsfw.svg",
  14409. extra: 1065/511,
  14410. bottom: 211/1276
  14411. },
  14412. form: "feral",
  14413. },
  14414. feralSheath: {
  14415. height: math.unit(9.8, "feet"),
  14416. weight: math.unit(2000, "kilograms"),
  14417. name: "Sheath",
  14418. image: {
  14419. source: "./media/characters/varg/sheath.svg"
  14420. },
  14421. form: "feral"
  14422. },
  14423. feralDick: {
  14424. height: math.unit(13.11, "feet"),
  14425. weight: math.unit(10440, "kilograms"),
  14426. name: "Dick",
  14427. image: {
  14428. source: "./media/characters/varg/dick.svg"
  14429. },
  14430. form: "feral"
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5, "meters"),
  14437. form: "anthro"
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(200, "meters"),
  14442. form: "anthro"
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(20, "kilometers"),
  14447. form: "anthro"
  14448. },
  14449. {
  14450. name: "True Size",
  14451. height: math.unit(211, "km"),
  14452. form: "anthro",
  14453. default: true
  14454. },
  14455. {
  14456. name: "Gigamacro",
  14457. height: math.unit(1000, "km"),
  14458. form: "anthro"
  14459. },
  14460. {
  14461. name: "Gigamacro+",
  14462. height: math.unit(8000, "km"),
  14463. form: "anthro"
  14464. },
  14465. {
  14466. name: "Teramacro",
  14467. height: math.unit(1000000, "km"),
  14468. form: "anthro"
  14469. },
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(5, "meters"),
  14473. form: "feral"
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(200, "meters"),
  14478. form: "feral"
  14479. },
  14480. {
  14481. name: "Megamacro",
  14482. height: math.unit(20, "kilometers"),
  14483. form: "feral"
  14484. },
  14485. {
  14486. name: "True Size",
  14487. height: math.unit(211, "km"),
  14488. form: "feral",
  14489. default: true
  14490. },
  14491. {
  14492. name: "Gigamacro",
  14493. height: math.unit(1000, "km"),
  14494. form: "feral"
  14495. },
  14496. {
  14497. name: "Gigamacro+",
  14498. height: math.unit(8000, "km"),
  14499. form: "feral"
  14500. },
  14501. {
  14502. name: "Teramacro",
  14503. height: math.unit(1000000, "km"),
  14504. form: "feral"
  14505. },
  14506. ],
  14507. {
  14508. "anthro": {
  14509. name: "Anthro",
  14510. default: true
  14511. },
  14512. "feral": {
  14513. name: "Feral",
  14514. },
  14515. }
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(7 + 7 / 12, "feet"),
  14522. weight: math.unit(267, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/dayza/front.svg",
  14526. extra: 1262 / 1200,
  14527. bottom: 0.035
  14528. }
  14529. },
  14530. side: {
  14531. height: math.unit(7 + 7 / 12, "feet"),
  14532. weight: math.unit(267, "lb"),
  14533. name: "Side",
  14534. image: {
  14535. source: "./media/characters/dayza/side.svg",
  14536. extra: 1295 / 1245,
  14537. bottom: 0.05
  14538. }
  14539. },
  14540. back: {
  14541. height: math.unit(7 + 7 / 12, "feet"),
  14542. weight: math.unit(267, "lb"),
  14543. name: "Back",
  14544. image: {
  14545. source: "./media/characters/dayza/back.svg",
  14546. extra: 1241 / 1170
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(7 + 7 / 12, "feet"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Macro",
  14558. height: math.unit(155, "feet")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6 + 5 / 12, "feet"),
  14567. weight: math.unit(160, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/xanthos/front.svg",
  14571. extra: 1,
  14572. bottom: 0.04
  14573. }
  14574. },
  14575. back: {
  14576. height: math.unit(6 + 5 / 12, "feet"),
  14577. weight: math.unit(160, "lb"),
  14578. name: "Back",
  14579. image: {
  14580. source: "./media/characters/xanthos/back.svg",
  14581. extra: 1,
  14582. bottom: 0.03
  14583. }
  14584. },
  14585. hand: {
  14586. height: math.unit(0.928, "feet"),
  14587. name: "Hand",
  14588. image: {
  14589. source: "./media/characters/xanthos/hand.svg"
  14590. }
  14591. },
  14592. foot: {
  14593. height: math.unit(1.286, "feet"),
  14594. name: "Foot",
  14595. image: {
  14596. source: "./media/characters/xanthos/foot.svg"
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(6 + 5 / 12, "feet"),
  14604. default: true
  14605. },
  14606. {
  14607. name: "Normal+",
  14608. height: math.unit(6, "meters")
  14609. },
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(40, "feet")
  14613. },
  14614. {
  14615. name: "Macro+",
  14616. height: math.unit(200, "meters")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(20, "km")
  14621. },
  14622. {
  14623. name: "Megamacro+",
  14624. height: math.unit(100, "km")
  14625. },
  14626. {
  14627. name: "Gigamacro",
  14628. height: math.unit(200, "megameters")
  14629. },
  14630. {
  14631. name: "Gigamacro+",
  14632. height: math.unit(1.5, "gigameters")
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6 + 3 / 12, "feet"),
  14641. weight: math.unit(215, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/grynn/front.svg",
  14645. extra: 4627 / 4209,
  14646. bottom: 0.047
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Micro",
  14653. height: math.unit(6, "inches")
  14654. },
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(6 + 3 / 12, "feet"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Big",
  14662. height: math.unit(104, "feet")
  14663. },
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(944, "feet")
  14667. },
  14668. {
  14669. name: "Macro+",
  14670. height: math.unit(9480, "feet")
  14671. },
  14672. {
  14673. name: "Megamacro",
  14674. height: math.unit(78752, "feet")
  14675. },
  14676. {
  14677. name: "Megamacro+",
  14678. height: math.unit(630128, "feet")
  14679. },
  14680. {
  14681. name: "Megamacro++",
  14682. height: math.unit(3150695, "feet")
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(7 + 5 / 12, "feet"),
  14691. weight: math.unit(450, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/mocha-aura/front.svg",
  14695. extra: 1907 / 1817,
  14696. bottom: 0.04
  14697. }
  14698. },
  14699. back: {
  14700. height: math.unit(7 + 5 / 12, "feet"),
  14701. weight: math.unit(450, "lb"),
  14702. name: "Back",
  14703. image: {
  14704. source: "./media/characters/mocha-aura/back.svg",
  14705. extra: 1900 / 1825,
  14706. bottom: 0.045
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Nano",
  14713. height: math.unit(1, "nm")
  14714. },
  14715. {
  14716. name: "Megamicro",
  14717. height: math.unit(1, "mm")
  14718. },
  14719. {
  14720. name: "Micro",
  14721. height: math.unit(3, "inches")
  14722. },
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(7 + 5 / 12, "feet"),
  14726. default: true
  14727. },
  14728. {
  14729. name: "Macro",
  14730. height: math.unit(30, "feet")
  14731. },
  14732. {
  14733. name: "Megamacro",
  14734. height: math.unit(3500, "feet")
  14735. },
  14736. {
  14737. name: "Teramacro",
  14738. height: math.unit(500000, "miles")
  14739. },
  14740. {
  14741. name: "Petamacro",
  14742. height: math.unit(50000000000000000, "parsecs")
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(6, "feet"),
  14751. weight: math.unit(150, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/ilisha-devya/front.svg",
  14755. extra: 1053/1049,
  14756. bottom: 270/1323
  14757. }
  14758. },
  14759. back: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Back",
  14763. image: {
  14764. source: "./media/characters/ilisha-devya/back.svg",
  14765. extra: 1131/1128,
  14766. bottom: 39/1170
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Macro",
  14773. height: math.unit(500, "feet"),
  14774. default: true
  14775. },
  14776. {
  14777. name: "Megamacro",
  14778. height: math.unit(10, "miles")
  14779. },
  14780. {
  14781. name: "Gigamacro",
  14782. height: math.unit(100000, "miles")
  14783. },
  14784. {
  14785. name: "Examacro",
  14786. height: math.unit(1e9, "lightyears")
  14787. },
  14788. {
  14789. name: "Omniversal",
  14790. height: math.unit(1e33, "lightyears")
  14791. },
  14792. {
  14793. name: "Beyond Infinite",
  14794. height: math.unit(1e100, "lightyears")
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14800. {
  14801. Side: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(150, "lb"),
  14804. name: "Side",
  14805. image: {
  14806. source: "./media/characters/mira/side.svg",
  14807. extra: 900 / 799,
  14808. bottom: 0.02
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Human Size",
  14815. height: math.unit(6, "feet")
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(100, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Megamacro",
  14824. height: math.unit(10, "miles")
  14825. },
  14826. {
  14827. name: "Gigamacro",
  14828. height: math.unit(25000, "miles")
  14829. },
  14830. {
  14831. name: "Teramacro",
  14832. height: math.unit(300, "AU")
  14833. },
  14834. {
  14835. name: "Full Size",
  14836. height: math.unit(4.5e10, "lightyears")
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/holly/front.svg",
  14849. extra: 639 / 606
  14850. }
  14851. },
  14852. back: {
  14853. height: math.unit(6, "feet"),
  14854. weight: math.unit(150, "lb"),
  14855. name: "Back",
  14856. image: {
  14857. source: "./media/characters/holly/back.svg",
  14858. extra: 623 / 598
  14859. }
  14860. },
  14861. frontWorking: {
  14862. height: math.unit(6, "feet"),
  14863. weight: math.unit(150, "lb"),
  14864. name: "Front (Working)",
  14865. image: {
  14866. source: "./media/characters/holly/front-working.svg",
  14867. extra: 607 / 577,
  14868. bottom: 0.048
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(12 + 3 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(150, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/porter/front.svg",
  14889. extra: 1,
  14890. bottom: 0.01
  14891. }
  14892. },
  14893. frontRobes: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(150, "lb"),
  14896. name: "Front (Robes)",
  14897. image: {
  14898. source: "./media/characters/porter/front-robes.svg",
  14899. extra: 1.01,
  14900. bottom: 0.01
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(11 + 9 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14914. {
  14915. legendary: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Legendary",
  14919. image: {
  14920. source: "./media/characters/lucy/legendary.svg",
  14921. extra: 1355 / 1100,
  14922. bottom: 0.045
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Legendary",
  14929. height: math.unit(86882 * 2, "miles"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(6, "feet"),
  14939. weight: math.unit(150, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/drusilla/front.svg",
  14943. extra: 678 / 635,
  14944. bottom: 0.03
  14945. }
  14946. },
  14947. back: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Back",
  14951. image: {
  14952. source: "./media/characters/drusilla/back.svg",
  14953. extra: 678 / 635,
  14954. bottom: 0.005
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Macro",
  14961. height: math.unit(100, "feet")
  14962. },
  14963. {
  14964. name: "Canon Height",
  14965. height: math.unit(2000, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(180, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/renard-thatch/front.svg",
  14979. extra: 2411 / 2275,
  14980. bottom: 0.01
  14981. }
  14982. },
  14983. frontPosing: {
  14984. height: math.unit(6, "feet"),
  14985. weight: math.unit(180, "lb"),
  14986. name: "Front (Posing)",
  14987. image: {
  14988. source: "./media/characters/renard-thatch/front-posing.svg",
  14989. extra: 2381 / 2261,
  14990. bottom: 0.01
  14991. }
  14992. },
  14993. back: {
  14994. height: math.unit(6, "feet"),
  14995. weight: math.unit(180, "lb"),
  14996. name: "Back",
  14997. image: {
  14998. source: "./media/characters/renard-thatch/back.svg",
  14999. extra: 2428 / 2288
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(3, "inches")
  15007. },
  15008. {
  15009. name: "Default",
  15010. height: math.unit(6, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(75, "feet")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(1450, "feet"),
  15024. weight: math.unit(1.21e6, "tons"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/sekvra/front.svg",
  15028. extra: 1193/1190,
  15029. bottom: 78/1271
  15030. }
  15031. },
  15032. side: {
  15033. height: math.unit(1450, "feet"),
  15034. weight: math.unit(1.21e6, "tons"),
  15035. name: "Side",
  15036. image: {
  15037. source: "./media/characters/sekvra/side.svg",
  15038. extra: 1193/1190,
  15039. bottom: 52/1245
  15040. }
  15041. },
  15042. back: {
  15043. height: math.unit(1450, "feet"),
  15044. weight: math.unit(1.21e6, "tons"),
  15045. name: "Back",
  15046. image: {
  15047. source: "./media/characters/sekvra/back.svg",
  15048. extra: 1219/1216,
  15049. bottom: 21/1240
  15050. }
  15051. },
  15052. frontClothed: {
  15053. height: math.unit(1450, "feet"),
  15054. weight: math.unit(1.21e6, "tons"),
  15055. name: "Front (Clothed)",
  15056. image: {
  15057. source: "./media/characters/sekvra/front-clothed.svg",
  15058. extra: 1192/1189,
  15059. bottom: 79/1271
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Macro",
  15066. height: math.unit(1450, "feet"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Megamacro",
  15071. height: math.unit(15000, "feet")
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/carmine/front.svg",
  15084. extra: 1557/1538,
  15085. bottom: 68/1625
  15086. }
  15087. },
  15088. frontArmor: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Front (Armor)",
  15092. image: {
  15093. source: "./media/characters/carmine/front-armor.svg",
  15094. extra: 1549/1530,
  15095. bottom: 82/1631
  15096. }
  15097. },
  15098. mouth: {
  15099. height: math.unit(0.55, "feet"),
  15100. name: "Mouth",
  15101. image: {
  15102. source: "./media/characters/carmine/mouth.svg"
  15103. }
  15104. },
  15105. hand: {
  15106. height: math.unit(1.05, "feet"),
  15107. name: "Hand",
  15108. image: {
  15109. source: "./media/characters/carmine/hand.svg"
  15110. }
  15111. },
  15112. foot: {
  15113. height: math.unit(0.6, "feet"),
  15114. name: "Foot",
  15115. image: {
  15116. source: "./media/characters/carmine/foot.svg"
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Large",
  15123. height: math.unit(1, "mile")
  15124. },
  15125. {
  15126. name: "Huge",
  15127. height: math.unit(40, "miles"),
  15128. default: true
  15129. },
  15130. {
  15131. name: "Colossal",
  15132. height: math.unit(2500, "miles")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/elyssia/front.svg",
  15145. extra: 2201 / 2035,
  15146. bottom: 0.05
  15147. }
  15148. },
  15149. frontClothed: {
  15150. height: math.unit(6, "feet"),
  15151. weight: math.unit(150, "lb"),
  15152. name: "Front (Clothed)",
  15153. image: {
  15154. source: "./media/characters/elyssia/front-clothed.svg",
  15155. extra: 2201 / 2035,
  15156. bottom: 0.05
  15157. }
  15158. },
  15159. back: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Back",
  15163. image: {
  15164. source: "./media/characters/elyssia/back.svg",
  15165. extra: 2201 / 2035,
  15166. bottom: 0.013
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Smaller",
  15173. height: math.unit(150, "feet")
  15174. },
  15175. {
  15176. name: "Standard",
  15177. height: math.unit(1400, "feet"),
  15178. default: true
  15179. },
  15180. {
  15181. name: "Distracted",
  15182. height: math.unit(15000, "feet")
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(7 + 4/12, "feet"),
  15191. weight: math.unit(690, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/geno-maxwell/front.svg",
  15195. extra: 984/856,
  15196. bottom: 87/1071
  15197. }
  15198. },
  15199. back: {
  15200. height: math.unit(7 + 4/12, "feet"),
  15201. weight: math.unit(690, "lb"),
  15202. name: "Back",
  15203. image: {
  15204. source: "./media/characters/geno-maxwell/back.svg",
  15205. extra: 981/854,
  15206. bottom: 57/1038
  15207. }
  15208. },
  15209. frontCostume: {
  15210. height: math.unit(7 + 4/12, "feet"),
  15211. weight: math.unit(690, "lb"),
  15212. name: "Front (Costume)",
  15213. image: {
  15214. source: "./media/characters/geno-maxwell/front-costume.svg",
  15215. extra: 984/856,
  15216. bottom: 87/1071
  15217. }
  15218. },
  15219. backcostume: {
  15220. height: math.unit(7 + 4/12, "feet"),
  15221. weight: math.unit(690, "lb"),
  15222. name: "Back (Costume)",
  15223. image: {
  15224. source: "./media/characters/geno-maxwell/back-costume.svg",
  15225. extra: 981/854,
  15226. bottom: 57/1038
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Micro",
  15233. height: math.unit(3, "inches")
  15234. },
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(7 + 4 / 12, "feet"),
  15238. default: true
  15239. },
  15240. {
  15241. name: "Macro",
  15242. height: math.unit(220, "feet")
  15243. },
  15244. {
  15245. name: "Megamacro",
  15246. height: math.unit(11, "miles")
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(7 + 4/12, "feet"),
  15255. weight: math.unit(750, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/regena-maxwell/front.svg",
  15259. extra: 984/856,
  15260. bottom: 87/1071
  15261. }
  15262. },
  15263. back: {
  15264. height: math.unit(7 + 4/12, "feet"),
  15265. weight: math.unit(750, "lb"),
  15266. name: "Back",
  15267. image: {
  15268. source: "./media/characters/regena-maxwell/back.svg",
  15269. extra: 981/854,
  15270. bottom: 57/1038
  15271. }
  15272. },
  15273. frontCostume: {
  15274. height: math.unit(7 + 4/12, "feet"),
  15275. weight: math.unit(750, "lb"),
  15276. name: "Front (Costume)",
  15277. image: {
  15278. source: "./media/characters/regena-maxwell/front-costume.svg",
  15279. extra: 984/856,
  15280. bottom: 87/1071
  15281. }
  15282. },
  15283. backcostume: {
  15284. height: math.unit(7 + 4/12, "feet"),
  15285. weight: math.unit(750, "lb"),
  15286. name: "Back (Costume)",
  15287. image: {
  15288. source: "./media/characters/regena-maxwell/back-costume.svg",
  15289. extra: 981/854,
  15290. bottom: 57/1038
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(7 + 4 / 12, "feet"),
  15298. default: true
  15299. },
  15300. {
  15301. name: "Macro",
  15302. height: math.unit(220, "feet")
  15303. },
  15304. {
  15305. name: "Megamacro",
  15306. height: math.unit(11, "miles")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(6, "feet"),
  15315. weight: math.unit(150, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15319. extra: 860 / 690,
  15320. bottom: 0.03
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(1.7, "meters"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/quilly/front.svg",
  15341. extra: 890 / 776
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Gigamacro",
  15348. height: math.unit(404090, "miles"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(7 + 8 / 12, "feet"),
  15358. weight: math.unit(350, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/tempest/front.svg",
  15362. extra: 1175 / 1086,
  15363. bottom: 0.02
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(7 + 8 / 12, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15377. {
  15378. side: {
  15379. height: math.unit(4 + 5 / 12, "feet"),
  15380. weight: math.unit(80, "lb"),
  15381. name: "Side",
  15382. image: {
  15383. source: "./media/characters/rodger/side.svg",
  15384. extra: 1235 / 1118
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Micro",
  15391. height: math.unit(1, "inch")
  15392. },
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(4 + 5 / 12, "feet"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Macro",
  15400. height: math.unit(120, "feet")
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/danyel/front.svg",
  15413. extra: 1185 / 1123,
  15414. bottom: 0.05
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Shrunken",
  15421. height: math.unit(0.5, "mm")
  15422. },
  15423. {
  15424. name: "Micro",
  15425. height: math.unit(1, "mm"),
  15426. default: true
  15427. },
  15428. {
  15429. name: "Upsized",
  15430. height: math.unit(5 + 5 / 12, "feet")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 6 / 12, "feet"),
  15439. weight: math.unit(200, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/vivian-bijoux/front.svg",
  15443. extra: 1217/1209,
  15444. bottom: 76/1293
  15445. }
  15446. },
  15447. back: {
  15448. height: math.unit(5 + 6 / 12, "feet"),
  15449. weight: math.unit(200, "lb"),
  15450. name: "Back",
  15451. image: {
  15452. source: "./media/characters/vivian-bijoux/back.svg",
  15453. extra: 1214/1208,
  15454. bottom: 51/1265
  15455. }
  15456. },
  15457. dressed: {
  15458. height: math.unit(5 + 6 / 12, "feet"),
  15459. weight: math.unit(200, "lb"),
  15460. name: "Dressed",
  15461. image: {
  15462. source: "./media/characters/vivian-bijoux/dressed.svg",
  15463. extra: 1217/1209,
  15464. bottom: 76/1293
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(5 + 6 / 12, "feet"),
  15472. default: true
  15473. },
  15474. {
  15475. name: "Bad Dream",
  15476. height: math.unit(500, "feet")
  15477. },
  15478. {
  15479. name: "Nightmare",
  15480. height: math.unit(500, "miles")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(6 + 1 / 12, "feet"),
  15489. weight: math.unit(260, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/zeta/front.svg",
  15493. extra: 1968 / 1889,
  15494. bottom: 0.06
  15495. }
  15496. },
  15497. back: {
  15498. height: math.unit(6 + 1 / 12, "feet"),
  15499. weight: math.unit(260, "lb"),
  15500. name: "Back",
  15501. image: {
  15502. source: "./media/characters/zeta/back.svg",
  15503. extra: 1944 / 1858,
  15504. bottom: 0.03
  15505. }
  15506. },
  15507. hand: {
  15508. height: math.unit(1.112, "feet"),
  15509. name: "Hand",
  15510. image: {
  15511. source: "./media/characters/zeta/hand.svg"
  15512. }
  15513. },
  15514. foot: {
  15515. height: math.unit(1.48, "feet"),
  15516. name: "Foot",
  15517. image: {
  15518. source: "./media/characters/zeta/foot.svg"
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(6, "inches")
  15526. },
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(6 + 1 / 12, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(20, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/jamie-larsen/front.svg",
  15547. extra: 962 / 933,
  15548. bottom: 0.02
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/jamie-larsen/back.svg",
  15557. extra: 997 / 946
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(28 + 7 / 12, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro+",
  15569. height: math.unit(180, "feet")
  15570. },
  15571. {
  15572. name: "Megamacro",
  15573. height: math.unit(10, "miles")
  15574. },
  15575. {
  15576. name: "Gigamacro",
  15577. height: math.unit(200000, "miles")
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(120, "lb"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/vance/front.svg",
  15590. extra: 1980 / 1890,
  15591. bottom: 0.09
  15592. }
  15593. },
  15594. back: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(120, "lb"),
  15597. name: "Back",
  15598. image: {
  15599. source: "./media/characters/vance/back.svg",
  15600. extra: 2081 / 1994,
  15601. bottom: 0.014
  15602. }
  15603. },
  15604. hand: {
  15605. height: math.unit(0.88, "feet"),
  15606. name: "Hand",
  15607. image: {
  15608. source: "./media/characters/vance/hand.svg"
  15609. }
  15610. },
  15611. foot: {
  15612. height: math.unit(0.64, "feet"),
  15613. name: "Foot",
  15614. image: {
  15615. source: "./media/characters/vance/foot.svg"
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Small",
  15622. height: math.unit(90, "feet"),
  15623. default: true
  15624. },
  15625. {
  15626. name: "Macro",
  15627. height: math.unit(100, "meters")
  15628. },
  15629. {
  15630. name: "Megamacro",
  15631. height: math.unit(15, "miles")
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(180, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/xochitl/front.svg",
  15644. extra: 2297 / 2261,
  15645. bottom: 0.065
  15646. }
  15647. },
  15648. back: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(180, "lb"),
  15651. name: "Back",
  15652. image: {
  15653. source: "./media/characters/xochitl/back.svg",
  15654. extra: 2386 / 2354,
  15655. bottom: 0.01
  15656. }
  15657. },
  15658. foot: {
  15659. height: math.unit(6 / 5 * 1.15, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Foot",
  15662. image: {
  15663. source: "./media/characters/xochitl/foot.svg"
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(80, "feet")
  15671. },
  15672. {
  15673. name: "Macro+",
  15674. height: math.unit(400, "feet"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "Gigamacro",
  15679. height: math.unit(80000, "miles")
  15680. },
  15681. {
  15682. name: "Gigamacro+",
  15683. height: math.unit(400000, "miles")
  15684. },
  15685. {
  15686. name: "Teramacro",
  15687. height: math.unit(300, "AU")
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/vincent/front.svg",
  15700. extra: 1130 / 1080,
  15701. bottom: 0.055
  15702. }
  15703. },
  15704. beak: {
  15705. height: math.unit(6 * 0.1, "feet"),
  15706. name: "Beak",
  15707. image: {
  15708. source: "./media/characters/vincent/beak.svg"
  15709. }
  15710. },
  15711. hand: {
  15712. height: math.unit(6 * 0.85, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Hand",
  15715. image: {
  15716. source: "./media/characters/vincent/hand.svg"
  15717. }
  15718. },
  15719. foot: {
  15720. height: math.unit(6 * 0.19, "feet"),
  15721. weight: math.unit(150, "lb"),
  15722. name: "Foot",
  15723. image: {
  15724. source: "./media/characters/vincent/foot.svg"
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Base",
  15731. height: math.unit(6 + 5 / 12, "feet"),
  15732. default: true
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(300, "feet")
  15737. },
  15738. {
  15739. name: "Megamacro",
  15740. height: math.unit(2, "miles")
  15741. },
  15742. {
  15743. name: "Gigamacro",
  15744. height: math.unit(1000, "miles")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(2, "meters"),
  15753. weight: math.unit(500, "kg"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/coatl/front.svg",
  15757. extra: 3948 / 3500,
  15758. bottom: 0.082
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(4, "meters")
  15766. },
  15767. {
  15768. name: "Macro",
  15769. height: math.unit(100, "meters"),
  15770. default: true
  15771. },
  15772. {
  15773. name: "Macro+",
  15774. height: math.unit(300, "meters")
  15775. },
  15776. {
  15777. name: "Megamacro",
  15778. height: math.unit(3, "gigameters")
  15779. },
  15780. {
  15781. name: "Megamacro+",
  15782. height: math.unit(300, "terameters")
  15783. },
  15784. {
  15785. name: "Megamacro++",
  15786. height: math.unit(3, "lightyears")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(50, "kg"),
  15796. name: "front",
  15797. image: {
  15798. source: "./media/characters/shiroryu/front.svg",
  15799. extra: 1990 / 1935
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Mortal Mingling",
  15806. height: math.unit(3, "meters")
  15807. },
  15808. {
  15809. name: "Kaiju-ish",
  15810. height: math.unit(250, "meters")
  15811. },
  15812. {
  15813. name: "Somewhat Godly",
  15814. height: math.unit(400, "km"),
  15815. default: true
  15816. },
  15817. {
  15818. name: "Planetary",
  15819. height: math.unit(300, "megameters")
  15820. },
  15821. {
  15822. name: "Galaxy-dwarfing",
  15823. height: math.unit(450, "kiloparsecs")
  15824. },
  15825. {
  15826. name: "Universe Eater",
  15827. height: math.unit(150, "gigaparsecs")
  15828. },
  15829. {
  15830. name: "Almost Immeasurable",
  15831. height: math.unit(1.3e266, "yottaparsecs")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/umeko/front.svg",
  15844. extra: 1,
  15845. bottom: 0.019
  15846. }
  15847. },
  15848. frontArmored: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Front (Armored)",
  15852. image: {
  15853. source: "./media/characters/umeko/front-armored.svg",
  15854. extra: 1,
  15855. bottom: 0.021
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(220, "feet"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Guardian Dragon",
  15867. height: math.unit(50, "miles")
  15868. },
  15869. {
  15870. name: "Cosmic",
  15871. height: math.unit(800000, "miles")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/cassidy/front.svg",
  15884. extra: 810/808,
  15885. bottom: 41/851
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Canon Height",
  15892. height: math.unit(120, "feet"),
  15893. default: true
  15894. },
  15895. {
  15896. name: "Macro+",
  15897. height: math.unit(400, "feet")
  15898. },
  15899. {
  15900. name: "Macro++",
  15901. height: math.unit(4000, "feet")
  15902. },
  15903. {
  15904. name: "Megamacro",
  15905. height: math.unit(3, "miles")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(6, "feet"),
  15914. weight: math.unit(150, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/isaac/front.svg",
  15918. extra: 896 / 815,
  15919. bottom: 0.11
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Human Size",
  15926. height: math.unit(8, "feet"),
  15927. default: true
  15928. },
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(400, "feet")
  15932. },
  15933. {
  15934. name: "Megamacro",
  15935. height: math.unit(50, "miles")
  15936. },
  15937. {
  15938. name: "Canon Height",
  15939. height: math.unit(200, "AU")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(6, "feet"),
  15948. weight: math.unit(72, "kg"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/sleekit/front.svg",
  15952. extra: 4693 / 4487,
  15953. bottom: 0.012
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Minimum Height",
  15960. height: math.unit(10, "meters")
  15961. },
  15962. {
  15963. name: "Smaller",
  15964. height: math.unit(25, "meters")
  15965. },
  15966. {
  15967. name: "Larger",
  15968. height: math.unit(38, "meters"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Maximum height",
  15973. height: math.unit(100, "meters")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(6, "feet"),
  15982. weight: math.unit(150, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/nillia/front.svg",
  15986. extra: 719/665,
  15987. bottom: 6/725
  15988. }
  15989. },
  15990. back: {
  15991. height: math.unit(6, "feet"),
  15992. weight: math.unit(150, "lb"),
  15993. name: "Back",
  15994. image: {
  15995. source: "./media/characters/nillia/back.svg",
  15996. extra: 705/651,
  15997. bottom: 5/710
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Canon Height",
  16004. height: math.unit(489, "feet"),
  16005. default: true
  16006. }
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(6, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/mesmyriza/front.svg",
  16018. extra: 1541/1291,
  16019. bottom: 87/1628
  16020. }
  16021. },
  16022. foot: {
  16023. height: math.unit(6 / (250 / 35), "feet"),
  16024. name: "Foot",
  16025. image: {
  16026. source: "./media/characters/mesmyriza/foot.svg"
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Macro",
  16033. height: math.unit(457, "meters"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Megamacro",
  16038. height: math.unit(8, "megameters")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(250, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/saudade/front.svg",
  16051. extra: 1172 / 1139,
  16052. bottom: 0.035
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Micro",
  16059. height: math.unit(3, "inches")
  16060. },
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(6, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(50, "feet")
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(2800, "feet")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(5 + 4 / 12, "feet"),
  16081. weight: math.unit(100, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/keireer/front.svg",
  16085. extra: 716 / 666,
  16086. bottom: 0.05
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(5 + 4 / 12, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(5.5, "feet"),
  16103. weight: math.unit(90, "kg"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/mirja/front.svg",
  16107. extra: 1452/1262,
  16108. bottom: 67/1519
  16109. }
  16110. },
  16111. frontDressed: {
  16112. height: math.unit(5.5, "feet"),
  16113. weight: math.unit(90, "lb"),
  16114. name: "Front (Dressed)",
  16115. image: {
  16116. source: "./media/characters/mirja/dressed.svg",
  16117. extra: 1452/1262,
  16118. bottom: 67/1519
  16119. }
  16120. },
  16121. back: {
  16122. height: math.unit(6, "feet"),
  16123. weight: math.unit(90, "lb"),
  16124. name: "Back",
  16125. image: {
  16126. source: "./media/characters/mirja/back.svg",
  16127. extra: 1892/1795,
  16128. bottom: 48/1940
  16129. }
  16130. },
  16131. maw: {
  16132. height: math.unit(1.312, "feet"),
  16133. name: "Maw",
  16134. image: {
  16135. source: "./media/characters/mirja/maw.svg"
  16136. }
  16137. },
  16138. paw: {
  16139. height: math.unit(1.15, "feet"),
  16140. name: "Paw",
  16141. image: {
  16142. source: "./media/characters/mirja/paw.svg"
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "\"Incognito\"",
  16149. height: math.unit(3, "meters")
  16150. },
  16151. {
  16152. name: "Strolling Size",
  16153. height: math.unit(15, "km")
  16154. },
  16155. {
  16156. name: "Larger Strolling Size",
  16157. height: math.unit(400, "km")
  16158. },
  16159. {
  16160. name: "Preferred Size",
  16161. height: math.unit(5000, "km"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "True Size",
  16166. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(15, "feet"),
  16175. weight: math.unit(880, "kg"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/nightraver/front.svg",
  16179. extra: 2444 / 2160,
  16180. bottom: 0.027
  16181. }
  16182. },
  16183. back: {
  16184. height: math.unit(15, "feet"),
  16185. weight: math.unit(880, "kg"),
  16186. name: "Back",
  16187. image: {
  16188. source: "./media/characters/nightraver/back.svg",
  16189. extra: 2309 / 2180,
  16190. bottom: 0.005
  16191. }
  16192. },
  16193. sole: {
  16194. height: math.unit(2.878, "feet"),
  16195. name: "Sole",
  16196. image: {
  16197. source: "./media/characters/nightraver/sole.svg"
  16198. }
  16199. },
  16200. foot: {
  16201. height: math.unit(2.285, "feet"),
  16202. name: "Foot",
  16203. image: {
  16204. source: "./media/characters/nightraver/foot.svg"
  16205. }
  16206. },
  16207. maw: {
  16208. height: math.unit(2.67, "feet"),
  16209. name: "Maw",
  16210. image: {
  16211. source: "./media/characters/nightraver/maw.svg"
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Micro",
  16218. height: math.unit(1, "cm")
  16219. },
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(15, "feet"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(300, "feet")
  16228. },
  16229. {
  16230. name: "Megamacro",
  16231. height: math.unit(300, "miles")
  16232. },
  16233. {
  16234. name: "Gigamacro",
  16235. height: math.unit(10000, "miles")
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16241. {
  16242. side: {
  16243. height: math.unit(2, "inches"),
  16244. weight: math.unit(5, "grams"),
  16245. name: "Side",
  16246. image: {
  16247. source: "./media/characters/arc/side.svg"
  16248. }
  16249. },
  16250. },
  16251. [
  16252. {
  16253. name: "Micro",
  16254. height: math.unit(2, "inches"),
  16255. default: true
  16256. },
  16257. ]
  16258. ))
  16259. characterMakers.push(() => makeCharacter(
  16260. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16261. {
  16262. front: {
  16263. height: math.unit(1.1938, "meters"),
  16264. weight: math.unit(54, "kg"),
  16265. name: "Front",
  16266. image: {
  16267. source: "./media/characters/nebula-shahar/front.svg",
  16268. extra: 1642 / 1436,
  16269. bottom: 0.06
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Megamicro",
  16276. height: math.unit(0.3, "mm")
  16277. },
  16278. {
  16279. name: "Micro",
  16280. height: math.unit(3, "cm")
  16281. },
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(138, "cm"),
  16285. default: true
  16286. },
  16287. {
  16288. name: "Macro",
  16289. height: math.unit(30, "m")
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(5.24, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/shayla/front.svg",
  16302. extra: 1512 / 1414,
  16303. bottom: 0.01
  16304. }
  16305. },
  16306. back: {
  16307. height: math.unit(5.24, "feet"),
  16308. weight: math.unit(150, "lb"),
  16309. name: "Back",
  16310. image: {
  16311. source: "./media/characters/shayla/back.svg",
  16312. extra: 1512 / 1414
  16313. }
  16314. },
  16315. hand: {
  16316. height: math.unit(0.7781496062992126, "feet"),
  16317. name: "Hand",
  16318. image: {
  16319. source: "./media/characters/shayla/hand.svg"
  16320. }
  16321. },
  16322. foot: {
  16323. height: math.unit(1.4206036745406823, "feet"),
  16324. name: "Foot",
  16325. image: {
  16326. source: "./media/characters/shayla/foot.svg"
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Micro",
  16333. height: math.unit(0.32, "feet")
  16334. },
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(5.24, "feet"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(492.12, "feet")
  16343. },
  16344. {
  16345. name: "Megamacro",
  16346. height: math.unit(186.41, "miles")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(2.2, "m"),
  16355. weight: math.unit(120, "kg"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/pia-jr/front.svg",
  16359. extra: 1000 / 970,
  16360. bottom: 0.035
  16361. }
  16362. },
  16363. hand: {
  16364. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16365. name: "Hand",
  16366. image: {
  16367. source: "./media/characters/pia-jr/hand.svg"
  16368. }
  16369. },
  16370. paw: {
  16371. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16372. name: "Paw",
  16373. image: {
  16374. source: "./media/characters/pia-jr/paw.svg"
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Micro",
  16381. height: math.unit(1.2, "cm")
  16382. },
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(2.2, "m"),
  16386. default: true
  16387. },
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(180, "m")
  16391. },
  16392. {
  16393. name: "Megamacro",
  16394. height: math.unit(420, "km")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(2, "m"),
  16403. weight: math.unit(115, "kg"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/pia-sr/front.svg",
  16407. extra: 760 / 730,
  16408. bottom: 0.015
  16409. }
  16410. },
  16411. back: {
  16412. height: math.unit(2, "m"),
  16413. weight: math.unit(115, "kg"),
  16414. name: "Back",
  16415. image: {
  16416. source: "./media/characters/pia-sr/back.svg",
  16417. extra: 760 / 730,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. hand: {
  16422. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16423. name: "Hand",
  16424. image: {
  16425. source: "./media/characters/pia-sr/hand.svg"
  16426. }
  16427. },
  16428. foot: {
  16429. height: math.unit(1.83, "feet"),
  16430. name: "Foot",
  16431. image: {
  16432. source: "./media/characters/pia-sr/foot.svg"
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Micro",
  16439. height: math.unit(88, "mm")
  16440. },
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(2, "m"),
  16444. default: true
  16445. },
  16446. {
  16447. name: "Macro",
  16448. height: math.unit(200, "m")
  16449. },
  16450. {
  16451. name: "Megamacro",
  16452. height: math.unit(420, "km")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(8 + 2 / 12, "feet"),
  16461. weight: math.unit(300, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/kibibyte/front.svg",
  16465. extra: 2221 / 2098,
  16466. bottom: 0.04
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(8 + 2 / 12, "feet"),
  16474. default: true
  16475. },
  16476. {
  16477. name: "Socialable Macro",
  16478. height: math.unit(50, "feet")
  16479. },
  16480. {
  16481. name: "Macro",
  16482. height: math.unit(300, "feet")
  16483. },
  16484. {
  16485. name: "Megamacro",
  16486. height: math.unit(500, "miles")
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16492. {
  16493. front: {
  16494. height: math.unit(6, "feet"),
  16495. weight: math.unit(150, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/felix/front.svg",
  16499. extra: 762 / 722,
  16500. bottom: 0.02
  16501. }
  16502. },
  16503. frontClothed: {
  16504. height: math.unit(6, "feet"),
  16505. weight: math.unit(150, "lb"),
  16506. name: "Front (Clothed)",
  16507. image: {
  16508. source: "./media/characters/felix/front-clothed.svg",
  16509. extra: 762 / 722,
  16510. bottom: 0.02
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(6 + 8 / 12, "feet"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Macro",
  16522. height: math.unit(2600, "feet")
  16523. },
  16524. {
  16525. name: "Megamacro",
  16526. height: math.unit(450, "miles")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6 + 1 / 12, "feet"),
  16535. weight: math.unit(250, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/tobo/front.svg",
  16539. extra: 608 / 586,
  16540. bottom: 0.023
  16541. }
  16542. },
  16543. back: {
  16544. height: math.unit(6 + 1 / 12, "feet"),
  16545. weight: math.unit(250, "lb"),
  16546. name: "Back",
  16547. image: {
  16548. source: "./media/characters/tobo/back.svg",
  16549. extra: 608 / 586
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Nano",
  16556. height: math.unit(2, "nm")
  16557. },
  16558. {
  16559. name: "Megamicro",
  16560. height: math.unit(0.1, "mm")
  16561. },
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "inch"),
  16565. default: true
  16566. },
  16567. {
  16568. name: "Human-sized",
  16569. height: math.unit(6 + 1 / 12, "feet")
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(250, "feet")
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(75, "miles")
  16578. },
  16579. {
  16580. name: "Texas-sized",
  16581. height: math.unit(750, "miles")
  16582. },
  16583. {
  16584. name: "Teramacro",
  16585. height: math.unit(50000, "miles")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(269, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/danny-kapowsky/front.svg",
  16598. extra: 766 / 736,
  16599. bottom: 0.044
  16600. }
  16601. },
  16602. back: {
  16603. height: math.unit(6, "feet"),
  16604. weight: math.unit(269, "lb"),
  16605. name: "Back",
  16606. image: {
  16607. source: "./media/characters/danny-kapowsky/back.svg",
  16608. extra: 797 / 760,
  16609. bottom: 0.025
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Macro",
  16616. height: math.unit(150, "feet"),
  16617. default: true
  16618. },
  16619. {
  16620. name: "Macro+",
  16621. height: math.unit(200, "feet")
  16622. },
  16623. {
  16624. name: "Macro++",
  16625. height: math.unit(300, "feet")
  16626. },
  16627. {
  16628. name: "Macro+++",
  16629. height: math.unit(400, "feet")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16635. {
  16636. side: {
  16637. height: math.unit(6, "feet"),
  16638. weight: math.unit(170, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/finn/side.svg",
  16642. extra: 1953 / 1807,
  16643. bottom: 0.057
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Megamacro",
  16650. height: math.unit(14445, "feet"),
  16651. default: true
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(5 + 6 / 12, "feet"),
  16660. weight: math.unit(125, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/roy/front.svg",
  16664. extra: 1,
  16665. bottom: 0.11
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Micro",
  16672. height: math.unit(3, "inches"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(5 + 6 / 12, "feet")
  16678. },
  16679. {
  16680. name: "Lesser Macro",
  16681. height: math.unit(60, "feet")
  16682. },
  16683. {
  16684. name: "Greater Macro",
  16685. height: math.unit(120, "feet")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(100, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/aevsivs/front.svg",
  16698. extra: 1,
  16699. bottom: 0.03
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(6, "feet"),
  16704. weight: math.unit(100, "lb"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/aevsivs/back.svg"
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Micro",
  16714. height: math.unit(2, "inches"),
  16715. default: true
  16716. },
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(5, "feet")
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(5 + 7 / 12, "feet"),
  16728. weight: math.unit(159, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/hildegard/front.svg",
  16732. extra: 289 / 269,
  16733. bottom: 7.63 / 297.8
  16734. }
  16735. },
  16736. back: {
  16737. height: math.unit(5 + 7 / 12, "feet"),
  16738. weight: math.unit(159, "lb"),
  16739. name: "Back",
  16740. image: {
  16741. source: "./media/characters/hildegard/back.svg",
  16742. extra: 280 / 260,
  16743. bottom: 2.3 / 282
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(5 + 7 / 12, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16757. {
  16758. bernard: {
  16759. height: math.unit(2 + 7 / 12, "feet"),
  16760. weight: math.unit(66, "lb"),
  16761. name: "Bernard",
  16762. rename: true,
  16763. image: {
  16764. source: "./media/characters/bernard-wilder/bernard.svg",
  16765. extra: 192 / 128,
  16766. bottom: 0.05
  16767. }
  16768. },
  16769. wilder: {
  16770. height: math.unit(5 + 8 / 12, "feet"),
  16771. weight: math.unit(143, "lb"),
  16772. name: "Wilder",
  16773. rename: true,
  16774. image: {
  16775. source: "./media/characters/bernard-wilder/wilder.svg",
  16776. extra: 361 / 312,
  16777. bottom: 0.02
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(2 + 7 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16791. {
  16792. anthro: {
  16793. height: math.unit(6 + 1 / 12, "feet"),
  16794. weight: math.unit(155, "lb"),
  16795. name: "Anthro",
  16796. image: {
  16797. source: "./media/characters/hearth/anthro.svg",
  16798. extra: 1178/1136,
  16799. bottom: 28/1206
  16800. }
  16801. },
  16802. feral: {
  16803. height: math.unit(3.78, "feet"),
  16804. weight: math.unit(35, "kg"),
  16805. name: "Feral",
  16806. image: {
  16807. source: "./media/characters/hearth/feral.svg",
  16808. extra: 153 / 135,
  16809. bottom: 0.03
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(6 + 1 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(6, "feet"),
  16826. weight: math.unit(182, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/ingrid/front.svg",
  16830. extra: 294 / 268,
  16831. bottom: 0.027
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(6, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16845. {
  16846. eevee: {
  16847. height: math.unit(2 + 10 / 12, "feet"),
  16848. weight: math.unit(86, "lb"),
  16849. name: "Malgam",
  16850. image: {
  16851. source: "./media/characters/malgam/eevee.svg",
  16852. extra: 952/784,
  16853. bottom: 38/990
  16854. }
  16855. },
  16856. sylveon: {
  16857. height: math.unit(4, "feet"),
  16858. weight: math.unit(101, "lb"),
  16859. name: "Future Malgam",
  16860. rename: true,
  16861. image: {
  16862. source: "./media/characters/malgam/sylveon.svg",
  16863. extra: 371 / 325,
  16864. bottom: 0.015
  16865. }
  16866. },
  16867. gigantamax: {
  16868. height: math.unit(50, "feet"),
  16869. name: "Gigantamax Malgam",
  16870. rename: true,
  16871. image: {
  16872. source: "./media/characters/malgam/gigantamax.svg"
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(2 + 10 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(5 + 11 / 12, "feet"),
  16889. weight: math.unit(188, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/fleur/front.svg",
  16893. extra: 309 / 283,
  16894. bottom: 0.007
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(5 + 11 / 12, "feet"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 4 / 12, "feet"),
  16911. weight: math.unit(122, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/jude/front.svg",
  16915. extra: 288 / 273,
  16916. bottom: 0.03
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(5 + 4 / 12, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(5 + 11 / 12, "feet"),
  16933. weight: math.unit(190, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/seara/front.svg",
  16937. extra: 1,
  16938. bottom: 0.05
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(5 + 11 / 12, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(16 + 5 / 12, "feet"),
  16955. weight: math.unit(524, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/caspian-lugia/front.svg",
  16959. extra: 1,
  16960. bottom: 0.04
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(16 + 5 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(5 + 7 / 12, "feet"),
  16977. weight: math.unit(170, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/mika/front.svg",
  16981. extra: 1,
  16982. bottom: 0.016
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(5 + 7 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(6 + 2 / 12, "feet"),
  16999. weight: math.unit(268, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/sol/front.svg",
  17003. extra: 247 / 231,
  17004. bottom: 0.05
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(6 + 2 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17018. {
  17019. buizel: {
  17020. height: math.unit(2 + 5 / 12, "feet"),
  17021. weight: math.unit(87, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/umiko/buizel.svg",
  17025. extra: 172 / 157,
  17026. bottom: 0.01
  17027. },
  17028. form: "buizel",
  17029. default: true
  17030. },
  17031. floatzel: {
  17032. height: math.unit(5 + 9 / 12, "feet"),
  17033. weight: math.unit(250, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/umiko/floatzel.svg",
  17037. extra: 1076/1006,
  17038. bottom: 15/1091
  17039. },
  17040. form: "floatzel",
  17041. default: true
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(2 + 5 / 12, "feet"),
  17048. form: "buizel",
  17049. default: true
  17050. },
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(5 + 9 / 12, "feet"),
  17054. form: "floatzel",
  17055. default: true
  17056. },
  17057. ],
  17058. {
  17059. "buizel": {
  17060. name: "Buizel"
  17061. },
  17062. "floatzel": {
  17063. name: "Floatzel",
  17064. default: true
  17065. }
  17066. }
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6 + 2 / 12, "feet"),
  17073. weight: math.unit(146, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/iliac/front.svg",
  17077. extra: 389 / 365,
  17078. bottom: 0.035
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(6 + 2 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(170, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/topaz/front.svg",
  17099. extra: 317 / 303,
  17100. bottom: 0.055
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(5 + 11 / 12, "feet"),
  17117. weight: math.unit(144, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/gabriel/front.svg",
  17121. extra: 285 / 262,
  17122. bottom: 0.004
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(5 + 11 / 12, "feet"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17136. {
  17137. side: {
  17138. height: math.unit(6 + 5 / 12, "feet"),
  17139. weight: math.unit(300, "lb"),
  17140. name: "Side",
  17141. image: {
  17142. source: "./media/characters/tempest-suicune/side.svg",
  17143. extra: 195 / 154,
  17144. bottom: 0.04
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(6 + 5 / 12, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(7 + 2 / 12, "feet"),
  17161. weight: math.unit(322, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/vulcan/front.svg",
  17165. extra: 154 / 147,
  17166. bottom: 0.04
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(7 + 2 / 12, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(5 + 10 / 12, "feet"),
  17183. weight: math.unit(264, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/gault/front.svg",
  17187. extra: 161 / 140,
  17188. bottom: 0.028
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(5 + 10 / 12, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(6, "feet"),
  17205. weight: math.unit(150, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/shard/front.svg",
  17209. extra: 273 / 238,
  17210. bottom: 0.02
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(3 + 6 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(5 + 11 / 12, "feet"),
  17227. weight: math.unit(146, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/ashe/front.svg",
  17231. extra: 400 / 373,
  17232. bottom: 0.01
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(5 + 11 / 12, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(5 + 5 / 12, "feet"),
  17249. weight: math.unit(135, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/beatrix/front.svg",
  17253. extra: 392 / 379,
  17254. bottom: 0.01
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(6, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(6 + 2/12, "feet"),
  17271. weight: math.unit(135, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/ignatius/front.svg",
  17275. extra: 1380/1259,
  17276. bottom: 27/1407
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(6 + 2/12, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(6 + 2 / 12, "feet"),
  17293. weight: math.unit(138, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/mei-li/front.svg",
  17297. extra: 237 / 229,
  17298. bottom: 0.03
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(6 + 2 / 12, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(2 + 4 / 12, "feet"),
  17315. weight: math.unit(62, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/puru/front.svg",
  17319. extra: 206 / 149,
  17320. bottom: 0.06
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(2 + 4 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17334. {
  17335. anthro: {
  17336. height: math.unit(5 + 8/12, "feet"),
  17337. weight: math.unit(200, "lb"),
  17338. energyNeed: math.unit(2000, "kcal"),
  17339. name: "Anthro",
  17340. image: {
  17341. source: "./media/characters/kee/anthro.svg",
  17342. extra: 3251/3184,
  17343. bottom: 250/3501
  17344. }
  17345. },
  17346. taur: {
  17347. height: math.unit(11, "feet"),
  17348. weight: math.unit(500, "lb"),
  17349. energyNeed: math.unit(5000, "kcal"),
  17350. name: "Taur",
  17351. image: {
  17352. source: "./media/characters/kee/taur.svg",
  17353. extra: 1362/1320,
  17354. bottom: 83/1445
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(5 + 8/12, "feet"),
  17362. default: true
  17363. },
  17364. {
  17365. name: "Macro",
  17366. height: math.unit(35, "feet")
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17372. {
  17373. anthro: {
  17374. height: math.unit(7, "feet"),
  17375. weight: math.unit(190, "lb"),
  17376. name: "Anthro",
  17377. image: {
  17378. source: "./media/characters/cobalt-dracha/anthro.svg",
  17379. extra: 231 / 225,
  17380. bottom: 0.04
  17381. }
  17382. },
  17383. feral: {
  17384. height: math.unit(9 + 7 / 12, "feet"),
  17385. weight: math.unit(294, "lb"),
  17386. name: "Feral",
  17387. image: {
  17388. source: "./media/characters/cobalt-dracha/feral.svg",
  17389. extra: 692 / 633,
  17390. bottom: 0.05
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(7, "feet"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17404. {
  17405. fallen: {
  17406. height: math.unit(11 + 8 / 12, "feet"),
  17407. weight: math.unit(485, "lb"),
  17408. name: "Java (Fallen)",
  17409. rename: true,
  17410. image: {
  17411. source: "./media/characters/java/fallen.svg",
  17412. extra: 226 / 208,
  17413. bottom: 0.005
  17414. }
  17415. },
  17416. godkin: {
  17417. height: math.unit(10 + 6 / 12, "feet"),
  17418. weight: math.unit(328, "lb"),
  17419. name: "Java (Godkin)",
  17420. rename: true,
  17421. image: {
  17422. source: "./media/characters/java/godkin.svg",
  17423. extra: 1104/1068,
  17424. bottom: 36/1140
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(11 + 8 / 12, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(5 + 9 / 12, "feet"),
  17441. weight: math.unit(170, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/purna/front.svg",
  17445. extra: 239 / 229,
  17446. bottom: 0.01
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(5 + 9 / 12, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(5 + 9 / 12, "feet"),
  17463. weight: math.unit(142, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/kuva/front.svg",
  17467. extra: 281 / 271,
  17468. bottom: 0.006
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(5 + 9 / 12, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17482. {
  17483. anthro: {
  17484. height: math.unit(9 + 2 / 12, "feet"),
  17485. weight: math.unit(270, "lb"),
  17486. name: "Anthro",
  17487. image: {
  17488. source: "./media/characters/embra/anthro.svg",
  17489. extra: 200 / 187,
  17490. bottom: 0.02
  17491. }
  17492. },
  17493. feral: {
  17494. height: math.unit(18 + 8 / 12, "feet"),
  17495. weight: math.unit(576, "lb"),
  17496. name: "Feral",
  17497. image: {
  17498. source: "./media/characters/embra/feral.svg",
  17499. extra: 152 / 137,
  17500. bottom: 0.037
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(9 + 2 / 12, "feet"),
  17508. default: true
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17514. {
  17515. anthro: {
  17516. height: math.unit(10 + 9 / 12, "feet"),
  17517. weight: math.unit(224, "lb"),
  17518. name: "Anthro",
  17519. image: {
  17520. source: "./media/characters/grottos/anthro.svg",
  17521. extra: 350 / 332,
  17522. bottom: 0.045
  17523. }
  17524. },
  17525. feral: {
  17526. height: math.unit(20 + 7 / 12, "feet"),
  17527. weight: math.unit(629, "lb"),
  17528. name: "Feral",
  17529. image: {
  17530. source: "./media/characters/grottos/feral.svg",
  17531. extra: 207 / 190,
  17532. bottom: 0.05
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(10 + 9 / 12, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17546. {
  17547. anthro: {
  17548. height: math.unit(9 + 6 / 12, "feet"),
  17549. weight: math.unit(298, "lb"),
  17550. name: "Anthro",
  17551. image: {
  17552. source: "./media/characters/frifna/anthro.svg",
  17553. extra: 282 / 269,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. feral: {
  17558. height: math.unit(16 + 2 / 12, "feet"),
  17559. weight: math.unit(624, "lb"),
  17560. name: "Feral",
  17561. image: {
  17562. source: "./media/characters/frifna/feral.svg"
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(9 + 6 / 12, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6 + 2 / 12, "feet"),
  17579. weight: math.unit(168, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/elise/front.svg",
  17583. extra: 276 / 271
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(6 + 2 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(5 + 10 / 12, "feet"),
  17600. weight: math.unit(210, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/glade/front.svg",
  17604. extra: 258 / 247,
  17605. bottom: 0.008
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(5 + 10 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(5 + 10 / 12, "feet"),
  17622. weight: math.unit(129, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/rina/front.svg",
  17626. extra: 266 / 255,
  17627. bottom: 0.005
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(5 + 10 / 12, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(6 + 1 / 12, "feet"),
  17644. weight: math.unit(192, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/veronica/front.svg",
  17648. extra: 319 / 309,
  17649. bottom: 0.005
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(6 + 1 / 12, "feet"),
  17657. default: true
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17663. {
  17664. front: {
  17665. height: math.unit(9 + 3 / 12, "feet"),
  17666. weight: math.unit(1100, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/braxton/front.svg",
  17670. extra: 1057 / 984,
  17671. bottom: 0.05
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(9 + 3 / 12, "feet")
  17679. },
  17680. {
  17681. name: "Giant",
  17682. height: math.unit(300, "feet"),
  17683. default: true
  17684. },
  17685. {
  17686. name: "Macro",
  17687. height: math.unit(700, "feet")
  17688. },
  17689. {
  17690. name: "Megamacro",
  17691. height: math.unit(6000, "feet")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6 + 7 / 12, "feet"),
  17700. weight: math.unit(150, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/blue-feyonics/front.svg",
  17704. extra: 1403 / 1306,
  17705. bottom: 0.047
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(6 + 7 / 12, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(1.8, "meters"),
  17722. weight: math.unit(60, "kg"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/maxwell/front.svg",
  17726. extra: 2060 / 1873
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Micro",
  17733. height: math.unit(1, "mm")
  17734. },
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(1.8, "meter"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Macro",
  17742. height: math.unit(30, "meters")
  17743. },
  17744. {
  17745. name: "Megamacro",
  17746. height: math.unit(10, "km")
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(6, "feet"),
  17755. weight: math.unit(150, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/jack/front.svg",
  17759. extra: 1754 / 1640,
  17760. bottom: 0.01
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(80000, "feet"),
  17768. default: true
  17769. },
  17770. {
  17771. name: "Max size",
  17772. height: math.unit(10, "lightyears")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17778. {
  17779. urban: {
  17780. height: math.unit(5, "feet"),
  17781. weight: math.unit(240, "lb"),
  17782. name: "Urban",
  17783. image: {
  17784. source: "./media/characters/cafat/urban.svg",
  17785. extra: 1223/1126,
  17786. bottom: 205/1428
  17787. }
  17788. },
  17789. summer: {
  17790. height: math.unit(5, "feet"),
  17791. weight: math.unit(240, "lb"),
  17792. name: "Summer",
  17793. image: {
  17794. source: "./media/characters/cafat/summer.svg",
  17795. extra: 1223/1126,
  17796. bottom: 205/1428
  17797. }
  17798. },
  17799. winter: {
  17800. height: math.unit(5, "feet"),
  17801. weight: math.unit(240, "lb"),
  17802. name: "Winter",
  17803. image: {
  17804. source: "./media/characters/cafat/winter.svg",
  17805. extra: 1223/1126,
  17806. bottom: 205/1428
  17807. }
  17808. },
  17809. lingerie: {
  17810. height: math.unit(5, "feet"),
  17811. weight: math.unit(240, "lb"),
  17812. name: "Lingerie",
  17813. image: {
  17814. source: "./media/characters/cafat/lingerie.svg",
  17815. extra: 1223/1126,
  17816. bottom: 205/1428
  17817. }
  17818. },
  17819. upright: {
  17820. height: math.unit(6.3, "feet"),
  17821. weight: math.unit(240, "lb"),
  17822. name: "Upright",
  17823. image: {
  17824. source: "./media/characters/cafat/upright.svg",
  17825. bottom: 0.01
  17826. }
  17827. },
  17828. uprightFull: {
  17829. height: math.unit(6.3, "feet"),
  17830. weight: math.unit(240, "lb"),
  17831. name: "Upright (Full)",
  17832. image: {
  17833. source: "./media/characters/cafat/upright-full.svg",
  17834. bottom: 0.01
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Small",
  17841. height: math.unit(5, "feet"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Large",
  17846. height: math.unit(13, "feet")
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(6, "feet"),
  17855. weight: math.unit(150, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/verin-raharra/front.svg",
  17859. extra: 5019 / 4835,
  17860. bottom: 0.023
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(7 + 5 / 12, "feet"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Upsized",
  17872. height: math.unit(20, "feet")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(7, "feet"),
  17881. weight: math.unit(230, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/nakata/front.svg",
  17885. extra: 1.005,
  17886. bottom: 0.01
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(7, "feet"),
  17894. default: true
  17895. },
  17896. {
  17897. name: "Big",
  17898. height: math.unit(14, "feet")
  17899. },
  17900. {
  17901. name: "Macro",
  17902. height: math.unit(400, "feet")
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(4.91, "feet"),
  17911. weight: math.unit(100, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/lily/front.svg",
  17915. extra: 1585 / 1415,
  17916. bottom: 0.02
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(4.91, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17930. {
  17931. laying: {
  17932. height: math.unit(4 + 4 / 12, "feet"),
  17933. weight: math.unit(600, "lb"),
  17934. name: "Laying",
  17935. image: {
  17936. source: "./media/characters/sheila/laying.svg",
  17937. extra: 1333 / 1265,
  17938. bottom: 0.16
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(4 + 4 / 12, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(6, "feet"),
  17955. weight: math.unit(190, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/sax/front.svg",
  17959. extra: 1187 / 973,
  17960. bottom: 0.042
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(4, "inches"),
  17968. default: true
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(6, "feet"),
  17977. weight: math.unit(150, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/pandora/front.svg",
  17981. extra: 2720 / 2556,
  17982. bottom: 0.015
  17983. }
  17984. },
  17985. back: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(150, "lb"),
  17988. name: "Back",
  17989. image: {
  17990. source: "./media/characters/pandora/back.svg",
  17991. extra: 2720 / 2556,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. beans: {
  17996. height: math.unit(6 / 8, "feet"),
  17997. name: "Beans",
  17998. image: {
  17999. source: "./media/characters/pandora/beans.svg"
  18000. }
  18001. },
  18002. collar: {
  18003. height: math.unit(0.31, "feet"),
  18004. name: "Collar",
  18005. image: {
  18006. source: "./media/characters/pandora/collar.svg"
  18007. }
  18008. },
  18009. skirt: {
  18010. height: math.unit(6, "feet"),
  18011. weight: math.unit(150, "lb"),
  18012. name: "Skirt",
  18013. image: {
  18014. source: "./media/characters/pandora/skirt.svg",
  18015. extra: 1622 / 1525,
  18016. bottom: 0.015
  18017. }
  18018. },
  18019. hoodie: {
  18020. height: math.unit(6, "feet"),
  18021. weight: math.unit(150, "lb"),
  18022. name: "Hoodie",
  18023. image: {
  18024. source: "./media/characters/pandora/hoodie.svg",
  18025. extra: 1622 / 1525,
  18026. bottom: 0.015
  18027. }
  18028. },
  18029. casual: {
  18030. height: math.unit(6, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Casual",
  18033. image: {
  18034. source: "./media/characters/pandora/casual.svg",
  18035. extra: 1622 / 1525,
  18036. bottom: 0.015
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(6, "feet")
  18044. },
  18045. {
  18046. name: "Big Steppy",
  18047. height: math.unit(1, "km"),
  18048. default: true
  18049. },
  18050. {
  18051. name: "Galactic Steppy",
  18052. height: math.unit(2, "gigameters")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18058. {
  18059. side: {
  18060. height: math.unit(10, "feet"),
  18061. weight: math.unit(800, "kg"),
  18062. name: "Side",
  18063. image: {
  18064. source: "./media/characters/venio-darcony/side.svg",
  18065. extra: 1373 / 1003,
  18066. bottom: 0.037
  18067. }
  18068. },
  18069. front: {
  18070. height: math.unit(19, "feet"),
  18071. weight: math.unit(800, "kg"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/venio-darcony/front.svg"
  18075. }
  18076. },
  18077. back: {
  18078. height: math.unit(19, "feet"),
  18079. weight: math.unit(800, "kg"),
  18080. name: "Back",
  18081. image: {
  18082. source: "./media/characters/venio-darcony/back.svg"
  18083. }
  18084. },
  18085. sideNsfw: {
  18086. height: math.unit(10, "feet"),
  18087. weight: math.unit(800, "kg"),
  18088. name: "Side (NSFW)",
  18089. image: {
  18090. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18091. extra: 1373 / 1003,
  18092. bottom: 0.037
  18093. }
  18094. },
  18095. frontNsfw: {
  18096. height: math.unit(19, "feet"),
  18097. weight: math.unit(800, "kg"),
  18098. name: "Front (NSFW)",
  18099. image: {
  18100. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18101. }
  18102. },
  18103. backNsfw: {
  18104. height: math.unit(19, "feet"),
  18105. weight: math.unit(800, "kg"),
  18106. name: "Back (NSFW)",
  18107. image: {
  18108. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18109. }
  18110. },
  18111. sideArmored: {
  18112. height: math.unit(10, "feet"),
  18113. weight: math.unit(800, "kg"),
  18114. name: "Side (Armored)",
  18115. image: {
  18116. source: "./media/characters/venio-darcony/side-armored.svg",
  18117. extra: 1373 / 1003,
  18118. bottom: 0.037
  18119. }
  18120. },
  18121. frontArmored: {
  18122. height: math.unit(19, "feet"),
  18123. weight: math.unit(900, "kg"),
  18124. name: "Front (Armored)",
  18125. image: {
  18126. source: "./media/characters/venio-darcony/front-armored.svg"
  18127. }
  18128. },
  18129. backArmored: {
  18130. height: math.unit(19, "feet"),
  18131. weight: math.unit(900, "kg"),
  18132. name: "Back (Armored)",
  18133. image: {
  18134. source: "./media/characters/venio-darcony/back-armored.svg"
  18135. }
  18136. },
  18137. sword: {
  18138. height: math.unit(10, "feet"),
  18139. weight: math.unit(50, "lb"),
  18140. name: "Sword",
  18141. image: {
  18142. source: "./media/characters/venio-darcony/sword.svg"
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(10, "feet")
  18150. },
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(130, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Macro+",
  18158. height: math.unit(240, "feet")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(6, "feet"),
  18167. weight: math.unit(150, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/veski/front.svg",
  18171. extra: 1299 / 1225,
  18172. bottom: 0.04
  18173. }
  18174. },
  18175. back: {
  18176. height: math.unit(6, "feet"),
  18177. weight: math.unit(150, "lb"),
  18178. name: "Back",
  18179. image: {
  18180. source: "./media/characters/veski/back.svg",
  18181. extra: 1299 / 1225,
  18182. bottom: 0.008
  18183. }
  18184. },
  18185. maw: {
  18186. height: math.unit(1.5 * 1.21, "feet"),
  18187. name: "Maw",
  18188. image: {
  18189. source: "./media/characters/veski/maw.svg"
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(2, "km"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(5 + 7 / 12, "feet"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/isabelle/front.svg",
  18209. extra: 2130 / 1976,
  18210. bottom: 0.05
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Supermicro",
  18217. height: math.unit(10, "micrometers")
  18218. },
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(1, "inch")
  18222. },
  18223. {
  18224. name: "Tiny",
  18225. height: math.unit(5, "inches")
  18226. },
  18227. {
  18228. name: "Standard",
  18229. height: math.unit(5 + 7 / 12, "inches")
  18230. },
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(80, "meters"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Megamacro",
  18238. height: math.unit(250, "meters")
  18239. },
  18240. {
  18241. name: "Gigamacro",
  18242. height: math.unit(5, "km")
  18243. },
  18244. {
  18245. name: "Cosmic",
  18246. height: math.unit(2.5e6, "miles")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6, "feet"),
  18255. weight: math.unit(150, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/hanzo/front.svg",
  18259. extra: 374 / 344,
  18260. bottom: 0.02
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(8, "feet"),
  18268. default: true
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(7, "feet"),
  18277. weight: math.unit(130, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/anna/front.svg",
  18281. extra: 169 / 145,
  18282. bottom: 0.06
  18283. }
  18284. },
  18285. full: {
  18286. height: math.unit(4.96, "feet"),
  18287. weight: math.unit(220, "lb"),
  18288. name: "Full",
  18289. image: {
  18290. source: "./media/characters/anna/full.svg",
  18291. extra: 138 / 114,
  18292. bottom: 0.15
  18293. }
  18294. },
  18295. tongue: {
  18296. height: math.unit(2.53, "feet"),
  18297. name: "Tongue",
  18298. image: {
  18299. source: "./media/characters/anna/tongue.svg"
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(7, "feet"),
  18307. default: true
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(7, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/ian-corvid/front.svg",
  18320. extra: 150 / 142,
  18321. bottom: 0.02
  18322. }
  18323. },
  18324. back: {
  18325. height: math.unit(7, "feet"),
  18326. weight: math.unit(150, "lb"),
  18327. name: "Back",
  18328. image: {
  18329. source: "./media/characters/ian-corvid/back.svg",
  18330. extra: 150 / 143,
  18331. bottom: 0.01
  18332. }
  18333. },
  18334. stomping: {
  18335. height: math.unit(7, "feet"),
  18336. weight: math.unit(150, "lb"),
  18337. name: "Stomping",
  18338. image: {
  18339. source: "./media/characters/ian-corvid/stomping.svg",
  18340. extra: 76 / 72
  18341. }
  18342. },
  18343. sitting: {
  18344. height: math.unit(7 / 1.8, "feet"),
  18345. weight: math.unit(150, "lb"),
  18346. name: "Sitting",
  18347. image: {
  18348. source: "./media/characters/ian-corvid/sitting.svg",
  18349. extra: 1400 / 1269,
  18350. bottom: 0.15
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Tiny Microw",
  18357. height: math.unit(1, "inch")
  18358. },
  18359. {
  18360. name: "Microw",
  18361. height: math.unit(6, "inches")
  18362. },
  18363. {
  18364. name: "Crow",
  18365. height: math.unit(7 + 1 / 12, "feet"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Macrow",
  18370. height: math.unit(176, "feet")
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(5 + 7 / 12, "feet"),
  18379. weight: math.unit(147, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/natalie-kellon/front.svg",
  18383. extra: 1214 / 1141,
  18384. bottom: 0.02
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Micro",
  18391. height: math.unit(1 / 16, "inch")
  18392. },
  18393. {
  18394. name: "Tiny",
  18395. height: math.unit(4, "inches")
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(5 + 7 / 12, "feet"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Amazon",
  18404. height: math.unit(12, "feet")
  18405. },
  18406. {
  18407. name: "Giantess",
  18408. height: math.unit(160, "meters")
  18409. },
  18410. {
  18411. name: "Titaness",
  18412. height: math.unit(800, "meters")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6, "feet"),
  18421. weight: math.unit(150, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/alluria/front.svg",
  18425. extra: 806 / 738,
  18426. bottom: 0.01
  18427. }
  18428. },
  18429. side: {
  18430. height: math.unit(6, "feet"),
  18431. weight: math.unit(150, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/alluria/side.svg",
  18435. extra: 800 / 750,
  18436. }
  18437. },
  18438. back: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(150, "lb"),
  18441. name: "Back",
  18442. image: {
  18443. source: "./media/characters/alluria/back.svg",
  18444. extra: 806 / 738,
  18445. }
  18446. },
  18447. frontMaid: {
  18448. height: math.unit(6, "feet"),
  18449. weight: math.unit(150, "lb"),
  18450. name: "Front (Maid)",
  18451. image: {
  18452. source: "./media/characters/alluria/front-maid.svg",
  18453. extra: 806 / 738,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. sideMaid: {
  18458. height: math.unit(6, "feet"),
  18459. weight: math.unit(150, "lb"),
  18460. name: "Side (Maid)",
  18461. image: {
  18462. source: "./media/characters/alluria/side-maid.svg",
  18463. extra: 800 / 750,
  18464. bottom: 0.005
  18465. }
  18466. },
  18467. backMaid: {
  18468. height: math.unit(6, "feet"),
  18469. weight: math.unit(150, "lb"),
  18470. name: "Back (Maid)",
  18471. image: {
  18472. source: "./media/characters/alluria/back-maid.svg",
  18473. extra: 806 / 738,
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(6, "inches"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18487. {
  18488. front: {
  18489. height: math.unit(6, "feet"),
  18490. weight: math.unit(150, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/kyle/front.svg",
  18494. extra: 1069 / 962,
  18495. bottom: 77.228 / 1727.45
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Macro",
  18502. height: math.unit(150, "feet"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(6, "feet"),
  18512. weight: math.unit(300, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/duncan/front.svg",
  18516. extra: 1650 / 1482,
  18517. bottom: 0.05
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(100, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(5 + 4 / 12, "feet"),
  18534. weight: math.unit(220, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/memory/front.svg",
  18538. extra: 3641 / 3545,
  18539. bottom: 0.03
  18540. }
  18541. },
  18542. back: {
  18543. height: math.unit(5 + 4 / 12, "feet"),
  18544. weight: math.unit(220, "lb"),
  18545. name: "Back",
  18546. image: {
  18547. source: "./media/characters/memory/back.svg",
  18548. extra: 3641 / 3545,
  18549. bottom: 0.025
  18550. }
  18551. },
  18552. frontSkirt: {
  18553. height: math.unit(5 + 4 / 12, "feet"),
  18554. weight: math.unit(220, "lb"),
  18555. name: "Front (Skirt)",
  18556. image: {
  18557. source: "./media/characters/memory/front-skirt.svg",
  18558. extra: 3641 / 3545,
  18559. bottom: 0.03
  18560. }
  18561. },
  18562. frontDress: {
  18563. height: math.unit(5 + 4 / 12, "feet"),
  18564. weight: math.unit(220, "lb"),
  18565. name: "Front (Dress)",
  18566. image: {
  18567. source: "./media/characters/memory/front-dress.svg",
  18568. extra: 3641 / 3545,
  18569. bottom: 0.03
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(6, "inches"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 4 / 12, "feet")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(4 + 11 / 12, "feet"),
  18590. weight: math.unit(100, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/luno/front.svg",
  18594. extra: 1535 / 1487,
  18595. bottom: 0.03
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(3, "inches")
  18603. },
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(4 + 11 / 12, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(300, "feet")
  18612. },
  18613. {
  18614. name: "Megamacro",
  18615. height: math.unit(700, "miles")
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18621. {
  18622. front: {
  18623. height: math.unit(6 + 2 / 12, "feet"),
  18624. weight: math.unit(170, "lb"),
  18625. name: "Front",
  18626. image: {
  18627. source: "./media/characters/jamesy/front.svg",
  18628. extra: 440 / 382,
  18629. bottom: 0.005
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Micro",
  18636. height: math.unit(3, "inches")
  18637. },
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(6 + 2 / 12, "feet"),
  18641. default: true
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(300, "feet")
  18646. },
  18647. {
  18648. name: "Megamacro",
  18649. height: math.unit(700, "miles")
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(6, "feet"),
  18658. weight: math.unit(160, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/mark/front.svg",
  18662. extra: 3300 / 3100,
  18663. bottom: 136.42 / 3440.47
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Macro",
  18670. height: math.unit(120, "meters")
  18671. },
  18672. {
  18673. name: "Bigger Macro",
  18674. height: math.unit(350, "meters")
  18675. },
  18676. {
  18677. name: "Megamacro",
  18678. height: math.unit(8, "km"),
  18679. default: true
  18680. },
  18681. {
  18682. name: "Continental",
  18683. height: math.unit(4550, "km")
  18684. },
  18685. {
  18686. name: "Planetary",
  18687. height: math.unit(65000, "km")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(6, "feet"),
  18696. weight: math.unit(400, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/mac/front.svg",
  18700. extra: 1048 / 987.7,
  18701. bottom: 60 / 1107.6,
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Macro",
  18708. height: math.unit(500, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(5 + 2 / 12, "feet"),
  18718. weight: math.unit(190, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/bari/front.svg",
  18722. extra: 3156 / 2880,
  18723. bottom: 0.03
  18724. }
  18725. },
  18726. back: {
  18727. height: math.unit(5 + 2 / 12, "feet"),
  18728. weight: math.unit(190, "lb"),
  18729. name: "Back",
  18730. image: {
  18731. source: "./media/characters/bari/back.svg",
  18732. extra: 3260 / 2834,
  18733. bottom: 0.025
  18734. }
  18735. },
  18736. frontPlush: {
  18737. height: math.unit(5 + 2 / 12, "feet"),
  18738. weight: math.unit(190, "lb"),
  18739. name: "Front (Plush)",
  18740. image: {
  18741. source: "./media/characters/bari/front-plush.svg",
  18742. extra: 1112 / 1061,
  18743. bottom: 0.002
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(3, "inches")
  18751. },
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(5 + 2 / 12, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Macro",
  18759. height: math.unit(20, "feet")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(6 + 1 / 12, "feet"),
  18768. weight: math.unit(275, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/hunter-misha-raven/front.svg"
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Mortal",
  18778. height: math.unit(6 + 1 / 12, "feet")
  18779. },
  18780. {
  18781. name: "Divine",
  18782. height: math.unit(1.12134e34, "parsecs"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6 + 3 / 12, "feet"),
  18792. weight: math.unit(220, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/max-calore/front.svg",
  18796. extra: 1700 / 1648,
  18797. bottom: 0.01
  18798. }
  18799. },
  18800. back: {
  18801. height: math.unit(6 + 3 / 12, "feet"),
  18802. weight: math.unit(220, "lb"),
  18803. name: "Back",
  18804. image: {
  18805. source: "./media/characters/max-calore/back.svg",
  18806. extra: 1700 / 1648,
  18807. bottom: 0.01
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(6 + 3 / 12, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18821. {
  18822. side: {
  18823. height: math.unit(2 + 8 / 12, "feet"),
  18824. weight: math.unit(99, "lb"),
  18825. name: "Side",
  18826. image: {
  18827. source: "./media/characters/aspen/side.svg",
  18828. extra: 152 / 138,
  18829. bottom: 0.032
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(2 + 8 / 12, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18843. {
  18844. side: {
  18845. height: math.unit(3 + 2 / 12, "feet"),
  18846. weight: math.unit(224, "lb"),
  18847. name: "Side",
  18848. image: {
  18849. source: "./media/characters/sheila-feral-wolf/side.svg",
  18850. extra: 179 / 166,
  18851. bottom: 0.03
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(3 + 2 / 12, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18865. {
  18866. side: {
  18867. height: math.unit(1 + 9 / 12, "feet"),
  18868. weight: math.unit(38, "lb"),
  18869. name: "Side",
  18870. image: {
  18871. source: "./media/characters/michelle/side.svg",
  18872. extra: 147 / 136.7,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(1 + 9 / 12, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(1.54, "feet"),
  18890. weight: math.unit(50, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/nino/front.svg"
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(1.54, "feet"),
  18901. default: true
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(1.49, "feet"),
  18910. weight: math.unit(45, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/viola/front.svg"
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(1.49, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6 + 5 / 12, "feet"),
  18930. weight: math.unit(580, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/atlas/front.svg",
  18934. extra: 298.5 / 290,
  18935. bottom: 0.015
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(6 + 5 / 12, "feet"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18949. {
  18950. side: {
  18951. height: math.unit(15.6, "inches"),
  18952. weight: math.unit(10, "lb"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/davy/side.svg",
  18956. extra: 200 / 170,
  18957. bottom: 0.01
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(15.6, "inches"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18971. {
  18972. side: {
  18973. height: math.unit(4 + 8 / 12, "feet"),
  18974. weight: math.unit(166, "lb"),
  18975. name: "Side",
  18976. image: {
  18977. source: "./media/characters/fiona/side.svg",
  18978. extra: 232 / 220,
  18979. bottom: 0.03
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(4 + 8 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18993. {
  18994. front: {
  18995. height: math.unit(26, "inches"),
  18996. weight: math.unit(35, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/lyla/front.svg",
  19000. bottom: 0.1
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(3, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19014. {
  19015. side: {
  19016. height: math.unit(1.8, "feet"),
  19017. weight: math.unit(44, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/perseus/side.svg",
  19021. bottom: 0.21
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(1.8, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19035. {
  19036. side: {
  19037. height: math.unit(4 + 2 / 12, "feet"),
  19038. weight: math.unit(20, "lb"),
  19039. name: "Side",
  19040. image: {
  19041. source: "./media/characters/remus/side.svg"
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(4 + 2 / 12, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(4 + 11 / 12, "feet"),
  19058. weight: math.unit(114, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/raf/front.svg",
  19062. extra: 1504/1339,
  19063. bottom: 26/1530
  19064. }
  19065. },
  19066. side: {
  19067. height: math.unit(4 + 11 / 12, "feet"),
  19068. weight: math.unit(114, "lb"),
  19069. name: "Side",
  19070. image: {
  19071. source: "./media/characters/raf/side.svg",
  19072. extra: 1466/1316,
  19073. bottom: 29/1495
  19074. }
  19075. },
  19076. paw: {
  19077. height: math.unit(1.45, "feet"),
  19078. name: "Paw",
  19079. image: {
  19080. source: "./media/characters/raf/paw.svg"
  19081. },
  19082. extraAttributes: {
  19083. "toeSize": {
  19084. name: "Toe Size",
  19085. power: 2,
  19086. type: "area",
  19087. base: math.unit(0.004, "m^2")
  19088. },
  19089. "padSize": {
  19090. name: "Pad Size",
  19091. power: 2,
  19092. type: "area",
  19093. base: math.unit(0.04, "m^2")
  19094. },
  19095. "footSize": {
  19096. name: "Foot Size",
  19097. power: 2,
  19098. type: "area",
  19099. base: math.unit(0.08, "m^2")
  19100. },
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Micro",
  19107. height: math.unit(2, "inches")
  19108. },
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(4 + 11 / 12, "feet"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(70, "feet")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(1.5, "meters"),
  19125. weight: math.unit(68, "kg"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/liam-einarr/front.svg",
  19129. extra: 2822 / 2666
  19130. }
  19131. },
  19132. back: {
  19133. height: math.unit(1.5, "meters"),
  19134. weight: math.unit(68, "kg"),
  19135. name: "Back",
  19136. image: {
  19137. source: "./media/characters/liam-einarr/back.svg",
  19138. extra: 2822 / 2666,
  19139. bottom: 0.015
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(1.5, "meters"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(150, "meters")
  19152. },
  19153. {
  19154. name: "Megamacro",
  19155. height: math.unit(35, "km")
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(6, "feet"),
  19164. weight: math.unit(75, "kg"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/linda/front.svg",
  19168. extra: 930 / 874,
  19169. bottom: 0.004
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(6, "feet"),
  19177. default: true
  19178. },
  19179. ]
  19180. ))
  19181. characterMakers.push(() => makeCharacter(
  19182. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19183. {
  19184. front: {
  19185. height: math.unit(6 + 8 / 12, "feet"),
  19186. weight: math.unit(220, "lb"),
  19187. name: "Front",
  19188. image: {
  19189. source: "./media/characters/caylex/front.svg",
  19190. extra: 821 / 772,
  19191. bottom: 0.07
  19192. }
  19193. },
  19194. back: {
  19195. height: math.unit(6 + 8 / 12, "feet"),
  19196. weight: math.unit(220, "lb"),
  19197. name: "Back",
  19198. image: {
  19199. source: "./media/characters/caylex/back.svg",
  19200. extra: 821 / 772,
  19201. bottom: 0.022
  19202. }
  19203. },
  19204. hand: {
  19205. height: math.unit(1.25, "feet"),
  19206. name: "Hand",
  19207. image: {
  19208. source: "./media/characters/caylex/hand.svg"
  19209. }
  19210. },
  19211. foot: {
  19212. height: math.unit(1.6, "feet"),
  19213. name: "Foot",
  19214. image: {
  19215. source: "./media/characters/caylex/foot.svg"
  19216. }
  19217. },
  19218. armored: {
  19219. height: math.unit(6 + 8 / 12, "feet"),
  19220. weight: math.unit(250, "lb"),
  19221. name: "Armored",
  19222. image: {
  19223. source: "./media/characters/caylex/armored.svg",
  19224. extra: 1420 / 1310,
  19225. bottom: 0.045
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(6 + 8 / 12, "feet"),
  19233. default: true
  19234. },
  19235. {
  19236. name: "Normal+",
  19237. height: math.unit(12, "feet")
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19243. {
  19244. front: {
  19245. height: math.unit(7 + 6 / 12, "feet"),
  19246. weight: math.unit(288, "lb"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/alana/front.svg",
  19250. extra: 679 / 653,
  19251. bottom: 22.5 / 701
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(7 + 6 / 12, "feet")
  19259. },
  19260. {
  19261. name: "Large",
  19262. height: math.unit(50, "feet")
  19263. },
  19264. {
  19265. name: "Macro",
  19266. height: math.unit(100, "feet"),
  19267. default: true
  19268. },
  19269. {
  19270. name: "Macro+",
  19271. height: math.unit(200, "feet")
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(6 + 1 / 12, "feet"),
  19280. weight: math.unit(210, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/hasani/front.svg",
  19284. extra: 244 / 232,
  19285. bottom: 0.01
  19286. }
  19287. },
  19288. back: {
  19289. height: math.unit(6 + 1 / 12, "feet"),
  19290. weight: math.unit(210, "lb"),
  19291. name: "Back",
  19292. image: {
  19293. source: "./media/characters/hasani/back.svg",
  19294. extra: 244 / 232,
  19295. bottom: 0.01
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(6 + 1 / 12, "feet")
  19303. },
  19304. {
  19305. name: "Macro",
  19306. height: math.unit(175, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(1.82, "meters"),
  19316. weight: math.unit(140, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/nita/front.svg",
  19320. extra: 2473 / 2363,
  19321. bottom: 0.01
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(1.82, "m")
  19329. },
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(300, "m")
  19333. },
  19334. {
  19335. name: "Mistake Canon",
  19336. height: math.unit(0.5, "miles"),
  19337. default: true
  19338. },
  19339. {
  19340. name: "Big Mistake",
  19341. height: math.unit(13, "miles")
  19342. },
  19343. {
  19344. name: "Playing God",
  19345. height: math.unit(2450, "miles")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(4, "feet"),
  19354. weight: math.unit(120, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/shiriko/front.svg",
  19358. extra: 970/934,
  19359. bottom: 5/975
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(4, "feet"),
  19367. default: true
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(6, "feet"),
  19376. name: "front",
  19377. image: {
  19378. source: "./media/characters/deja/front.svg",
  19379. extra: 926 / 840,
  19380. bottom: 0.07
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Planck Length",
  19387. height: math.unit(1.6e-35, "meters")
  19388. },
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(30.48, "meters"),
  19392. default: true
  19393. },
  19394. {
  19395. name: "Universal",
  19396. height: math.unit(8.8e26, "meters")
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19402. {
  19403. side: {
  19404. height: math.unit(8, "feet"),
  19405. weight: math.unit(6300, "lb"),
  19406. name: "Side",
  19407. image: {
  19408. source: "./media/characters/anima/side.svg",
  19409. bottom: 0.035
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(8, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(8, "feet"),
  19426. weight: math.unit(350, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/bianca/front.svg",
  19430. extra: 234 / 225,
  19431. bottom: 0.03
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(8, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(11 + 5/12, "feet"),
  19448. weight: math.unit(1200, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/adinia/front.svg",
  19452. extra: 1767/1641,
  19453. bottom: 44/1811
  19454. },
  19455. extraAttributes: {
  19456. "energyIntake": {
  19457. name: "Energy Intake",
  19458. power: 3,
  19459. type: "energy",
  19460. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19461. },
  19462. }
  19463. },
  19464. back: {
  19465. height: math.unit(11 + 5/12, "feet"),
  19466. weight: math.unit(1200, "lb"),
  19467. name: "Back",
  19468. image: {
  19469. source: "./media/characters/adinia/back.svg",
  19470. extra: 1834/1684,
  19471. bottom: 14/1848
  19472. },
  19473. extraAttributes: {
  19474. "energyIntake": {
  19475. name: "Energy Intake",
  19476. power: 3,
  19477. type: "energy",
  19478. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19479. },
  19480. }
  19481. },
  19482. maw: {
  19483. height: math.unit(3.79, "feet"),
  19484. name: "Maw",
  19485. image: {
  19486. source: "./media/characters/adinia/maw.svg"
  19487. }
  19488. },
  19489. rump: {
  19490. height: math.unit(4.6, "feet"),
  19491. name: "Rump",
  19492. image: {
  19493. source: "./media/characters/adinia/rump.svg"
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(11 + 5 / 12, "feet"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19507. {
  19508. front: {
  19509. height: math.unit(3, "meters"),
  19510. weight: math.unit(200, "kg"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/lykasa/front.svg",
  19514. extra: 1076 / 976,
  19515. bottom: 0.06
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(3, "meters")
  19523. },
  19524. {
  19525. name: "Kaiju",
  19526. height: math.unit(120, "meters"),
  19527. default: true
  19528. },
  19529. {
  19530. name: "Mega Kaiju",
  19531. height: math.unit(240, "km")
  19532. },
  19533. {
  19534. name: "Giga Kaiju",
  19535. height: math.unit(400, "megameters")
  19536. },
  19537. {
  19538. name: "Tera Kaiju",
  19539. height: math.unit(800, "gigameters")
  19540. },
  19541. {
  19542. name: "Kaiju Dragon Goddess",
  19543. height: math.unit(26, "zettaparsecs")
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19549. {
  19550. side: {
  19551. height: math.unit(283 / 124 * 6, "feet"),
  19552. weight: math.unit(35000, "lb"),
  19553. name: "Side",
  19554. image: {
  19555. source: "./media/characters/malfaren/side.svg",
  19556. extra: 1310/529,
  19557. bottom: 24/1334
  19558. }
  19559. },
  19560. front: {
  19561. height: math.unit(22.36, "feet"),
  19562. weight: math.unit(35000, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/malfaren/front.svg",
  19566. extra: 1237/1115,
  19567. bottom: 32/1269
  19568. }
  19569. },
  19570. maw: {
  19571. height: math.unit(6.9, "feet"),
  19572. name: "Maw",
  19573. image: {
  19574. source: "./media/characters/malfaren/maw.svg"
  19575. }
  19576. },
  19577. dick: {
  19578. height: math.unit(6.19, "feet"),
  19579. name: "Dick",
  19580. image: {
  19581. source: "./media/characters/malfaren/dick.svg"
  19582. }
  19583. },
  19584. eye: {
  19585. height: math.unit(0.69, "feet"),
  19586. name: "Eye",
  19587. image: {
  19588. source: "./media/characters/malfaren/eye.svg"
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Big",
  19595. height: math.unit(283 / 162 * 6, "feet"),
  19596. },
  19597. {
  19598. name: "Bigger",
  19599. height: math.unit(283 / 124 * 6, "feet")
  19600. },
  19601. {
  19602. name: "Massive",
  19603. height: math.unit(283 / 92 * 6, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "👀💦",
  19608. height: math.unit(283 / 73 * 6, "feet"),
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(1.7, "m"),
  19617. weight: math.unit(70, "kg"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/kernel/front.svg",
  19621. extra: 222 / 210,
  19622. bottom: 0.007
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Nano",
  19629. height: math.unit(17, "micrometers")
  19630. },
  19631. {
  19632. name: "Micro",
  19633. height: math.unit(1.7, "mm")
  19634. },
  19635. {
  19636. name: "Small",
  19637. height: math.unit(1.7, "cm")
  19638. },
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(1.7, "m"),
  19642. default: true
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19648. {
  19649. front: {
  19650. height: math.unit(1.75, "meters"),
  19651. weight: math.unit(65, "kg"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/jayne-folest/front.svg",
  19655. extra: 2115 / 2007,
  19656. bottom: 0.02
  19657. }
  19658. },
  19659. back: {
  19660. height: math.unit(1.75, "meters"),
  19661. weight: math.unit(65, "kg"),
  19662. name: "Back",
  19663. image: {
  19664. source: "./media/characters/jayne-folest/back.svg",
  19665. extra: 2115 / 2007,
  19666. bottom: 0.005
  19667. }
  19668. },
  19669. frontClothed: {
  19670. height: math.unit(1.75, "meters"),
  19671. weight: math.unit(65, "kg"),
  19672. name: "Front (Clothed)",
  19673. image: {
  19674. source: "./media/characters/jayne-folest/front-clothed.svg",
  19675. extra: 2115 / 2007,
  19676. bottom: 0.035
  19677. }
  19678. },
  19679. hand: {
  19680. height: math.unit(1 / 1.260, "feet"),
  19681. name: "Hand",
  19682. image: {
  19683. source: "./media/characters/jayne-folest/hand.svg"
  19684. }
  19685. },
  19686. foot: {
  19687. height: math.unit(1 / 0.918, "feet"),
  19688. name: "Foot",
  19689. image: {
  19690. source: "./media/characters/jayne-folest/foot.svg"
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Micro",
  19697. height: math.unit(4, "cm")
  19698. },
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(1.75, "meters")
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(47.5, "meters"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(180, "cm"),
  19715. weight: math.unit(70, "kg"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/algier/front.svg",
  19719. extra: 596 / 572,
  19720. bottom: 0.04
  19721. }
  19722. },
  19723. back: {
  19724. height: math.unit(180, "cm"),
  19725. weight: math.unit(70, "kg"),
  19726. name: "Back",
  19727. image: {
  19728. source: "./media/characters/algier/back.svg",
  19729. extra: 596 / 572,
  19730. bottom: 0.025
  19731. }
  19732. },
  19733. frontdressed: {
  19734. height: math.unit(180, "cm"),
  19735. weight: math.unit(150, "kg"),
  19736. name: "Front-dressed",
  19737. image: {
  19738. source: "./media/characters/algier/front-dressed.svg",
  19739. extra: 596 / 572,
  19740. bottom: 0.038
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Micro",
  19747. height: math.unit(5, "cm")
  19748. },
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(180, "cm"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(64, "m")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19762. {
  19763. upright: {
  19764. height: math.unit(7, "feet"),
  19765. weight: math.unit(300, "lb"),
  19766. name: "Upright",
  19767. image: {
  19768. source: "./media/characters/pretzel/upright.svg",
  19769. extra: 534 / 522,
  19770. bottom: 0.065
  19771. }
  19772. },
  19773. sprawling: {
  19774. height: math.unit(3.75, "feet"),
  19775. weight: math.unit(300, "lb"),
  19776. name: "Sprawling",
  19777. image: {
  19778. source: "./media/characters/pretzel/sprawling.svg",
  19779. extra: 314 / 281,
  19780. bottom: 0.1
  19781. }
  19782. },
  19783. tongue: {
  19784. height: math.unit(2, "feet"),
  19785. name: "Tongue",
  19786. image: {
  19787. source: "./media/characters/pretzel/tongue.svg"
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(7, "feet"),
  19795. default: true
  19796. },
  19797. {
  19798. name: "Oversized",
  19799. height: math.unit(15, "feet")
  19800. },
  19801. {
  19802. name: "Huge",
  19803. height: math.unit(30, "feet")
  19804. },
  19805. {
  19806. name: "Macro",
  19807. height: math.unit(250, "feet")
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19813. {
  19814. sideFront: {
  19815. height: math.unit(5 + 2 / 12, "feet"),
  19816. weight: math.unit(120, "lb"),
  19817. name: "Front Side",
  19818. image: {
  19819. source: "./media/characters/roxi/side-front.svg",
  19820. extra: 2924 / 2717,
  19821. bottom: 0.08
  19822. }
  19823. },
  19824. sideBack: {
  19825. height: math.unit(5 + 2 / 12, "feet"),
  19826. weight: math.unit(120, "lb"),
  19827. name: "Back Side",
  19828. image: {
  19829. source: "./media/characters/roxi/side-back.svg",
  19830. extra: 2904 / 2693,
  19831. bottom: 0.06
  19832. }
  19833. },
  19834. front: {
  19835. height: math.unit(5 + 2 / 12, "feet"),
  19836. weight: math.unit(120, "lb"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/roxi/front.svg",
  19840. extra: 2028 / 1907,
  19841. bottom: 0.01
  19842. }
  19843. },
  19844. frontAlt: {
  19845. height: math.unit(5 + 2 / 12, "feet"),
  19846. weight: math.unit(120, "lb"),
  19847. name: "Front (Alt)",
  19848. image: {
  19849. source: "./media/characters/roxi/front-alt.svg",
  19850. extra: 1828 / 1798,
  19851. bottom: 0.01
  19852. }
  19853. },
  19854. sitting: {
  19855. height: math.unit(2.8, "feet"),
  19856. weight: math.unit(120, "lb"),
  19857. name: "Sitting",
  19858. image: {
  19859. source: "./media/characters/roxi/sitting.svg",
  19860. extra: 2660 / 2462,
  19861. bottom: 0.1
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(5 + 2 / 12, "feet"),
  19869. default: true
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19875. {
  19876. side: {
  19877. height: math.unit(55, "feet"),
  19878. weight: math.unit(153, "tons"),
  19879. name: "Side",
  19880. image: {
  19881. source: "./media/characters/shadow/side.svg",
  19882. extra: 701 / 628,
  19883. bottom: 0.02
  19884. }
  19885. },
  19886. flying: {
  19887. height: math.unit(145, "feet"),
  19888. weight: math.unit(153, "tons"),
  19889. name: "Flying",
  19890. image: {
  19891. source: "./media/characters/shadow/flying.svg"
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(55, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6, "feet"),
  19908. weight: math.unit(200, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/marcie/front.svg",
  19912. extra: 960 / 876,
  19913. bottom: 58 / 1017.87
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Macro",
  19920. height: math.unit(1, "mile"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(7, "feet"),
  19930. weight: math.unit(200, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/kachina/front.svg",
  19934. extra: 1290.68 / 1119,
  19935. bottom: 36.5 / 1327.18
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(7, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19949. {
  19950. looking: {
  19951. height: math.unit(2, "meters"),
  19952. weight: math.unit(300, "kg"),
  19953. name: "Looking",
  19954. image: {
  19955. source: "./media/characters/kash/looking.svg",
  19956. extra: 474 / 344,
  19957. bottom: 0.03
  19958. }
  19959. },
  19960. side: {
  19961. height: math.unit(2, "meters"),
  19962. weight: math.unit(300, "kg"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/kash/side.svg",
  19966. extra: 302 / 251,
  19967. bottom: 0.03
  19968. }
  19969. },
  19970. front: {
  19971. height: math.unit(2, "meters"),
  19972. weight: math.unit(300, "kg"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/kash/front.svg",
  19976. extra: 495 / 360,
  19977. bottom: 0.015
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(2, "meters"),
  19985. default: true
  19986. },
  19987. {
  19988. name: "Big",
  19989. height: math.unit(3, "meters")
  19990. },
  19991. {
  19992. name: "Large",
  19993. height: math.unit(5, "meters")
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19999. {
  20000. feeding: {
  20001. height: math.unit(6.7, "feet"),
  20002. weight: math.unit(350, "lb"),
  20003. name: "Feeding",
  20004. image: {
  20005. source: "./media/characters/lalim/feeding.svg",
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(6.7, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(9.5, "feet"),
  20022. weight: math.unit(600, "lb"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/de'vout/front.svg",
  20026. extra: 1443 / 1328,
  20027. bottom: 0.025
  20028. }
  20029. },
  20030. back: {
  20031. height: math.unit(9.5, "feet"),
  20032. weight: math.unit(600, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/de'vout/back.svg",
  20036. extra: 1443 / 1328
  20037. }
  20038. },
  20039. frontDressed: {
  20040. height: math.unit(9.5, "feet"),
  20041. weight: math.unit(600, "lb"),
  20042. name: "Front (Dressed",
  20043. image: {
  20044. source: "./media/characters/de'vout/front-dressed.svg",
  20045. extra: 1443 / 1328,
  20046. bottom: 0.025
  20047. }
  20048. },
  20049. backDressed: {
  20050. height: math.unit(9.5, "feet"),
  20051. weight: math.unit(600, "lb"),
  20052. name: "Back (Dressed",
  20053. image: {
  20054. source: "./media/characters/de'vout/back-dressed.svg",
  20055. extra: 1443 / 1328
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(9.5, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(8, "feet"),
  20072. weight: math.unit(225, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/talana/front.svg",
  20076. extra: 1410 / 1300,
  20077. bottom: 0.015
  20078. }
  20079. },
  20080. frontDressed: {
  20081. height: math.unit(8, "feet"),
  20082. weight: math.unit(225, "lb"),
  20083. name: "Front (Dressed",
  20084. image: {
  20085. source: "./media/characters/talana/front-dressed.svg",
  20086. extra: 1410 / 1300,
  20087. bottom: 0.015
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(8, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20101. {
  20102. side: {
  20103. height: math.unit(7.2, "feet"),
  20104. weight: math.unit(150, "lb"),
  20105. name: "Side",
  20106. image: {
  20107. source: "./media/characters/xeauvok/side.svg",
  20108. extra: 1975 / 1523,
  20109. bottom: 0.07
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(7.2, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20123. {
  20124. side: {
  20125. height: math.unit(4, "meters"),
  20126. weight: math.unit(2200, "kg"),
  20127. name: "Side",
  20128. image: {
  20129. source: "./media/characters/zara/side.svg",
  20130. extra: 765/744,
  20131. bottom: 156/921
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(4, "meters"),
  20139. default: true
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20145. {
  20146. side: {
  20147. height: math.unit(6, "feet"),
  20148. weight: math.unit(150, "lb"),
  20149. name: "Side",
  20150. image: {
  20151. source: "./media/characters/richard-dragon/side.svg",
  20152. extra: 845 / 340,
  20153. bottom: 0.017
  20154. }
  20155. },
  20156. maw: {
  20157. height: math.unit(2.97, "feet"),
  20158. name: "Maw",
  20159. image: {
  20160. source: "./media/characters/richard-dragon/maw.svg"
  20161. }
  20162. },
  20163. },
  20164. [
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(4, "feet"),
  20172. weight: math.unit(100, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/richard-smeargle/front.svg",
  20176. extra: 2952 / 2820,
  20177. bottom: 0.028
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(4, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Dynamax",
  20189. height: math.unit(20, "meters")
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(6, "feet"),
  20198. weight: math.unit(110, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/klay/front.svg",
  20202. extra: 962 / 883,
  20203. bottom: 0.04
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(6, "feet"),
  20208. weight: math.unit(110, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/klay/back.svg",
  20212. extra: 962 / 883
  20213. }
  20214. },
  20215. beans: {
  20216. height: math.unit(1.15, "feet"),
  20217. name: "Beans",
  20218. image: {
  20219. source: "./media/characters/klay/beans.svg"
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Micro",
  20226. height: math.unit(6, "inches")
  20227. },
  20228. {
  20229. name: "Mini",
  20230. height: math.unit(3, "feet")
  20231. },
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(6, "feet"),
  20235. default: true
  20236. },
  20237. {
  20238. name: "Big",
  20239. height: math.unit(25, "feet")
  20240. },
  20241. {
  20242. name: "Macro",
  20243. height: math.unit(100, "feet")
  20244. },
  20245. {
  20246. name: "Megamacro",
  20247. height: math.unit(400, "feet")
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(6, "feet"),
  20256. weight: math.unit(160, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/marcus/front.svg",
  20260. extra: 734 / 676,
  20261. bottom: 0.03
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Little",
  20268. height: math.unit(6, "feet")
  20269. },
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(110, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(250, "feet")
  20278. },
  20279. {
  20280. name: "Megamacro",
  20281. height: math.unit(1000, "feet")
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(7, "feet"),
  20290. weight: math.unit(275, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/claude-delroute/front.svg",
  20294. extra: 902/827,
  20295. bottom: 26/928
  20296. }
  20297. },
  20298. side: {
  20299. height: math.unit(7, "feet"),
  20300. weight: math.unit(275, "lb"),
  20301. name: "Side",
  20302. image: {
  20303. source: "./media/characters/claude-delroute/side.svg",
  20304. extra: 908/853,
  20305. bottom: 16/924
  20306. }
  20307. },
  20308. back: {
  20309. height: math.unit(7, "feet"),
  20310. weight: math.unit(275, "lb"),
  20311. name: "Back",
  20312. image: {
  20313. source: "./media/characters/claude-delroute/back.svg",
  20314. extra: 911/829,
  20315. bottom: 18/929
  20316. }
  20317. },
  20318. maw: {
  20319. height: math.unit(0.6407, "meters"),
  20320. name: "Maw",
  20321. image: {
  20322. source: "./media/characters/claude-delroute/maw.svg"
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(7, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Lorge",
  20334. height: math.unit(20, "feet")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(8 + 4 / 12, "feet"),
  20343. weight: math.unit(600, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/dragonien/front.svg",
  20347. extra: 100 / 94,
  20348. bottom: 3.3 / 103.3445
  20349. }
  20350. },
  20351. back: {
  20352. height: math.unit(8 + 4 / 12, "feet"),
  20353. weight: math.unit(600, "lb"),
  20354. name: "Back",
  20355. image: {
  20356. source: "./media/characters/dragonien/back.svg",
  20357. extra: 776 / 746,
  20358. bottom: 6.4 / 782.0616
  20359. }
  20360. },
  20361. foot: {
  20362. height: math.unit(1.54, "feet"),
  20363. name: "Foot",
  20364. image: {
  20365. source: "./media/characters/dragonien/foot.svg",
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(8 + 4 / 12, "feet"),
  20373. default: true
  20374. },
  20375. {
  20376. name: "Macro",
  20377. height: math.unit(200, "feet")
  20378. },
  20379. {
  20380. name: "Megamacro",
  20381. height: math.unit(1, "mile")
  20382. },
  20383. {
  20384. name: "Gigamacro",
  20385. height: math.unit(1000, "miles")
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(5 + 2 / 12, "feet"),
  20394. weight: math.unit(110, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/desta/front.svg",
  20398. extra: 767 / 726,
  20399. bottom: 11.7 / 779
  20400. }
  20401. },
  20402. back: {
  20403. height: math.unit(5 + 2 / 12, "feet"),
  20404. weight: math.unit(110, "lb"),
  20405. name: "Back",
  20406. image: {
  20407. source: "./media/characters/desta/back.svg",
  20408. extra: 777 / 728,
  20409. bottom: 6 / 784
  20410. }
  20411. },
  20412. frontAlt: {
  20413. height: math.unit(5 + 2 / 12, "feet"),
  20414. weight: math.unit(110, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/desta/front-alt.svg",
  20418. extra: 1482 / 1417
  20419. }
  20420. },
  20421. side: {
  20422. height: math.unit(5 + 2 / 12, "feet"),
  20423. weight: math.unit(110, "lb"),
  20424. name: "Side",
  20425. image: {
  20426. source: "./media/characters/desta/side.svg",
  20427. extra: 2579 / 2491,
  20428. bottom: 0.053
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Micro",
  20435. height: math.unit(6, "inches")
  20436. },
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(5 + 2 / 12, "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(62, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(1800, "feet")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(10, "feet"),
  20457. weight: math.unit(700, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/storm-alystar/front.svg",
  20461. extra: 2112 / 1898,
  20462. bottom: 0.034
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Micro",
  20469. height: math.unit(3.5, "inches")
  20470. },
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(10, "feet"),
  20474. default: true
  20475. },
  20476. {
  20477. name: "Macro",
  20478. height: math.unit(400, "feet")
  20479. },
  20480. {
  20481. name: "Deific",
  20482. height: math.unit(60, "miles")
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20488. {
  20489. front: {
  20490. height: math.unit(2.35, "meters"),
  20491. weight: math.unit(119, "kg"),
  20492. name: "Front",
  20493. image: {
  20494. source: "./media/characters/ilia/front.svg",
  20495. extra: 1285 / 1255,
  20496. bottom: 0.06
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(2.35, "meters")
  20504. },
  20505. {
  20506. name: "Macro",
  20507. height: math.unit(140, "meters"),
  20508. default: true
  20509. },
  20510. {
  20511. name: "Megamacro",
  20512. height: math.unit(100, "miles")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(6 + 5 / 12, "feet"),
  20521. weight: math.unit(190, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/kingdead/front.svg",
  20525. extra: 1228 / 1177
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(7, "inches")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(6 + 5 / 12, "feet")
  20537. },
  20538. {
  20539. name: "Macro",
  20540. height: math.unit(150, "feet"),
  20541. default: true
  20542. },
  20543. {
  20544. name: "Megamacro",
  20545. height: math.unit(200, "miles")
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20551. {
  20552. front: {
  20553. height: math.unit(8, "feet"),
  20554. weight: math.unit(600, "lb"),
  20555. name: "Front",
  20556. image: {
  20557. source: "./media/characters/kyrehx/front.svg",
  20558. extra: 1195 / 1095,
  20559. bottom: 0.034
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Micro",
  20566. height: math.unit(2, "inches")
  20567. },
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(8, "feet"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Macro",
  20575. height: math.unit(255, "feet")
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20584. weight: math.unit(184, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/xang/front.svg",
  20588. extra: 845 / 755
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(0.935 * 146, "feet")
  20601. },
  20602. {
  20603. name: "Megamacro",
  20604. height: math.unit(0.935 * 3, "miles")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20610. {
  20611. frontDressed: {
  20612. height: math.unit(5 + 7 / 12, "feet"),
  20613. weight: math.unit(140, "lb"),
  20614. name: "Front (Dressed)",
  20615. image: {
  20616. source: "./media/characters/doc-weardno/front-dressed.svg",
  20617. extra: 263 / 234
  20618. }
  20619. },
  20620. backDressed: {
  20621. height: math.unit(5 + 7 / 12, "feet"),
  20622. weight: math.unit(140, "lb"),
  20623. name: "Back (Dressed)",
  20624. image: {
  20625. source: "./media/characters/doc-weardno/back-dressed.svg",
  20626. extra: 266 / 238
  20627. }
  20628. },
  20629. front: {
  20630. height: math.unit(5 + 7 / 12, "feet"),
  20631. weight: math.unit(140, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/doc-weardno/front.svg",
  20635. extra: 254 / 233
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Micro",
  20642. height: math.unit(3, "inches")
  20643. },
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(5 + 7 / 12, "feet"),
  20647. default: true
  20648. },
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(25, "feet")
  20652. },
  20653. {
  20654. name: "Megamacro",
  20655. height: math.unit(2, "miles")
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(6 + 2 / 12, "feet"),
  20664. weight: math.unit(153, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/seth-whilst/front.svg",
  20668. bottom: 0.07
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Micro",
  20675. height: math.unit(5, "inches")
  20676. },
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(6 + 2 / 12, "feet"),
  20680. default: true
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(3, "inches"),
  20689. weight: math.unit(8, "grams"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/pocket-jabari/front.svg",
  20693. extra: 1024 / 974,
  20694. bottom: 0.039
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Minimicro",
  20701. height: math.unit(8, "mm")
  20702. },
  20703. {
  20704. name: "Micro",
  20705. height: math.unit(3, "inches"),
  20706. default: true
  20707. },
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(3, "feet")
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20716. {
  20717. frontDressed: {
  20718. height: math.unit(15, "feet"),
  20719. weight: math.unit(3280, "lb"),
  20720. name: "Front (Dressed)",
  20721. image: {
  20722. source: "./media/characters/sapphy/front-dressed.svg",
  20723. extra: 1951/1654,
  20724. bottom: 194/2145
  20725. },
  20726. form: "anthro",
  20727. default: true
  20728. },
  20729. backDressed: {
  20730. height: math.unit(15, "feet"),
  20731. weight: math.unit(3280, "lb"),
  20732. name: "Back (Dressed)",
  20733. image: {
  20734. source: "./media/characters/sapphy/back-dressed.svg",
  20735. extra: 2058/1918,
  20736. bottom: 125/2183
  20737. },
  20738. form: "anthro"
  20739. },
  20740. frontNude: {
  20741. height: math.unit(15, "feet"),
  20742. weight: math.unit(3280, "lb"),
  20743. name: "Front (Nude)",
  20744. image: {
  20745. source: "./media/characters/sapphy/front-nude.svg",
  20746. extra: 1951/1654,
  20747. bottom: 194/2145
  20748. },
  20749. form: "anthro"
  20750. },
  20751. backNude: {
  20752. height: math.unit(15, "feet"),
  20753. weight: math.unit(3280, "lb"),
  20754. name: "Back (Nude)",
  20755. image: {
  20756. source: "./media/characters/sapphy/back-nude.svg",
  20757. extra: 2058/1918,
  20758. bottom: 125/2183
  20759. },
  20760. form: "anthro"
  20761. },
  20762. full: {
  20763. height: math.unit(15, "feet"),
  20764. weight: math.unit(3280, "lb"),
  20765. name: "Full",
  20766. image: {
  20767. source: "./media/characters/sapphy/full.svg",
  20768. extra: 1396/1317,
  20769. bottom: 44/1440
  20770. },
  20771. form: "anthro"
  20772. },
  20773. dick: {
  20774. height: math.unit(3.8, "feet"),
  20775. name: "Dick",
  20776. image: {
  20777. source: "./media/characters/sapphy/dick.svg"
  20778. },
  20779. form: "anthro"
  20780. },
  20781. feral: {
  20782. height: math.unit(35, "feet"),
  20783. weight: math.unit(160, "tons"),
  20784. name: "Feral",
  20785. image: {
  20786. source: "./media/characters/sapphy/feral.svg",
  20787. extra: 1050/573,
  20788. bottom: 60/1110
  20789. },
  20790. form: "feral",
  20791. default: true
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(15, "feet"),
  20798. form: "anthro"
  20799. },
  20800. {
  20801. name: "Casual Macro",
  20802. height: math.unit(120, "feet"),
  20803. form: "anthro"
  20804. },
  20805. {
  20806. name: "Macro",
  20807. height: math.unit(2150, "feet"),
  20808. default: true,
  20809. form: "anthro"
  20810. },
  20811. {
  20812. name: "Megamacro",
  20813. height: math.unit(8, "miles"),
  20814. form: "anthro"
  20815. },
  20816. {
  20817. name: "Galaxy Mom",
  20818. height: math.unit(6, "megalightyears"),
  20819. form: "anthro"
  20820. },
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(35, "feet"),
  20824. form: "feral",
  20825. default: true
  20826. },
  20827. {
  20828. name: "Macro",
  20829. height: math.unit(300, "feet"),
  20830. form: "feral"
  20831. },
  20832. {
  20833. name: "Galaxy Mom",
  20834. height: math.unit(10, "megalightyears"),
  20835. form: "feral"
  20836. },
  20837. ],
  20838. {
  20839. "anthro": {
  20840. name: "Anthro",
  20841. default: true
  20842. },
  20843. "feral": {
  20844. name: "Feral"
  20845. }
  20846. }
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20850. {
  20851. hyenaFront: {
  20852. height: math.unit(6, "feet"),
  20853. weight: math.unit(190, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/kiro/hyena-front.svg",
  20857. extra: 927/839,
  20858. bottom: 91/1018
  20859. },
  20860. form: "hyena",
  20861. default: true
  20862. },
  20863. front: {
  20864. height: math.unit(6, "feet"),
  20865. weight: math.unit(170, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/kiro/front.svg",
  20869. extra: 1064 / 1012,
  20870. bottom: 0.052
  20871. },
  20872. form: "folf",
  20873. default: true
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Micro",
  20879. height: math.unit(6, "inches"),
  20880. form: "folf"
  20881. },
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(6, "feet"),
  20885. form: "folf",
  20886. default: true
  20887. },
  20888. {
  20889. name: "Macro",
  20890. height: math.unit(72, "feet"),
  20891. form: "folf"
  20892. },
  20893. {
  20894. name: "Micro",
  20895. height: math.unit(6, "inches"),
  20896. form: "hyena"
  20897. },
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(6, "feet"),
  20901. form: "hyena",
  20902. default: true
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(72, "feet"),
  20907. form: "hyena"
  20908. },
  20909. ],
  20910. {
  20911. "hyena": {
  20912. name: "Hyena",
  20913. default: true
  20914. },
  20915. "folf": {
  20916. name: "Folf",
  20917. },
  20918. }
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(175, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/irishfox/front.svg",
  20929. extra: 1912 / 1680,
  20930. bottom: 0.02
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Nano",
  20937. height: math.unit(1, "mm")
  20938. },
  20939. {
  20940. name: "Micro",
  20941. height: math.unit(2, "inches")
  20942. },
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(5 + 9 / 12, "feet"),
  20946. default: true
  20947. },
  20948. {
  20949. name: "Macro",
  20950. height: math.unit(45, "feet")
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(6 + 1 / 12, "feet"),
  20959. weight: math.unit(75, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/aronai-sieyes/front.svg",
  20963. extra: 1532/1450,
  20964. bottom: 42/1574
  20965. }
  20966. },
  20967. side: {
  20968. height: math.unit(6 + 1 / 12, "feet"),
  20969. weight: math.unit(75, "lb"),
  20970. name: "Side",
  20971. image: {
  20972. source: "./media/characters/aronai-sieyes/side.svg",
  20973. extra: 1422/1365,
  20974. bottom: 148/1570
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(6 + 1 / 12, "feet"),
  20979. weight: math.unit(75, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/aronai-sieyes/back.svg",
  20983. extra: 1526/1464,
  20984. bottom: 51/1577
  20985. }
  20986. },
  20987. dressed: {
  20988. height: math.unit(6 + 1 / 12, "feet"),
  20989. weight: math.unit(75, "lb"),
  20990. name: "Dressed",
  20991. image: {
  20992. source: "./media/characters/aronai-sieyes/dressed.svg",
  20993. extra: 1559/1483,
  20994. bottom: 39/1598
  20995. }
  20996. },
  20997. slit: {
  20998. height: math.unit(1.3, "feet"),
  20999. name: "Slit",
  21000. image: {
  21001. source: "./media/characters/aronai-sieyes/slit.svg"
  21002. }
  21003. },
  21004. slitSpread: {
  21005. height: math.unit(0.9, "feet"),
  21006. name: "Slit (Spread)",
  21007. image: {
  21008. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21009. }
  21010. },
  21011. rump: {
  21012. height: math.unit(1.3, "feet"),
  21013. name: "Rump",
  21014. image: {
  21015. source: "./media/characters/aronai-sieyes/rump.svg"
  21016. }
  21017. },
  21018. maw: {
  21019. height: math.unit(1.25, "feet"),
  21020. name: "Maw",
  21021. image: {
  21022. source: "./media/characters/aronai-sieyes/maw.svg"
  21023. }
  21024. },
  21025. feral: {
  21026. height: math.unit(18, "feet"),
  21027. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21028. name: "Feral",
  21029. image: {
  21030. source: "./media/characters/aronai-sieyes/feral.svg",
  21031. extra: 1530 / 1240,
  21032. bottom: 0.035
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Micro",
  21039. height: math.unit(2, "inches")
  21040. },
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(6 + 1 / 12, "feet"),
  21044. default: true
  21045. }
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(12, "feet"),
  21053. weight: math.unit(410, "kg"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/xuna/front.svg",
  21057. extra: 2184 / 1980
  21058. }
  21059. },
  21060. side: {
  21061. height: math.unit(12, "feet"),
  21062. weight: math.unit(410, "kg"),
  21063. name: "Side",
  21064. image: {
  21065. source: "./media/characters/xuna/side.svg",
  21066. extra: 2184 / 1980
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(12, "feet"),
  21071. weight: math.unit(410, "kg"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/xuna/back.svg",
  21075. extra: 2184 / 1980
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Nano glow",
  21082. height: math.unit(10, "nm")
  21083. },
  21084. {
  21085. name: "Micro floof",
  21086. height: math.unit(0.3, "m")
  21087. },
  21088. {
  21089. name: "Huggable softy boi",
  21090. height: math.unit(3.6576, "m"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Admirable floof",
  21095. height: math.unit(80, "meters")
  21096. },
  21097. {
  21098. name: "Gentle macro",
  21099. height: math.unit(300, "meters")
  21100. },
  21101. {
  21102. name: "Very careful floof",
  21103. height: math.unit(3200, "meters")
  21104. },
  21105. {
  21106. name: "The mega floof",
  21107. height: math.unit(36000, "meters")
  21108. },
  21109. {
  21110. name: "Giga-fur-Wicker",
  21111. height: math.unit(4800000, "meters")
  21112. },
  21113. {
  21114. name: "Licky world",
  21115. height: math.unit(20000000, "meters")
  21116. },
  21117. {
  21118. name: "Floofy cyan sun",
  21119. height: math.unit(1500000000, "meters")
  21120. },
  21121. {
  21122. name: "Milky Wicker",
  21123. height: math.unit(1000000000000000000000, "meters")
  21124. },
  21125. {
  21126. name: "The observing Wicker",
  21127. height: math.unit(999999999999999999999999999, "meters")
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(5 + 9 / 12, "feet"),
  21136. weight: math.unit(150, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/arokha-sieyes/front.svg",
  21140. extra: 1425 / 1284,
  21141. bottom: 0.05
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Normal",
  21148. height: math.unit(5 + 9 / 12, "feet")
  21149. },
  21150. {
  21151. name: "Macro",
  21152. height: math.unit(30, "meters"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(6, "feet"),
  21162. weight: math.unit(180, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/arokh-sieyes/front.svg",
  21166. extra: 1830 / 1769,
  21167. bottom: 0.01
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(6, "feet")
  21175. },
  21176. {
  21177. name: "Macro",
  21178. height: math.unit(30, "meters"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21185. {
  21186. side: {
  21187. height: math.unit(13 + 1 / 12, "feet"),
  21188. weight: math.unit(8.5, "tonnes"),
  21189. preyCapacity: math.unit(36, "people"),
  21190. name: "Side",
  21191. image: {
  21192. source: "./media/characters/goldeneye/side.svg",
  21193. extra: 1139/741,
  21194. bottom: 98/1237
  21195. }
  21196. },
  21197. front: {
  21198. height: math.unit(5.1, "feet"),
  21199. weight: math.unit(8.5, "tonnes"),
  21200. preyCapacity: math.unit(36, "people"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/goldeneye/front.svg",
  21204. extra: 635/365,
  21205. bottom: 598/1233
  21206. }
  21207. },
  21208. maw: {
  21209. height: math.unit(6.6, "feet"),
  21210. name: "Maw",
  21211. image: {
  21212. source: "./media/characters/goldeneye/maw.svg"
  21213. }
  21214. },
  21215. headFront: {
  21216. height: math.unit(8, "feet"),
  21217. name: "Head (Front)",
  21218. image: {
  21219. source: "./media/characters/goldeneye/head-front.svg"
  21220. }
  21221. },
  21222. headSide: {
  21223. height: math.unit(6, "feet"),
  21224. name: "Head (Side)",
  21225. image: {
  21226. source: "./media/characters/goldeneye/head-side.svg"
  21227. }
  21228. },
  21229. headBack: {
  21230. height: math.unit(8, "feet"),
  21231. name: "Head (Back)",
  21232. image: {
  21233. source: "./media/characters/goldeneye/head-back.svg"
  21234. }
  21235. },
  21236. paw: {
  21237. height: math.unit(3.4, "feet"),
  21238. name: "Paw",
  21239. image: {
  21240. source: "./media/characters/goldeneye/paw.svg"
  21241. }
  21242. },
  21243. toering: {
  21244. height: math.unit(0.45, "feet"),
  21245. name: "Toering",
  21246. image: {
  21247. source: "./media/characters/goldeneye/toering.svg"
  21248. }
  21249. },
  21250. eyes: {
  21251. height: math.unit(0.5, "feet"),
  21252. name: "Eyes",
  21253. image: {
  21254. source: "./media/characters/goldeneye/eyes.svg"
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(13 + 1 / 12, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21268. {
  21269. front: {
  21270. height: math.unit(6 + 1 / 12, "feet"),
  21271. weight: math.unit(210, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/leonardo-lycheborne/front.svg",
  21275. extra: 776/723,
  21276. bottom: 34/810
  21277. }
  21278. },
  21279. side: {
  21280. height: math.unit(6 + 1 / 12, "feet"),
  21281. weight: math.unit(210, "lb"),
  21282. name: "Side",
  21283. image: {
  21284. source: "./media/characters/leonardo-lycheborne/side.svg",
  21285. extra: 780/728,
  21286. bottom: 12/792
  21287. }
  21288. },
  21289. back: {
  21290. height: math.unit(6 + 1 / 12, "feet"),
  21291. weight: math.unit(210, "lb"),
  21292. name: "Back",
  21293. image: {
  21294. source: "./media/characters/leonardo-lycheborne/back.svg",
  21295. extra: 775/721,
  21296. bottom: 17/792
  21297. }
  21298. },
  21299. hand: {
  21300. height: math.unit(1.08, "feet"),
  21301. name: "Hand",
  21302. image: {
  21303. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21304. }
  21305. },
  21306. foot: {
  21307. height: math.unit(1.32, "feet"),
  21308. name: "Foot",
  21309. image: {
  21310. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21311. }
  21312. },
  21313. maw: {
  21314. height: math.unit(1, "feet"),
  21315. name: "Maw",
  21316. image: {
  21317. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21318. }
  21319. },
  21320. were: {
  21321. height: math.unit(20, "feet"),
  21322. weight: math.unit(7800, "lb"),
  21323. name: "Were",
  21324. image: {
  21325. source: "./media/characters/leonardo-lycheborne/were.svg",
  21326. extra: 1224/1165,
  21327. bottom: 72/1296
  21328. }
  21329. },
  21330. feral: {
  21331. height: math.unit(7.5, "feet"),
  21332. weight: math.unit(600, "lb"),
  21333. name: "Feral",
  21334. image: {
  21335. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21336. extra: 797/702,
  21337. bottom: 139/936
  21338. }
  21339. },
  21340. taur: {
  21341. height: math.unit(11, "feet"),
  21342. weight: math.unit(3300, "lb"),
  21343. name: "Taur",
  21344. image: {
  21345. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21346. extra: 1271/1197,
  21347. bottom: 47/1318
  21348. }
  21349. },
  21350. barghest: {
  21351. height: math.unit(11, "feet"),
  21352. weight: math.unit(1300, "lb"),
  21353. name: "Barghest",
  21354. image: {
  21355. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21356. extra: 1291/1204,
  21357. bottom: 37/1328
  21358. }
  21359. },
  21360. dick: {
  21361. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21362. name: "Dick",
  21363. image: {
  21364. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21365. }
  21366. },
  21367. dickWere: {
  21368. height: math.unit((20) / 3.8, "feet"),
  21369. name: "Dick (Were)",
  21370. image: {
  21371. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(6 + 1 / 12, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(10, "feet"),
  21388. weight: math.unit(350, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/jet/front.svg",
  21392. extra: 2050 / 1980,
  21393. bottom: 0.013
  21394. }
  21395. },
  21396. back: {
  21397. height: math.unit(10, "feet"),
  21398. weight: math.unit(350, "lb"),
  21399. name: "Back",
  21400. image: {
  21401. source: "./media/characters/jet/back.svg",
  21402. extra: 2050 / 1980,
  21403. bottom: 0.013
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Micro",
  21410. height: math.unit(6, "inches")
  21411. },
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(10, "feet"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(100, "feet")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(15, "feet"),
  21428. weight: math.unit(2800, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/tanarath/front.svg",
  21432. extra: 2392 / 2220,
  21433. bottom: 0.03
  21434. }
  21435. },
  21436. back: {
  21437. height: math.unit(15, "feet"),
  21438. weight: math.unit(2800, "lb"),
  21439. name: "Back",
  21440. image: {
  21441. source: "./media/characters/tanarath/back.svg",
  21442. extra: 2392 / 2220,
  21443. bottom: 0.03
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(15, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(7 + 1 / 12, "feet"),
  21460. weight: math.unit(175, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/patty-cattybatty/front.svg",
  21464. extra: 908 / 874,
  21465. bottom: 0.025
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Micro",
  21472. height: math.unit(1, "inch")
  21473. },
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(7 + 1 / 12, "feet")
  21477. },
  21478. {
  21479. name: "Mini Macro",
  21480. height: math.unit(155, "feet")
  21481. },
  21482. {
  21483. name: "Macro",
  21484. height: math.unit(1077, "feet")
  21485. },
  21486. {
  21487. name: "Mega Macro",
  21488. height: math.unit(47650, "feet"),
  21489. default: true
  21490. },
  21491. {
  21492. name: "Giga Macro",
  21493. height: math.unit(440, "miles")
  21494. },
  21495. {
  21496. name: "Tera Macro",
  21497. height: math.unit(8700, "miles")
  21498. },
  21499. {
  21500. name: "Planetary Macro",
  21501. height: math.unit(32700, "miles")
  21502. },
  21503. {
  21504. name: "Solar Macro",
  21505. height: math.unit(550000, "miles")
  21506. },
  21507. {
  21508. name: "Celestial Macro",
  21509. height: math.unit(2.5, "AU")
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(4 + 5 / 12, "feet"),
  21518. weight: math.unit(90, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/cappu/front.svg",
  21522. extra: 1247 / 1152,
  21523. bottom: 0.012
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(4 + 5 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21537. {
  21538. frontDressed: {
  21539. height: math.unit(70, "cm"),
  21540. weight: math.unit(6, "kg"),
  21541. name: "Front (Dressed)",
  21542. image: {
  21543. source: "./media/characters/sebi/front-dressed.svg",
  21544. extra: 713.5 / 686.5,
  21545. bottom: 0.003
  21546. }
  21547. },
  21548. front: {
  21549. height: math.unit(70, "cm"),
  21550. weight: math.unit(5, "kg"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/sebi/front.svg",
  21554. extra: 713.5 / 686.5,
  21555. bottom: 0.003
  21556. }
  21557. }
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(70, "cm"),
  21563. default: true
  21564. },
  21565. {
  21566. name: "Macro",
  21567. height: math.unit(8, "meters")
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(6, "feet"),
  21576. weight: math.unit(150, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/typhek/front.svg",
  21580. extra: 1948 / 1929,
  21581. bottom: 0.025
  21582. }
  21583. },
  21584. side: {
  21585. height: math.unit(6, "feet"),
  21586. weight: math.unit(150, "lb"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/typhek/side.svg",
  21590. extra: 2034 / 2010,
  21591. bottom: 0.003
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(6, "feet"),
  21596. weight: math.unit(150, "lb"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/typhek/back.svg",
  21600. extra: 2005 / 1978,
  21601. bottom: 0.004
  21602. }
  21603. },
  21604. palm: {
  21605. height: math.unit(1.2, "feet"),
  21606. name: "Palm",
  21607. image: {
  21608. source: "./media/characters/typhek/palm.svg"
  21609. }
  21610. },
  21611. fist: {
  21612. height: math.unit(1.1, "feet"),
  21613. name: "Fist",
  21614. image: {
  21615. source: "./media/characters/typhek/fist.svg"
  21616. }
  21617. },
  21618. foot: {
  21619. height: math.unit(1.57, "feet"),
  21620. name: "Foot",
  21621. image: {
  21622. source: "./media/characters/typhek/foot.svg"
  21623. }
  21624. },
  21625. sole: {
  21626. height: math.unit(2.05, "feet"),
  21627. name: "Sole",
  21628. image: {
  21629. source: "./media/characters/typhek/sole.svg"
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(40, "stories"),
  21637. default: true
  21638. },
  21639. {
  21640. name: "Megamacro",
  21641. height: math.unit(1, "mile")
  21642. },
  21643. {
  21644. name: "Gigamacro",
  21645. height: math.unit(4000, "solarradii")
  21646. },
  21647. {
  21648. name: "Universal",
  21649. height: math.unit(1.1, "universes")
  21650. }
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21655. {
  21656. side: {
  21657. height: math.unit(5 + 7 / 12, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Side",
  21660. image: {
  21661. source: "./media/characters/kassy/side.svg",
  21662. extra: 1280 / 1225,
  21663. bottom: 0.002
  21664. }
  21665. },
  21666. front: {
  21667. height: math.unit(5 + 7 / 12, "feet"),
  21668. weight: math.unit(150, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/kassy/front.svg",
  21672. extra: 1280 / 1225,
  21673. bottom: 0.025
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(5 + 7 / 12, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/kassy/back.svg",
  21682. extra: 1280 / 1225,
  21683. bottom: 0.002
  21684. }
  21685. },
  21686. foot: {
  21687. height: math.unit(1.266, "feet"),
  21688. name: "Foot",
  21689. image: {
  21690. source: "./media/characters/kassy/foot.svg"
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(5 + 7 / 12, "feet")
  21698. },
  21699. {
  21700. name: "Macro",
  21701. height: math.unit(137, "feet"),
  21702. default: true
  21703. },
  21704. {
  21705. name: "Megamacro",
  21706. height: math.unit(1, "mile")
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21712. {
  21713. front: {
  21714. height: math.unit(6 + 1 / 12, "feet"),
  21715. weight: math.unit(200, "lb"),
  21716. name: "Front",
  21717. image: {
  21718. source: "./media/characters/neil/front.svg",
  21719. extra: 1326 / 1250,
  21720. bottom: 0.023
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(6 + 1 / 12, "feet"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(200, "feet")
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(5 + 9 / 12, "feet"),
  21741. weight: math.unit(190, "lb"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/atticus/front.svg",
  21745. extra: 2934 / 2785,
  21746. bottom: 0.025
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(5 + 9 / 12, "feet"),
  21754. default: true
  21755. },
  21756. {
  21757. name: "Macro",
  21758. height: math.unit(180, "feet")
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21764. {
  21765. side: {
  21766. height: math.unit(9, "feet"),
  21767. weight: math.unit(650, "lb"),
  21768. name: "Side",
  21769. image: {
  21770. source: "./media/characters/milo/side.svg",
  21771. extra: 2644 / 2310,
  21772. bottom: 0.032
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(9, "feet"),
  21780. default: true
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(300, "feet")
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21790. {
  21791. side: {
  21792. height: math.unit(8, "meters"),
  21793. weight: math.unit(90000, "kg"),
  21794. name: "Side",
  21795. image: {
  21796. source: "./media/characters/ijzer/side.svg",
  21797. extra: 2756 / 1600,
  21798. bottom: 0.01
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Small",
  21805. height: math.unit(3, "meters")
  21806. },
  21807. {
  21808. name: "Normal",
  21809. height: math.unit(8, "meters"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Normal+",
  21814. height: math.unit(10, "meters")
  21815. },
  21816. {
  21817. name: "Bigger",
  21818. height: math.unit(24, "meters")
  21819. },
  21820. {
  21821. name: "Huge",
  21822. height: math.unit(80, "meters")
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(6 + 2 / 12, "feet"),
  21831. weight: math.unit(153, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/luca-cervicum/front.svg",
  21835. extra: 370 / 327,
  21836. bottom: 0.015
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(6 + 2 / 12, "feet"),
  21841. weight: math.unit(153, "lb"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/luca-cervicum/back.svg",
  21845. extra: 367 / 333,
  21846. bottom: 0.005
  21847. }
  21848. },
  21849. frontGear: {
  21850. height: math.unit(6 + 2 / 12, "feet"),
  21851. weight: math.unit(173, "lb"),
  21852. name: "Front (Gear)",
  21853. image: {
  21854. source: "./media/characters/luca-cervicum/front-gear.svg",
  21855. extra: 377 / 333,
  21856. bottom: 0.006
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(6 + 2 / 12, "feet"),
  21864. default: true
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(6 + 1 / 12, "feet"),
  21873. weight: math.unit(304, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/oliver/front.svg",
  21877. extra: 157 / 143,
  21878. bottom: 0.08
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(6 + 1 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(5 + 7 / 12, "feet"),
  21895. weight: math.unit(140, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/shane/front.svg",
  21899. extra: 304 / 289,
  21900. bottom: 0.005
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(5 + 7 / 12, "feet"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(5 + 9 / 12, "feet"),
  21917. weight: math.unit(178, "lb"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/shin/front.svg",
  21921. extra: 159 / 151,
  21922. bottom: 0.015
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(5 + 9 / 12, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(5 + 10 / 12, "feet"),
  21939. weight: math.unit(168, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/xerxes/front.svg",
  21943. extra: 282 / 260,
  21944. bottom: 0.045
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(5 + 10 / 12, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(6 + 7 / 12, "feet"),
  21961. weight: math.unit(208, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/chaska/front.svg",
  21965. extra: 332 / 319,
  21966. bottom: 0.015
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(6 + 7 / 12, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(5 + 8 / 12, "feet"),
  21983. weight: math.unit(208, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/enuk/front.svg",
  21987. extra: 437 / 406,
  21988. bottom: 0.02
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(5 + 8 / 12, "feet"),
  21996. default: true
  21997. },
  21998. ]
  21999. ))
  22000. characterMakers.push(() => makeCharacter(
  22001. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22002. {
  22003. front: {
  22004. height: math.unit(5 + 10 / 12, "feet"),
  22005. weight: math.unit(252, "lb"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/bruun/front.svg",
  22009. extra: 197 / 187,
  22010. bottom: 0.012
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(5 + 10 / 12, "feet"),
  22018. default: true
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(6 + 10 / 12, "feet"),
  22027. weight: math.unit(255, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/alexeev/front.svg",
  22031. extra: 213 / 200,
  22032. bottom: 0.05
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(6 + 10 / 12, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(2 + 8 / 12, "feet"),
  22049. weight: math.unit(22, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/evelyn/front.svg",
  22053. extra: 208 / 180
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Normal",
  22060. height: math.unit(2 + 8 / 12, "feet"),
  22061. default: true
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(5 + 9 / 12, "feet"),
  22070. weight: math.unit(139, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/inca/front.svg",
  22074. extra: 294 / 291,
  22075. bottom: 0.03
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(5 + 9 / 12, "feet"),
  22083. default: true
  22084. },
  22085. ]
  22086. ))
  22087. characterMakers.push(() => makeCharacter(
  22088. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22089. {
  22090. front: {
  22091. height: math.unit(6 + 3 / 12, "feet"),
  22092. weight: math.unit(185, "lb"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/mera/front.svg",
  22096. extra: 291 / 277,
  22097. bottom: 0.03
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(6 + 3 / 12, "feet"),
  22105. default: true
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(6 + 7 / 12, "feet"),
  22114. weight: math.unit(160, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/ceres/front.svg",
  22118. extra: 1023 / 950,
  22119. bottom: 0.027
  22120. }
  22121. },
  22122. back: {
  22123. height: math.unit(6 + 7 / 12, "feet"),
  22124. weight: math.unit(160, "lb"),
  22125. name: "Back",
  22126. image: {
  22127. source: "./media/characters/ceres/back.svg",
  22128. extra: 1023 / 950
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(6 + 7 / 12, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(5 + 10 / 12, "feet"),
  22145. weight: math.unit(150, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/kris/front.svg",
  22149. extra: 885 / 803,
  22150. bottom: 0.03
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(5 + 10 / 12, "feet"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22164. {
  22165. dragon_front: {
  22166. height: math.unit(5, "feet"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/taluthus/dragon-front.svg",
  22170. extra: 1203/1098,
  22171. bottom: 46/1249
  22172. },
  22173. form: "dragon",
  22174. default: true
  22175. },
  22176. dragon_maw: {
  22177. height: math.unit(2.35, "feet"),
  22178. name: "Maw",
  22179. image: {
  22180. source: "./media/characters/taluthus/dragon-maw.svg"
  22181. },
  22182. form: "dragon",
  22183. },
  22184. kitsune_front: {
  22185. height: math.unit(7, "feet"),
  22186. name: "Front",
  22187. image: {
  22188. source: "./media/characters/taluthus/kitsune-front.svg",
  22189. extra: 900/841,
  22190. bottom: 65/965
  22191. },
  22192. form: "kitsune",
  22193. default: true
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(5, "feet"),
  22200. form: "dragon",
  22201. default: true,
  22202. },
  22203. {
  22204. name: "Normal",
  22205. height: math.unit(7, "feet"),
  22206. form: "kitsune",
  22207. default: true
  22208. },
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(300, "feet"),
  22212. allForms: true
  22213. },
  22214. ],
  22215. {
  22216. "dragon": {
  22217. name: "Dragon",
  22218. default: true
  22219. },
  22220. "kitsune": {
  22221. name: "Kitsune",
  22222. },
  22223. }
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(5 + 9 / 12, "feet"),
  22230. weight: math.unit(145, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/dawn/front.svg",
  22234. extra: 2094 / 2016,
  22235. bottom: 0.025
  22236. }
  22237. },
  22238. back: {
  22239. height: math.unit(5 + 9 / 12, "feet"),
  22240. weight: math.unit(160, "lb"),
  22241. name: "Back",
  22242. image: {
  22243. source: "./media/characters/dawn/back.svg",
  22244. extra: 2112 / 2080,
  22245. bottom: 0.005
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(6 + 7 / 12, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22259. {
  22260. anthro: {
  22261. height: math.unit(8 + 3 / 12, "feet"),
  22262. weight: math.unit(450, "lb"),
  22263. name: "Anthro",
  22264. image: {
  22265. source: "./media/characters/arador/anthro.svg",
  22266. extra: 1835 / 1718,
  22267. bottom: 0.025
  22268. }
  22269. },
  22270. feral: {
  22271. height: math.unit(4, "feet"),
  22272. weight: math.unit(200, "lb"),
  22273. name: "Feral",
  22274. image: {
  22275. source: "./media/characters/arador/feral.svg",
  22276. extra: 1683 / 1514,
  22277. bottom: 0.07
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(8 + 3 / 12, "feet")
  22285. },
  22286. {
  22287. name: "Macro",
  22288. height: math.unit(82.5, "feet"),
  22289. default: true
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(5 + 10 / 12, "feet"),
  22298. weight: math.unit(125, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/dharsi/front.svg",
  22302. extra: 716 / 630,
  22303. bottom: 0.035
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Nano",
  22310. height: math.unit(100, "nm")
  22311. },
  22312. {
  22313. name: "Micro",
  22314. height: math.unit(2, "inches")
  22315. },
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(5 + 10 / 12, "feet"),
  22319. default: true
  22320. },
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(1000, "feet")
  22324. },
  22325. {
  22326. name: "Megamacro",
  22327. height: math.unit(10, "miles")
  22328. },
  22329. {
  22330. name: "Gigamacro",
  22331. height: math.unit(3000, "miles")
  22332. },
  22333. {
  22334. name: "Teramacro",
  22335. height: math.unit(500000, "miles")
  22336. },
  22337. {
  22338. name: "Teramacro+",
  22339. height: math.unit(30, "galaxies")
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(6, "feet"),
  22348. weight: math.unit(150, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/deathy/front.svg",
  22352. extra: 1552 / 1463,
  22353. bottom: 0.025
  22354. }
  22355. },
  22356. side: {
  22357. height: math.unit(6, "feet"),
  22358. weight: math.unit(150, "lb"),
  22359. name: "Side",
  22360. image: {
  22361. source: "./media/characters/deathy/side.svg",
  22362. extra: 1604 / 1455,
  22363. bottom: 0.025
  22364. }
  22365. },
  22366. back: {
  22367. height: math.unit(6, "feet"),
  22368. weight: math.unit(150, "lb"),
  22369. name: "Back",
  22370. image: {
  22371. source: "./media/characters/deathy/back.svg",
  22372. extra: 1580 / 1463,
  22373. bottom: 0.005
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Micro",
  22380. height: math.unit(5, "millimeters")
  22381. },
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(6 + 5 / 12, "feet"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22391. {
  22392. front: {
  22393. height: math.unit(16, "feet"),
  22394. weight: math.unit(4000, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/juniper/front.svg",
  22398. bottom: 0.04
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(16, "feet"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(6, "feet"),
  22415. weight: math.unit(150, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/hipster/front.svg",
  22419. extra: 1312 / 1209,
  22420. bottom: 0.025
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(150, "lb"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/hipster/back.svg",
  22429. extra: 1281 / 1196,
  22430. bottom: 0.01
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Micro",
  22437. height: math.unit(1, "mm")
  22438. },
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(4, "inches"),
  22442. default: true
  22443. },
  22444. {
  22445. name: "Macro",
  22446. height: math.unit(500, "feet")
  22447. },
  22448. {
  22449. name: "Megamacro",
  22450. height: math.unit(1000, "miles")
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(6, "feet"),
  22459. weight: math.unit(150, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/tendirmuldr/front.svg",
  22463. extra: 1878 / 1772,
  22464. bottom: 0.015
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Megamacro",
  22471. height: math.unit(1500, "miles"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22478. {
  22479. front: {
  22480. height: math.unit(14, "feet"),
  22481. weight: math.unit(12000, "lb"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/mort/front.svg",
  22485. extra: 365 / 318,
  22486. bottom: 0.01
  22487. }
  22488. },
  22489. side: {
  22490. height: math.unit(14, "feet"),
  22491. weight: math.unit(12000, "lb"),
  22492. name: "Side",
  22493. image: {
  22494. source: "./media/characters/mort/side.svg",
  22495. extra: 365 / 318,
  22496. bottom: 0.052
  22497. },
  22498. default: true
  22499. },
  22500. back: {
  22501. height: math.unit(14, "feet"),
  22502. weight: math.unit(12000, "lb"),
  22503. name: "Back",
  22504. image: {
  22505. source: "./media/characters/mort/back.svg",
  22506. extra: 371 / 332,
  22507. bottom: 0.18
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(14, "feet"),
  22515. default: true
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22521. {
  22522. front: {
  22523. height: math.unit(8, "feet"),
  22524. weight: math.unit(1, "ton"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/lycoa/front.svg",
  22528. extra: 1836/1728,
  22529. bottom: 81/1917
  22530. }
  22531. },
  22532. back: {
  22533. height: math.unit(8, "feet"),
  22534. weight: math.unit(1, "ton"),
  22535. name: "Back",
  22536. image: {
  22537. source: "./media/characters/lycoa/back.svg",
  22538. extra: 1785/1720,
  22539. bottom: 91/1876
  22540. }
  22541. },
  22542. head: {
  22543. height: math.unit(1.6243, "feet"),
  22544. name: "Head",
  22545. image: {
  22546. source: "./media/characters/lycoa/head.svg",
  22547. extra: 1011/782,
  22548. bottom: 0/1011
  22549. }
  22550. },
  22551. tailmaw: {
  22552. height: math.unit(1.9, "feet"),
  22553. name: "Tailmaw",
  22554. image: {
  22555. source: "./media/characters/lycoa/tailmaw.svg"
  22556. }
  22557. },
  22558. tentacles: {
  22559. height: math.unit(2.1, "feet"),
  22560. name: "Tentacles",
  22561. image: {
  22562. source: "./media/characters/lycoa/tentacles.svg"
  22563. }
  22564. },
  22565. dick: {
  22566. height: math.unit(1.73, "feet"),
  22567. name: "Dick",
  22568. image: {
  22569. source: "./media/characters/lycoa/dick.svg"
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(8, "feet"),
  22577. default: true
  22578. },
  22579. {
  22580. name: "Macro",
  22581. height: math.unit(30, "feet")
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22587. {
  22588. front: {
  22589. height: math.unit(4 + 2 / 12, "feet"),
  22590. weight: math.unit(70, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/naldara/front.svg",
  22594. extra: 1664/1387,
  22595. bottom: 81/1745
  22596. },
  22597. form: "anthro",
  22598. default: true
  22599. },
  22600. naga: {
  22601. height: math.unit(20, "feet"),
  22602. weight: math.unit(15000, "kg"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/naldara/naga.svg",
  22606. extra: 1590/1396,
  22607. bottom: 285/1875
  22608. },
  22609. form: "naga",
  22610. default: true
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(4 + 2 / 12, "feet"),
  22617. form: "anthro",
  22618. default: true
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(20, "feet"),
  22623. form: "naga",
  22624. default: true
  22625. },
  22626. ],
  22627. {
  22628. "anthro": {
  22629. name: "Anthro",
  22630. default: true
  22631. },
  22632. "naga": {
  22633. name: "Naga"
  22634. }
  22635. }
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22639. {
  22640. front: {
  22641. height: math.unit(13 + 7 / 12, "feet"),
  22642. weight: math.unit(1500, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/briar/front.svg",
  22646. extra: 1223/1157,
  22647. bottom: 123/1346
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(13 + 7 / 12, "feet"),
  22655. default: true
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22661. {
  22662. side: {
  22663. height: math.unit(16, "feet"),
  22664. weight: math.unit(500, "lb"),
  22665. name: "Side",
  22666. image: {
  22667. source: "./media/characters/vanguard/side.svg",
  22668. extra: 1022/914,
  22669. bottom: 30/1052
  22670. }
  22671. },
  22672. sideAlt: {
  22673. height: math.unit(10, "feet"),
  22674. weight: math.unit(500, "lb"),
  22675. name: "Side (Alt)",
  22676. image: {
  22677. source: "./media/characters/vanguard/side-alt.svg",
  22678. extra: 502 / 425,
  22679. bottom: 0.087
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(17.71, "feet"),
  22687. default: true
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(7.5, "feet"),
  22696. weight: math.unit(2, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/artemis/work-safe-front.svg",
  22700. extra: 1192 / 1075,
  22701. bottom: 0.07
  22702. },
  22703. form: "work-safe",
  22704. default: true
  22705. },
  22706. frontNsfw: {
  22707. height: math.unit(7.5, "feet"),
  22708. weight: math.unit(2, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/artemis/calibrating-front.svg",
  22712. extra: 1192 / 1075,
  22713. bottom: 0.07
  22714. },
  22715. form: "calibrating",
  22716. default: true
  22717. },
  22718. frontNsfwer: {
  22719. height: math.unit(7.5, "feet"),
  22720. weight: math.unit(2, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/artemis/oversize-load-front.svg",
  22724. extra: 1192 / 1075,
  22725. bottom: 0.07
  22726. },
  22727. form: "oversize-load",
  22728. default: true
  22729. },
  22730. side: {
  22731. height: math.unit(7.5, "feet"),
  22732. weight: math.unit(2, "lb"),
  22733. name: "Side",
  22734. image: {
  22735. source: "./media/characters/artemis/work-safe-side.svg",
  22736. extra: 1192 / 1075,
  22737. bottom: 0.07
  22738. },
  22739. form: "work-safe"
  22740. },
  22741. sideNsfw: {
  22742. height: math.unit(7.5, "feet"),
  22743. weight: math.unit(2, "lb"),
  22744. name: "Side",
  22745. image: {
  22746. source: "./media/characters/artemis/calibrating-side.svg",
  22747. extra: 1192 / 1075,
  22748. bottom: 0.07
  22749. },
  22750. form: "calibrating"
  22751. },
  22752. sideNsfwer: {
  22753. height: math.unit(7.5, "feet"),
  22754. weight: math.unit(2, "lb"),
  22755. name: "Side",
  22756. image: {
  22757. source: "./media/characters/artemis/oversize-load-side.svg",
  22758. extra: 1192 / 1075,
  22759. bottom: 0.07
  22760. },
  22761. form: "oversize-load"
  22762. },
  22763. maw: {
  22764. height: math.unit(1.1, "feet"),
  22765. name: "Maw",
  22766. image: {
  22767. source: "./media/characters/artemis/maw.svg"
  22768. },
  22769. form: "work-safe"
  22770. },
  22771. stomach: {
  22772. height: math.unit(0.95, "feet"),
  22773. name: "Stomach",
  22774. image: {
  22775. source: "./media/characters/artemis/stomach.svg"
  22776. },
  22777. form: "work-safe"
  22778. },
  22779. dickCanine: {
  22780. height: math.unit(1, "feet"),
  22781. name: "Dick (Canine)",
  22782. image: {
  22783. source: "./media/characters/artemis/dick-canine.svg"
  22784. },
  22785. form: "calibrating"
  22786. },
  22787. dickEquine: {
  22788. height: math.unit(0.85, "feet"),
  22789. name: "Dick (Equine)",
  22790. image: {
  22791. source: "./media/characters/artemis/dick-equine.svg"
  22792. },
  22793. form: "calibrating"
  22794. },
  22795. dickExotic: {
  22796. height: math.unit(0.85, "feet"),
  22797. name: "Dick (Exotic)",
  22798. image: {
  22799. source: "./media/characters/artemis/dick-exotic.svg"
  22800. },
  22801. form: "calibrating"
  22802. },
  22803. dickCanineBigger: {
  22804. height: math.unit(1 * 1.33, "feet"),
  22805. name: "Dick (Canine)",
  22806. image: {
  22807. source: "./media/characters/artemis/dick-canine.svg"
  22808. },
  22809. form: "oversize-load"
  22810. },
  22811. dickEquineBigger: {
  22812. height: math.unit(0.85 * 1.33, "feet"),
  22813. name: "Dick (Equine)",
  22814. image: {
  22815. source: "./media/characters/artemis/dick-equine.svg"
  22816. },
  22817. form: "oversize-load"
  22818. },
  22819. dickExoticBigger: {
  22820. height: math.unit(0.85 * 1.33, "feet"),
  22821. name: "Dick (Exotic)",
  22822. image: {
  22823. source: "./media/characters/artemis/dick-exotic.svg"
  22824. },
  22825. form: "oversize-load"
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(7.5, "feet"),
  22832. form: "work-safe",
  22833. default: true
  22834. },
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(7.5, "feet"),
  22838. form: "calibrating",
  22839. default: true
  22840. },
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(7.5, "feet"),
  22844. form: "oversize-load",
  22845. default: true
  22846. },
  22847. {
  22848. name: "Enlarged",
  22849. height: math.unit(12, "feet"),
  22850. form: "work-safe",
  22851. },
  22852. {
  22853. name: "Enlarged",
  22854. height: math.unit(12, "feet"),
  22855. form: "calibrating",
  22856. },
  22857. {
  22858. name: "Enlarged",
  22859. height: math.unit(12, "feet"),
  22860. form: "oversize-load",
  22861. },
  22862. ],
  22863. {
  22864. "work-safe": {
  22865. name: "Work-Safe",
  22866. default: true
  22867. },
  22868. "calibrating": {
  22869. name: "Calibrating"
  22870. },
  22871. "oversize-load": {
  22872. name: "Oversize Load"
  22873. }
  22874. }
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(5 + 3 / 12, "feet"),
  22881. weight: math.unit(160, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/kira/front.svg",
  22885. extra: 906 / 786,
  22886. bottom: 0.01
  22887. }
  22888. },
  22889. back: {
  22890. height: math.unit(5 + 3 / 12, "feet"),
  22891. weight: math.unit(160, "lb"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/kira/back.svg",
  22895. extra: 882 / 757,
  22896. bottom: 0.005
  22897. }
  22898. },
  22899. frontDressed: {
  22900. height: math.unit(5 + 3 / 12, "feet"),
  22901. weight: math.unit(160, "lb"),
  22902. name: "Front (Dressed)",
  22903. image: {
  22904. source: "./media/characters/kira/front-dressed.svg",
  22905. extra: 906 / 786,
  22906. bottom: 0.01
  22907. }
  22908. },
  22909. beans: {
  22910. height: math.unit(0.92, "feet"),
  22911. name: "Beans",
  22912. image: {
  22913. source: "./media/characters/kira/beans.svg"
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(5 + 3 / 12, "feet"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(5 + 4 / 12, "feet"),
  22930. weight: math.unit(145, "lb"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/scramble/front.svg",
  22934. extra: 763 / 727,
  22935. bottom: 0.05
  22936. }
  22937. },
  22938. back: {
  22939. height: math.unit(5 + 4 / 12, "feet"),
  22940. weight: math.unit(145, "lb"),
  22941. name: "Back",
  22942. image: {
  22943. source: "./media/characters/scramble/back.svg",
  22944. extra: 826 / 737,
  22945. bottom: 0.002
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(5 + 4 / 12, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22959. {
  22960. side: {
  22961. height: math.unit(6 + 2 / 12, "feet"),
  22962. weight: math.unit(190, "lb"),
  22963. name: "Side",
  22964. image: {
  22965. source: "./media/characters/biscuit/side.svg",
  22966. extra: 858 / 791,
  22967. bottom: 0.044
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(6 + 2 / 12, "feet"),
  22975. default: true
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22981. {
  22982. front: {
  22983. height: math.unit(5 + 2 / 12, "feet"),
  22984. weight: math.unit(120, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/poffin/front.svg",
  22988. extra: 786 / 680,
  22989. bottom: 0.005
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(5 + 2 / 12, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(6 + 3 / 12, "feet"),
  23006. weight: math.unit(519, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/dhari/front.svg",
  23010. extra: 1048 / 946,
  23011. bottom: 0.015
  23012. }
  23013. },
  23014. back: {
  23015. height: math.unit(6 + 3 / 12, "feet"),
  23016. weight: math.unit(519, "lb"),
  23017. name: "Back",
  23018. image: {
  23019. source: "./media/characters/dhari/back.svg",
  23020. extra: 1048 / 931,
  23021. bottom: 0.005
  23022. }
  23023. },
  23024. frontDressed: {
  23025. height: math.unit(6 + 3 / 12, "feet"),
  23026. weight: math.unit(519, "lb"),
  23027. name: "Front (Dressed)",
  23028. image: {
  23029. source: "./media/characters/dhari/front-dressed.svg",
  23030. extra: 1713 / 1546,
  23031. bottom: 0.02
  23032. }
  23033. },
  23034. backDressed: {
  23035. height: math.unit(6 + 3 / 12, "feet"),
  23036. weight: math.unit(519, "lb"),
  23037. name: "Back (Dressed)",
  23038. image: {
  23039. source: "./media/characters/dhari/back-dressed.svg",
  23040. extra: 1699 / 1537,
  23041. bottom: 0.01
  23042. }
  23043. },
  23044. maw: {
  23045. height: math.unit(0.95, "feet"),
  23046. name: "Maw",
  23047. image: {
  23048. source: "./media/characters/dhari/maw.svg"
  23049. }
  23050. },
  23051. wereFront: {
  23052. height: math.unit(12 + 8 / 12, "feet"),
  23053. weight: math.unit(4000, "lb"),
  23054. name: "Front (Were)",
  23055. image: {
  23056. source: "./media/characters/dhari/were-front.svg",
  23057. extra: 1065 / 969,
  23058. bottom: 0.015
  23059. }
  23060. },
  23061. wereBack: {
  23062. height: math.unit(12 + 8 / 12, "feet"),
  23063. weight: math.unit(4000, "lb"),
  23064. name: "Back (Were)",
  23065. image: {
  23066. source: "./media/characters/dhari/were-back.svg",
  23067. extra: 1065 / 969,
  23068. bottom: 0.012
  23069. }
  23070. },
  23071. wereMaw: {
  23072. height: math.unit(0.625, "meters"),
  23073. name: "Maw (Were)",
  23074. image: {
  23075. source: "./media/characters/dhari/were-maw.svg"
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(6 + 3 / 12, "feet"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23089. {
  23090. anthro: {
  23091. height: math.unit(5 + 7 / 12, "feet"),
  23092. weight: math.unit(175, "lb"),
  23093. name: "Anthro",
  23094. image: {
  23095. source: "./media/characters/rena-dyne/anthro.svg",
  23096. extra: 1849 / 1785,
  23097. bottom: 0.005
  23098. }
  23099. },
  23100. taur: {
  23101. height: math.unit(15 + 6 / 12, "feet"),
  23102. weight: math.unit(8000, "lb"),
  23103. name: "Taur",
  23104. image: {
  23105. source: "./media/characters/rena-dyne/taur.svg",
  23106. extra: 2315 / 2234,
  23107. bottom: 0.033
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(5 + 7 / 12, "feet"),
  23115. default: true
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(8, "feet"),
  23124. weight: math.unit(600, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/weremeep/front.svg",
  23128. extra: 970/849,
  23129. bottom: 7/977
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(8, "feet"),
  23137. default: true
  23138. },
  23139. {
  23140. name: "Lorg",
  23141. height: math.unit(12, "feet")
  23142. },
  23143. {
  23144. name: "Oh Lawd She Comin'",
  23145. height: math.unit(20, "feet")
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23151. {
  23152. front: {
  23153. height: math.unit(4, "feet"),
  23154. weight: math.unit(90, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/reza/front.svg",
  23158. extra: 1183 / 1111,
  23159. bottom: 0.017
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(4, "feet"),
  23164. weight: math.unit(90, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/reza/back.svg",
  23168. extra: 1183 / 1111,
  23169. bottom: 0.01
  23170. }
  23171. },
  23172. drake: {
  23173. height: math.unit(30, "feet"),
  23174. weight: math.unit(246960, "lb"),
  23175. name: "Drake",
  23176. image: {
  23177. source: "./media/characters/reza/drake.svg",
  23178. extra: 2350 / 2024,
  23179. bottom: 60.7 / 2403
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(4, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23193. {
  23194. side: {
  23195. height: math.unit(15, "feet"),
  23196. weight: math.unit(14, "tons"),
  23197. name: "Side",
  23198. image: {
  23199. source: "./media/characters/athea/side.svg",
  23200. extra: 960 / 540,
  23201. bottom: 0.003
  23202. }
  23203. },
  23204. sitting: {
  23205. height: math.unit(6 * 2.85, "feet"),
  23206. weight: math.unit(14, "tons"),
  23207. name: "Sitting",
  23208. image: {
  23209. source: "./media/characters/athea/sitting.svg",
  23210. extra: 621 / 581,
  23211. bottom: 0.075
  23212. }
  23213. },
  23214. maw: {
  23215. height: math.unit(7.59498031496063, "feet"),
  23216. name: "Maw",
  23217. image: {
  23218. source: "./media/characters/athea/maw.svg"
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Lap Cat",
  23225. height: math.unit(2.5, "feet")
  23226. },
  23227. {
  23228. name: "Minimacro",
  23229. height: math.unit(15, "feet"),
  23230. default: true
  23231. },
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(120, "feet")
  23235. },
  23236. {
  23237. name: "Macro+",
  23238. height: math.unit(640, "feet")
  23239. },
  23240. {
  23241. name: "Colossus",
  23242. height: math.unit(2.2, "miles")
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23248. {
  23249. front: {
  23250. height: math.unit(8 + 8 / 12, "feet"),
  23251. weight: math.unit(130, "kg"),
  23252. name: "Front",
  23253. image: {
  23254. source: "./media/characters/seroko/front.svg",
  23255. extra: 1385 / 1280,
  23256. bottom: 0.025
  23257. }
  23258. },
  23259. back: {
  23260. height: math.unit(8 + 8 / 12, "feet"),
  23261. weight: math.unit(130, "kg"),
  23262. name: "Back",
  23263. image: {
  23264. source: "./media/characters/seroko/back.svg",
  23265. extra: 1369 / 1238,
  23266. bottom: 0.018
  23267. }
  23268. },
  23269. frontDressed: {
  23270. height: math.unit(8 + 8 / 12, "feet"),
  23271. weight: math.unit(130, "kg"),
  23272. name: "Front (Dressed)",
  23273. image: {
  23274. source: "./media/characters/seroko/front-dressed.svg",
  23275. extra: 1366 / 1275,
  23276. bottom: 0.03
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(8 + 8 / 12, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(5.5, "feet"),
  23293. weight: math.unit(160, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/quatzi/front.svg",
  23297. extra: 2346 / 2242,
  23298. bottom: 0.015
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(5.5, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Big",
  23310. height: math.unit(7.7, "feet")
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(5 + 11 / 12, "feet"),
  23319. weight: math.unit(180, "lb"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/sen/front.svg",
  23323. extra: 1321 / 1254,
  23324. bottom: 0.015
  23325. }
  23326. },
  23327. side: {
  23328. height: math.unit(5 + 11 / 12, "feet"),
  23329. weight: math.unit(180, "lb"),
  23330. name: "Side",
  23331. image: {
  23332. source: "./media/characters/sen/side.svg",
  23333. extra: 1321 / 1254,
  23334. bottom: 0.007
  23335. }
  23336. },
  23337. back: {
  23338. height: math.unit(5 + 11 / 12, "feet"),
  23339. weight: math.unit(180, "lb"),
  23340. name: "Back",
  23341. image: {
  23342. source: "./media/characters/sen/back.svg",
  23343. extra: 1321 / 1254
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(5 + 11 / 12, "feet"),
  23351. default: true
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(166.6, "cm"),
  23360. weight: math.unit(66.6, "kg"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/fruity/front.svg",
  23364. extra: 1510 / 1386,
  23365. bottom: 0.04
  23366. }
  23367. },
  23368. back: {
  23369. height: math.unit(166.6, "cm"),
  23370. weight: math.unit(66.6, "lb"),
  23371. name: "Back",
  23372. image: {
  23373. source: "./media/characters/fruity/back.svg",
  23374. extra: 1563 / 1435,
  23375. bottom: 0.005
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(166.6, "cm"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Demonic",
  23387. height: math.unit(166.6, "feet")
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23393. {
  23394. side: {
  23395. height: math.unit(10, "feet"),
  23396. weight: math.unit(500, "lb"),
  23397. name: "Side",
  23398. image: {
  23399. source: "./media/characters/zost/side.svg",
  23400. extra: 2870/2533,
  23401. bottom: 252/3122
  23402. }
  23403. },
  23404. mawFront: {
  23405. height: math.unit(1.08, "meters"),
  23406. name: "Maw (Front)",
  23407. image: {
  23408. source: "./media/characters/zost/maw-front.svg"
  23409. }
  23410. },
  23411. mawSide: {
  23412. height: math.unit(2.66, "feet"),
  23413. name: "Maw (Side)",
  23414. image: {
  23415. source: "./media/characters/zost/maw-side.svg"
  23416. }
  23417. },
  23418. wingspan: {
  23419. height: math.unit(7.4, "feet"),
  23420. name: "Wingspan",
  23421. image: {
  23422. source: "./media/characters/zost/wingspan.svg"
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(10, "feet"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23436. {
  23437. front: {
  23438. height: math.unit(5 + 4 / 12, "feet"),
  23439. weight: math.unit(120, "lb"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/luci/front.svg",
  23443. extra: 1985 / 1884,
  23444. bottom: 0.04
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(5 + 4 / 12, "feet"),
  23449. weight: math.unit(120, "lb"),
  23450. name: "Back",
  23451. image: {
  23452. source: "./media/characters/luci/back.svg",
  23453. extra: 1892 / 1791,
  23454. bottom: 0.002
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Normal",
  23461. height: math.unit(5 + 4 / 12, "feet"),
  23462. default: true
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(1500, "feet"),
  23471. weight: math.unit(3.8e6, "tons"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/2th/front.svg",
  23475. extra: 3489 / 3350,
  23476. bottom: 0.1
  23477. }
  23478. },
  23479. foot: {
  23480. height: math.unit(461, "feet"),
  23481. name: "Foot",
  23482. image: {
  23483. source: "./media/characters/2th/foot.svg"
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "\"Micro\"",
  23490. height: math.unit(15 + 7 / 12, "feet")
  23491. },
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(1500, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(5000, "feet")
  23500. },
  23501. {
  23502. name: "Megamacro",
  23503. height: math.unit(15, "miles")
  23504. },
  23505. {
  23506. name: "Gigamacro",
  23507. height: math.unit(4000, "miles")
  23508. },
  23509. {
  23510. name: "Galactic",
  23511. height: math.unit(50, "AU")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(5 + 6 / 12, "feet"),
  23520. weight: math.unit(220, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/amethyst/front.svg",
  23524. extra: 2078 / 2040,
  23525. bottom: 0.045
  23526. }
  23527. },
  23528. back: {
  23529. height: math.unit(5 + 6 / 12, "feet"),
  23530. weight: math.unit(220, "lb"),
  23531. name: "Back",
  23532. image: {
  23533. source: "./media/characters/amethyst/back.svg",
  23534. extra: 2021 / 1989,
  23535. bottom: 0.02
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Normal",
  23542. height: math.unit(5 + 6 / 12, "feet"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(4 + 11 / 12, "feet"),
  23552. weight: math.unit(120, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/yumi-akiyama/front.svg",
  23556. extra: 1327 / 1235,
  23557. bottom: 0.02
  23558. }
  23559. },
  23560. back: {
  23561. height: math.unit(4 + 11 / 12, "feet"),
  23562. weight: math.unit(120, "lb"),
  23563. name: "Back",
  23564. image: {
  23565. source: "./media/characters/yumi-akiyama/back.svg",
  23566. extra: 1287 / 1245,
  23567. bottom: 0.002
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Galactic",
  23574. height: math.unit(50, "galaxies"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Universal",
  23579. height: math.unit(100, "universes")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(8, "feet"),
  23588. weight: math.unit(500, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/rifter-yrmori/front.svg",
  23592. extra: 1180 / 1125,
  23593. bottom: 0.02
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(8, "feet"),
  23598. weight: math.unit(500, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/rifter-yrmori/back.svg",
  23602. extra: 1190 / 1145,
  23603. bottom: 0.001
  23604. }
  23605. },
  23606. wings: {
  23607. height: math.unit(7.75, "feet"),
  23608. weight: math.unit(500, "lb"),
  23609. name: "Wings",
  23610. image: {
  23611. source: "./media/characters/rifter-yrmori/wings.svg",
  23612. extra: 1357 / 1285
  23613. }
  23614. },
  23615. maw: {
  23616. height: math.unit(0.8, "feet"),
  23617. name: "Maw",
  23618. image: {
  23619. source: "./media/characters/rifter-yrmori/maw.svg"
  23620. }
  23621. },
  23622. mawfront: {
  23623. height: math.unit(1.45, "feet"),
  23624. name: "Maw (Front)",
  23625. image: {
  23626. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(8, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Macro",
  23638. height: math.unit(42, "meters")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23644. {
  23645. were: {
  23646. height: math.unit(25 + 6 / 12, "feet"),
  23647. weight: math.unit(10000, "lb"),
  23648. name: "Were",
  23649. image: {
  23650. source: "./media/characters/tahajin/were.svg",
  23651. extra: 801 / 770,
  23652. bottom: 0.042
  23653. }
  23654. },
  23655. aquatic: {
  23656. height: math.unit(6 + 4 / 12, "feet"),
  23657. weight: math.unit(160, "lb"),
  23658. name: "Aquatic",
  23659. image: {
  23660. source: "./media/characters/tahajin/aquatic.svg",
  23661. extra: 572 / 542,
  23662. bottom: 0.04
  23663. }
  23664. },
  23665. chow: {
  23666. height: math.unit(8 + 11 / 12, "feet"),
  23667. weight: math.unit(450, "lb"),
  23668. name: "Chow",
  23669. image: {
  23670. source: "./media/characters/tahajin/chow.svg",
  23671. extra: 660 / 640,
  23672. bottom: 0.015
  23673. }
  23674. },
  23675. demiNaga: {
  23676. height: math.unit(6 + 8 / 12, "feet"),
  23677. weight: math.unit(300, "lb"),
  23678. name: "Demi Naga",
  23679. image: {
  23680. source: "./media/characters/tahajin/demi-naga.svg",
  23681. extra: 643 / 615,
  23682. bottom: 0.1
  23683. }
  23684. },
  23685. data: {
  23686. height: math.unit(5, "inches"),
  23687. weight: math.unit(0.1, "lb"),
  23688. name: "Data",
  23689. image: {
  23690. source: "./media/characters/tahajin/data.svg"
  23691. }
  23692. },
  23693. fluu: {
  23694. height: math.unit(5 + 7 / 12, "feet"),
  23695. weight: math.unit(140, "lb"),
  23696. name: "Fluu",
  23697. image: {
  23698. source: "./media/characters/tahajin/fluu.svg",
  23699. extra: 628 / 592,
  23700. bottom: 0.02
  23701. }
  23702. },
  23703. starWarrior: {
  23704. height: math.unit(4 + 5 / 12, "feet"),
  23705. weight: math.unit(50, "lb"),
  23706. name: "Star Warrior",
  23707. image: {
  23708. source: "./media/characters/tahajin/star-warrior.svg"
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(25 + 6 / 12, "feet"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(8, "feet"),
  23725. weight: math.unit(350, "lb"),
  23726. name: "Front",
  23727. image: {
  23728. source: "./media/characters/gabira/front.svg",
  23729. extra: 1261/1154,
  23730. bottom: 51/1312
  23731. }
  23732. },
  23733. back: {
  23734. height: math.unit(8, "feet"),
  23735. weight: math.unit(350, "lb"),
  23736. name: "Back",
  23737. image: {
  23738. source: "./media/characters/gabira/back.svg",
  23739. extra: 1265/1163,
  23740. bottom: 46/1311
  23741. }
  23742. },
  23743. head: {
  23744. height: math.unit(2.85, "feet"),
  23745. name: "Head",
  23746. image: {
  23747. source: "./media/characters/gabira/head.svg"
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(8, "feet"),
  23755. default: true
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(5 + 3 / 12, "feet"),
  23764. weight: math.unit(137, "lb"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/sasha-katraine/front.svg",
  23768. extra: 1745/1694,
  23769. bottom: 37/1782
  23770. }
  23771. },
  23772. back: {
  23773. height: math.unit(5 + 3 / 12, "feet"),
  23774. weight: math.unit(137, "lb"),
  23775. name: "Back",
  23776. image: {
  23777. source: "./media/characters/sasha-katraine/back.svg",
  23778. extra: 1776/1699,
  23779. bottom: 26/1802
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Micro",
  23786. height: math.unit(5, "inches")
  23787. },
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(5 + 3 / 12, "feet"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23797. {
  23798. side: {
  23799. height: math.unit(4, "inches"),
  23800. weight: math.unit(200, "grams"),
  23801. name: "Side",
  23802. image: {
  23803. source: "./media/characters/der/side.svg",
  23804. extra: 719 / 400,
  23805. bottom: 30.6 / 749.9187
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Micro",
  23812. height: math.unit(4, "inches"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23819. {
  23820. side: {
  23821. height: math.unit(30, "meters"),
  23822. weight: math.unit(700, "tonnes"),
  23823. name: "Side",
  23824. image: {
  23825. source: "./media/characters/fixerdragon/side.svg",
  23826. extra: (1293.0514 - 116.03) / 1106.86,
  23827. bottom: 116.03 / 1293.0514
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Planck",
  23834. height: math.unit(1.6e-35, "meters")
  23835. },
  23836. {
  23837. name: "Micro",
  23838. height: math.unit(0.4, "meters")
  23839. },
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(30, "meters"),
  23843. default: true
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(1.2, "megameters")
  23848. },
  23849. {
  23850. name: "Teramacro",
  23851. height: math.unit(130, "terameters")
  23852. },
  23853. {
  23854. name: "Yottamacro",
  23855. height: math.unit(6200, "yottameters")
  23856. },
  23857. ]
  23858. ));
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23861. {
  23862. front: {
  23863. height: math.unit(8, "feet"),
  23864. weight: math.unit(250, "lb"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/kite/front.svg",
  23868. extra: 2796 / 2659,
  23869. bottom: 0.002
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(8, "feet"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Macro",
  23881. height: math.unit(360, "feet")
  23882. },
  23883. {
  23884. name: "Megamacro",
  23885. height: math.unit(1500, "feet")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23891. {
  23892. anthro_front: {
  23893. height: math.unit(5 + 11/12, "feet"),
  23894. weight: math.unit(170, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23898. extra: 1735/1585,
  23899. bottom: 96/1831
  23900. },
  23901. form: "anthro",
  23902. default: true
  23903. },
  23904. anthro_back: {
  23905. height: math.unit(5 + 11/12, "feet"),
  23906. weight: math.unit(170, "lb"),
  23907. name: "Back",
  23908. image: {
  23909. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23910. extra: 1749/1607,
  23911. bottom: 28/1777
  23912. },
  23913. form: "anthro"
  23914. },
  23915. anthro_male: {
  23916. height: math.unit(5 + 11/12, "feet"),
  23917. weight: math.unit(170, "lb"),
  23918. name: "Male",
  23919. image: {
  23920. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23921. extra: 1855/1713,
  23922. bottom: 63/1918
  23923. },
  23924. form: "anthro"
  23925. },
  23926. taur_front: {
  23927. height: math.unit(5 + 7/12, "feet"),
  23928. weight: math.unit(170, "lb"),
  23929. name: "Front",
  23930. image: {
  23931. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23932. extra: 1151/1059,
  23933. bottom: 356/1507
  23934. },
  23935. form: "taur",
  23936. default: true
  23937. },
  23938. anthro_frontDressed: {
  23939. height: math.unit(5 + 11/12, "feet"),
  23940. weight: math.unit(170, "lb"),
  23941. name: "Front (Dressed)",
  23942. image: {
  23943. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23944. extra: 1735/1585,
  23945. bottom: 96/1831
  23946. },
  23947. form: "anthro"
  23948. },
  23949. anthro_backDressed: {
  23950. height: math.unit(5 + 11/12, "feet"),
  23951. weight: math.unit(170, "lb"),
  23952. name: "Back (Dressed)",
  23953. image: {
  23954. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23955. extra: 1749/1607,
  23956. bottom: 28/1777
  23957. },
  23958. form: "anthro"
  23959. },
  23960. anthro_maleDressed: {
  23961. height: math.unit(5 + 11/12, "feet"),
  23962. weight: math.unit(170, "lb"),
  23963. name: "Male (Dressed)",
  23964. image: {
  23965. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23966. extra: 1855/1713,
  23967. bottom: 63/1918
  23968. },
  23969. form: "anthro"
  23970. },
  23971. taur_frontDressed: {
  23972. height: math.unit(5 + 7/12, "feet"),
  23973. weight: math.unit(170, "lb"),
  23974. name: "Front (Dressed)",
  23975. image: {
  23976. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23977. extra: 1151/1059,
  23978. bottom: 356/1507
  23979. },
  23980. form: "taur"
  23981. },
  23982. maw: {
  23983. height: math.unit(1.46, "feet"),
  23984. name: "Maw",
  23985. image: {
  23986. source: "./media/characters/poojawa-vynar/maw.svg"
  23987. },
  23988. allForms: true
  23989. },
  23990. head: {
  23991. height: math.unit(2.34, "feet"),
  23992. name: "Head",
  23993. image: {
  23994. source: "./media/characters/poojawa-vynar/head.svg"
  23995. },
  23996. allForms: true
  23997. },
  23998. leftPaw: {
  23999. height: math.unit(1.72, "feet"),
  24000. name: "Left Paw",
  24001. image: {
  24002. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24003. },
  24004. allForms: true
  24005. },
  24006. rightPaw: {
  24007. height: math.unit(1.61, "feet"),
  24008. name: "Right Paw",
  24009. image: {
  24010. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24011. },
  24012. allForms: true
  24013. },
  24014. toering: {
  24015. height: math.unit(2.9, "inches"),
  24016. name: "Toering",
  24017. image: {
  24018. source: "./media/characters/poojawa-vynar/toering.svg"
  24019. },
  24020. allForms: true
  24021. },
  24022. shaft: {
  24023. height: math.unit(0.625, "feet"),
  24024. name: "Shaft",
  24025. image: {
  24026. source: "./media/characters/poojawa-vynar/shaft.svg"
  24027. },
  24028. allForms: true
  24029. },
  24030. spade: {
  24031. height: math.unit(0.42, "feet"),
  24032. name: "Spade",
  24033. image: {
  24034. source: "./media/characters/poojawa-vynar/spade.svg"
  24035. },
  24036. allForms: true
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Shortstack",
  24042. height: math.unit(4, "feet"),
  24043. form: "anthro"
  24044. },
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(5 + 11 / 12, "feet"),
  24048. form: "anthro",
  24049. default: true
  24050. },
  24051. {
  24052. name: "Tauric",
  24053. height: math.unit(4, "meters"),
  24054. form: "taur",
  24055. default: true
  24056. },
  24057. ],
  24058. {
  24059. "anthro": {
  24060. name: "Anthro",
  24061. default: true
  24062. },
  24063. "taur": {
  24064. name: "Taur",
  24065. },
  24066. }
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24070. {
  24071. front: {
  24072. height: math.unit(293, "meters"),
  24073. weight: math.unit(70400, "tons"),
  24074. name: "Front",
  24075. image: {
  24076. source: "./media/characters/violette/front.svg",
  24077. extra: 1227 / 1180,
  24078. bottom: 0.005
  24079. }
  24080. },
  24081. back: {
  24082. height: math.unit(293, "meters"),
  24083. weight: math.unit(70400, "tons"),
  24084. name: "Back",
  24085. image: {
  24086. source: "./media/characters/violette/back.svg",
  24087. extra: 1227 / 1180,
  24088. bottom: 0.005
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Macro",
  24095. height: math.unit(293, "meters"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(1050, "feet"),
  24105. weight: math.unit(200000, "tons"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/alessandra/front.svg",
  24109. extra: 960 / 912,
  24110. bottom: 0.06
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(1050, "feet")
  24118. },
  24119. {
  24120. name: "Macro+",
  24121. height: math.unit(900, "meters"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(5, "feet"),
  24131. weight: math.unit(187, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/person/front.svg",
  24135. extra: 3087 / 2945,
  24136. bottom: 91 / 3181
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Micro",
  24143. height: math.unit(3, "inches")
  24144. },
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(5, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(90, "feet")
  24153. },
  24154. {
  24155. name: "Max Size",
  24156. height: math.unit(280, "feet")
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(4.5, "meters"),
  24165. weight: math.unit(3200, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/ty/front.svg",
  24169. extra: 1038 / 960,
  24170. bottom: 31.156 / 1068
  24171. }
  24172. },
  24173. back: {
  24174. height: math.unit(4.5, "meters"),
  24175. weight: math.unit(3200, "lb"),
  24176. name: "Back",
  24177. image: {
  24178. source: "./media/characters/ty/back.svg",
  24179. extra: 1044 / 966,
  24180. bottom: 7.48 / 1049
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(4.5, "meters"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24194. {
  24195. front: {
  24196. height: math.unit(5 + 4 / 12, "feet"),
  24197. weight: math.unit(115, "lb"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/rocky/front.svg",
  24201. extra: 1012 / 975,
  24202. bottom: 54 / 1066
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(5 + 4 / 12, "feet"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24216. {
  24217. upright: {
  24218. height: math.unit(6, "meters"),
  24219. weight: math.unit(4000, "kg"),
  24220. name: "Upright",
  24221. image: {
  24222. source: "./media/characters/ruin/upright.svg",
  24223. extra: 668 / 661,
  24224. bottom: 42 / 799.8396
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(6, "meters"),
  24232. default: true
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5, "feet"),
  24241. weight: math.unit(106, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/robin/front.svg",
  24245. extra: 862 / 799,
  24246. bottom: 42.4 / 914.8856
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(5, "feet"),
  24254. default: true
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24260. {
  24261. side: {
  24262. height: math.unit(3, "feet"),
  24263. weight: math.unit(225, "lb"),
  24264. name: "Side",
  24265. image: {
  24266. source: "./media/characters/saian/side.svg",
  24267. extra: 566 / 356,
  24268. bottom: 79.7 / 643
  24269. }
  24270. },
  24271. maw: {
  24272. height: math.unit(2.85, "feet"),
  24273. name: "Maw",
  24274. image: {
  24275. source: "./media/characters/saian/maw.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(3, "feet"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24289. {
  24290. side: {
  24291. height: math.unit(8, "feet"),
  24292. weight: math.unit(300, "lb"),
  24293. name: "Side",
  24294. image: {
  24295. source: "./media/characters/equus-silvermane/side.svg",
  24296. extra: 2176 / 2050,
  24297. bottom: 65.7 / 2245
  24298. }
  24299. },
  24300. front: {
  24301. height: math.unit(8, "feet"),
  24302. weight: math.unit(300, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/equus-silvermane/front.svg",
  24306. extra: 4633 / 4400,
  24307. bottom: 71.3 / 4706.915
  24308. }
  24309. },
  24310. sideStepping: {
  24311. height: math.unit(8, "feet"),
  24312. weight: math.unit(300, "lb"),
  24313. name: "Side (Stepping)",
  24314. image: {
  24315. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24316. extra: 1968 / 1860,
  24317. bottom: 16.4 / 1989
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(8, "feet")
  24325. },
  24326. {
  24327. name: "Minimacro",
  24328. height: math.unit(75, "feet"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Macro",
  24333. height: math.unit(150, "feet")
  24334. },
  24335. {
  24336. name: "Macro+",
  24337. height: math.unit(1000, "feet")
  24338. },
  24339. {
  24340. name: "Megamacro",
  24341. height: math.unit(1, "mile")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24347. {
  24348. side: {
  24349. height: math.unit(20, "feet"),
  24350. weight: math.unit(30000, "kg"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/windar/side.svg",
  24354. extra: 1491 / 1248,
  24355. bottom: 82.56 / 1568
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(20, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24369. {
  24370. side: {
  24371. height: math.unit(15.66, "feet"),
  24372. weight: math.unit(150, "lb"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/melody/side.svg",
  24376. extra: 1097 / 944,
  24377. bottom: 11.8 / 1109
  24378. }
  24379. },
  24380. sideOutfit: {
  24381. height: math.unit(15.66, "feet"),
  24382. weight: math.unit(150, "lb"),
  24383. name: "Side (Outfit)",
  24384. image: {
  24385. source: "./media/characters/melody/side-outfit.svg",
  24386. extra: 1097 / 944,
  24387. bottom: 11.8 / 1109
  24388. }
  24389. },
  24390. },
  24391. [
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(15.66, "feet"),
  24395. default: true
  24396. },
  24397. ]
  24398. ))
  24399. characterMakers.push(() => makeCharacter(
  24400. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24401. {
  24402. armoredFront: {
  24403. height: math.unit(8, "feet"),
  24404. weight: math.unit(325, "lb"),
  24405. name: "Front",
  24406. image: {
  24407. source: "./media/characters/windera/armored-front.svg",
  24408. extra: 1830/1598,
  24409. bottom: 151/1981
  24410. },
  24411. form: "armored",
  24412. default: true
  24413. },
  24414. macroFront: {
  24415. height: math.unit(70, "feet"),
  24416. weight: math.unit(315453, "lb"),
  24417. name: "Front",
  24418. image: {
  24419. source: "./media/characters/windera/macro-front.svg",
  24420. extra: 963/883,
  24421. bottom: 23/986
  24422. },
  24423. form: "macro",
  24424. default: true
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(8, "feet"),
  24431. default: true,
  24432. form: "armored"
  24433. },
  24434. {
  24435. name: "Normal",
  24436. height: math.unit(70, "feet"),
  24437. default: true,
  24438. form: "macro"
  24439. },
  24440. ],
  24441. {
  24442. "armored": {
  24443. name: "Armored",
  24444. default: true
  24445. },
  24446. "macro": {
  24447. name: "Macro",
  24448. },
  24449. }
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24453. {
  24454. front: {
  24455. height: math.unit(28.75, "feet"),
  24456. weight: math.unit(2000, "kg"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/sonear/front.svg",
  24460. extra: 1041.1 / 964.9,
  24461. bottom: 53.7 / 1096.6
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(28.75, "feet"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24475. {
  24476. side: {
  24477. height: math.unit(25.5, "feet"),
  24478. weight: math.unit(23000, "kg"),
  24479. name: "Side",
  24480. image: {
  24481. source: "./media/characters/kanara/side.svg"
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(25.5, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24495. {
  24496. side: {
  24497. height: math.unit(10, "feet"),
  24498. weight: math.unit(1000, "kg"),
  24499. name: "Side",
  24500. image: {
  24501. source: "./media/characters/ereus/side.svg",
  24502. extra: 1157 / 959,
  24503. bottom: 153 / 1312.5
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(10, "feet"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24517. {
  24518. side: {
  24519. height: math.unit(4.5, "feet"),
  24520. weight: math.unit(500, "lb"),
  24521. name: "Side",
  24522. image: {
  24523. source: "./media/characters/e-ter/side.svg",
  24524. extra: 1550 / 1248,
  24525. bottom: 146 / 1694
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(4.5, "feet"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24539. {
  24540. side: {
  24541. height: math.unit(9.7, "feet"),
  24542. weight: math.unit(4000, "kg"),
  24543. name: "Side",
  24544. image: {
  24545. source: "./media/characters/yamie/side.svg"
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Normal",
  24552. height: math.unit(9.7, "feet"),
  24553. default: true
  24554. },
  24555. ]
  24556. ))
  24557. characterMakers.push(() => makeCharacter(
  24558. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24559. {
  24560. front: {
  24561. height: math.unit(50, "feet"),
  24562. weight: math.unit(50000, "kg"),
  24563. name: "Front",
  24564. image: {
  24565. source: "./media/characters/anders/front.svg",
  24566. extra: 570 / 539,
  24567. bottom: 14.7 / 586.7
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Large",
  24574. height: math.unit(50, "feet")
  24575. },
  24576. {
  24577. name: "Macro",
  24578. height: math.unit(2000, "feet"),
  24579. default: true
  24580. },
  24581. {
  24582. name: "Megamacro",
  24583. height: math.unit(12, "miles")
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(7 + 2 / 12, "feet"),
  24592. weight: math.unit(300, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/reban/front.svg",
  24596. extra: 1287/1212,
  24597. bottom: 148/1435
  24598. }
  24599. },
  24600. head: {
  24601. height: math.unit(1.95, "feet"),
  24602. name: "Head",
  24603. image: {
  24604. source: "./media/characters/reban/head.svg"
  24605. }
  24606. },
  24607. maw: {
  24608. height: math.unit(0.95, "feet"),
  24609. name: "Maw",
  24610. image: {
  24611. source: "./media/characters/reban/maw.svg"
  24612. }
  24613. },
  24614. foot: {
  24615. height: math.unit(1.65, "feet"),
  24616. name: "Foot",
  24617. image: {
  24618. source: "./media/characters/reban/foot.svg"
  24619. }
  24620. },
  24621. dick: {
  24622. height: math.unit(7 / 5, "feet"),
  24623. name: "Dick",
  24624. image: {
  24625. source: "./media/characters/reban/dick.svg"
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Natural Height",
  24632. height: math.unit(7 + 2 / 12, "feet")
  24633. },
  24634. {
  24635. name: "Macro",
  24636. height: math.unit(500, "feet"),
  24637. default: true
  24638. },
  24639. {
  24640. name: "Canon Height",
  24641. height: math.unit(50, "AU")
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24647. {
  24648. front: {
  24649. height: math.unit(6, "feet"),
  24650. weight: math.unit(150, "lb"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/terrance-keayes/front.svg",
  24654. extra: 1.005,
  24655. bottom: 151 / 1615
  24656. }
  24657. },
  24658. side: {
  24659. height: math.unit(6, "feet"),
  24660. weight: math.unit(150, "lb"),
  24661. name: "Side",
  24662. image: {
  24663. source: "./media/characters/terrance-keayes/side.svg",
  24664. extra: 1.005,
  24665. bottom: 129.4 / 1544
  24666. }
  24667. },
  24668. back: {
  24669. height: math.unit(6, "feet"),
  24670. weight: math.unit(150, "lb"),
  24671. name: "Back",
  24672. image: {
  24673. source: "./media/characters/terrance-keayes/back.svg",
  24674. extra: 1.005,
  24675. bottom: 58.4 / 1557.3
  24676. }
  24677. },
  24678. dick: {
  24679. height: math.unit(6 * 0.208, "feet"),
  24680. name: "Dick",
  24681. image: {
  24682. source: "./media/characters/terrance-keayes/dick.svg"
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Canon Height",
  24689. height: math.unit(35, "miles"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(6, "feet"),
  24699. weight: math.unit(150, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/ofelia/front.svg",
  24703. extra: 1130/1117,
  24704. bottom: 91/1221
  24705. }
  24706. },
  24707. back: {
  24708. height: math.unit(6, "feet"),
  24709. weight: math.unit(150, "lb"),
  24710. name: "Back",
  24711. image: {
  24712. source: "./media/characters/ofelia/back.svg",
  24713. extra: 1172/1159,
  24714. bottom: 28/1200
  24715. }
  24716. },
  24717. maw: {
  24718. height: math.unit(1, "feet"),
  24719. name: "Maw",
  24720. image: {
  24721. source: "./media/characters/ofelia/maw.svg"
  24722. }
  24723. },
  24724. foot: {
  24725. height: math.unit(1.949, "feet"),
  24726. name: "Foot",
  24727. image: {
  24728. source: "./media/characters/ofelia/foot.svg"
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Canon Height",
  24735. height: math.unit(2000, "miles"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(6, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/samuel/front.svg",
  24749. extra: 265 / 258,
  24750. bottom: 2 / 266.1566
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Macro",
  24757. height: math.unit(100, "feet"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Full Size",
  24762. height: math.unit(1000, "miles")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(6, "feet"),
  24771. weight: math.unit(300, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/beishir-kiel/front.svg",
  24775. extra: 569 / 547,
  24776. bottom: 41.9 / 609
  24777. }
  24778. },
  24779. maw: {
  24780. height: math.unit(6 * 0.202, "feet"),
  24781. name: "Maw",
  24782. image: {
  24783. source: "./media/characters/beishir-kiel/maw.svg"
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Macro",
  24790. height: math.unit(300, "feet"),
  24791. default: true
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24797. {
  24798. front: {
  24799. height: math.unit(5 + 7/12, "feet"),
  24800. weight: math.unit(120, "lb"),
  24801. name: "Front",
  24802. image: {
  24803. source: "./media/characters/logan-grey/front.svg",
  24804. extra: 1836/1738,
  24805. bottom: 108/1944
  24806. }
  24807. },
  24808. back: {
  24809. height: math.unit(5 + 7/12, "feet"),
  24810. weight: math.unit(120, "lb"),
  24811. name: "Back",
  24812. image: {
  24813. source: "./media/characters/logan-grey/back.svg",
  24814. extra: 1880/1794,
  24815. bottom: 24/1904
  24816. }
  24817. },
  24818. frontSfw: {
  24819. height: math.unit(5 + 7/12, "feet"),
  24820. weight: math.unit(120, "lb"),
  24821. name: "Front (SFW)",
  24822. image: {
  24823. source: "./media/characters/logan-grey/front-sfw.svg",
  24824. extra: 1836/1738,
  24825. bottom: 108/1944
  24826. }
  24827. },
  24828. backSfw: {
  24829. height: math.unit(5 + 7/12, "feet"),
  24830. weight: math.unit(120, "lb"),
  24831. name: "Back (SFW)",
  24832. image: {
  24833. source: "./media/characters/logan-grey/back-sfw.svg",
  24834. extra: 1880/1794,
  24835. bottom: 24/1904
  24836. }
  24837. },
  24838. hands: {
  24839. height: math.unit(0.84, "feet"),
  24840. name: "Hands",
  24841. image: {
  24842. source: "./media/characters/logan-grey/hands.svg"
  24843. }
  24844. },
  24845. paws: {
  24846. height: math.unit(0.72, "feet"),
  24847. name: "Paws",
  24848. image: {
  24849. source: "./media/characters/logan-grey/paws.svg"
  24850. }
  24851. },
  24852. cock: {
  24853. height: math.unit(1.45, "feet"),
  24854. name: "Cock",
  24855. image: {
  24856. source: "./media/characters/logan-grey/cock.svg"
  24857. }
  24858. },
  24859. cockAlt: {
  24860. height: math.unit(1.437, "feet"),
  24861. name: "Cock (alt)",
  24862. image: {
  24863. source: "./media/characters/logan-grey/cock-alt.svg"
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(5 + 8 / 12, "feet")
  24871. },
  24872. {
  24873. name: "The 500 Foot Femboy",
  24874. height: math.unit(500, "feet"),
  24875. default: true
  24876. },
  24877. {
  24878. name: "Megmacro",
  24879. height: math.unit(20, "miles")
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(8 + 2 / 12, "feet"),
  24888. weight: math.unit(275, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/draganta/front.svg",
  24892. extra: 1177 / 1135,
  24893. bottom: 33.46 / 1212.1
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(8 + 6 / 12, "feet"),
  24901. default: true
  24902. },
  24903. {
  24904. name: "Macro",
  24905. height: math.unit(150, "feet")
  24906. },
  24907. {
  24908. name: "Megamacro",
  24909. height: math.unit(1000, "miles")
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(1.72, "m"),
  24918. weight: math.unit(80, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/voski/front.svg",
  24922. extra: 2076.22 / 2022.4,
  24923. bottom: 102.7 / 2177.3866
  24924. }
  24925. },
  24926. frontFlaccid: {
  24927. height: math.unit(1.72, "m"),
  24928. weight: math.unit(80, "lb"),
  24929. name: "Front (Flaccid)",
  24930. image: {
  24931. source: "./media/characters/voski/front-flaccid.svg",
  24932. extra: 2076.22 / 2022.4,
  24933. bottom: 102.7 / 2177.3866
  24934. }
  24935. },
  24936. frontErect: {
  24937. height: math.unit(1.72, "m"),
  24938. weight: math.unit(80, "lb"),
  24939. name: "Front (Erect)",
  24940. image: {
  24941. source: "./media/characters/voski/front-erect.svg",
  24942. extra: 2076.22 / 2022.4,
  24943. bottom: 102.7 / 2177.3866
  24944. }
  24945. },
  24946. back: {
  24947. height: math.unit(1.72, "m"),
  24948. weight: math.unit(80, "lb"),
  24949. name: "Back",
  24950. image: {
  24951. source: "./media/characters/voski/back.svg",
  24952. extra: 2104 / 2051,
  24953. bottom: 10.45 / 2113.63
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(1.72, "m")
  24961. },
  24962. {
  24963. name: "Macro",
  24964. height: math.unit(55, "m"),
  24965. default: true
  24966. },
  24967. {
  24968. name: "Macro+",
  24969. height: math.unit(300, "m")
  24970. },
  24971. {
  24972. name: "Macro++",
  24973. height: math.unit(700, "m")
  24974. },
  24975. {
  24976. name: "Macro+++",
  24977. height: math.unit(4500, "m")
  24978. },
  24979. {
  24980. name: "Macro++++",
  24981. height: math.unit(45, "km")
  24982. },
  24983. {
  24984. name: "Macro+++++",
  24985. height: math.unit(1220, "km")
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(2.3, "m"),
  24994. weight: math.unit(304, "kg"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/icowom-lee/front.svg",
  24998. extra: 985 / 955,
  24999. bottom: 25.4 / 1012
  25000. }
  25001. },
  25002. fronttentacles: {
  25003. height: math.unit(2.3, "m"),
  25004. weight: math.unit(304, "kg"),
  25005. name: "Front-tentacles",
  25006. image: {
  25007. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25008. extra: 985 / 955,
  25009. bottom: 25.4 / 1012
  25010. }
  25011. },
  25012. back: {
  25013. height: math.unit(2.3, "m"),
  25014. weight: math.unit(304, "kg"),
  25015. name: "Back",
  25016. image: {
  25017. source: "./media/characters/icowom-lee/back.svg",
  25018. extra: 975 / 954,
  25019. bottom: 9.5 / 985
  25020. }
  25021. },
  25022. backtentacles: {
  25023. height: math.unit(2.3, "m"),
  25024. weight: math.unit(304, "kg"),
  25025. name: "Back-tentacles",
  25026. image: {
  25027. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25028. extra: 975 / 954,
  25029. bottom: 9.5 / 985
  25030. }
  25031. },
  25032. frontDressed: {
  25033. height: math.unit(2.3, "m"),
  25034. weight: math.unit(304, "kg"),
  25035. name: "Front (Dressed)",
  25036. image: {
  25037. source: "./media/characters/icowom-lee/front-dressed.svg",
  25038. extra: 3076 / 2933,
  25039. bottom: 51.4 / 3125.1889
  25040. }
  25041. },
  25042. rump: {
  25043. height: math.unit(0.776, "meters"),
  25044. name: "Rump",
  25045. image: {
  25046. source: "./media/characters/icowom-lee/rump.svg"
  25047. }
  25048. },
  25049. genitals: {
  25050. height: math.unit(0.78, "meters"),
  25051. name: "Genitals",
  25052. image: {
  25053. source: "./media/characters/icowom-lee/genitals.svg"
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(2.3, "meters"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Macro",
  25065. height: math.unit(94, "meters"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(22, "meters"),
  25075. weight: math.unit(21000, "kg"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/shock-diamond/front.svg",
  25079. extra: 2204 / 2053,
  25080. bottom: 65 / 2239.47
  25081. }
  25082. },
  25083. frontNude: {
  25084. height: math.unit(22, "meters"),
  25085. weight: math.unit(21000, "kg"),
  25086. name: "Front (Nude)",
  25087. image: {
  25088. source: "./media/characters/shock-diamond/front-nude.svg",
  25089. extra: 2514 / 2285,
  25090. bottom: 13 / 2527.56
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(3, "meters")
  25098. },
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(22, "meters"),
  25102. default: true
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(5 + 4/12, "feet"),
  25111. weight: math.unit(125, "lb"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/rory/front.svg",
  25115. extra: 1790/1681,
  25116. bottom: 66/1856
  25117. },
  25118. form: "normal",
  25119. default: true
  25120. },
  25121. back: {
  25122. height: math.unit(5 + 4/12, "feet"),
  25123. weight: math.unit(125, "lb"),
  25124. name: "Back",
  25125. image: {
  25126. source: "./media/characters/rory/back.svg",
  25127. extra: 1805/1690,
  25128. bottom: 56/1861
  25129. },
  25130. form: "normal"
  25131. },
  25132. frontDressed: {
  25133. height: math.unit(5 + 4/12, "feet"),
  25134. weight: math.unit(125, "lb"),
  25135. name: "Front (Dressed)",
  25136. image: {
  25137. source: "./media/characters/rory/front-dressed.svg",
  25138. extra: 1790/1681,
  25139. bottom: 66/1856
  25140. },
  25141. form: "normal"
  25142. },
  25143. backDressed: {
  25144. height: math.unit(5 + 4/12, "feet"),
  25145. weight: math.unit(125, "lb"),
  25146. name: "Back (Dressed)",
  25147. image: {
  25148. source: "./media/characters/rory/back-dressed.svg",
  25149. extra: 1805/1690,
  25150. bottom: 56/1861
  25151. },
  25152. form: "normal"
  25153. },
  25154. frontNsfw: {
  25155. height: math.unit(5 + 4/12, "feet"),
  25156. weight: math.unit(125, "lb"),
  25157. name: "Front (NSFW)",
  25158. image: {
  25159. source: "./media/characters/rory/front-nsfw.svg",
  25160. extra: 1790/1681,
  25161. bottom: 66/1856
  25162. },
  25163. form: "normal"
  25164. },
  25165. backNsfw: {
  25166. height: math.unit(5 + 4/12, "feet"),
  25167. weight: math.unit(125, "lb"),
  25168. name: "Back (NSFW)",
  25169. image: {
  25170. source: "./media/characters/rory/back-nsfw.svg",
  25171. extra: 1805/1690,
  25172. bottom: 56/1861
  25173. },
  25174. form: "normal"
  25175. },
  25176. dick: {
  25177. height: math.unit(0.8, "feet"),
  25178. name: "Dick",
  25179. image: {
  25180. source: "./media/characters/rory/dick.svg"
  25181. },
  25182. form: "normal"
  25183. },
  25184. thicc_front: {
  25185. height: math.unit(5 + 4/12, "feet"),
  25186. weight: math.unit(195, "lb"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/rory/thicc-front.svg",
  25190. extra: 1220/1100,
  25191. bottom: 103/1323
  25192. },
  25193. form: "thicc",
  25194. default: true
  25195. },
  25196. thicc_back: {
  25197. height: math.unit(5 + 4/12, "feet"),
  25198. weight: math.unit(195, "lb"),
  25199. name: "Back",
  25200. image: {
  25201. source: "./media/characters/rory/thicc-back.svg",
  25202. extra: 1166/1086,
  25203. bottom: 35/1201
  25204. },
  25205. form: "thicc"
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Micro",
  25211. height: math.unit(3, "inches"),
  25212. allForms: true
  25213. },
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(5 + 4/12, "feet"),
  25217. allForms: true,
  25218. default: true
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(90, "feet"),
  25223. allForms: true
  25224. },
  25225. {
  25226. name: "Supercharged",
  25227. height: math.unit(270, "feet"),
  25228. allForms: true
  25229. },
  25230. ],
  25231. {
  25232. "normal": {
  25233. name: "Normal",
  25234. default: true
  25235. },
  25236. "thicc": {
  25237. name: "Thicc",
  25238. },
  25239. }
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(5 + 9 / 12, "feet"),
  25246. weight: math.unit(190, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/sprisk/front.svg",
  25250. extra: 1225 / 1180,
  25251. bottom: 42.7 / 1266.4
  25252. }
  25253. },
  25254. frontNsfw: {
  25255. height: math.unit(5 + 9 / 12, "feet"),
  25256. weight: math.unit(190, "lb"),
  25257. name: "Front (NSFW)",
  25258. image: {
  25259. source: "./media/characters/sprisk/front-nsfw.svg",
  25260. extra: 1225 / 1180,
  25261. bottom: 42.7 / 1266.4
  25262. }
  25263. },
  25264. back: {
  25265. height: math.unit(5 + 9 / 12, "feet"),
  25266. weight: math.unit(190, "lb"),
  25267. name: "Back",
  25268. image: {
  25269. source: "./media/characters/sprisk/back.svg",
  25270. extra: 1247 / 1200,
  25271. bottom: 5.6 / 1253.04
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Tiny",
  25278. height: math.unit(2, "inches")
  25279. },
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(5 + 9 / 12, "feet"),
  25283. default: true
  25284. },
  25285. {
  25286. name: "Mini Macro",
  25287. height: math.unit(18, "feet")
  25288. },
  25289. {
  25290. name: "Macro",
  25291. height: math.unit(100, "feet")
  25292. },
  25293. {
  25294. name: "MACRO",
  25295. height: math.unit(50, "miles")
  25296. },
  25297. {
  25298. name: "M A C R O",
  25299. height: math.unit(300, "miles")
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25305. {
  25306. side: {
  25307. height: math.unit(15.6, "meters"),
  25308. weight: math.unit(700000, "kg"),
  25309. name: "Side",
  25310. image: {
  25311. source: "./media/characters/bunsen/side.svg",
  25312. extra: 1644 / 358
  25313. }
  25314. },
  25315. foot: {
  25316. height: math.unit(1.611 * 1644 / 358, "meter"),
  25317. name: "Foot",
  25318. image: {
  25319. source: "./media/characters/bunsen/foot.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Small",
  25326. height: math.unit(10, "feet")
  25327. },
  25328. {
  25329. name: "Normal",
  25330. height: math.unit(15.6, "meters"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(4 + 11 / 12, "feet"),
  25340. weight: math.unit(140, "lb"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/sesh/front.svg",
  25344. extra: 3420 / 3231,
  25345. bottom: 72 / 3949.5
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(4 + 11 / 12, "feet")
  25353. },
  25354. {
  25355. name: "Grown",
  25356. height: math.unit(15, "feet"),
  25357. default: true
  25358. },
  25359. {
  25360. name: "Macro",
  25361. height: math.unit(1500, "feet")
  25362. },
  25363. {
  25364. name: "Megamacro",
  25365. height: math.unit(30, "miles")
  25366. },
  25367. {
  25368. name: "Continental",
  25369. height: math.unit(3000, "miles")
  25370. },
  25371. {
  25372. name: "Gravity Mass",
  25373. height: math.unit(300000, "miles")
  25374. },
  25375. {
  25376. name: "Planet Buster",
  25377. height: math.unit(30000000, "miles")
  25378. },
  25379. {
  25380. name: "Big",
  25381. height: math.unit(3000000000, "miles")
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(9, "feet"),
  25390. weight: math.unit(350, "lb"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/pepper/front.svg",
  25394. extra: 1448 / 1312,
  25395. bottom: 9.4 / 1457.88
  25396. }
  25397. },
  25398. back: {
  25399. height: math.unit(9, "feet"),
  25400. weight: math.unit(350, "lb"),
  25401. name: "Back",
  25402. image: {
  25403. source: "./media/characters/pepper/back.svg",
  25404. extra: 1423 / 1300,
  25405. bottom: 4.6 / 1429
  25406. }
  25407. },
  25408. maw: {
  25409. height: math.unit(0.932, "feet"),
  25410. name: "Maw",
  25411. image: {
  25412. source: "./media/characters/pepper/maw.svg"
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(9, "feet"),
  25420. default: true
  25421. },
  25422. ]
  25423. ))
  25424. characterMakers.push(() => makeCharacter(
  25425. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25426. {
  25427. front: {
  25428. height: math.unit(6, "feet"),
  25429. weight: math.unit(150, "lb"),
  25430. name: "Front",
  25431. image: {
  25432. source: "./media/characters/maelstrom/front.svg",
  25433. extra: 2100 / 1883,
  25434. bottom: 94 / 2196.7
  25435. }
  25436. },
  25437. },
  25438. [
  25439. {
  25440. name: "Less Kaiju",
  25441. height: math.unit(200, "feet")
  25442. },
  25443. {
  25444. name: "Kaiju",
  25445. height: math.unit(400, "feet"),
  25446. default: true
  25447. },
  25448. {
  25449. name: "Kaiju-er",
  25450. height: math.unit(600, "feet")
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25456. {
  25457. front: {
  25458. height: math.unit(6 + 5 / 12, "feet"),
  25459. weight: math.unit(180, "lb"),
  25460. name: "Front",
  25461. image: {
  25462. source: "./media/characters/lexir/front.svg",
  25463. extra: 180 / 172,
  25464. bottom: 12 / 192
  25465. }
  25466. },
  25467. back: {
  25468. height: math.unit(6 + 5 / 12, "feet"),
  25469. weight: math.unit(180, "lb"),
  25470. name: "Back",
  25471. image: {
  25472. source: "./media/characters/lexir/back.svg",
  25473. extra: 1273/1201,
  25474. bottom: 39/1312
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Very Smal",
  25481. height: math.unit(1, "nm")
  25482. },
  25483. {
  25484. name: "Normal",
  25485. height: math.unit(6 + 5 / 12, "feet"),
  25486. default: true
  25487. },
  25488. {
  25489. name: "Macro",
  25490. height: math.unit(1, "mile")
  25491. },
  25492. {
  25493. name: "Megamacro",
  25494. height: math.unit(50, "miles")
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(1.5, "meters"),
  25503. weight: math.unit(100, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/maksio/front.svg",
  25507. extra: 1549 / 1531,
  25508. bottom: 123.7 / 1674.5429
  25509. }
  25510. },
  25511. back: {
  25512. height: math.unit(1.5, "meters"),
  25513. weight: math.unit(100, "lb"),
  25514. name: "Back",
  25515. image: {
  25516. source: "./media/characters/maksio/back.svg",
  25517. extra: 1541 / 1509,
  25518. bottom: 97 / 1639
  25519. }
  25520. },
  25521. hand: {
  25522. height: math.unit(0.621, "feet"),
  25523. name: "Hand",
  25524. image: {
  25525. source: "./media/characters/maksio/hand.svg"
  25526. }
  25527. },
  25528. foot: {
  25529. height: math.unit(1.611, "feet"),
  25530. name: "Foot",
  25531. image: {
  25532. source: "./media/characters/maksio/foot.svg"
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Shrunken",
  25539. height: math.unit(10, "cm")
  25540. },
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(150, "cm"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(100, "feet"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/erza-bear/front.svg",
  25556. extra: 2449 / 2390,
  25557. bottom: 46 / 2494
  25558. }
  25559. },
  25560. back: {
  25561. height: math.unit(100, "feet"),
  25562. name: "Back",
  25563. image: {
  25564. source: "./media/characters/erza-bear/back.svg",
  25565. extra: 2489 / 2430,
  25566. bottom: 85.4 / 2480
  25567. }
  25568. },
  25569. tail: {
  25570. height: math.unit(42, "feet"),
  25571. name: "Tail",
  25572. image: {
  25573. source: "./media/characters/erza-bear/tail.svg"
  25574. }
  25575. },
  25576. tongue: {
  25577. height: math.unit(8, "feet"),
  25578. name: "Tongue",
  25579. image: {
  25580. source: "./media/characters/erza-bear/tongue.svg"
  25581. }
  25582. },
  25583. dick: {
  25584. height: math.unit(10.5, "feet"),
  25585. name: "Dick",
  25586. image: {
  25587. source: "./media/characters/erza-bear/dick.svg"
  25588. }
  25589. },
  25590. dickVertical: {
  25591. height: math.unit(16.9, "feet"),
  25592. name: "Dick (Vertical)",
  25593. image: {
  25594. source: "./media/characters/erza-bear/dick-vertical.svg"
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(100, "feet"),
  25602. default: true
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(172, "cm"),
  25611. weight: math.unit(73, "kg"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/violet-flor/front.svg",
  25615. extra: 1530 / 1442,
  25616. bottom: 61.9 / 1588.8
  25617. }
  25618. },
  25619. back: {
  25620. height: math.unit(180, "cm"),
  25621. weight: math.unit(73, "kg"),
  25622. name: "Back",
  25623. image: {
  25624. source: "./media/characters/violet-flor/back.svg",
  25625. extra: 1692 / 1630,
  25626. bottom: 20 / 1712
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(172, "cm"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(6, "feet"),
  25643. weight: math.unit(220, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/lynn-rhea/front.svg",
  25647. extra: 310 / 273
  25648. }
  25649. },
  25650. back: {
  25651. height: math.unit(6, "feet"),
  25652. weight: math.unit(220, "lb"),
  25653. name: "Back",
  25654. image: {
  25655. source: "./media/characters/lynn-rhea/back.svg",
  25656. extra: 310 / 273
  25657. }
  25658. },
  25659. dicks: {
  25660. height: math.unit(0.9, "feet"),
  25661. name: "Dicks",
  25662. image: {
  25663. source: "./media/characters/lynn-rhea/dicks.svg"
  25664. }
  25665. },
  25666. slit: {
  25667. height: math.unit(0.4, "feet"),
  25668. name: "Slit",
  25669. image: {
  25670. source: "./media/characters/lynn-rhea/slit.svg"
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Micro",
  25677. height: math.unit(1, "inch")
  25678. },
  25679. {
  25680. name: "Macro",
  25681. height: math.unit(60, "feet"),
  25682. default: true
  25683. },
  25684. {
  25685. name: "Megamacro",
  25686. height: math.unit(2, "miles")
  25687. },
  25688. {
  25689. name: "Gigamacro",
  25690. height: math.unit(3, "earths")
  25691. },
  25692. {
  25693. name: "Galactic",
  25694. height: math.unit(0.8, "galaxies")
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25700. {
  25701. front: {
  25702. height: math.unit(1600, "feet"),
  25703. weight: math.unit(85758785169, "kg"),
  25704. name: "Front",
  25705. image: {
  25706. source: "./media/characters/valathos/front.svg",
  25707. extra: 1451 / 1339
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Macro",
  25714. height: math.unit(1600, "feet"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(7 + 5 / 12, "feet"),
  25724. weight: math.unit(300, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/azula/front.svg",
  25728. extra: 3208 / 2880,
  25729. bottom: 80.2 / 3277
  25730. }
  25731. },
  25732. back: {
  25733. height: math.unit(7 + 5 / 12, "feet"),
  25734. weight: math.unit(300, "lb"),
  25735. name: "Back",
  25736. image: {
  25737. source: "./media/characters/azula/back.svg",
  25738. extra: 3169 / 2822,
  25739. bottom: 150.6 / 3321
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Normal",
  25746. height: math.unit(7 + 5 / 12, "feet"),
  25747. default: true
  25748. },
  25749. {
  25750. name: "Big",
  25751. height: math.unit(20, "feet")
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(5 + 1 / 12, "feet"),
  25760. weight: math.unit(110, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/rupert/front.svg",
  25764. extra: 1549 / 1495,
  25765. bottom: 54.2 / 1604.4
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(5 + 1 / 12, "feet"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25779. {
  25780. front: {
  25781. height: math.unit(8 + 4 / 12, "feet"),
  25782. weight: math.unit(350, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/sheera-castellar/front.svg",
  25786. extra: 1957 / 1894,
  25787. bottom: 26.97 / 1975.017
  25788. }
  25789. },
  25790. side: {
  25791. height: math.unit(8 + 4 / 12, "feet"),
  25792. weight: math.unit(350, "lb"),
  25793. name: "Side",
  25794. image: {
  25795. source: "./media/characters/sheera-castellar/side.svg",
  25796. extra: 1957 / 1894
  25797. }
  25798. },
  25799. back: {
  25800. height: math.unit(8 + 4 / 12, "feet"),
  25801. weight: math.unit(350, "lb"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/sheera-castellar/back.svg",
  25805. extra: 1957 / 1894
  25806. }
  25807. },
  25808. angled: {
  25809. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25810. weight: math.unit(350, "lb"),
  25811. name: "Angled",
  25812. image: {
  25813. source: "./media/characters/sheera-castellar/angled.svg",
  25814. extra: 1807 / 1707,
  25815. bottom: 68 / 1875
  25816. }
  25817. },
  25818. genitals: {
  25819. height: math.unit(2.2, "feet"),
  25820. name: "Genitals",
  25821. image: {
  25822. source: "./media/characters/sheera-castellar/genitals.svg"
  25823. }
  25824. },
  25825. taur: {
  25826. height: math.unit(10 + 6/12, "feet"),
  25827. name: "Taur",
  25828. image: {
  25829. source: "./media/characters/sheera-castellar/taur.svg",
  25830. extra: 2017/1909,
  25831. bottom: 185/2202
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Normal",
  25838. height: math.unit(8 + 4 / 12, "feet")
  25839. },
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(150, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro+",
  25847. height: math.unit(800, "feet")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(6, "feet"),
  25856. weight: math.unit(150, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/jaipur/front.svg",
  25860. extra: 3860 / 3731,
  25861. bottom: 287 / 4140
  25862. }
  25863. },
  25864. back: {
  25865. height: math.unit(6, "feet"),
  25866. weight: math.unit(150, "lb"),
  25867. name: "Back",
  25868. image: {
  25869. source: "./media/characters/jaipur/back.svg",
  25870. extra: 1637/1561,
  25871. bottom: 154/1791
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(1.85, "meters"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Macro",
  25883. height: math.unit(150, "meters")
  25884. },
  25885. {
  25886. name: "Macro+",
  25887. height: math.unit(0.5, "miles")
  25888. },
  25889. {
  25890. name: "Macro++",
  25891. height: math.unit(2.5, "miles")
  25892. },
  25893. {
  25894. name: "Macro+++",
  25895. height: math.unit(12, "miles")
  25896. },
  25897. {
  25898. name: "Macro++++",
  25899. height: math.unit(120, "miles")
  25900. },
  25901. {
  25902. name: "Macro+++++",
  25903. height: math.unit(1200, "miles")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(6, "feet"),
  25912. weight: math.unit(150, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/sheila-wolf/front.svg",
  25916. extra: 1931 / 1808,
  25917. bottom: 29.5 / 1960
  25918. }
  25919. },
  25920. dick: {
  25921. height: math.unit(1.464, "feet"),
  25922. name: "Dick",
  25923. image: {
  25924. source: "./media/characters/sheila-wolf/dick.svg"
  25925. }
  25926. },
  25927. muzzle: {
  25928. height: math.unit(0.513, "feet"),
  25929. name: "Muzzle",
  25930. image: {
  25931. source: "./media/characters/sheila-wolf/muzzle.svg"
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(70, "feet"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(32, "meters"),
  25948. weight: math.unit(300000, "kg"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/almor/front.svg",
  25952. extra: 1408 / 1322,
  25953. bottom: 94.6 / 1506.5
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(32, "meters"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(7, "feet"),
  25970. weight: math.unit(200, "lb"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/silver/front.svg",
  25974. extra: 472.1 / 450.5,
  25975. bottom: 26.5 / 499.424
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(7, "feet"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(800, "feet")
  25988. },
  25989. {
  25990. name: "Megamacro",
  25991. height: math.unit(250, "miles")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(6, "feet"),
  26000. weight: math.unit(150, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/pliskin/front.svg",
  26004. extra: 1469 / 1359,
  26005. bottom: 70 / 1540
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Micro",
  26012. height: math.unit(3, "inches")
  26013. },
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(5 + 11 / 12, "feet"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Macro",
  26021. height: math.unit(120, "feet")
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26027. {
  26028. front: {
  26029. height: math.unit(6, "feet"),
  26030. weight: math.unit(150, "lb"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/sammy/front.svg",
  26034. extra: 1193 / 1089,
  26035. bottom: 30.5 / 1226
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Macro",
  26042. height: math.unit(1700, "feet"),
  26043. default: true
  26044. },
  26045. {
  26046. name: "Examacro",
  26047. height: math.unit(2.5e9, "lightyears")
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(21, "meters"),
  26056. weight: math.unit(12, "tonnes"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/kuru/front.svg",
  26060. extra: 4301 / 3785,
  26061. bottom: 371.3 / 4691
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Macro",
  26068. height: math.unit(21, "meters"),
  26069. default: true
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(23, "meters"),
  26078. weight: math.unit(12.2, "tonnes"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/rakka/front.svg",
  26082. extra: 4670 / 4169,
  26083. bottom: 301 / 4968.7
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Macro",
  26090. height: math.unit(23, "meters"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(6, "feet"),
  26100. weight: math.unit(150, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/rhys-feline/front.svg",
  26104. extra: 2488 / 2308,
  26105. bottom: 35.67 / 2519.19
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Really Small",
  26112. height: math.unit(1, "nm")
  26113. },
  26114. {
  26115. name: "Micro",
  26116. height: math.unit(4, "inches")
  26117. },
  26118. {
  26119. name: "Normal",
  26120. height: math.unit(4 + 10 / 12, "feet"),
  26121. default: true
  26122. },
  26123. {
  26124. name: "Macro",
  26125. height: math.unit(100, "feet")
  26126. },
  26127. {
  26128. name: "Megamacto",
  26129. height: math.unit(50, "miles")
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26135. {
  26136. side: {
  26137. height: math.unit(30, "feet"),
  26138. weight: math.unit(35000, "kg"),
  26139. name: "Side",
  26140. image: {
  26141. source: "./media/characters/alydar/side.svg",
  26142. extra: 234 / 222,
  26143. bottom: 6.5 / 241
  26144. }
  26145. },
  26146. front: {
  26147. height: math.unit(30, "feet"),
  26148. weight: math.unit(35000, "kg"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/alydar/front.svg",
  26152. extra: 223.37 / 210.2,
  26153. bottom: 22.3 / 246.76
  26154. }
  26155. },
  26156. top: {
  26157. height: math.unit(64.54, "feet"),
  26158. weight: math.unit(35000, "kg"),
  26159. name: "Top",
  26160. image: {
  26161. source: "./media/characters/alydar/top.svg"
  26162. }
  26163. },
  26164. anthro: {
  26165. height: math.unit(30, "feet"),
  26166. weight: math.unit(9000, "kg"),
  26167. name: "Anthro",
  26168. image: {
  26169. source: "./media/characters/alydar/anthro.svg",
  26170. extra: 432 / 421,
  26171. bottom: 7.18 / 440
  26172. }
  26173. },
  26174. maw: {
  26175. height: math.unit(11.693, "feet"),
  26176. name: "Maw",
  26177. image: {
  26178. source: "./media/characters/alydar/maw.svg"
  26179. }
  26180. },
  26181. head: {
  26182. height: math.unit(11.693, "feet"),
  26183. name: "Head",
  26184. image: {
  26185. source: "./media/characters/alydar/head.svg"
  26186. }
  26187. },
  26188. headAlt: {
  26189. height: math.unit(12.861, "feet"),
  26190. name: "Head (Alt)",
  26191. image: {
  26192. source: "./media/characters/alydar/head-alt.svg"
  26193. }
  26194. },
  26195. wing: {
  26196. height: math.unit(20.712, "feet"),
  26197. name: "Wing",
  26198. image: {
  26199. source: "./media/characters/alydar/wing.svg"
  26200. }
  26201. },
  26202. wingFeather: {
  26203. height: math.unit(9.662, "feet"),
  26204. name: "Wing Feather",
  26205. image: {
  26206. source: "./media/characters/alydar/wing-feather.svg"
  26207. }
  26208. },
  26209. countourFeather: {
  26210. height: math.unit(4.154, "feet"),
  26211. name: "Contour Feather",
  26212. image: {
  26213. source: "./media/characters/alydar/contour-feather.svg"
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Diplomatic",
  26220. height: math.unit(13, "feet"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Small",
  26225. height: math.unit(30, "feet")
  26226. },
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(95, "feet"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Large",
  26234. height: math.unit(285, "feet")
  26235. },
  26236. {
  26237. name: "Incomprehensible",
  26238. height: math.unit(450, "megameters")
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26244. {
  26245. side: {
  26246. height: math.unit(11, "feet"),
  26247. weight: math.unit(1750, "kg"),
  26248. name: "Side",
  26249. image: {
  26250. source: "./media/characters/selicia/side.svg",
  26251. extra: 440 / 396,
  26252. bottom: 24.8 / 465.979
  26253. }
  26254. },
  26255. maw: {
  26256. height: math.unit(4.665, "feet"),
  26257. name: "Maw",
  26258. image: {
  26259. source: "./media/characters/selicia/maw.svg"
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(11, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26273. {
  26274. side: {
  26275. height: math.unit(2 + 6 / 12, "feet"),
  26276. weight: math.unit(30, "lb"),
  26277. name: "Side",
  26278. image: {
  26279. source: "./media/characters/layla/side.svg",
  26280. extra: 244 / 188,
  26281. bottom: 18.2 / 262.1
  26282. }
  26283. },
  26284. back: {
  26285. height: math.unit(2 + 6 / 12, "feet"),
  26286. weight: math.unit(30, "lb"),
  26287. name: "Back",
  26288. image: {
  26289. source: "./media/characters/layla/back.svg",
  26290. extra: 308 / 241.5,
  26291. bottom: 8.9 / 316.8
  26292. }
  26293. },
  26294. cumming: {
  26295. height: math.unit(2 + 6 / 12, "feet"),
  26296. weight: math.unit(30, "lb"),
  26297. name: "Cumming",
  26298. image: {
  26299. source: "./media/characters/layla/cumming.svg",
  26300. extra: 342 / 279,
  26301. bottom: 595 / 938
  26302. }
  26303. },
  26304. dickFlaccid: {
  26305. height: math.unit(2.595, "feet"),
  26306. name: "Flaccid Genitals",
  26307. image: {
  26308. source: "./media/characters/layla/dick-flaccid.svg"
  26309. }
  26310. },
  26311. dickErect: {
  26312. height: math.unit(2.359, "feet"),
  26313. name: "Erect Genitals",
  26314. image: {
  26315. source: "./media/characters/layla/dick-erect.svg"
  26316. }
  26317. },
  26318. dragon: {
  26319. height: math.unit(40, "feet"),
  26320. name: "Dragon",
  26321. image: {
  26322. source: "./media/characters/layla/dragon.svg",
  26323. extra: 610/535,
  26324. bottom: 367/977
  26325. }
  26326. },
  26327. taur: {
  26328. height: math.unit(30, "feet"),
  26329. name: "Taur",
  26330. image: {
  26331. source: "./media/characters/layla/taur.svg",
  26332. extra: 1268/1199,
  26333. bottom: 112/1380
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Micro",
  26340. height: math.unit(1, "inch")
  26341. },
  26342. {
  26343. name: "Small",
  26344. height: math.unit(1, "foot")
  26345. },
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(2 + 6 / 12, "feet"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Macro",
  26353. height: math.unit(200, "feet")
  26354. },
  26355. {
  26356. name: "Megamacro",
  26357. height: math.unit(1000, "miles")
  26358. },
  26359. {
  26360. name: "Planetary",
  26361. height: math.unit(8000, "miles")
  26362. },
  26363. {
  26364. name: "True Layla",
  26365. height: math.unit(200000 * 7, "multiverses")
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26371. {
  26372. back: {
  26373. height: math.unit(10.5, "feet"),
  26374. weight: math.unit(800, "lb"),
  26375. name: "Back",
  26376. image: {
  26377. source: "./media/characters/knox/back.svg",
  26378. extra: 1486 / 1089,
  26379. bottom: 107 / 1601.4
  26380. }
  26381. },
  26382. side: {
  26383. height: math.unit(10.5, "feet"),
  26384. weight: math.unit(800, "lb"),
  26385. name: "Side",
  26386. image: {
  26387. source: "./media/characters/knox/side.svg",
  26388. extra: 244 / 218,
  26389. bottom: 14 / 260
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Compact",
  26396. height: math.unit(10.5, "feet"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Dynamax",
  26401. height: math.unit(210, "feet")
  26402. },
  26403. {
  26404. name: "Full Macro",
  26405. height: math.unit(850, "feet")
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(28, "feet"),
  26414. weight: math.unit(10500, "lb"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/kayda/front.svg",
  26418. extra: 1536 / 1428,
  26419. bottom: 68.7 / 1603
  26420. }
  26421. },
  26422. back: {
  26423. height: math.unit(28, "feet"),
  26424. weight: math.unit(10500, "lb"),
  26425. name: "Back",
  26426. image: {
  26427. source: "./media/characters/kayda/back.svg",
  26428. extra: 1557 / 1464,
  26429. bottom: 39.5 / 1597.49
  26430. }
  26431. },
  26432. dick: {
  26433. height: math.unit(3.858, "feet"),
  26434. name: "Dick",
  26435. image: {
  26436. source: "./media/characters/kayda/dick.svg"
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Macro",
  26443. height: math.unit(28, "feet"),
  26444. default: true
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(10 + 11 / 12, "feet"),
  26453. weight: math.unit(1400, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/brian/front.svg",
  26457. extra: 737 / 692,
  26458. bottom: 55.4 / 785
  26459. }
  26460. },
  26461. },
  26462. [
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(10 + 11 / 12, "feet"),
  26466. default: true
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(5 + 8 / 12, "feet"),
  26475. weight: math.unit(140, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/khemri/front.svg",
  26479. extra: 4780 / 4059,
  26480. bottom: 80.1 / 4859.25
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Micro",
  26487. height: math.unit(6, "inches")
  26488. },
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(5 + 8 / 12, "feet"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26498. {
  26499. front: {
  26500. height: math.unit(13, "feet"),
  26501. weight: math.unit(1700, "lb"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/felix-braveheart/front.svg",
  26505. extra: 1222 / 1157,
  26506. bottom: 53.2 / 1280
  26507. }
  26508. },
  26509. back: {
  26510. height: math.unit(13, "feet"),
  26511. weight: math.unit(1700, "lb"),
  26512. name: "Back",
  26513. image: {
  26514. source: "./media/characters/felix-braveheart/back.svg",
  26515. extra: 1277 / 1203,
  26516. bottom: 50.2 / 1327
  26517. }
  26518. },
  26519. feral: {
  26520. height: math.unit(6, "feet"),
  26521. weight: math.unit(400, "lb"),
  26522. name: "Feral",
  26523. image: {
  26524. source: "./media/characters/felix-braveheart/feral.svg",
  26525. extra: 682 / 625,
  26526. bottom: 6.9 / 688
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(13, "feet"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26540. {
  26541. side: {
  26542. height: math.unit(5 + 11 / 12, "feet"),
  26543. weight: math.unit(1400, "lb"),
  26544. name: "Side",
  26545. image: {
  26546. source: "./media/characters/shadow-blade/side.svg",
  26547. extra: 1726 / 1267,
  26548. bottom: 58.4 / 1785
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5 + 11 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(1 + 6 / 12, "feet"),
  26565. weight: math.unit(25, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/karla-halldor/front.svg",
  26569. extra: 1459 / 1383,
  26570. bottom: 12 / 1472
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(1 + 6 / 12, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(6 + 2 / 12, "feet"),
  26587. weight: math.unit(160, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/ariam/front.svg",
  26591. extra: 1073/976,
  26592. bottom: 52/1125
  26593. }
  26594. },
  26595. back: {
  26596. height: math.unit(6 + 2/12, "feet"),
  26597. weight: math.unit(160, "lb"),
  26598. name: "Back",
  26599. image: {
  26600. source: "./media/characters/ariam/back.svg",
  26601. extra: 1103/1023,
  26602. bottom: 9/1112
  26603. }
  26604. },
  26605. dressed: {
  26606. height: math.unit(6 + 2/12, "feet"),
  26607. weight: math.unit(160, "lb"),
  26608. name: "Dressed",
  26609. image: {
  26610. source: "./media/characters/ariam/dressed.svg",
  26611. extra: 1099/1009,
  26612. bottom: 25/1124
  26613. }
  26614. },
  26615. squatting: {
  26616. height: math.unit(4.1, "feet"),
  26617. weight: math.unit(160, "lb"),
  26618. name: "Squatting",
  26619. image: {
  26620. source: "./media/characters/ariam/squatting.svg",
  26621. extra: 2617 / 2112,
  26622. bottom: 61.2 / 2681,
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(6 + 2 / 12, "feet"),
  26630. default: true
  26631. },
  26632. {
  26633. name: "Normal+",
  26634. height: math.unit(4, "meters")
  26635. },
  26636. {
  26637. name: "Macro",
  26638. height: math.unit(50, "meters")
  26639. },
  26640. {
  26641. name: "Macro+",
  26642. height: math.unit(100, "meters")
  26643. },
  26644. {
  26645. name: "Megamacro",
  26646. height: math.unit(20, "km")
  26647. },
  26648. {
  26649. name: "Caretaker",
  26650. height: math.unit(444, "megameters")
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(1.67, "meters"),
  26659. weight: math.unit(140, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26663. extra: 438 / 410,
  26664. bottom: 0.75 / 439
  26665. }
  26666. },
  26667. },
  26668. [
  26669. {
  26670. name: "Shrunken",
  26671. height: math.unit(7.6, "cm")
  26672. },
  26673. {
  26674. name: "Human Scale",
  26675. height: math.unit(1.67, "meters")
  26676. },
  26677. {
  26678. name: "Wolxi Scale",
  26679. height: math.unit(36.7, "meters"),
  26680. default: true
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26686. {
  26687. front: {
  26688. height: math.unit(1.73, "meters"),
  26689. weight: math.unit(240, "lb"),
  26690. name: "Front",
  26691. image: {
  26692. source: "./media/characters/izue-two-mothers/front.svg",
  26693. extra: 469 / 437,
  26694. bottom: 1.24 / 470.6
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Shrunken",
  26701. height: math.unit(7.86, "cm")
  26702. },
  26703. {
  26704. name: "Human Scale",
  26705. height: math.unit(1.73, "meters")
  26706. },
  26707. {
  26708. name: "Wolxi Scale",
  26709. height: math.unit(38, "meters"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(1.55, "meters"),
  26719. weight: math.unit(120, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/teeku-love-shack/front.svg",
  26723. extra: 387 / 362,
  26724. bottom: 1.51 / 388
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Shrunken",
  26731. height: math.unit(7, "cm")
  26732. },
  26733. {
  26734. name: "Human Scale",
  26735. height: math.unit(1.55, "meters")
  26736. },
  26737. {
  26738. name: "Wolxi Scale",
  26739. height: math.unit(34.1, "meters"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(1.83, "meters"),
  26749. weight: math.unit(135, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/dejma-the-red/front.svg",
  26753. extra: 480 / 458,
  26754. bottom: 1.8 / 482
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Shrunken",
  26761. height: math.unit(8.3, "cm")
  26762. },
  26763. {
  26764. name: "Human Scale",
  26765. height: math.unit(1.83, "meters")
  26766. },
  26767. {
  26768. name: "Wolxi Scale",
  26769. height: math.unit(40, "meters"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26776. {
  26777. front: {
  26778. height: math.unit(1.78, "meters"),
  26779. weight: math.unit(65, "kg"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/aki/front.svg",
  26783. extra: 452 / 415
  26784. }
  26785. },
  26786. frontNsfw: {
  26787. height: math.unit(1.78, "meters"),
  26788. weight: math.unit(65, "kg"),
  26789. name: "Front (NSFW)",
  26790. image: {
  26791. source: "./media/characters/aki/front-nsfw.svg",
  26792. extra: 452 / 415
  26793. }
  26794. },
  26795. back: {
  26796. height: math.unit(1.78, "meters"),
  26797. weight: math.unit(65, "kg"),
  26798. name: "Back",
  26799. image: {
  26800. source: "./media/characters/aki/back.svg",
  26801. extra: 452 / 415
  26802. }
  26803. },
  26804. rump: {
  26805. height: math.unit(2.05, "feet"),
  26806. name: "Rump",
  26807. image: {
  26808. source: "./media/characters/aki/rump.svg"
  26809. }
  26810. },
  26811. dick: {
  26812. height: math.unit(0.95, "feet"),
  26813. name: "Dick",
  26814. image: {
  26815. source: "./media/characters/aki/dick.svg"
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Micro",
  26822. height: math.unit(15, "cm")
  26823. },
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(178, "cm"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(214, "m")
  26832. },
  26833. {
  26834. name: "Macro+",
  26835. height: math.unit(534, "m")
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(5 + 5 / 12, "feet"),
  26844. weight: math.unit(120, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/ari/front.svg",
  26848. extra: 1550/1471,
  26849. bottom: 39/1589
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(5 + 5 / 12, "feet")
  26857. },
  26858. {
  26859. name: "Macro",
  26860. height: math.unit(100, "feet"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Megamacro",
  26865. height: math.unit(100, "miles")
  26866. },
  26867. {
  26868. name: "Gigamacro",
  26869. height: math.unit(80000, "miles")
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26875. {
  26876. side: {
  26877. height: math.unit(9, "feet"),
  26878. weight: math.unit(400, "kg"),
  26879. name: "Side",
  26880. image: {
  26881. source: "./media/characters/bolt/side.svg",
  26882. extra: 1126 / 896,
  26883. bottom: 60 / 1187.3,
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Micro",
  26890. height: math.unit(5, "inches")
  26891. },
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(9, "feet"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Macro",
  26899. height: math.unit(700, "feet")
  26900. },
  26901. {
  26902. name: "Max Size",
  26903. height: math.unit(1.52e22, "yottameters")
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(4.3, "meters"),
  26912. weight: math.unit(3, "tons"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/draekon-sylviar/front.svg",
  26916. extra: 2072/1512,
  26917. bottom: 74/2146
  26918. }
  26919. },
  26920. back: {
  26921. height: math.unit(4.3, "meters"),
  26922. weight: math.unit(3, "tons"),
  26923. name: "Back",
  26924. image: {
  26925. source: "./media/characters/draekon-sylviar/back.svg",
  26926. extra: 1639/1483,
  26927. bottom: 41/1680
  26928. }
  26929. },
  26930. feral: {
  26931. height: math.unit(1.15, "meters"),
  26932. weight: math.unit(3, "tons"),
  26933. name: "Feral",
  26934. image: {
  26935. source: "./media/characters/draekon-sylviar/feral.svg",
  26936. extra: 1033/395,
  26937. bottom: 130/1163
  26938. }
  26939. },
  26940. maw: {
  26941. height: math.unit(1.3, "meters"),
  26942. name: "Maw",
  26943. image: {
  26944. source: "./media/characters/draekon-sylviar/maw.svg"
  26945. }
  26946. },
  26947. mawSeparated: {
  26948. height: math.unit(1.53, "meters"),
  26949. name: "Separated Maw",
  26950. image: {
  26951. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26952. }
  26953. },
  26954. tail: {
  26955. height: math.unit(1.15, "meters"),
  26956. name: "Tail",
  26957. image: {
  26958. source: "./media/characters/draekon-sylviar/tail.svg"
  26959. }
  26960. },
  26961. tailDick: {
  26962. height: math.unit(1.15, "meters"),
  26963. name: "Tail (Dick)",
  26964. image: {
  26965. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26966. }
  26967. },
  26968. tailDickSeparated: {
  26969. height: math.unit(1.19, "meters"),
  26970. name: "Tail (Separated Dick)",
  26971. image: {
  26972. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26973. }
  26974. },
  26975. slit: {
  26976. height: math.unit(1, "meters"),
  26977. name: "Slit",
  26978. image: {
  26979. source: "./media/characters/draekon-sylviar/slit.svg"
  26980. }
  26981. },
  26982. dick: {
  26983. height: math.unit(1.15, "meters"),
  26984. name: "Dick",
  26985. image: {
  26986. source: "./media/characters/draekon-sylviar/dick.svg"
  26987. }
  26988. },
  26989. dickSeparated: {
  26990. height: math.unit(1.1, "meters"),
  26991. name: "Separated Dick",
  26992. image: {
  26993. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26994. }
  26995. },
  26996. sheath: {
  26997. height: math.unit(1.15, "meters"),
  26998. name: "Sheath",
  26999. image: {
  27000. source: "./media/characters/draekon-sylviar/sheath.svg"
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Small",
  27007. height: math.unit(4.53 / 2, "meters"),
  27008. default: true
  27009. },
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(4.53, "meters"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Large",
  27017. height: math.unit(4.53 * 2, "meters"),
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(6 + 2 / 12, "feet"),
  27026. weight: math.unit(180, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/brawler/front.svg",
  27030. extra: 3301 / 3027,
  27031. bottom: 138 / 3439
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(6 + 2 / 12, "feet"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(11, "feet"),
  27048. weight: math.unit(1000, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/alex/front.svg",
  27052. bottom: 44.5 / 620
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Micro",
  27059. height: math.unit(5, "inches")
  27060. },
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(11, "feet"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Macro",
  27068. height: math.unit(9.5e9, "feet")
  27069. },
  27070. {
  27071. name: "Max Size",
  27072. height: math.unit(1.4e283, "yottameters")
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27078. {
  27079. female: {
  27080. height: math.unit(29.9, "m"),
  27081. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27082. name: "Female",
  27083. image: {
  27084. source: "./media/characters/zenari/female.svg",
  27085. extra: 3281.6 / 3217,
  27086. bottom: 72.2 / 3353
  27087. }
  27088. },
  27089. male: {
  27090. height: math.unit(27.7, "m"),
  27091. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27092. name: "Male",
  27093. image: {
  27094. source: "./media/characters/zenari/male.svg",
  27095. extra: 3008 / 2991,
  27096. bottom: 54.6 / 3069
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Macro",
  27103. height: math.unit(29.7, "meters"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27110. {
  27111. female: {
  27112. height: math.unit(23.8, "m"),
  27113. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27114. name: "Female",
  27115. image: {
  27116. source: "./media/characters/mactarian/female.svg",
  27117. extra: 2662 / 2569,
  27118. bottom: 73 / 2736
  27119. }
  27120. },
  27121. male: {
  27122. height: math.unit(23.8, "m"),
  27123. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27124. name: "Male",
  27125. image: {
  27126. source: "./media/characters/mactarian/male.svg",
  27127. extra: 2673 / 2600,
  27128. bottom: 76 / 2750
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Macro",
  27135. height: math.unit(23.8, "meters"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27142. {
  27143. female: {
  27144. height: math.unit(19.3, "m"),
  27145. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27146. name: "Female",
  27147. image: {
  27148. source: "./media/characters/umok/female.svg",
  27149. extra: 2186 / 2078,
  27150. bottom: 87 / 2277
  27151. }
  27152. },
  27153. male: {
  27154. height: math.unit(19.5, "m"),
  27155. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27156. name: "Male",
  27157. image: {
  27158. source: "./media/characters/umok/male.svg",
  27159. extra: 2233 / 2140,
  27160. bottom: 24.4 / 2258
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Macro",
  27167. height: math.unit(19.3, "meters"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27174. {
  27175. female: {
  27176. height: math.unit(26.15, "m"),
  27177. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27178. name: "Female",
  27179. image: {
  27180. source: "./media/characters/joraxian/female.svg",
  27181. extra: 2912 / 2824,
  27182. bottom: 36 / 2956
  27183. }
  27184. },
  27185. male: {
  27186. height: math.unit(25.4, "m"),
  27187. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27188. name: "Male",
  27189. image: {
  27190. source: "./media/characters/joraxian/male.svg",
  27191. extra: 2877 / 2721,
  27192. bottom: 82 / 2967
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Macro",
  27199. height: math.unit(26.15, "meters"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27206. {
  27207. female: {
  27208. height: math.unit(21.6, "m"),
  27209. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27210. name: "Female",
  27211. image: {
  27212. source: "./media/characters/sthara/female.svg",
  27213. extra: 2516 / 2347,
  27214. bottom: 21.5 / 2537
  27215. }
  27216. },
  27217. male: {
  27218. height: math.unit(24, "m"),
  27219. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27220. name: "Male",
  27221. image: {
  27222. source: "./media/characters/sthara/male.svg",
  27223. extra: 2732 / 2607,
  27224. bottom: 23 / 2732
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(21.6, "meters"),
  27232. default: true
  27233. },
  27234. ]
  27235. ))
  27236. characterMakers.push(() => makeCharacter(
  27237. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27238. {
  27239. front: {
  27240. height: math.unit(6 + 4 / 12, "feet"),
  27241. weight: math.unit(175, "lb"),
  27242. name: "Front",
  27243. image: {
  27244. source: "./media/characters/luka-bryzant/front.svg",
  27245. extra: 311 / 289,
  27246. bottom: 4 / 315
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(6 + 4 / 12, "feet"),
  27251. weight: math.unit(175, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/luka-bryzant/back.svg",
  27255. extra: 311 / 289,
  27256. bottom: 3.8 / 313.7
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Micro",
  27263. height: math.unit(10, "inches")
  27264. },
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(6 + 4 / 12, "feet"),
  27268. default: true
  27269. },
  27270. {
  27271. name: "Large",
  27272. height: math.unit(12, "feet")
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27278. {
  27279. front: {
  27280. height: math.unit(5 + 7 / 12, "feet"),
  27281. weight: math.unit(185, "lb"),
  27282. name: "Front",
  27283. image: {
  27284. source: "./media/characters/aman-aquila/front.svg",
  27285. extra: 1013 / 976,
  27286. bottom: 45.6 / 1057
  27287. }
  27288. },
  27289. side: {
  27290. height: math.unit(5 + 7 / 12, "feet"),
  27291. weight: math.unit(185, "lb"),
  27292. name: "Side",
  27293. image: {
  27294. source: "./media/characters/aman-aquila/side.svg",
  27295. extra: 1054 / 1011,
  27296. bottom: 15 / 1070
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(5 + 7 / 12, "feet"),
  27301. weight: math.unit(185, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/aman-aquila/back.svg",
  27305. extra: 1026 / 970,
  27306. bottom: 12 / 1039
  27307. }
  27308. },
  27309. head: {
  27310. height: math.unit(1.211, "feet"),
  27311. name: "Head",
  27312. image: {
  27313. source: "./media/characters/aman-aquila/head.svg",
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Minimicro",
  27320. height: math.unit(0.057, "inches")
  27321. },
  27322. {
  27323. name: "Micro",
  27324. height: math.unit(7, "inches")
  27325. },
  27326. {
  27327. name: "Mini",
  27328. height: math.unit(3 + 7 / 12, "feet")
  27329. },
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(5 + 7 / 12, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Macro",
  27337. height: math.unit(157 + 7 / 12, "feet")
  27338. },
  27339. {
  27340. name: "Megamacro",
  27341. height: math.unit(1557 + 7 / 12, "feet")
  27342. },
  27343. {
  27344. name: "Gigamacro",
  27345. height: math.unit(15557 + 7 / 12, "feet")
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(3 + 2 / 12, "inches"),
  27354. weight: math.unit(0.3, "ounces"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/hiphae/front.svg",
  27358. extra: 1931 / 1683,
  27359. bottom: 24 / 1955
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(3 + 1 / 2, "inches"),
  27367. default: true
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(5 + 10 / 12, "feet"),
  27376. weight: math.unit(165, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/nicky/front.svg",
  27380. extra: 3144 / 2886,
  27381. bottom: 45.6 / 3192
  27382. }
  27383. },
  27384. back: {
  27385. height: math.unit(5 + 10 / 12, "feet"),
  27386. weight: math.unit(165, "lb"),
  27387. name: "Back",
  27388. image: {
  27389. source: "./media/characters/nicky/back.svg",
  27390. extra: 3055 / 2804,
  27391. bottom: 28.4 / 3087
  27392. }
  27393. },
  27394. frontclothed: {
  27395. height: math.unit(5 + 10 / 12, "feet"),
  27396. weight: math.unit(165, "lb"),
  27397. name: "Front-clothed",
  27398. image: {
  27399. source: "./media/characters/nicky/front-clothed.svg",
  27400. extra: 3184.9 / 2926.9,
  27401. bottom: 86.5 / 3239.9
  27402. }
  27403. },
  27404. foot: {
  27405. height: math.unit(1.16, "feet"),
  27406. name: "Foot",
  27407. image: {
  27408. source: "./media/characters/nicky/foot.svg"
  27409. }
  27410. },
  27411. feet: {
  27412. height: math.unit(1.34, "feet"),
  27413. name: "Feet",
  27414. image: {
  27415. source: "./media/characters/nicky/feet.svg"
  27416. }
  27417. },
  27418. maw: {
  27419. height: math.unit(0.9, "feet"),
  27420. name: "Maw",
  27421. image: {
  27422. source: "./media/characters/nicky/maw.svg"
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(5 + 10 / 12, "feet"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Macro",
  27434. height: math.unit(60, "feet")
  27435. },
  27436. {
  27437. name: "Megamacro",
  27438. height: math.unit(1, "mile")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27444. {
  27445. side: {
  27446. height: math.unit(10, "feet"),
  27447. weight: math.unit(600, "lb"),
  27448. name: "Side",
  27449. image: {
  27450. source: "./media/characters/blair/side.svg",
  27451. bottom: 16.6 / 475,
  27452. extra: 458 / 431
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Micro",
  27459. height: math.unit(8, "inches")
  27460. },
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(10, "feet"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Macro",
  27468. height: math.unit(180, "feet")
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(5 + 4 / 12, "feet"),
  27477. weight: math.unit(125, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/fisher/front.svg",
  27481. extra: 444 / 390,
  27482. bottom: 2 / 444.8
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Micro",
  27489. height: math.unit(4, "inches")
  27490. },
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(5 + 4 / 12, "feet"),
  27494. default: true
  27495. },
  27496. {
  27497. name: "Macro",
  27498. height: math.unit(100, "feet")
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(6.71, "feet"),
  27507. weight: math.unit(200, "lb"),
  27508. preyCapacity: math.unit(1000000, "people"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/gliss/front.svg",
  27512. extra: 2347 / 2231,
  27513. bottom: 113 / 2462
  27514. }
  27515. },
  27516. hammerspaceSize: {
  27517. height: math.unit(6.71 * 717, "feet"),
  27518. weight: math.unit(200, "lb"),
  27519. preyCapacity: math.unit(1000000, "people"),
  27520. name: "Hammerspace Size",
  27521. image: {
  27522. source: "./media/characters/gliss/front.svg",
  27523. extra: 2347 / 2231,
  27524. bottom: 113 / 2462
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(6.71, "feet"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27538. {
  27539. side: {
  27540. height: math.unit(1.44, "m"),
  27541. weight: math.unit(80, "kg"),
  27542. name: "Side",
  27543. image: {
  27544. source: "./media/characters/dune-anderson/side.svg",
  27545. bottom: 49 / 1426
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Wolf-sized",
  27552. height: math.unit(1.44, "meters")
  27553. },
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(5.05, "meters"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Big",
  27561. height: math.unit(14.4, "meters")
  27562. },
  27563. {
  27564. name: "Huge",
  27565. height: math.unit(144, "meters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(6, "feet"),
  27574. weight: math.unit(220, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/hind/front.svg",
  27578. extra: 1912/1787,
  27579. bottom: 52/1964
  27580. }
  27581. },
  27582. back: {
  27583. height: math.unit(6, "feet"),
  27584. weight: math.unit(220, "lb"),
  27585. name: "Back",
  27586. image: {
  27587. source: "./media/characters/hind/back.svg",
  27588. extra: 1901/1794,
  27589. bottom: 26/1927
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(6, "feet"),
  27597. default: true
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27603. {
  27604. front: {
  27605. height: math.unit(2.1, "meters"),
  27606. weight: math.unit(150, "lb"),
  27607. name: "Front",
  27608. image: {
  27609. source: "./media/characters/tharquench-sizestealer/front.svg",
  27610. extra: 1605/1470,
  27611. bottom: 36/1641
  27612. }
  27613. },
  27614. frontAlt: {
  27615. height: math.unit(2.1, "meters"),
  27616. weight: math.unit(150, "lb"),
  27617. name: "Front (Alt)",
  27618. image: {
  27619. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27620. extra: 2318 / 2063,
  27621. bottom: 93.4 / 2410
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Nano",
  27628. height: math.unit(1, "mm")
  27629. },
  27630. {
  27631. name: "Micro",
  27632. height: math.unit(1, "cm")
  27633. },
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(2.1, "meters"),
  27637. default: true
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(7 + 5 / 12, "feet"),
  27646. weight: math.unit(357, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/solex-draconov/front.svg",
  27650. extra: 1993 / 1865,
  27651. bottom: 117 / 2111
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Natural Height",
  27658. height: math.unit(7 + 5 / 12, "feet"),
  27659. default: true
  27660. },
  27661. {
  27662. name: "Macro",
  27663. height: math.unit(350, "feet")
  27664. },
  27665. {
  27666. name: "Macro+",
  27667. height: math.unit(1000, "feet")
  27668. },
  27669. {
  27670. name: "Megamacro",
  27671. height: math.unit(20, "km")
  27672. },
  27673. {
  27674. name: "Megamacro+",
  27675. height: math.unit(1000, "km")
  27676. },
  27677. {
  27678. name: "Gigamacro",
  27679. height: math.unit(2.5, "Gm")
  27680. },
  27681. {
  27682. name: "Teramacro",
  27683. height: math.unit(15, "Tm")
  27684. },
  27685. {
  27686. name: "Galactic",
  27687. height: math.unit(30, "Zm")
  27688. },
  27689. {
  27690. name: "Universal",
  27691. height: math.unit(21000, "Ym")
  27692. },
  27693. {
  27694. name: "Omniversal",
  27695. height: math.unit(9.861e50, "Ym")
  27696. },
  27697. {
  27698. name: "Existential",
  27699. height: math.unit(1e300, "meters")
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27705. {
  27706. side: {
  27707. height: math.unit(25, "feet"),
  27708. weight: math.unit(90000, "lb"),
  27709. name: "Side",
  27710. image: {
  27711. source: "./media/characters/mandarax/side.svg",
  27712. extra: 614 / 332,
  27713. bottom: 55 / 630
  27714. }
  27715. },
  27716. lounging: {
  27717. height: math.unit(15.4, "feet"),
  27718. weight: math.unit(90000, "lb"),
  27719. name: "Lounging",
  27720. image: {
  27721. source: "./media/characters/mandarax/lounging.svg",
  27722. extra: 817/609,
  27723. bottom: 685/1502
  27724. }
  27725. },
  27726. head: {
  27727. height: math.unit(11.4, "feet"),
  27728. name: "Head",
  27729. image: {
  27730. source: "./media/characters/mandarax/head.svg"
  27731. }
  27732. },
  27733. belly: {
  27734. height: math.unit(33, "feet"),
  27735. name: "Belly",
  27736. preyCapacity: math.unit(500, "people"),
  27737. image: {
  27738. source: "./media/characters/mandarax/belly.svg"
  27739. }
  27740. },
  27741. dick: {
  27742. height: math.unit(8.46, "feet"),
  27743. name: "Dick",
  27744. image: {
  27745. source: "./media/characters/mandarax/dick.svg"
  27746. }
  27747. },
  27748. top: {
  27749. height: math.unit(28, "meters"),
  27750. name: "Top",
  27751. image: {
  27752. source: "./media/characters/mandarax/top.svg"
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(25, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(5, "feet"),
  27769. weight: math.unit(90, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/pixil/front.svg",
  27773. extra: 2000 / 1618,
  27774. bottom: 12.3 / 2011
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(5, "feet"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Megamacro",
  27786. height: math.unit(10, "miles"),
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(7 + 2 / 12, "feet"),
  27795. weight: math.unit(200, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/angel/front.svg",
  27799. extra: 1946/1840,
  27800. bottom: 30/1976
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(7 + 2 / 12, "feet"),
  27808. default: true
  27809. },
  27810. {
  27811. name: "Macro",
  27812. height: math.unit(1000, "feet")
  27813. },
  27814. {
  27815. name: "Megamacro",
  27816. height: math.unit(2, "miles")
  27817. },
  27818. {
  27819. name: "Gigamacro",
  27820. height: math.unit(20, "earths")
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(5, "feet"),
  27829. weight: math.unit(180, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/mekana/front.svg",
  27833. extra: 1671 / 1605,
  27834. bottom: 3.5 / 1691
  27835. }
  27836. },
  27837. side: {
  27838. height: math.unit(5, "feet"),
  27839. weight: math.unit(180, "lb"),
  27840. name: "Side",
  27841. image: {
  27842. source: "./media/characters/mekana/side.svg",
  27843. extra: 1671 / 1605,
  27844. bottom: 3.5 / 1691
  27845. }
  27846. },
  27847. back: {
  27848. height: math.unit(5, "feet"),
  27849. weight: math.unit(180, "lb"),
  27850. name: "Back",
  27851. image: {
  27852. source: "./media/characters/mekana/back.svg",
  27853. extra: 1671 / 1605,
  27854. bottom: 3.5 / 1691
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(5, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(4 + 6 / 12, "feet"),
  27871. weight: math.unit(80, "lb"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/pixie/front.svg",
  27875. extra: 1924 / 1825,
  27876. bottom: 22.4 / 1946
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(4 + 6 / 12, "feet"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Macro",
  27888. height: math.unit(40, "feet")
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(2.1, "meters"),
  27897. weight: math.unit(200, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/the-lascivious/front.svg",
  27901. extra: 1 / 0.893,
  27902. bottom: 3.5 / 573.7
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Human Scale",
  27909. height: math.unit(2.1, "meters")
  27910. },
  27911. {
  27912. name: "Wolxi Scale",
  27913. height: math.unit(46.2, "m"),
  27914. default: true
  27915. },
  27916. {
  27917. name: "Boinker of Buildings",
  27918. height: math.unit(10, "km")
  27919. },
  27920. {
  27921. name: "Shagger of Skyscrapers",
  27922. height: math.unit(40, "km")
  27923. },
  27924. {
  27925. name: "Banger of Boroughs",
  27926. height: math.unit(4000, "km")
  27927. },
  27928. {
  27929. name: "Screwer of States",
  27930. height: math.unit(100000, "km")
  27931. },
  27932. {
  27933. name: "Pounder of Planets",
  27934. height: math.unit(2000000, "km")
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(6, "feet"),
  27943. weight: math.unit(150, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/aj/front.svg",
  27947. extra: 2039 / 1562,
  27948. bottom: 40 / 2079
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(11 + 6 / 12, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Megamacro",
  27960. height: math.unit(60, "megameters")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27966. {
  27967. side: {
  27968. height: math.unit(31 + 8 / 12, "feet"),
  27969. weight: math.unit(75000, "kg"),
  27970. name: "Side",
  27971. image: {
  27972. source: "./media/characters/koros/side.svg",
  27973. extra: 1442 / 1297,
  27974. bottom: 122.7 / 1562
  27975. }
  27976. },
  27977. dicksKingsCrown: {
  27978. height: math.unit(6, "feet"),
  27979. name: "Dicks (King's Crown)",
  27980. image: {
  27981. source: "./media/characters/koros/dicks-kings-crown.svg"
  27982. }
  27983. },
  27984. dicksTailSet: {
  27985. height: math.unit(3, "feet"),
  27986. name: "Dicks (Tail Set)",
  27987. image: {
  27988. source: "./media/characters/koros/dicks-tail-set.svg"
  27989. }
  27990. },
  27991. dickCumming: {
  27992. height: math.unit(7.98, "feet"),
  27993. name: "Dick (Cumming)",
  27994. image: {
  27995. source: "./media/characters/koros/dick-cumming.svg"
  27996. }
  27997. },
  27998. dicksBack: {
  27999. height: math.unit(5.9, "feet"),
  28000. name: "Dicks (Back)",
  28001. image: {
  28002. source: "./media/characters/koros/dicks-back.svg"
  28003. }
  28004. },
  28005. dicksFront: {
  28006. height: math.unit(3.72, "feet"),
  28007. name: "Dicks (Front)",
  28008. image: {
  28009. source: "./media/characters/koros/dicks-front.svg"
  28010. }
  28011. },
  28012. dicksPeeking: {
  28013. height: math.unit(3.0, "feet"),
  28014. name: "Dicks (Peeking)",
  28015. image: {
  28016. source: "./media/characters/koros/dicks-peeking.svg"
  28017. }
  28018. },
  28019. eye: {
  28020. height: math.unit(1.7, "feet"),
  28021. name: "Eye",
  28022. image: {
  28023. source: "./media/characters/koros/eye.svg"
  28024. }
  28025. },
  28026. headFront: {
  28027. height: math.unit(11.69, "feet"),
  28028. name: "Head (Front)",
  28029. image: {
  28030. source: "./media/characters/koros/head-front.svg"
  28031. }
  28032. },
  28033. headSide: {
  28034. height: math.unit(14, "feet"),
  28035. name: "Head (Side)",
  28036. image: {
  28037. source: "./media/characters/koros/head-side.svg"
  28038. }
  28039. },
  28040. leg: {
  28041. height: math.unit(17, "feet"),
  28042. name: "Leg",
  28043. image: {
  28044. source: "./media/characters/koros/leg.svg"
  28045. }
  28046. },
  28047. mawSide: {
  28048. height: math.unit(12.8, "feet"),
  28049. name: "Maw (Side)",
  28050. image: {
  28051. source: "./media/characters/koros/maw-side.svg"
  28052. }
  28053. },
  28054. mawSpitting: {
  28055. height: math.unit(17, "feet"),
  28056. name: "Maw (Spitting)",
  28057. image: {
  28058. source: "./media/characters/koros/maw-spitting.svg"
  28059. }
  28060. },
  28061. slit: {
  28062. height: math.unit(2.8, "feet"),
  28063. name: "Slit",
  28064. image: {
  28065. source: "./media/characters/koros/slit.svg"
  28066. }
  28067. },
  28068. stomach: {
  28069. height: math.unit(6.8, "feet"),
  28070. preyCapacity: math.unit(20, "people"),
  28071. name: "Stomach",
  28072. image: {
  28073. source: "./media/characters/koros/stomach.svg"
  28074. }
  28075. },
  28076. wingspanBottom: {
  28077. height: math.unit(114, "feet"),
  28078. name: "Wingspan (Bottom)",
  28079. image: {
  28080. source: "./media/characters/koros/wingspan-bottom.svg"
  28081. }
  28082. },
  28083. wingspanTop: {
  28084. height: math.unit(104, "feet"),
  28085. name: "Wingspan (Top)",
  28086. image: {
  28087. source: "./media/characters/koros/wingspan-top.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(31 + 8 / 12, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(18 + 5 / 12, "feet"),
  28104. weight: math.unit(3750, "kg"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/vexx/front.svg",
  28108. extra: 426 / 396,
  28109. bottom: 31.5 / 458
  28110. }
  28111. },
  28112. maw: {
  28113. height: math.unit(6, "feet"),
  28114. name: "Maw",
  28115. image: {
  28116. source: "./media/characters/vexx/maw.svg"
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(18 + 5 / 12, "feet"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(17 + 6 / 12, "feet"),
  28133. weight: math.unit(150, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/baadra/front.svg",
  28137. extra: 1694/1553,
  28138. bottom: 179/1873
  28139. }
  28140. },
  28141. frontAlt: {
  28142. height: math.unit(17 + 6 / 12, "feet"),
  28143. weight: math.unit(150, "lb"),
  28144. name: "Front (Alt)",
  28145. image: {
  28146. source: "./media/characters/baadra/front-alt.svg",
  28147. extra: 3137 / 2890,
  28148. bottom: 168.4 / 3305
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(17 + 6 / 12, "feet"),
  28153. weight: math.unit(150, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/baadra/back.svg",
  28157. extra: 3142 / 2890,
  28158. bottom: 220 / 3371
  28159. }
  28160. },
  28161. head: {
  28162. height: math.unit(5.45, "feet"),
  28163. name: "Head",
  28164. image: {
  28165. source: "./media/characters/baadra/head.svg"
  28166. }
  28167. },
  28168. headAngry: {
  28169. height: math.unit(4.95, "feet"),
  28170. name: "Head (Angry)",
  28171. image: {
  28172. source: "./media/characters/baadra/head-angry.svg"
  28173. }
  28174. },
  28175. headOpen: {
  28176. height: math.unit(6, "feet"),
  28177. name: "Head (Open)",
  28178. image: {
  28179. source: "./media/characters/baadra/head-open.svg"
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(17 + 6 / 12, "feet"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(7 + 3 / 12, "feet"),
  28196. weight: math.unit(180, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/juri/front.svg",
  28200. extra: 1401 / 1237,
  28201. bottom: 18.5 / 1418
  28202. }
  28203. },
  28204. side: {
  28205. height: math.unit(7 + 3 / 12, "feet"),
  28206. weight: math.unit(180, "lb"),
  28207. name: "Side",
  28208. image: {
  28209. source: "./media/characters/juri/side.svg",
  28210. extra: 1424 / 1242,
  28211. bottom: 18.5 / 1447
  28212. }
  28213. },
  28214. sitting: {
  28215. height: math.unit(6, "feet"),
  28216. weight: math.unit(180, "lb"),
  28217. name: "Sitting",
  28218. image: {
  28219. source: "./media/characters/juri/sitting.svg",
  28220. extra: 1270 / 1143,
  28221. bottom: 100 / 1343
  28222. }
  28223. },
  28224. back: {
  28225. height: math.unit(7 + 3 / 12, "feet"),
  28226. weight: math.unit(180, "lb"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/juri/back.svg",
  28230. extra: 1377 / 1240,
  28231. bottom: 23.7 / 1405
  28232. }
  28233. },
  28234. maw: {
  28235. height: math.unit(2.8, "feet"),
  28236. name: "Maw",
  28237. image: {
  28238. source: "./media/characters/juri/maw.svg"
  28239. }
  28240. },
  28241. stomach: {
  28242. height: math.unit(0.89, "feet"),
  28243. preyCapacity: math.unit(4, "liters"),
  28244. name: "Stomach",
  28245. image: {
  28246. source: "./media/characters/juri/stomach.svg"
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Normal",
  28253. height: math.unit(7 + 3 / 12, "feet"),
  28254. default: true
  28255. },
  28256. ]
  28257. ))
  28258. characterMakers.push(() => makeCharacter(
  28259. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28260. {
  28261. fox: {
  28262. height: math.unit(5 + 6 / 12, "feet"),
  28263. weight: math.unit(140, "lb"),
  28264. name: "Fox",
  28265. image: {
  28266. source: "./media/characters/maxene-sita/fox.svg",
  28267. extra: 146 / 138,
  28268. bottom: 2.1 / 148.19
  28269. }
  28270. },
  28271. foxLaying: {
  28272. height: math.unit(1.70, "feet"),
  28273. weight: math.unit(140, "lb"),
  28274. name: "Fox (Laying)",
  28275. image: {
  28276. source: "./media/characters/maxene-sita/fox-laying.svg",
  28277. extra: 910 / 572,
  28278. bottom: 71 / 981
  28279. }
  28280. },
  28281. kitsune: {
  28282. height: math.unit(10, "feet"),
  28283. weight: math.unit(800, "lb"),
  28284. name: "Kitsune",
  28285. image: {
  28286. source: "./media/characters/maxene-sita/kitsune.svg",
  28287. extra: 185 / 176,
  28288. bottom: 4.7 / 189.9
  28289. }
  28290. },
  28291. hellhound: {
  28292. height: math.unit(10, "feet"),
  28293. weight: math.unit(700, "lb"),
  28294. name: "Hellhound",
  28295. image: {
  28296. source: "./media/characters/maxene-sita/hellhound.svg",
  28297. extra: 1600 / 1545,
  28298. bottom: 81 / 1681
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(5 + 6 / 12, "feet"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28312. {
  28313. front: {
  28314. height: math.unit(3 + 4 / 12, "feet"),
  28315. weight: math.unit(70, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/maia/front.svg",
  28319. extra: 227 / 219.5,
  28320. bottom: 40 / 267
  28321. }
  28322. },
  28323. back: {
  28324. height: math.unit(3 + 4 / 12, "feet"),
  28325. weight: math.unit(70, "lb"),
  28326. name: "Back",
  28327. image: {
  28328. source: "./media/characters/maia/back.svg",
  28329. extra: 237 / 225
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(3 + 4 / 12, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(5 + 10 / 12, "feet"),
  28346. weight: math.unit(197, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/jabaro/front.svg",
  28350. extra: 225 / 216,
  28351. bottom: 5.06 / 230
  28352. }
  28353. },
  28354. back: {
  28355. height: math.unit(5 + 10 / 12, "feet"),
  28356. weight: math.unit(197, "lb"),
  28357. name: "Back",
  28358. image: {
  28359. source: "./media/characters/jabaro/back.svg",
  28360. extra: 225 / 219,
  28361. bottom: 1.9 / 227
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(5 + 10 / 12, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28375. {
  28376. front: {
  28377. height: math.unit(5 + 8 / 12, "feet"),
  28378. weight: math.unit(139, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/risa/front.svg",
  28382. extra: 270 / 260,
  28383. bottom: 11.2 / 282
  28384. }
  28385. },
  28386. back: {
  28387. height: math.unit(5 + 8 / 12, "feet"),
  28388. weight: math.unit(139, "lb"),
  28389. name: "Back",
  28390. image: {
  28391. source: "./media/characters/risa/back.svg",
  28392. extra: 264 / 255,
  28393. bottom: 4 / 268
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(5 + 8 / 12, "feet"),
  28401. default: true
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(2 + 11 / 12, "feet"),
  28410. weight: math.unit(30, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/weatley/front.svg",
  28414. bottom: 10.7 / 414,
  28415. extra: 403.5 / 362
  28416. }
  28417. },
  28418. back: {
  28419. height: math.unit(2 + 11 / 12, "feet"),
  28420. weight: math.unit(30, "lb"),
  28421. name: "Back",
  28422. image: {
  28423. source: "./media/characters/weatley/back.svg",
  28424. bottom: 10.7 / 414,
  28425. extra: 403.5 / 362
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(2 + 11 / 12, "feet"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(5 + 2 / 12, "feet"),
  28442. weight: math.unit(50, "kg"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/mercury-crescent/front.svg",
  28446. extra: 1088 / 1033,
  28447. bottom: 18.9 / 1109
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(5 + 2 / 12, "feet"),
  28455. default: true
  28456. },
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28461. {
  28462. front: {
  28463. height: math.unit(2, "feet"),
  28464. weight: math.unit(15, "kg"),
  28465. name: "Front",
  28466. image: {
  28467. source: "./media/characters/diamond-jones/front.svg",
  28468. extra: 727/723,
  28469. bottom: 46/773
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(2, "feet"),
  28477. default: true
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(3, "feet"),
  28486. weight: math.unit(30, "kg"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/sweet-bit/front.svg",
  28490. extra: 675 / 567,
  28491. bottom: 27.7 / 703
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(3, "feet"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28505. {
  28506. side: {
  28507. height: math.unit(9.178, "feet"),
  28508. weight: math.unit(500, "lb"),
  28509. name: "Side",
  28510. image: {
  28511. source: "./media/characters/umbrazen/side.svg",
  28512. extra: 1730 / 1473,
  28513. bottom: 34.6 / 1765
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(9.178, "feet"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(10, "feet"),
  28530. weight: math.unit(750, "lb"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/arlist/front.svg",
  28534. extra: 961 / 778,
  28535. bottom: 6.2 / 986
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(10, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(5 + 1 / 12, "feet"),
  28552. weight: math.unit(110, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/aradel/front.svg",
  28556. extra: 324 / 303,
  28557. bottom: 3.6 / 329.4
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Normal",
  28564. height: math.unit(5 + 1 / 12, "feet"),
  28565. default: true
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28571. {
  28572. dressed: {
  28573. height: math.unit(3 + 8 / 12, "feet"),
  28574. weight: math.unit(50, "lb"),
  28575. name: "Dressed",
  28576. image: {
  28577. source: "./media/characters/serryn/dressed.svg",
  28578. extra: 1792 / 1656,
  28579. bottom: 43.5 / 1840
  28580. }
  28581. },
  28582. nude: {
  28583. height: math.unit(3 + 8 / 12, "feet"),
  28584. weight: math.unit(50, "lb"),
  28585. name: "Nude",
  28586. image: {
  28587. source: "./media/characters/serryn/nude.svg",
  28588. extra: 1792 / 1656,
  28589. bottom: 43.5 / 1840
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(3 + 8 / 12, "feet"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(7 + 10 / 12, "feet"),
  28606. weight: math.unit(255, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/xavier-thyme/front.svg",
  28610. extra: 3733 / 3642,
  28611. bottom: 131 / 3869
  28612. }
  28613. },
  28614. frontRaven: {
  28615. height: math.unit(7 + 10 / 12, "feet"),
  28616. weight: math.unit(255, "lb"),
  28617. name: "Front (Raven)",
  28618. image: {
  28619. source: "./media/characters/xavier-thyme/front-raven.svg",
  28620. extra: 4385 / 3642,
  28621. bottom: 131 / 4517
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(7 + 10 / 12, "feet"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(1.6, "m"),
  28638. weight: math.unit(50, "kg"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/kiki/front.svg",
  28642. extra: 4682 / 3610,
  28643. bottom: 115 / 4777
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Normal",
  28650. height: math.unit(1.6, "meters"),
  28651. default: true
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28657. {
  28658. front: {
  28659. height: math.unit(50, "m"),
  28660. weight: math.unit(500, "tonnes"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/ryoko/front.svg",
  28664. extra: 4632 / 3926,
  28665. bottom: 193 / 4823
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(50, "meters"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(30, "m"),
  28682. weight: math.unit(22, "tonnes"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/elio/front.svg",
  28686. extra: 4582 / 3720,
  28687. bottom: 236 / 4828
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(30, "meters"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(6 + 3 / 12, "feet"),
  28704. weight: math.unit(120, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/azura/front.svg",
  28708. extra: 1149 / 1135,
  28709. bottom: 45 / 1194
  28710. }
  28711. },
  28712. frontClothed: {
  28713. height: math.unit(6 + 3 / 12, "feet"),
  28714. weight: math.unit(120, "lb"),
  28715. name: "Front (Clothed)",
  28716. image: {
  28717. source: "./media/characters/azura/front-clothed.svg",
  28718. extra: 1149 / 1135,
  28719. bottom: 45 / 1194
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(6 + 3 / 12, "feet"),
  28727. default: true
  28728. },
  28729. {
  28730. name: "Macro",
  28731. height: math.unit(20 + 6 / 12, "feet")
  28732. },
  28733. {
  28734. name: "Megamacro",
  28735. height: math.unit(12, "miles")
  28736. },
  28737. {
  28738. name: "Gigamacro",
  28739. height: math.unit(10000, "miles")
  28740. },
  28741. {
  28742. name: "Teramacro",
  28743. height: math.unit(900000, "miles")
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(12, "feet"),
  28752. weight: math.unit(1, "ton"),
  28753. capacity: math.unit(660000, "gallons"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/zeus/front.svg",
  28757. extra: 5005 / 4717,
  28758. bottom: 363 / 5388
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(12, "feet")
  28766. },
  28767. {
  28768. name: "Preferred Size",
  28769. height: math.unit(0.5, "miles"),
  28770. default: true
  28771. },
  28772. {
  28773. name: "Giga Horse",
  28774. height: math.unit(300, "miles")
  28775. },
  28776. {
  28777. name: "Riding Planets",
  28778. height: math.unit(30, "megameters")
  28779. },
  28780. {
  28781. name: "Cosmic Giant",
  28782. height: math.unit(3, "zettameters")
  28783. },
  28784. {
  28785. name: "Breeding God",
  28786. height: math.unit(9.92e22, "yottameters")
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28792. {
  28793. side: {
  28794. height: math.unit(9, "feet"),
  28795. weight: math.unit(1500, "kg"),
  28796. name: "Side",
  28797. image: {
  28798. source: "./media/characters/fang/side.svg",
  28799. extra: 924 / 866,
  28800. bottom: 47.5 / 972.3
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(9, "feet"),
  28808. default: true
  28809. },
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(75 + 6 / 12, "feet")
  28813. },
  28814. {
  28815. name: "Teramacro",
  28816. height: math.unit(50000, "miles")
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(10, "feet"),
  28825. weight: math.unit(2, "tons"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/rekhit/front.svg",
  28829. extra: 2796 / 2590,
  28830. bottom: 225 / 3022
  28831. }
  28832. },
  28833. },
  28834. [
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(10, "feet"),
  28838. default: true
  28839. },
  28840. {
  28841. name: "Macro",
  28842. height: math.unit(500, "feet")
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(7 + 6.451 / 12, "feet"),
  28851. weight: math.unit(310, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/dahlia-verrick/front.svg",
  28855. extra: 1488 / 1365,
  28856. bottom: 6.2 / 1495
  28857. }
  28858. },
  28859. back: {
  28860. height: math.unit(7 + 6.451 / 12, "feet"),
  28861. weight: math.unit(310, "lb"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/dahlia-verrick/back.svg",
  28865. extra: 1472 / 1351,
  28866. bottom: 5.28 / 1477
  28867. }
  28868. },
  28869. frontBusiness: {
  28870. height: math.unit(7 + 6.451 / 12, "feet"),
  28871. weight: math.unit(200, "lb"),
  28872. name: "Front (Business)",
  28873. image: {
  28874. source: "./media/characters/dahlia-verrick/front-business.svg",
  28875. extra: 1478 / 1381,
  28876. bottom: 5.5 / 1484
  28877. }
  28878. },
  28879. frontCasual: {
  28880. height: math.unit(7 + 6.451 / 12, "feet"),
  28881. weight: math.unit(200, "lb"),
  28882. name: "Front (Casual)",
  28883. image: {
  28884. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28885. extra: 1478 / 1381,
  28886. bottom: 5.5 / 1484
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Travel-Sized",
  28893. height: math.unit(7.45, "inches")
  28894. },
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(7 + 6.451 / 12, "feet"),
  28898. default: true
  28899. },
  28900. {
  28901. name: "Hitting the Town",
  28902. height: math.unit(37 + 8 / 12, "feet")
  28903. },
  28904. {
  28905. name: "Stomp in the Suburbs",
  28906. height: math.unit(964 + 9.728 / 12, "feet")
  28907. },
  28908. {
  28909. name: "Sit on the City",
  28910. height: math.unit(61747 + 10.592 / 12, "feet")
  28911. },
  28912. {
  28913. name: "Glomp the Globe",
  28914. height: math.unit(252919327 + 4.832 / 12, "feet")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(6 + 4 / 12, "feet"),
  28923. weight: math.unit(320, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/balina-mahigan/front.svg",
  28927. extra: 447 / 428,
  28928. bottom: 18 / 466
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(6 + 4 / 12, "feet"),
  28933. weight: math.unit(320, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/balina-mahigan/back.svg",
  28937. extra: 445 / 428,
  28938. bottom: 4.07 / 448
  28939. }
  28940. },
  28941. arm: {
  28942. height: math.unit(1.88, "feet"),
  28943. name: "Arm",
  28944. image: {
  28945. source: "./media/characters/balina-mahigan/arm.svg"
  28946. }
  28947. },
  28948. backPort: {
  28949. height: math.unit(0.685, "feet"),
  28950. name: "Back Port",
  28951. image: {
  28952. source: "./media/characters/balina-mahigan/back-port.svg"
  28953. }
  28954. },
  28955. hoofpaw: {
  28956. height: math.unit(1.41, "feet"),
  28957. name: "Hoofpaw",
  28958. image: {
  28959. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28960. }
  28961. },
  28962. leftHandBack: {
  28963. height: math.unit(0.938, "feet"),
  28964. name: "Left Hand (Back)",
  28965. image: {
  28966. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28967. }
  28968. },
  28969. leftHandFront: {
  28970. height: math.unit(0.938, "feet"),
  28971. name: "Left Hand (Front)",
  28972. image: {
  28973. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28974. }
  28975. },
  28976. rightHandBack: {
  28977. height: math.unit(0.95, "feet"),
  28978. name: "Right Hand (Back)",
  28979. image: {
  28980. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28981. }
  28982. },
  28983. rightHandFront: {
  28984. height: math.unit(0.95, "feet"),
  28985. name: "Right Hand (Front)",
  28986. image: {
  28987. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(6 + 4 / 12, "feet"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(6, "feet"),
  29004. weight: math.unit(320, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/balina-mejeri/front.svg",
  29008. extra: 517 / 488,
  29009. bottom: 44.2 / 561
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(6 + 4 / 12, "feet")
  29017. },
  29018. {
  29019. name: "Business",
  29020. height: math.unit(155, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29027. {
  29028. kneeling: {
  29029. height: math.unit(6 + 4 / 12, "feet"),
  29030. weight: math.unit(300 * 20, "lb"),
  29031. name: "Kneeling",
  29032. image: {
  29033. source: "./media/characters/balbarian/kneeling.svg",
  29034. extra: 922 / 862,
  29035. bottom: 42.4 / 965
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Normal",
  29042. height: math.unit(6 + 4 / 12, "feet")
  29043. },
  29044. {
  29045. name: "Treasured",
  29046. height: math.unit(18 + 9 / 12, "feet"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Macro",
  29051. height: math.unit(900, "feet")
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(6 + 4 / 12, "feet"),
  29060. weight: math.unit(325, "lb"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/balina-amarini/front.svg",
  29064. extra: 415 / 403,
  29065. bottom: 19 / 433.4
  29066. }
  29067. },
  29068. back: {
  29069. height: math.unit(6 + 4 / 12, "feet"),
  29070. weight: math.unit(325, "lb"),
  29071. name: "Back",
  29072. image: {
  29073. source: "./media/characters/balina-amarini/back.svg",
  29074. extra: 415 / 403,
  29075. bottom: 13.5 / 432
  29076. }
  29077. },
  29078. overdrive: {
  29079. height: math.unit(6 + 4 / 12, "feet"),
  29080. weight: math.unit(400, "lb"),
  29081. name: "Overdrive",
  29082. image: {
  29083. source: "./media/characters/balina-amarini/overdrive.svg",
  29084. extra: 269 / 259,
  29085. bottom: 12 / 282
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Boom",
  29092. height: math.unit(9 + 10 / 12, "feet"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Macro",
  29097. height: math.unit(280, "feet")
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29103. {
  29104. goddess: {
  29105. height: math.unit(600, "feet"),
  29106. weight: math.unit(2000000, "tons"),
  29107. name: "Goddess",
  29108. image: {
  29109. source: "./media/characters/lady-kubwa/goddess.svg",
  29110. extra: 1240.5 / 1223,
  29111. bottom: 22 / 1263
  29112. }
  29113. },
  29114. goddesser: {
  29115. height: math.unit(900, "feet"),
  29116. weight: math.unit(20000000, "lb"),
  29117. name: "Goddess-er",
  29118. image: {
  29119. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29120. extra: 899 / 888,
  29121. bottom: 12.6 / 912
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Macro",
  29128. height: math.unit(600, "feet"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Megamacro",
  29133. height: math.unit(250, "miles")
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(7 + 7 / 12, "feet"),
  29142. weight: math.unit(250, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/tala-grovehorn/front.svg",
  29146. extra: 2636 / 2525,
  29147. bottom: 147 / 2781
  29148. }
  29149. },
  29150. back: {
  29151. height: math.unit(7 + 7 / 12, "feet"),
  29152. weight: math.unit(250, "lb"),
  29153. name: "Back",
  29154. image: {
  29155. source: "./media/characters/tala-grovehorn/back.svg",
  29156. extra: 2635 / 2539,
  29157. bottom: 100 / 2732.8
  29158. }
  29159. },
  29160. mouth: {
  29161. height: math.unit(1.15, "feet"),
  29162. name: "Mouth",
  29163. image: {
  29164. source: "./media/characters/tala-grovehorn/mouth.svg"
  29165. }
  29166. },
  29167. dick: {
  29168. height: math.unit(2.36, "feet"),
  29169. name: "Dick",
  29170. image: {
  29171. source: "./media/characters/tala-grovehorn/dick.svg"
  29172. }
  29173. },
  29174. slit: {
  29175. height: math.unit(0.61, "feet"),
  29176. name: "Slit",
  29177. image: {
  29178. source: "./media/characters/tala-grovehorn/slit.svg"
  29179. }
  29180. },
  29181. },
  29182. [
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(7 + 7 / 12, "feet"),
  29190. weight: math.unit(225, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/epona/front.svg",
  29194. extra: 2445 / 2290,
  29195. bottom: 251 / 2696
  29196. }
  29197. },
  29198. back: {
  29199. height: math.unit(7 + 7 / 12, "feet"),
  29200. weight: math.unit(225, "lb"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/epona/back.svg",
  29204. extra: 2546 / 2408,
  29205. bottom: 44 / 2589
  29206. }
  29207. },
  29208. genitals: {
  29209. height: math.unit(1.5, "feet"),
  29210. name: "Genitals",
  29211. image: {
  29212. source: "./media/characters/epona/genitals.svg"
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Normal",
  29219. height: math.unit(7 + 7 / 12, "feet"),
  29220. default: true
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(7, "feet"),
  29229. weight: math.unit(518, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/avia-bloodbourn/front.svg",
  29233. extra: 1466 / 1350,
  29234. bottom: 65 / 1527
  29235. }
  29236. },
  29237. },
  29238. [
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(9.35, "feet"),
  29246. weight: math.unit(600, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/amera/front.svg",
  29250. extra: 891 / 818,
  29251. bottom: 30 / 922.7
  29252. }
  29253. },
  29254. back: {
  29255. height: math.unit(9.35, "feet"),
  29256. weight: math.unit(600, "lb"),
  29257. name: "Back",
  29258. image: {
  29259. source: "./media/characters/amera/back.svg",
  29260. extra: 876 / 824,
  29261. bottom: 6.8 / 884
  29262. }
  29263. },
  29264. dick: {
  29265. height: math.unit(2.14, "feet"),
  29266. name: "Dick",
  29267. image: {
  29268. source: "./media/characters/amera/dick.svg"
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(9.35, "feet"),
  29276. default: true
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29282. {
  29283. kneeling: {
  29284. height: math.unit(3 + 4 / 12, "feet"),
  29285. weight: math.unit(90, "lb"),
  29286. name: "Kneeling",
  29287. image: {
  29288. source: "./media/characters/rosewen/kneeling.svg",
  29289. extra: 1835 / 1571,
  29290. bottom: 27.7 / 1862
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(3 + 4 / 12, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(5 + 10 / 12, "feet"),
  29307. weight: math.unit(200, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/sabah/front.svg",
  29311. extra: 849 / 763,
  29312. bottom: 33.9 / 881
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(5 + 10 / 12, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29326. {
  29327. front: {
  29328. height: math.unit(3 + 5 / 12, "feet"),
  29329. weight: math.unit(40, "kg"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/purple-flame/front.svg",
  29333. extra: 1577 / 1412,
  29334. bottom: 97 / 1694
  29335. }
  29336. },
  29337. frontDressed: {
  29338. height: math.unit(3 + 5 / 12, "feet"),
  29339. weight: math.unit(40, "kg"),
  29340. name: "Front (Dressed)",
  29341. image: {
  29342. source: "./media/characters/purple-flame/front-dressed.svg",
  29343. extra: 1577 / 1412,
  29344. bottom: 97 / 1694
  29345. }
  29346. },
  29347. headphones: {
  29348. height: math.unit(0.85, "feet"),
  29349. name: "Headphones",
  29350. image: {
  29351. source: "./media/characters/purple-flame/headphones.svg"
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Really Small",
  29358. height: math.unit(5, "cm")
  29359. },
  29360. {
  29361. name: "Micro",
  29362. height: math.unit(1 + 5 / 12, "feet")
  29363. },
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(3 + 5 / 12, "feet"),
  29367. default: true
  29368. },
  29369. {
  29370. name: "Minimacro",
  29371. height: math.unit(125, "feet")
  29372. },
  29373. {
  29374. name: "Macro",
  29375. height: math.unit(0.5, "miles")
  29376. },
  29377. {
  29378. name: "Megamacro",
  29379. height: math.unit(50, "miles")
  29380. },
  29381. {
  29382. name: "Gigantic",
  29383. height: math.unit(750, "miles")
  29384. },
  29385. {
  29386. name: "Planetary",
  29387. height: math.unit(15000, "miles")
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(14, "feet"),
  29396. weight: math.unit(959, "lb"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/arsenal/front.svg",
  29400. extra: 2357 / 2157,
  29401. bottom: 93 / 2458
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(14, "feet"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(6, "feet"),
  29418. weight: math.unit(150, "lb"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/adira/front.svg",
  29422. extra: 1078 / 1029,
  29423. bottom: 87 / 1166
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Micro",
  29430. height: math.unit(4, "inches"),
  29431. default: true
  29432. },
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(50, "feet")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(16, "feet"),
  29444. weight: math.unit(1000, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/grim/front.svg",
  29448. extra: 622 / 614,
  29449. bottom: 18.1 / 642
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(16, "feet"),
  29454. weight: math.unit(1000, "lb"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/grim/back.svg",
  29458. extra: 610.6 / 602,
  29459. bottom: 40.8 / 652
  29460. }
  29461. },
  29462. hunched: {
  29463. height: math.unit(9.75, "feet"),
  29464. weight: math.unit(1000, "lb"),
  29465. name: "Hunched",
  29466. image: {
  29467. source: "./media/characters/grim/hunched.svg",
  29468. extra: 304 / 297,
  29469. bottom: 35.4 / 394
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(16, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(2.3, "meters"),
  29486. weight: math.unit(300, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/sinja/front-sfw.svg",
  29490. extra: 1393 / 1294,
  29491. bottom: 70 / 1463
  29492. }
  29493. },
  29494. frontNsfw: {
  29495. height: math.unit(2.3, "meters"),
  29496. weight: math.unit(300, "lb"),
  29497. name: "Front (NSFW)",
  29498. image: {
  29499. source: "./media/characters/sinja/front-nsfw.svg",
  29500. extra: 1393 / 1294,
  29501. bottom: 70 / 1463
  29502. }
  29503. },
  29504. back: {
  29505. height: math.unit(2.3, "meters"),
  29506. weight: math.unit(300, "lb"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/sinja/back.svg",
  29510. extra: 1393 / 1294,
  29511. bottom: 70 / 1463
  29512. }
  29513. },
  29514. head: {
  29515. height: math.unit(1.771, "feet"),
  29516. name: "Head",
  29517. image: {
  29518. source: "./media/characters/sinja/head.svg"
  29519. }
  29520. },
  29521. slit: {
  29522. height: math.unit(0.8, "feet"),
  29523. name: "Slit",
  29524. image: {
  29525. source: "./media/characters/sinja/slit.svg"
  29526. }
  29527. },
  29528. },
  29529. [
  29530. {
  29531. name: "Normal",
  29532. height: math.unit(2.3, "meters")
  29533. },
  29534. {
  29535. name: "Macro",
  29536. height: math.unit(91, "meters"),
  29537. default: true
  29538. },
  29539. {
  29540. name: "Megamacro",
  29541. height: math.unit(91440, "meters")
  29542. },
  29543. {
  29544. name: "Gigamacro",
  29545. height: math.unit(60960000, "meters")
  29546. },
  29547. {
  29548. name: "Teramacro",
  29549. height: math.unit(9144000000, "meters")
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29555. {
  29556. front: {
  29557. height: math.unit(1.7, "meters"),
  29558. weight: math.unit(130, "lb"),
  29559. name: "Front",
  29560. image: {
  29561. source: "./media/characters/kyu/front.svg",
  29562. extra: 415 / 395,
  29563. bottom: 5 / 420
  29564. }
  29565. },
  29566. head: {
  29567. height: math.unit(1.75, "feet"),
  29568. name: "Head",
  29569. image: {
  29570. source: "./media/characters/kyu/head.svg"
  29571. }
  29572. },
  29573. foot: {
  29574. height: math.unit(0.81, "feet"),
  29575. name: "Foot",
  29576. image: {
  29577. source: "./media/characters/kyu/foot.svg"
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(1.7, "meters")
  29585. },
  29586. {
  29587. name: "Macro",
  29588. height: math.unit(131, "feet"),
  29589. default: true
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(91440, "meters")
  29594. },
  29595. {
  29596. name: "Gigamacro",
  29597. height: math.unit(60960000, "meters")
  29598. },
  29599. {
  29600. name: "Teramacro",
  29601. height: math.unit(9144000000, "meters")
  29602. },
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(7 + 1 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/joey/front.svg",
  29614. extra: 1791 / 1537,
  29615. bottom: 28 / 1816
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Micro",
  29622. height: math.unit(3, "inches")
  29623. },
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(7 + 1 / 12, "feet"),
  29627. default: true
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(165, "cm"),
  29636. weight: math.unit(140, "lb"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/sam-evans/front.svg",
  29640. extra: 3417 / 3230,
  29641. bottom: 41.3 / 3417
  29642. }
  29643. },
  29644. frontSixTails: {
  29645. height: math.unit(165, "cm"),
  29646. weight: math.unit(140, "lb"),
  29647. name: "Front-six-tails",
  29648. image: {
  29649. source: "./media/characters/sam-evans/front-six-tails.svg",
  29650. extra: 3417 / 3230,
  29651. bottom: 41.3 / 3417
  29652. }
  29653. },
  29654. back: {
  29655. height: math.unit(165, "cm"),
  29656. weight: math.unit(140, "lb"),
  29657. name: "Back",
  29658. image: {
  29659. source: "./media/characters/sam-evans/back.svg",
  29660. extra: 3227 / 3032,
  29661. bottom: 6.8 / 3234
  29662. }
  29663. },
  29664. face: {
  29665. height: math.unit(0.68, "feet"),
  29666. name: "Face",
  29667. image: {
  29668. source: "./media/characters/sam-evans/face.svg"
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(165, "cm"),
  29676. default: true
  29677. },
  29678. {
  29679. name: "Macro",
  29680. height: math.unit(100, "meters")
  29681. },
  29682. {
  29683. name: "Macro+",
  29684. height: math.unit(800, "meters")
  29685. },
  29686. {
  29687. name: "Macro++",
  29688. height: math.unit(3, "km")
  29689. },
  29690. {
  29691. name: "Macro+++",
  29692. height: math.unit(30, "km")
  29693. },
  29694. ]
  29695. ))
  29696. characterMakers.push(() => makeCharacter(
  29697. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29698. {
  29699. front: {
  29700. height: math.unit(10, "feet"),
  29701. weight: math.unit(750, "lb"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/juliet-a/front.svg",
  29705. extra: 1766 / 1720,
  29706. bottom: 43 / 1809
  29707. }
  29708. },
  29709. back: {
  29710. height: math.unit(10, "feet"),
  29711. weight: math.unit(750, "lb"),
  29712. name: "Back",
  29713. image: {
  29714. source: "./media/characters/juliet-a/back.svg",
  29715. extra: 1781 / 1734,
  29716. bottom: 35 / 1810,
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(10, "feet"),
  29724. default: true
  29725. },
  29726. {
  29727. name: "Dragon Form",
  29728. height: math.unit(250, "feet")
  29729. },
  29730. {
  29731. name: "Macro",
  29732. height: math.unit(1000, "feet")
  29733. },
  29734. {
  29735. name: "Megamacro",
  29736. height: math.unit(10000, "feet")
  29737. }
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29742. {
  29743. regular: {
  29744. height: math.unit(7 + 3 / 12, "feet"),
  29745. weight: math.unit(260, "lb"),
  29746. name: "Regular",
  29747. image: {
  29748. source: "./media/characters/wild/regular.svg",
  29749. extra: 97.45 / 92,
  29750. bottom: 6.8 / 104.3
  29751. }
  29752. },
  29753. biggums: {
  29754. height: math.unit(8 + 6 / 12, "feet"),
  29755. weight: math.unit(425, "lb"),
  29756. name: "Biggums",
  29757. image: {
  29758. source: "./media/characters/wild/biggums.svg",
  29759. extra: 97.45 / 92,
  29760. bottom: 7.5 / 132.34
  29761. }
  29762. },
  29763. mawRegular: {
  29764. height: math.unit(1.24, "feet"),
  29765. name: "Maw (Regular)",
  29766. image: {
  29767. source: "./media/characters/wild/maw.svg"
  29768. }
  29769. },
  29770. mawBiggums: {
  29771. height: math.unit(1.47, "feet"),
  29772. name: "Maw (Biggums)",
  29773. image: {
  29774. source: "./media/characters/wild/maw.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(7 + 3 / 12, "feet"),
  29782. default: true
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29788. {
  29789. front: {
  29790. height: math.unit(2.5, "meters"),
  29791. weight: math.unit(200, "kg"),
  29792. name: "Front",
  29793. image: {
  29794. source: "./media/characters/vidar/front.svg",
  29795. extra: 2994 / 2795,
  29796. bottom: 56 / 3061
  29797. }
  29798. },
  29799. back: {
  29800. height: math.unit(2.5, "meters"),
  29801. weight: math.unit(200, "kg"),
  29802. name: "Back",
  29803. image: {
  29804. source: "./media/characters/vidar/back.svg",
  29805. extra: 3131 / 2928,
  29806. bottom: 13.5 / 3141.5
  29807. }
  29808. },
  29809. feral: {
  29810. height: math.unit(2.5, "meters"),
  29811. weight: math.unit(2000, "kg"),
  29812. name: "Feral",
  29813. image: {
  29814. source: "./media/characters/vidar/feral.svg",
  29815. extra: 2790 / 1765,
  29816. bottom: 6 / 2796
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(2.5, "meters"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(100, "meters")
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(5 + 9 / 12, "feet"),
  29837. weight: math.unit(120, "lb"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/ash/front.svg",
  29841. extra: 2189 / 1961,
  29842. bottom: 5.2 / 2194
  29843. }
  29844. },
  29845. },
  29846. [
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(5 + 9 / 12, "feet"),
  29850. default: true
  29851. },
  29852. ]
  29853. ))
  29854. characterMakers.push(() => makeCharacter(
  29855. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29856. {
  29857. front: {
  29858. height: math.unit(9, "feet"),
  29859. weight: math.unit(10000, "lb"),
  29860. name: "Front",
  29861. image: {
  29862. source: "./media/characters/gygabite/front.svg",
  29863. bottom: 31.7 / 537.8,
  29864. extra: 505 / 370
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "Normal",
  29871. height: math.unit(9, "feet"),
  29872. default: true
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(12, "feet"),
  29881. weight: math.unit(4000, "lb"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/p0tat0/front.svg",
  29885. extra: 1065 / 921,
  29886. bottom: 55.7 / 1121.25
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(12, "feet"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29900. {
  29901. side: {
  29902. height: math.unit(6.5, "feet"),
  29903. weight: math.unit(800, "lb"),
  29904. name: "Side",
  29905. image: {
  29906. source: "./media/characters/dusk/side.svg",
  29907. extra: 615 / 373,
  29908. bottom: 53 / 664
  29909. }
  29910. },
  29911. sitting: {
  29912. height: math.unit(7, "feet"),
  29913. weight: math.unit(800, "lb"),
  29914. name: "Sitting",
  29915. image: {
  29916. source: "./media/characters/dusk/sitting.svg",
  29917. extra: 753 / 425,
  29918. bottom: 33 / 774
  29919. }
  29920. },
  29921. head: {
  29922. height: math.unit(6.1, "feet"),
  29923. name: "Head",
  29924. image: {
  29925. source: "./media/characters/dusk/head.svg"
  29926. }
  29927. },
  29928. },
  29929. [
  29930. {
  29931. name: "Normal",
  29932. height: math.unit(7, "feet"),
  29933. default: true
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(15, "feet"),
  29942. weight: math.unit(7000, "lb"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/jay-direwolf/front.svg",
  29946. extra: 1810 / 1732,
  29947. bottom: 66 / 1892
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(15, "feet"),
  29955. default: true
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(4 + 9 / 12, "feet"),
  29964. weight: math.unit(130, "lb"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/anchovie/front.svg",
  29968. extra: 382 / 350,
  29969. bottom: 25 / 409
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(4 + 9 / 12, "feet"),
  29974. weight: math.unit(130, "lb"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/anchovie/back.svg",
  29978. extra: 385 / 352,
  29979. bottom: 16.6 / 402
  29980. }
  29981. },
  29982. frontDressed: {
  29983. height: math.unit(4 + 9 / 12, "feet"),
  29984. weight: math.unit(130, "lb"),
  29985. name: "Front (Dressed)",
  29986. image: {
  29987. source: "./media/characters/anchovie/front-dressed.svg",
  29988. extra: 382 / 350,
  29989. bottom: 25 / 409
  29990. }
  29991. },
  29992. backDressed: {
  29993. height: math.unit(4 + 9 / 12, "feet"),
  29994. weight: math.unit(130, "lb"),
  29995. name: "Back (Dressed)",
  29996. image: {
  29997. source: "./media/characters/anchovie/back-dressed.svg",
  29998. extra: 385 / 352,
  29999. bottom: 16.6 / 402
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Micro",
  30006. height: math.unit(6.4, "inches")
  30007. },
  30008. {
  30009. name: "Normal",
  30010. height: math.unit(4 + 9 / 12, "feet"),
  30011. default: true
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30017. {
  30018. front: {
  30019. height: math.unit(2, "meters"),
  30020. weight: math.unit(180, "lb"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/acidrenamon/front.svg",
  30024. extra: 987 / 890,
  30025. bottom: 22.8 / 1009
  30026. }
  30027. },
  30028. back: {
  30029. height: math.unit(2, "meters"),
  30030. weight: math.unit(180, "lb"),
  30031. name: "Back",
  30032. image: {
  30033. source: "./media/characters/acidrenamon/back.svg",
  30034. extra: 983 / 891,
  30035. bottom: 8.4 / 992
  30036. }
  30037. },
  30038. head: {
  30039. height: math.unit(1.92, "feet"),
  30040. name: "Head",
  30041. image: {
  30042. source: "./media/characters/acidrenamon/head.svg"
  30043. }
  30044. },
  30045. rump: {
  30046. height: math.unit(1.72, "feet"),
  30047. name: "Rump",
  30048. image: {
  30049. source: "./media/characters/acidrenamon/rump.svg"
  30050. }
  30051. },
  30052. tail: {
  30053. height: math.unit(4.2, "feet"),
  30054. name: "Tail",
  30055. image: {
  30056. source: "./media/characters/acidrenamon/tail.svg"
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(2, "meters"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Minimacro",
  30068. height: math.unit(7, "meters")
  30069. },
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(200, "meters")
  30073. },
  30074. {
  30075. name: "Gigamacro",
  30076. height: math.unit(0.2, "earths")
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(152, "feet"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/kenzie-lee/front.svg",
  30088. extra: 1869/1774,
  30089. bottom: 128/1997
  30090. }
  30091. },
  30092. side: {
  30093. height: math.unit(86, "feet"),
  30094. name: "Side",
  30095. image: {
  30096. source: "./media/characters/kenzie-lee/side.svg",
  30097. extra: 930/815,
  30098. bottom: 177/1107
  30099. }
  30100. },
  30101. paw: {
  30102. height: math.unit(15, "feet"),
  30103. name: "Paw",
  30104. image: {
  30105. source: "./media/characters/kenzie-lee/paw.svg"
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Kenzie Flea",
  30112. height: math.unit(2, "mm"),
  30113. default: true
  30114. },
  30115. {
  30116. name: "Micro",
  30117. height: math.unit(2, "inches")
  30118. },
  30119. {
  30120. name: "Normal",
  30121. height: math.unit(152, "feet")
  30122. },
  30123. {
  30124. name: "Megamacro",
  30125. height: math.unit(7, "miles")
  30126. },
  30127. {
  30128. name: "Gigamacro",
  30129. height: math.unit(8000, "miles")
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(6, "feet"),
  30138. name: "Front",
  30139. image: {
  30140. source: "./media/characters/withers/front.svg",
  30141. extra: 1935/1760,
  30142. bottom: 72/2007
  30143. }
  30144. },
  30145. back: {
  30146. height: math.unit(6, "feet"),
  30147. name: "Back",
  30148. image: {
  30149. source: "./media/characters/withers/back.svg",
  30150. extra: 1944/1792,
  30151. bottom: 12/1956
  30152. }
  30153. },
  30154. dressed: {
  30155. height: math.unit(6, "feet"),
  30156. name: "Dressed",
  30157. image: {
  30158. source: "./media/characters/withers/dressed.svg",
  30159. extra: 1937/1765,
  30160. bottom: 73/2010
  30161. }
  30162. },
  30163. phase1: {
  30164. height: math.unit(1.1, "feet"),
  30165. name: "Phase 1",
  30166. image: {
  30167. source: "./media/characters/withers/phase-1.svg",
  30168. extra: 1885/1232,
  30169. bottom: 0/1885
  30170. }
  30171. },
  30172. phase2: {
  30173. height: math.unit(1.05, "feet"),
  30174. name: "Phase 2",
  30175. image: {
  30176. source: "./media/characters/withers/phase-2.svg",
  30177. extra: 1792/1090,
  30178. bottom: 0/1792
  30179. }
  30180. },
  30181. partyWipe: {
  30182. height: math.unit(1.1, "feet"),
  30183. name: "Party Wipe",
  30184. image: {
  30185. source: "./media/characters/withers/party-wipe.svg",
  30186. extra: 1864/1207,
  30187. bottom: 0/1864
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Macro",
  30194. height: math.unit(167, "feet"),
  30195. default: true
  30196. },
  30197. {
  30198. name: "Megamacro",
  30199. height: math.unit(15, "miles")
  30200. }
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(6 + 7 / 12, "feet"),
  30208. weight: math.unit(250, "lb"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/nemoskii/front.svg",
  30212. extra: 2270 / 1734,
  30213. bottom: 86 / 2354
  30214. }
  30215. },
  30216. back: {
  30217. height: math.unit(6 + 7 / 12, "feet"),
  30218. weight: math.unit(250, "lb"),
  30219. name: "Back",
  30220. image: {
  30221. source: "./media/characters/nemoskii/back.svg",
  30222. extra: 1845 / 1788,
  30223. bottom: 10.5 / 1852
  30224. }
  30225. },
  30226. head: {
  30227. height: math.unit(1.31, "feet"),
  30228. name: "Head",
  30229. image: {
  30230. source: "./media/characters/nemoskii/head.svg"
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Micro",
  30237. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30238. },
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(6 + 7 / 12, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit((6 + 7 / 12) * 150, "feet")
  30247. },
  30248. {
  30249. name: "Macro+",
  30250. height: math.unit((6 + 7 / 12) * 500, "feet")
  30251. },
  30252. {
  30253. name: "Megamacro",
  30254. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(1, "mile"),
  30263. weight: math.unit(265261.9, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/shui/front.svg",
  30267. extra: 1633 / 1564,
  30268. bottom: 91.5 / 1726
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Macro",
  30275. height: math.unit(1, "mile"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(12 + 6 / 12, "feet"),
  30285. weight: math.unit(1342, "lb"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/arokh-takakura/front.svg",
  30289. extra: 1089 / 1043,
  30290. bottom: 77.4 / 1176.7
  30291. }
  30292. },
  30293. back: {
  30294. height: math.unit(12 + 6 / 12, "feet"),
  30295. weight: math.unit(1342, "lb"),
  30296. name: "Back",
  30297. image: {
  30298. source: "./media/characters/arokh-takakura/back.svg",
  30299. extra: 1046 / 1019,
  30300. bottom: 102 / 1150
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Big",
  30307. height: math.unit(12 + 6 / 12, "feet"),
  30308. default: true
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30314. {
  30315. front: {
  30316. height: math.unit(5 + 6 / 12, "feet"),
  30317. weight: math.unit(150, "lb"),
  30318. name: "Front",
  30319. image: {
  30320. source: "./media/characters/theo/front.svg",
  30321. extra: 1184 / 1131,
  30322. bottom: 7.4 / 1191
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Micro",
  30329. height: math.unit(5, "inches")
  30330. },
  30331. {
  30332. name: "Normal",
  30333. height: math.unit(5 + 6 / 12, "feet"),
  30334. default: true
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30340. {
  30341. front: {
  30342. height: math.unit(5 + 9 / 12, "feet"),
  30343. weight: math.unit(130, "lb"),
  30344. name: "Front",
  30345. image: {
  30346. source: "./media/characters/cecelia-swift/front.svg",
  30347. extra: 502 / 484,
  30348. bottom: 23 / 523
  30349. }
  30350. },
  30351. back: {
  30352. height: math.unit(5 + 9 / 12, "feet"),
  30353. weight: math.unit(130, "lb"),
  30354. name: "Back",
  30355. image: {
  30356. source: "./media/characters/cecelia-swift/back.svg",
  30357. extra: 499 / 485,
  30358. bottom: 12 / 511
  30359. }
  30360. },
  30361. head: {
  30362. height: math.unit(0.90, "feet"),
  30363. name: "Head",
  30364. image: {
  30365. source: "./media/characters/cecelia-swift/head.svg"
  30366. }
  30367. },
  30368. rump: {
  30369. height: math.unit(1.75, "feet"),
  30370. name: "Rump",
  30371. image: {
  30372. source: "./media/characters/cecelia-swift/rump.svg"
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(5 + 9 / 12, "feet"),
  30380. default: true
  30381. },
  30382. {
  30383. name: "Big",
  30384. height: math.unit(50, "feet")
  30385. },
  30386. {
  30387. name: "Macro",
  30388. height: math.unit(100, "feet")
  30389. },
  30390. {
  30391. name: "Macro+",
  30392. height: math.unit(500, "feet")
  30393. },
  30394. {
  30395. name: "Macro++",
  30396. height: math.unit(1000, "feet")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(6, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/kaunan/front.svg",
  30409. extra: 2890 / 2523,
  30410. bottom: 49 / 2939
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Macro",
  30417. height: math.unit(150, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30424. {
  30425. dressed: {
  30426. height: math.unit(175, "cm"),
  30427. weight: math.unit(60, "kg"),
  30428. name: "Dressed",
  30429. image: {
  30430. source: "./media/characters/fei/dressed.svg",
  30431. extra: 1402/1278,
  30432. bottom: 27/1429
  30433. }
  30434. },
  30435. nude: {
  30436. height: math.unit(175, "cm"),
  30437. weight: math.unit(60, "kg"),
  30438. name: "Nude",
  30439. image: {
  30440. source: "./media/characters/fei/nude.svg",
  30441. extra: 1402/1278,
  30442. bottom: 27/1429
  30443. }
  30444. },
  30445. heels: {
  30446. height: math.unit(0.466, "feet"),
  30447. name: "Heels",
  30448. image: {
  30449. source: "./media/characters/fei/heels.svg",
  30450. extra: 156/152,
  30451. bottom: 28/184
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Mortal",
  30458. height: math.unit(175, "cm")
  30459. },
  30460. {
  30461. name: "Normal",
  30462. height: math.unit(3500, "m")
  30463. },
  30464. {
  30465. name: "Stroll",
  30466. height: math.unit(18.4, "km"),
  30467. default: true
  30468. },
  30469. {
  30470. name: "Showoff",
  30471. height: math.unit(175, "km")
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(7, "feet"),
  30480. weight: math.unit(1000, "kg"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/edrax/front.svg",
  30484. extra: 2838 / 2550,
  30485. bottom: 130 / 2968
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Small",
  30492. height: math.unit(7, "feet")
  30493. },
  30494. {
  30495. name: "Normal",
  30496. height: math.unit(1500, "meters")
  30497. },
  30498. {
  30499. name: "Mega",
  30500. height: math.unit(12000000, "km"),
  30501. default: true
  30502. },
  30503. {
  30504. name: "Megamacro",
  30505. height: math.unit(10600000, "lightyears")
  30506. },
  30507. {
  30508. name: "Hypermacro",
  30509. height: math.unit(256, "yottameters")
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30515. {
  30516. front: {
  30517. height: math.unit(10, "feet"),
  30518. weight: math.unit(750, "lb"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/clove/front.svg",
  30522. extra: 1918/1751,
  30523. bottom: 52/1970
  30524. }
  30525. },
  30526. back: {
  30527. height: math.unit(10, "feet"),
  30528. weight: math.unit(750, "lb"),
  30529. name: "Back",
  30530. image: {
  30531. source: "./media/characters/clove/back.svg",
  30532. extra: 1912/1747,
  30533. bottom: 50/1962
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Normal",
  30540. height: math.unit(10, "feet"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(4, "feet"),
  30550. weight: math.unit(50, "lb"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/alex-rabbit/front.svg",
  30554. extra: 507 / 458,
  30555. bottom: 18.5 / 527
  30556. }
  30557. },
  30558. back: {
  30559. height: math.unit(4, "feet"),
  30560. weight: math.unit(50, "lb"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/alex-rabbit/back.svg",
  30564. extra: 502 / 460,
  30565. bottom: 18.9 / 521
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(4, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(1 + 3 / 12, "feet"),
  30582. weight: math.unit(80, "lb"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/zander-rose/front.svg",
  30586. extra: 916 / 797,
  30587. bottom: 17 / 933
  30588. }
  30589. },
  30590. back: {
  30591. height: math.unit(1 + 3 / 12, "feet"),
  30592. weight: math.unit(80, "lb"),
  30593. name: "Back",
  30594. image: {
  30595. source: "./media/characters/zander-rose/back.svg",
  30596. extra: 903 / 779,
  30597. bottom: 31 / 934
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(1 + 3 / 12, "feet"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30611. {
  30612. anthro: {
  30613. height: math.unit(6, "feet"),
  30614. weight: math.unit(150, "lb"),
  30615. name: "Anthro",
  30616. image: {
  30617. source: "./media/characters/razz/anthro.svg",
  30618. extra: 1437 / 1343,
  30619. bottom: 48 / 1485
  30620. }
  30621. },
  30622. feral: {
  30623. height: math.unit(6, "feet"),
  30624. weight: math.unit(150, "lb"),
  30625. name: "Feral",
  30626. image: {
  30627. source: "./media/characters/razz/feral.svg",
  30628. extra: 2569 / 1385,
  30629. bottom: 95 / 2664
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(6, "feet"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(9 + 4 / 12, "feet"),
  30646. weight: math.unit(500, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/morrigan/front.svg",
  30650. extra: 2707 / 2579,
  30651. bottom: 156 / 2863
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(9 + 4 / 12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(5, "stories"),
  30668. weight: math.unit(4000, "lb"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/jenene/front.svg",
  30672. extra: 1780 / 1710,
  30673. bottom: 57 / 1837
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(5, "stories"),
  30681. default: true
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30687. {
  30688. taurSfw: {
  30689. height: math.unit(10, "meters"),
  30690. weight: math.unit(17500, "kg"),
  30691. name: "Taur",
  30692. image: {
  30693. source: "./media/characters/faey/taur-sfw.svg",
  30694. extra: 1200 / 968,
  30695. bottom: 41 / 1241
  30696. }
  30697. },
  30698. chestmaw: {
  30699. height: math.unit(2.01, "meters"),
  30700. name: "Chestmaw",
  30701. image: {
  30702. source: "./media/characters/faey/chestmaw.svg"
  30703. }
  30704. },
  30705. foot: {
  30706. height: math.unit(2.43, "meters"),
  30707. name: "Foot",
  30708. image: {
  30709. source: "./media/characters/faey/foot.svg"
  30710. }
  30711. },
  30712. jaws: {
  30713. height: math.unit(1.66, "meters"),
  30714. name: "Jaws",
  30715. image: {
  30716. source: "./media/characters/faey/jaws.svg"
  30717. }
  30718. },
  30719. tongues: {
  30720. height: math.unit(2.01, "meters"),
  30721. name: "Tongues",
  30722. image: {
  30723. source: "./media/characters/faey/tongues.svg"
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Small",
  30730. height: math.unit(10, "meters"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Big",
  30735. height: math.unit(500000, "km")
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(7, "feet"),
  30744. weight: math.unit(275, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/roku/front.svg",
  30748. extra: 903 / 878,
  30749. bottom: 37 / 940
  30750. }
  30751. },
  30752. },
  30753. [
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(7, "feet"),
  30757. default: true
  30758. },
  30759. {
  30760. name: "Macro",
  30761. height: math.unit(500, "feet")
  30762. },
  30763. {
  30764. name: "Megamacro",
  30765. height: math.unit(200, "miles")
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(6 + 2 / 12, "feet"),
  30774. weight: math.unit(150, "lb"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/lira/front.svg",
  30778. extra: 1727 / 1605,
  30779. bottom: 26 / 1753
  30780. }
  30781. },
  30782. back: {
  30783. height: math.unit(6 + 2 / 12, "feet"),
  30784. weight: math.unit(150, "lb"),
  30785. name: "Back",
  30786. image: {
  30787. source: "./media/characters/lira/back.svg",
  30788. extra: 1713/1621,
  30789. bottom: 20/1733
  30790. }
  30791. },
  30792. hand: {
  30793. height: math.unit(0.75, "feet"),
  30794. name: "Hand",
  30795. image: {
  30796. source: "./media/characters/lira/hand.svg"
  30797. }
  30798. },
  30799. maw: {
  30800. height: math.unit(0.65, "feet"),
  30801. name: "Maw",
  30802. image: {
  30803. source: "./media/characters/lira/maw.svg"
  30804. }
  30805. },
  30806. pawDigi: {
  30807. height: math.unit(1.6, "feet"),
  30808. name: "Paw Digi",
  30809. image: {
  30810. source: "./media/characters/lira/paw-digi.svg"
  30811. }
  30812. },
  30813. pawPlanti: {
  30814. height: math.unit(1.4, "feet"),
  30815. name: "Paw Planti",
  30816. image: {
  30817. source: "./media/characters/lira/paw-planti.svg"
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(6 + 2 / 12, "feet"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "Macro",
  30829. height: math.unit(100, "feet")
  30830. },
  30831. {
  30832. name: "Macro²",
  30833. height: math.unit(1600, "feet")
  30834. },
  30835. {
  30836. name: "Planetary",
  30837. height: math.unit(20, "earths")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6, "feet"),
  30846. weight: math.unit(150, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/hadjet/front.svg",
  30850. extra: 1480 / 1346,
  30851. bottom: 26 / 1506
  30852. }
  30853. },
  30854. frontNsfw: {
  30855. height: math.unit(6, "feet"),
  30856. weight: math.unit(150, "lb"),
  30857. name: "Front (NSFW)",
  30858. image: {
  30859. source: "./media/characters/hadjet/front-nsfw.svg",
  30860. extra: 1440 / 1358,
  30861. bottom: 52 / 1492
  30862. }
  30863. },
  30864. },
  30865. [
  30866. {
  30867. name: "Macro",
  30868. height: math.unit(10, "stories"),
  30869. default: true
  30870. },
  30871. {
  30872. name: "Megamacro",
  30873. height: math.unit(1.5, "miles")
  30874. },
  30875. {
  30876. name: "Megamacro+",
  30877. height: math.unit(5, "miles")
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30883. {
  30884. side: {
  30885. height: math.unit(106, "feet"),
  30886. weight: math.unit(500, "tonnes"),
  30887. name: "Side",
  30888. image: {
  30889. source: "./media/characters/kodran/side.svg",
  30890. extra: 553 / 480,
  30891. bottom: 33 / 586
  30892. }
  30893. },
  30894. front: {
  30895. height: math.unit(132, "feet"),
  30896. weight: math.unit(500, "tonnes"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/kodran/front.svg",
  30900. extra: 667 / 643,
  30901. bottom: 42 / 709
  30902. }
  30903. },
  30904. flying: {
  30905. height: math.unit(350, "feet"),
  30906. weight: math.unit(500, "tonnes"),
  30907. name: "Flying",
  30908. image: {
  30909. source: "./media/characters/kodran/flying.svg"
  30910. }
  30911. },
  30912. foot: {
  30913. height: math.unit(33, "feet"),
  30914. name: "Foot",
  30915. image: {
  30916. source: "./media/characters/kodran/foot.svg"
  30917. }
  30918. },
  30919. footFront: {
  30920. height: math.unit(19, "feet"),
  30921. name: "Foot (Front)",
  30922. image: {
  30923. source: "./media/characters/kodran/foot-front.svg",
  30924. extra: 261 / 261,
  30925. bottom: 91 / 352
  30926. }
  30927. },
  30928. headFront: {
  30929. height: math.unit(53, "feet"),
  30930. name: "Head (Front)",
  30931. image: {
  30932. source: "./media/characters/kodran/head-front.svg"
  30933. }
  30934. },
  30935. headSide: {
  30936. height: math.unit(65, "feet"),
  30937. name: "Head (Side)",
  30938. image: {
  30939. source: "./media/characters/kodran/head-side.svg"
  30940. }
  30941. },
  30942. throat: {
  30943. height: math.unit(79, "feet"),
  30944. name: "Throat",
  30945. image: {
  30946. source: "./media/characters/kodran/throat.svg"
  30947. }
  30948. },
  30949. },
  30950. [
  30951. {
  30952. name: "Large",
  30953. height: math.unit(106, "feet"),
  30954. default: true
  30955. },
  30956. ]
  30957. ))
  30958. characterMakers.push(() => makeCharacter(
  30959. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30960. {
  30961. side: {
  30962. height: math.unit(11, "feet"),
  30963. weight: math.unit(150, "lb"),
  30964. name: "Side",
  30965. image: {
  30966. source: "./media/characters/pyxaron/side.svg",
  30967. extra: 305 / 195,
  30968. bottom: 17 / 322
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Normal",
  30975. height: math.unit(11, "feet"),
  30976. default: true
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(6, "feet"),
  30985. weight: math.unit(150, "lb"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/meep/front.svg",
  30989. extra: 88 / 80,
  30990. bottom: 6 / 94
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Fun Sized",
  30997. height: math.unit(2, "inches"),
  30998. default: true
  30999. },
  31000. {
  31001. name: "Friend Sized",
  31002. height: math.unit(8, "inches")
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31008. {
  31009. front: {
  31010. height: math.unit(15, "feet"),
  31011. weight: math.unit(2500, "lb"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/holly-rabbit/front.svg",
  31015. extra: 1433 / 1233,
  31016. bottom: 125 / 1558
  31017. }
  31018. },
  31019. dick: {
  31020. height: math.unit(4.6, "feet"),
  31021. name: "Dick",
  31022. image: {
  31023. source: "./media/characters/holly-rabbit/dick.svg"
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(15, "feet"),
  31031. default: true
  31032. },
  31033. {
  31034. name: "Macro",
  31035. height: math.unit(250, "feet")
  31036. },
  31037. {
  31038. name: "Macro+",
  31039. height: math.unit(2500, "feet")
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(3.02, "meters"),
  31048. weight: math.unit(500, "kg"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/drena/front.svg",
  31052. extra: 282 / 243,
  31053. bottom: 8 / 290
  31054. }
  31055. },
  31056. side: {
  31057. height: math.unit(3.02, "meters"),
  31058. weight: math.unit(500, "kg"),
  31059. name: "Side",
  31060. image: {
  31061. source: "./media/characters/drena/side.svg",
  31062. extra: 280 / 245,
  31063. bottom: 10 / 290
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(3.02, "meters"),
  31068. weight: math.unit(500, "kg"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/drena/back.svg",
  31072. extra: 278 / 243,
  31073. bottom: 2 / 280
  31074. }
  31075. },
  31076. foot: {
  31077. height: math.unit(0.75, "meters"),
  31078. name: "Foot",
  31079. image: {
  31080. source: "./media/characters/drena/foot.svg"
  31081. }
  31082. },
  31083. maw: {
  31084. height: math.unit(0.82, "meters"),
  31085. name: "Maw",
  31086. image: {
  31087. source: "./media/characters/drena/maw.svg"
  31088. }
  31089. },
  31090. eating: {
  31091. height: math.unit(0.75, "meters"),
  31092. name: "Eating",
  31093. image: {
  31094. source: "./media/characters/drena/eating.svg"
  31095. }
  31096. },
  31097. rump: {
  31098. height: math.unit(0.93, "meters"),
  31099. name: "Rump",
  31100. image: {
  31101. source: "./media/characters/drena/rump.svg"
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(3.02, "meters"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(6 + 4 / 12, "feet"),
  31118. weight: math.unit(250, "lb"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/remmyzilla/front.svg",
  31122. extra: 4033 / 3588,
  31123. bottom: 123 / 4156
  31124. }
  31125. },
  31126. back: {
  31127. height: math.unit(6 + 4 / 12, "feet"),
  31128. weight: math.unit(250, "lb"),
  31129. name: "Back",
  31130. image: {
  31131. source: "./media/characters/remmyzilla/back.svg",
  31132. extra: 1696/1602,
  31133. bottom: 63/1759
  31134. }
  31135. },
  31136. paw: {
  31137. height: math.unit(1.73, "feet"),
  31138. name: "Paw",
  31139. image: {
  31140. source: "./media/characters/remmyzilla/paw.svg"
  31141. },
  31142. extraAttributes: {
  31143. "toeSize": {
  31144. name: "Toe Size",
  31145. power: 2,
  31146. type: "area",
  31147. base: math.unit(0.0035, "m^2")
  31148. },
  31149. "padSize": {
  31150. name: "Pad Size",
  31151. power: 2,
  31152. type: "area",
  31153. base: math.unit(0.015, "m^2")
  31154. },
  31155. "pawsize": {
  31156. name: "Paw Size",
  31157. power: 2,
  31158. type: "area",
  31159. base: math.unit(0.072, "m^2")
  31160. },
  31161. }
  31162. },
  31163. maw: {
  31164. height: math.unit(1.73, "feet"),
  31165. name: "Maw",
  31166. image: {
  31167. source: "./media/characters/remmyzilla/maw.svg"
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(6 + 4 / 12, "feet")
  31175. },
  31176. {
  31177. name: "Minimacro",
  31178. height: math.unit(12 + 8 / 12, "feet")
  31179. },
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(640, "feet"),
  31183. default: true
  31184. },
  31185. {
  31186. name: "Megamacro",
  31187. height: math.unit(6400, "feet")
  31188. },
  31189. {
  31190. name: "Gigamacro",
  31191. height: math.unit(64000, "miles")
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(2.5, "meters"),
  31200. weight: math.unit(300, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/lawrence/front.svg",
  31204. extra: 357 / 335,
  31205. bottom: 30 / 387
  31206. }
  31207. },
  31208. back: {
  31209. height: math.unit(2.5, "meters"),
  31210. weight: math.unit(300, "lb"),
  31211. name: "Back",
  31212. image: {
  31213. source: "./media/characters/lawrence/back.svg",
  31214. extra: 357 / 338,
  31215. bottom: 16 / 373
  31216. }
  31217. },
  31218. head: {
  31219. height: math.unit(0.9, "meter"),
  31220. name: "Head",
  31221. image: {
  31222. source: "./media/characters/lawrence/head.svg"
  31223. }
  31224. },
  31225. maw: {
  31226. height: math.unit(0.7, "meter"),
  31227. name: "Maw",
  31228. image: {
  31229. source: "./media/characters/lawrence/maw.svg"
  31230. }
  31231. },
  31232. footBottom: {
  31233. height: math.unit(0.5, "meter"),
  31234. name: "Foot (Bottom)",
  31235. image: {
  31236. source: "./media/characters/lawrence/foot-bottom.svg"
  31237. }
  31238. },
  31239. footTop: {
  31240. height: math.unit(0.5, "meter"),
  31241. name: "Foot (Top)",
  31242. image: {
  31243. source: "./media/characters/lawrence/foot-top.svg"
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(2.5, "meters"),
  31251. default: true
  31252. },
  31253. {
  31254. name: "Macro",
  31255. height: math.unit(95, "meters")
  31256. },
  31257. {
  31258. name: "Megamacro",
  31259. height: math.unit(150, "km")
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31265. {
  31266. front: {
  31267. height: math.unit(4.2, "meters"),
  31268. preyCapacity: math.unit(50, "m^3"),
  31269. weight: math.unit(30, "tonnes"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/sydney/front.svg",
  31273. extra: 1177/1129,
  31274. bottom: 197/1374
  31275. },
  31276. extraAttributes: {
  31277. "length": {
  31278. name: "Length",
  31279. power: 1,
  31280. type: "length",
  31281. base: math.unit(21, "meters")
  31282. },
  31283. }
  31284. },
  31285. },
  31286. [
  31287. {
  31288. name: "Normal",
  31289. height: math.unit(4.2, "meters"),
  31290. default: true
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31296. {
  31297. back: {
  31298. height: math.unit(201, "feet"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/jessica/back.svg",
  31302. extra: 273 / 259,
  31303. bottom: 7 / 280
  31304. }
  31305. },
  31306. },
  31307. [
  31308. {
  31309. name: "Normal",
  31310. height: math.unit(201, "feet"),
  31311. default: true
  31312. },
  31313. {
  31314. name: "Megamacro",
  31315. height: math.unit(8, "miles")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31321. {
  31322. side: {
  31323. height: math.unit(5.6, "m"),
  31324. weight: math.unit(8000, "kg"),
  31325. name: "Side",
  31326. image: {
  31327. source: "./media/characters/victoria/side.svg",
  31328. extra: 1542/1229,
  31329. bottom: 124/1666
  31330. }
  31331. },
  31332. maw: {
  31333. height: math.unit(7.14, "feet"),
  31334. name: "Maw",
  31335. image: {
  31336. source: "./media/characters/victoria/maw.svg"
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(5.6, "m"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31350. {
  31351. front: {
  31352. height: math.unit(5 + 6 / 12, "feet"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/cat/front.svg",
  31356. extra: 1449/1295,
  31357. bottom: 34/1483
  31358. },
  31359. form: "cat",
  31360. default: true
  31361. },
  31362. back: {
  31363. height: math.unit(5 + 6 / 12, "feet"),
  31364. name: "Back",
  31365. image: {
  31366. source: "./media/characters/cat/back.svg",
  31367. extra: 1466/1301,
  31368. bottom: 19/1485
  31369. },
  31370. form: "cat"
  31371. },
  31372. taur: {
  31373. height: math.unit(7, "feet"),
  31374. name: "Taur",
  31375. image: {
  31376. source: "./media/characters/cat/taur.svg",
  31377. extra: 1389/1233,
  31378. bottom: 83/1472
  31379. },
  31380. form: "taur",
  31381. default: true
  31382. },
  31383. lucarioFront: {
  31384. height: math.unit(4, "feet"),
  31385. name: "Lucario (Front)",
  31386. image: {
  31387. source: "./media/characters/cat/lucario-front.svg",
  31388. extra: 1149/1019,
  31389. bottom: 84/1233
  31390. },
  31391. form: "lucario",
  31392. default: true
  31393. },
  31394. lucarioBack: {
  31395. height: math.unit(4, "feet"),
  31396. name: "Lucario (Back)",
  31397. image: {
  31398. source: "./media/characters/cat/lucario-back.svg",
  31399. extra: 1190/1059,
  31400. bottom: 33/1223
  31401. },
  31402. form: "lucario"
  31403. },
  31404. megaLucario: {
  31405. height: math.unit(4, "feet"),
  31406. name: "Mega Lucario",
  31407. image: {
  31408. source: "./media/characters/cat/mega-lucario.svg",
  31409. extra: 1515 / 1319,
  31410. bottom: 63 / 1578
  31411. },
  31412. form: "lucario"
  31413. },
  31414. nickit: {
  31415. height: math.unit(2, "feet"),
  31416. name: "Nickit",
  31417. image: {
  31418. source: "./media/characters/cat/nickit.svg",
  31419. extra: 1980 / 1585,
  31420. bottom: 102 / 2082
  31421. },
  31422. form: "nickit",
  31423. default: true
  31424. },
  31425. lopunnyFront: {
  31426. height: math.unit(5, "feet"),
  31427. name: "Lopunny (Front)",
  31428. image: {
  31429. source: "./media/characters/cat/lopunny-front.svg",
  31430. extra: 1782 / 1469,
  31431. bottom: 38 / 1820
  31432. },
  31433. form: "lopunny",
  31434. default: true
  31435. },
  31436. lopunnyBack: {
  31437. height: math.unit(5, "feet"),
  31438. name: "Lopunny (Back)",
  31439. image: {
  31440. source: "./media/characters/cat/lopunny-back.svg",
  31441. extra: 1660 / 1490,
  31442. bottom: 25 / 1685
  31443. },
  31444. form: "lopunny"
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Really small",
  31450. height: math.unit(1, "nm"),
  31451. allForms: true
  31452. },
  31453. {
  31454. name: "Micro",
  31455. height: math.unit(5, "inches"),
  31456. allForms: true
  31457. },
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(5 + 6 / 12, "feet"),
  31461. default: true,
  31462. form: "cat"
  31463. },
  31464. {
  31465. name: "Normal",
  31466. height: math.unit(7, "feet"),
  31467. default: true,
  31468. form: "taur"
  31469. },
  31470. {
  31471. name: "Normal",
  31472. height: math.unit(4, "feet"),
  31473. default: true,
  31474. form: "lucario"
  31475. },
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(2, "feet"),
  31479. default: true,
  31480. form: "nickit"
  31481. },
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(5, "feet"),
  31485. default: true,
  31486. form: "lopunny"
  31487. },
  31488. {
  31489. name: "Macro",
  31490. height: math.unit(50, "feet"),
  31491. allForms: true
  31492. },
  31493. {
  31494. name: "Macro+",
  31495. height: math.unit(150, "feet"),
  31496. allForms: true
  31497. },
  31498. {
  31499. name: "Megamacro",
  31500. height: math.unit(100, "miles"),
  31501. allForms: true
  31502. },
  31503. ],
  31504. {
  31505. "cat": {
  31506. name: "Cat",
  31507. default: true
  31508. },
  31509. "taur": {
  31510. name: "Taur",
  31511. },
  31512. "lucario": {
  31513. name: "Lucario",
  31514. },
  31515. "nickit": {
  31516. name: "Nickit",
  31517. },
  31518. "lopunny": {
  31519. name: "Lopunny",
  31520. }
  31521. }
  31522. ))
  31523. characterMakers.push(() => makeCharacter(
  31524. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31525. {
  31526. front: {
  31527. height: math.unit(63.4, "meters"),
  31528. weight: math.unit(3.28349e+6, "kilograms"),
  31529. name: "Front",
  31530. image: {
  31531. source: "./media/characters/kirina-violet/front.svg",
  31532. extra: 2812 / 2725,
  31533. bottom: 0 / 2812
  31534. }
  31535. },
  31536. back: {
  31537. height: math.unit(63.4, "meters"),
  31538. weight: math.unit(3.28349e+6, "kilograms"),
  31539. name: "Back",
  31540. image: {
  31541. source: "./media/characters/kirina-violet/back.svg",
  31542. extra: 2812 / 2725,
  31543. bottom: 0 / 2812
  31544. }
  31545. },
  31546. mouth: {
  31547. height: math.unit(4.35, "meters"),
  31548. name: "Mouth",
  31549. image: {
  31550. source: "./media/characters/kirina-violet/mouth.svg"
  31551. }
  31552. },
  31553. paw: {
  31554. height: math.unit(5.6, "meters"),
  31555. name: "Paw",
  31556. image: {
  31557. source: "./media/characters/kirina-violet/paw.svg"
  31558. }
  31559. },
  31560. tail: {
  31561. height: math.unit(18, "meters"),
  31562. name: "Tail",
  31563. image: {
  31564. source: "./media/characters/kirina-violet/tail.svg"
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(63.4, "meters"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(75, "feet"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/cat-gigachu/front.svg",
  31584. extra: 1239/1027,
  31585. bottom: 32/1271
  31586. }
  31587. },
  31588. back: {
  31589. height: math.unit(75, "feet"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/cat-gigachu/back.svg",
  31593. extra: 1229/1030,
  31594. bottom: 9/1238
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Dynamax",
  31601. height: math.unit(75, "feet"),
  31602. default: true
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(6, "feet"),
  31611. weight: math.unit(150, "lb"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/sfaiyan/front.svg",
  31615. extra: 999 / 978,
  31616. bottom: 5 / 1004
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(1.82, "meters")
  31624. },
  31625. {
  31626. name: "Giant",
  31627. height: math.unit(2.27, "km"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(179, "cm"),
  31637. weight: math.unit(100, "kg"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/raunehkeli/front.svg",
  31641. extra: 1934 / 1926,
  31642. bottom: 0 / 1934
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(179, "cm")
  31650. },
  31651. {
  31652. name: "Maximum",
  31653. height: math.unit(575, "meters"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(6, "feet"),
  31663. weight: math.unit(150, "lb"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31667. extra: 2625 / 2518,
  31668. bottom: 60 / 2685
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Normal",
  31675. height: math.unit(6 + 2 / 12, "feet")
  31676. },
  31677. {
  31678. name: "Macro",
  31679. height: math.unit(1180, "feet"),
  31680. default: true
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31686. {
  31687. front: {
  31688. height: math.unit(5 + 6 / 12, "feet"),
  31689. weight: math.unit(108, "lb"),
  31690. name: "Front",
  31691. image: {
  31692. source: "./media/characters/lilith-zott/front.svg",
  31693. extra: 2510 / 2238,
  31694. bottom: 100 / 2610
  31695. }
  31696. },
  31697. frontDressed: {
  31698. height: math.unit(5 + 6 / 12, "feet"),
  31699. weight: math.unit(108, "lb"),
  31700. name: "Front (Dressed)",
  31701. image: {
  31702. source: "./media/characters/lilith-zott/front-dressed.svg",
  31703. extra: 2510 / 2238,
  31704. bottom: 100 / 2610
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Normal",
  31711. height: math.unit(5 + 6 / 12, "feet")
  31712. },
  31713. {
  31714. name: "Macro",
  31715. height: math.unit(1030, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(6, "feet"),
  31725. weight: math.unit(150, "lb"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31729. extra: 2567 / 2435,
  31730. bottom: 39 / 2606
  31731. }
  31732. },
  31733. frontSuper: {
  31734. height: math.unit(6, "feet"),
  31735. name: "Front (Super)",
  31736. image: {
  31737. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31738. extra: 2567 / 2435,
  31739. bottom: 39 / 2606
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(5 + 10 / 12, "feet")
  31747. },
  31748. {
  31749. name: "Macro",
  31750. height: math.unit(1100, "feet"),
  31751. default: true
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31757. {
  31758. front: {
  31759. height: math.unit(100, "miles"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/sona/front.svg",
  31763. extra: 2433 / 2201,
  31764. bottom: 53 / 2486
  31765. }
  31766. },
  31767. foot: {
  31768. height: math.unit(16.1, "miles"),
  31769. name: "Foot",
  31770. image: {
  31771. source: "./media/characters/sona/foot.svg"
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Macro",
  31778. height: math.unit(100, "miles"),
  31779. default: true
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(6, "feet"),
  31788. weight: math.unit(150, "lb"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/bailey/front.svg",
  31792. extra: 1778 / 1724,
  31793. bottom: 30 / 1808
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Micro",
  31800. height: math.unit(4, "inches")
  31801. },
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(5 + 5 / 12, "feet"),
  31805. default: true
  31806. },
  31807. {
  31808. name: "Macro",
  31809. height: math.unit(250, "feet")
  31810. },
  31811. {
  31812. name: "Megamacro",
  31813. height: math.unit(100, "miles")
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(5 + 2 / 12, "feet"),
  31822. weight: math.unit(120, "lb"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/snaps/front.svg",
  31826. extra: 2370 / 2177,
  31827. bottom: 48 / 2418
  31828. }
  31829. },
  31830. back: {
  31831. height: math.unit(5 + 2 / 12, "feet"),
  31832. weight: math.unit(120, "lb"),
  31833. name: "Back",
  31834. image: {
  31835. source: "./media/characters/snaps/back.svg",
  31836. extra: 2408 / 2258,
  31837. bottom: 15 / 2423
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Micro",
  31844. height: math.unit(9, "inches")
  31845. },
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(5 + 2 / 12, "feet"),
  31849. default: true
  31850. },
  31851. {
  31852. name: "Mini Macro",
  31853. height: math.unit(10, "feet")
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(1.8, "meters"),
  31862. weight: math.unit(85, "kg"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/azteck/front.svg",
  31866. extra: 2815 / 2625,
  31867. bottom: 89 / 2904
  31868. }
  31869. },
  31870. back: {
  31871. height: math.unit(1.8, "meters"),
  31872. weight: math.unit(85, "kg"),
  31873. name: "Back",
  31874. image: {
  31875. source: "./media/characters/azteck/back.svg",
  31876. extra: 2856 / 2648,
  31877. bottom: 85 / 2941
  31878. }
  31879. },
  31880. frontDressed: {
  31881. height: math.unit(1.8, "meters"),
  31882. weight: math.unit(85, "kg"),
  31883. name: "Front (Dressed)",
  31884. image: {
  31885. source: "./media/characters/azteck/front-dressed.svg",
  31886. extra: 2147 / 2003,
  31887. bottom: 68 / 2215
  31888. }
  31889. },
  31890. head: {
  31891. height: math.unit(0.47, "meters"),
  31892. weight: math.unit(85, "kg"),
  31893. name: "Head",
  31894. image: {
  31895. source: "./media/characters/azteck/head.svg"
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Bite sized",
  31902. height: math.unit(16, "cm")
  31903. },
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(1.8, "meters"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(150, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/pidge/front.svg",
  31920. extra: 1936/1820,
  31921. bottom: 0/1936
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(150, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/pidge/back.svg",
  31930. extra: 1938/1843,
  31931. bottom: 0/1938
  31932. }
  31933. },
  31934. casual: {
  31935. height: math.unit(6, "feet"),
  31936. weight: math.unit(150, "lb"),
  31937. name: "Casual",
  31938. image: {
  31939. source: "./media/characters/pidge/casual.svg",
  31940. extra: 1936/1820,
  31941. bottom: 0/1936
  31942. }
  31943. },
  31944. tech: {
  31945. height: math.unit(6, "feet"),
  31946. weight: math.unit(150, "lb"),
  31947. name: "Tech",
  31948. image: {
  31949. source: "./media/characters/pidge/tech.svg",
  31950. extra: 1802/1682,
  31951. bottom: 0/1802
  31952. }
  31953. },
  31954. head: {
  31955. height: math.unit(1.61, "feet"),
  31956. name: "Head",
  31957. image: {
  31958. source: "./media/characters/pidge/head.svg"
  31959. }
  31960. },
  31961. collar: {
  31962. height: math.unit(0.82, "feet"),
  31963. name: "Collar",
  31964. image: {
  31965. source: "./media/characters/pidge/collar.svg"
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Macro",
  31972. height: math.unit(2, "mile"),
  31973. default: true
  31974. },
  31975. {
  31976. name: "PUPPY",
  31977. height: math.unit(20, "miles")
  31978. },
  31979. ]
  31980. ))
  31981. characterMakers.push(() => makeCharacter(
  31982. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31983. {
  31984. front: {
  31985. height: math.unit(6, "feet"),
  31986. weight: math.unit(150, "lb"),
  31987. name: "Front",
  31988. image: {
  31989. source: "./media/characters/en/front.svg",
  31990. extra: 1697 / 1563,
  31991. bottom: 103 / 1800
  31992. }
  31993. },
  31994. back: {
  31995. height: math.unit(6, "feet"),
  31996. weight: math.unit(150, "lb"),
  31997. name: "Back",
  31998. image: {
  31999. source: "./media/characters/en/back.svg",
  32000. extra: 1700 / 1570,
  32001. bottom: 51 / 1751
  32002. }
  32003. },
  32004. frontDressed: {
  32005. height: math.unit(6, "feet"),
  32006. weight: math.unit(150, "lb"),
  32007. name: "Front (Dressed)",
  32008. image: {
  32009. source: "./media/characters/en/front-dressed.svg",
  32010. extra: 1697 / 1563,
  32011. bottom: 103 / 1800
  32012. }
  32013. },
  32014. backDressed: {
  32015. height: math.unit(6, "feet"),
  32016. weight: math.unit(150, "lb"),
  32017. name: "Back (Dressed)",
  32018. image: {
  32019. source: "./media/characters/en/back-dressed.svg",
  32020. extra: 1700 / 1570,
  32021. bottom: 51 / 1751
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Macro",
  32028. height: math.unit(210, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(6, "feet"),
  32038. weight: math.unit(150, "lb"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/haze-orris/front.svg",
  32042. extra: 3975 / 3525,
  32043. bottom: 137 / 4112
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Micro",
  32050. height: math.unit(150, "mm"),
  32051. default: true
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(6, "feet"),
  32060. weight: math.unit(150, "lb"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/casselene-yaro/front.svg",
  32064. extra: 4721 / 4541,
  32065. bottom: 82 / 4803
  32066. }
  32067. },
  32068. back: {
  32069. height: math.unit(6, "feet"),
  32070. weight: math.unit(150, "lb"),
  32071. name: "Back",
  32072. image: {
  32073. source: "./media/characters/casselene-yaro/back.svg",
  32074. extra: 4569 / 4377,
  32075. bottom: 69 / 4638
  32076. }
  32077. },
  32078. dressed: {
  32079. height: math.unit(6, "feet"),
  32080. weight: math.unit(150, "lb"),
  32081. name: "Dressed",
  32082. image: {
  32083. source: "./media/characters/casselene-yaro/dressed.svg",
  32084. extra: 4721 / 4541,
  32085. bottom: 82 / 4803
  32086. }
  32087. },
  32088. maw: {
  32089. height: math.unit(1, "feet"),
  32090. name: "Maw",
  32091. image: {
  32092. source: "./media/characters/casselene-yaro/maw.svg"
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Macro",
  32099. height: math.unit(190, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(10, "feet"),
  32109. weight: math.unit(15015, "lb"),
  32110. name: "Front",
  32111. image: {
  32112. source: "./media/characters/platine/front.svg",
  32113. extra: 1741/1650,
  32114. bottom: 84/1825
  32115. }
  32116. },
  32117. side: {
  32118. height: math.unit(10, "feet"),
  32119. weight: math.unit(15015, "lb"),
  32120. name: "Side",
  32121. image: {
  32122. source: "./media/characters/platine/side.svg",
  32123. extra: 1790/1705,
  32124. bottom: 29/1819
  32125. }
  32126. },
  32127. },
  32128. [
  32129. {
  32130. name: "Normal",
  32131. height: math.unit(10, "feet"),
  32132. default: true
  32133. },
  32134. {
  32135. name: "Macro",
  32136. height: math.unit(100, "feet")
  32137. },
  32138. {
  32139. name: "Megamacro",
  32140. height: math.unit(1000, "feet")
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(15 + 5 / 12, "feet"),
  32149. weight: math.unit(4600, "lb"),
  32150. name: "Front",
  32151. image: {
  32152. source: "./media/characters/neapolitan-ananassa/front.svg",
  32153. extra: 2903 / 2736,
  32154. bottom: 0 / 2903
  32155. }
  32156. },
  32157. side: {
  32158. height: math.unit(15 + 5 / 12, "feet"),
  32159. weight: math.unit(4600, "lb"),
  32160. name: "Side",
  32161. image: {
  32162. source: "./media/characters/neapolitan-ananassa/side.svg",
  32163. extra: 2925 / 2719,
  32164. bottom: 0 / 2925
  32165. }
  32166. },
  32167. back: {
  32168. height: math.unit(15 + 5 / 12, "feet"),
  32169. weight: math.unit(4600, "lb"),
  32170. name: "Back",
  32171. image: {
  32172. source: "./media/characters/neapolitan-ananassa/back.svg",
  32173. extra: 2903 / 2736,
  32174. bottom: 0 / 2903
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(15 + 5 / 12, "feet"),
  32182. default: true
  32183. },
  32184. {
  32185. name: "Post-Millenium",
  32186. height: math.unit(35 + 5 / 12, "feet")
  32187. },
  32188. {
  32189. name: "Post-Era",
  32190. height: math.unit(450 + 5 / 12, "feet")
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32196. {
  32197. front: {
  32198. height: math.unit(300, "meters"),
  32199. weight: math.unit(125000, "tonnes"),
  32200. name: "Front",
  32201. image: {
  32202. source: "./media/characters/pazuzu/front.svg",
  32203. extra: 877 / 794,
  32204. bottom: 47 / 924
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Macro",
  32211. height: math.unit(300, "meters"),
  32212. default: true
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32218. {
  32219. side: {
  32220. height: math.unit(10 + 7 / 12, "feet"),
  32221. weight: math.unit(2.5, "tons"),
  32222. name: "Side",
  32223. image: {
  32224. source: "./media/characters/aasha/side.svg",
  32225. extra: 1345 / 1245,
  32226. bottom: 111 / 1456
  32227. }
  32228. },
  32229. back: {
  32230. height: math.unit(10 + 7 / 12, "feet"),
  32231. weight: math.unit(2.5, "tons"),
  32232. name: "Back",
  32233. image: {
  32234. source: "./media/characters/aasha/back.svg",
  32235. extra: 1133 / 1057,
  32236. bottom: 257 / 1390
  32237. }
  32238. },
  32239. },
  32240. [
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(10 + 7 / 12, "feet"),
  32244. default: true
  32245. },
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32250. {
  32251. front: {
  32252. height: math.unit(6 + 3 / 12, "feet"),
  32253. name: "Front",
  32254. image: {
  32255. source: "./media/characters/nevan/front.svg",
  32256. extra: 704 / 704,
  32257. bottom: 28 / 732
  32258. }
  32259. },
  32260. back: {
  32261. height: math.unit(6 + 3 / 12, "feet"),
  32262. name: "Back",
  32263. image: {
  32264. source: "./media/characters/nevan/back.svg",
  32265. extra: 714 / 714,
  32266. bottom: 21 / 735
  32267. }
  32268. },
  32269. frontFlaccid: {
  32270. height: math.unit(6 + 3 / 12, "feet"),
  32271. name: "Front (Flaccid)",
  32272. image: {
  32273. source: "./media/characters/nevan/front-flaccid.svg",
  32274. extra: 704 / 704,
  32275. bottom: 28 / 732
  32276. }
  32277. },
  32278. frontErect: {
  32279. height: math.unit(6 + 3 / 12, "feet"),
  32280. name: "Front (Erect)",
  32281. image: {
  32282. source: "./media/characters/nevan/front-erect.svg",
  32283. extra: 704 / 704,
  32284. bottom: 28 / 732
  32285. }
  32286. },
  32287. backFlaccid: {
  32288. height: math.unit(6 + 3 / 12, "feet"),
  32289. name: "Back (Flaccid)",
  32290. image: {
  32291. source: "./media/characters/nevan/back-flaccid.svg",
  32292. extra: 714 / 714,
  32293. bottom: 21 / 735
  32294. }
  32295. },
  32296. },
  32297. [
  32298. {
  32299. name: "Normal",
  32300. height: math.unit(6 + 3 / 12, "feet"),
  32301. default: true
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(4, "feet"),
  32310. name: "Front",
  32311. image: {
  32312. source: "./media/characters/arhan/front.svg",
  32313. extra: 3368 / 3133,
  32314. bottom: 0 / 3368
  32315. }
  32316. },
  32317. side: {
  32318. height: math.unit(4, "feet"),
  32319. name: "Side",
  32320. image: {
  32321. source: "./media/characters/arhan/side.svg",
  32322. extra: 3347 / 3105,
  32323. bottom: 0 / 3347
  32324. }
  32325. },
  32326. tongue: {
  32327. height: math.unit(1.42, "feet"),
  32328. name: "Tongue",
  32329. image: {
  32330. source: "./media/characters/arhan/tongue.svg"
  32331. }
  32332. },
  32333. head: {
  32334. height: math.unit(0.85, "feet"),
  32335. name: "Head",
  32336. image: {
  32337. source: "./media/characters/arhan/head.svg"
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(4, "feet"),
  32345. default: true
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(5 + 7.5 / 12, "feet"),
  32354. weight: math.unit(120, "lb"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/digi-duncan/front.svg",
  32358. extra: 330 / 326,
  32359. bottom: 16 / 346
  32360. }
  32361. },
  32362. side: {
  32363. height: math.unit(5 + 7.5 / 12, "feet"),
  32364. weight: math.unit(120, "lb"),
  32365. name: "Side",
  32366. image: {
  32367. source: "./media/characters/digi-duncan/side.svg",
  32368. extra: 341 / 337,
  32369. bottom: 1 / 342
  32370. }
  32371. },
  32372. back: {
  32373. height: math.unit(5 + 7.5 / 12, "feet"),
  32374. weight: math.unit(120, "lb"),
  32375. name: "Back",
  32376. image: {
  32377. source: "./media/characters/digi-duncan/back.svg",
  32378. extra: 330 / 326,
  32379. bottom: 12 / 342
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Speck",
  32386. height: math.unit(0.25, "mm")
  32387. },
  32388. {
  32389. name: "Micro",
  32390. height: math.unit(5, "mm")
  32391. },
  32392. {
  32393. name: "Tiny",
  32394. height: math.unit(0.5, "inches"),
  32395. default: true
  32396. },
  32397. {
  32398. name: "Human",
  32399. height: math.unit(5 + 7.5 / 12, "feet")
  32400. },
  32401. {
  32402. name: "Minigiant",
  32403. height: math.unit(8 + 5.25, "feet")
  32404. },
  32405. {
  32406. name: "Giant",
  32407. height: math.unit(2000, "feet")
  32408. },
  32409. {
  32410. name: "Mega",
  32411. height: math.unit(371.1, "miles")
  32412. },
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(2, "meters"),
  32420. weight: math.unit(350, "kg"),
  32421. name: "Front",
  32422. image: {
  32423. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32424. extra: 898 / 838,
  32425. bottom: 9 / 907
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Micro",
  32432. height: math.unit(8, "meters")
  32433. },
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(50, "meters"),
  32437. default: true
  32438. },
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(500, "meters")
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(6 + 6 / 12, "feet"),
  32450. name: "Front",
  32451. image: {
  32452. source: "./media/characters/khardesh/front.svg",
  32453. extra: 1788/1596,
  32454. bottom: 66/1854
  32455. }
  32456. },
  32457. back: {
  32458. height: math.unit(6 + 6 / 12, "feet"),
  32459. name: "Back",
  32460. image: {
  32461. source: "./media/characters/khardesh/back.svg",
  32462. extra: 1781/1584,
  32463. bottom: 68/1849
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(6 + 6 / 12, "feet"),
  32471. default: true
  32472. },
  32473. {
  32474. name: "Normal+",
  32475. height: math.unit(4, "meters")
  32476. },
  32477. {
  32478. name: "Macro",
  32479. height: math.unit(50, "meters")
  32480. },
  32481. {
  32482. name: "Macro+",
  32483. height: math.unit(100, "meters")
  32484. },
  32485. {
  32486. name: "Megamacro",
  32487. height: math.unit(20, "km")
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(6, "feet"),
  32496. weight: math.unit(150, "lb"),
  32497. name: "Front",
  32498. image: {
  32499. source: "./media/characters/kosho/front.svg",
  32500. extra: 1847 / 1847,
  32501. bottom: 86 / 1933
  32502. }
  32503. },
  32504. },
  32505. [
  32506. {
  32507. name: "Second-stage micro",
  32508. height: math.unit(0.5, "inches")
  32509. },
  32510. {
  32511. name: "First-stage micro",
  32512. height: math.unit(6, "inches")
  32513. },
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(6, "feet"),
  32517. default: true
  32518. },
  32519. {
  32520. name: "First-stage macro",
  32521. height: math.unit(72, "feet")
  32522. },
  32523. {
  32524. name: "Second-stage macro",
  32525. height: math.unit(864, "feet")
  32526. },
  32527. ]
  32528. ))
  32529. characterMakers.push(() => makeCharacter(
  32530. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32531. {
  32532. normal: {
  32533. height: math.unit(4 + 6 / 12, "feet"),
  32534. name: "Normal",
  32535. image: {
  32536. source: "./media/characters/hydra/normal.svg",
  32537. extra: 2833 / 2634,
  32538. bottom: 68 / 2901
  32539. }
  32540. },
  32541. smol: {
  32542. height: math.unit(0.705, "inches"),
  32543. name: "Smol",
  32544. image: {
  32545. source: "./media/characters/hydra/smol.svg",
  32546. extra: 2715 / 2540,
  32547. bottom: 0 / 2715
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(4 + 6 / 12, "feet"),
  32555. default: true
  32556. }
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(0.6, "cm"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/daz/front.svg",
  32567. extra: 1682 / 1164,
  32568. bottom: 42 / 1724
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(0.6, "cm"),
  32576. default: true
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32582. {
  32583. front: {
  32584. height: math.unit(6, "feet"),
  32585. weight: math.unit(235, "lb"),
  32586. name: "Front",
  32587. image: {
  32588. source: "./media/characters/theo-pangolin/front.svg",
  32589. extra: 1996 / 1969,
  32590. bottom: 115 / 2111
  32591. }
  32592. },
  32593. back: {
  32594. height: math.unit(6, "feet"),
  32595. weight: math.unit(235, "lb"),
  32596. name: "Back",
  32597. image: {
  32598. source: "./media/characters/theo-pangolin/back.svg",
  32599. extra: 1979 / 1979,
  32600. bottom: 40 / 2019
  32601. }
  32602. },
  32603. feral: {
  32604. height: math.unit(2, "feet"),
  32605. weight: math.unit(30, "lb"),
  32606. name: "Feral",
  32607. image: {
  32608. source: "./media/characters/theo-pangolin/feral.svg",
  32609. extra: 803 / 791,
  32610. bottom: 181 / 984
  32611. }
  32612. },
  32613. footFive: {
  32614. height: math.unit(1.43, "feet"),
  32615. name: "Foot (Five Toes)",
  32616. image: {
  32617. source: "./media/characters/theo-pangolin/foot-five.svg"
  32618. }
  32619. },
  32620. footFour: {
  32621. height: math.unit(1.43, "feet"),
  32622. name: "Foot (Four Toes)",
  32623. image: {
  32624. source: "./media/characters/theo-pangolin/foot-four.svg"
  32625. }
  32626. },
  32627. handFour: {
  32628. height: math.unit(0.81, "feet"),
  32629. name: "Hand (Four Fingers)",
  32630. image: {
  32631. source: "./media/characters/theo-pangolin/hand-four.svg"
  32632. }
  32633. },
  32634. handThree: {
  32635. height: math.unit(0.81, "feet"),
  32636. name: "Hand (Three Fingers)",
  32637. image: {
  32638. source: "./media/characters/theo-pangolin/hand-three.svg"
  32639. }
  32640. },
  32641. headFront: {
  32642. height: math.unit(1.37, "feet"),
  32643. name: "Head (Front)",
  32644. image: {
  32645. source: "./media/characters/theo-pangolin/head-front.svg"
  32646. }
  32647. },
  32648. headSide: {
  32649. height: math.unit(1.43, "feet"),
  32650. name: "Head (Side)",
  32651. image: {
  32652. source: "./media/characters/theo-pangolin/head-side.svg"
  32653. }
  32654. },
  32655. tongue: {
  32656. height: math.unit(2.29, "feet"),
  32657. name: "Tongue",
  32658. image: {
  32659. source: "./media/characters/theo-pangolin/tongue.svg"
  32660. }
  32661. },
  32662. },
  32663. [
  32664. {
  32665. name: "Normal",
  32666. height: math.unit(6, "feet")
  32667. },
  32668. {
  32669. name: "Macro",
  32670. height: math.unit(400, "feet"),
  32671. default: true
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32677. {
  32678. front: {
  32679. height: math.unit(6, "inches"),
  32680. weight: math.unit(0.036, "kg"),
  32681. name: "Front",
  32682. image: {
  32683. source: "./media/characters/renée/front.svg",
  32684. extra: 900 / 886,
  32685. bottom: 8 / 908
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Nano",
  32692. height: math.unit(1, "nm")
  32693. },
  32694. {
  32695. name: "Micro",
  32696. height: math.unit(1, "mm")
  32697. },
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(6, "inches")
  32701. },
  32702. {
  32703. name: "Macro",
  32704. height: math.unit(2000, "feet"),
  32705. default: true
  32706. },
  32707. {
  32708. name: "Megamacro",
  32709. height: math.unit(2, "km")
  32710. },
  32711. {
  32712. name: "Gigamacro",
  32713. height: math.unit(2000, "km")
  32714. },
  32715. {
  32716. name: "Teramacro",
  32717. height: math.unit(250000, "km")
  32718. },
  32719. ]
  32720. ))
  32721. characterMakers.push(() => makeCharacter(
  32722. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32723. {
  32724. front: {
  32725. height: math.unit(4, "meters"),
  32726. weight: math.unit(150, "kg"),
  32727. name: "Front",
  32728. image: {
  32729. source: "./media/characters/caledvwlch/front.svg",
  32730. extra: 1757/1537,
  32731. bottom: 31/1788
  32732. }
  32733. },
  32734. side: {
  32735. height: math.unit(4, "meters"),
  32736. weight: math.unit(150, "kg"),
  32737. name: "Side",
  32738. image: {
  32739. source: "./media/characters/caledvwlch/side.svg",
  32740. extra: 1605 / 1536,
  32741. bottom: 31 / 1636
  32742. }
  32743. },
  32744. back: {
  32745. height: math.unit(4, "meters"),
  32746. weight: math.unit(150, "kg"),
  32747. name: "Back",
  32748. image: {
  32749. source: "./media/characters/caledvwlch/back.svg",
  32750. extra: 1635 / 1565,
  32751. bottom: 27 / 1662
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "\"Incognito\"",
  32758. height: math.unit(4, "meters")
  32759. },
  32760. {
  32761. name: "Small rampage",
  32762. height: math.unit(600, "meters")
  32763. },
  32764. {
  32765. name: "Mega",
  32766. height: math.unit(30, "km")
  32767. },
  32768. {
  32769. name: "Home-size",
  32770. height: math.unit(50, "km"),
  32771. default: true
  32772. },
  32773. {
  32774. name: "Giga",
  32775. height: math.unit(300, "km")
  32776. },
  32777. {
  32778. name: "Lounging",
  32779. height: math.unit(11000, "km")
  32780. },
  32781. {
  32782. name: "Planet snacking",
  32783. height: math.unit(2000000, "km")
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(6, "feet"),
  32792. weight: math.unit(215, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/sapphire-svell/front.svg",
  32796. extra: 495 / 455,
  32797. bottom: 20 / 515
  32798. }
  32799. },
  32800. back: {
  32801. height: math.unit(6, "feet"),
  32802. weight: math.unit(216, "lb"),
  32803. name: "Back",
  32804. image: {
  32805. source: "./media/characters/sapphire-svell/back.svg",
  32806. extra: 497 / 477,
  32807. bottom: 7 / 504
  32808. }
  32809. },
  32810. maw: {
  32811. height: math.unit(1.57, "feet"),
  32812. name: "Maw",
  32813. image: {
  32814. source: "./media/characters/sapphire-svell/maw.svg"
  32815. }
  32816. },
  32817. foot: {
  32818. height: math.unit(1.07, "feet"),
  32819. name: "Foot",
  32820. image: {
  32821. source: "./media/characters/sapphire-svell/foot.svg"
  32822. }
  32823. },
  32824. toering: {
  32825. height: math.unit(1.7, "inch"),
  32826. name: "Toering",
  32827. image: {
  32828. source: "./media/characters/sapphire-svell/toering.svg"
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Normal",
  32835. height: math.unit(300, "feet"),
  32836. default: true
  32837. },
  32838. {
  32839. name: "Augmented",
  32840. height: math.unit(1250, "feet")
  32841. },
  32842. {
  32843. name: "Unleashed",
  32844. height: math.unit(3000, "feet")
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32850. {
  32851. side: {
  32852. height: math.unit(2 + 3 / 12, "feet"),
  32853. weight: math.unit(110, "lb"),
  32854. name: "Side",
  32855. image: {
  32856. source: "./media/characters/glitch-flux/side.svg",
  32857. extra: 997 / 805,
  32858. bottom: 20 / 1017
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(2 + 3 / 12, "feet"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(4, "meters"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/mid/front.svg",
  32878. extra: 507 / 476,
  32879. bottom: 17 / 524
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(4, "meters"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/mid/back.svg",
  32887. extra: 519 / 487,
  32888. bottom: 7 / 526
  32889. }
  32890. },
  32891. stuck: {
  32892. height: math.unit(2.2, "meters"),
  32893. name: "Stuck",
  32894. image: {
  32895. source: "./media/characters/mid/stuck.svg",
  32896. extra: 1951 / 1869,
  32897. bottom: 88 / 2039
  32898. }
  32899. }
  32900. },
  32901. [
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(4, "meters"),
  32905. default: true
  32906. },
  32907. {
  32908. name: "Big",
  32909. height: math.unit(10, "meters")
  32910. },
  32911. {
  32912. name: "Macro",
  32913. height: math.unit(800, "meters")
  32914. },
  32915. {
  32916. name: "Megamacro",
  32917. height: math.unit(100, "km")
  32918. },
  32919. {
  32920. name: "Overgrown",
  32921. height: math.unit(1, "parsec")
  32922. },
  32923. ]
  32924. ))
  32925. characterMakers.push(() => makeCharacter(
  32926. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32927. {
  32928. front: {
  32929. height: math.unit(2.5, "meters"),
  32930. weight: math.unit(225, "kg"),
  32931. name: "Front",
  32932. image: {
  32933. source: "./media/characters/iris/front.svg",
  32934. extra: 3348 / 3251,
  32935. bottom: 205 / 3553
  32936. }
  32937. },
  32938. maw: {
  32939. height: math.unit(0.56, "meter"),
  32940. name: "Maw",
  32941. image: {
  32942. source: "./media/characters/iris/maw.svg"
  32943. }
  32944. },
  32945. },
  32946. [
  32947. {
  32948. name: "Mewter cat",
  32949. height: math.unit(1.2, "meters")
  32950. },
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(2.5, "meters"),
  32954. default: true
  32955. },
  32956. {
  32957. name: "Minimacro",
  32958. height: math.unit(18, "feet")
  32959. },
  32960. {
  32961. name: "Macro",
  32962. height: math.unit(140, "feet")
  32963. },
  32964. {
  32965. name: "Macro+",
  32966. height: math.unit(180, "meters")
  32967. },
  32968. {
  32969. name: "Megamacro",
  32970. height: math.unit(2746, "meters")
  32971. },
  32972. ]
  32973. ))
  32974. characterMakers.push(() => makeCharacter(
  32975. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32976. {
  32977. front: {
  32978. height: math.unit(6, "feet"),
  32979. weight: math.unit(135, "lb"),
  32980. name: "Front",
  32981. image: {
  32982. source: "./media/characters/axel/front.svg",
  32983. extra: 908 / 908,
  32984. bottom: 58 / 966
  32985. }
  32986. },
  32987. side: {
  32988. height: math.unit(6, "feet"),
  32989. weight: math.unit(135, "lb"),
  32990. name: "Side",
  32991. image: {
  32992. source: "./media/characters/axel/side.svg",
  32993. extra: 958 / 958,
  32994. bottom: 11 / 969
  32995. }
  32996. },
  32997. back: {
  32998. height: math.unit(6, "feet"),
  32999. weight: math.unit(135, "lb"),
  33000. name: "Back",
  33001. image: {
  33002. source: "./media/characters/axel/back.svg",
  33003. extra: 887 / 887,
  33004. bottom: 34 / 921
  33005. }
  33006. },
  33007. head: {
  33008. height: math.unit(1.07, "feet"),
  33009. name: "Head",
  33010. image: {
  33011. source: "./media/characters/axel/head.svg"
  33012. }
  33013. },
  33014. beak: {
  33015. height: math.unit(1.4, "feet"),
  33016. name: "Beak",
  33017. image: {
  33018. source: "./media/characters/axel/beak.svg"
  33019. }
  33020. },
  33021. beakSide: {
  33022. height: math.unit(1.4, "feet"),
  33023. name: "Beak Side",
  33024. image: {
  33025. source: "./media/characters/axel/beak-side.svg"
  33026. }
  33027. },
  33028. sheath: {
  33029. height: math.unit(0.5, "feet"),
  33030. name: "Sheath",
  33031. image: {
  33032. source: "./media/characters/axel/sheath.svg"
  33033. }
  33034. },
  33035. dick: {
  33036. height: math.unit(0.98, "feet"),
  33037. name: "Dick",
  33038. image: {
  33039. source: "./media/characters/axel/dick.svg"
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Macro",
  33046. height: math.unit(68, "meters"),
  33047. default: true
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(3.5, "meters"),
  33056. weight: math.unit(1200, "kg"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/joanna/front.svg",
  33060. extra: 1596 / 1488,
  33061. bottom: 29 / 1625
  33062. }
  33063. },
  33064. back: {
  33065. height: math.unit(3.5, "meters"),
  33066. weight: math.unit(1200, "kg"),
  33067. name: "Back",
  33068. image: {
  33069. source: "./media/characters/joanna/back.svg",
  33070. extra: 1594 / 1495,
  33071. bottom: 26 / 1620
  33072. }
  33073. },
  33074. frontShorts: {
  33075. height: math.unit(3.5, "meters"),
  33076. weight: math.unit(1200, "kg"),
  33077. name: "Front (Shorts)",
  33078. image: {
  33079. source: "./media/characters/joanna/front-shorts.svg",
  33080. extra: 1596 / 1488,
  33081. bottom: 29 / 1625
  33082. }
  33083. },
  33084. frontBiker: {
  33085. height: math.unit(3.5, "meters"),
  33086. weight: math.unit(1200, "kg"),
  33087. name: "Front (Biker)",
  33088. image: {
  33089. source: "./media/characters/joanna/front-biker.svg",
  33090. extra: 1596 / 1488,
  33091. bottom: 29 / 1625
  33092. }
  33093. },
  33094. backBiker: {
  33095. height: math.unit(3.5, "meters"),
  33096. weight: math.unit(1200, "kg"),
  33097. name: "Back (Biker)",
  33098. image: {
  33099. source: "./media/characters/joanna/back-biker.svg",
  33100. extra: 1594 / 1495,
  33101. bottom: 88 / 1682
  33102. }
  33103. },
  33104. bikeLeft: {
  33105. height: math.unit(2.4, "meters"),
  33106. weight: math.unit(1600, "kg"),
  33107. name: "Bike (Left)",
  33108. image: {
  33109. source: "./media/characters/joanna/bike-left.svg",
  33110. extra: 720 / 720,
  33111. bottom: 8 / 728
  33112. }
  33113. },
  33114. bikeRight: {
  33115. height: math.unit(2.4, "meters"),
  33116. weight: math.unit(1600, "kg"),
  33117. name: "Bike (Right)",
  33118. image: {
  33119. source: "./media/characters/joanna/bike-right.svg",
  33120. extra: 720 / 720,
  33121. bottom: 8 / 728
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Incognito",
  33128. height: math.unit(3.5, "meters")
  33129. },
  33130. {
  33131. name: "Casual Big",
  33132. height: math.unit(200, "meters")
  33133. },
  33134. {
  33135. name: "Macro",
  33136. height: math.unit(600, "meters")
  33137. },
  33138. {
  33139. name: "Original",
  33140. height: math.unit(20, "km"),
  33141. default: true
  33142. },
  33143. {
  33144. name: "Giga",
  33145. height: math.unit(400, "km")
  33146. },
  33147. {
  33148. name: "Lounging",
  33149. height: math.unit(1500, "km")
  33150. },
  33151. {
  33152. name: "Planetary",
  33153. height: math.unit(200000, "km")
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33159. {
  33160. front: {
  33161. height: math.unit(6, "feet"),
  33162. weight: math.unit(150, "lb"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/hugo-sigil/front.svg",
  33166. extra: 522 / 500,
  33167. bottom: 2 / 524
  33168. }
  33169. },
  33170. back: {
  33171. height: math.unit(6, "feet"),
  33172. weight: math.unit(150, "lb"),
  33173. name: "Back",
  33174. image: {
  33175. source: "./media/characters/hugo-sigil/back.svg",
  33176. extra: 519 / 495,
  33177. bottom: 5 / 524
  33178. }
  33179. },
  33180. maw: {
  33181. height: math.unit(1.4, "feet"),
  33182. weight: math.unit(150, "lb"),
  33183. name: "Maw",
  33184. image: {
  33185. source: "./media/characters/hugo-sigil/maw.svg"
  33186. }
  33187. },
  33188. feet: {
  33189. height: math.unit(1.56, "feet"),
  33190. weight: math.unit(150, "lb"),
  33191. name: "Feet",
  33192. image: {
  33193. source: "./media/characters/hugo-sigil/feet.svg",
  33194. extra: 177 / 177,
  33195. bottom: 12 / 189
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(6, "feet")
  33203. },
  33204. {
  33205. name: "Macro",
  33206. height: math.unit(200, "feet"),
  33207. default: true
  33208. },
  33209. ]
  33210. ))
  33211. characterMakers.push(() => makeCharacter(
  33212. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33213. {
  33214. front: {
  33215. height: math.unit(6, "feet"),
  33216. weight: math.unit(150, "lb"),
  33217. name: "Front",
  33218. image: {
  33219. source: "./media/characters/peri/front.svg",
  33220. extra: 2354 / 2233,
  33221. bottom: 49 / 2403
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Really Small",
  33228. height: math.unit(1, "nm")
  33229. },
  33230. {
  33231. name: "Micro",
  33232. height: math.unit(4, "inches")
  33233. },
  33234. {
  33235. name: "Normal",
  33236. height: math.unit(7, "inches"),
  33237. default: true
  33238. },
  33239. {
  33240. name: "Macro",
  33241. height: math.unit(400, "feet")
  33242. },
  33243. {
  33244. name: "Megamacro",
  33245. height: math.unit(100, "miles")
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33251. {
  33252. frontSlim: {
  33253. height: math.unit(7, "feet"),
  33254. name: "Front (Slim)",
  33255. image: {
  33256. source: "./media/characters/issilora/front-slim.svg",
  33257. extra: 529 / 449,
  33258. bottom: 53 / 582
  33259. }
  33260. },
  33261. sideSlim: {
  33262. height: math.unit(7, "feet"),
  33263. name: "Side (Slim)",
  33264. image: {
  33265. source: "./media/characters/issilora/side-slim.svg",
  33266. extra: 570 / 480,
  33267. bottom: 30 / 600
  33268. }
  33269. },
  33270. backSlim: {
  33271. height: math.unit(7, "feet"),
  33272. name: "Back (Slim)",
  33273. image: {
  33274. source: "./media/characters/issilora/back-slim.svg",
  33275. extra: 537 / 455,
  33276. bottom: 46 / 583
  33277. }
  33278. },
  33279. frontBuff: {
  33280. height: math.unit(7, "feet"),
  33281. name: "Front (Buff)",
  33282. image: {
  33283. source: "./media/characters/issilora/front-buff.svg",
  33284. extra: 2310 / 2035,
  33285. bottom: 335 / 2645
  33286. }
  33287. },
  33288. head: {
  33289. height: math.unit(1.94, "feet"),
  33290. name: "Head",
  33291. image: {
  33292. source: "./media/characters/issilora/head.svg"
  33293. }
  33294. },
  33295. },
  33296. [
  33297. {
  33298. name: "Minimum",
  33299. height: math.unit(7, "feet")
  33300. },
  33301. {
  33302. name: "Comfortable",
  33303. height: math.unit(17, "feet")
  33304. },
  33305. {
  33306. name: "Fun Size",
  33307. height: math.unit(47, "feet")
  33308. },
  33309. {
  33310. name: "Natural Macro",
  33311. height: math.unit(137, "feet"),
  33312. default: true
  33313. },
  33314. {
  33315. name: "Maximum Kaiju",
  33316. height: math.unit(397, "feet")
  33317. },
  33318. ]
  33319. ))
  33320. characterMakers.push(() => makeCharacter(
  33321. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33322. {
  33323. front: {
  33324. height: math.unit(50 + 9/12, "feet"),
  33325. weight: math.unit(32.8, "tons"),
  33326. name: "Front",
  33327. image: {
  33328. source: "./media/characters/irb'iiritaahn/front.svg",
  33329. extra: 1878/1826,
  33330. bottom: 326/2204
  33331. }
  33332. },
  33333. back: {
  33334. height: math.unit(50 + 9/12, "feet"),
  33335. weight: math.unit(32.8, "tons"),
  33336. name: "Back",
  33337. image: {
  33338. source: "./media/characters/irb'iiritaahn/back.svg",
  33339. extra: 2052/2018,
  33340. bottom: 152/2204
  33341. }
  33342. },
  33343. head: {
  33344. height: math.unit(12.86, "feet"),
  33345. name: "Head",
  33346. image: {
  33347. source: "./media/characters/irb'iiritaahn/head.svg"
  33348. }
  33349. },
  33350. maw: {
  33351. height: math.unit(9.66, "feet"),
  33352. name: "Maw",
  33353. image: {
  33354. source: "./media/characters/irb'iiritaahn/maw.svg"
  33355. }
  33356. },
  33357. frontDick: {
  33358. height: math.unit(8.78461, "feet"),
  33359. name: "Front Dick",
  33360. image: {
  33361. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33362. }
  33363. },
  33364. rearDick: {
  33365. height: math.unit(8.78461, "feet"),
  33366. name: "Rear Dick",
  33367. image: {
  33368. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33369. }
  33370. },
  33371. rearDickUnfolded: {
  33372. height: math.unit(8.78, "feet"),
  33373. name: "Rear Dick (Unfolded)",
  33374. image: {
  33375. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33376. }
  33377. },
  33378. wings: {
  33379. height: math.unit(43, "feet"),
  33380. name: "Wings",
  33381. image: {
  33382. source: "./media/characters/irb'iiritaahn/wings.svg"
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Macro",
  33389. height: math.unit(50 + 9/12, "feet"),
  33390. default: true
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(205, "cm"),
  33399. weight: math.unit(102, "kg"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/irbisgreif/front.svg",
  33403. extra: 785/706,
  33404. bottom: 13/798
  33405. }
  33406. },
  33407. back: {
  33408. height: math.unit(205, "cm"),
  33409. weight: math.unit(102, "kg"),
  33410. name: "Back",
  33411. image: {
  33412. source: "./media/characters/irbisgreif/back.svg",
  33413. extra: 713/701,
  33414. bottom: 26/739
  33415. }
  33416. },
  33417. frontDressed: {
  33418. height: math.unit(216, "cm"),
  33419. weight: math.unit(102, "kg"),
  33420. name: "Front-dressed",
  33421. image: {
  33422. source: "./media/characters/irbisgreif/front-dressed.svg",
  33423. extra: 902/776,
  33424. bottom: 14/916
  33425. }
  33426. },
  33427. sideDressed: {
  33428. height: math.unit(195, "cm"),
  33429. weight: math.unit(102, "kg"),
  33430. name: "Side-dressed",
  33431. image: {
  33432. source: "./media/characters/irbisgreif/side-dressed.svg",
  33433. extra: 788/688,
  33434. bottom: 21/809
  33435. }
  33436. },
  33437. backDressed: {
  33438. height: math.unit(216, "cm"),
  33439. weight: math.unit(102, "kg"),
  33440. name: "Back-dressed",
  33441. image: {
  33442. source: "./media/characters/irbisgreif/back-dressed.svg",
  33443. extra: 901/783,
  33444. bottom: 10/911
  33445. }
  33446. },
  33447. dick: {
  33448. height: math.unit(0.49, "feet"),
  33449. name: "Dick",
  33450. image: {
  33451. source: "./media/characters/irbisgreif/dick.svg"
  33452. }
  33453. },
  33454. wingTop: {
  33455. height: math.unit(1.93 , "feet"),
  33456. name: "Wing-top",
  33457. image: {
  33458. source: "./media/characters/irbisgreif/wing-top.svg"
  33459. }
  33460. },
  33461. wingBottom: {
  33462. height: math.unit(1.93 , "feet"),
  33463. name: "Wing-bottom",
  33464. image: {
  33465. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(216, "cm"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(6, "feet"),
  33482. weight: math.unit(150, "lb"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/pride/front.svg",
  33486. extra: 1299/1230,
  33487. bottom: 18/1317
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Normal",
  33494. height: math.unit(7, "feet")
  33495. },
  33496. {
  33497. name: "Mini-macro",
  33498. height: math.unit(11, "feet")
  33499. },
  33500. {
  33501. name: "Macro",
  33502. height: math.unit(15, "meters"),
  33503. default: true
  33504. },
  33505. {
  33506. name: "Macro+",
  33507. height: math.unit(40, "meters")
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33513. {
  33514. front: {
  33515. height: math.unit(4 + 2 / 12, "feet"),
  33516. weight: math.unit(95, "lb"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/vaelophis-nyx/front.svg",
  33520. extra: 2532/2330,
  33521. bottom: 0/2532
  33522. }
  33523. },
  33524. back: {
  33525. height: math.unit(4 + 2 / 12, "feet"),
  33526. weight: math.unit(95, "lb"),
  33527. name: "Back",
  33528. image: {
  33529. source: "./media/characters/vaelophis-nyx/back.svg",
  33530. extra: 2484/2361,
  33531. bottom: 0/2484
  33532. }
  33533. },
  33534. feralSide: {
  33535. height: math.unit(2 + 1/12, "feet"),
  33536. weight: math.unit(20, "lb"),
  33537. name: "Feral (Side)",
  33538. image: {
  33539. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33540. extra: 1721/1581,
  33541. bottom: 70/1791
  33542. }
  33543. },
  33544. feralLazing: {
  33545. height: math.unit(1.08, "feet"),
  33546. weight: math.unit(20, "lb"),
  33547. name: "Feral (Lazing)",
  33548. image: {
  33549. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33550. extra: 822/822,
  33551. bottom: 248/1070
  33552. }
  33553. },
  33554. ear: {
  33555. height: math.unit(0.416, "feet"),
  33556. name: "Ear",
  33557. image: {
  33558. source: "./media/characters/vaelophis-nyx/ear.svg"
  33559. }
  33560. },
  33561. eye: {
  33562. height: math.unit(0.0748, "feet"),
  33563. name: "Eye",
  33564. image: {
  33565. source: "./media/characters/vaelophis-nyx/eye.svg"
  33566. }
  33567. },
  33568. mouth: {
  33569. height: math.unit(0.378, "feet"),
  33570. name: "Mouth",
  33571. image: {
  33572. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33573. }
  33574. },
  33575. spade: {
  33576. height: math.unit(0.55, "feet"),
  33577. name: "Spade",
  33578. image: {
  33579. source: "./media/characters/vaelophis-nyx/spade.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(4 + 2/12, "feet"),
  33587. default: true
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33593. {
  33594. front: {
  33595. height: math.unit(7, "feet"),
  33596. weight: math.unit(231, "lb"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/flux/front.svg",
  33600. extra: 919/871,
  33601. bottom: 0/919
  33602. }
  33603. },
  33604. back: {
  33605. height: math.unit(7, "feet"),
  33606. weight: math.unit(231, "lb"),
  33607. name: "Back",
  33608. image: {
  33609. source: "./media/characters/flux/back.svg",
  33610. extra: 1040/992,
  33611. bottom: 0/1040
  33612. }
  33613. },
  33614. frontDressed: {
  33615. height: math.unit(7, "feet"),
  33616. weight: math.unit(231, "lb"),
  33617. name: "Front (Dressed)",
  33618. image: {
  33619. source: "./media/characters/flux/front-dressed.svg",
  33620. extra: 919/871,
  33621. bottom: 0/919
  33622. }
  33623. },
  33624. feralSide: {
  33625. height: math.unit(5, "feet"),
  33626. weight: math.unit(150, "lb"),
  33627. name: "Feral (Side)",
  33628. image: {
  33629. source: "./media/characters/flux/feral-side.svg",
  33630. extra: 598/528,
  33631. bottom: 28/626
  33632. }
  33633. },
  33634. head: {
  33635. height: math.unit(1.585, "feet"),
  33636. name: "Head",
  33637. image: {
  33638. source: "./media/characters/flux/head.svg"
  33639. }
  33640. },
  33641. headSide: {
  33642. height: math.unit(1.74, "feet"),
  33643. name: "Head (Side)",
  33644. image: {
  33645. source: "./media/characters/flux/head-side.svg"
  33646. }
  33647. },
  33648. headSideFire: {
  33649. height: math.unit(1.76, "feet"),
  33650. name: "Head (Side, Fire)",
  33651. image: {
  33652. source: "./media/characters/flux/head-side-fire.svg"
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Normal",
  33659. height: math.unit(7, "feet"),
  33660. default: true
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33666. {
  33667. front: {
  33668. height: math.unit(9, "feet"),
  33669. weight: math.unit(1012, "lb"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/ulfra-lupae/front.svg",
  33673. extra: 1083/1011,
  33674. bottom: 67/1150
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Micro",
  33681. height: math.unit(6, "inches")
  33682. },
  33683. {
  33684. name: "Socializing",
  33685. height: math.unit(6 + 5/12, "feet")
  33686. },
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(9, "feet"),
  33690. default: true
  33691. },
  33692. {
  33693. name: "Macro",
  33694. height: math.unit(150, "feet")
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33700. {
  33701. front: {
  33702. height: math.unit(5 + 2/12, "feet"),
  33703. weight: math.unit(120, "lb"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/timber/front.svg",
  33707. extra: 2814/2705,
  33708. bottom: 181/2995
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(5 + 2/12, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(9, "feet"),
  33725. name: "Front",
  33726. image: {
  33727. source: "./media/characters/nicki/front.svg",
  33728. extra: 1240/990,
  33729. bottom: 45/1285
  33730. },
  33731. form: "anthro",
  33732. default: true
  33733. },
  33734. side: {
  33735. height: math.unit(9, "feet"),
  33736. name: "Side",
  33737. image: {
  33738. source: "./media/characters/nicki/side.svg",
  33739. extra: 1047/973,
  33740. bottom: 61/1108
  33741. },
  33742. form: "anthro"
  33743. },
  33744. back: {
  33745. height: math.unit(9, "feet"),
  33746. name: "Back",
  33747. image: {
  33748. source: "./media/characters/nicki/back.svg",
  33749. extra: 1006/965,
  33750. bottom: 39/1045
  33751. },
  33752. form: "anthro"
  33753. },
  33754. taur: {
  33755. height: math.unit(15, "feet"),
  33756. name: "Taur",
  33757. image: {
  33758. source: "./media/characters/nicki/taur.svg",
  33759. extra: 1592/1347,
  33760. bottom: 0/1592
  33761. },
  33762. form: "taur",
  33763. default: true
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(9, "feet"),
  33770. form: "anthro",
  33771. default: true
  33772. },
  33773. {
  33774. name: "Normal",
  33775. height: math.unit(15, "feet"),
  33776. form: "taur",
  33777. default: true
  33778. }
  33779. ],
  33780. {
  33781. "anthro": {
  33782. name: "Anthro",
  33783. default: true
  33784. },
  33785. "taur": {
  33786. name: "Taur"
  33787. }
  33788. }
  33789. ))
  33790. characterMakers.push(() => makeCharacter(
  33791. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33792. {
  33793. front: {
  33794. height: math.unit(7 + 10/12, "feet"),
  33795. weight: math.unit(3.5, "tons"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/lee/front.svg",
  33799. extra: 1773/1615,
  33800. bottom: 86/1859
  33801. }
  33802. },
  33803. hand: {
  33804. height: math.unit(1.78, "feet"),
  33805. name: "Hand",
  33806. image: {
  33807. source: "./media/characters/lee/hand.svg"
  33808. }
  33809. },
  33810. maw: {
  33811. height: math.unit(1.18, "feet"),
  33812. name: "Maw",
  33813. image: {
  33814. source: "./media/characters/lee/maw.svg"
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Normal",
  33821. height: math.unit(7 + 10/12, "feet"),
  33822. default: true
  33823. },
  33824. ]
  33825. ))
  33826. characterMakers.push(() => makeCharacter(
  33827. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33828. {
  33829. front: {
  33830. height: math.unit(9, "feet"),
  33831. name: "Front",
  33832. image: {
  33833. source: "./media/characters/guti/front.svg",
  33834. extra: 4551/4355,
  33835. bottom: 123/4674
  33836. }
  33837. },
  33838. tongue: {
  33839. height: math.unit(1, "feet"),
  33840. name: "Tongue",
  33841. image: {
  33842. source: "./media/characters/guti/tongue.svg"
  33843. }
  33844. },
  33845. paw: {
  33846. height: math.unit(1.18, "feet"),
  33847. name: "Paw",
  33848. image: {
  33849. source: "./media/characters/guti/paw.svg"
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Normal",
  33856. height: math.unit(9, "feet"),
  33857. default: true
  33858. },
  33859. ]
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33863. {
  33864. side: {
  33865. height: math.unit(5, "meters"),
  33866. name: "Side",
  33867. image: {
  33868. source: "./media/characters/vesper/side.svg",
  33869. extra: 1605/1518,
  33870. bottom: 0/1605
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Small",
  33877. height: math.unit(5, "meters")
  33878. },
  33879. {
  33880. name: "Sage",
  33881. height: math.unit(100, "meters"),
  33882. default: true
  33883. },
  33884. {
  33885. name: "Fun Size",
  33886. height: math.unit(600, "meters")
  33887. },
  33888. {
  33889. name: "Goddess",
  33890. height: math.unit(20000, "km")
  33891. },
  33892. {
  33893. name: "Maximum",
  33894. height: math.unit(5, "galaxies")
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(6 + 3/12, "feet"),
  33903. weight: math.unit(190, "lb"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/gawain/front.svg",
  33907. extra: 2222/2139,
  33908. bottom: 90/2312
  33909. }
  33910. },
  33911. back: {
  33912. height: math.unit(6 + 3/12, "feet"),
  33913. weight: math.unit(190, "lb"),
  33914. name: "Back",
  33915. image: {
  33916. source: "./media/characters/gawain/back.svg",
  33917. extra: 2199/2111,
  33918. bottom: 73/2272
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(6 + 3/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33932. {
  33933. side: {
  33934. height: math.unit(3.5, "meters"),
  33935. weight: math.unit(16000, "lb"),
  33936. name: "Side",
  33937. image: {
  33938. source: "./media/characters/dascalti/side.svg",
  33939. extra: 392/273,
  33940. bottom: 47/439
  33941. }
  33942. },
  33943. breath: {
  33944. height: math.unit(7.4, "feet"),
  33945. name: "Breath",
  33946. image: {
  33947. source: "./media/characters/dascalti/breath.svg"
  33948. }
  33949. },
  33950. fed: {
  33951. height: math.unit(3.6, "meters"),
  33952. weight: math.unit(16000, "lb"),
  33953. name: "Fed",
  33954. image: {
  33955. source: "./media/characters/dascalti/fed.svg",
  33956. extra: 1419/820,
  33957. bottom: 95/1514
  33958. }
  33959. },
  33960. },
  33961. [
  33962. {
  33963. name: "Normal",
  33964. height: math.unit(3.5, "meters"),
  33965. default: true
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(3 + 5/12, "feet"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/mauve/front.svg",
  33977. extra: 1126/1033,
  33978. bottom: 65/1191
  33979. }
  33980. },
  33981. side: {
  33982. height: math.unit(3 + 5/12, "feet"),
  33983. name: "Side",
  33984. image: {
  33985. source: "./media/characters/mauve/side.svg",
  33986. extra: 1089/1001,
  33987. bottom: 29/1118
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(3 + 5/12, "feet"),
  33992. name: "Back",
  33993. image: {
  33994. source: "./media/characters/mauve/back.svg",
  33995. extra: 1173/1053,
  33996. bottom: 109/1282
  33997. }
  33998. },
  33999. },
  34000. [
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(3 + 5/12, "feet"),
  34004. default: true
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(6 + 3/12, "feet"),
  34013. weight: math.unit(430, "lb"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/carlos/front.svg",
  34017. extra: 1964/1913,
  34018. bottom: 70/2034
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Normal",
  34025. height: math.unit(6 + 3/12, "feet"),
  34026. default: true
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34032. {
  34033. back: {
  34034. height: math.unit(5 + 10/12, "feet"),
  34035. weight: math.unit(200, "lb"),
  34036. name: "Back",
  34037. image: {
  34038. source: "./media/characters/jax/back.svg",
  34039. extra: 764/739,
  34040. bottom: 25/789
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(5 + 10/12, "feet"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(8, "feet"),
  34057. weight: math.unit(250, "lb"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/eikthynir/front.svg",
  34061. extra: 1332/1166,
  34062. bottom: 82/1414
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(8, "feet"),
  34067. weight: math.unit(250, "lb"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/eikthynir/back.svg",
  34071. extra: 1342/1190,
  34072. bottom: 19/1361
  34073. }
  34074. },
  34075. dick: {
  34076. height: math.unit(2.35, "feet"),
  34077. name: "Dick",
  34078. image: {
  34079. source: "./media/characters/eikthynir/dick.svg"
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(8, "feet"),
  34087. default: true
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(99, "meters"),
  34096. weight: math.unit(13000, "tons"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/zlmos/front.svg",
  34100. extra: 2202/1992,
  34101. bottom: 315/2517
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Macro",
  34108. height: math.unit(99, "meters"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(6 + 5/12, "feet"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/purri/front.svg",
  34121. extra: 1698/1610,
  34122. bottom: 32/1730
  34123. }
  34124. },
  34125. frontAlt: {
  34126. height: math.unit(6 + 5/12, "feet"),
  34127. name: "Front (Alt)",
  34128. image: {
  34129. source: "./media/characters/purri/front-alt.svg",
  34130. extra: 450/420,
  34131. bottom: 26/476
  34132. }
  34133. },
  34134. boots: {
  34135. height: math.unit(5.5, "feet"),
  34136. name: "Boots",
  34137. image: {
  34138. source: "./media/characters/purri/boots.svg",
  34139. extra: 905/853,
  34140. bottom: 18/923
  34141. },
  34142. extraAttributes: {
  34143. "shoeSize": {
  34144. name: "Shoe Size",
  34145. power: 1,
  34146. type: "length",
  34147. base: math.unit(12, "ShoeSizeMensUS")
  34148. },
  34149. "platformHeight": {
  34150. name: "Platform Height",
  34151. power: 1,
  34152. type: "length",
  34153. base: math.unit(2, "inches")
  34154. },
  34155. }
  34156. },
  34157. lying: {
  34158. height: math.unit(2, "feet"),
  34159. name: "Lying",
  34160. image: {
  34161. source: "./media/characters/purri/lying.svg",
  34162. extra: 940/843,
  34163. bottom: 146/1086
  34164. }
  34165. },
  34166. devious: {
  34167. height: math.unit(1.77, "feet"),
  34168. name: "Devious",
  34169. image: {
  34170. source: "./media/characters/purri/devious.svg",
  34171. extra: 1440/1155,
  34172. bottom: 147/1587
  34173. }
  34174. },
  34175. bean: {
  34176. height: math.unit(1.94, "feet"),
  34177. name: "Bean",
  34178. image: {
  34179. source: "./media/characters/purri/bean.svg"
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Micro",
  34186. height: math.unit(1, "mm")
  34187. },
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(6 + 5/12, "feet"),
  34191. default: true
  34192. },
  34193. {
  34194. name: "Macro :3c",
  34195. height: math.unit(2, "miles")
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(6 + 2/12, "feet"),
  34204. weight: math.unit(250, "lb"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/moonlight/front.svg",
  34208. extra: 1044/908,
  34209. bottom: 56/1100
  34210. }
  34211. },
  34212. feral: {
  34213. height: math.unit(3 + 1/12, "feet"),
  34214. weight: math.unit(50, "kg"),
  34215. name: "Feral",
  34216. image: {
  34217. source: "./media/characters/moonlight/feral.svg",
  34218. extra: 3705/2791,
  34219. bottom: 145/3850
  34220. }
  34221. },
  34222. paw: {
  34223. height: math.unit(1, "feet"),
  34224. name: "Paw",
  34225. image: {
  34226. source: "./media/characters/moonlight/paw.svg"
  34227. }
  34228. },
  34229. paws: {
  34230. height: math.unit(0.98, "feet"),
  34231. name: "Paws",
  34232. image: {
  34233. source: "./media/characters/moonlight/paws.svg",
  34234. extra: 939/939,
  34235. bottom: 50/989
  34236. }
  34237. },
  34238. mouth: {
  34239. height: math.unit(0.48, "feet"),
  34240. name: "Mouth",
  34241. image: {
  34242. source: "./media/characters/moonlight/mouth.svg"
  34243. }
  34244. },
  34245. dick: {
  34246. height: math.unit(1.46, "feet"),
  34247. name: "Dick",
  34248. image: {
  34249. source: "./media/characters/moonlight/dick.svg"
  34250. }
  34251. },
  34252. },
  34253. [
  34254. {
  34255. name: "Normal",
  34256. height: math.unit(6 + 2/12, "feet"),
  34257. default: true
  34258. },
  34259. {
  34260. name: "Macro",
  34261. height: math.unit(300, "feet")
  34262. },
  34263. {
  34264. name: "Macro+",
  34265. height: math.unit(1, "mile")
  34266. },
  34267. {
  34268. name: "Mt. Moon",
  34269. height: math.unit(5, "miles")
  34270. },
  34271. {
  34272. name: "Megamacro",
  34273. height: math.unit(15, "miles")
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34279. {
  34280. back: {
  34281. height: math.unit(6, "feet"),
  34282. weight: math.unit(150, "lb"),
  34283. name: "Back",
  34284. image: {
  34285. source: "./media/characters/sylen/back.svg",
  34286. extra: 1335/1273,
  34287. bottom: 107/1442
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(5 + 5/12, "feet")
  34295. },
  34296. {
  34297. name: "Megamacro",
  34298. height: math.unit(3, "miles"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34305. {
  34306. front: {
  34307. height: math.unit(6, "feet"),
  34308. weight: math.unit(190, "lb"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/huttser/front.svg",
  34312. extra: 1152/1058,
  34313. bottom: 23/1175
  34314. }
  34315. },
  34316. side: {
  34317. height: math.unit(6, "feet"),
  34318. weight: math.unit(190, "lb"),
  34319. name: "Side",
  34320. image: {
  34321. source: "./media/characters/huttser/side.svg",
  34322. extra: 1174/1065,
  34323. bottom: 18/1192
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(6, "feet"),
  34328. weight: math.unit(190, "lb"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/huttser/back.svg",
  34332. extra: 1158/1056,
  34333. bottom: 12/1170
  34334. }
  34335. },
  34336. },
  34337. [
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34342. {
  34343. side: {
  34344. height: math.unit(12 + 9/12, "feet"),
  34345. weight: math.unit(15000, "lb"),
  34346. name: "Side",
  34347. image: {
  34348. source: "./media/characters/faan/side.svg",
  34349. extra: 2747/2697,
  34350. bottom: 0/2747
  34351. }
  34352. },
  34353. front: {
  34354. height: math.unit(12 + 9/12, "feet"),
  34355. weight: math.unit(15000, "lb"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/faan/front.svg",
  34359. extra: 607/571,
  34360. bottom: 24/631
  34361. }
  34362. },
  34363. head: {
  34364. height: math.unit(2.85, "feet"),
  34365. name: "Head",
  34366. image: {
  34367. source: "./media/characters/faan/head.svg"
  34368. }
  34369. },
  34370. headAlt: {
  34371. height: math.unit(3.13, "feet"),
  34372. name: "Head-alt",
  34373. image: {
  34374. source: "./media/characters/faan/head-alt.svg"
  34375. }
  34376. },
  34377. },
  34378. [
  34379. {
  34380. name: "Normal",
  34381. height: math.unit(12 + 9/12, "feet"),
  34382. default: true
  34383. },
  34384. ]
  34385. ))
  34386. characterMakers.push(() => makeCharacter(
  34387. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34388. {
  34389. front: {
  34390. height: math.unit(6, "feet"),
  34391. weight: math.unit(300, "lb"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/tanio/front.svg",
  34395. extra: 711/673,
  34396. bottom: 25/736
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(6, "feet"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(3, "inches"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/noboru/front.svg",
  34416. extra: 1039/932,
  34417. bottom: 18/1057
  34418. }
  34419. },
  34420. },
  34421. [
  34422. {
  34423. name: "Micro",
  34424. height: math.unit(3, "inches"),
  34425. default: true
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34431. {
  34432. front: {
  34433. height: math.unit(1.85, "meters"),
  34434. weight: math.unit(80, "kg"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/daniel-barrett/front.svg",
  34438. extra: 355/337,
  34439. bottom: 9/364
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Pico",
  34446. height: math.unit(0.0433, "mm")
  34447. },
  34448. {
  34449. name: "Nano",
  34450. height: math.unit(1.5, "mm")
  34451. },
  34452. {
  34453. name: "Micro",
  34454. height: math.unit(5.3, "cm"),
  34455. default: true
  34456. },
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(1.85, "meters")
  34460. },
  34461. {
  34462. name: "Macro",
  34463. height: math.unit(64.7, "meters")
  34464. },
  34465. {
  34466. name: "Megamacro",
  34467. height: math.unit(2.26, "km")
  34468. },
  34469. {
  34470. name: "Gigamacro",
  34471. height: math.unit(79, "km")
  34472. },
  34473. {
  34474. name: "Teramacro",
  34475. height: math.unit(2765, "km")
  34476. },
  34477. {
  34478. name: "Petamacro",
  34479. height: math.unit(96678, "km")
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34485. {
  34486. front: {
  34487. height: math.unit(30, "meters"),
  34488. weight: math.unit(400, "tons"),
  34489. name: "Front",
  34490. image: {
  34491. source: "./media/characters/zeel/front.svg",
  34492. extra: 2599/2599,
  34493. bottom: 226/2825
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Macro",
  34500. height: math.unit(30, "meters"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(6 + 7/12, "feet"),
  34510. weight: math.unit(210, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/tarn/front.svg",
  34514. extra: 3517/3220,
  34515. bottom: 91/3608
  34516. }
  34517. },
  34518. back: {
  34519. height: math.unit(6 + 7/12, "feet"),
  34520. weight: math.unit(210, "lb"),
  34521. name: "Back",
  34522. image: {
  34523. source: "./media/characters/tarn/back.svg",
  34524. extra: 3566/3241,
  34525. bottom: 34/3600
  34526. }
  34527. },
  34528. dick: {
  34529. height: math.unit(1.65, "feet"),
  34530. name: "Dick",
  34531. image: {
  34532. source: "./media/characters/tarn/dick.svg"
  34533. }
  34534. },
  34535. paw: {
  34536. height: math.unit(1.80, "feet"),
  34537. name: "Paw",
  34538. image: {
  34539. source: "./media/characters/tarn/paw.svg"
  34540. }
  34541. },
  34542. tongue: {
  34543. height: math.unit(0.97, "feet"),
  34544. name: "Tongue",
  34545. image: {
  34546. source: "./media/characters/tarn/tongue.svg"
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Micro",
  34553. height: math.unit(4, "inches")
  34554. },
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(6 + 7/12, "feet"),
  34558. default: true
  34559. },
  34560. {
  34561. name: "Macro",
  34562. height: math.unit(300, "feet")
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(5 + 7/12, "feet"),
  34571. weight: math.unit(80, "kg"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34575. extra: 3023/2865,
  34576. bottom: 33/3056
  34577. }
  34578. },
  34579. back: {
  34580. height: math.unit(5 + 7/12, "feet"),
  34581. weight: math.unit(80, "kg"),
  34582. name: "Back",
  34583. image: {
  34584. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34585. extra: 3020/2886,
  34586. bottom: 30/3050
  34587. }
  34588. },
  34589. dick: {
  34590. height: math.unit(0.98, "feet"),
  34591. name: "Dick",
  34592. image: {
  34593. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34594. }
  34595. },
  34596. anatomy: {
  34597. height: math.unit(2.86, "feet"),
  34598. name: "Anatomy",
  34599. image: {
  34600. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Really Small",
  34607. height: math.unit(2, "inches")
  34608. },
  34609. {
  34610. name: "Micro",
  34611. height: math.unit(5.583, "inches")
  34612. },
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(5 + 7/12, "feet"),
  34616. default: true
  34617. },
  34618. {
  34619. name: "Macro",
  34620. height: math.unit(67, "feet")
  34621. },
  34622. {
  34623. name: "Megamacro",
  34624. height: math.unit(134, "feet")
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34630. {
  34631. front: {
  34632. height: math.unit(9, "feet"),
  34633. weight: math.unit(120, "lb"),
  34634. name: "Front",
  34635. image: {
  34636. source: "./media/characters/sally/front.svg",
  34637. extra: 1506/1349,
  34638. bottom: 66/1572
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(9, "feet"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(8, "feet"),
  34655. weight: math.unit(900, "lb"),
  34656. name: "Front",
  34657. image: {
  34658. source: "./media/characters/owen/front.svg",
  34659. extra: 1761/1657,
  34660. bottom: 74/1835
  34661. }
  34662. },
  34663. side: {
  34664. height: math.unit(8, "feet"),
  34665. weight: math.unit(900, "lb"),
  34666. name: "Side",
  34667. image: {
  34668. source: "./media/characters/owen/side.svg",
  34669. extra: 1797/1734,
  34670. bottom: 30/1827
  34671. }
  34672. },
  34673. back: {
  34674. height: math.unit(8, "feet"),
  34675. weight: math.unit(900, "lb"),
  34676. name: "Back",
  34677. image: {
  34678. source: "./media/characters/owen/back.svg",
  34679. extra: 1796/1706,
  34680. bottom: 59/1855
  34681. }
  34682. },
  34683. maw: {
  34684. height: math.unit(1.76, "feet"),
  34685. name: "Maw",
  34686. image: {
  34687. source: "./media/characters/owen/maw.svg"
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(8, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34701. {
  34702. front: {
  34703. height: math.unit(4, "feet"),
  34704. weight: math.unit(400, "lb"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/ryth/front.svg",
  34708. extra: 1920/1748,
  34709. bottom: 42/1962
  34710. }
  34711. },
  34712. back: {
  34713. height: math.unit(4, "feet"),
  34714. weight: math.unit(400, "lb"),
  34715. name: "Back",
  34716. image: {
  34717. source: "./media/characters/ryth/back.svg",
  34718. extra: 1897/1690,
  34719. bottom: 89/1986
  34720. }
  34721. },
  34722. mouth: {
  34723. height: math.unit(1.39, "feet"),
  34724. name: "Mouth",
  34725. image: {
  34726. source: "./media/characters/ryth/mouth.svg"
  34727. }
  34728. },
  34729. tailmaw: {
  34730. height: math.unit(1.23, "feet"),
  34731. name: "Tailmaw",
  34732. image: {
  34733. source: "./media/characters/ryth/tailmaw.svg"
  34734. }
  34735. },
  34736. goia: {
  34737. height: math.unit(4, "meters"),
  34738. weight: math.unit(10800, "lb"),
  34739. name: "Goia",
  34740. image: {
  34741. source: "./media/characters/ryth/goia.svg",
  34742. extra: 745/640,
  34743. bottom: 107/852
  34744. }
  34745. },
  34746. goiaFront: {
  34747. height: math.unit(4, "meters"),
  34748. weight: math.unit(10800, "lb"),
  34749. name: "Goia (Front)",
  34750. image: {
  34751. source: "./media/characters/ryth/goia-front.svg",
  34752. extra: 750/586,
  34753. bottom: 114/864
  34754. }
  34755. },
  34756. goiaMaw: {
  34757. height: math.unit(5.55, "feet"),
  34758. name: "Goia Maw",
  34759. image: {
  34760. source: "./media/characters/ryth/goia-maw.svg"
  34761. }
  34762. },
  34763. goiaForepaw: {
  34764. height: math.unit(3.5, "feet"),
  34765. name: "Goia Forepaw",
  34766. image: {
  34767. source: "./media/characters/ryth/goia-forepaw.svg"
  34768. }
  34769. },
  34770. goiaHindpaw: {
  34771. height: math.unit(5.55, "feet"),
  34772. name: "Goia Hindpaw",
  34773. image: {
  34774. source: "./media/characters/ryth/goia-hindpaw.svg"
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(4, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(7, "feet"),
  34791. weight: math.unit(180, "lb"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/necrolance/front.svg",
  34795. extra: 1062/947,
  34796. bottom: 41/1103
  34797. }
  34798. },
  34799. back: {
  34800. height: math.unit(7, "feet"),
  34801. weight: math.unit(180, "lb"),
  34802. name: "Back",
  34803. image: {
  34804. source: "./media/characters/necrolance/back.svg",
  34805. extra: 1045/984,
  34806. bottom: 14/1059
  34807. }
  34808. },
  34809. wing: {
  34810. height: math.unit(2.67, "feet"),
  34811. name: "Wing",
  34812. image: {
  34813. source: "./media/characters/necrolance/wing.svg"
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(7, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34827. {
  34828. front: {
  34829. height: math.unit(76, "meters"),
  34830. weight: math.unit(30000, "tons"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/tyler/front.svg",
  34834. extra: 1640/1640,
  34835. bottom: 114/1754
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Macro",
  34842. height: math.unit(76, "meters"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(4 + 11/12, "feet"),
  34852. weight: math.unit(132, "lb"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/icey/front.svg",
  34856. extra: 2750/2550,
  34857. bottom: 33/2783
  34858. }
  34859. },
  34860. back: {
  34861. height: math.unit(4 + 11/12, "feet"),
  34862. weight: math.unit(132, "lb"),
  34863. name: "Back",
  34864. image: {
  34865. source: "./media/characters/icey/back.svg",
  34866. extra: 2624/2481,
  34867. bottom: 35/2659
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(4 + 11/12, "feet"),
  34875. default: true
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(100, "feet"),
  34884. weight: math.unit(0, "lb"),
  34885. name: "Front",
  34886. image: {
  34887. source: "./media/characters/smile/front.svg",
  34888. extra: 2983/2912,
  34889. bottom: 162/3145
  34890. }
  34891. },
  34892. back: {
  34893. height: math.unit(100, "feet"),
  34894. weight: math.unit(0, "lb"),
  34895. name: "Back",
  34896. image: {
  34897. source: "./media/characters/smile/back.svg",
  34898. extra: 3143/3031,
  34899. bottom: 91/3234
  34900. }
  34901. },
  34902. head: {
  34903. height: math.unit(26.3, "feet"),
  34904. weight: math.unit(0, "lb"),
  34905. name: "Head",
  34906. image: {
  34907. source: "./media/characters/smile/head.svg"
  34908. }
  34909. },
  34910. collar: {
  34911. height: math.unit(5.3, "feet"),
  34912. weight: math.unit(0, "lb"),
  34913. name: "Collar",
  34914. image: {
  34915. source: "./media/characters/smile/collar.svg"
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Macro",
  34922. height: math.unit(100, "feet"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34929. {
  34930. dragon: {
  34931. height: math.unit(26, "feet"),
  34932. weight: math.unit(36, "tons"),
  34933. name: "Dragon",
  34934. image: {
  34935. source: "./media/characters/arimphae/dragon.svg",
  34936. extra: 1574/983,
  34937. bottom: 357/1931
  34938. }
  34939. },
  34940. drake: {
  34941. height: math.unit(9, "feet"),
  34942. weight: math.unit(1.5, "tons"),
  34943. name: "Drake",
  34944. image: {
  34945. source: "./media/characters/arimphae/drake.svg",
  34946. extra: 1120/925,
  34947. bottom: 435/1555
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Small",
  34954. height: math.unit(26*5/9, "feet")
  34955. },
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(26, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(8 + 9/12, "feet"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/xander/front.svg",
  34971. extra: 1237/974,
  34972. bottom: 94/1331
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(8 + 9/12, "feet"),
  34980. default: true
  34981. },
  34982. {
  34983. name: "Gaze Grabber",
  34984. height: math.unit(13 + 8/12, "feet")
  34985. },
  34986. {
  34987. name: "Jaw Dropper",
  34988. height: math.unit(27, "feet")
  34989. },
  34990. {
  34991. name: "Show Stopper",
  34992. height: math.unit(136, "feet")
  34993. },
  34994. {
  34995. name: "Superstar",
  34996. height: math.unit(1.9e6, "miles")
  34997. },
  34998. ]
  34999. ))
  35000. characterMakers.push(() => makeCharacter(
  35001. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35002. {
  35003. side: {
  35004. height: math.unit(2100, "feet"),
  35005. name: "Side",
  35006. image: {
  35007. source: "./media/characters/osiris/side.svg",
  35008. extra: 1105/939,
  35009. bottom: 167/1272
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Macro",
  35016. height: math.unit(2100, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(6 + 8/12, "feet"),
  35026. weight: math.unit(225, "lb"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/rhys-londe/front.svg",
  35030. extra: 2258/2141,
  35031. bottom: 188/2446
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(6 + 8/12, "feet"),
  35036. weight: math.unit(225, "lb"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/rhys-londe/back.svg",
  35040. extra: 2237/2137,
  35041. bottom: 63/2300
  35042. }
  35043. },
  35044. frontNsfw: {
  35045. height: math.unit(6 + 8/12, "feet"),
  35046. weight: math.unit(225, "lb"),
  35047. name: "Front (NSFW)",
  35048. image: {
  35049. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35050. extra: 2258/2141,
  35051. bottom: 188/2446
  35052. }
  35053. },
  35054. backNsfw: {
  35055. height: math.unit(6 + 8/12, "feet"),
  35056. weight: math.unit(225, "lb"),
  35057. name: "Back (NSFW)",
  35058. image: {
  35059. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35060. extra: 2237/2137,
  35061. bottom: 63/2300
  35062. }
  35063. },
  35064. dick: {
  35065. height: math.unit(30, "inches"),
  35066. name: "Dick",
  35067. image: {
  35068. source: "./media/characters/rhys-londe/dick.svg"
  35069. }
  35070. },
  35071. maw: {
  35072. height: math.unit(1.6, "feet"),
  35073. name: "Maw",
  35074. image: {
  35075. source: "./media/characters/rhys-londe/maw.svg"
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(6 + 8/12, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(3 + 10/12, "feet"),
  35092. weight: math.unit(90, "lb"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/taivas-ensim/front.svg",
  35096. extra: 1327/1216,
  35097. bottom: 96/1423
  35098. }
  35099. },
  35100. back: {
  35101. height: math.unit(3 + 10/12, "feet"),
  35102. weight: math.unit(90, "lb"),
  35103. name: "Back",
  35104. image: {
  35105. source: "./media/characters/taivas-ensim/back.svg",
  35106. extra: 1355/1247,
  35107. bottom: 11/1366
  35108. }
  35109. },
  35110. frontNsfw: {
  35111. height: math.unit(3 + 10/12, "feet"),
  35112. weight: math.unit(90, "lb"),
  35113. name: "Front (NSFW)",
  35114. image: {
  35115. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35116. extra: 1327/1216,
  35117. bottom: 96/1423
  35118. }
  35119. },
  35120. backNsfw: {
  35121. height: math.unit(3 + 10/12, "feet"),
  35122. weight: math.unit(90, "lb"),
  35123. name: "Back (NSFW)",
  35124. image: {
  35125. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35126. extra: 1355/1247,
  35127. bottom: 11/1366
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(3 + 10/12, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(9 + 6/12, "feet"),
  35144. weight: math.unit(940, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/byliss/front.svg",
  35148. extra: 1327/1290,
  35149. bottom: 82/1409
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(9 + 6/12, "feet"),
  35154. weight: math.unit(940, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/byliss/back.svg",
  35158. extra: 1376/1349,
  35159. bottom: 9/1385
  35160. }
  35161. },
  35162. frontNsfw: {
  35163. height: math.unit(9 + 6/12, "feet"),
  35164. weight: math.unit(940, "lb"),
  35165. name: "Front (NSFW)",
  35166. image: {
  35167. source: "./media/characters/byliss/front-nsfw.svg",
  35168. extra: 1327/1290,
  35169. bottom: 82/1409
  35170. }
  35171. },
  35172. backNsfw: {
  35173. height: math.unit(9 + 6/12, "feet"),
  35174. weight: math.unit(940, "lb"),
  35175. name: "Back (NSFW)",
  35176. image: {
  35177. source: "./media/characters/byliss/back-nsfw.svg",
  35178. extra: 1376/1349,
  35179. bottom: 9/1385
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(9 + 6/12, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(5 + 2/12, "feet"),
  35196. weight: math.unit(200, "lb"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/noraly/front.svg",
  35200. extra: 4985/4773,
  35201. bottom: 150/5135
  35202. }
  35203. },
  35204. full: {
  35205. height: math.unit(5 + 2/12, "feet"),
  35206. weight: math.unit(164, "lb"),
  35207. name: "Full",
  35208. image: {
  35209. source: "./media/characters/noraly/full.svg",
  35210. extra: 1114/1059,
  35211. bottom: 35/1149
  35212. }
  35213. },
  35214. fuller: {
  35215. height: math.unit(5 + 2/12, "feet"),
  35216. weight: math.unit(230, "lb"),
  35217. name: "Fuller",
  35218. image: {
  35219. source: "./media/characters/noraly/fuller.svg",
  35220. extra: 1114/1059,
  35221. bottom: 35/1149
  35222. }
  35223. },
  35224. fullest: {
  35225. height: math.unit(5 + 2/12, "feet"),
  35226. weight: math.unit(300, "lb"),
  35227. name: "Fullest",
  35228. image: {
  35229. source: "./media/characters/noraly/fullest.svg",
  35230. extra: 1114/1059,
  35231. bottom: 35/1149
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(5 + 2/12, "feet"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35245. {
  35246. front: {
  35247. height: math.unit(5 + 2/12, "feet"),
  35248. weight: math.unit(210, "lb"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/pera/front.svg",
  35252. extra: 1560/1531,
  35253. bottom: 165/1725
  35254. }
  35255. },
  35256. back: {
  35257. height: math.unit(5 + 2/12, "feet"),
  35258. weight: math.unit(210, "lb"),
  35259. name: "Back",
  35260. image: {
  35261. source: "./media/characters/pera/back.svg",
  35262. extra: 1523/1493,
  35263. bottom: 152/1675
  35264. }
  35265. },
  35266. dick: {
  35267. height: math.unit(2.4, "feet"),
  35268. name: "Dick",
  35269. image: {
  35270. source: "./media/characters/pera/dick.svg"
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(5 + 2/12, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(12, "feet"),
  35287. weight: math.unit(3200, "lb"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/julian/front.svg",
  35291. extra: 2962/2701,
  35292. bottom: 184/3146
  35293. }
  35294. },
  35295. maw: {
  35296. height: math.unit(5.35, "feet"),
  35297. name: "Maw",
  35298. image: {
  35299. source: "./media/characters/julian/maw.svg"
  35300. }
  35301. },
  35302. paw: {
  35303. height: math.unit(3.07, "feet"),
  35304. name: "Paw",
  35305. image: {
  35306. source: "./media/characters/julian/paw.svg"
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Default",
  35313. height: math.unit(12, "feet"),
  35314. default: true
  35315. },
  35316. {
  35317. name: "Big",
  35318. height: math.unit(50, "feet")
  35319. },
  35320. {
  35321. name: "Really Big",
  35322. height: math.unit(1, "mile")
  35323. },
  35324. {
  35325. name: "Extremely Big",
  35326. height: math.unit(100, "miles")
  35327. },
  35328. {
  35329. name: "Planet Hugger",
  35330. height: math.unit(200, "megameters")
  35331. },
  35332. {
  35333. name: "Unreasonably Big",
  35334. height: math.unit(1e300, "meters")
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35340. {
  35341. solgooleo: {
  35342. height: math.unit(4, "meters"),
  35343. weight: math.unit(6000*1.5, "kg"),
  35344. volume: math.unit(6000, "liters"),
  35345. name: "Solgooleo",
  35346. image: {
  35347. source: "./media/characters/pi/solgooleo.svg",
  35348. extra: 388/331,
  35349. bottom: 29/417
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(4, "meters"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(8, "feet"),
  35366. weight: math.unit(4, "tons"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/shaun/front.svg",
  35370. extra: 503/495,
  35371. bottom: 20/523
  35372. }
  35373. },
  35374. back: {
  35375. height: math.unit(8, "feet"),
  35376. weight: math.unit(4, "tons"),
  35377. name: "Back",
  35378. image: {
  35379. source: "./media/characters/shaun/back.svg",
  35380. extra: 487/480,
  35381. bottom: 20/507
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Lorg",
  35388. height: math.unit(8, "feet"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35395. {
  35396. frontAnthro: {
  35397. height: math.unit(7, "feet"),
  35398. name: "Front",
  35399. image: {
  35400. source: "./media/characters/sini/front-anthro.svg",
  35401. extra: 726/678,
  35402. bottom: 35/761
  35403. },
  35404. form: "anthro",
  35405. default: true
  35406. },
  35407. backAnthro: {
  35408. height: math.unit(7, "feet"),
  35409. name: "Back",
  35410. image: {
  35411. source: "./media/characters/sini/back-anthro.svg",
  35412. extra: 743/701,
  35413. bottom: 12/755
  35414. },
  35415. form: "anthro",
  35416. },
  35417. frontAnthroNsfw: {
  35418. height: math.unit(7, "feet"),
  35419. name: "Front (NSFW)",
  35420. image: {
  35421. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35422. extra: 726/678,
  35423. bottom: 35/761
  35424. },
  35425. form: "anthro"
  35426. },
  35427. backAnthroNsfw: {
  35428. height: math.unit(7, "feet"),
  35429. name: "Back (NSFW)",
  35430. image: {
  35431. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35432. extra: 743/701,
  35433. bottom: 12/755
  35434. },
  35435. form: "anthro",
  35436. },
  35437. mawAnthro: {
  35438. height: math.unit(2.14, "feet"),
  35439. name: "Maw",
  35440. image: {
  35441. source: "./media/characters/sini/maw-anthro.svg"
  35442. },
  35443. form: "anthro"
  35444. },
  35445. dick: {
  35446. height: math.unit(1.45, "feet"),
  35447. name: "Dick",
  35448. image: {
  35449. source: "./media/characters/sini/dick-anthro.svg"
  35450. },
  35451. form: "anthro"
  35452. },
  35453. feral: {
  35454. height: math.unit(16, "feet"),
  35455. name: "Feral",
  35456. image: {
  35457. source: "./media/characters/sini/feral.svg",
  35458. extra: 814/605,
  35459. bottom: 11/825
  35460. },
  35461. form: "feral",
  35462. default: true
  35463. },
  35464. feralNsfw: {
  35465. height: math.unit(16, "feet"),
  35466. name: "Feral (NSFW)",
  35467. image: {
  35468. source: "./media/characters/sini/feral-nsfw.svg",
  35469. extra: 814/605,
  35470. bottom: 11/825
  35471. },
  35472. form: "feral"
  35473. },
  35474. mawFeral: {
  35475. height: math.unit(5.66, "feet"),
  35476. name: "Maw",
  35477. image: {
  35478. source: "./media/characters/sini/maw-feral.svg"
  35479. },
  35480. form: "feral",
  35481. },
  35482. pawFeral: {
  35483. height: math.unit(5.17, "feet"),
  35484. name: "Paw",
  35485. image: {
  35486. source: "./media/characters/sini/paw-feral.svg"
  35487. },
  35488. form: "feral",
  35489. },
  35490. rumpFeral: {
  35491. height: math.unit(13.11, "feet"),
  35492. name: "Rump",
  35493. image: {
  35494. source: "./media/characters/sini/rump-feral.svg"
  35495. },
  35496. form: "feral",
  35497. },
  35498. dickFeral: {
  35499. height: math.unit(1, "feet"),
  35500. name: "Dick",
  35501. image: {
  35502. source: "./media/characters/sini/dick-feral.svg"
  35503. },
  35504. form: "feral",
  35505. },
  35506. eyeFeral: {
  35507. height: math.unit(1.23, "feet"),
  35508. name: "Eye",
  35509. image: {
  35510. source: "./media/characters/sini/eye-feral.svg"
  35511. },
  35512. form: "feral",
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(7, "feet"),
  35519. default: true,
  35520. form: "anthro"
  35521. },
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(16, "feet"),
  35525. default: true,
  35526. form: "feral"
  35527. },
  35528. ],
  35529. {
  35530. "anthro": {
  35531. name: "Anthro",
  35532. default: true
  35533. },
  35534. "feral": {
  35535. name: "Feral",
  35536. }
  35537. }
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35541. {
  35542. side: {
  35543. height: math.unit(47.2, "meters"),
  35544. weight: math.unit(10000, "tons"),
  35545. name: "Side",
  35546. image: {
  35547. source: "./media/characters/raylldo/side.svg",
  35548. extra: 2363/642,
  35549. bottom: 221/2584
  35550. }
  35551. },
  35552. top: {
  35553. height: math.unit(240, "meters"),
  35554. weight: math.unit(10000, "tons"),
  35555. name: "Top",
  35556. image: {
  35557. source: "./media/characters/raylldo/top.svg"
  35558. }
  35559. },
  35560. bottom: {
  35561. height: math.unit(240, "meters"),
  35562. weight: math.unit(10000, "tons"),
  35563. name: "Bottom",
  35564. image: {
  35565. source: "./media/characters/raylldo/bottom.svg"
  35566. }
  35567. },
  35568. head: {
  35569. height: math.unit(38.6, "meters"),
  35570. name: "Head",
  35571. image: {
  35572. source: "./media/characters/raylldo/head.svg",
  35573. extra: 1335/1112,
  35574. bottom: 0/1335
  35575. }
  35576. },
  35577. maw: {
  35578. height: math.unit(16.37, "meters"),
  35579. name: "Maw",
  35580. image: {
  35581. source: "./media/characters/raylldo/maw.svg",
  35582. extra: 883/660,
  35583. bottom: 0/883
  35584. },
  35585. extraAttributes: {
  35586. preyCapacity: {
  35587. name: "Capacity",
  35588. power: 3,
  35589. type: "volume",
  35590. base: math.unit(1000, "people")
  35591. },
  35592. tongueSize: {
  35593. name: "Tongue Size",
  35594. power: 2,
  35595. type: "area",
  35596. base: math.unit(21, "m^2")
  35597. }
  35598. }
  35599. },
  35600. forepaw: {
  35601. height: math.unit(18, "meters"),
  35602. name: "Forepaw",
  35603. image: {
  35604. source: "./media/characters/raylldo/forepaw.svg"
  35605. }
  35606. },
  35607. hindpaw: {
  35608. height: math.unit(23, "meters"),
  35609. name: "Hindpaw",
  35610. image: {
  35611. source: "./media/characters/raylldo/hindpaw.svg"
  35612. }
  35613. },
  35614. genitals: {
  35615. height: math.unit(42, "meters"),
  35616. name: "Genitals",
  35617. image: {
  35618. source: "./media/characters/raylldo/genitals.svg"
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(47.2, "meters"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35632. {
  35633. anthroFront: {
  35634. height: math.unit(9, "feet"),
  35635. weight: math.unit(600, "lb"),
  35636. name: "Anthro (Front)",
  35637. image: {
  35638. source: "./media/characters/glint/anthro-front.svg",
  35639. extra: 1097/1018,
  35640. bottom: 28/1125
  35641. }
  35642. },
  35643. anthroBack: {
  35644. height: math.unit(9, "feet"),
  35645. weight: math.unit(600, "lb"),
  35646. name: "Anthro (Back)",
  35647. image: {
  35648. source: "./media/characters/glint/anthro-back.svg",
  35649. extra: 1154/997,
  35650. bottom: 36/1190
  35651. }
  35652. },
  35653. feral: {
  35654. height: math.unit(11, "feet"),
  35655. weight: math.unit(50000, "lb"),
  35656. name: "Feral",
  35657. image: {
  35658. source: "./media/characters/glint/feral.svg",
  35659. extra: 3035/1585,
  35660. bottom: 1169/4204
  35661. }
  35662. },
  35663. dickAnthro: {
  35664. height: math.unit(0.7, "meters"),
  35665. name: "Dick (Anthro)",
  35666. image: {
  35667. source: "./media/characters/glint/dick-anthro.svg"
  35668. }
  35669. },
  35670. dickFeral: {
  35671. height: math.unit(2.65, "meters"),
  35672. name: "Dick (Feral)",
  35673. image: {
  35674. source: "./media/characters/glint/dick-feral.svg"
  35675. }
  35676. },
  35677. slitHidden: {
  35678. height: math.unit(5.85, "meters"),
  35679. name: "Slit (Hidden)",
  35680. image: {
  35681. source: "./media/characters/glint/slit-hidden.svg"
  35682. }
  35683. },
  35684. slitErect: {
  35685. height: math.unit(5.85, "meters"),
  35686. name: "Slit (Erect)",
  35687. image: {
  35688. source: "./media/characters/glint/slit-erect.svg"
  35689. }
  35690. },
  35691. mawAnthro: {
  35692. height: math.unit(0.63, "meters"),
  35693. name: "Maw (Anthro)",
  35694. image: {
  35695. source: "./media/characters/glint/maw.svg"
  35696. }
  35697. },
  35698. mawFeral: {
  35699. height: math.unit(2.89, "meters"),
  35700. name: "Maw (Feral)",
  35701. image: {
  35702. source: "./media/characters/glint/maw.svg"
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(9, "feet"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35716. {
  35717. side: {
  35718. height: math.unit(15, "feet"),
  35719. weight: math.unit(5000, "kg"),
  35720. name: "Side",
  35721. image: {
  35722. source: "./media/characters/kairne/side.svg",
  35723. extra: 979/811,
  35724. bottom: 13/992
  35725. }
  35726. },
  35727. front: {
  35728. height: math.unit(15, "feet"),
  35729. weight: math.unit(5000, "kg"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/kairne/front.svg",
  35733. extra: 908/814,
  35734. bottom: 26/934
  35735. }
  35736. },
  35737. sideNsfw: {
  35738. height: math.unit(15, "feet"),
  35739. weight: math.unit(5000, "kg"),
  35740. name: "Side (NSFW)",
  35741. image: {
  35742. source: "./media/characters/kairne/side-nsfw.svg",
  35743. extra: 979/811,
  35744. bottom: 13/992
  35745. }
  35746. },
  35747. frontNsfw: {
  35748. height: math.unit(15, "feet"),
  35749. weight: math.unit(5000, "kg"),
  35750. name: "Front (NSFW)",
  35751. image: {
  35752. source: "./media/characters/kairne/front-nsfw.svg",
  35753. extra: 908/814,
  35754. bottom: 26/934
  35755. }
  35756. },
  35757. dickCaged: {
  35758. height: math.unit(0.65, "meters"),
  35759. name: "Dick-caged",
  35760. image: {
  35761. source: "./media/characters/kairne/dick-caged.svg"
  35762. }
  35763. },
  35764. dick: {
  35765. height: math.unit(0.79, "meters"),
  35766. name: "Dick",
  35767. image: {
  35768. source: "./media/characters/kairne/dick.svg"
  35769. }
  35770. },
  35771. genitals: {
  35772. height: math.unit(1.29, "meters"),
  35773. name: "Genitals",
  35774. image: {
  35775. source: "./media/characters/kairne/genitals.svg"
  35776. }
  35777. },
  35778. maw: {
  35779. height: math.unit(1.73, "meters"),
  35780. name: "Maw",
  35781. image: {
  35782. source: "./media/characters/kairne/maw.svg"
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Normal",
  35789. height: math.unit(15, "feet"),
  35790. default: true
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(5 + 8/12, "feet"),
  35799. weight: math.unit(139, "lb"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/biscuit-jackal/front.svg",
  35803. extra: 2106/1961,
  35804. bottom: 58/2164
  35805. }
  35806. },
  35807. back: {
  35808. height: math.unit(5 + 8/12, "feet"),
  35809. weight: math.unit(139, "lb"),
  35810. name: "Back",
  35811. image: {
  35812. source: "./media/characters/biscuit-jackal/back.svg",
  35813. extra: 2132/1976,
  35814. bottom: 57/2189
  35815. }
  35816. },
  35817. werejackal: {
  35818. height: math.unit(6 + 3/12, "feet"),
  35819. weight: math.unit(188, "lb"),
  35820. name: "Werejackal",
  35821. image: {
  35822. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35823. extra: 2373/2178,
  35824. bottom: 53/2426
  35825. }
  35826. },
  35827. },
  35828. [
  35829. {
  35830. name: "Normal",
  35831. height: math.unit(5 + 8/12, "feet"),
  35832. default: true
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35838. {
  35839. front: {
  35840. height: math.unit(140, "cm"),
  35841. weight: math.unit(45, "kg"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/tayra-white/front.svg",
  35845. extra: 2229/2192,
  35846. bottom: 75/2304
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(140, "cm"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(4 + 5/12, "feet"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/scoop/front.svg",
  35866. extra: 1257/1136,
  35867. bottom: 69/1326
  35868. }
  35869. },
  35870. back: {
  35871. height: math.unit(4 + 5/12, "feet"),
  35872. name: "Back",
  35873. image: {
  35874. source: "./media/characters/scoop/back.svg",
  35875. extra: 1321/1152,
  35876. bottom: 32/1353
  35877. }
  35878. },
  35879. maw: {
  35880. height: math.unit(0.68, "feet"),
  35881. name: "Maw",
  35882. image: {
  35883. source: "./media/characters/scoop/maw.svg"
  35884. }
  35885. },
  35886. },
  35887. [
  35888. {
  35889. name: "Really Small",
  35890. height: math.unit(1, "mm")
  35891. },
  35892. {
  35893. name: "Micro",
  35894. height: math.unit(1, "inch")
  35895. },
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(4 + 5/12, "feet"),
  35899. default: true
  35900. },
  35901. {
  35902. name: "Macro",
  35903. height: math.unit(200, "feet")
  35904. },
  35905. {
  35906. name: "Megamacro",
  35907. height: math.unit(3240, "feet")
  35908. },
  35909. {
  35910. name: "Teramacro",
  35911. height: math.unit(2500, "miles")
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(15 + 7/12, "feet"),
  35920. weight: math.unit(1150, "tons"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/saphinara/front.svg",
  35924. extra: 1837/1643,
  35925. bottom: 84/1921
  35926. },
  35927. form: "normal",
  35928. default: true
  35929. },
  35930. side: {
  35931. height: math.unit(15 + 7/12, "feet"),
  35932. weight: math.unit(1150, "tons"),
  35933. name: "Side",
  35934. image: {
  35935. source: "./media/characters/saphinara/side.svg",
  35936. extra: 605/547,
  35937. bottom: 6/611
  35938. },
  35939. form: "normal"
  35940. },
  35941. back: {
  35942. height: math.unit(15 + 7/12, "feet"),
  35943. weight: math.unit(1150, "tons"),
  35944. name: "Back",
  35945. image: {
  35946. source: "./media/characters/saphinara/back.svg",
  35947. extra: 591/531,
  35948. bottom: 13/604
  35949. },
  35950. form: "normal"
  35951. },
  35952. frontTail: {
  35953. height: math.unit(15 + 7/12, "feet"),
  35954. weight: math.unit(1150, "tons"),
  35955. name: "Front (Full Tail)",
  35956. image: {
  35957. source: "./media/characters/saphinara/front-tail.svg",
  35958. extra: 2256/1630,
  35959. bottom: 261/2517
  35960. },
  35961. form: "normal"
  35962. },
  35963. insides: {
  35964. height: math.unit(11.92, "feet"),
  35965. name: "Insides",
  35966. image: {
  35967. source: "./media/characters/saphinara/insides.svg"
  35968. },
  35969. form: "normal"
  35970. },
  35971. head: {
  35972. height: math.unit(4.17, "feet"),
  35973. name: "Head",
  35974. image: {
  35975. source: "./media/characters/saphinara/head.svg"
  35976. },
  35977. form: "normal"
  35978. },
  35979. tongue: {
  35980. height: math.unit(4.60, "feet"),
  35981. name: "Tongue",
  35982. image: {
  35983. source: "./media/characters/saphinara/tongue.svg"
  35984. },
  35985. form: "normal"
  35986. },
  35987. headEnraged: {
  35988. height: math.unit(5.55, "feet"),
  35989. name: "Head (Enraged)",
  35990. image: {
  35991. source: "./media/characters/saphinara/head-enraged.svg"
  35992. },
  35993. form: "normal"
  35994. },
  35995. wings: {
  35996. height: math.unit(11.95, "feet"),
  35997. name: "Wings",
  35998. image: {
  35999. source: "./media/characters/saphinara/wings.svg"
  36000. },
  36001. form: "normal"
  36002. },
  36003. feathers: {
  36004. height: math.unit(8.92, "feet"),
  36005. name: "Feathers",
  36006. image: {
  36007. source: "./media/characters/saphinara/feathers.svg"
  36008. },
  36009. form: "normal"
  36010. },
  36011. shackles: {
  36012. height: math.unit(2, "feet"),
  36013. name: "Shackles",
  36014. image: {
  36015. source: "./media/characters/saphinara/shackles.svg"
  36016. },
  36017. form: "normal"
  36018. },
  36019. eyes: {
  36020. height: math.unit(1.331, "feet"),
  36021. name: "Eyes",
  36022. image: {
  36023. source: "./media/characters/saphinara/eyes.svg"
  36024. },
  36025. form: "normal"
  36026. },
  36027. eyesEnraged: {
  36028. height: math.unit(1.331, "feet"),
  36029. name: "Eyes (Enraged)",
  36030. image: {
  36031. source: "./media/characters/saphinara/eyes-enraged.svg"
  36032. },
  36033. form: "normal"
  36034. },
  36035. trueFormSide: {
  36036. height: math.unit(200, "feet"),
  36037. weight: math.unit(1e7, "tons"),
  36038. name: "Side",
  36039. image: {
  36040. source: "./media/characters/saphinara/true-form-side.svg",
  36041. extra: 1399/770,
  36042. bottom: 97/1496
  36043. },
  36044. form: "true-form",
  36045. default: true
  36046. },
  36047. trueFormMaw: {
  36048. height: math.unit(71.5, "feet"),
  36049. name: "Maw",
  36050. image: {
  36051. source: "./media/characters/saphinara/true-form-maw.svg",
  36052. extra: 2302/1453,
  36053. bottom: 0/2302
  36054. },
  36055. form: "true-form"
  36056. },
  36057. meowberusSide: {
  36058. height: math.unit(75, "feet"),
  36059. weight: math.unit(180000, "kg"),
  36060. preyCapacity: math.unit(50000, "people"),
  36061. name: "Side",
  36062. image: {
  36063. source: "./media/characters/saphinara/meowberus-side.svg",
  36064. extra: 1400/711,
  36065. bottom: 126/1526
  36066. },
  36067. form: "meowberus",
  36068. extraAttributes: {
  36069. "pawArea": {
  36070. name: "Paw Size",
  36071. power: 2,
  36072. type: "area",
  36073. base: math.unit(35, "m^2")
  36074. }
  36075. }
  36076. },
  36077. },
  36078. [
  36079. {
  36080. name: "Normal",
  36081. height: math.unit(15 + 7/12, "feet"),
  36082. default: true,
  36083. form: "normal"
  36084. },
  36085. {
  36086. name: "Angry",
  36087. height: math.unit(30 + 6/12, "feet"),
  36088. form: "normal"
  36089. },
  36090. {
  36091. name: "Enraged",
  36092. height: math.unit(102 + 1/12, "feet"),
  36093. form: "normal"
  36094. },
  36095. {
  36096. name: "True",
  36097. height: math.unit(200, "feet"),
  36098. default: true,
  36099. form: "true-form"
  36100. },
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(75, "feet"),
  36104. default: true,
  36105. form: "meowberus"
  36106. },
  36107. ],
  36108. {
  36109. "normal": {
  36110. name: "Normal",
  36111. default: true
  36112. },
  36113. "true-form": {
  36114. name: "True Form"
  36115. },
  36116. "meowberus": {
  36117. name: "Meowberus",
  36118. },
  36119. }
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36123. {
  36124. front: {
  36125. height: math.unit(6 + 8/12, "feet"),
  36126. weight: math.unit(300, "lb"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/jrain/front.svg",
  36130. extra: 3039/2865,
  36131. bottom: 399/3438
  36132. }
  36133. },
  36134. back: {
  36135. height: math.unit(6 + 8/12, "feet"),
  36136. weight: math.unit(300, "lb"),
  36137. name: "Back",
  36138. image: {
  36139. source: "./media/characters/jrain/back.svg",
  36140. extra: 3089/2938,
  36141. bottom: 172/3261
  36142. }
  36143. },
  36144. head: {
  36145. height: math.unit(2.14, "feet"),
  36146. name: "Head",
  36147. image: {
  36148. source: "./media/characters/jrain/head.svg"
  36149. }
  36150. },
  36151. maw: {
  36152. height: math.unit(1.77, "feet"),
  36153. name: "Maw",
  36154. image: {
  36155. source: "./media/characters/jrain/maw.svg"
  36156. }
  36157. },
  36158. leftHand: {
  36159. height: math.unit(1.1, "feet"),
  36160. name: "Left Hand",
  36161. image: {
  36162. source: "./media/characters/jrain/left-hand.svg"
  36163. }
  36164. },
  36165. rightHand: {
  36166. height: math.unit(1.1, "feet"),
  36167. name: "Right Hand",
  36168. image: {
  36169. source: "./media/characters/jrain/right-hand.svg"
  36170. }
  36171. },
  36172. eye: {
  36173. height: math.unit(0.35, "feet"),
  36174. name: "Eye",
  36175. image: {
  36176. source: "./media/characters/jrain/eye.svg"
  36177. }
  36178. },
  36179. },
  36180. [
  36181. {
  36182. name: "Normal",
  36183. height: math.unit(6 + 8/12, "feet"),
  36184. default: true
  36185. },
  36186. {
  36187. name: "Casually Large",
  36188. height: math.unit(25, "feet")
  36189. },
  36190. {
  36191. name: "Giant",
  36192. height: math.unit(100, "feet")
  36193. },
  36194. {
  36195. name: "Kaiju",
  36196. height: math.unit(300, "feet")
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36202. {
  36203. dragon: {
  36204. height: math.unit(5, "meters"),
  36205. name: "Dragon",
  36206. image: {
  36207. source: "./media/characters/sabrina/dragon.svg",
  36208. extra: 3670 / 2365,
  36209. bottom: 333 / 4003
  36210. }
  36211. },
  36212. gryphon: {
  36213. height: math.unit(3, "meters"),
  36214. name: "Gryphon",
  36215. image: {
  36216. source: "./media/characters/sabrina/gryphon.svg",
  36217. extra: 1576 / 945,
  36218. bottom: 71 / 1647
  36219. }
  36220. },
  36221. snake: {
  36222. height: math.unit(12, "meters"),
  36223. name: "Snake",
  36224. image: {
  36225. source: "./media/characters/sabrina/snake.svg",
  36226. extra: 1758 / 1320,
  36227. bottom: 186 / 1944
  36228. }
  36229. },
  36230. collar: {
  36231. height: math.unit(1.86, "meters"),
  36232. name: "Collar",
  36233. image: {
  36234. source: "./media/characters/sabrina/collar.svg"
  36235. }
  36236. },
  36237. eye: {
  36238. height: math.unit(0.53, "meters"),
  36239. name: "Eye",
  36240. image: {
  36241. source: "./media/characters/sabrina/eye.svg"
  36242. }
  36243. },
  36244. foot: {
  36245. height: math.unit(1.86, "meters"),
  36246. name: "Foot",
  36247. image: {
  36248. source: "./media/characters/sabrina/foot.svg"
  36249. }
  36250. },
  36251. hand: {
  36252. height: math.unit(1.32, "meters"),
  36253. name: "Hand",
  36254. image: {
  36255. source: "./media/characters/sabrina/hand.svg"
  36256. }
  36257. },
  36258. head: {
  36259. height: math.unit(2.44, "meters"),
  36260. name: "Head",
  36261. image: {
  36262. source: "./media/characters/sabrina/head.svg"
  36263. }
  36264. },
  36265. headAngry: {
  36266. height: math.unit(2.44, "meters"),
  36267. name: "Head (Angry))",
  36268. image: {
  36269. source: "./media/characters/sabrina/head-angry.svg"
  36270. }
  36271. },
  36272. maw: {
  36273. height: math.unit(1.65, "meters"),
  36274. name: "Maw",
  36275. image: {
  36276. source: "./media/characters/sabrina/maw.svg"
  36277. }
  36278. },
  36279. spikes: {
  36280. height: math.unit(1.69, "meters"),
  36281. name: "Spikes",
  36282. image: {
  36283. source: "./media/characters/sabrina/spikes.svg"
  36284. }
  36285. },
  36286. stomach: {
  36287. height: math.unit(1.15, "meters"),
  36288. name: "Stomach",
  36289. image: {
  36290. source: "./media/characters/sabrina/stomach.svg"
  36291. }
  36292. },
  36293. tongue: {
  36294. height: math.unit(1.27, "meters"),
  36295. name: "Tongue",
  36296. image: {
  36297. source: "./media/characters/sabrina/tongue.svg"
  36298. }
  36299. },
  36300. wingDorsal: {
  36301. height: math.unit(4.85, "meters"),
  36302. name: "Wing (Dorsal)",
  36303. image: {
  36304. source: "./media/characters/sabrina/wing-dorsal.svg"
  36305. }
  36306. },
  36307. wingVentral: {
  36308. height: math.unit(4.85, "meters"),
  36309. name: "Wing (Ventral)",
  36310. image: {
  36311. source: "./media/characters/sabrina/wing-ventral.svg"
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(5, "meters"),
  36319. default: true
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36325. {
  36326. frontMaid: {
  36327. height: math.unit(5 + 5/12, "feet"),
  36328. weight: math.unit(130, "lb"),
  36329. name: "Front (Maid)",
  36330. image: {
  36331. source: "./media/characters/midnight-tales/front-maid.svg",
  36332. extra: 489/454,
  36333. bottom: 61/550
  36334. }
  36335. },
  36336. frontFormal: {
  36337. height: math.unit(5 + 5/12, "feet"),
  36338. weight: math.unit(130, "lb"),
  36339. name: "Front (Formal)",
  36340. image: {
  36341. source: "./media/characters/midnight-tales/front-formal.svg",
  36342. extra: 489/454,
  36343. bottom: 61/550
  36344. }
  36345. },
  36346. back: {
  36347. height: math.unit(5 + 5/12, "feet"),
  36348. weight: math.unit(130, "lb"),
  36349. name: "Back",
  36350. image: {
  36351. source: "./media/characters/midnight-tales/back.svg",
  36352. extra: 498/456,
  36353. bottom: 33/531
  36354. }
  36355. },
  36356. frontBeast: {
  36357. height: math.unit(40, "feet"),
  36358. weight: math.unit(64000, "lb"),
  36359. name: "Front (Beast)",
  36360. image: {
  36361. source: "./media/characters/midnight-tales/front-beast.svg",
  36362. extra: 927/860,
  36363. bottom: 53/980
  36364. }
  36365. },
  36366. backBeast: {
  36367. height: math.unit(40, "feet"),
  36368. weight: math.unit(64000, "lb"),
  36369. name: "Back (Beast)",
  36370. image: {
  36371. source: "./media/characters/midnight-tales/back-beast.svg",
  36372. extra: 929/855,
  36373. bottom: 16/945
  36374. }
  36375. },
  36376. footBeast: {
  36377. height: math.unit(6.7, "feet"),
  36378. name: "Foot (Beast)",
  36379. image: {
  36380. source: "./media/characters/midnight-tales/foot-beast.svg"
  36381. }
  36382. },
  36383. headBeast: {
  36384. height: math.unit(8, "feet"),
  36385. name: "Head (Beast)",
  36386. image: {
  36387. source: "./media/characters/midnight-tales/head-beast.svg"
  36388. }
  36389. },
  36390. },
  36391. [
  36392. {
  36393. name: "Normal",
  36394. height: math.unit(5 + 5 / 12, "feet"),
  36395. default: true
  36396. },
  36397. {
  36398. name: "Macro",
  36399. height: math.unit(25, "feet")
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(5 + 10/12, "feet"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/argon/front.svg",
  36411. extra: 2009/1935,
  36412. bottom: 118/2127
  36413. }
  36414. },
  36415. back: {
  36416. height: math.unit(5 + 10/12, "feet"),
  36417. name: "Back",
  36418. image: {
  36419. source: "./media/characters/argon/back.svg",
  36420. extra: 2047/1992,
  36421. bottom: 20/2067
  36422. }
  36423. },
  36424. frontDressed: {
  36425. height: math.unit(5 + 10/12, "feet"),
  36426. name: "Front (Dressed)",
  36427. image: {
  36428. source: "./media/characters/argon/front-dressed.svg",
  36429. extra: 2009/1935,
  36430. bottom: 118/2127
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(5 + 10/12, "feet"),
  36438. default: true
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(8 + 6/12, "feet"),
  36447. weight: math.unit(1150, "lb"),
  36448. name: "Front",
  36449. image: {
  36450. source: "./media/characters/kichi/front.svg",
  36451. extra: 1267/1164,
  36452. bottom: 61/1328
  36453. }
  36454. },
  36455. back: {
  36456. height: math.unit(8 + 6/12, "feet"),
  36457. weight: math.unit(1150, "lb"),
  36458. name: "Back",
  36459. image: {
  36460. source: "./media/characters/kichi/back.svg",
  36461. extra: 1273/1166,
  36462. bottom: 33/1306
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(8 + 6/12, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(6, "feet"),
  36479. weight: math.unit(210, "lb"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/manetel-greyscale/front.svg",
  36483. extra: 350/312,
  36484. bottom: 8/358
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Micro",
  36491. height: math.unit(2, "inches")
  36492. },
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(6, "feet"),
  36496. default: true
  36497. },
  36498. {
  36499. name: "Minimacro",
  36500. height: math.unit(17, "feet")
  36501. },
  36502. {
  36503. name: "Macro",
  36504. height: math.unit(117, "feet")
  36505. },
  36506. ]
  36507. ))
  36508. characterMakers.push(() => makeCharacter(
  36509. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36510. {
  36511. side: {
  36512. height: math.unit(5 + 1/12, "feet"),
  36513. weight: math.unit(418, "lb"),
  36514. name: "Side",
  36515. image: {
  36516. source: "./media/characters/softpurr/side.svg",
  36517. extra: 1993/1945,
  36518. bottom: 134/2127
  36519. }
  36520. },
  36521. front: {
  36522. height: math.unit(5 + 1/12, "feet"),
  36523. weight: math.unit(418, "lb"),
  36524. name: "Front",
  36525. image: {
  36526. source: "./media/characters/softpurr/front.svg",
  36527. extra: 1950/1856,
  36528. bottom: 174/2124
  36529. }
  36530. },
  36531. paw: {
  36532. height: math.unit(1, "feet"),
  36533. name: "Paw",
  36534. image: {
  36535. source: "./media/characters/softpurr/paw.svg"
  36536. }
  36537. },
  36538. },
  36539. [
  36540. {
  36541. name: "Normal",
  36542. height: math.unit(5 + 1/12, "feet"),
  36543. default: true
  36544. },
  36545. ]
  36546. ))
  36547. characterMakers.push(() => makeCharacter(
  36548. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36549. {
  36550. front: {
  36551. height: math.unit(260, "meters"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/anahita/front.svg",
  36555. extra: 665/635,
  36556. bottom: 89/754
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Macro",
  36563. height: math.unit(260, "meters"),
  36564. default: true
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(4 + 10/12, "feet"),
  36573. weight: math.unit(160, "lb"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/chip-mouse/front.svg",
  36577. extra: 3528/3408,
  36578. bottom: 0/3528
  36579. }
  36580. },
  36581. frontNsfw: {
  36582. height: math.unit(4 + 10/12, "feet"),
  36583. weight: math.unit(160, "lb"),
  36584. name: "Front (NSFW)",
  36585. image: {
  36586. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36587. extra: 3528/3408,
  36588. bottom: 0/3528
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(4 + 10/12, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36602. {
  36603. side: {
  36604. height: math.unit(10, "feet"),
  36605. weight: math.unit(14000, "lb"),
  36606. name: "Side",
  36607. image: {
  36608. source: "./media/characters/kremm/side.svg",
  36609. extra: 1390/1053,
  36610. bottom: 90/1480
  36611. }
  36612. },
  36613. gut: {
  36614. height: math.unit(5.8, "feet"),
  36615. name: "Gut",
  36616. image: {
  36617. source: "./media/characters/kremm/gut.svg"
  36618. }
  36619. },
  36620. ass: {
  36621. height: math.unit(6.1, "feet"),
  36622. name: "Ass",
  36623. image: {
  36624. source: "./media/characters/kremm/ass.svg"
  36625. }
  36626. },
  36627. jaws: {
  36628. height: math.unit(2.2, "feet"),
  36629. name: "Jaws",
  36630. image: {
  36631. source: "./media/characters/kremm/jaws.svg"
  36632. }
  36633. },
  36634. dick: {
  36635. height: math.unit(4.26, "feet"),
  36636. name: "Dick",
  36637. image: {
  36638. source: "./media/characters/kremm/dick.svg"
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(10, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(30, "stories"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/kai/front.svg",
  36658. extra: 1892/1718,
  36659. bottom: 162/2054
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Macro",
  36666. height: math.unit(30, "stories"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(6 + 4/12, "feet"),
  36676. weight: math.unit(145, "lb"),
  36677. name: "Front",
  36678. image: {
  36679. source: "./media/characters/sykes/front.svg",
  36680. extra: 1321 / 1187,
  36681. bottom: 66 / 1387
  36682. }
  36683. },
  36684. back: {
  36685. height: math.unit(6 + 4/12, "feet"),
  36686. weight: math.unit(145, "lb"),
  36687. name: "Back",
  36688. image: {
  36689. source: "./media/characters/sykes/back.svg",
  36690. extra: 1326/1181,
  36691. bottom: 31/1357
  36692. }
  36693. },
  36694. traditionalOutfit: {
  36695. height: math.unit(6 + 4/12, "feet"),
  36696. weight: math.unit(145, "lb"),
  36697. name: "Traditional Outfit",
  36698. image: {
  36699. source: "./media/characters/sykes/traditional-outfit.svg",
  36700. extra: 1321 / 1187,
  36701. bottom: 66 / 1387
  36702. }
  36703. },
  36704. adventureOutfit: {
  36705. height: math.unit(6 + 4/12, "feet"),
  36706. weight: math.unit(145, "lb"),
  36707. name: "Adventure Outfit",
  36708. image: {
  36709. source: "./media/characters/sykes/adventure-outfit.svg",
  36710. extra: 1321 / 1187,
  36711. bottom: 66 / 1387
  36712. }
  36713. },
  36714. handLeft: {
  36715. height: math.unit(0.9, "feet"),
  36716. name: "Hand (Left)",
  36717. image: {
  36718. source: "./media/characters/sykes/hand-left.svg"
  36719. }
  36720. },
  36721. handRight: {
  36722. height: math.unit(0.839, "feet"),
  36723. name: "Hand (Right)",
  36724. image: {
  36725. source: "./media/characters/sykes/hand-right.svg"
  36726. }
  36727. },
  36728. leftFoot: {
  36729. height: math.unit(1.2, "feet"),
  36730. name: "Foot (Left)",
  36731. image: {
  36732. source: "./media/characters/sykes/foot-left.svg"
  36733. }
  36734. },
  36735. rightFoot: {
  36736. height: math.unit(1.2, "feet"),
  36737. name: "Foot (Right)",
  36738. image: {
  36739. source: "./media/characters/sykes/foot-right.svg"
  36740. }
  36741. },
  36742. maw: {
  36743. height: math.unit(1.93, "feet"),
  36744. name: "Maw",
  36745. image: {
  36746. source: "./media/characters/sykes/maw.svg"
  36747. }
  36748. },
  36749. teeth: {
  36750. height: math.unit(0.51, "feet"),
  36751. name: "Teeth",
  36752. image: {
  36753. source: "./media/characters/sykes/teeth.svg"
  36754. }
  36755. },
  36756. tongue: {
  36757. height: math.unit(2.13, "feet"),
  36758. name: "Tongue",
  36759. image: {
  36760. source: "./media/characters/sykes/tongue.svg"
  36761. }
  36762. },
  36763. uvula: {
  36764. height: math.unit(0.16, "feet"),
  36765. name: "Uvula",
  36766. image: {
  36767. source: "./media/characters/sykes/uvula.svg"
  36768. }
  36769. },
  36770. collar: {
  36771. height: math.unit(0.287, "feet"),
  36772. name: "Collar",
  36773. image: {
  36774. source: "./media/characters/sykes/collar.svg"
  36775. }
  36776. },
  36777. tail: {
  36778. height: math.unit(3.8, "feet"),
  36779. name: "Tail",
  36780. image: {
  36781. source: "./media/characters/sykes/tail.svg"
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Shrunken",
  36788. height: math.unit(5, "inches")
  36789. },
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(6 + 4 / 12, "feet"),
  36793. default: true
  36794. },
  36795. {
  36796. name: "Big",
  36797. height: math.unit(15, "feet")
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(5 + 8/12, "feet"),
  36806. weight: math.unit(190, "lb"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/oven-otter/front.svg",
  36810. extra: 1809/1740,
  36811. bottom: 181/1990
  36812. }
  36813. },
  36814. back: {
  36815. height: math.unit(5 + 8/12, "feet"),
  36816. weight: math.unit(190, "lb"),
  36817. name: "Back",
  36818. image: {
  36819. source: "./media/characters/oven-otter/back.svg",
  36820. extra: 1709/1635,
  36821. bottom: 118/1827
  36822. }
  36823. },
  36824. hand: {
  36825. height: math.unit(1.07, "feet"),
  36826. name: "Hand",
  36827. image: {
  36828. source: "./media/characters/oven-otter/hand.svg"
  36829. }
  36830. },
  36831. beans: {
  36832. height: math.unit(1.74, "feet"),
  36833. name: "Beans",
  36834. image: {
  36835. source: "./media/characters/oven-otter/beans.svg"
  36836. }
  36837. },
  36838. },
  36839. [
  36840. {
  36841. name: "Micro",
  36842. height: math.unit(0.5, "inches")
  36843. },
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(5 + 8/12, "feet"),
  36847. default: true
  36848. },
  36849. {
  36850. name: "Macro",
  36851. height: math.unit(250, "feet")
  36852. },
  36853. {
  36854. name: "Really High",
  36855. height: math.unit(420, "feet")
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(5, "meters"),
  36864. weight: math.unit(292000000000000, "kg"),
  36865. name: "Front",
  36866. image: {
  36867. source: "./media/characters/devourer/front.svg",
  36868. extra: 1800/1733,
  36869. bottom: 211/2011
  36870. }
  36871. },
  36872. maw: {
  36873. height: math.unit(1.1, "meter"),
  36874. name: "Maw",
  36875. image: {
  36876. source: "./media/characters/devourer/maw.svg"
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Small",
  36883. height: math.unit(3, "meters")
  36884. },
  36885. {
  36886. name: "Large",
  36887. height: math.unit(5, "meters"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36894. {
  36895. front: {
  36896. height: math.unit(6, "feet"),
  36897. weight: math.unit(400, "lb"),
  36898. name: "Front",
  36899. image: {
  36900. source: "./media/characters/ellarby/front.svg",
  36901. extra: 1909/1763,
  36902. bottom: 80/1989
  36903. }
  36904. },
  36905. back: {
  36906. height: math.unit(6, "feet"),
  36907. weight: math.unit(400, "lb"),
  36908. name: "Back",
  36909. image: {
  36910. source: "./media/characters/ellarby/back.svg",
  36911. extra: 1914/1784,
  36912. bottom: 172/2086
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Mischief",
  36919. height: math.unit(18, "inches")
  36920. },
  36921. {
  36922. name: "Trouble",
  36923. height: math.unit(12, "feet")
  36924. },
  36925. {
  36926. name: "Havoc",
  36927. height: math.unit(200, "feet"),
  36928. default: true
  36929. },
  36930. {
  36931. name: "Pandemonium",
  36932. height: math.unit(1, "mile")
  36933. },
  36934. {
  36935. name: "Catastrophe",
  36936. height: math.unit(100, "miles")
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36942. {
  36943. front: {
  36944. height: math.unit(4.7, "meters"),
  36945. weight: math.unit(6500, "kg"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/vex/front.svg",
  36949. extra: 1288/1140,
  36950. bottom: 100/1388
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(4.7, "meters"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36964. {
  36965. normal: {
  36966. height: math.unit(6, "feet"),
  36967. weight: math.unit(350, "lb"),
  36968. name: "Normal",
  36969. image: {
  36970. source: "./media/characters/teshy/normal.svg",
  36971. extra: 1795/1735,
  36972. bottom: 16/1811
  36973. }
  36974. },
  36975. monsterFront: {
  36976. height: math.unit(12, "feet"),
  36977. weight: math.unit(4700, "lb"),
  36978. name: "Monster (Front)",
  36979. image: {
  36980. source: "./media/characters/teshy/monster-front.svg",
  36981. extra: 2042/2034,
  36982. bottom: 128/2170
  36983. }
  36984. },
  36985. monsterSide: {
  36986. height: math.unit(12, "feet"),
  36987. weight: math.unit(4700, "lb"),
  36988. name: "Monster (Side)",
  36989. image: {
  36990. source: "./media/characters/teshy/monster-side.svg",
  36991. extra: 2067/2056,
  36992. bottom: 70/2137
  36993. }
  36994. },
  36995. monsterBack: {
  36996. height: math.unit(12, "feet"),
  36997. weight: math.unit(4700, "lb"),
  36998. name: "Monster (Back)",
  36999. image: {
  37000. source: "./media/characters/teshy/monster-back.svg",
  37001. extra: 1921/1914,
  37002. bottom: 171/2092
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(6, "feet"),
  37010. default: true
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(6, "feet"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/ramey/front.svg",
  37022. extra: 790/787,
  37023. bottom: 27/817
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(6, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(5 + 5/12, "feet"),
  37040. weight: math.unit(120, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/phirae/front.svg",
  37044. extra: 2491/2436,
  37045. bottom: 38/2529
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(5 + 5/12, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37059. {
  37060. front: {
  37061. height: math.unit(5 + 3/12, "feet"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/stagglas/front.svg",
  37065. extra: 962/882,
  37066. bottom: 53/1015
  37067. }
  37068. },
  37069. feral: {
  37070. height: math.unit(335, "cm"),
  37071. name: "Feral",
  37072. image: {
  37073. source: "./media/characters/stagglas/feral.svg",
  37074. extra: 1732/1090,
  37075. bottom: 48/1780
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(5 + 3/12, "feet"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(5 + 4/12, "feet"),
  37092. weight: math.unit(145, "lb"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/starra/front.svg",
  37096. extra: 1790/1691,
  37097. bottom: 91/1881
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(5 + 4/12, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(3.5, "meters"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37117. extra: 1248/972,
  37118. bottom: 38/1286
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(3.5, "meters"),
  37126. default: true
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37132. {
  37133. side: {
  37134. height: math.unit(8 + 2/12, "feet"),
  37135. weight: math.unit(1240, "lb"),
  37136. name: "Side",
  37137. image: {
  37138. source: "./media/characters/mika-valentine/side.svg",
  37139. extra: 2670/2501,
  37140. bottom: 250/2920
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(8 + 2/12, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(7 + 2/12, "feet"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/xoltol/front.svg",
  37160. extra: 2212/2124,
  37161. bottom: 84/2296
  37162. }
  37163. },
  37164. side: {
  37165. height: math.unit(7 + 2/12, "feet"),
  37166. name: "Side",
  37167. image: {
  37168. source: "./media/characters/xoltol/side.svg",
  37169. extra: 2273/2197,
  37170. bottom: 26/2299
  37171. }
  37172. },
  37173. hand: {
  37174. height: math.unit(2.5, "feet"),
  37175. name: "Hand",
  37176. image: {
  37177. source: "./media/characters/xoltol/hand.svg"
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Small-ish",
  37184. height: math.unit(5 + 11/12, "feet")
  37185. },
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(7 + 2/12, "feet")
  37189. },
  37190. {
  37191. name: "\"Macro\"",
  37192. height: math.unit(14 + 9/12, "feet"),
  37193. default: true
  37194. },
  37195. {
  37196. name: "Alternate Height",
  37197. height: math.unit(20, "feet")
  37198. },
  37199. {
  37200. name: "Actually Macro",
  37201. height: math.unit(100, "feet")
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(5 + 2/12, "feet"),
  37210. weight: math.unit(75, "kg"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/kotetsu-redwood/front.svg",
  37214. extra: 1053/942,
  37215. bottom: 60/1113
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(5 + 2/12, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(2.4, "meters"),
  37232. weight: math.unit(125, "kg"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/lilith/front.svg",
  37236. extra: 1590/1513,
  37237. bottom: 203/1793
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Humanoid",
  37244. height: math.unit(2.4, "meters")
  37245. },
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(6, "meters"),
  37249. default: true
  37250. },
  37251. {
  37252. name: "Largest",
  37253. height: math.unit(55, "meters")
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(8 + 4/12, "feet"),
  37262. weight: math.unit(535, "lb"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/beh'kah-bolger/front.svg",
  37266. extra: 1660/1603,
  37267. bottom: 37/1697
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(8 + 4/12, "feet"),
  37275. default: true
  37276. },
  37277. {
  37278. name: "Kaiju",
  37279. height: math.unit(250, "feet")
  37280. },
  37281. {
  37282. name: "Still Growing",
  37283. height: math.unit(10, "miles")
  37284. },
  37285. {
  37286. name: "Continental",
  37287. height: math.unit(5000, "miles")
  37288. },
  37289. {
  37290. name: "Final Form",
  37291. height: math.unit(2500000, "miles")
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(7 + 2/12, "feet"),
  37300. weight: math.unit(230, "kg"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/tatyana-milewska/front.svg",
  37304. extra: 1199/1150,
  37305. bottom: 86/1285
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(7 + 2/12, "feet"),
  37313. default: true
  37314. },
  37315. {
  37316. name: "Big",
  37317. height: math.unit(12, "feet")
  37318. },
  37319. {
  37320. name: "Minimacro",
  37321. height: math.unit(20, "feet")
  37322. },
  37323. {
  37324. name: "Macro",
  37325. height: math.unit(120, "feet")
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(7 + 8/12, "feet"),
  37334. weight: math.unit(152, "kg"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/helen-arri/front.svg",
  37338. extra: 440/423,
  37339. bottom: 14/454
  37340. }
  37341. },
  37342. back: {
  37343. height: math.unit(7 + 8/12, "feet"),
  37344. weight: math.unit(152, "kg"),
  37345. name: "Back",
  37346. image: {
  37347. source: "./media/characters/helen-arri/back.svg",
  37348. extra: 443/426,
  37349. bottom: 8/451
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(7 + 8/12, "feet"),
  37357. default: true
  37358. },
  37359. {
  37360. name: "Big",
  37361. height: math.unit(14, "feet")
  37362. },
  37363. {
  37364. name: "Minimacro",
  37365. height: math.unit(24, "feet")
  37366. },
  37367. {
  37368. name: "Macro",
  37369. height: math.unit(140, "feet")
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(6, "meters"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/ehanu-rehu/front.svg",
  37381. extra: 1800/1800,
  37382. bottom: 59/1859
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(6, "meters"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(7 + 3/12, "feet"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/renholder/front.svg",
  37402. extra: 3096/2960,
  37403. bottom: 250/3346
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal Bat",
  37410. height: math.unit(7 + 3/12, "feet"),
  37411. default: true
  37412. },
  37413. {
  37414. name: "Slightly Tall Bat",
  37415. height: math.unit(100, "feet")
  37416. },
  37417. {
  37418. name: "Big Bat",
  37419. height: math.unit(1000, "feet")
  37420. },
  37421. {
  37422. name: "City-Sized Bat",
  37423. height: math.unit(200000, "feet")
  37424. },
  37425. {
  37426. name: "Bigger Bat",
  37427. height: math.unit(10000, "miles")
  37428. },
  37429. {
  37430. name: "Solar Sized Bat",
  37431. height: math.unit(100, "AU")
  37432. },
  37433. {
  37434. name: "Galactic Bat",
  37435. height: math.unit(200000, "lightyears")
  37436. },
  37437. {
  37438. name: "Universally Known Bat",
  37439. height: math.unit(1, "universe")
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37445. {
  37446. front: {
  37447. height: math.unit(6 + 11/12, "feet"),
  37448. weight: math.unit(250, "lb"),
  37449. name: "Front",
  37450. image: {
  37451. source: "./media/characters/cookiecat/front.svg",
  37452. extra: 893/827,
  37453. bottom: 14/907
  37454. }
  37455. },
  37456. },
  37457. [
  37458. {
  37459. name: "Micro",
  37460. height: math.unit(3, "inches")
  37461. },
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(6 + 11/12, "feet"),
  37465. default: true
  37466. },
  37467. {
  37468. name: "Macro",
  37469. height: math.unit(100, "feet")
  37470. },
  37471. {
  37472. name: "Macro+",
  37473. height: math.unit(404, "feet")
  37474. },
  37475. {
  37476. name: "Megamacro",
  37477. height: math.unit(165, "miles")
  37478. },
  37479. {
  37480. name: "Planetary",
  37481. height: math.unit(4600, "miles")
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(10 + 3/12, "feet"),
  37490. weight: math.unit(1500, "lb"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/tux-kusanagi/front.svg",
  37494. extra: 944/840,
  37495. bottom: 39/983
  37496. }
  37497. },
  37498. back: {
  37499. height: math.unit(10 + 3/12, "feet"),
  37500. weight: math.unit(1500, "lb"),
  37501. name: "Back",
  37502. image: {
  37503. source: "./media/characters/tux-kusanagi/back.svg",
  37504. extra: 941/842,
  37505. bottom: 28/969
  37506. }
  37507. },
  37508. rump: {
  37509. height: math.unit(5.25, "feet"),
  37510. name: "Rump",
  37511. image: {
  37512. source: "./media/characters/tux-kusanagi/rump.svg"
  37513. }
  37514. },
  37515. beak: {
  37516. height: math.unit(1.54, "feet"),
  37517. name: "Beak",
  37518. image: {
  37519. source: "./media/characters/tux-kusanagi/beak.svg"
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(10 + 3/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(58, "feet"),
  37536. weight: math.unit(200, "tons"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/uzarmazari/front.svg",
  37540. extra: 1575/1455,
  37541. bottom: 152/1727
  37542. }
  37543. },
  37544. back: {
  37545. height: math.unit(58, "feet"),
  37546. weight: math.unit(200, "tons"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/uzarmazari/back.svg",
  37550. extra: 1585/1510,
  37551. bottom: 157/1742
  37552. }
  37553. },
  37554. head: {
  37555. height: math.unit(26, "feet"),
  37556. name: "Head",
  37557. image: {
  37558. source: "./media/characters/uzarmazari/head.svg"
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(58, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37572. {
  37573. side: {
  37574. height: math.unit(15, "feet"),
  37575. name: "Side",
  37576. image: {
  37577. source: "./media/characters/akitu/side.svg",
  37578. extra: 1421/1321,
  37579. bottom: 157/1578
  37580. }
  37581. },
  37582. front: {
  37583. height: math.unit(15, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/akitu/front.svg",
  37587. extra: 1435/1326,
  37588. bottom: 232/1667
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(15, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(10 + 8/12, "feet"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/azalie-croixland/front.svg",
  37608. extra: 1972/1856,
  37609. bottom: 31/2003
  37610. }
  37611. },
  37612. },
  37613. [
  37614. {
  37615. name: "Original Height",
  37616. height: math.unit(5 + 4/12, "feet")
  37617. },
  37618. {
  37619. name: "Normal Height",
  37620. height: math.unit(10 + 8/12, "feet"),
  37621. default: true
  37622. },
  37623. ]
  37624. ))
  37625. characterMakers.push(() => makeCharacter(
  37626. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37627. {
  37628. side: {
  37629. height: math.unit(7 + 1/12, "feet"),
  37630. weight: math.unit(245, "lb"),
  37631. name: "Side",
  37632. image: {
  37633. source: "./media/characters/kavus-kazian/side.svg",
  37634. extra: 349/342,
  37635. bottom: 15/364
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(7 + 1/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37649. {
  37650. normalFront: {
  37651. height: math.unit(5 + 11/12, "feet"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/moonlight-rose/normal-front.svg",
  37655. extra: 1980/1825,
  37656. bottom: 18/1998
  37657. },
  37658. form: "normal",
  37659. default: true
  37660. },
  37661. normalBack: {
  37662. height: math.unit(5 + 11/12, "feet"),
  37663. name: "Back",
  37664. image: {
  37665. source: "./media/characters/moonlight-rose/normal-back.svg",
  37666. extra: 2010/1839,
  37667. bottom: 10/2020
  37668. },
  37669. form: "normal"
  37670. },
  37671. demonFront: {
  37672. height: math.unit(1.5, "earths"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/moonlight-rose/demon.svg",
  37676. extra: 1400/1294,
  37677. bottom: 45/1445
  37678. },
  37679. form: "demon",
  37680. default: true
  37681. },
  37682. terraFront: {
  37683. height: math.unit(1.5, "earths"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/moonlight-rose/terra.svg"
  37687. },
  37688. form: "terra",
  37689. default: true
  37690. },
  37691. jupiterFront: {
  37692. height: math.unit(69911*2, "km"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37696. extra: 1367/1286,
  37697. bottom: 55/1422
  37698. },
  37699. form: "jupiter",
  37700. default: true
  37701. },
  37702. neptuneFront: {
  37703. height: math.unit(24622*2, "feet"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37707. extra: 1851/1712,
  37708. bottom: 0/1851
  37709. },
  37710. form: "neptune",
  37711. default: true
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "\"Natural\" Height",
  37717. height: math.unit(5 + 11/12, "feet"),
  37718. form: "normal"
  37719. },
  37720. {
  37721. name: "Smallest comfortable size",
  37722. height: math.unit(40, "meters"),
  37723. form: "normal"
  37724. },
  37725. {
  37726. name: "Common size",
  37727. height: math.unit(50, "km"),
  37728. form: "normal",
  37729. default: true
  37730. },
  37731. {
  37732. name: "Normal",
  37733. height: math.unit(1.5, "earths"),
  37734. form: "demon",
  37735. default: true
  37736. },
  37737. {
  37738. name: "Universal",
  37739. height: math.unit(15, "universes"),
  37740. form: "demon"
  37741. },
  37742. {
  37743. name: "Earth",
  37744. height: math.unit(1.5, "earths"),
  37745. form: "terra",
  37746. default: true
  37747. },
  37748. {
  37749. name: "Super Earth",
  37750. height: math.unit(67.5, "earths"),
  37751. form: "terra"
  37752. },
  37753. {
  37754. name: "Doesn't fit in a solar system...",
  37755. height: math.unit(1, "galaxy"),
  37756. form: "terra"
  37757. },
  37758. {
  37759. name: "Saturn",
  37760. height: math.unit(58232*2, "km"),
  37761. form: "jupiter"
  37762. },
  37763. {
  37764. name: "Jupiter",
  37765. height: math.unit(69911*2, "km"),
  37766. form: "jupiter",
  37767. default: true
  37768. },
  37769. {
  37770. name: "HD 100546 b",
  37771. height: math.unit(482938, "km"),
  37772. form: "jupiter"
  37773. },
  37774. {
  37775. name: "Enceladus",
  37776. height: math.unit(513*2, "km"),
  37777. form: "neptune"
  37778. },
  37779. {
  37780. name: "Europe",
  37781. height: math.unit(1560*2, "km"),
  37782. form: "neptune"
  37783. },
  37784. {
  37785. name: "Neptune",
  37786. height: math.unit(24622*2, "km"),
  37787. form: "neptune",
  37788. default: true
  37789. },
  37790. {
  37791. name: "CoRoT-9b",
  37792. height: math.unit(75067*2, "km"),
  37793. form: "neptune"
  37794. },
  37795. ],
  37796. {
  37797. "normal": {
  37798. name: "Normal",
  37799. default: true
  37800. },
  37801. "demon": {
  37802. name: "Demon"
  37803. },
  37804. "terra": {
  37805. name: "Terra"
  37806. },
  37807. "jupiter": {
  37808. name: "Jupiter"
  37809. },
  37810. "neptune": {
  37811. name: "Neptune"
  37812. }
  37813. }
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(16, "feet"),
  37820. weight: math.unit(610, "kg"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/huckle/front.svg",
  37824. extra: 1731/1625,
  37825. bottom: 33/1764
  37826. }
  37827. },
  37828. back: {
  37829. height: math.unit(16, "feet"),
  37830. weight: math.unit(610, "kg"),
  37831. name: "Back",
  37832. image: {
  37833. source: "./media/characters/huckle/back.svg",
  37834. extra: 1738/1651,
  37835. bottom: 37/1775
  37836. }
  37837. },
  37838. laughing: {
  37839. height: math.unit(3.75, "feet"),
  37840. name: "Laughing",
  37841. image: {
  37842. source: "./media/characters/huckle/laughing.svg"
  37843. }
  37844. },
  37845. angry: {
  37846. height: math.unit(4.15, "feet"),
  37847. name: "Angry",
  37848. image: {
  37849. source: "./media/characters/huckle/angry.svg"
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(16, "feet"),
  37857. default: true
  37858. },
  37859. {
  37860. name: "Mini Macro",
  37861. height: math.unit(463, "feet")
  37862. },
  37863. {
  37864. name: "Macro",
  37865. height: math.unit(1680, "meters")
  37866. },
  37867. {
  37868. name: "Mega Macro",
  37869. height: math.unit(175, "km")
  37870. },
  37871. {
  37872. name: "Terra Macro",
  37873. height: math.unit(32, "gigameters")
  37874. },
  37875. {
  37876. name: "Multiverse+",
  37877. height: math.unit(2.56e23, "yottameters")
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(6 + 9/12, "feet"),
  37886. weight: math.unit(280, "lb"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/candy/front.svg",
  37890. extra: 234/217,
  37891. bottom: 11/245
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Really Small",
  37898. height: math.unit(0.1, "nm")
  37899. },
  37900. {
  37901. name: "Micro",
  37902. height: math.unit(2, "inches")
  37903. },
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(6 + 9/12, "feet"),
  37907. default: true
  37908. },
  37909. {
  37910. name: "Small Macro",
  37911. height: math.unit(69, "feet")
  37912. },
  37913. {
  37914. name: "Macro",
  37915. height: math.unit(160, "feet")
  37916. },
  37917. {
  37918. name: "Megamacro",
  37919. height: math.unit(22000, "miles")
  37920. },
  37921. {
  37922. name: "Gigamacro",
  37923. height: math.unit(50000, "miles")
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(4, "feet"),
  37932. weight: math.unit(90, "lb"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/joey-mcdonald/front.svg",
  37936. extra: 1059/852,
  37937. bottom: 33/1092
  37938. }
  37939. },
  37940. back: {
  37941. height: math.unit(4, "feet"),
  37942. weight: math.unit(90, "lb"),
  37943. name: "Back",
  37944. image: {
  37945. source: "./media/characters/joey-mcdonald/back.svg",
  37946. extra: 1077/879,
  37947. bottom: 5/1082
  37948. }
  37949. },
  37950. frontKobold: {
  37951. height: math.unit(4, "feet"),
  37952. weight: math.unit(100, "lb"),
  37953. name: "Front-kobold",
  37954. image: {
  37955. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37956. extra: 1480/1367,
  37957. bottom: 0/1480
  37958. }
  37959. },
  37960. backKobold: {
  37961. height: math.unit(4, "feet"),
  37962. weight: math.unit(100, "lb"),
  37963. name: "Back-kobold",
  37964. image: {
  37965. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37966. extra: 1449/1361,
  37967. bottom: 0/1449
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(4, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(12 + 6/12, "feet"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/kass-lockheed/front.svg",
  37987. extra: 354/343,
  37988. bottom: 9/363
  37989. }
  37990. },
  37991. back: {
  37992. height: math.unit(12 + 6/12, "feet"),
  37993. name: "Back",
  37994. image: {
  37995. source: "./media/characters/kass-lockheed/back.svg",
  37996. extra: 364/352,
  37997. bottom: 3/367
  37998. }
  37999. },
  38000. dick: {
  38001. height: math.unit(3.12, "feet"),
  38002. name: "Dick",
  38003. image: {
  38004. source: "./media/characters/kass-lockheed/dick.svg"
  38005. }
  38006. },
  38007. head: {
  38008. height: math.unit(2.6, "feet"),
  38009. name: "Head",
  38010. image: {
  38011. source: "./media/characters/kass-lockheed/head.svg"
  38012. }
  38013. },
  38014. bleh: {
  38015. height: math.unit(2.85, "feet"),
  38016. name: "Bleh",
  38017. image: {
  38018. source: "./media/characters/kass-lockheed/bleh.svg"
  38019. }
  38020. },
  38021. smug: {
  38022. height: math.unit(2.85, "feet"),
  38023. name: "Smug",
  38024. image: {
  38025. source: "./media/characters/kass-lockheed/smug.svg"
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Normal",
  38032. height: math.unit(12 + 6/12, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38039. {
  38040. front: {
  38041. height: math.unit(6 + 2/12, "feet"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/taylor/front.svg",
  38045. extra: 639/495,
  38046. bottom: 12/651
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(6 + 2/12, "feet"),
  38054. default: true
  38055. },
  38056. {
  38057. name: "Big",
  38058. height: math.unit(15, "feet")
  38059. },
  38060. {
  38061. name: "Lorg",
  38062. height: math.unit(80, "feet")
  38063. },
  38064. {
  38065. name: "Too Lorg",
  38066. height: math.unit(120, "feet")
  38067. },
  38068. ]
  38069. ))
  38070. characterMakers.push(() => makeCharacter(
  38071. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38072. {
  38073. front: {
  38074. height: math.unit(15, "feet"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/kaizer/front.svg",
  38078. extra: 1612/1436,
  38079. bottom: 43/1655
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(15, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38093. {
  38094. front: {
  38095. height: math.unit(2, "feet"),
  38096. weight: math.unit(30, "lb"),
  38097. name: "Front",
  38098. image: {
  38099. source: "./media/characters/sandy/front.svg",
  38100. extra: 1439/1307,
  38101. bottom: 194/1633
  38102. }
  38103. },
  38104. },
  38105. [
  38106. {
  38107. name: "Normal",
  38108. height: math.unit(2, "feet"),
  38109. default: true
  38110. },
  38111. ]
  38112. ))
  38113. characterMakers.push(() => makeCharacter(
  38114. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38115. {
  38116. front: {
  38117. height: math.unit(3, "feet"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/mellvi/front.svg",
  38121. extra: 1831/1630,
  38122. bottom: 58/1889
  38123. }
  38124. },
  38125. },
  38126. [
  38127. {
  38128. name: "Normal",
  38129. height: math.unit(3, "feet"),
  38130. default: true
  38131. },
  38132. ]
  38133. ))
  38134. characterMakers.push(() => makeCharacter(
  38135. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38136. {
  38137. front: {
  38138. height: math.unit(5 + 11/12, "feet"),
  38139. weight: math.unit(200, "lb"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/shirou/front.svg",
  38143. extra: 2491/2383,
  38144. bottom: 189/2680
  38145. }
  38146. },
  38147. back: {
  38148. height: math.unit(5 + 11/12, "feet"),
  38149. weight: math.unit(200, "lb"),
  38150. name: "Back",
  38151. image: {
  38152. source: "./media/characters/shirou/back.svg",
  38153. extra: 2554/2450,
  38154. bottom: 76/2630
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(5 + 11/12, "feet"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(6 + 3/12, "feet"),
  38171. weight: math.unit(177, "lb"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/noryu/front.svg",
  38175. extra: 973/885,
  38176. bottom: 10/983
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(6 + 3/12, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(5 + 6/12, "feet"),
  38193. weight: math.unit(170, "lb"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/mevolas-rubenido/front.svg",
  38197. extra: 2109/1901,
  38198. bottom: 96/2205
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(5 + 6/12, "feet"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(100, "feet"),
  38215. name: "Front",
  38216. image: {
  38217. source: "./media/characters/dee/front.svg",
  38218. extra: 2153/2036,
  38219. bottom: 59/2212
  38220. }
  38221. },
  38222. back: {
  38223. height: math.unit(100, "feet"),
  38224. name: "Back",
  38225. image: {
  38226. source: "./media/characters/dee/back.svg",
  38227. extra: 2183/2058,
  38228. bottom: 75/2258
  38229. }
  38230. },
  38231. foot: {
  38232. height: math.unit(19.43, "feet"),
  38233. name: "Foot",
  38234. image: {
  38235. source: "./media/characters/dee/foot.svg"
  38236. }
  38237. },
  38238. hoof: {
  38239. height: math.unit(20.6, "feet"),
  38240. name: "Hoof",
  38241. image: {
  38242. source: "./media/characters/dee/hoof.svg"
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Macro",
  38249. height: math.unit(100, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(5 + 6/12, "feet"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/teh/front.svg",
  38262. extra: 1002/847,
  38263. bottom: 62/1064
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Normal",
  38270. height: math.unit(5 + 6/12, "feet"),
  38271. default: true
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38277. {
  38278. side: {
  38279. height: math.unit(6 + 1/12, "feet"),
  38280. weight: math.unit(204, "lb"),
  38281. name: "Side",
  38282. image: {
  38283. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38284. extra: 974/775,
  38285. bottom: 169/1143
  38286. }
  38287. },
  38288. sitting: {
  38289. height: math.unit(6 + 2/12, "feet"),
  38290. weight: math.unit(204, "lb"),
  38291. name: "Sitting",
  38292. image: {
  38293. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38294. extra: 1175/964,
  38295. bottom: 378/1553
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Normal",
  38302. height: math.unit(6 + 1/12, "feet"),
  38303. default: true
  38304. },
  38305. ]
  38306. ))
  38307. characterMakers.push(() => makeCharacter(
  38308. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38309. {
  38310. front: {
  38311. height: math.unit(6, "inches"),
  38312. name: "Front",
  38313. image: {
  38314. source: "./media/characters/tululi/front.svg",
  38315. extra: 1997/1876,
  38316. bottom: 20/2017
  38317. }
  38318. },
  38319. },
  38320. [
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(6, "inches"),
  38324. default: true
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(4 + 1/12, "feet"),
  38333. name: "Front",
  38334. image: {
  38335. source: "./media/characters/star/front.svg",
  38336. extra: 1493/1189,
  38337. bottom: 48/1541
  38338. }
  38339. },
  38340. },
  38341. [
  38342. {
  38343. name: "Normal",
  38344. height: math.unit(4 + 1/12, "feet"),
  38345. default: true
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(6 + 3/12, "feet"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/comet/front.svg",
  38357. extra: 1681/1462,
  38358. bottom: 26/1707
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(6 + 3/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(950, "feet"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/vortex/front.svg",
  38378. extra: 1497/1434,
  38379. bottom: 56/1553
  38380. }
  38381. },
  38382. maw: {
  38383. height: math.unit(285, "feet"),
  38384. name: "Maw",
  38385. image: {
  38386. source: "./media/characters/vortex/maw.svg"
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Macro",
  38393. height: math.unit(950, "feet"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(600, "feet"),
  38403. weight: math.unit(0.02, "grams"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/doodle/front.svg",
  38407. extra: 1578/1413,
  38408. bottom: 37/1615
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Macro",
  38415. height: math.unit(600, "feet"),
  38416. default: true
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(6 + 6/12, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/jai/front.svg",
  38428. extra: 1645/1534,
  38429. bottom: 115/1760
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Normal",
  38436. height: math.unit(6 + 6/12, "feet"),
  38437. default: true
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(6 + 8/12, "feet"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/pixel/front.svg",
  38449. extra: 1900/1735,
  38450. bottom: 63/1963
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(6 + 8/12, "feet"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38464. {
  38465. back: {
  38466. height: math.unit(4 + 1/12, "feet"),
  38467. weight: math.unit(75, "lb"),
  38468. name: "Back",
  38469. image: {
  38470. source: "./media/characters/rhett/back.svg",
  38471. extra: 930/878,
  38472. bottom: 25/955
  38473. }
  38474. },
  38475. front: {
  38476. height: math.unit(4 + 1/12, "feet"),
  38477. weight: math.unit(75, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/rhett/front.svg",
  38481. extra: 1682/1586,
  38482. bottom: 92/1774
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Micro",
  38489. height: math.unit(8, "inches")
  38490. },
  38491. {
  38492. name: "Tiny",
  38493. height: math.unit(2, "feet")
  38494. },
  38495. {
  38496. name: "Normal",
  38497. height: math.unit(4 + 1/12, "feet"),
  38498. default: true
  38499. },
  38500. ]
  38501. ))
  38502. characterMakers.push(() => makeCharacter(
  38503. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38504. {
  38505. front: {
  38506. height: math.unit(3 + 3/12, "feet"),
  38507. name: "Front",
  38508. image: {
  38509. source: "./media/characters/penny/front.svg",
  38510. extra: 1406/1311,
  38511. bottom: 26/1432
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(3 + 3/12, "feet"),
  38519. default: true
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(4 + 11/12, "feet"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/monty/front.svg",
  38531. extra: 1479/1209,
  38532. bottom: 0/1479
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(4 + 11/12, "feet"),
  38540. default: true
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(8 + 4/12, "feet"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/sterling/front.svg",
  38552. extra: 1420/1236,
  38553. bottom: 27/1447
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(8 + 4/12, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(15, "feet"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/marble/front.svg",
  38573. extra: 973/937,
  38574. bottom: 32/1005
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(15, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38588. {
  38589. front: {
  38590. height: math.unit(3, "inches"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/powder/front.svg",
  38594. extra: 1504/1334,
  38595. bottom: 518/2022
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(3, "inches"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(4 + 5/12, "feet"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/joey-raccoon/front.svg",
  38615. extra: 1273/1197,
  38616. bottom: 0/1273
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Normal",
  38623. height: math.unit(4 + 5/12, "feet"),
  38624. default: true
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(8 + 4/12, "feet"),
  38633. name: "Front",
  38634. image: {
  38635. source: "./media/characters/vick/front.svg",
  38636. extra: 2187/2118,
  38637. bottom: 47/2234
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(8 + 4/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(5 + 5/12, "feet"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/mitsy/front.svg",
  38657. extra: 1842/1695,
  38658. bottom: 0/1842
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(5 + 5/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(6 + 3/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/silvy/front.svg",
  38678. extra: 1995/1836,
  38679. bottom: 225/2220
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(6 + 3/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(3 + 8/12, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/rodney/front.svg",
  38699. extra: 1956/1747,
  38700. bottom: 31/1987
  38701. }
  38702. },
  38703. frontDressed: {
  38704. height: math.unit(2.9, "feet"),
  38705. name: "Front (Dressed)",
  38706. image: {
  38707. source: "./media/characters/rodney/front-dressed.svg",
  38708. extra: 1382/1241,
  38709. bottom: 385/1767
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(3 + 8/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(5 + 9/12, "feet"),
  38726. weight: math.unit(194, "lbs"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/zakail-sudekai/front.svg",
  38730. extra: 2696/2533,
  38731. bottom: 248/2944
  38732. }
  38733. },
  38734. maw: {
  38735. height: math.unit(1.35, "feet"),
  38736. name: "Maw",
  38737. image: {
  38738. source: "./media/characters/zakail-sudekai/maw.svg"
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Normal",
  38745. height: math.unit(5 + 9/12, "feet"),
  38746. default: true
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(8 + 4/12, "feet"),
  38755. weight: math.unit(1200, "lb"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/eleanor/front.svg",
  38759. extra: 1226/1192,
  38760. bottom: 52/1278
  38761. }
  38762. },
  38763. back: {
  38764. height: math.unit(8 + 4/12, "feet"),
  38765. weight: math.unit(1200, "lb"),
  38766. name: "Back",
  38767. image: {
  38768. source: "./media/characters/eleanor/back.svg",
  38769. extra: 1242/1184,
  38770. bottom: 60/1302
  38771. }
  38772. },
  38773. head: {
  38774. height: math.unit(2.62, "feet"),
  38775. name: "Head",
  38776. image: {
  38777. source: "./media/characters/eleanor/head.svg"
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(8 + 4/12, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(8 + 4/12, "feet"),
  38794. weight: math.unit(750, "lb"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/tanya/front.svg",
  38798. extra: 1749/1615,
  38799. bottom: 33/1782
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(8 + 4/12, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(5, "feet"),
  38816. weight: math.unit(225, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/cindy/front.svg",
  38820. extra: 1320/1250,
  38821. bottom: 42/1362
  38822. }
  38823. },
  38824. frontDressed: {
  38825. height: math.unit(5, "feet"),
  38826. weight: math.unit(225, "lb"),
  38827. name: "Front (Dressed)",
  38828. image: {
  38829. source: "./media/characters/cindy/front-dressed.svg",
  38830. extra: 1320/1250,
  38831. bottom: 42/1362
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(5, "feet"),
  38836. weight: math.unit(225, "lb"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/cindy/back.svg",
  38840. extra: 1384/1346,
  38841. bottom: 14/1398
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(5, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(6 + 9/12, "feet"),
  38858. weight: math.unit(440, "lb"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/wilbur-owen/front.svg",
  38862. extra: 1575/1448,
  38863. bottom: 72/1647
  38864. }
  38865. },
  38866. back: {
  38867. height: math.unit(6 + 9/12, "feet"),
  38868. weight: math.unit(440, "lb"),
  38869. name: "Back",
  38870. image: {
  38871. source: "./media/characters/wilbur-owen/back.svg",
  38872. extra: 1578/1445,
  38873. bottom: 36/1614
  38874. }
  38875. },
  38876. },
  38877. [
  38878. {
  38879. name: "Normal",
  38880. height: math.unit(6 + 9/12, "feet"),
  38881. default: true
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(6 + 5/12, "feet"),
  38890. weight: math.unit(650, "lb"),
  38891. name: "Front",
  38892. image: {
  38893. source: "./media/characters/keegan/front.svg",
  38894. extra: 2387/2198,
  38895. bottom: 33/2420
  38896. }
  38897. },
  38898. side: {
  38899. height: math.unit(6 + 5/12, "feet"),
  38900. weight: math.unit(650, "lb"),
  38901. name: "Side",
  38902. image: {
  38903. source: "./media/characters/keegan/side.svg",
  38904. extra: 2390/2202,
  38905. bottom: 47/2437
  38906. }
  38907. },
  38908. back: {
  38909. height: math.unit(6 + 5/12, "feet"),
  38910. weight: math.unit(650, "lb"),
  38911. name: "Back",
  38912. image: {
  38913. source: "./media/characters/keegan/back.svg",
  38914. extra: 2418/2268,
  38915. bottom: 15/2433
  38916. }
  38917. },
  38918. frontSfw: {
  38919. height: math.unit(6 + 5/12, "feet"),
  38920. weight: math.unit(650, "lb"),
  38921. name: "Front (SFW)",
  38922. image: {
  38923. source: "./media/characters/keegan/front-sfw.svg",
  38924. extra: 2387/2198,
  38925. bottom: 33/2420
  38926. }
  38927. },
  38928. beans: {
  38929. height: math.unit(1.85, "feet"),
  38930. name: "Beans",
  38931. image: {
  38932. source: "./media/characters/keegan/beans.svg"
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(6 + 5/12, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(9, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/colton/front.svg",
  38952. extra: 1589/1326,
  38953. bottom: 139/1728
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(9, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(2 + 9/12, "feet"),
  38970. name: "Front",
  38971. image: {
  38972. source: "./media/characters/bora/front.svg",
  38973. extra: 1265/1250,
  38974. bottom: 24/1289
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Normal",
  38981. height: math.unit(2 + 9/12, "feet"),
  38982. default: true
  38983. },
  38984. ]
  38985. ))
  38986. characterMakers.push(() => makeCharacter(
  38987. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38988. {
  38989. front: {
  38990. height: math.unit(8, "feet"),
  38991. name: "Front",
  38992. image: {
  38993. source: "./media/characters/myu-myu/front.svg",
  38994. extra: 1949/1857,
  38995. bottom: 90/2039
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(8, "feet"),
  39003. default: true
  39004. },
  39005. {
  39006. name: "Big",
  39007. height: math.unit(15, "feet")
  39008. },
  39009. {
  39010. name: "BIG",
  39011. height: math.unit(25, "feet")
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39017. {
  39018. side: {
  39019. height: math.unit(7 + 5/12, "feet"),
  39020. weight: math.unit(2800, "lb"),
  39021. name: "Side",
  39022. image: {
  39023. source: "./media/characters/haloren/side.svg",
  39024. extra: 1793/409,
  39025. bottom: 59/1852
  39026. }
  39027. },
  39028. frontPaw: {
  39029. height: math.unit(2.36, "feet"),
  39030. name: "Front paw",
  39031. image: {
  39032. source: "./media/characters/haloren/front-paw.svg"
  39033. }
  39034. },
  39035. hindPaw: {
  39036. height: math.unit(3.18, "feet"),
  39037. name: "Hind paw",
  39038. image: {
  39039. source: "./media/characters/haloren/hind-paw.svg"
  39040. }
  39041. },
  39042. maw: {
  39043. height: math.unit(5.05, "feet"),
  39044. name: "Maw",
  39045. image: {
  39046. source: "./media/characters/haloren/maw.svg"
  39047. }
  39048. },
  39049. dick: {
  39050. height: math.unit(2.90, "feet"),
  39051. name: "Dick",
  39052. image: {
  39053. source: "./media/characters/haloren/dick.svg"
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(7 + 5/12, "feet"),
  39061. default: true
  39062. },
  39063. {
  39064. name: "Enhanced",
  39065. height: math.unit(14 + 3/12, "feet")
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(171, "cm"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/kimmy/front.svg",
  39077. extra: 1491/1435,
  39078. bottom: 53/1544
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Small",
  39085. height: math.unit(9, "cm")
  39086. },
  39087. {
  39088. name: "Normal",
  39089. height: math.unit(171, "cm"),
  39090. default: true
  39091. },
  39092. ]
  39093. ))
  39094. characterMakers.push(() => makeCharacter(
  39095. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39096. {
  39097. front: {
  39098. height: math.unit(8, "feet"),
  39099. weight: math.unit(300, "lb"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/galeboomer/front.svg",
  39103. extra: 4651/4415,
  39104. bottom: 162/4813
  39105. }
  39106. },
  39107. back: {
  39108. height: math.unit(8, "feet"),
  39109. weight: math.unit(300, "lb"),
  39110. name: "Back",
  39111. image: {
  39112. source: "./media/characters/galeboomer/back.svg",
  39113. extra: 4544/4314,
  39114. bottom: 16/4560
  39115. }
  39116. },
  39117. frontAlt: {
  39118. height: math.unit(8, "feet"),
  39119. weight: math.unit(300, "lb"),
  39120. name: "Front (Alt)",
  39121. image: {
  39122. source: "./media/characters/galeboomer/front-alt.svg",
  39123. extra: 4458/4228,
  39124. bottom: 68/4526
  39125. }
  39126. },
  39127. maw: {
  39128. height: math.unit(1.2, "feet"),
  39129. name: "Maw",
  39130. image: {
  39131. source: "./media/characters/galeboomer/maw.svg"
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(8, "feet"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(5 + 9/12, "feet"),
  39148. weight: math.unit(120, "lb"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/chyr/front.svg",
  39152. extra: 1323/1254,
  39153. bottom: 63/1386
  39154. }
  39155. },
  39156. back: {
  39157. height: math.unit(5 + 9/12, "feet"),
  39158. weight: math.unit(120, "lb"),
  39159. name: "Back",
  39160. image: {
  39161. source: "./media/characters/chyr/back.svg",
  39162. extra: 1323/1252,
  39163. bottom: 48/1371
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(5 + 9/12, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(7, "feet"),
  39180. weight: math.unit(310, "lb"),
  39181. name: "Front",
  39182. image: {
  39183. source: "./media/characters/solarus/front.svg",
  39184. extra: 2415/2021,
  39185. bottom: 103/2518
  39186. }
  39187. },
  39188. back: {
  39189. height: math.unit(7, "feet"),
  39190. weight: math.unit(310, "lb"),
  39191. name: "Back",
  39192. image: {
  39193. source: "./media/characters/solarus/back.svg",
  39194. extra: 2463/2089,
  39195. bottom: 79/2542
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(7, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39209. {
  39210. front: {
  39211. height: math.unit(16, "feet"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39215. extra: 1844/1780,
  39216. bottom: 58/1902
  39217. }
  39218. },
  39219. winterCoat: {
  39220. height: math.unit(16, "feet"),
  39221. name: "Winter Coat",
  39222. image: {
  39223. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39224. extra: 1807/1775,
  39225. bottom: 69/1876
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(16, "feet"),
  39233. default: true
  39234. },
  39235. {
  39236. name: "Chicago Size",
  39237. height: math.unit(560, "feet")
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(11 + 6/12, "feet"),
  39246. weight: math.unit(1366, "lb"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/lexor/front.svg",
  39250. extra: 1560/1481,
  39251. bottom: 211/1771
  39252. }
  39253. },
  39254. back: {
  39255. height: math.unit(11 + 6/12, "feet"),
  39256. weight: math.unit(1366, "lb"),
  39257. name: "Back",
  39258. image: {
  39259. source: "./media/characters/lexor/back.svg",
  39260. extra: 1614/1533,
  39261. bottom: 76/1690
  39262. }
  39263. },
  39264. maw: {
  39265. height: math.unit(3, "feet"),
  39266. name: "Maw",
  39267. image: {
  39268. source: "./media/characters/lexor/maw.svg"
  39269. }
  39270. },
  39271. dick: {
  39272. height: math.unit(2.59, "feet"),
  39273. name: "Dick",
  39274. image: {
  39275. source: "./media/characters/lexor/dick.svg"
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(11 + 6/12, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(5 + 8/12, "feet"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/magnum/front.svg",
  39295. extra: 942/855,
  39296. bottom: 26/968
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(5 + 8/12, "feet"),
  39304. default: true
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(18 + 4/12, "feet"),
  39313. weight: math.unit(1500, "kg"),
  39314. name: "Front",
  39315. image: {
  39316. source: "./media/characters/solas-sharpsman/front.svg",
  39317. extra: 1698/1589,
  39318. bottom: 0/1698
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Normal",
  39325. height: math.unit(18 + 4/12, "feet"),
  39326. default: true
  39327. },
  39328. ]
  39329. ))
  39330. characterMakers.push(() => makeCharacter(
  39331. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39332. {
  39333. front: {
  39334. height: math.unit(5 + 5/12, "feet"),
  39335. weight: math.unit(180, "lb"),
  39336. name: "Front",
  39337. image: {
  39338. source: "./media/characters/october/front.svg",
  39339. extra: 1800/1650,
  39340. bottom: 0/1800
  39341. }
  39342. },
  39343. frontNsfw: {
  39344. height: math.unit(5 + 5/12, "feet"),
  39345. weight: math.unit(180, "lb"),
  39346. name: "Front (NSFW)",
  39347. image: {
  39348. source: "./media/characters/october/front-nsfw.svg",
  39349. extra: 1392/1307,
  39350. bottom: 42/1434
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(5 + 5/12, "feet"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(8 + 6/12, "feet"),
  39367. name: "Front",
  39368. image: {
  39369. source: "./media/characters/essynkardi/front.svg",
  39370. extra: 1541/1457,
  39371. bottom: 47/1588
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(8 + 6/12, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(6 + 6/12, "feet"),
  39388. weight: math.unit(7, "lb"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/icky/front.svg",
  39392. extra: 813/782,
  39393. bottom: 66/879
  39394. }
  39395. },
  39396. back: {
  39397. height: math.unit(6 + 6/12, "feet"),
  39398. weight: math.unit(7, "lb"),
  39399. name: "Back",
  39400. image: {
  39401. source: "./media/characters/icky/back.svg",
  39402. extra: 754/735,
  39403. bottom: 56/810
  39404. }
  39405. },
  39406. },
  39407. [
  39408. {
  39409. name: "Normal",
  39410. height: math.unit(6 + 6/12, "feet"),
  39411. default: true
  39412. },
  39413. ]
  39414. ))
  39415. characterMakers.push(() => makeCharacter(
  39416. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39417. {
  39418. front: {
  39419. height: math.unit(15, "feet"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/rojas/front.svg",
  39423. extra: 1462/1408,
  39424. bottom: 95/1557
  39425. }
  39426. },
  39427. back: {
  39428. height: math.unit(15, "feet"),
  39429. name: "Back",
  39430. image: {
  39431. source: "./media/characters/rojas/back.svg",
  39432. extra: 1023/954,
  39433. bottom: 28/1051
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(15, "feet"),
  39441. default: true
  39442. },
  39443. ]
  39444. ))
  39445. characterMakers.push(() => makeCharacter(
  39446. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39447. {
  39448. frontHuman: {
  39449. height: math.unit(5 + 7/12, "feet"),
  39450. name: "Front (Human)",
  39451. image: {
  39452. source: "./media/characters/alek-dryagan/front-human.svg",
  39453. extra: 1687/1667,
  39454. bottom: 69/1756
  39455. }
  39456. },
  39457. backHuman: {
  39458. height: math.unit(5 + 7/12, "feet"),
  39459. name: "Back (Human)",
  39460. image: {
  39461. source: "./media/characters/alek-dryagan/back-human.svg",
  39462. extra: 1670/1649,
  39463. bottom: 65/1735
  39464. }
  39465. },
  39466. frontDemi: {
  39467. height: math.unit(65, "feet"),
  39468. name: "Front (Demi)",
  39469. image: {
  39470. source: "./media/characters/alek-dryagan/front-demi.svg",
  39471. extra: 1669/1642,
  39472. bottom: 49/1718
  39473. }
  39474. },
  39475. backDemi: {
  39476. height: math.unit(65, "feet"),
  39477. name: "Back (Demi)",
  39478. image: {
  39479. source: "./media/characters/alek-dryagan/back-demi.svg",
  39480. extra: 1658/1637,
  39481. bottom: 40/1698
  39482. }
  39483. },
  39484. mawHuman: {
  39485. height: math.unit(0.3, "feet"),
  39486. name: "Maw (Human)",
  39487. image: {
  39488. source: "./media/characters/alek-dryagan/maw-human.svg"
  39489. }
  39490. },
  39491. mawDemi: {
  39492. height: math.unit(3.8, "feet"),
  39493. name: "Maw (Demi)",
  39494. image: {
  39495. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Normal",
  39502. height: math.unit(5 + 7/12, "feet"),
  39503. default: true
  39504. },
  39505. ]
  39506. ))
  39507. characterMakers.push(() => makeCharacter(
  39508. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39509. {
  39510. frontHuman: {
  39511. height: math.unit(5 + 2/12, "feet"),
  39512. name: "Front (Human)",
  39513. image: {
  39514. source: "./media/characters/gen/front-human.svg",
  39515. extra: 1627/1538,
  39516. bottom: 71/1698
  39517. }
  39518. },
  39519. backHuman: {
  39520. height: math.unit(5 + 2/12, "feet"),
  39521. name: "Back (Human)",
  39522. image: {
  39523. source: "./media/characters/gen/back-human.svg",
  39524. extra: 1638/1548,
  39525. bottom: 69/1707
  39526. }
  39527. },
  39528. frontDemi: {
  39529. height: math.unit(5 + 2/12, "feet"),
  39530. name: "Front (Demi)",
  39531. image: {
  39532. source: "./media/characters/gen/front-demi.svg",
  39533. extra: 1627/1538,
  39534. bottom: 71/1698
  39535. }
  39536. },
  39537. backDemi: {
  39538. height: math.unit(5 + 2/12, "feet"),
  39539. name: "Back (Demi)",
  39540. image: {
  39541. source: "./media/characters/gen/back-demi.svg",
  39542. extra: 1638/1548,
  39543. bottom: 69/1707
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(5 + 2/12, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39557. {
  39558. frontImp: {
  39559. height: math.unit(1 + 11/12, "feet"),
  39560. name: "Front (Imp)",
  39561. image: {
  39562. source: "./media/characters/max-kobold/front-imp.svg",
  39563. extra: 1238/1134,
  39564. bottom: 81/1319
  39565. }
  39566. },
  39567. backImp: {
  39568. height: math.unit(1 + 11/12, "feet"),
  39569. name: "Back (Imp)",
  39570. image: {
  39571. source: "./media/characters/max-kobold/back-imp.svg",
  39572. extra: 1334/1175,
  39573. bottom: 34/1368
  39574. }
  39575. },
  39576. frontDemi: {
  39577. height: math.unit(5 + 9/12, "feet"),
  39578. name: "Front (Demi)",
  39579. image: {
  39580. source: "./media/characters/max-kobold/front-demi.svg",
  39581. extra: 1715/1685,
  39582. bottom: 54/1769
  39583. }
  39584. },
  39585. backDemi: {
  39586. height: math.unit(5 + 9/12, "feet"),
  39587. name: "Back (Demi)",
  39588. image: {
  39589. source: "./media/characters/max-kobold/back-demi.svg",
  39590. extra: 1752/1729,
  39591. bottom: 41/1793
  39592. }
  39593. },
  39594. handImp: {
  39595. height: math.unit(0.45, "feet"),
  39596. name: "Hand (Imp)",
  39597. image: {
  39598. source: "./media/characters/max-kobold/hand.svg"
  39599. }
  39600. },
  39601. pawImp: {
  39602. height: math.unit(0.46, "feet"),
  39603. name: "Paw (Imp)",
  39604. image: {
  39605. source: "./media/characters/max-kobold/paw.svg"
  39606. }
  39607. },
  39608. handDemi: {
  39609. height: math.unit(0.80, "feet"),
  39610. name: "Hand (Demi)",
  39611. image: {
  39612. source: "./media/characters/max-kobold/hand.svg"
  39613. }
  39614. },
  39615. pawDemi: {
  39616. height: math.unit(1.1, "feet"),
  39617. name: "Paw (Demi)",
  39618. image: {
  39619. source: "./media/characters/max-kobold/paw.svg"
  39620. }
  39621. },
  39622. headImp: {
  39623. height: math.unit(1.33, "feet"),
  39624. name: "Head (Imp)",
  39625. image: {
  39626. source: "./media/characters/max-kobold/head-imp.svg"
  39627. }
  39628. },
  39629. mawImp: {
  39630. height: math.unit(0.75, "feet"),
  39631. name: "Maw (Imp)",
  39632. image: {
  39633. source: "./media/characters/max-kobold/maw-imp.svg"
  39634. }
  39635. },
  39636. mawDemi: {
  39637. height: math.unit(0.42, "feet"),
  39638. name: "Maw (Demi)",
  39639. image: {
  39640. source: "./media/characters/max-kobold/maw-demi.svg"
  39641. }
  39642. },
  39643. },
  39644. [
  39645. {
  39646. name: "Normal",
  39647. height: math.unit(1 + 11/12, "feet"),
  39648. default: true
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(7 + 5/12, "feet"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/carbon/front.svg",
  39660. extra: 1754/1689,
  39661. bottom: 65/1819
  39662. }
  39663. },
  39664. back: {
  39665. height: math.unit(7 + 5/12, "feet"),
  39666. name: "Back",
  39667. image: {
  39668. source: "./media/characters/carbon/back.svg",
  39669. extra: 1762/1695,
  39670. bottom: 24/1786
  39671. }
  39672. },
  39673. frontGigantamax: {
  39674. height: math.unit(150, "feet"),
  39675. name: "Front (Gigantamax)",
  39676. image: {
  39677. source: "./media/characters/carbon/front-gigantamax.svg",
  39678. extra: 1826/1669,
  39679. bottom: 59/1885
  39680. }
  39681. },
  39682. backGigantamax: {
  39683. height: math.unit(150, "feet"),
  39684. name: "Back (Gigantamax)",
  39685. image: {
  39686. source: "./media/characters/carbon/back-gigantamax.svg",
  39687. extra: 1796/1653,
  39688. bottom: 53/1849
  39689. }
  39690. },
  39691. maw: {
  39692. height: math.unit(0.48, "feet"),
  39693. name: "Maw",
  39694. image: {
  39695. source: "./media/characters/carbon/maw.svg"
  39696. }
  39697. },
  39698. mawGigantamax: {
  39699. height: math.unit(7.5, "feet"),
  39700. name: "Maw (Gigantamax)",
  39701. image: {
  39702. source: "./media/characters/carbon/maw-gigantamax.svg"
  39703. }
  39704. },
  39705. },
  39706. [
  39707. {
  39708. name: "Normal",
  39709. height: math.unit(7 + 5/12, "feet"),
  39710. default: true
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(6, "feet"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/maverick/front.svg",
  39722. extra: 1672/1661,
  39723. bottom: 85/1757
  39724. }
  39725. },
  39726. back: {
  39727. height: math.unit(6, "feet"),
  39728. name: "Back",
  39729. image: {
  39730. source: "./media/characters/maverick/back.svg",
  39731. extra: 1642/1631,
  39732. bottom: 38/1680
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Normal",
  39739. height: math.unit(6, "feet"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(15, "feet"),
  39749. weight: math.unit(615, "lb"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/grockle/front.svg",
  39753. extra: 1535/1427,
  39754. bottom: 56/1591
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(15, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Large",
  39766. height: math.unit(150, "feet")
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(1876, "feet")
  39771. },
  39772. {
  39773. name: "Mega Macro",
  39774. height: math.unit(121940, "feet")
  39775. },
  39776. {
  39777. name: "Giga Macro",
  39778. height: math.unit(750, "km")
  39779. },
  39780. {
  39781. name: "Tera Macro",
  39782. height: math.unit(750000, "km")
  39783. },
  39784. {
  39785. name: "Galactic",
  39786. height: math.unit(1.4e5, "km")
  39787. },
  39788. {
  39789. name: "Godlike",
  39790. height: math.unit(9.8e280, "galaxies")
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(11, "meters"),
  39799. weight: math.unit(20, "tonnes"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/alistair/front.svg",
  39803. extra: 1265/1009,
  39804. bottom: 93/1358
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Normal",
  39811. height: math.unit(11, "meters"),
  39812. default: true
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(5 + 8/12, "feet"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/haruka/front.svg",
  39824. extra: 2012/1952,
  39825. bottom: 0/2012
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(5 + 8/12, "feet"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39839. {
  39840. back: {
  39841. height: math.unit(9, "feet"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/vivian-sylveon/back.svg",
  39845. extra: 1853/1714,
  39846. bottom: 0/1853
  39847. }
  39848. },
  39849. hyper: {
  39850. height: math.unit(5.58, "feet"),
  39851. name: "Hyper",
  39852. preyCapacity: math.unit(2.80616218797, "m^3"),
  39853. image: {
  39854. source: "./media/characters/vivian-sylveon/hyper.svg",
  39855. extra: 999/676,
  39856. bottom: 697/1696
  39857. },
  39858. },
  39859. paw: {
  39860. height: math.unit(1.8, "feet"),
  39861. name: "Paw",
  39862. image: {
  39863. source: "./media/characters/vivian-sylveon/paw.svg"
  39864. }
  39865. },
  39866. danger: {
  39867. height: math.unit(7.5, "feet"),
  39868. name: "DANGER",
  39869. image: {
  39870. source: "./media/characters/vivian-sylveon/danger.svg"
  39871. }
  39872. },
  39873. },
  39874. [
  39875. {
  39876. name: "Normal",
  39877. height: math.unit(9, "feet"),
  39878. default: true
  39879. },
  39880. {
  39881. name: "Macro",
  39882. height: math.unit(500, "feet")
  39883. },
  39884. {
  39885. name: "Megamacro",
  39886. height: math.unit(600, "miles")
  39887. },
  39888. {
  39889. name: "Gigamacro",
  39890. height: math.unit(30000, "miles")
  39891. },
  39892. ]
  39893. ))
  39894. characterMakers.push(() => makeCharacter(
  39895. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39896. {
  39897. anthro: {
  39898. height: math.unit(5 + 10/12, "feet"),
  39899. weight: math.unit(100, "lb"),
  39900. name: "Anthro",
  39901. image: {
  39902. source: "./media/characters/daiki/anthro.svg",
  39903. extra: 1115/1027,
  39904. bottom: 69/1184
  39905. }
  39906. },
  39907. feral: {
  39908. height: math.unit(200, "feet"),
  39909. name: "Feral",
  39910. image: {
  39911. source: "./media/characters/daiki/feral.svg",
  39912. extra: 1256/313,
  39913. bottom: 39/1295
  39914. }
  39915. },
  39916. feralHead: {
  39917. height: math.unit(171, "feet"),
  39918. name: "Feral Head",
  39919. image: {
  39920. source: "./media/characters/daiki/feral-head.svg"
  39921. }
  39922. },
  39923. manaDragon: {
  39924. height: math.unit(170, "meters"),
  39925. name: "Mana-dragon",
  39926. image: {
  39927. source: "./media/characters/daiki/mana-dragon.svg",
  39928. extra: 763/420,
  39929. bottom: 97/860
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Normal",
  39936. height: math.unit(5 + 10/12, "feet"),
  39937. default: true
  39938. },
  39939. ]
  39940. ))
  39941. characterMakers.push(() => makeCharacter(
  39942. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39943. {
  39944. fullyEquippedFront: {
  39945. height: math.unit(3 + 1/12, "feet"),
  39946. weight: math.unit(24, "lb"),
  39947. name: "Fully Equipped (Front)",
  39948. image: {
  39949. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39950. extra: 687/605,
  39951. bottom: 18/705
  39952. }
  39953. },
  39954. fullyEquippedBack: {
  39955. height: math.unit(3 + 1/12, "feet"),
  39956. weight: math.unit(24, "lb"),
  39957. name: "Fully Equipped (Back)",
  39958. image: {
  39959. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39960. extra: 689/590,
  39961. bottom: 18/707
  39962. }
  39963. },
  39964. dailyWear: {
  39965. height: math.unit(3 + 1/12, "feet"),
  39966. weight: math.unit(24, "lb"),
  39967. name: "Daily Wear",
  39968. image: {
  39969. source: "./media/characters/tea-spot/daily-wear.svg",
  39970. extra: 701/620,
  39971. bottom: 21/722
  39972. }
  39973. },
  39974. maidWork: {
  39975. height: math.unit(3 + 1/12, "feet"),
  39976. weight: math.unit(24, "lb"),
  39977. name: "Maid Work",
  39978. image: {
  39979. source: "./media/characters/tea-spot/maid-work.svg",
  39980. extra: 693/609,
  39981. bottom: 15/708
  39982. }
  39983. },
  39984. },
  39985. [
  39986. {
  39987. name: "Normal",
  39988. height: math.unit(3 + 1/12, "feet"),
  39989. default: true
  39990. },
  39991. ]
  39992. ))
  39993. characterMakers.push(() => makeCharacter(
  39994. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39995. {
  39996. front: {
  39997. height: math.unit(175, "cm"),
  39998. weight: math.unit(75, "kg"),
  39999. name: "Front",
  40000. image: {
  40001. source: "./media/characters/chee/front.svg",
  40002. extra: 1796/1740,
  40003. bottom: 40/1836
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Micro-Micro",
  40010. height: math.unit(1, "nm")
  40011. },
  40012. {
  40013. name: "Micro-erst",
  40014. height: math.unit(1, "micrometer")
  40015. },
  40016. {
  40017. name: "Micro-er",
  40018. height: math.unit(1, "cm")
  40019. },
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(175, "cm"),
  40023. default: true
  40024. },
  40025. {
  40026. name: "Macro",
  40027. height: math.unit(100, "m")
  40028. },
  40029. {
  40030. name: "Macro-er",
  40031. height: math.unit(1, "km")
  40032. },
  40033. {
  40034. name: "Macro-erst",
  40035. height: math.unit(10, "km")
  40036. },
  40037. {
  40038. name: "Macro-Macro",
  40039. height: math.unit(100, "km")
  40040. },
  40041. ]
  40042. ))
  40043. characterMakers.push(() => makeCharacter(
  40044. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40045. {
  40046. front: {
  40047. height: math.unit(11 + 9/12, "feet"),
  40048. weight: math.unit(935, "lb"),
  40049. name: "Front",
  40050. image: {
  40051. source: "./media/characters/kingsley/front.svg",
  40052. extra: 1803/1674,
  40053. bottom: 127/1930
  40054. }
  40055. },
  40056. frontNude: {
  40057. height: math.unit(11 + 9/12, "feet"),
  40058. weight: math.unit(935, "lb"),
  40059. name: "Front (Nude)",
  40060. image: {
  40061. source: "./media/characters/kingsley/front-nude.svg",
  40062. extra: 1803/1674,
  40063. bottom: 127/1930
  40064. }
  40065. },
  40066. },
  40067. [
  40068. {
  40069. name: "Normal",
  40070. height: math.unit(11 + 9/12, "feet"),
  40071. default: true
  40072. },
  40073. ]
  40074. ))
  40075. characterMakers.push(() => makeCharacter(
  40076. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40077. {
  40078. side: {
  40079. height: math.unit(9, "feet"),
  40080. name: "Side",
  40081. image: {
  40082. source: "./media/characters/rymel/side.svg",
  40083. extra: 792/469,
  40084. bottom: 121/913
  40085. }
  40086. },
  40087. maw: {
  40088. height: math.unit(2.4, "meters"),
  40089. name: "Maw",
  40090. image: {
  40091. source: "./media/characters/rymel/maw.svg"
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "House Drake",
  40098. height: math.unit(2, "feet")
  40099. },
  40100. {
  40101. name: "Reduced",
  40102. height: math.unit(4.5, "feet")
  40103. },
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(9, "feet"),
  40107. default: true
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(1.74, "meters"),
  40116. weight: math.unit(55, "kg"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/rubus/front.svg",
  40120. extra: 1894/1742,
  40121. bottom: 44/1938
  40122. }
  40123. },
  40124. },
  40125. [
  40126. {
  40127. name: "Normal",
  40128. height: math.unit(1.74, "meters"),
  40129. default: true
  40130. },
  40131. ]
  40132. ))
  40133. characterMakers.push(() => makeCharacter(
  40134. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40135. {
  40136. front: {
  40137. height: math.unit(5 + 2/12, "feet"),
  40138. weight: math.unit(112, "lb"),
  40139. name: "Front",
  40140. image: {
  40141. source: "./media/characters/cassie-kingston/front.svg",
  40142. extra: 1438/1390,
  40143. bottom: 47/1485
  40144. }
  40145. },
  40146. },
  40147. [
  40148. {
  40149. name: "Normal",
  40150. height: math.unit(5 + 2/12, "feet"),
  40151. default: true
  40152. },
  40153. {
  40154. name: "Macro",
  40155. height: math.unit(128, "feet")
  40156. },
  40157. {
  40158. name: "Megamacro",
  40159. height: math.unit(2.56, "miles")
  40160. },
  40161. ]
  40162. ))
  40163. characterMakers.push(() => makeCharacter(
  40164. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40165. {
  40166. front: {
  40167. height: math.unit(7, "feet"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/fox/front.svg",
  40171. extra: 1798/1703,
  40172. bottom: 55/1853
  40173. }
  40174. },
  40175. back: {
  40176. height: math.unit(7, "feet"),
  40177. name: "Back",
  40178. image: {
  40179. source: "./media/characters/fox/back.svg",
  40180. extra: 1748/1649,
  40181. bottom: 32/1780
  40182. }
  40183. },
  40184. head: {
  40185. height: math.unit(1.95, "feet"),
  40186. name: "Head",
  40187. image: {
  40188. source: "./media/characters/fox/head.svg"
  40189. }
  40190. },
  40191. dick: {
  40192. height: math.unit(1.33, "feet"),
  40193. name: "Dick",
  40194. image: {
  40195. source: "./media/characters/fox/dick.svg"
  40196. }
  40197. },
  40198. foot: {
  40199. height: math.unit(1, "feet"),
  40200. name: "Foot",
  40201. image: {
  40202. source: "./media/characters/fox/foot.svg"
  40203. }
  40204. },
  40205. paw: {
  40206. height: math.unit(0.92, "feet"),
  40207. name: "Paw",
  40208. image: {
  40209. source: "./media/characters/fox/paw.svg"
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Small",
  40216. height: math.unit(3, "inches")
  40217. },
  40218. {
  40219. name: "\"Realistic\"",
  40220. height: math.unit(7, "feet")
  40221. },
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(150, "feet"),
  40225. default: true
  40226. },
  40227. {
  40228. name: "BIG",
  40229. height: math.unit(1200, "feet")
  40230. },
  40231. {
  40232. name: "👀",
  40233. height: math.unit(5, "miles")
  40234. },
  40235. {
  40236. name: "👀👀👀",
  40237. height: math.unit(64, "miles")
  40238. },
  40239. ]
  40240. ))
  40241. characterMakers.push(() => makeCharacter(
  40242. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40243. {
  40244. front: {
  40245. height: math.unit(625, "feet"),
  40246. name: "Front",
  40247. image: {
  40248. source: "./media/characters/asonja-rossa/front.svg",
  40249. extra: 1833/1686,
  40250. bottom: 24/1857
  40251. }
  40252. },
  40253. back: {
  40254. height: math.unit(625, "feet"),
  40255. name: "Back",
  40256. image: {
  40257. source: "./media/characters/asonja-rossa/back.svg",
  40258. extra: 1852/1753,
  40259. bottom: 26/1878
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Macro",
  40266. height: math.unit(625, "feet"),
  40267. default: true
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40273. {
  40274. side: {
  40275. height: math.unit(8, "feet"),
  40276. name: "Side",
  40277. image: {
  40278. source: "./media/characters/rezukii/side.svg",
  40279. extra: 979/542,
  40280. bottom: 87/1066
  40281. }
  40282. },
  40283. sitting: {
  40284. height: math.unit(14.6, "feet"),
  40285. name: "Sitting",
  40286. image: {
  40287. source: "./media/characters/rezukii/sitting.svg",
  40288. extra: 1023/813,
  40289. bottom: 45/1068
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Tiny",
  40296. height: math.unit(2, "feet")
  40297. },
  40298. {
  40299. name: "Smol",
  40300. height: math.unit(4, "feet")
  40301. },
  40302. {
  40303. name: "Normal",
  40304. height: math.unit(8, "feet"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "Big",
  40309. height: math.unit(12, "feet")
  40310. },
  40311. {
  40312. name: "Macro",
  40313. height: math.unit(30, "feet")
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(14, "feet"),
  40322. weight: math.unit(9.5, "tonnes"),
  40323. name: "Front",
  40324. image: {
  40325. source: "./media/characters/dawnheart/front.svg",
  40326. extra: 2792/2675,
  40327. bottom: 64/2856
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(14, "feet"),
  40335. default: true
  40336. },
  40337. ]
  40338. ))
  40339. characterMakers.push(() => makeCharacter(
  40340. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40341. {
  40342. front: {
  40343. height: math.unit(1.7, "m"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/gladi/front.svg",
  40347. extra: 1460/1362,
  40348. bottom: 19/1479
  40349. }
  40350. },
  40351. back: {
  40352. height: math.unit(1.7, "m"),
  40353. name: "Back",
  40354. image: {
  40355. source: "./media/characters/gladi/back.svg",
  40356. extra: 1459/1357,
  40357. bottom: 12/1471
  40358. }
  40359. },
  40360. feral: {
  40361. height: math.unit(2.05, "m"),
  40362. name: "Feral",
  40363. image: {
  40364. source: "./media/characters/gladi/feral.svg",
  40365. extra: 821/557,
  40366. bottom: 91/912
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Shortest",
  40373. height: math.unit(70, "cm")
  40374. },
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(1.7, "m")
  40378. },
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(10, "m"),
  40382. default: true
  40383. },
  40384. {
  40385. name: "Tallest",
  40386. height: math.unit(200, "m")
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40392. {
  40393. front: {
  40394. height: math.unit(5 + 7/12, "feet"),
  40395. weight: math.unit(2, "tons"),
  40396. name: "Front",
  40397. image: {
  40398. source: "./media/characters/erdno/front.svg",
  40399. extra: 1234/1129,
  40400. bottom: 35/1269
  40401. }
  40402. },
  40403. angled: {
  40404. height: math.unit(5 + 7/12, "feet"),
  40405. weight: math.unit(2, "tons"),
  40406. name: "Angled",
  40407. image: {
  40408. source: "./media/characters/erdno/angled.svg",
  40409. extra: 1185/1139,
  40410. bottom: 36/1221
  40411. }
  40412. },
  40413. side: {
  40414. height: math.unit(5 + 7/12, "feet"),
  40415. weight: math.unit(2, "tons"),
  40416. name: "Side",
  40417. image: {
  40418. source: "./media/characters/erdno/side.svg",
  40419. extra: 1191/1144,
  40420. bottom: 40/1231
  40421. }
  40422. },
  40423. back: {
  40424. height: math.unit(5 + 7/12, "feet"),
  40425. weight: math.unit(2, "tons"),
  40426. name: "Back",
  40427. image: {
  40428. source: "./media/characters/erdno/back.svg",
  40429. extra: 1202/1146,
  40430. bottom: 17/1219
  40431. }
  40432. },
  40433. frontNsfw: {
  40434. height: math.unit(5 + 7/12, "feet"),
  40435. weight: math.unit(2, "tons"),
  40436. name: "Front (NSFW)",
  40437. image: {
  40438. source: "./media/characters/erdno/front-nsfw.svg",
  40439. extra: 1234/1129,
  40440. bottom: 35/1269
  40441. }
  40442. },
  40443. angledNsfw: {
  40444. height: math.unit(5 + 7/12, "feet"),
  40445. weight: math.unit(2, "tons"),
  40446. name: "Angled (NSFW)",
  40447. image: {
  40448. source: "./media/characters/erdno/angled-nsfw.svg",
  40449. extra: 1185/1139,
  40450. bottom: 36/1221
  40451. }
  40452. },
  40453. sideNsfw: {
  40454. height: math.unit(5 + 7/12, "feet"),
  40455. weight: math.unit(2, "tons"),
  40456. name: "Side (NSFW)",
  40457. image: {
  40458. source: "./media/characters/erdno/side-nsfw.svg",
  40459. extra: 1191/1144,
  40460. bottom: 40/1231
  40461. }
  40462. },
  40463. backNsfw: {
  40464. height: math.unit(5 + 7/12, "feet"),
  40465. weight: math.unit(2, "tons"),
  40466. name: "Back (NSFW)",
  40467. image: {
  40468. source: "./media/characters/erdno/back-nsfw.svg",
  40469. extra: 1202/1146,
  40470. bottom: 17/1219
  40471. }
  40472. },
  40473. frontHyper: {
  40474. height: math.unit(5 + 7/12, "feet"),
  40475. weight: math.unit(2, "tons"),
  40476. name: "Front (Hyper)",
  40477. image: {
  40478. source: "./media/characters/erdno/front-hyper.svg",
  40479. extra: 1298/1136,
  40480. bottom: 35/1333
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(5 + 7/12, "feet"),
  40488. default: true
  40489. },
  40490. {
  40491. name: "Big",
  40492. height: math.unit(5.7, "meters")
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(5.7, "kilometers")
  40497. },
  40498. {
  40499. name: "Megamacro",
  40500. height: math.unit(5.7, "earths")
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(5 + 10/12, "feet"),
  40509. weight: math.unit(150, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/jamie/front.svg",
  40513. extra: 1908/1768,
  40514. bottom: 19/1927
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Minimum",
  40521. height: math.unit(2, "cm")
  40522. },
  40523. {
  40524. name: "Micro",
  40525. height: math.unit(3, "inches")
  40526. },
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(5 + 10/12, "feet"),
  40530. default: true
  40531. },
  40532. {
  40533. name: "Macro",
  40534. height: math.unit(150, "feet")
  40535. },
  40536. {
  40537. name: "Megamacro",
  40538. height: math.unit(10000, "m")
  40539. },
  40540. ]
  40541. ))
  40542. characterMakers.push(() => makeCharacter(
  40543. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40544. {
  40545. front: {
  40546. height: math.unit(2, "meters"),
  40547. weight: math.unit(100, "kg"),
  40548. name: "Front",
  40549. image: {
  40550. source: "./media/characters/shiron/front.svg",
  40551. extra: 2103/1985,
  40552. bottom: 98/2201
  40553. }
  40554. },
  40555. back: {
  40556. height: math.unit(2, "meters"),
  40557. weight: math.unit(100, "kg"),
  40558. name: "Back",
  40559. image: {
  40560. source: "./media/characters/shiron/back.svg",
  40561. extra: 2110/2015,
  40562. bottom: 89/2199
  40563. }
  40564. },
  40565. hand: {
  40566. height: math.unit(0.96, "feet"),
  40567. name: "Hand",
  40568. image: {
  40569. source: "./media/characters/shiron/hand.svg"
  40570. }
  40571. },
  40572. foot: {
  40573. height: math.unit(1.464, "feet"),
  40574. name: "Foot",
  40575. image: {
  40576. source: "./media/characters/shiron/foot.svg"
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Normal",
  40583. height: math.unit(2, "meters")
  40584. },
  40585. {
  40586. name: "Macro",
  40587. height: math.unit(500, "meters"),
  40588. default: true
  40589. },
  40590. {
  40591. name: "Megamacro",
  40592. height: math.unit(20, "km")
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(6, "feet"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/sam/front.svg",
  40604. extra: 849/826,
  40605. bottom: 19/868
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Normal",
  40612. height: math.unit(6, "feet"),
  40613. default: true
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40619. {
  40620. front: {
  40621. height: math.unit(8 + 4/12, "feet"),
  40622. weight: math.unit(122, "kg"),
  40623. name: "Front",
  40624. image: {
  40625. source: "./media/characters/namori-kurogawa/front.svg",
  40626. extra: 1894/1576,
  40627. bottom: 34/1928
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(8 + 4/12, "feet"),
  40635. default: true
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40641. {
  40642. front: {
  40643. height: math.unit(9, "feet"),
  40644. weight: math.unit(621, "lb"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/unmru/front.svg",
  40648. extra: 1853/1747,
  40649. bottom: 73/1926
  40650. }
  40651. },
  40652. side: {
  40653. height: math.unit(9, "feet"),
  40654. weight: math.unit(621, "lb"),
  40655. name: "Side",
  40656. image: {
  40657. source: "./media/characters/unmru/side.svg",
  40658. extra: 1781/1671,
  40659. bottom: 127/1908
  40660. }
  40661. },
  40662. back: {
  40663. height: math.unit(9, "feet"),
  40664. weight: math.unit(621, "lb"),
  40665. name: "Back",
  40666. image: {
  40667. source: "./media/characters/unmru/back.svg",
  40668. extra: 1894/1765,
  40669. bottom: 75/1969
  40670. }
  40671. },
  40672. dick: {
  40673. height: math.unit(3, "feet"),
  40674. weight: math.unit(35, "lb"),
  40675. name: "Dick",
  40676. image: {
  40677. source: "./media/characters/unmru/dick.svg"
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(9, "feet")
  40685. },
  40686. {
  40687. name: "Natural",
  40688. height: math.unit(27, "feet"),
  40689. default: true
  40690. },
  40691. {
  40692. name: "Giant",
  40693. height: math.unit(90, "feet")
  40694. },
  40695. {
  40696. name: "Kaiju",
  40697. height: math.unit(270, "feet")
  40698. },
  40699. {
  40700. name: "Macro",
  40701. height: math.unit(900, "feet")
  40702. },
  40703. {
  40704. name: "Macro+",
  40705. height: math.unit(2700, "feet")
  40706. },
  40707. {
  40708. name: "Megamacro",
  40709. height: math.unit(9000, "feet")
  40710. },
  40711. {
  40712. name: "City-Crushing",
  40713. height: math.unit(27000, "feet")
  40714. },
  40715. {
  40716. name: "Mountain-Mashing",
  40717. height: math.unit(90000, "feet")
  40718. },
  40719. {
  40720. name: "Earth-Eclipsing",
  40721. height: math.unit(2.7e8, "feet")
  40722. },
  40723. {
  40724. name: "Sol-Swallowing",
  40725. height: math.unit(9e10, "feet")
  40726. },
  40727. {
  40728. name: "Majoris-Munching",
  40729. height: math.unit(2.7e13, "feet")
  40730. },
  40731. ]
  40732. ))
  40733. characterMakers.push(() => makeCharacter(
  40734. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40735. {
  40736. front: {
  40737. height: math.unit(1, "inch"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/squeaks-mouse/front.svg",
  40741. extra: 352/308,
  40742. bottom: 25/377
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Micro",
  40749. height: math.unit(1, "inch"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40756. {
  40757. side: {
  40758. height: math.unit(35, "feet"),
  40759. name: "Side",
  40760. image: {
  40761. source: "./media/characters/sayko/side.svg",
  40762. extra: 1697/1021,
  40763. bottom: 82/1779
  40764. }
  40765. },
  40766. head: {
  40767. height: math.unit(16, "feet"),
  40768. name: "Head",
  40769. image: {
  40770. source: "./media/characters/sayko/head.svg"
  40771. }
  40772. },
  40773. forepaw: {
  40774. height: math.unit(7.85, "feet"),
  40775. name: "Forepaw",
  40776. image: {
  40777. source: "./media/characters/sayko/forepaw.svg"
  40778. }
  40779. },
  40780. hindpaw: {
  40781. height: math.unit(8.8, "feet"),
  40782. name: "Hindpaw",
  40783. image: {
  40784. source: "./media/characters/sayko/hindpaw.svg"
  40785. }
  40786. },
  40787. },
  40788. [
  40789. {
  40790. name: "Normal",
  40791. height: math.unit(35, "feet"),
  40792. default: true
  40793. },
  40794. {
  40795. name: "Colossus",
  40796. height: math.unit(100, "meters")
  40797. },
  40798. {
  40799. name: "\"Small\" Deity",
  40800. height: math.unit(1, "km")
  40801. },
  40802. {
  40803. name: "\"Large\" Deity",
  40804. height: math.unit(15, "km")
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40810. {
  40811. front: {
  40812. height: math.unit(6, "feet"),
  40813. weight: math.unit(250, "lb"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/mukiro/front.svg",
  40817. extra: 1368/1310,
  40818. bottom: 34/1402
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(6, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(12 + 4/12, "feet"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40838. extra: 1346/1311,
  40839. bottom: 65/1411
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Base",
  40846. height: math.unit(12 + 4/12, "feet"),
  40847. default: true
  40848. },
  40849. {
  40850. name: "Macro",
  40851. height: math.unit(150, "feet")
  40852. },
  40853. {
  40854. name: "Mega",
  40855. height: math.unit(2, "miles")
  40856. },
  40857. {
  40858. name: "Demi God",
  40859. height: math.unit(4, "AU")
  40860. },
  40861. {
  40862. name: "God Size",
  40863. height: math.unit(1, "universe")
  40864. },
  40865. ]
  40866. ))
  40867. characterMakers.push(() => makeCharacter(
  40868. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40869. {
  40870. front: {
  40871. height: math.unit(3 + 3/12, "feet"),
  40872. weight: math.unit(88, "lb"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/trey/front.svg",
  40876. extra: 1815/1509,
  40877. bottom: 60/1875
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(3 + 3/12, "feet"),
  40885. default: true
  40886. },
  40887. ]
  40888. ))
  40889. characterMakers.push(() => makeCharacter(
  40890. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40891. {
  40892. front: {
  40893. height: math.unit(4, "meters"),
  40894. name: "Front",
  40895. image: {
  40896. source: "./media/characters/adelonda/front.svg",
  40897. extra: 1077/982,
  40898. bottom: 39/1116
  40899. }
  40900. },
  40901. back: {
  40902. height: math.unit(4, "meters"),
  40903. name: "Back",
  40904. image: {
  40905. source: "./media/characters/adelonda/back.svg",
  40906. extra: 1105/1003,
  40907. bottom: 25/1130
  40908. }
  40909. },
  40910. feral: {
  40911. height: math.unit(40/1.5, "meters"),
  40912. name: "Feral",
  40913. image: {
  40914. source: "./media/characters/adelonda/feral.svg",
  40915. extra: 597/271,
  40916. bottom: 387/984
  40917. }
  40918. },
  40919. },
  40920. [
  40921. {
  40922. name: "Normal",
  40923. height: math.unit(4, "meters"),
  40924. default: true
  40925. },
  40926. ]
  40927. ))
  40928. characterMakers.push(() => makeCharacter(
  40929. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40930. {
  40931. front: {
  40932. height: math.unit(8 + 4/12, "feet"),
  40933. weight: math.unit(670, "lb"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/acadiel/front.svg",
  40937. extra: 1901/1595,
  40938. bottom: 142/2043
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(8 + 4/12, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Macro",
  40950. height: math.unit(200, "feet")
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40956. {
  40957. front: {
  40958. height: math.unit(6 + 2/12, "feet"),
  40959. weight: math.unit(185, "lb"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/kayne-ein/front.svg",
  40963. extra: 1780/1560,
  40964. bottom: 81/1861
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(6 + 2/12, "feet"),
  40972. default: true
  40973. },
  40974. {
  40975. name: "Transformation Stage",
  40976. height: math.unit(15, "feet")
  40977. },
  40978. {
  40979. name: "Macro",
  40980. height: math.unit(150, "feet")
  40981. },
  40982. {
  40983. name: "Earth's Shadow",
  40984. height: math.unit(6200, "miles")
  40985. },
  40986. {
  40987. name: "Universal Demon",
  40988. height: math.unit(28e9, "parsecs")
  40989. },
  40990. {
  40991. name: "Multiverse God",
  40992. height: math.unit(3, "multiverses")
  40993. },
  40994. ]
  40995. ))
  40996. characterMakers.push(() => makeCharacter(
  40997. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40998. {
  40999. front: {
  41000. height: math.unit(5 + 5/12, "feet"),
  41001. name: "Front",
  41002. image: {
  41003. source: "./media/characters/fawn/front.svg",
  41004. extra: 1873/1731,
  41005. bottom: 95/1968
  41006. }
  41007. },
  41008. back: {
  41009. height: math.unit(5 + 5/12, "feet"),
  41010. name: "Back",
  41011. image: {
  41012. source: "./media/characters/fawn/back.svg",
  41013. extra: 1813/1700,
  41014. bottom: 14/1827
  41015. }
  41016. },
  41017. hoof: {
  41018. height: math.unit(1.45, "feet"),
  41019. name: "Hoof",
  41020. image: {
  41021. source: "./media/characters/fawn/hoof.svg"
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(5 + 5/12, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41035. {
  41036. front: {
  41037. height: math.unit(2 + 5/12, "feet"),
  41038. name: "Front",
  41039. image: {
  41040. source: "./media/characters/orion/front.svg",
  41041. extra: 1366/1304,
  41042. bottom: 43/1409
  41043. }
  41044. },
  41045. paw: {
  41046. height: math.unit(0.52, "feet"),
  41047. name: "Paw",
  41048. image: {
  41049. source: "./media/characters/orion/paw.svg"
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Normal",
  41056. height: math.unit(2 + 5/12, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41063. {
  41064. front: {
  41065. height: math.unit(5 + 10/12, "feet"),
  41066. name: "Front",
  41067. image: {
  41068. source: "./media/characters/vera/front.svg",
  41069. extra: 1680/1575,
  41070. bottom: 49/1729
  41071. }
  41072. },
  41073. back: {
  41074. height: math.unit(5 + 10/12, "feet"),
  41075. name: "Back",
  41076. image: {
  41077. source: "./media/characters/vera/back.svg",
  41078. extra: 1700/1588,
  41079. bottom: 18/1718
  41080. }
  41081. },
  41082. arcanine: {
  41083. height: math.unit(6 + 8/12, "feet"),
  41084. name: "Arcanine",
  41085. image: {
  41086. source: "./media/characters/vera/arcanine.svg",
  41087. extra: 1590/1511,
  41088. bottom: 71/1661
  41089. }
  41090. },
  41091. maw: {
  41092. height: math.unit(0.82, "feet"),
  41093. name: "Maw",
  41094. image: {
  41095. source: "./media/characters/vera/maw.svg"
  41096. }
  41097. },
  41098. mawArcanine: {
  41099. height: math.unit(0.97, "feet"),
  41100. name: "Maw (Arcanine)",
  41101. image: {
  41102. source: "./media/characters/vera/maw-arcanine.svg"
  41103. }
  41104. },
  41105. paw: {
  41106. height: math.unit(0.75, "feet"),
  41107. name: "Paw",
  41108. image: {
  41109. source: "./media/characters/vera/paw.svg"
  41110. }
  41111. },
  41112. pawprint: {
  41113. height: math.unit(0.52, "feet"),
  41114. name: "Pawprint",
  41115. image: {
  41116. source: "./media/characters/vera/pawprint.svg"
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Normal",
  41123. height: math.unit(5 + 10/12, "feet"),
  41124. default: true
  41125. },
  41126. {
  41127. name: "Macro",
  41128. height: math.unit(75, "feet")
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(4, "feet"),
  41137. weight: math.unit(40, "lb"),
  41138. name: "Front",
  41139. image: {
  41140. source: "./media/characters/orvan-rabbit/front.svg",
  41141. extra: 1896/1642,
  41142. bottom: 29/1925
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Normal",
  41149. height: math.unit(4, "feet"),
  41150. default: true
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(6, "feet"),
  41159. weight: math.unit(168, "lb"),
  41160. name: "Front",
  41161. image: {
  41162. source: "./media/characters/lisa/front.svg",
  41163. extra: 2065/1867,
  41164. bottom: 46/2111
  41165. }
  41166. },
  41167. back: {
  41168. height: math.unit(6, "feet"),
  41169. weight: math.unit(168, "lb"),
  41170. name: "Back",
  41171. image: {
  41172. source: "./media/characters/lisa/back.svg",
  41173. extra: 1982/1838,
  41174. bottom: 29/2011
  41175. }
  41176. },
  41177. maw: {
  41178. height: math.unit(0.81, "feet"),
  41179. name: "Maw",
  41180. image: {
  41181. source: "./media/characters/lisa/maw.svg"
  41182. }
  41183. },
  41184. paw: {
  41185. height: math.unit(0.9, "feet"),
  41186. name: "Paw",
  41187. image: {
  41188. source: "./media/characters/lisa/paw.svg"
  41189. }
  41190. },
  41191. caribousune: {
  41192. height: math.unit(7 + 2/12, "feet"),
  41193. weight: math.unit(268, "lb"),
  41194. name: "Caribousune",
  41195. image: {
  41196. source: "./media/characters/lisa/caribousune.svg",
  41197. extra: 1843/1633,
  41198. bottom: 29/1872
  41199. }
  41200. },
  41201. frontCaribousune: {
  41202. height: math.unit(7 + 2/12, "feet"),
  41203. weight: math.unit(268, "lb"),
  41204. name: "Front (Caribousune)",
  41205. image: {
  41206. source: "./media/characters/lisa/front-caribousune.svg",
  41207. extra: 1818/1638,
  41208. bottom: 52/1870
  41209. }
  41210. },
  41211. sideCaribousune: {
  41212. height: math.unit(7 + 2/12, "feet"),
  41213. weight: math.unit(268, "lb"),
  41214. name: "Side (Caribousune)",
  41215. image: {
  41216. source: "./media/characters/lisa/side-caribousune.svg",
  41217. extra: 1851/1635,
  41218. bottom: 16/1867
  41219. }
  41220. },
  41221. backCaribousune: {
  41222. height: math.unit(7 + 2/12, "feet"),
  41223. weight: math.unit(268, "lb"),
  41224. name: "Back (Caribousune)",
  41225. image: {
  41226. source: "./media/characters/lisa/back-caribousune.svg",
  41227. extra: 1801/1604,
  41228. bottom: 44/1845
  41229. }
  41230. },
  41231. caribou: {
  41232. height: math.unit(7 + 2/12, "feet"),
  41233. weight: math.unit(268, "lb"),
  41234. name: "Caribou",
  41235. image: {
  41236. source: "./media/characters/lisa/caribou.svg",
  41237. extra: 1843/1633,
  41238. bottom: 29/1872
  41239. }
  41240. },
  41241. frontCaribou: {
  41242. height: math.unit(7 + 2/12, "feet"),
  41243. weight: math.unit(268, "lb"),
  41244. name: "Front (Caribou)",
  41245. image: {
  41246. source: "./media/characters/lisa/front-caribou.svg",
  41247. extra: 1818/1638,
  41248. bottom: 52/1870
  41249. }
  41250. },
  41251. sideCaribou: {
  41252. height: math.unit(7 + 2/12, "feet"),
  41253. weight: math.unit(268, "lb"),
  41254. name: "Side (Caribou)",
  41255. image: {
  41256. source: "./media/characters/lisa/side-caribou.svg",
  41257. extra: 1851/1635,
  41258. bottom: 16/1867
  41259. }
  41260. },
  41261. backCaribou: {
  41262. height: math.unit(7 + 2/12, "feet"),
  41263. weight: math.unit(268, "lb"),
  41264. name: "Back (Caribou)",
  41265. image: {
  41266. source: "./media/characters/lisa/back-caribou.svg",
  41267. extra: 1801/1604,
  41268. bottom: 44/1845
  41269. }
  41270. },
  41271. mawCaribou: {
  41272. height: math.unit(1.45, "feet"),
  41273. name: "Maw (Caribou)",
  41274. image: {
  41275. source: "./media/characters/lisa/maw-caribou.svg"
  41276. }
  41277. },
  41278. mawCaribousune: {
  41279. height: math.unit(1.45, "feet"),
  41280. name: "Maw (Caribousune)",
  41281. image: {
  41282. source: "./media/characters/lisa/maw-caribousune.svg"
  41283. }
  41284. },
  41285. pawCaribousune: {
  41286. height: math.unit(1.61, "feet"),
  41287. name: "Paw (Caribou)",
  41288. image: {
  41289. source: "./media/characters/lisa/paw-caribousune.svg"
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(6, "feet")
  41297. },
  41298. {
  41299. name: "God Size",
  41300. height: math.unit(72, "feet"),
  41301. default: true
  41302. },
  41303. {
  41304. name: "Towering",
  41305. height: math.unit(288, "feet")
  41306. },
  41307. {
  41308. name: "City Size",
  41309. height: math.unit(48384, "feet")
  41310. },
  41311. {
  41312. name: "Continental",
  41313. height: math.unit(4200, "miles")
  41314. },
  41315. {
  41316. name: "Planet Eater",
  41317. height: math.unit(42, "earths")
  41318. },
  41319. {
  41320. name: "Star Swallower",
  41321. height: math.unit(42, "solarradii")
  41322. },
  41323. {
  41324. name: "System Swallower",
  41325. height: math.unit(84000, "AU")
  41326. },
  41327. {
  41328. name: "Galaxy Gobbler",
  41329. height: math.unit(42, "galaxies")
  41330. },
  41331. {
  41332. name: "Universe Devourer",
  41333. height: math.unit(42, "universes")
  41334. },
  41335. {
  41336. name: "Multiverse Muncher",
  41337. height: math.unit(42, "multiverses")
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(36, "feet"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/shadow-rat/front.svg",
  41349. extra: 1845/1758,
  41350. bottom: 83/1928
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Macro",
  41357. height: math.unit(36, "feet"),
  41358. default: true
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41364. {
  41365. side: {
  41366. height: math.unit(8, "feet"),
  41367. weight: math.unit(2630, "lb"),
  41368. name: "Side",
  41369. image: {
  41370. source: "./media/characters/torallia/side.svg",
  41371. extra: 2164/2021,
  41372. bottom: 371/2535
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Mortal Interaction",
  41379. height: math.unit(8, "feet")
  41380. },
  41381. {
  41382. name: "Natural",
  41383. height: math.unit(24, "feet"),
  41384. default: true
  41385. },
  41386. {
  41387. name: "Giant",
  41388. height: math.unit(80, "feet")
  41389. },
  41390. {
  41391. name: "Kaiju",
  41392. height: math.unit(240, "feet")
  41393. },
  41394. {
  41395. name: "Macro",
  41396. height: math.unit(800, "feet")
  41397. },
  41398. {
  41399. name: "Macro+",
  41400. height: math.unit(2400, "feet")
  41401. },
  41402. {
  41403. name: "Macro++",
  41404. height: math.unit(8000, "feet")
  41405. },
  41406. {
  41407. name: "City-Crushing",
  41408. height: math.unit(24000, "feet")
  41409. },
  41410. {
  41411. name: "Mountain-Mashing",
  41412. height: math.unit(80000, "feet")
  41413. },
  41414. {
  41415. name: "District Demolisher",
  41416. height: math.unit(240000, "feet")
  41417. },
  41418. {
  41419. name: "Tri-County Terror",
  41420. height: math.unit(800000, "feet")
  41421. },
  41422. {
  41423. name: "State Smasher",
  41424. height: math.unit(2.4e6, "feet")
  41425. },
  41426. {
  41427. name: "Nation Nemesis",
  41428. height: math.unit(8e6, "feet")
  41429. },
  41430. {
  41431. name: "Continent Cracker",
  41432. height: math.unit(2.4e7, "feet")
  41433. },
  41434. {
  41435. name: "Planet-Pillaging",
  41436. height: math.unit(8e7, "feet")
  41437. },
  41438. {
  41439. name: "Earth-Eclipsing",
  41440. height: math.unit(2.4e8, "feet")
  41441. },
  41442. {
  41443. name: "Jovian-Jostling",
  41444. height: math.unit(8e8, "feet")
  41445. },
  41446. {
  41447. name: "Gas Giant Gulper",
  41448. height: math.unit(2.4e9, "feet")
  41449. },
  41450. {
  41451. name: "Astral Annihilator",
  41452. height: math.unit(8e9, "feet")
  41453. },
  41454. {
  41455. name: "Celestial Conqueror",
  41456. height: math.unit(2.4e10, "feet")
  41457. },
  41458. {
  41459. name: "Sol-Swallowing",
  41460. height: math.unit(8e10, "feet")
  41461. },
  41462. {
  41463. name: "Hunter of the Heavens",
  41464. height: math.unit(2.4e13, "feet")
  41465. },
  41466. ]
  41467. ))
  41468. characterMakers.push(() => makeCharacter(
  41469. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41470. {
  41471. front: {
  41472. height: math.unit(10, "feet"),
  41473. weight: math.unit(844, "kilograms"),
  41474. name: "Front",
  41475. image: {
  41476. source: "./media/characters/rebecca-pawlson/front.svg",
  41477. extra: 1196/1099,
  41478. bottom: 81/1277
  41479. },
  41480. extraAttributes: {
  41481. "pawSize": {
  41482. name: "Paw Size",
  41483. power: 2,
  41484. type: "area",
  41485. base: math.unit(0.2 * 0.375, "meters^2")
  41486. },
  41487. "handSize": {
  41488. name: "Hand Size",
  41489. power: 2,
  41490. type: "area",
  41491. base: math.unit(0.2 * 0.35, "meters^2")
  41492. },
  41493. "breastDiameter": {
  41494. name: "Breast Diameter",
  41495. power: 1,
  41496. type: "length",
  41497. base: math.unit(0.5, "meters")
  41498. },
  41499. "breastVolume": {
  41500. name: "Breast Volume",
  41501. power: 3,
  41502. type: "volume",
  41503. base: math.unit(0.065, "m^3")
  41504. },
  41505. "breastMass": {
  41506. name: "Breast Mass",
  41507. power: 3,
  41508. type: "mass",
  41509. base: math.unit(65, "kg")
  41510. },
  41511. "nippleDiameter": {
  41512. name: "Nipple Diameter",
  41513. power: 1,
  41514. type: "length",
  41515. base: math.unit(0.1, "meters")
  41516. },
  41517. }
  41518. },
  41519. back: {
  41520. height: math.unit(10, "feet"),
  41521. weight: math.unit(844, "kilograms"),
  41522. name: "Back",
  41523. image: {
  41524. source: "./media/characters/rebecca-pawlson/back.svg",
  41525. extra: 879/776,
  41526. bottom: 43/922
  41527. },
  41528. extraAttributes: {
  41529. "pawSize": {
  41530. name: "Paw Size",
  41531. power: 2,
  41532. type: "area",
  41533. base: math.unit(0.2 * 0.375, "meters^2")
  41534. },
  41535. "handSize": {
  41536. name: "Hand Size",
  41537. power: 2,
  41538. type: "area",
  41539. base: math.unit(0.2 * 0.35, "meters^2")
  41540. },
  41541. "breastDiameter": {
  41542. name: "Breast Diameter",
  41543. power: 1,
  41544. type: "length",
  41545. base: math.unit(0.5, "meters")
  41546. },
  41547. "breastVolume": {
  41548. name: "Breast Volume",
  41549. power: 3,
  41550. type: "volume",
  41551. base: math.unit(0.065, "m^3")
  41552. },
  41553. "breastMass": {
  41554. name: "Breast Mass",
  41555. power: 3,
  41556. type: "mass",
  41557. base: math.unit(65, "kg")
  41558. },
  41559. "nippleDiameter": {
  41560. name: "Nipple Diameter",
  41561. power: 1,
  41562. type: "length",
  41563. base: math.unit(0.1, "meters")
  41564. },
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Normal",
  41571. height: math.unit(6 + 8/12, "feet")
  41572. },
  41573. {
  41574. name: "Mini Macro",
  41575. height: math.unit(10, "feet"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Macro",
  41580. height: math.unit(100, "feet")
  41581. },
  41582. {
  41583. name: "Mega Macro",
  41584. height: math.unit(2500, "feet")
  41585. },
  41586. {
  41587. name: "Giga Macro",
  41588. height: math.unit(50, "miles")
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41594. {
  41595. front: {
  41596. height: math.unit(7 + 6/12, "feet"),
  41597. weight: math.unit(600, "lb"),
  41598. name: "Front",
  41599. image: {
  41600. source: "./media/characters/moxie-nova/front.svg",
  41601. extra: 1734/1652,
  41602. bottom: 41/1775
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Normal",
  41609. height: math.unit(7 + 6/12, "feet"),
  41610. default: true
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41616. {
  41617. goat: {
  41618. height: math.unit(4, "feet"),
  41619. weight: math.unit(180, "lb"),
  41620. name: "Goat",
  41621. image: {
  41622. source: "./media/characters/tiffany/goat.svg",
  41623. extra: 1845/1595,
  41624. bottom: 106/1951
  41625. }
  41626. },
  41627. front: {
  41628. height: math.unit(5, "feet"),
  41629. weight: math.unit(150, "lb"),
  41630. name: "Foxcoon",
  41631. image: {
  41632. source: "./media/characters/tiffany/foxcoon.svg",
  41633. extra: 1941/1845,
  41634. bottom: 58/1999
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Normal",
  41641. height: math.unit(5, "feet"),
  41642. default: true
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(8, "feet"),
  41651. weight: math.unit(300, "lb"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/raxinath/front.svg",
  41655. extra: 1407/1309,
  41656. bottom: 39/1446
  41657. }
  41658. },
  41659. back: {
  41660. height: math.unit(8, "feet"),
  41661. weight: math.unit(300, "lb"),
  41662. name: "Back",
  41663. image: {
  41664. source: "./media/characters/raxinath/back.svg",
  41665. extra: 1405/1315,
  41666. bottom: 9/1414
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Speck",
  41673. height: math.unit(0.5, "nm")
  41674. },
  41675. {
  41676. name: "Micro",
  41677. height: math.unit(3, "inches")
  41678. },
  41679. {
  41680. name: "Kobold",
  41681. height: math.unit(3, "feet")
  41682. },
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(8, "feet"),
  41686. default: true
  41687. },
  41688. {
  41689. name: "Giant",
  41690. height: math.unit(50, "feet")
  41691. },
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(1000, "feet")
  41695. },
  41696. {
  41697. name: "Megamacro",
  41698. height: math.unit(1, "mile")
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(10, "feet"),
  41707. weight: math.unit(1442, "lb"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/mal-dragon/front.svg",
  41711. extra: 1515/1444,
  41712. bottom: 113/1628
  41713. }
  41714. },
  41715. back: {
  41716. height: math.unit(10, "feet"),
  41717. weight: math.unit(1442, "lb"),
  41718. name: "Back",
  41719. image: {
  41720. source: "./media/characters/mal-dragon/back.svg",
  41721. extra: 1527/1434,
  41722. bottom: 25/1552
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Mortal Interaction",
  41729. height: math.unit(10, "feet"),
  41730. default: true
  41731. },
  41732. {
  41733. name: "Large",
  41734. height: math.unit(30, "feet")
  41735. },
  41736. {
  41737. name: "Kaiju",
  41738. height: math.unit(300, "feet")
  41739. },
  41740. {
  41741. name: "Megamacro",
  41742. height: math.unit(10000, "feet")
  41743. },
  41744. {
  41745. name: "Continent Cracker",
  41746. height: math.unit(30000000, "feet")
  41747. },
  41748. {
  41749. name: "Sol-Swallowing",
  41750. height: math.unit(1e11, "feet")
  41751. },
  41752. {
  41753. name: "Light Universal",
  41754. height: math.unit(5, "universes")
  41755. },
  41756. {
  41757. name: "Universe Atoms",
  41758. height: math.unit(1.829e9, "universes")
  41759. },
  41760. {
  41761. name: "Light Multiversal",
  41762. height: math.unit(5, "multiverses")
  41763. },
  41764. {
  41765. name: "Multiverse Atoms",
  41766. height: math.unit(1.829e9, "multiverses")
  41767. },
  41768. {
  41769. name: "Fabric of Time",
  41770. height: math.unit(1e262, "multiverses")
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(9, "feet"),
  41779. weight: math.unit(1050, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/tabitha/front.svg",
  41783. extra: 2083/1994,
  41784. bottom: 68/2151
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Baseline",
  41791. height: math.unit(9, "feet"),
  41792. default: true
  41793. },
  41794. {
  41795. name: "Giant",
  41796. height: math.unit(90, "feet")
  41797. },
  41798. {
  41799. name: "Macro",
  41800. height: math.unit(900, "feet")
  41801. },
  41802. {
  41803. name: "Megamacro",
  41804. height: math.unit(9000, "feet")
  41805. },
  41806. {
  41807. name: "City-Crushing",
  41808. height: math.unit(27000, "feet")
  41809. },
  41810. {
  41811. name: "Mountain-Mashing",
  41812. height: math.unit(90000, "feet")
  41813. },
  41814. {
  41815. name: "Nation Nemesis",
  41816. height: math.unit(9e6, "feet")
  41817. },
  41818. {
  41819. name: "Continent Cracker",
  41820. height: math.unit(27e6, "feet")
  41821. },
  41822. {
  41823. name: "Earth-Eclipsing",
  41824. height: math.unit(2.7e8, "feet")
  41825. },
  41826. {
  41827. name: "Gas Giant Gulper",
  41828. height: math.unit(2.7e9, "feet")
  41829. },
  41830. {
  41831. name: "Sol-Swallowing",
  41832. height: math.unit(9e10, "feet")
  41833. },
  41834. {
  41835. name: "Galaxy Gulper",
  41836. height: math.unit(9, "galaxies")
  41837. },
  41838. {
  41839. name: "Cosmos Churner",
  41840. height: math.unit(9, "universes")
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(160, "cm"),
  41849. weight: math.unit(55, "kg"),
  41850. name: "Front",
  41851. image: {
  41852. source: "./media/characters/tow/front.svg",
  41853. extra: 1751/1722,
  41854. bottom: 74/1825
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Norm",
  41861. height: math.unit(160, "cm")
  41862. },
  41863. {
  41864. name: "Casual",
  41865. height: math.unit(3200, "m"),
  41866. default: true
  41867. },
  41868. {
  41869. name: "Show-Off",
  41870. height: math.unit(160, "km")
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41876. {
  41877. front: {
  41878. height: math.unit(7 + 11/12, "feet"),
  41879. weight: math.unit(342.8, "lb"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/vivian-orca-dragon/front.svg",
  41883. extra: 1890/1865,
  41884. bottom: 28/1918
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Micro",
  41891. height: math.unit(5, "inches")
  41892. },
  41893. {
  41894. name: "Normal",
  41895. height: math.unit(7 + 11/12, "feet"),
  41896. default: true
  41897. },
  41898. {
  41899. name: "Macro",
  41900. height: math.unit(395 + 7/12, "feet")
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41906. {
  41907. side: {
  41908. height: math.unit(10, "feet"),
  41909. weight: math.unit(1442, "lb"),
  41910. name: "Side",
  41911. image: {
  41912. source: "./media/characters/lotherakon/side.svg",
  41913. extra: 1604/1497,
  41914. bottom: 89/1693
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Mortal Interaction",
  41921. height: math.unit(10, "feet")
  41922. },
  41923. {
  41924. name: "Large",
  41925. height: math.unit(30, "feet"),
  41926. default: true
  41927. },
  41928. {
  41929. name: "Giant",
  41930. height: math.unit(100, "feet")
  41931. },
  41932. {
  41933. name: "Kaiju",
  41934. height: math.unit(300, "feet")
  41935. },
  41936. {
  41937. name: "Macro",
  41938. height: math.unit(1000, "feet")
  41939. },
  41940. {
  41941. name: "Macro+",
  41942. height: math.unit(3000, "feet")
  41943. },
  41944. {
  41945. name: "Megamacro",
  41946. height: math.unit(10000, "feet")
  41947. },
  41948. {
  41949. name: "City-Crushing",
  41950. height: math.unit(30000, "feet")
  41951. },
  41952. {
  41953. name: "Continent Cracker",
  41954. height: math.unit(30e6, "feet")
  41955. },
  41956. {
  41957. name: "Earth Eclipsing",
  41958. height: math.unit(3e8, "feet")
  41959. },
  41960. {
  41961. name: "Gas Giant Gulper",
  41962. height: math.unit(3e9, "feet")
  41963. },
  41964. {
  41965. name: "Sol-Swallowing",
  41966. height: math.unit(1e11, "feet")
  41967. },
  41968. {
  41969. name: "System Swallower",
  41970. height: math.unit(3e14, "feet")
  41971. },
  41972. {
  41973. name: "Galaxy Gulper",
  41974. height: math.unit(10, "galaxies")
  41975. },
  41976. {
  41977. name: "Light Universal",
  41978. height: math.unit(5, "universes")
  41979. },
  41980. {
  41981. name: "Universe Palm",
  41982. height: math.unit(20, "universes")
  41983. },
  41984. {
  41985. name: "Light Multiversal",
  41986. height: math.unit(5, "multiverses")
  41987. },
  41988. {
  41989. name: "Multiverse Palm",
  41990. height: math.unit(20, "multiverses")
  41991. },
  41992. {
  41993. name: "Inferno Incarnate",
  41994. height: math.unit(1e7, "multiverses")
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42000. {
  42001. front: {
  42002. height: math.unit(8, "feet"),
  42003. weight: math.unit(1200, "lb"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/malithee/front.svg",
  42007. extra: 1675/1640,
  42008. bottom: 162/1837
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Mortal Interaction",
  42015. height: math.unit(8, "feet"),
  42016. default: true
  42017. },
  42018. {
  42019. name: "Large",
  42020. height: math.unit(24, "feet")
  42021. },
  42022. {
  42023. name: "Kaiju",
  42024. height: math.unit(240, "feet")
  42025. },
  42026. {
  42027. name: "Megamacro",
  42028. height: math.unit(8000, "feet")
  42029. },
  42030. {
  42031. name: "Continent Cracker",
  42032. height: math.unit(24e6, "feet")
  42033. },
  42034. {
  42035. name: "Earth-Eclipsing",
  42036. height: math.unit(2.4e8, "feet")
  42037. },
  42038. {
  42039. name: "Sol-Swallowing",
  42040. height: math.unit(8e10, "feet")
  42041. },
  42042. {
  42043. name: "Galaxy Gulper",
  42044. height: math.unit(8, "galaxies")
  42045. },
  42046. {
  42047. name: "Light Universal",
  42048. height: math.unit(4, "universes")
  42049. },
  42050. {
  42051. name: "Universe Atoms",
  42052. height: math.unit(1.829e9, "universes")
  42053. },
  42054. {
  42055. name: "Light Multiversal",
  42056. height: math.unit(4, "multiverses")
  42057. },
  42058. {
  42059. name: "Multiverse Atoms",
  42060. height: math.unit(1.829e9, "multiverses")
  42061. },
  42062. {
  42063. name: "Nigh-Omnipresence",
  42064. height: math.unit(8e261, "multiverses")
  42065. },
  42066. ]
  42067. ))
  42068. characterMakers.push(() => makeCharacter(
  42069. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42070. {
  42071. front: {
  42072. height: math.unit(10, "feet"),
  42073. weight: math.unit(1500, "lb"),
  42074. name: "Front",
  42075. image: {
  42076. source: "./media/characters/miles-thestia/front.svg",
  42077. extra: 1812/1727,
  42078. bottom: 86/1898
  42079. }
  42080. },
  42081. back: {
  42082. height: math.unit(10, "feet"),
  42083. weight: math.unit(1500, "lb"),
  42084. name: "Back",
  42085. image: {
  42086. source: "./media/characters/miles-thestia/back.svg",
  42087. extra: 1799/1690,
  42088. bottom: 47/1846
  42089. }
  42090. },
  42091. frontNsfw: {
  42092. height: math.unit(10, "feet"),
  42093. weight: math.unit(1500, "lb"),
  42094. name: "Front (NSFW)",
  42095. image: {
  42096. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42097. extra: 1812/1727,
  42098. bottom: 86/1898
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Mini-Macro",
  42105. height: math.unit(10, "feet"),
  42106. default: true
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(25, "feet"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/titan-s-wulf/front.svg",
  42118. extra: 1560/1484,
  42119. bottom: 76/1636
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Smallest",
  42126. height: math.unit(25, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(200, "feet")
  42132. },
  42133. {
  42134. name: "Macro",
  42135. height: math.unit(200000, "feet")
  42136. },
  42137. {
  42138. name: "Multiversal Original",
  42139. height: math.unit(10000, "multiverses")
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42145. {
  42146. front: {
  42147. height: math.unit(8, "feet"),
  42148. weight: math.unit(553, "lb"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/tawendeh/front.svg",
  42152. extra: 2365/2268,
  42153. bottom: 83/2448
  42154. }
  42155. },
  42156. frontClothed: {
  42157. height: math.unit(8, "feet"),
  42158. weight: math.unit(553, "lb"),
  42159. name: "Front (Clothed)",
  42160. image: {
  42161. source: "./media/characters/tawendeh/front-clothed.svg",
  42162. extra: 2365/2268,
  42163. bottom: 83/2448
  42164. }
  42165. },
  42166. back: {
  42167. height: math.unit(8, "feet"),
  42168. weight: math.unit(553, "lb"),
  42169. name: "Back",
  42170. image: {
  42171. source: "./media/characters/tawendeh/back.svg",
  42172. extra: 2397/2294,
  42173. bottom: 42/2439
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Mortal Interaction",
  42180. height: math.unit(8, "feet"),
  42181. default: true
  42182. },
  42183. {
  42184. name: "Giant",
  42185. height: math.unit(80, "feet")
  42186. },
  42187. {
  42188. name: "Macro",
  42189. height: math.unit(800, "feet")
  42190. },
  42191. {
  42192. name: "Megamacro",
  42193. height: math.unit(8000, "feet")
  42194. },
  42195. {
  42196. name: "City-Crushing",
  42197. height: math.unit(24000, "feet")
  42198. },
  42199. {
  42200. name: "Mountain-Mashing",
  42201. height: math.unit(80000, "feet")
  42202. },
  42203. {
  42204. name: "Nation Nemesis",
  42205. height: math.unit(8e6, "feet")
  42206. },
  42207. {
  42208. name: "Continent Cracker",
  42209. height: math.unit(24e6, "feet")
  42210. },
  42211. {
  42212. name: "Earth-Eclipsing",
  42213. height: math.unit(2.4e8, "feet")
  42214. },
  42215. {
  42216. name: "Gas Giant Gulper",
  42217. height: math.unit(2.4e9, "feet")
  42218. },
  42219. {
  42220. name: "Sol-Swallowing",
  42221. height: math.unit(8e10, "feet")
  42222. },
  42223. {
  42224. name: "Galaxy Gulper",
  42225. height: math.unit(8, "galaxies")
  42226. },
  42227. {
  42228. name: "Cosmos Churner",
  42229. height: math.unit(8, "universes")
  42230. },
  42231. {
  42232. name: "Omnipotent Otter",
  42233. height: math.unit(80, "universes")
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42239. {
  42240. front: {
  42241. height: math.unit(2.6, "meters"),
  42242. weight: math.unit(900, "kg"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/neesha/front.svg",
  42246. extra: 1803/1653,
  42247. bottom: 128/1931
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(2.6, "meters"),
  42255. default: true
  42256. },
  42257. {
  42258. name: "Macro",
  42259. height: math.unit(50, "meters")
  42260. },
  42261. ]
  42262. ))
  42263. characterMakers.push(() => makeCharacter(
  42264. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42265. {
  42266. front: {
  42267. height: math.unit(5, "feet"),
  42268. weight: math.unit(185, "lb"),
  42269. name: "Front",
  42270. image: {
  42271. source: "./media/characters/kyera/front.svg",
  42272. extra: 1875/1790,
  42273. bottom: 96/1971
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Normal",
  42280. height: math.unit(5, "feet"),
  42281. default: true
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(7 + 6/12, "feet"),
  42290. weight: math.unit(540, "lb"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/yuko/front.svg",
  42294. extra: 1282/1222,
  42295. bottom: 101/1383
  42296. }
  42297. },
  42298. frontClothed: {
  42299. height: math.unit(7 + 6/12, "feet"),
  42300. weight: math.unit(540, "lb"),
  42301. name: "Front (Clothed)",
  42302. image: {
  42303. source: "./media/characters/yuko/front-clothed.svg",
  42304. extra: 1282/1222,
  42305. bottom: 101/1383
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(7 + 6/12, "feet"),
  42313. default: true
  42314. },
  42315. {
  42316. name: "Macro",
  42317. height: math.unit(26 + 9/12, "feet")
  42318. },
  42319. {
  42320. name: "Megamacro",
  42321. height: math.unit(300, "feet")
  42322. },
  42323. {
  42324. name: "Gigamacro",
  42325. height: math.unit(5000, "feet")
  42326. },
  42327. {
  42328. name: "Planetary",
  42329. height: math.unit(10000, "miles")
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(8 + 2/12, "feet"),
  42338. weight: math.unit(600, "lb"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/deam-nitrel/front.svg",
  42342. extra: 1308/1234,
  42343. bottom: 125/1433
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(8 + 2/12, "feet"),
  42351. default: true
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(6.1, "feet"),
  42360. weight: math.unit(180, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/skyress/front.svg",
  42364. extra: 1045/915,
  42365. bottom: 28/1073
  42366. }
  42367. },
  42368. maw: {
  42369. height: math.unit(1, "feet"),
  42370. name: "Maw",
  42371. image: {
  42372. source: "./media/characters/skyress/maw.svg"
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Normal",
  42379. height: math.unit(6.1, "feet"),
  42380. default: true
  42381. },
  42382. {
  42383. name: "Macro",
  42384. height: math.unit(200, "feet")
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42390. {
  42391. front: {
  42392. height: math.unit(4 + 2/12, "feet"),
  42393. weight: math.unit(40, "kg"),
  42394. name: "Front",
  42395. image: {
  42396. source: "./media/characters/amethyst-jones/front.svg",
  42397. extra: 1220/1150,
  42398. bottom: 101/1321
  42399. }
  42400. },
  42401. },
  42402. [
  42403. {
  42404. name: "Normal",
  42405. height: math.unit(4 + 2/12, "feet"),
  42406. default: true
  42407. },
  42408. ]
  42409. ))
  42410. characterMakers.push(() => makeCharacter(
  42411. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42412. {
  42413. front: {
  42414. height: math.unit(1.7, "m"),
  42415. weight: math.unit(135, "lb"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/jade/front.svg",
  42419. extra: 1818/1767,
  42420. bottom: 32/1850
  42421. }
  42422. },
  42423. back: {
  42424. height: math.unit(1.7, "m"),
  42425. weight: math.unit(135, "lb"),
  42426. name: "Back",
  42427. image: {
  42428. source: "./media/characters/jade/back.svg",
  42429. extra: 1869/1809,
  42430. bottom: 35/1904
  42431. }
  42432. },
  42433. hand: {
  42434. height: math.unit(0.24, "m"),
  42435. name: "Hand",
  42436. image: {
  42437. source: "./media/characters/jade/hand.svg"
  42438. }
  42439. },
  42440. foot: {
  42441. height: math.unit(0.263, "m"),
  42442. name: "Foot",
  42443. image: {
  42444. source: "./media/characters/jade/foot.svg"
  42445. }
  42446. },
  42447. dick: {
  42448. height: math.unit(0.47, "m"),
  42449. name: "Dick",
  42450. image: {
  42451. source: "./media/characters/jade/dick.svg"
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Micro",
  42458. height: math.unit(22, "cm")
  42459. },
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(1.7, "m"),
  42463. default: true
  42464. },
  42465. {
  42466. name: "Macro",
  42467. height: math.unit(152, "m")
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(100, "miles"),
  42476. weight: math.unit(20000, "tons"),
  42477. name: "Front",
  42478. image: {
  42479. source: "./media/characters/cookie/front.svg",
  42480. extra: 1125/1070,
  42481. bottom: 30/1155
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Big",
  42488. height: math.unit(50, "feet")
  42489. },
  42490. {
  42491. name: "Macro",
  42492. height: math.unit(100, "miles"),
  42493. default: true
  42494. },
  42495. {
  42496. name: "Megamacro",
  42497. height: math.unit(90000, "miles")
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42503. {
  42504. front: {
  42505. height: math.unit(6, "feet"),
  42506. weight: math.unit(145, "lb"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/farzian/front.svg",
  42510. extra: 1902/1693,
  42511. bottom: 108/2010
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Macro",
  42518. height: math.unit(500, "feet"),
  42519. default: true
  42520. },
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42525. {
  42526. front: {
  42527. height: math.unit(3 + 6/12, "feet"),
  42528. weight: math.unit(50, "lb"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/kimberly-tilson/front.svg",
  42532. extra: 1400/1322,
  42533. bottom: 36/1436
  42534. }
  42535. },
  42536. back: {
  42537. height: math.unit(3 + 6/12, "feet"),
  42538. weight: math.unit(50, "lb"),
  42539. name: "Back",
  42540. image: {
  42541. source: "./media/characters/kimberly-tilson/back.svg",
  42542. extra: 1370/1307,
  42543. bottom: 20/1390
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(3 + 6/12, "feet"),
  42551. default: true
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(350, "meters"),
  42560. weight: math.unit(7.57059e+8, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/harthos/front.svg",
  42564. extra: 455/446,
  42565. bottom: 15/470
  42566. },
  42567. form: "peacekeeper",
  42568. default: true
  42569. },
  42570. allusus_front: {
  42571. height: math.unit(270, "meters"),
  42572. weight: math.unit(3.47550e+8, "lb"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/harthos/allusus-front.svg",
  42576. extra: 455/446,
  42577. bottom: 15/470
  42578. },
  42579. form: "allusus",
  42580. },
  42581. },
  42582. [
  42583. {
  42584. name: "Macro",
  42585. height: math.unit(350, "meters"),
  42586. default: true,
  42587. form: "peacekeeper"
  42588. },
  42589. {
  42590. name: "Macro",
  42591. height: math.unit(270, "meters"),
  42592. default: true,
  42593. form: "allusus"
  42594. },
  42595. ],
  42596. {
  42597. "peacekeeper": {
  42598. name: "Peacekeeper",
  42599. default: true
  42600. },
  42601. "allusus": {
  42602. name: "Allusus",
  42603. },
  42604. }
  42605. ))
  42606. characterMakers.push(() => makeCharacter(
  42607. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42608. {
  42609. front: {
  42610. height: math.unit(15, "feet"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/hypatia/front.svg",
  42614. extra: 1653/1591,
  42615. bottom: 79/1732
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(15, "feet")
  42623. },
  42624. {
  42625. name: "Small",
  42626. height: math.unit(300, "feet")
  42627. },
  42628. {
  42629. name: "Macro",
  42630. height: math.unit(2500, "feet"),
  42631. default: true
  42632. },
  42633. {
  42634. name: "Mega Macro",
  42635. height: math.unit(1500, "miles")
  42636. },
  42637. {
  42638. name: "Giga Macro",
  42639. height: math.unit(1.5e6, "miles")
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(6, "feet"),
  42648. weight: math.unit(200, "lb"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/wulver/front.svg",
  42652. extra: 1724/1632,
  42653. bottom: 130/1854
  42654. }
  42655. },
  42656. frontNsfw: {
  42657. height: math.unit(6, "feet"),
  42658. weight: math.unit(200, "lb"),
  42659. name: "Front (NSFW)",
  42660. image: {
  42661. source: "./media/characters/wulver/front-nsfw.svg",
  42662. extra: 1724/1632,
  42663. bottom: 130/1854
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Human-Sized",
  42670. height: math.unit(6, "feet")
  42671. },
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(4, "meters"),
  42675. default: true
  42676. },
  42677. {
  42678. name: "Large",
  42679. height: math.unit(6, "m")
  42680. },
  42681. ]
  42682. ))
  42683. characterMakers.push(() => makeCharacter(
  42684. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42685. {
  42686. front: {
  42687. height: math.unit(7, "feet"),
  42688. name: "Front",
  42689. image: {
  42690. source: "./media/characters/maru/front.svg",
  42691. extra: 1595/1570,
  42692. bottom: 0/1595
  42693. }
  42694. },
  42695. },
  42696. [
  42697. {
  42698. name: "Normal",
  42699. height: math.unit(7, "feet"),
  42700. default: true
  42701. },
  42702. {
  42703. name: "Macro",
  42704. height: math.unit(700, "feet")
  42705. },
  42706. {
  42707. name: "Mega Macro",
  42708. height: math.unit(25, "miles")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42714. {
  42715. front: {
  42716. height: math.unit(6, "feet"),
  42717. weight: math.unit(170, "lb"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/xenon/front.svg",
  42721. extra: 1376/1305,
  42722. bottom: 56/1432
  42723. }
  42724. },
  42725. back: {
  42726. height: math.unit(6, "feet"),
  42727. weight: math.unit(170, "lb"),
  42728. name: "Back",
  42729. image: {
  42730. source: "./media/characters/xenon/back.svg",
  42731. extra: 1328/1259,
  42732. bottom: 95/1423
  42733. }
  42734. },
  42735. maw: {
  42736. height: math.unit(0.52, "feet"),
  42737. name: "Maw",
  42738. image: {
  42739. source: "./media/characters/xenon/maw.svg"
  42740. }
  42741. },
  42742. handLeft: {
  42743. height: math.unit(0.82 * 169 / 153, "feet"),
  42744. name: "Hand (Left)",
  42745. image: {
  42746. source: "./media/characters/xenon/hand-left.svg"
  42747. }
  42748. },
  42749. handRight: {
  42750. height: math.unit(0.82, "feet"),
  42751. name: "Hand (Right)",
  42752. image: {
  42753. source: "./media/characters/xenon/hand-right.svg"
  42754. }
  42755. },
  42756. footLeft: {
  42757. height: math.unit(1.13, "feet"),
  42758. name: "Foot (Left)",
  42759. image: {
  42760. source: "./media/characters/xenon/foot-left.svg"
  42761. }
  42762. },
  42763. footRight: {
  42764. height: math.unit(1.13 * 194 / 196, "feet"),
  42765. name: "Foot (Right)",
  42766. image: {
  42767. source: "./media/characters/xenon/foot-right.svg"
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Micro",
  42774. height: math.unit(0.8, "inches")
  42775. },
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(6, "feet")
  42779. },
  42780. {
  42781. name: "Macro",
  42782. height: math.unit(50, "feet"),
  42783. default: true
  42784. },
  42785. {
  42786. name: "Macro+",
  42787. height: math.unit(250, "feet")
  42788. },
  42789. {
  42790. name: "Megamacro",
  42791. height: math.unit(1500, "feet")
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(7 + 5/12, "feet"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/zane/front.svg",
  42803. extra: 1260/1203,
  42804. bottom: 94/1354
  42805. }
  42806. },
  42807. back: {
  42808. height: math.unit(5.05, "feet"),
  42809. name: "Back",
  42810. image: {
  42811. source: "./media/characters/zane/back.svg",
  42812. extra: 893/829,
  42813. bottom: 30/923
  42814. }
  42815. },
  42816. werewolf: {
  42817. height: math.unit(11, "feet"),
  42818. name: "Werewolf",
  42819. image: {
  42820. source: "./media/characters/zane/werewolf.svg",
  42821. extra: 1383/1323,
  42822. bottom: 89/1472
  42823. }
  42824. },
  42825. foot: {
  42826. height: math.unit(1.46, "feet"),
  42827. name: "Foot",
  42828. image: {
  42829. source: "./media/characters/zane/foot.svg"
  42830. }
  42831. },
  42832. footFront: {
  42833. height: math.unit(0.784, "feet"),
  42834. name: "Foot (Front)",
  42835. image: {
  42836. source: "./media/characters/zane/foot-front.svg"
  42837. }
  42838. },
  42839. dick: {
  42840. height: math.unit(1.95, "feet"),
  42841. name: "Dick",
  42842. image: {
  42843. source: "./media/characters/zane/dick.svg"
  42844. }
  42845. },
  42846. dickWerewolf: {
  42847. height: math.unit(3.77, "feet"),
  42848. name: "Dick (Werewolf)",
  42849. image: {
  42850. source: "./media/characters/zane/dick.svg"
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Normal",
  42857. height: math.unit(7 + 5/12, "feet"),
  42858. default: true
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42864. {
  42865. front: {
  42866. height: math.unit(6 + 2/12, "feet"),
  42867. weight: math.unit(284, "lb"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/benni-desparque/front.svg",
  42871. extra: 1353/1126,
  42872. bottom: 69/1422
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Civilian",
  42879. height: math.unit(6 + 2/12, "feet")
  42880. },
  42881. {
  42882. name: "Normal",
  42883. height: math.unit(98, "feet"),
  42884. default: true
  42885. },
  42886. {
  42887. name: "Kaiju Fighter",
  42888. height: math.unit(268, "feet")
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42894. {
  42895. front: {
  42896. height: math.unit(5, "feet"),
  42897. weight: math.unit(105, "lb"),
  42898. name: "Front",
  42899. image: {
  42900. source: "./media/characters/maxine/front.svg",
  42901. extra: 1386/1250,
  42902. bottom: 71/1457
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Normal",
  42909. height: math.unit(5, "feet"),
  42910. default: true
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42916. {
  42917. front: {
  42918. height: math.unit(11 + 7/12, "feet"),
  42919. weight: math.unit(9576, "lb"),
  42920. name: "Front",
  42921. image: {
  42922. source: "./media/characters/scaly/front.svg",
  42923. extra: 888/867,
  42924. bottom: 36/924
  42925. }
  42926. },
  42927. },
  42928. [
  42929. {
  42930. name: "Normal",
  42931. height: math.unit(11 + 7/12, "feet"),
  42932. default: true
  42933. },
  42934. ]
  42935. ))
  42936. characterMakers.push(() => makeCharacter(
  42937. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42938. {
  42939. front: {
  42940. height: math.unit(6 + 3/12, "feet"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/saelria/front.svg",
  42944. extra: 1243/1138,
  42945. bottom: 46/1289
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Micro",
  42952. height: math.unit(6, "inches"),
  42953. },
  42954. {
  42955. name: "Normal",
  42956. height: math.unit(6 + 3/12, "feet"),
  42957. default: true
  42958. },
  42959. {
  42960. name: "Macro",
  42961. height: math.unit(25, "feet")
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42967. {
  42968. front: {
  42969. height: math.unit(80, "meters"),
  42970. weight: math.unit(7000, "tonnes"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/tef/front.svg",
  42974. extra: 2036/1991,
  42975. bottom: 54/2090
  42976. }
  42977. },
  42978. back: {
  42979. height: math.unit(80, "meters"),
  42980. weight: math.unit(7000, "tonnes"),
  42981. name: "Back",
  42982. image: {
  42983. source: "./media/characters/tef/back.svg",
  42984. extra: 2036/1991,
  42985. bottom: 54/2090
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Macro",
  42992. height: math.unit(80, "meters"),
  42993. default: true
  42994. },
  42995. ]
  42996. ))
  42997. characterMakers.push(() => makeCharacter(
  42998. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42999. {
  43000. front: {
  43001. height: math.unit(13, "feet"),
  43002. weight: math.unit(6, "tons"),
  43003. name: "Front",
  43004. image: {
  43005. source: "./media/characters/rover/front.svg",
  43006. extra: 1233/1156,
  43007. bottom: 50/1283
  43008. }
  43009. },
  43010. back: {
  43011. height: math.unit(13, "feet"),
  43012. weight: math.unit(6, "tons"),
  43013. name: "Back",
  43014. image: {
  43015. source: "./media/characters/rover/back.svg",
  43016. extra: 1327/1258,
  43017. bottom: 39/1366
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Normal",
  43024. height: math.unit(13, "feet"),
  43025. default: true
  43026. },
  43027. {
  43028. name: "Macro",
  43029. height: math.unit(1300, "feet")
  43030. },
  43031. {
  43032. name: "Megamacro",
  43033. height: math.unit(1300, "miles")
  43034. },
  43035. {
  43036. name: "Gigamacro",
  43037. height: math.unit(1300000, "miles")
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43043. {
  43044. front: {
  43045. height: math.unit(10, "feet"),
  43046. weight: math.unit(500, "lb"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/ariz/front.svg",
  43050. extra: 461/450,
  43051. bottom: 16/477
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "MiniMacro",
  43058. height: math.unit(10, "feet"),
  43059. default: true
  43060. },
  43061. ]
  43062. ))
  43063. characterMakers.push(() => makeCharacter(
  43064. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43065. {
  43066. front: {
  43067. height: math.unit(6, "feet"),
  43068. weight: math.unit(140, "lb"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/sigrun/front.svg",
  43072. extra: 1418/1359,
  43073. bottom: 27/1445
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(35, "feet"),
  43081. default: true
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(6, "feet"),
  43090. weight: math.unit(150, "lb"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/numin/front.svg",
  43094. extra: 1433/1388,
  43095. bottom: 12/1445
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Macro",
  43102. height: math.unit(21.5, "km"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(6, "feet"),
  43112. weight: math.unit(463, "lb"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/melwa/front.svg",
  43116. extra: 1307/1248,
  43117. bottom: 93/1400
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Macro",
  43124. height: math.unit(50, "meters"),
  43125. default: true
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43131. {
  43132. front: {
  43133. height: math.unit(325, "feet"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/zorkaiju/front.svg",
  43137. extra: 1955/1814,
  43138. bottom: 40/1995
  43139. }
  43140. },
  43141. frontExtended: {
  43142. height: math.unit(325, "feet"),
  43143. name: "Front (Extended)",
  43144. image: {
  43145. source: "./media/characters/zorkaiju/front-extended.svg",
  43146. extra: 1955/1814,
  43147. bottom: 40/1995
  43148. }
  43149. },
  43150. side: {
  43151. height: math.unit(325, "feet"),
  43152. name: "Side",
  43153. image: {
  43154. source: "./media/characters/zorkaiju/side.svg",
  43155. extra: 1495/1396,
  43156. bottom: 17/1512
  43157. }
  43158. },
  43159. sideExtended: {
  43160. height: math.unit(325, "feet"),
  43161. name: "Side (Extended)",
  43162. image: {
  43163. source: "./media/characters/zorkaiju/side-extended.svg",
  43164. extra: 1495/1396,
  43165. bottom: 17/1512
  43166. }
  43167. },
  43168. back: {
  43169. height: math.unit(325, "feet"),
  43170. name: "Back",
  43171. image: {
  43172. source: "./media/characters/zorkaiju/back.svg",
  43173. extra: 1959/1821,
  43174. bottom: 31/1990
  43175. }
  43176. },
  43177. backExtended: {
  43178. height: math.unit(325, "feet"),
  43179. name: "Back (Extended)",
  43180. image: {
  43181. source: "./media/characters/zorkaiju/back-extended.svg",
  43182. extra: 1959/1821,
  43183. bottom: 31/1990
  43184. }
  43185. },
  43186. hand: {
  43187. height: math.unit(58.4, "feet"),
  43188. name: "Hand",
  43189. image: {
  43190. source: "./media/characters/zorkaiju/hand.svg"
  43191. }
  43192. },
  43193. handExtended: {
  43194. height: math.unit(61.4, "feet"),
  43195. name: "Hand (Extended)",
  43196. image: {
  43197. source: "./media/characters/zorkaiju/hand-extended.svg"
  43198. }
  43199. },
  43200. foot: {
  43201. height: math.unit(95, "feet"),
  43202. name: "Foot",
  43203. image: {
  43204. source: "./media/characters/zorkaiju/foot.svg"
  43205. }
  43206. },
  43207. leftArm: {
  43208. height: math.unit(59, "feet"),
  43209. name: "Left Arm",
  43210. image: {
  43211. source: "./media/characters/zorkaiju/left-arm.svg"
  43212. }
  43213. },
  43214. rightArm: {
  43215. height: math.unit(59, "feet"),
  43216. name: "Right Arm",
  43217. image: {
  43218. source: "./media/characters/zorkaiju/right-arm.svg"
  43219. }
  43220. },
  43221. leftArmExtended: {
  43222. height: math.unit(59 * 1.033546, "feet"),
  43223. name: "Left Arm (Extended)",
  43224. image: {
  43225. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43226. }
  43227. },
  43228. rightArmExtended: {
  43229. height: math.unit(59 * 1.0496, "feet"),
  43230. name: "Right Arm (Extended)",
  43231. image: {
  43232. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43233. }
  43234. },
  43235. tail: {
  43236. height: math.unit(104, "feet"),
  43237. name: "Tail",
  43238. image: {
  43239. source: "./media/characters/zorkaiju/tail.svg"
  43240. }
  43241. },
  43242. tailExtended: {
  43243. height: math.unit(104, "feet"),
  43244. name: "Tail (Extended)",
  43245. image: {
  43246. source: "./media/characters/zorkaiju/tail-extended.svg"
  43247. }
  43248. },
  43249. tailBottom: {
  43250. height: math.unit(104, "feet"),
  43251. name: "Tail Bottom",
  43252. image: {
  43253. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43254. }
  43255. },
  43256. crystal: {
  43257. height: math.unit(27.54, "feet"),
  43258. name: "Crystal",
  43259. image: {
  43260. source: "./media/characters/zorkaiju/crystal.svg"
  43261. }
  43262. },
  43263. },
  43264. [
  43265. {
  43266. name: "Kaiju",
  43267. height: math.unit(325, "feet"),
  43268. default: true
  43269. },
  43270. ]
  43271. ))
  43272. characterMakers.push(() => makeCharacter(
  43273. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43274. {
  43275. front: {
  43276. height: math.unit(6 + 1/12, "feet"),
  43277. weight: math.unit(115, "lb"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/bailey-belfry/front.svg",
  43281. extra: 1240/1121,
  43282. bottom: 101/1341
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Normal",
  43289. height: math.unit(6 + 1/12, "feet"),
  43290. default: true
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43296. {
  43297. side: {
  43298. height: math.unit(4, "meters"),
  43299. weight: math.unit(250, "kg"),
  43300. name: "Side",
  43301. image: {
  43302. source: "./media/characters/blacky/side.svg",
  43303. extra: 1027/919,
  43304. bottom: 43/1070
  43305. }
  43306. },
  43307. maw: {
  43308. height: math.unit(1, "meters"),
  43309. name: "Maw",
  43310. image: {
  43311. source: "./media/characters/blacky/maw.svg"
  43312. }
  43313. },
  43314. paw: {
  43315. height: math.unit(1, "meters"),
  43316. name: "Paw",
  43317. image: {
  43318. source: "./media/characters/blacky/paw.svg"
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(4, "meters"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43332. {
  43333. front: {
  43334. height: math.unit(170, "cm"),
  43335. weight: math.unit(66, "kg"),
  43336. name: "Front",
  43337. image: {
  43338. source: "./media/characters/thux-ei/front.svg",
  43339. extra: 1109/1011,
  43340. bottom: 8/1117
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(170, "cm"),
  43348. default: true
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43354. {
  43355. front: {
  43356. height: math.unit(5, "feet"),
  43357. weight: math.unit(120, "lb"),
  43358. name: "Front",
  43359. image: {
  43360. source: "./media/characters/roxanne-voltaire/front.svg",
  43361. extra: 1901/1779,
  43362. bottom: 53/1954
  43363. }
  43364. },
  43365. },
  43366. [
  43367. {
  43368. name: "Normal",
  43369. height: math.unit(5, "feet"),
  43370. default: true
  43371. },
  43372. {
  43373. name: "Giant",
  43374. height: math.unit(50, "feet")
  43375. },
  43376. {
  43377. name: "Titan",
  43378. height: math.unit(500, "feet")
  43379. },
  43380. {
  43381. name: "Macro",
  43382. height: math.unit(5000, "feet")
  43383. },
  43384. {
  43385. name: "Megamacro",
  43386. height: math.unit(50000, "feet")
  43387. },
  43388. {
  43389. name: "Gigamacro",
  43390. height: math.unit(500000, "feet")
  43391. },
  43392. {
  43393. name: "Teramacro",
  43394. height: math.unit(5e6, "feet")
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(6 + 2/12, "feet"),
  43403. name: "Front",
  43404. image: {
  43405. source: "./media/characters/squeaks/front.svg",
  43406. extra: 1823/1768,
  43407. bottom: 138/1961
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Micro",
  43414. height: math.unit(0.5, "inches")
  43415. },
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(6 + 2/12, "feet"),
  43419. default: true
  43420. },
  43421. {
  43422. name: "Macro",
  43423. height: math.unit(600, "feet")
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43429. {
  43430. front: {
  43431. height: math.unit(1.72, "meters"),
  43432. name: "Front",
  43433. image: {
  43434. source: "./media/characters/archinger/front.svg",
  43435. extra: 1861/1675,
  43436. bottom: 125/1986
  43437. }
  43438. },
  43439. back: {
  43440. height: math.unit(1.72, "meters"),
  43441. name: "Back",
  43442. image: {
  43443. source: "./media/characters/archinger/back.svg",
  43444. extra: 1844/1701,
  43445. bottom: 104/1948
  43446. }
  43447. },
  43448. cock: {
  43449. height: math.unit(0.59, "feet"),
  43450. name: "Cock",
  43451. image: {
  43452. source: "./media/characters/archinger/cock.svg"
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(1.72, "meters"),
  43460. default: true
  43461. },
  43462. {
  43463. name: "Macro",
  43464. height: math.unit(84, "meters")
  43465. },
  43466. {
  43467. name: "Macro+",
  43468. height: math.unit(112, "meters")
  43469. },
  43470. {
  43471. name: "Macro++",
  43472. height: math.unit(960, "meters")
  43473. },
  43474. {
  43475. name: "Macro+++",
  43476. height: math.unit(4, "km")
  43477. },
  43478. {
  43479. name: "Macro++++",
  43480. height: math.unit(48, "km")
  43481. },
  43482. {
  43483. name: "Macro+++++",
  43484. height: math.unit(4500, "km")
  43485. },
  43486. ]
  43487. ))
  43488. characterMakers.push(() => makeCharacter(
  43489. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43490. {
  43491. front: {
  43492. height: math.unit(5 + 5/12, "feet"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/alsnapz/front.svg",
  43496. extra: 1157/1065,
  43497. bottom: 42/1199
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(5 + 5/12, "feet"),
  43505. default: true
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43511. {
  43512. side: {
  43513. height: math.unit(3.2, "earths"),
  43514. name: "Side",
  43515. image: {
  43516. source: "./media/characters/mag/side.svg",
  43517. extra: 1331/1008,
  43518. bottom: 52/1383
  43519. }
  43520. },
  43521. wing: {
  43522. height: math.unit(1.94, "earths"),
  43523. name: "Wing",
  43524. image: {
  43525. source: "./media/characters/mag/wing.svg"
  43526. }
  43527. },
  43528. dick: {
  43529. height: math.unit(1.8, "earths"),
  43530. name: "Dick",
  43531. image: {
  43532. source: "./media/characters/mag/dick.svg"
  43533. }
  43534. },
  43535. ass: {
  43536. height: math.unit(1.33, "earths"),
  43537. name: "Ass",
  43538. image: {
  43539. source: "./media/characters/mag/ass.svg"
  43540. }
  43541. },
  43542. head: {
  43543. height: math.unit(1.1, "earths"),
  43544. name: "Head",
  43545. image: {
  43546. source: "./media/characters/mag/head.svg"
  43547. }
  43548. },
  43549. maw: {
  43550. height: math.unit(1.62, "earths"),
  43551. name: "Maw",
  43552. image: {
  43553. source: "./media/characters/mag/maw.svg"
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Small",
  43560. height: math.unit(162, "feet")
  43561. },
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(3.2, "earths"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(512, "feet"),
  43574. weight: math.unit(63509, "tonnes"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/vorrel-harroc/front.svg",
  43578. extra: 1075/1063,
  43579. bottom: 62/1137
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(10, "feet")
  43587. },
  43588. {
  43589. name: "Macro",
  43590. height: math.unit(512, "feet"),
  43591. default: true
  43592. },
  43593. {
  43594. name: "Megamacro",
  43595. height: math.unit(256, "miles")
  43596. },
  43597. {
  43598. name: "Gigamacro",
  43599. height: math.unit(4096, "miles")
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43605. {
  43606. side: {
  43607. height: math.unit(50, "feet"),
  43608. name: "Side",
  43609. image: {
  43610. source: "./media/characters/froimar/side.svg",
  43611. extra: 855/638,
  43612. bottom: 99/954
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Macro",
  43619. height: math.unit(50, "feet"),
  43620. default: true
  43621. },
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43626. {
  43627. front: {
  43628. height: math.unit(210, "miles"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/timothy/front.svg",
  43632. extra: 1007/943,
  43633. bottom: 62/1069
  43634. }
  43635. },
  43636. frontSkirt: {
  43637. height: math.unit(210, "miles"),
  43638. name: "Front (Skirt)",
  43639. image: {
  43640. source: "./media/characters/timothy/front-skirt.svg",
  43641. extra: 1007/943,
  43642. bottom: 62/1069
  43643. }
  43644. },
  43645. frontCoat: {
  43646. height: math.unit(210, "miles"),
  43647. name: "Front (Coat)",
  43648. image: {
  43649. source: "./media/characters/timothy/front-coat.svg",
  43650. extra: 1007/943,
  43651. bottom: 62/1069
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Macro",
  43658. height: math.unit(210, "miles"),
  43659. default: true
  43660. },
  43661. {
  43662. name: "Megamacro",
  43663. height: math.unit(210000, "miles")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(188, "feet"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/pyotr/front.svg",
  43675. extra: 1912/1826,
  43676. bottom: 18/1930
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Macro",
  43683. height: math.unit(188, "feet"),
  43684. default: true
  43685. },
  43686. {
  43687. name: "Megamacro",
  43688. height: math.unit(8, "miles")
  43689. },
  43690. ]
  43691. ))
  43692. characterMakers.push(() => makeCharacter(
  43693. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43694. {
  43695. side: {
  43696. height: math.unit(10, "feet"),
  43697. weight: math.unit(4500, "lb"),
  43698. name: "Side",
  43699. image: {
  43700. source: "./media/characters/ackart/side.svg",
  43701. extra: 1776/1668,
  43702. bottom: 116/1892
  43703. }
  43704. },
  43705. },
  43706. [
  43707. {
  43708. name: "Normal",
  43709. height: math.unit(10, "feet"),
  43710. default: true
  43711. },
  43712. ]
  43713. ))
  43714. characterMakers.push(() => makeCharacter(
  43715. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43716. {
  43717. side: {
  43718. height: math.unit(21, "feet"),
  43719. name: "Side",
  43720. image: {
  43721. source: "./media/characters/nolow/side.svg",
  43722. extra: 1484/1434,
  43723. bottom: 85/1569
  43724. }
  43725. },
  43726. sideErect: {
  43727. height: math.unit(21, "feet"),
  43728. name: "Side-erect",
  43729. image: {
  43730. source: "./media/characters/nolow/side-erect.svg",
  43731. extra: 1484/1434,
  43732. bottom: 85/1569
  43733. }
  43734. },
  43735. },
  43736. [
  43737. {
  43738. name: "Regular",
  43739. height: math.unit(12, "feet")
  43740. },
  43741. {
  43742. name: "Big Chee",
  43743. height: math.unit(21, "feet"),
  43744. default: true
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(7, "feet"),
  43753. weight: math.unit(250, "lb"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/nines/front.svg",
  43757. extra: 1741/1607,
  43758. bottom: 41/1782
  43759. }
  43760. },
  43761. side: {
  43762. height: math.unit(7, "feet"),
  43763. weight: math.unit(250, "lb"),
  43764. name: "Side",
  43765. image: {
  43766. source: "./media/characters/nines/side.svg",
  43767. extra: 1854/1735,
  43768. bottom: 93/1947
  43769. }
  43770. },
  43771. back: {
  43772. height: math.unit(7, "feet"),
  43773. weight: math.unit(250, "lb"),
  43774. name: "Back",
  43775. image: {
  43776. source: "./media/characters/nines/back.svg",
  43777. extra: 1748/1615,
  43778. bottom: 20/1768
  43779. }
  43780. },
  43781. },
  43782. [
  43783. {
  43784. name: "Megamacro",
  43785. height: math.unit(99, "km"),
  43786. default: true
  43787. },
  43788. ]
  43789. ))
  43790. characterMakers.push(() => makeCharacter(
  43791. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43792. {
  43793. front: {
  43794. height: math.unit(5 + 10/12, "feet"),
  43795. weight: math.unit(210, "lb"),
  43796. name: "Front",
  43797. image: {
  43798. source: "./media/characters/zenith/front.svg",
  43799. extra: 1531/1452,
  43800. bottom: 198/1729
  43801. }
  43802. },
  43803. back: {
  43804. height: math.unit(5 + 10/12, "feet"),
  43805. weight: math.unit(210, "lb"),
  43806. name: "Back",
  43807. image: {
  43808. source: "./media/characters/zenith/back.svg",
  43809. extra: 1571/1487,
  43810. bottom: 75/1646
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(5 + 10/12, "feet"),
  43818. default: true
  43819. }
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43824. {
  43825. front: {
  43826. height: math.unit(4, "feet"),
  43827. weight: math.unit(60, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/jasper/front.svg",
  43831. extra: 1450/1379,
  43832. bottom: 19/1469
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(4, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43846. {
  43847. front: {
  43848. height: math.unit(6 + 5/12, "feet"),
  43849. weight: math.unit(290, "lb"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/tiberius-thyben/front.svg",
  43853. extra: 757/739,
  43854. bottom: 39/796
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Micro",
  43861. height: math.unit(1.5, "inches")
  43862. },
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(6 + 5/12, "feet"),
  43866. default: true
  43867. },
  43868. {
  43869. name: "Macro",
  43870. height: math.unit(300, "feet")
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43876. {
  43877. front: {
  43878. height: math.unit(5 + 6/12, "feet"),
  43879. weight: math.unit(60, "kg"),
  43880. name: "Front",
  43881. image: {
  43882. source: "./media/characters/sabre/front.svg",
  43883. extra: 738/671,
  43884. bottom: 27/765
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Teeny",
  43891. height: math.unit(2, "inches")
  43892. },
  43893. {
  43894. name: "Smol",
  43895. height: math.unit(8, "inches")
  43896. },
  43897. {
  43898. name: "Normal",
  43899. height: math.unit(5 + 6/12, "feet"),
  43900. default: true
  43901. },
  43902. {
  43903. name: "Mini-Macro",
  43904. height: math.unit(15, "feet")
  43905. },
  43906. {
  43907. name: "Macro",
  43908. height: math.unit(50, "feet")
  43909. },
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43914. {
  43915. front: {
  43916. height: math.unit(6 + 4/12, "feet"),
  43917. weight: math.unit(170, "lb"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/charlie/front.svg",
  43921. extra: 1348/1228,
  43922. bottom: 15/1363
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Macro",
  43929. height: math.unit(1700, "meters"),
  43930. default: true
  43931. },
  43932. {
  43933. name: "MegaMacro",
  43934. height: math.unit(20400, "meters")
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43940. {
  43941. front: {
  43942. height: math.unit(1.96, "meters"),
  43943. weight: math.unit(220, "lb"),
  43944. name: "Front",
  43945. image: {
  43946. source: "./media/characters/susan-grant/front.svg",
  43947. extra: 482/478,
  43948. bottom: 7/489
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Normal",
  43955. height: math.unit(1.96, "meters"),
  43956. default: true
  43957. },
  43958. {
  43959. name: "Macro",
  43960. height: math.unit(76.2, "meters")
  43961. },
  43962. {
  43963. name: "MegaMacro",
  43964. height: math.unit(305, "meters")
  43965. },
  43966. {
  43967. name: "GigaMacro",
  43968. height: math.unit(1220, "meters")
  43969. },
  43970. {
  43971. name: "SuperMacro",
  43972. height: math.unit(4878, "meters")
  43973. },
  43974. ]
  43975. ))
  43976. characterMakers.push(() => makeCharacter(
  43977. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43978. {
  43979. front: {
  43980. height: math.unit(5 + 4/12, "feet"),
  43981. weight: math.unit(110, "lb"),
  43982. name: "Front",
  43983. image: {
  43984. source: "./media/characters/axel-isanov/front.svg",
  43985. extra: 1096/1065,
  43986. bottom: 13/1109
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(5 + 4/12, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(9, "feet"),
  44003. weight: math.unit(467, "lb"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/necahual/front.svg",
  44007. extra: 920/873,
  44008. bottom: 26/946
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(9, "feet"),
  44013. weight: math.unit(467, "lb"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/necahual/back.svg",
  44017. extra: 930/884,
  44018. bottom: 16/946
  44019. }
  44020. },
  44021. frontUnderwear: {
  44022. height: math.unit(9, "feet"),
  44023. weight: math.unit(467, "lb"),
  44024. name: "Front (Underwear)",
  44025. image: {
  44026. source: "./media/characters/necahual/front-underwear.svg",
  44027. extra: 920/873,
  44028. bottom: 26/946
  44029. }
  44030. },
  44031. frontDressed: {
  44032. height: math.unit(9, "feet"),
  44033. weight: math.unit(467, "lb"),
  44034. name: "Front (Dressed)",
  44035. image: {
  44036. source: "./media/characters/necahual/front-dressed.svg",
  44037. extra: 920/873,
  44038. bottom: 26/946
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Comprsesed",
  44045. height: math.unit(9, "feet")
  44046. },
  44047. {
  44048. name: "Natural",
  44049. height: math.unit(15, "feet"),
  44050. default: true
  44051. },
  44052. {
  44053. name: "Boosted",
  44054. height: math.unit(50, "feet")
  44055. },
  44056. {
  44057. name: "Boosted+",
  44058. height: math.unit(150, "feet")
  44059. },
  44060. {
  44061. name: "Max",
  44062. height: math.unit(500, "feet")
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44068. {
  44069. front: {
  44070. height: math.unit(22 + 1/12, "feet"),
  44071. weight: math.unit(3200, "lb"),
  44072. name: "Front",
  44073. image: {
  44074. source: "./media/characters/theo-acacia/front.svg",
  44075. extra: 1796/1741,
  44076. bottom: 83/1879
  44077. }
  44078. },
  44079. frontUnderwear: {
  44080. height: math.unit(22 + 1/12, "feet"),
  44081. weight: math.unit(3200, "lb"),
  44082. name: "Front (Underwear)",
  44083. image: {
  44084. source: "./media/characters/theo-acacia/front-underwear.svg",
  44085. extra: 1796/1741,
  44086. bottom: 83/1879
  44087. }
  44088. },
  44089. frontNude: {
  44090. height: math.unit(22 + 1/12, "feet"),
  44091. weight: math.unit(3200, "lb"),
  44092. name: "Front (Nude)",
  44093. image: {
  44094. source: "./media/characters/theo-acacia/front-nude.svg",
  44095. extra: 1796/1741,
  44096. bottom: 83/1879
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(22 + 1/12, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(20, "feet"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/astra/front.svg",
  44116. extra: 1850/1714,
  44117. bottom: 106/1956
  44118. }
  44119. },
  44120. frontUndressed: {
  44121. height: math.unit(20, "feet"),
  44122. name: "Front (Undressed)",
  44123. image: {
  44124. source: "./media/characters/astra/front-undressed.svg",
  44125. extra: 1926/1749,
  44126. bottom: 0/1926
  44127. }
  44128. },
  44129. hand: {
  44130. height: math.unit(1.53, "feet"),
  44131. name: "Hand",
  44132. image: {
  44133. source: "./media/characters/astra/hand.svg"
  44134. }
  44135. },
  44136. paw: {
  44137. height: math.unit(1.53, "feet"),
  44138. name: "Paw",
  44139. image: {
  44140. source: "./media/characters/astra/paw.svg"
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Smallest",
  44147. height: math.unit(20, "feet")
  44148. },
  44149. {
  44150. name: "Normal",
  44151. height: math.unit(1e9, "miles"),
  44152. default: true
  44153. },
  44154. {
  44155. name: "Larger",
  44156. height: math.unit(5, "multiverses")
  44157. },
  44158. {
  44159. name: "Largest",
  44160. height: math.unit(1e9, "multiverses")
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44166. {
  44167. front: {
  44168. height: math.unit(8, "feet"),
  44169. name: "Front",
  44170. image: {
  44171. source: "./media/characters/breanna/front.svg",
  44172. extra: 1912/1632,
  44173. bottom: 33/1945
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Smallest",
  44180. height: math.unit(8, "feet")
  44181. },
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(1, "mile"),
  44185. default: true
  44186. },
  44187. {
  44188. name: "Maximum",
  44189. height: math.unit(1500000000000, "lightyears")
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44195. {
  44196. front: {
  44197. height: math.unit(5 + 11/12, "feet"),
  44198. weight: math.unit(155, "lb"),
  44199. name: "Front",
  44200. image: {
  44201. source: "./media/characters/cai/front.svg",
  44202. extra: 1823/1702,
  44203. bottom: 32/1855
  44204. }
  44205. },
  44206. back: {
  44207. height: math.unit(5 + 11/12, "feet"),
  44208. weight: math.unit(155, "lb"),
  44209. name: "Back",
  44210. image: {
  44211. source: "./media/characters/cai/back.svg",
  44212. extra: 1809/1708,
  44213. bottom: 31/1840
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Normal",
  44220. height: math.unit(5 + 11/12, "feet"),
  44221. default: true
  44222. },
  44223. {
  44224. name: "Big",
  44225. height: math.unit(15, "feet")
  44226. },
  44227. {
  44228. name: "Macro",
  44229. height: math.unit(200, "feet")
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44235. {
  44236. front: {
  44237. height: math.unit(5 + 6/12, "feet"),
  44238. weight: math.unit(160, "lb"),
  44239. name: "Front",
  44240. image: {
  44241. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44242. extra: 1227/1174,
  44243. bottom: 37/1264
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Macro",
  44250. height: math.unit(444, "meters"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(18 + 7/12, "feet"),
  44260. name: "Front",
  44261. image: {
  44262. source: "./media/characters/rex/front.svg",
  44263. extra: 1941/1807,
  44264. bottom: 66/2007
  44265. }
  44266. },
  44267. back: {
  44268. height: math.unit(18 + 7/12, "feet"),
  44269. name: "Back",
  44270. image: {
  44271. source: "./media/characters/rex/back.svg",
  44272. extra: 1937/1822,
  44273. bottom: 42/1979
  44274. }
  44275. },
  44276. boot: {
  44277. height: math.unit(3.45, "feet"),
  44278. name: "Boot",
  44279. image: {
  44280. source: "./media/characters/rex/boot.svg"
  44281. }
  44282. },
  44283. paw: {
  44284. height: math.unit(4.17, "feet"),
  44285. name: "Paw",
  44286. image: {
  44287. source: "./media/characters/rex/paw.svg"
  44288. }
  44289. },
  44290. head: {
  44291. height: math.unit(6.728, "feet"),
  44292. name: "Head",
  44293. image: {
  44294. source: "./media/characters/rex/head.svg"
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Nano",
  44301. height: math.unit(18 + 7/12, "feet")
  44302. },
  44303. {
  44304. name: "Micro",
  44305. height: math.unit(1.5, "megameters")
  44306. },
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(440, "megameters"),
  44310. default: true
  44311. },
  44312. {
  44313. name: "Macro",
  44314. height: math.unit(2.5, "gigameters")
  44315. },
  44316. {
  44317. name: "Gigamacro",
  44318. height: math.unit(2, "galaxies")
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44324. {
  44325. side: {
  44326. height: math.unit(32, "feet"),
  44327. weight: math.unit(250000, "lb"),
  44328. name: "Side",
  44329. image: {
  44330. source: "./media/characters/silverwing/side.svg",
  44331. extra: 1100/1019,
  44332. bottom: 204/1304
  44333. }
  44334. },
  44335. },
  44336. [
  44337. {
  44338. name: "Normal",
  44339. height: math.unit(32, "feet"),
  44340. default: true
  44341. },
  44342. ]
  44343. ))
  44344. characterMakers.push(() => makeCharacter(
  44345. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44346. {
  44347. front: {
  44348. height: math.unit(6 + 6/12, "feet"),
  44349. weight: math.unit(350, "lb"),
  44350. name: "Front",
  44351. image: {
  44352. source: "./media/characters/tristan-hawthorne/front.svg",
  44353. extra: 1159/1124,
  44354. bottom: 37/1196
  44355. },
  44356. form: "labrador",
  44357. default: true
  44358. },
  44359. skunkFront: {
  44360. height: math.unit(4 + 6/12, "feet"),
  44361. weight: math.unit(120, "lb"),
  44362. name: "Front",
  44363. image: {
  44364. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44365. extra: 1609/1551,
  44366. bottom: 169/1778
  44367. },
  44368. form: "skunk",
  44369. default: true
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Normal",
  44375. height: math.unit(6 + 6/12, "feet"),
  44376. form: "labrador",
  44377. default: true
  44378. },
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(4 + 6/12, "feet"),
  44382. form: "skunk",
  44383. default: true
  44384. },
  44385. ],
  44386. {
  44387. "labrador": {
  44388. name: "Labrador",
  44389. default: true
  44390. },
  44391. "skunk": {
  44392. name: "Skunk"
  44393. }
  44394. }
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(5 + 11/12, "feet"),
  44401. weight: math.unit(190, "lb"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/mizu/front.svg",
  44405. extra: 1988/1788,
  44406. bottom: 14/2002
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal",
  44413. height: math.unit(5 + 11/12, "feet"),
  44414. default: true
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(1.7, "feet"),
  44423. weight: math.unit(50, "lb"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/dechroma/front.svg",
  44427. extra: 1095/859,
  44428. bottom: 64/1159
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(1.7, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44442. {
  44443. side: {
  44444. height: math.unit(30, "feet"),
  44445. name: "Side",
  44446. image: {
  44447. source: "./media/characters/veluren-thanazel/side.svg",
  44448. extra: 1611/633,
  44449. bottom: 118/1729
  44450. }
  44451. },
  44452. front: {
  44453. height: math.unit(30, "feet"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/veluren-thanazel/front.svg",
  44457. extra: 1486/636,
  44458. bottom: 238/1724
  44459. }
  44460. },
  44461. head: {
  44462. height: math.unit(21.4, "feet"),
  44463. name: "Head",
  44464. image: {
  44465. source: "./media/characters/veluren-thanazel/head.svg"
  44466. }
  44467. },
  44468. genitals: {
  44469. height: math.unit(19.4, "feet"),
  44470. name: "Genitals",
  44471. image: {
  44472. source: "./media/characters/veluren-thanazel/genitals.svg"
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Social",
  44479. height: math.unit(6, "feet")
  44480. },
  44481. {
  44482. name: "Play",
  44483. height: math.unit(12, "feet")
  44484. },
  44485. {
  44486. name: "True",
  44487. height: math.unit(30, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(7 + 6/12, "feet"),
  44497. weight: math.unit(500, "kg"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/arcturas/front.svg",
  44501. extra: 1700/1500,
  44502. bottom: 145/1845
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(7 + 6/12, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44516. {
  44517. side: {
  44518. height: math.unit(6, "feet"),
  44519. weight: math.unit(2, "tons"),
  44520. name: "Side",
  44521. image: {
  44522. source: "./media/characters/vitaen/side.svg",
  44523. extra: 1157/617,
  44524. bottom: 122/1279
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(6, "feet"),
  44532. default: true
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(19, "feet"),
  44541. name: "Front",
  44542. image: {
  44543. source: "./media/characters/fia-dreamweaver/front.svg",
  44544. extra: 1630/1504,
  44545. bottom: 25/1655
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(19, "feet"),
  44553. default: true
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44559. {
  44560. front: {
  44561. height: math.unit(5 + 4/12, "feet"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/artan/front.svg",
  44565. extra: 1618/1535,
  44566. bottom: 46/1664
  44567. }
  44568. },
  44569. back: {
  44570. height: math.unit(5 + 4/12, "feet"),
  44571. name: "Back",
  44572. image: {
  44573. source: "./media/characters/artan/back.svg",
  44574. extra: 1618/1543,
  44575. bottom: 31/1649
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Normal",
  44582. height: math.unit(5 + 4/12, "feet"),
  44583. default: true
  44584. },
  44585. ]
  44586. ))
  44587. characterMakers.push(() => makeCharacter(
  44588. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44589. {
  44590. side: {
  44591. height: math.unit(182, "cm"),
  44592. weight: math.unit(1000, "lb"),
  44593. name: "Side",
  44594. image: {
  44595. source: "./media/characters/silver-dragon/side.svg",
  44596. extra: 710/287,
  44597. bottom: 88/798
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Normal",
  44604. height: math.unit(182, "cm"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44611. {
  44612. side: {
  44613. height: math.unit(6 + 6/12, "feet"),
  44614. weight: math.unit(1.5, "tons"),
  44615. name: "Side",
  44616. image: {
  44617. source: "./media/characters/zephyr/side.svg",
  44618. extra: 1433/586,
  44619. bottom: 109/1542
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(6 + 6/12, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44633. {
  44634. side: {
  44635. height: math.unit(1, "feet"),
  44636. name: "Side",
  44637. image: {
  44638. source: "./media/characters/vixye/side.svg",
  44639. extra: 632/541,
  44640. bottom: 0/632
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(1, "feet"),
  44648. default: true
  44649. },
  44650. {
  44651. name: "True",
  44652. height: math.unit(1e15, "multiverses")
  44653. },
  44654. ]
  44655. ))
  44656. characterMakers.push(() => makeCharacter(
  44657. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44658. {
  44659. front: {
  44660. height: math.unit(8 + 2/12, "feet"),
  44661. weight: math.unit(650, "lb"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44665. extra: 1174/1137,
  44666. bottom: 82/1256
  44667. }
  44668. },
  44669. back: {
  44670. height: math.unit(8 + 2/12, "feet"),
  44671. weight: math.unit(650, "lb"),
  44672. name: "Back",
  44673. image: {
  44674. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44675. extra: 1204/1157,
  44676. bottom: 46/1250
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Wildform",
  44683. height: math.unit(8 + 2/12, "feet"),
  44684. default: true
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44690. {
  44691. front: {
  44692. height: math.unit(18, "feet"),
  44693. name: "Front",
  44694. image: {
  44695. source: "./media/characters/cyphin/front.svg",
  44696. extra: 970/886,
  44697. bottom: 42/1012
  44698. }
  44699. },
  44700. back: {
  44701. height: math.unit(18, "feet"),
  44702. name: "Back",
  44703. image: {
  44704. source: "./media/characters/cyphin/back.svg",
  44705. extra: 1009/894,
  44706. bottom: 24/1033
  44707. }
  44708. },
  44709. head: {
  44710. height: math.unit(5.05, "feet"),
  44711. name: "Head",
  44712. image: {
  44713. source: "./media/characters/cyphin/head.svg"
  44714. }
  44715. },
  44716. tailbud: {
  44717. height: math.unit(5, "feet"),
  44718. name: "Tailbud",
  44719. image: {
  44720. source: "./media/characters/cyphin/tailbud.svg"
  44721. }
  44722. },
  44723. },
  44724. [
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44729. {
  44730. side: {
  44731. height: math.unit(10, "feet"),
  44732. weight: math.unit(6, "tons"),
  44733. name: "Side",
  44734. image: {
  44735. source: "./media/characters/raijin/side.svg",
  44736. extra: 1529/613,
  44737. bottom: 337/1866
  44738. }
  44739. },
  44740. },
  44741. [
  44742. {
  44743. name: "Normal",
  44744. height: math.unit(10, "feet"),
  44745. default: true
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44751. {
  44752. side: {
  44753. height: math.unit(9, "feet"),
  44754. name: "Side",
  44755. image: {
  44756. source: "./media/characters/nilghais/side.svg",
  44757. extra: 1047/744,
  44758. bottom: 91/1138
  44759. }
  44760. },
  44761. head: {
  44762. height: math.unit(3.14, "feet"),
  44763. name: "Head",
  44764. image: {
  44765. source: "./media/characters/nilghais/head.svg"
  44766. }
  44767. },
  44768. mouth: {
  44769. height: math.unit(4.6, "feet"),
  44770. name: "Mouth",
  44771. image: {
  44772. source: "./media/characters/nilghais/mouth.svg"
  44773. }
  44774. },
  44775. wings: {
  44776. height: math.unit(24, "feet"),
  44777. name: "Wings",
  44778. image: {
  44779. source: "./media/characters/nilghais/wings.svg"
  44780. }
  44781. },
  44782. ass: {
  44783. height: math.unit(6.12, "feet"),
  44784. name: "Ass",
  44785. image: {
  44786. source: "./media/characters/nilghais/ass.svg"
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Normal",
  44793. height: math.unit(9, "feet"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44800. {
  44801. regular: {
  44802. height: math.unit(16 + 2/12, "feet"),
  44803. weight: math.unit(2300, "lb"),
  44804. name: "Regular",
  44805. image: {
  44806. source: "./media/characters/zolgar/regular.svg",
  44807. extra: 1246/1004,
  44808. bottom: 124/1370
  44809. }
  44810. },
  44811. boxers: {
  44812. height: math.unit(16 + 2/12, "feet"),
  44813. weight: math.unit(2300, "lb"),
  44814. name: "Boxers",
  44815. image: {
  44816. source: "./media/characters/zolgar/boxers.svg",
  44817. extra: 1246/1004,
  44818. bottom: 124/1370
  44819. }
  44820. },
  44821. armored: {
  44822. height: math.unit(16 + 2/12, "feet"),
  44823. weight: math.unit(2300, "lb"),
  44824. name: "Armored",
  44825. image: {
  44826. source: "./media/characters/zolgar/armored.svg",
  44827. extra: 1246/1004,
  44828. bottom: 124/1370
  44829. }
  44830. },
  44831. goth: {
  44832. height: math.unit(16 + 2/12, "feet"),
  44833. weight: math.unit(2300, "lb"),
  44834. name: "Goth",
  44835. image: {
  44836. source: "./media/characters/zolgar/goth.svg",
  44837. extra: 1246/1004,
  44838. bottom: 124/1370
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Shrunken Down",
  44845. height: math.unit(9 + 2/12, "feet")
  44846. },
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(16 + 2/12, "feet"),
  44850. default: true
  44851. },
  44852. ]
  44853. ))
  44854. characterMakers.push(() => makeCharacter(
  44855. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44856. {
  44857. front: {
  44858. height: math.unit(6, "feet"),
  44859. weight: math.unit(168, "lb"),
  44860. name: "Front",
  44861. image: {
  44862. source: "./media/characters/luca/front.svg",
  44863. extra: 841/667,
  44864. bottom: 102/943
  44865. }
  44866. },
  44867. },
  44868. [
  44869. {
  44870. name: "Normal",
  44871. height: math.unit(6, "feet"),
  44872. default: true
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44878. {
  44879. side: {
  44880. height: math.unit(7 + 3/12, "feet"),
  44881. weight: math.unit(312, "lb"),
  44882. name: "Side",
  44883. image: {
  44884. source: "./media/characters/zezo/side.svg",
  44885. extra: 1192/1067,
  44886. bottom: 63/1255
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(7 + 3/12, "feet"),
  44894. default: true
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44900. {
  44901. front: {
  44902. height: math.unit(5 + 5/12, "feet"),
  44903. weight: math.unit(170, "lb"),
  44904. name: "Front",
  44905. image: {
  44906. source: "./media/characters/mayso/front.svg",
  44907. extra: 1215/1108,
  44908. bottom: 16/1231
  44909. }
  44910. },
  44911. },
  44912. [
  44913. {
  44914. name: "Normal",
  44915. height: math.unit(5 + 5/12, "feet"),
  44916. default: true
  44917. },
  44918. ]
  44919. ))
  44920. characterMakers.push(() => makeCharacter(
  44921. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44922. {
  44923. front: {
  44924. height: math.unit(4 + 3/12, "feet"),
  44925. weight: math.unit(80, "lb"),
  44926. name: "Front",
  44927. image: {
  44928. source: "./media/characters/hess/front.svg",
  44929. extra: 1200/1123,
  44930. bottom: 16/1216
  44931. }
  44932. },
  44933. },
  44934. [
  44935. {
  44936. name: "Normal",
  44937. height: math.unit(4 + 3/12, "feet"),
  44938. default: true
  44939. },
  44940. ]
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44944. {
  44945. front: {
  44946. height: math.unit(1.9, "meters"),
  44947. name: "Front",
  44948. image: {
  44949. source: "./media/characters/ashgar/front.svg",
  44950. extra: 1177/1146,
  44951. bottom: 99/1276
  44952. }
  44953. },
  44954. back: {
  44955. height: math.unit(1.9, "meters"),
  44956. name: "Back",
  44957. image: {
  44958. source: "./media/characters/ashgar/back.svg",
  44959. extra: 1201/1183,
  44960. bottom: 53/1254
  44961. }
  44962. },
  44963. feral: {
  44964. height: math.unit(1.4, "meters"),
  44965. name: "Feral",
  44966. image: {
  44967. source: "./media/characters/ashgar/feral.svg",
  44968. extra: 370/345,
  44969. bottom: 45/415
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(1.9, "meters"),
  44977. default: true
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44983. {
  44984. regular: {
  44985. height: math.unit(6, "feet"),
  44986. weight: math.unit(220, "lb"),
  44987. name: "Regular",
  44988. image: {
  44989. source: "./media/characters/phillip/regular.svg",
  44990. extra: 1373/1277,
  44991. bottom: 75/1448
  44992. }
  44993. },
  44994. dressed: {
  44995. height: math.unit(6, "feet"),
  44996. weight: math.unit(220, "lb"),
  44997. name: "Dressed",
  44998. image: {
  44999. source: "./media/characters/phillip/dressed.svg",
  45000. extra: 1373/1277,
  45001. bottom: 75/1448
  45002. }
  45003. },
  45004. paw: {
  45005. height: math.unit(1.44, "feet"),
  45006. name: "Paw",
  45007. image: {
  45008. source: "./media/characters/phillip/paw.svg"
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(6, "feet"),
  45016. default: true
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45022. {
  45023. side: {
  45024. height: math.unit(42, "feet"),
  45025. name: "Side",
  45026. image: {
  45027. source: "./media/characters/uvula/side.svg",
  45028. extra: 683/586,
  45029. bottom: 60/743
  45030. }
  45031. },
  45032. front: {
  45033. height: math.unit(42, "feet"),
  45034. name: "Front",
  45035. image: {
  45036. source: "./media/characters/uvula/front.svg",
  45037. extra: 705/613,
  45038. bottom: 54/759
  45039. }
  45040. },
  45041. maw: {
  45042. height: math.unit(23.5, "feet"),
  45043. name: "Maw",
  45044. image: {
  45045. source: "./media/characters/uvula/maw.svg"
  45046. }
  45047. },
  45048. },
  45049. [
  45050. {
  45051. name: "Original Size",
  45052. height: math.unit(14, "inches")
  45053. },
  45054. {
  45055. name: "Human Size",
  45056. height: math.unit(6, "feet")
  45057. },
  45058. {
  45059. name: "Big",
  45060. height: math.unit(42, "feet"),
  45061. default: true
  45062. },
  45063. {
  45064. name: "Bigger",
  45065. height: math.unit(100, "feet")
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45071. {
  45072. front: {
  45073. height: math.unit(5 + 11/12, "feet"),
  45074. name: "Front",
  45075. image: {
  45076. source: "./media/characters/lannah/front.svg",
  45077. extra: 1208/1113,
  45078. bottom: 97/1305
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Normal",
  45085. height: math.unit(5 + 11/12, "feet"),
  45086. default: true
  45087. },
  45088. ]
  45089. ))
  45090. characterMakers.push(() => makeCharacter(
  45091. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45092. {
  45093. front: {
  45094. height: math.unit(6 + 3/12, "feet"),
  45095. weight: math.unit(3.5, "tons"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/emberflame/front.svg",
  45099. extra: 1198/672,
  45100. bottom: 82/1280
  45101. }
  45102. },
  45103. side: {
  45104. height: math.unit(6 + 3/12, "feet"),
  45105. weight: math.unit(3.5, "tons"),
  45106. name: "Side",
  45107. image: {
  45108. source: "./media/characters/emberflame/side.svg",
  45109. extra: 938/527,
  45110. bottom: 56/994
  45111. }
  45112. },
  45113. },
  45114. [
  45115. {
  45116. name: "Normal",
  45117. height: math.unit(6 + 3/12, "feet"),
  45118. default: true
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45124. {
  45125. side: {
  45126. height: math.unit(17.5, "feet"),
  45127. weight: math.unit(35, "tons"),
  45128. name: "Side",
  45129. image: {
  45130. source: "./media/characters/sophie-ambrose/side.svg",
  45131. extra: 1573/1242,
  45132. bottom: 71/1644
  45133. }
  45134. },
  45135. maw: {
  45136. height: math.unit(7.4, "feet"),
  45137. name: "Maw",
  45138. image: {
  45139. source: "./media/characters/sophie-ambrose/maw.svg"
  45140. }
  45141. },
  45142. },
  45143. [
  45144. {
  45145. name: "Normal",
  45146. height: math.unit(17.5, "feet"),
  45147. default: true
  45148. },
  45149. ]
  45150. ))
  45151. characterMakers.push(() => makeCharacter(
  45152. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45153. {
  45154. front: {
  45155. height: math.unit(280, "feet"),
  45156. weight: math.unit(550, "tons"),
  45157. name: "Front",
  45158. image: {
  45159. source: "./media/characters/king-mugi/front.svg",
  45160. extra: 1102/947,
  45161. bottom: 104/1206
  45162. }
  45163. },
  45164. },
  45165. [
  45166. {
  45167. name: "King Mugi",
  45168. height: math.unit(280, "feet"),
  45169. default: true
  45170. },
  45171. ]
  45172. ))
  45173. characterMakers.push(() => makeCharacter(
  45174. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45175. {
  45176. female: {
  45177. height: math.unit(300, "meters"),
  45178. name: "Front",
  45179. image: {
  45180. source: "./media/characters/nova-fox/female.svg",
  45181. extra: 664/632,
  45182. bottom: 51/715
  45183. },
  45184. form: "female",
  45185. default: true
  45186. },
  45187. male: {
  45188. height: math.unit(300, "meters"),
  45189. name: "Front",
  45190. image: {
  45191. source: "./media/characters/nova-fox/male.svg",
  45192. extra: 663/631,
  45193. bottom: 30/693
  45194. },
  45195. form: "male",
  45196. default: true
  45197. },
  45198. },
  45199. [
  45200. {
  45201. name: "Macro",
  45202. height: math.unit(300, "meters"),
  45203. default: true,
  45204. allForms: true
  45205. },
  45206. ],
  45207. {
  45208. "female": {
  45209. name: "Female",
  45210. default: true
  45211. },
  45212. "male": {
  45213. name: "Male",
  45214. },
  45215. }
  45216. ))
  45217. characterMakers.push(() => makeCharacter(
  45218. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45219. {
  45220. front: {
  45221. height: math.unit(6 + 3/12, "feet"),
  45222. weight: math.unit(170, "lb"),
  45223. name: "Front",
  45224. image: {
  45225. source: "./media/characters/sam-bat/front.svg",
  45226. extra: 1601/1411,
  45227. bottom: 125/1726
  45228. }
  45229. },
  45230. back: {
  45231. height: math.unit(6 + 3/12, "feet"),
  45232. weight: math.unit(170, "lb"),
  45233. name: "Back",
  45234. image: {
  45235. source: "./media/characters/sam-bat/back.svg",
  45236. extra: 1577/1405,
  45237. bottom: 58/1635
  45238. }
  45239. },
  45240. },
  45241. [
  45242. {
  45243. name: "Normal",
  45244. height: math.unit(6 + 3/12, "feet"),
  45245. default: true
  45246. },
  45247. ]
  45248. ))
  45249. characterMakers.push(() => makeCharacter(
  45250. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45251. {
  45252. front: {
  45253. height: math.unit(59, "feet"),
  45254. weight: math.unit(40000, "lb"),
  45255. name: "Front",
  45256. image: {
  45257. source: "./media/characters/inari/front.svg",
  45258. extra: 1884/1350,
  45259. bottom: 95/1979
  45260. }
  45261. },
  45262. },
  45263. [
  45264. {
  45265. name: "Gigantamax",
  45266. height: math.unit(59, "feet"),
  45267. default: true
  45268. },
  45269. ]
  45270. ))
  45271. characterMakers.push(() => makeCharacter(
  45272. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45273. {
  45274. front: {
  45275. height: math.unit(5 + 8/12, "feet"),
  45276. name: "Front",
  45277. image: {
  45278. source: "./media/characters/elizabeth/front.svg",
  45279. extra: 1395/1298,
  45280. bottom: 54/1449
  45281. }
  45282. },
  45283. mouth: {
  45284. height: math.unit(1.97, "feet"),
  45285. name: "Mouth",
  45286. image: {
  45287. source: "./media/characters/elizabeth/mouth.svg"
  45288. }
  45289. },
  45290. foot: {
  45291. height: math.unit(1.17, "feet"),
  45292. name: "Foot",
  45293. image: {
  45294. source: "./media/characters/elizabeth/foot.svg"
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal",
  45301. height: math.unit(5 + 8/12, "feet"),
  45302. default: true
  45303. },
  45304. {
  45305. name: "Minimacro",
  45306. height: math.unit(18, "feet")
  45307. },
  45308. {
  45309. name: "Macro",
  45310. height: math.unit(180, "feet")
  45311. },
  45312. ]
  45313. ))
  45314. characterMakers.push(() => makeCharacter(
  45315. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45316. {
  45317. front: {
  45318. height: math.unit(5 + 2/12, "feet"),
  45319. name: "Front",
  45320. image: {
  45321. source: "./media/characters/october-gossamer/front.svg",
  45322. extra: 505/454,
  45323. bottom: 7/512
  45324. }
  45325. },
  45326. back: {
  45327. height: math.unit(5 + 2/12, "feet"),
  45328. name: "Back",
  45329. image: {
  45330. source: "./media/characters/october-gossamer/back.svg",
  45331. extra: 501/454,
  45332. bottom: 11/512
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(5 + 2/12, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45346. {
  45347. front: {
  45348. height: math.unit(5, "feet"),
  45349. name: "Front",
  45350. image: {
  45351. source: "./media/characters/epiglottis/front.svg",
  45352. extra: 923/849,
  45353. bottom: 17/940
  45354. }
  45355. },
  45356. },
  45357. [
  45358. {
  45359. name: "Original Size",
  45360. height: math.unit(10, "inches")
  45361. },
  45362. {
  45363. name: "Human Size",
  45364. height: math.unit(5, "feet"),
  45365. default: true
  45366. },
  45367. {
  45368. name: "Big",
  45369. height: math.unit(25, "feet")
  45370. },
  45371. {
  45372. name: "Bigger",
  45373. height: math.unit(50, "feet")
  45374. },
  45375. {
  45376. name: "oh lawd",
  45377. height: math.unit(75, "feet")
  45378. },
  45379. ]
  45380. ))
  45381. characterMakers.push(() => makeCharacter(
  45382. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45383. {
  45384. front: {
  45385. height: math.unit(2 + 4/12, "feet"),
  45386. weight: math.unit(60, "lb"),
  45387. name: "Front",
  45388. image: {
  45389. source: "./media/characters/lerm/front.svg",
  45390. extra: 796/790,
  45391. bottom: 79/875
  45392. }
  45393. },
  45394. },
  45395. [
  45396. {
  45397. name: "Normal",
  45398. height: math.unit(2 + 4/12, "feet"),
  45399. default: true
  45400. },
  45401. ]
  45402. ))
  45403. characterMakers.push(() => makeCharacter(
  45404. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45405. {
  45406. front: {
  45407. height: math.unit(5.5, "feet"),
  45408. weight: math.unit(130, "lb"),
  45409. name: "Front",
  45410. image: {
  45411. source: "./media/characters/xena-nebadon/front.svg",
  45412. extra: 1828/1730,
  45413. bottom: 79/1907
  45414. }
  45415. },
  45416. },
  45417. [
  45418. {
  45419. name: "Tiny Puppy",
  45420. height: math.unit(3, "inches")
  45421. },
  45422. {
  45423. name: "Normal",
  45424. height: math.unit(5.5, "feet"),
  45425. default: true
  45426. },
  45427. {
  45428. name: "Lotta Lady",
  45429. height: math.unit(12, "feet")
  45430. },
  45431. {
  45432. name: "Pretty Big",
  45433. height: math.unit(100, "feet")
  45434. },
  45435. {
  45436. name: "Big",
  45437. height: math.unit(500, "feet")
  45438. },
  45439. {
  45440. name: "Skyscraper Toys",
  45441. height: math.unit(2500, "feet")
  45442. },
  45443. {
  45444. name: "Plane Catcher",
  45445. height: math.unit(8, "miles")
  45446. },
  45447. {
  45448. name: "Planet Toys",
  45449. height: math.unit(15, "earths")
  45450. },
  45451. {
  45452. name: "Stardust",
  45453. height: math.unit(0.25, "galaxies")
  45454. },
  45455. {
  45456. name: "Snacks",
  45457. height: math.unit(70, "universes")
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45463. {
  45464. front: {
  45465. height: math.unit(1.6, "meters"),
  45466. weight: math.unit(60, "kg"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/bounty/front.svg",
  45470. extra: 1426/1308,
  45471. bottom: 15/1441
  45472. }
  45473. },
  45474. back: {
  45475. height: math.unit(1.6, "meters"),
  45476. weight: math.unit(60, "kg"),
  45477. name: "Back",
  45478. image: {
  45479. source: "./media/characters/bounty/back.svg",
  45480. extra: 1417/1307,
  45481. bottom: 8/1425
  45482. }
  45483. },
  45484. },
  45485. [
  45486. {
  45487. name: "Normal",
  45488. height: math.unit(1.6, "meters"),
  45489. default: true
  45490. },
  45491. {
  45492. name: "Macro",
  45493. height: math.unit(300, "meters")
  45494. },
  45495. ]
  45496. ))
  45497. characterMakers.push(() => makeCharacter(
  45498. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45499. {
  45500. front: {
  45501. height: math.unit(2 + 8/12, "feet"),
  45502. weight: math.unit(15, "lb"),
  45503. name: "Front",
  45504. image: {
  45505. source: "./media/characters/mochi/front.svg",
  45506. extra: 1022/852,
  45507. bottom: 435/1457
  45508. }
  45509. },
  45510. back: {
  45511. height: math.unit(2 + 8/12, "feet"),
  45512. weight: math.unit(15, "lb"),
  45513. name: "Back",
  45514. image: {
  45515. source: "./media/characters/mochi/back.svg",
  45516. extra: 1335/1119,
  45517. bottom: 39/1374
  45518. }
  45519. },
  45520. bird: {
  45521. height: math.unit(2 + 8/12, "feet"),
  45522. weight: math.unit(15, "lb"),
  45523. name: "Bird",
  45524. image: {
  45525. source: "./media/characters/mochi/bird.svg",
  45526. extra: 1251/1113,
  45527. bottom: 178/1429
  45528. }
  45529. },
  45530. kaiju: {
  45531. height: math.unit(154, "feet"),
  45532. weight: math.unit(1e7, "lb"),
  45533. name: "Kaiju",
  45534. image: {
  45535. source: "./media/characters/mochi/kaiju.svg",
  45536. extra: 460/324,
  45537. bottom: 40/500
  45538. }
  45539. },
  45540. head: {
  45541. height: math.unit(1.21, "feet"),
  45542. name: "Head",
  45543. image: {
  45544. source: "./media/characters/mochi/head.svg"
  45545. }
  45546. },
  45547. alternateTail: {
  45548. height: math.unit(2 + 8/12, "feet"),
  45549. weight: math.unit(45, "lb"),
  45550. name: "Alternate Tail",
  45551. image: {
  45552. source: "./media/characters/mochi/alternate-tail.svg",
  45553. extra: 139/76,
  45554. bottom: 45/184
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Micro",
  45561. height: math.unit(2, "inches")
  45562. },
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(2 + 8/12, "feet"),
  45566. default: true
  45567. },
  45568. {
  45569. name: "Macro",
  45570. height: math.unit(106, "feet")
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(5.67, "feet"),
  45579. weight: math.unit(135, "lb"),
  45580. name: "Front",
  45581. image: {
  45582. source: "./media/characters/sarel/front.svg",
  45583. extra: 865/788,
  45584. bottom: 97/962
  45585. }
  45586. },
  45587. back: {
  45588. height: math.unit(5.67, "feet"),
  45589. weight: math.unit(135, "lb"),
  45590. name: "Back",
  45591. image: {
  45592. source: "./media/characters/sarel/back.svg",
  45593. extra: 857/777,
  45594. bottom: 32/889
  45595. }
  45596. },
  45597. chozoan: {
  45598. height: math.unit(5.67, "feet"),
  45599. weight: math.unit(135, "lb"),
  45600. name: "Chozoan",
  45601. image: {
  45602. source: "./media/characters/sarel/chozoan.svg",
  45603. extra: 865/788,
  45604. bottom: 97/962
  45605. }
  45606. },
  45607. current: {
  45608. height: math.unit(5.67, "feet"),
  45609. weight: math.unit(135, "lb"),
  45610. name: "Current",
  45611. image: {
  45612. source: "./media/characters/sarel/current.svg",
  45613. extra: 865/788,
  45614. bottom: 97/962
  45615. }
  45616. },
  45617. head: {
  45618. height: math.unit(1.77, "feet"),
  45619. name: "Head",
  45620. image: {
  45621. source: "./media/characters/sarel/head.svg"
  45622. }
  45623. },
  45624. claws: {
  45625. height: math.unit(1.8, "feet"),
  45626. name: "Claws",
  45627. image: {
  45628. source: "./media/characters/sarel/claws.svg"
  45629. }
  45630. },
  45631. clawsAlt: {
  45632. height: math.unit(1.8, "feet"),
  45633. name: "Claws-alt",
  45634. image: {
  45635. source: "./media/characters/sarel/claws-alt.svg"
  45636. }
  45637. },
  45638. },
  45639. [
  45640. {
  45641. name: "Normal",
  45642. height: math.unit(5.67, "feet"),
  45643. default: true
  45644. },
  45645. ]
  45646. ))
  45647. characterMakers.push(() => makeCharacter(
  45648. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45649. {
  45650. front: {
  45651. height: math.unit(5500, "feet"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/alyonia/front.svg",
  45655. extra: 1200/1135,
  45656. bottom: 29/1229
  45657. }
  45658. },
  45659. back: {
  45660. height: math.unit(5500, "feet"),
  45661. name: "Back",
  45662. image: {
  45663. source: "./media/characters/alyonia/back.svg",
  45664. extra: 1205/1138,
  45665. bottom: 10/1215
  45666. }
  45667. },
  45668. },
  45669. [
  45670. {
  45671. name: "Small",
  45672. height: math.unit(10, "feet")
  45673. },
  45674. {
  45675. name: "Macro",
  45676. height: math.unit(500, "feet")
  45677. },
  45678. {
  45679. name: "Mega Macro",
  45680. height: math.unit(5500, "feet"),
  45681. default: true
  45682. },
  45683. {
  45684. name: "Mega Macro+",
  45685. height: math.unit(500000, "feet")
  45686. },
  45687. {
  45688. name: "Giga Macro",
  45689. height: math.unit(3000, "miles")
  45690. },
  45691. {
  45692. name: "Tera Macro",
  45693. height: math.unit(2.8e6, "miles")
  45694. },
  45695. {
  45696. name: "Galactic",
  45697. height: math.unit(120000, "lightyears")
  45698. },
  45699. ]
  45700. ))
  45701. characterMakers.push(() => makeCharacter(
  45702. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45703. {
  45704. werewolf: {
  45705. height: math.unit(8, "feet"),
  45706. weight: math.unit(425, "lb"),
  45707. name: "Werewolf",
  45708. image: {
  45709. source: "./media/characters/autumn/werewolf.svg",
  45710. extra: 2154/2031,
  45711. bottom: 160/2314
  45712. }
  45713. },
  45714. human: {
  45715. height: math.unit(5 + 8/12, "feet"),
  45716. weight: math.unit(150, "lb"),
  45717. name: "Human",
  45718. image: {
  45719. source: "./media/characters/autumn/human.svg",
  45720. extra: 1200/1149,
  45721. bottom: 30/1230
  45722. }
  45723. },
  45724. },
  45725. [
  45726. {
  45727. name: "Normal",
  45728. height: math.unit(8, "feet"),
  45729. default: true
  45730. },
  45731. ]
  45732. ))
  45733. characterMakers.push(() => makeCharacter(
  45734. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45735. {
  45736. front: {
  45737. height: math.unit(8 + 5/12, "feet"),
  45738. weight: math.unit(825, "lb"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/cobalt-charizard/front.svg",
  45742. extra: 1268/1155,
  45743. bottom: 122/1390
  45744. }
  45745. },
  45746. side: {
  45747. height: math.unit(8 + 5/12, "feet"),
  45748. weight: math.unit(825, "lb"),
  45749. name: "Side",
  45750. image: {
  45751. source: "./media/characters/cobalt-charizard/side.svg",
  45752. extra: 1348/1257,
  45753. bottom: 58/1406
  45754. }
  45755. },
  45756. gMax: {
  45757. height: math.unit(134 + 11/12, "feet"),
  45758. name: "G-Max",
  45759. image: {
  45760. source: "./media/characters/cobalt-charizard/g-max.svg",
  45761. extra: 1835/1541,
  45762. bottom: 151/1986
  45763. }
  45764. },
  45765. },
  45766. [
  45767. {
  45768. name: "Normal",
  45769. height: math.unit(8 + 5/12, "feet"),
  45770. default: true
  45771. },
  45772. ]
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45776. {
  45777. front: {
  45778. height: math.unit(6 + 3/12, "feet"),
  45779. weight: math.unit(210, "lb"),
  45780. name: "Front",
  45781. image: {
  45782. source: "./media/characters/stella/front.svg",
  45783. extra: 3549/3335,
  45784. bottom: 51/3600
  45785. }
  45786. },
  45787. },
  45788. [
  45789. {
  45790. name: "Normal",
  45791. height: math.unit(6 + 3/12, "feet"),
  45792. default: true
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45798. {
  45799. front: {
  45800. height: math.unit(5, "feet"),
  45801. weight: math.unit(90, "lb"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/riley-bishop/front.svg",
  45805. extra: 1450/1428,
  45806. bottom: 152/1602
  45807. }
  45808. },
  45809. },
  45810. [
  45811. {
  45812. name: "Normal",
  45813. height: math.unit(5, "feet"),
  45814. default: true
  45815. },
  45816. ]
  45817. ))
  45818. characterMakers.push(() => makeCharacter(
  45819. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45820. {
  45821. side: {
  45822. height: math.unit(8 + 2/12, "feet"),
  45823. weight: math.unit(500, "kg"),
  45824. name: "Side",
  45825. image: {
  45826. source: "./media/characters/theo-arcanine/side.svg",
  45827. extra: 1342/1074,
  45828. bottom: 111/1453
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Normal",
  45835. height: math.unit(8 + 2/12, "feet"),
  45836. default: true
  45837. },
  45838. ]
  45839. ))
  45840. characterMakers.push(() => makeCharacter(
  45841. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45842. {
  45843. front: {
  45844. height: math.unit(4, "feet"),
  45845. name: "Front",
  45846. image: {
  45847. source: "./media/characters/kali/front.svg",
  45848. extra: 1074/867,
  45849. bottom: 34/1108
  45850. }
  45851. },
  45852. back: {
  45853. height: math.unit(4, "feet"),
  45854. name: "Back",
  45855. image: {
  45856. source: "./media/characters/kali/back.svg",
  45857. extra: 1068/863,
  45858. bottom: 26/1094
  45859. }
  45860. },
  45861. frontAlt: {
  45862. height: math.unit(4, "feet"),
  45863. name: "Front (Alt)",
  45864. image: {
  45865. source: "./media/characters/kali/front-alt.svg",
  45866. extra: 1921/1357,
  45867. bottom: 70/1991
  45868. }
  45869. },
  45870. },
  45871. [
  45872. {
  45873. name: "Normal",
  45874. height: math.unit(4, "feet"),
  45875. default: true
  45876. },
  45877. {
  45878. name: "Big'vali",
  45879. height: math.unit(11, "feet")
  45880. },
  45881. {
  45882. name: "Macro",
  45883. height: math.unit(32, "meters")
  45884. },
  45885. {
  45886. name: "Macro+",
  45887. height: math.unit(150, "meters")
  45888. },
  45889. {
  45890. name: "Megamacro",
  45891. height: math.unit(7500, "meters")
  45892. },
  45893. {
  45894. name: "Megamacro+",
  45895. height: math.unit(80, "kilometers")
  45896. },
  45897. ]
  45898. ))
  45899. characterMakers.push(() => makeCharacter(
  45900. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45901. {
  45902. side: {
  45903. height: math.unit(5 + 11/12, "feet"),
  45904. weight: math.unit(236, "lb"),
  45905. name: "Side",
  45906. image: {
  45907. source: "./media/characters/gapp/side.svg",
  45908. extra: 775/340,
  45909. bottom: 58/833
  45910. }
  45911. },
  45912. mouth: {
  45913. height: math.unit(2.98, "feet"),
  45914. name: "Mouth",
  45915. image: {
  45916. source: "./media/characters/gapp/mouth.svg"
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(5 + 1/12, "feet"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45930. {
  45931. front: {
  45932. height: math.unit(6, "feet"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/persephone/front.svg",
  45936. extra: 1895/1717,
  45937. bottom: 96/1991
  45938. }
  45939. },
  45940. back: {
  45941. height: math.unit(6, "feet"),
  45942. name: "Back",
  45943. image: {
  45944. source: "./media/characters/persephone/back.svg",
  45945. extra: 1868/1679,
  45946. bottom: 26/1894
  45947. }
  45948. },
  45949. casual: {
  45950. height: math.unit(6, "feet"),
  45951. name: "Casual",
  45952. image: {
  45953. source: "./media/characters/persephone/casual.svg",
  45954. extra: 1713/1541,
  45955. bottom: 76/1789
  45956. }
  45957. },
  45958. gaming: {
  45959. height: math.unit(3.55, "feet"),
  45960. name: "Gaming",
  45961. image: {
  45962. source: "./media/characters/persephone/gaming.svg",
  45963. extra: 1242/1038,
  45964. bottom: 66/1308
  45965. }
  45966. },
  45967. head: {
  45968. height: math.unit(2.15, "feet"),
  45969. name: "😐",
  45970. image: {
  45971. source: "./media/characters/persephone/head.svg"
  45972. }
  45973. },
  45974. talking: {
  45975. height: math.unit(2.5, "feet"),
  45976. name: "💬",
  45977. image: {
  45978. source: "./media/characters/persephone/talking.svg"
  45979. }
  45980. },
  45981. hmm: {
  45982. height: math.unit(2.28, "feet"),
  45983. name: "🤨",
  45984. image: {
  45985. source: "./media/characters/persephone/hmm.svg"
  45986. }
  45987. },
  45988. },
  45989. [
  45990. {
  45991. name: "Human Size",
  45992. height: math.unit(6, "feet")
  45993. },
  45994. {
  45995. name: "Big Steppy",
  45996. height: math.unit(600, "meters"),
  45997. default: true
  45998. },
  45999. {
  46000. name: "Galaxy Brain",
  46001. height: math.unit(1, "zettameter")
  46002. },
  46003. ]
  46004. ))
  46005. characterMakers.push(() => makeCharacter(
  46006. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46007. {
  46008. front: {
  46009. height: math.unit(1.85, "meters"),
  46010. name: "Front",
  46011. image: {
  46012. source: "./media/characters/riley-foxthing/front.svg",
  46013. extra: 1495/1354,
  46014. bottom: 122/1617
  46015. }
  46016. },
  46017. frontAlt: {
  46018. height: math.unit(1.85, "meters"),
  46019. name: "Front (Alt)",
  46020. image: {
  46021. source: "./media/characters/riley-foxthing/front-alt.svg",
  46022. extra: 1572/1389,
  46023. bottom: 116/1688
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal Sized",
  46030. height: math.unit(1.85, "meters"),
  46031. default: true
  46032. },
  46033. {
  46034. name: "Quite Sizable",
  46035. height: math.unit(5, "meters")
  46036. },
  46037. {
  46038. name: "Rather Large",
  46039. height: math.unit(20, "meters")
  46040. },
  46041. {
  46042. name: "Macro",
  46043. height: math.unit(450, "meters")
  46044. },
  46045. {
  46046. name: "Giga",
  46047. height: math.unit(5, "km")
  46048. },
  46049. ]
  46050. ))
  46051. characterMakers.push(() => makeCharacter(
  46052. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46053. {
  46054. front: {
  46055. height: math.unit(6, "feet"),
  46056. weight: math.unit(200, "lb"),
  46057. name: "Front",
  46058. image: {
  46059. source: "./media/characters/blizzard/front.svg",
  46060. extra: 1136/990,
  46061. bottom: 136/1272
  46062. }
  46063. },
  46064. back: {
  46065. height: math.unit(6, "feet"),
  46066. weight: math.unit(200, "lb"),
  46067. name: "Back",
  46068. image: {
  46069. source: "./media/characters/blizzard/back.svg",
  46070. extra: 1175/1034,
  46071. bottom: 97/1272
  46072. }
  46073. },
  46074. sitting: {
  46075. height: math.unit(3.725, "feet"),
  46076. weight: math.unit(200, "lb"),
  46077. name: "Sitting",
  46078. image: {
  46079. source: "./media/characters/blizzard/sitting.svg",
  46080. extra: 581/485,
  46081. bottom: 90/671
  46082. }
  46083. },
  46084. frontWizard: {
  46085. height: math.unit(7.9, "feet"),
  46086. weight: math.unit(200, "lb"),
  46087. name: "Front (Wizard)",
  46088. image: {
  46089. source: "./media/characters/blizzard/front-wizard.svg"
  46090. }
  46091. },
  46092. backWizard: {
  46093. height: math.unit(7.9, "feet"),
  46094. weight: math.unit(200, "lb"),
  46095. name: "Back (Wizard)",
  46096. image: {
  46097. source: "./media/characters/blizzard/back-wizard.svg"
  46098. }
  46099. },
  46100. frontNsfw: {
  46101. height: math.unit(6, "feet"),
  46102. weight: math.unit(200, "lb"),
  46103. name: "Front (NSFW)",
  46104. image: {
  46105. source: "./media/characters/blizzard/front-nsfw.svg",
  46106. extra: 1136/990,
  46107. bottom: 136/1272
  46108. }
  46109. },
  46110. backNsfw: {
  46111. height: math.unit(6, "feet"),
  46112. weight: math.unit(200, "lb"),
  46113. name: "Back (NSFW)",
  46114. image: {
  46115. source: "./media/characters/blizzard/back-nsfw.svg",
  46116. extra: 1175/1034,
  46117. bottom: 97/1272
  46118. }
  46119. },
  46120. sittingNsfw: {
  46121. height: math.unit(3.725, "feet"),
  46122. weight: math.unit(200, "lb"),
  46123. name: "Sitting (NSFW)",
  46124. image: {
  46125. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46126. extra: 581/485,
  46127. bottom: 90/671
  46128. }
  46129. },
  46130. wizardFrontNsfw: {
  46131. height: math.unit(7.9, "feet"),
  46132. weight: math.unit(200, "lb"),
  46133. name: "Wizard (Front, NSFW)",
  46134. image: {
  46135. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46136. }
  46137. },
  46138. },
  46139. [
  46140. {
  46141. name: "Normal",
  46142. height: math.unit(6, "feet"),
  46143. default: true
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46149. {
  46150. front: {
  46151. height: math.unit(5 + 2/12, "feet"),
  46152. name: "Front",
  46153. image: {
  46154. source: "./media/characters/lumi/front.svg",
  46155. extra: 1328/1268,
  46156. bottom: 103/1431
  46157. }
  46158. },
  46159. back: {
  46160. height: math.unit(5 + 2/12, "feet"),
  46161. name: "Back",
  46162. image: {
  46163. source: "./media/characters/lumi/back.svg",
  46164. extra: 1381/1327,
  46165. bottom: 43/1424
  46166. }
  46167. },
  46168. },
  46169. [
  46170. {
  46171. name: "Normal",
  46172. height: math.unit(5 + 2/12, "feet"),
  46173. default: true
  46174. },
  46175. ]
  46176. ))
  46177. characterMakers.push(() => makeCharacter(
  46178. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46179. {
  46180. front: {
  46181. height: math.unit(5 + 9/12, "feet"),
  46182. name: "Front",
  46183. image: {
  46184. source: "./media/characters/aliya-cotton/front.svg",
  46185. extra: 577/564,
  46186. bottom: 29/606
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(5 + 9/12, "feet"),
  46194. default: true
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46200. {
  46201. front: {
  46202. height: math.unit(2.7, "meters"),
  46203. weight: math.unit(25000, "lb"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/noah-luxray/front.svg",
  46207. extra: 1644/825,
  46208. bottom: 339/1983
  46209. }
  46210. },
  46211. side: {
  46212. height: math.unit(2.97, "meters"),
  46213. weight: math.unit(25000, "lb"),
  46214. name: "Side",
  46215. image: {
  46216. source: "./media/characters/noah-luxray/side.svg",
  46217. extra: 1319/650,
  46218. bottom: 163/1482
  46219. }
  46220. },
  46221. dick: {
  46222. height: math.unit(7.4, "feet"),
  46223. weight: math.unit(2500, "lb"),
  46224. name: "Dick",
  46225. image: {
  46226. source: "./media/characters/noah-luxray/dick.svg"
  46227. }
  46228. },
  46229. dickAlt: {
  46230. height: math.unit(10.83, "feet"),
  46231. weight: math.unit(2500, "lb"),
  46232. name: "Dick-alt",
  46233. image: {
  46234. source: "./media/characters/noah-luxray/dick-alt.svg"
  46235. }
  46236. },
  46237. },
  46238. [
  46239. {
  46240. name: "BIG",
  46241. height: math.unit(2.7, "meters"),
  46242. default: true
  46243. },
  46244. ]
  46245. ))
  46246. characterMakers.push(() => makeCharacter(
  46247. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46248. {
  46249. standing: {
  46250. height: math.unit(183, "cm"),
  46251. weight: math.unit(68, "kg"),
  46252. name: "Standing",
  46253. image: {
  46254. source: "./media/characters/arion/standing.svg",
  46255. extra: 1869/1807,
  46256. bottom: 93/1962
  46257. }
  46258. },
  46259. reclining: {
  46260. height: math.unit(70.5, "cm"),
  46261. weight: math.unit(68, "lb"),
  46262. name: "Reclining",
  46263. image: {
  46264. source: "./media/characters/arion/reclining.svg",
  46265. extra: 937/870,
  46266. bottom: 63/1000
  46267. }
  46268. },
  46269. },
  46270. [
  46271. {
  46272. name: "Colossus Size, Low",
  46273. height: math.unit(33, "meters"),
  46274. default: true
  46275. },
  46276. {
  46277. name: "Colossus Size, Mid",
  46278. height: math.unit(52, "meters")
  46279. },
  46280. {
  46281. name: "Colossus Size, High",
  46282. height: math.unit(60, "meters")
  46283. },
  46284. {
  46285. name: "Titan Size, Low",
  46286. height: math.unit(91, "meters"),
  46287. },
  46288. {
  46289. name: "Titan Size, Mid",
  46290. height: math.unit(122, "meters")
  46291. },
  46292. {
  46293. name: "Titan Size, High",
  46294. height: math.unit(162, "meters")
  46295. },
  46296. ]
  46297. ))
  46298. characterMakers.push(() => makeCharacter(
  46299. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46300. {
  46301. front: {
  46302. height: math.unit(53, "meters"),
  46303. name: "Front",
  46304. image: {
  46305. source: "./media/characters/stellar-marbey/front.svg",
  46306. extra: 1913/1805,
  46307. bottom: 92/2005
  46308. }
  46309. },
  46310. back: {
  46311. height: math.unit(53, "meters"),
  46312. name: "Back",
  46313. image: {
  46314. source: "./media/characters/stellar-marbey/back.svg",
  46315. extra: 1960/1851,
  46316. bottom: 28/1988
  46317. }
  46318. },
  46319. mouth: {
  46320. height: math.unit(3.5, "meters"),
  46321. name: "Mouth",
  46322. image: {
  46323. source: "./media/characters/stellar-marbey/mouth.svg"
  46324. }
  46325. },
  46326. },
  46327. [
  46328. {
  46329. name: "Macro",
  46330. height: math.unit(53, "meters"),
  46331. default: true
  46332. },
  46333. ]
  46334. ))
  46335. characterMakers.push(() => makeCharacter(
  46336. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46337. {
  46338. front: {
  46339. height: math.unit(8 + 1/12, "feet"),
  46340. weight: math.unit(233, "lb"),
  46341. name: "Front",
  46342. image: {
  46343. source: "./media/characters/matsu/front.svg",
  46344. extra: 832/772,
  46345. bottom: 40/872
  46346. }
  46347. },
  46348. back: {
  46349. height: math.unit(8 + 1/12, "feet"),
  46350. weight: math.unit(233, "lb"),
  46351. name: "Back",
  46352. image: {
  46353. source: "./media/characters/matsu/back.svg",
  46354. extra: 839/780,
  46355. bottom: 47/886
  46356. }
  46357. },
  46358. },
  46359. [
  46360. {
  46361. name: "Normal",
  46362. height: math.unit(8 + 1/12, "feet"),
  46363. default: true
  46364. },
  46365. ]
  46366. ))
  46367. characterMakers.push(() => makeCharacter(
  46368. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46369. {
  46370. front: {
  46371. height: math.unit(4, "feet"),
  46372. weight: math.unit(148, "lb"),
  46373. name: "Front",
  46374. image: {
  46375. source: "./media/characters/thiz/front.svg",
  46376. extra: 1913/1748,
  46377. bottom: 62/1975
  46378. }
  46379. },
  46380. },
  46381. [
  46382. {
  46383. name: "Normal",
  46384. height: math.unit(4, "feet"),
  46385. default: true
  46386. },
  46387. ]
  46388. ))
  46389. characterMakers.push(() => makeCharacter(
  46390. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46391. {
  46392. front: {
  46393. height: math.unit(7 + 6/12, "feet"),
  46394. weight: math.unit(267, "lb"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/marcel/front.svg",
  46398. extra: 1221/1096,
  46399. bottom: 76/1297
  46400. }
  46401. },
  46402. },
  46403. [
  46404. {
  46405. name: "Normal",
  46406. height: math.unit(7 + 6/12, "feet"),
  46407. default: true
  46408. },
  46409. ]
  46410. ))
  46411. characterMakers.push(() => makeCharacter(
  46412. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46413. {
  46414. side: {
  46415. height: math.unit(42, "meters"),
  46416. name: "Side",
  46417. image: {
  46418. source: "./media/characters/flake/side.svg",
  46419. extra: 1525/1306,
  46420. bottom: 209/1734
  46421. }
  46422. },
  46423. },
  46424. [
  46425. {
  46426. name: "Normal",
  46427. height: math.unit(42, "meters"),
  46428. default: true
  46429. },
  46430. ]
  46431. ))
  46432. characterMakers.push(() => makeCharacter(
  46433. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46434. {
  46435. dressed: {
  46436. height: math.unit(6 + 4/12, "feet"),
  46437. weight: math.unit(520, "lb"),
  46438. name: "Dressed",
  46439. image: {
  46440. source: "./media/characters/someonne/dressed.svg",
  46441. extra: 1020/1010,
  46442. bottom: 178/1198
  46443. }
  46444. },
  46445. undressed: {
  46446. height: math.unit(6 + 4/12, "feet"),
  46447. weight: math.unit(520, "lb"),
  46448. name: "Undressed",
  46449. image: {
  46450. source: "./media/characters/someonne/undressed.svg",
  46451. extra: 1019/1014,
  46452. bottom: 169/1188
  46453. }
  46454. },
  46455. },
  46456. [
  46457. {
  46458. name: "Normal",
  46459. height: math.unit(6 + 4/12, "feet"),
  46460. default: true
  46461. },
  46462. ]
  46463. ))
  46464. characterMakers.push(() => makeCharacter(
  46465. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46466. {
  46467. front: {
  46468. height: math.unit(3, "feet"),
  46469. weight: math.unit(30, "lb"),
  46470. name: "Front",
  46471. image: {
  46472. source: "./media/characters/till/front.svg",
  46473. extra: 892/823,
  46474. bottom: 55/947
  46475. }
  46476. },
  46477. },
  46478. [
  46479. {
  46480. name: "Normal",
  46481. height: math.unit(3, "feet"),
  46482. default: true
  46483. },
  46484. ]
  46485. ))
  46486. characterMakers.push(() => makeCharacter(
  46487. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46488. {
  46489. front: {
  46490. height: math.unit(9 + 8/12, "feet"),
  46491. weight: math.unit(800, "lb"),
  46492. name: "Front",
  46493. image: {
  46494. source: "./media/characters/sydney-heki/front.svg",
  46495. extra: 1360/1300,
  46496. bottom: 22/1382
  46497. }
  46498. },
  46499. back: {
  46500. height: math.unit(9 + 8/12, "feet"),
  46501. weight: math.unit(800, "lb"),
  46502. name: "Back",
  46503. image: {
  46504. source: "./media/characters/sydney-heki/back.svg",
  46505. extra: 1356/1293,
  46506. bottom: 12/1368
  46507. }
  46508. },
  46509. frontDressed: {
  46510. height: math.unit(9 + 8/12, "feet"),
  46511. weight: math.unit(800, "lb"),
  46512. name: "Front-dressed",
  46513. image: {
  46514. source: "./media/characters/sydney-heki/front-dressed.svg",
  46515. extra: 1360/1300,
  46516. bottom: 22/1382
  46517. }
  46518. },
  46519. },
  46520. [
  46521. {
  46522. name: "Normal",
  46523. height: math.unit(9 + 8/12, "feet"),
  46524. default: true
  46525. },
  46526. {
  46527. name: "Macro",
  46528. height: math.unit(500, "feet")
  46529. },
  46530. {
  46531. name: "Megamacro",
  46532. height: math.unit(3.6, "miles")
  46533. },
  46534. ]
  46535. ))
  46536. characterMakers.push(() => makeCharacter(
  46537. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46538. {
  46539. front: {
  46540. height: math.unit(200, "cm"),
  46541. weight: math.unit(250, "lb"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/fowler-karlsson/front.svg",
  46545. extra: 897/845,
  46546. bottom: 123/1020
  46547. }
  46548. },
  46549. back: {
  46550. height: math.unit(200, "cm"),
  46551. weight: math.unit(250, "lb"),
  46552. name: "Back",
  46553. image: {
  46554. source: "./media/characters/fowler-karlsson/back.svg",
  46555. extra: 999/944,
  46556. bottom: 26/1025
  46557. }
  46558. },
  46559. dick: {
  46560. height: math.unit(1.92, "feet"),
  46561. weight: math.unit(150, "lb"),
  46562. name: "Dick",
  46563. image: {
  46564. source: "./media/characters/fowler-karlsson/dick.svg"
  46565. }
  46566. },
  46567. },
  46568. [
  46569. {
  46570. name: "Normal",
  46571. height: math.unit(200, "cm"),
  46572. default: true
  46573. },
  46574. {
  46575. name: "Smaller Macro",
  46576. height: math.unit(90, "m")
  46577. },
  46578. {
  46579. name: "Macro",
  46580. height: math.unit(150, "m")
  46581. },
  46582. {
  46583. name: "Bigger Macro",
  46584. height: math.unit(300, "m")
  46585. },
  46586. ]
  46587. ))
  46588. characterMakers.push(() => makeCharacter(
  46589. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46590. {
  46591. side: {
  46592. height: math.unit(8 + 2/12, "feet"),
  46593. weight: math.unit(1, "tonne"),
  46594. name: "Side",
  46595. image: {
  46596. source: "./media/characters/rylide/side.svg",
  46597. extra: 1318/1034,
  46598. bottom: 106/1424
  46599. }
  46600. },
  46601. sitting: {
  46602. height: math.unit(303, "cm"),
  46603. weight: math.unit(1, "tonne"),
  46604. name: "Sitting",
  46605. image: {
  46606. source: "./media/characters/rylide/sitting.svg",
  46607. extra: 1303/1103,
  46608. bottom: 36/1339
  46609. }
  46610. },
  46611. },
  46612. [
  46613. {
  46614. name: "Normal",
  46615. height: math.unit(8 + 2/12, "feet"),
  46616. default: true
  46617. },
  46618. ]
  46619. ))
  46620. characterMakers.push(() => makeCharacter(
  46621. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46622. {
  46623. front: {
  46624. height: math.unit(5 + 10/12, "feet"),
  46625. weight: math.unit(160, "lb"),
  46626. name: "Front",
  46627. image: {
  46628. source: "./media/characters/pudask/front.svg",
  46629. extra: 1616/1590,
  46630. bottom: 161/1777
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "Ferret Height",
  46637. height: math.unit(2 + 5/12, "feet")
  46638. },
  46639. {
  46640. name: "Canon Height",
  46641. height: math.unit(5 + 10/12, "feet"),
  46642. default: true
  46643. },
  46644. ]
  46645. ))
  46646. characterMakers.push(() => makeCharacter(
  46647. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46648. {
  46649. front: {
  46650. height: math.unit(3 + 6/12, "feet"),
  46651. weight: math.unit(60, "lb"),
  46652. name: "Front",
  46653. image: {
  46654. source: "./media/characters/ramita/front.svg",
  46655. extra: 1402/1232,
  46656. bottom: 62/1464
  46657. }
  46658. },
  46659. dressed: {
  46660. height: math.unit(3 + 6/12, "feet"),
  46661. weight: math.unit(60, "lb"),
  46662. name: "Dressed",
  46663. image: {
  46664. source: "./media/characters/ramita/dressed.svg",
  46665. extra: 1534/1249,
  46666. bottom: 50/1584
  46667. }
  46668. },
  46669. },
  46670. [
  46671. {
  46672. name: "Normal",
  46673. height: math.unit(3 + 6/12, "feet"),
  46674. default: true
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46680. {
  46681. front: {
  46682. height: math.unit(8, "feet"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/ark/front.svg",
  46686. extra: 772/693,
  46687. bottom: 45/817
  46688. }
  46689. },
  46690. },
  46691. [
  46692. {
  46693. name: "Normal",
  46694. height: math.unit(8, "feet"),
  46695. default: true
  46696. },
  46697. ]
  46698. ))
  46699. characterMakers.push(() => makeCharacter(
  46700. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46701. {
  46702. front: {
  46703. height: math.unit(6, "feet"),
  46704. weight: math.unit(250, "lb"),
  46705. volume: math.unit(5/8, "gallons"),
  46706. name: "Front",
  46707. image: {
  46708. source: "./media/characters/ludwig-horn/front.svg",
  46709. extra: 1782/1635,
  46710. bottom: 96/1878
  46711. }
  46712. },
  46713. back: {
  46714. height: math.unit(6, "feet"),
  46715. weight: math.unit(250, "lb"),
  46716. volume: math.unit(5/8, "gallons"),
  46717. name: "Back",
  46718. image: {
  46719. source: "./media/characters/ludwig-horn/back.svg",
  46720. extra: 1874/1729,
  46721. bottom: 27/1901
  46722. }
  46723. },
  46724. dick: {
  46725. height: math.unit(1.05, "feet"),
  46726. weight: math.unit(15, "lb"),
  46727. volume: math.unit(5/8, "gallons"),
  46728. name: "Dick",
  46729. image: {
  46730. source: "./media/characters/ludwig-horn/dick.svg"
  46731. }
  46732. },
  46733. },
  46734. [
  46735. {
  46736. name: "Small",
  46737. height: math.unit(6, "feet")
  46738. },
  46739. {
  46740. name: "Typical",
  46741. height: math.unit(12, "feet"),
  46742. default: true
  46743. },
  46744. {
  46745. name: "Building",
  46746. height: math.unit(80, "feet")
  46747. },
  46748. {
  46749. name: "Town",
  46750. height: math.unit(800, "feet")
  46751. },
  46752. {
  46753. name: "Kingdom",
  46754. height: math.unit(80000, "feet")
  46755. },
  46756. {
  46757. name: "Planet",
  46758. height: math.unit(8000000, "feet")
  46759. },
  46760. {
  46761. name: "Universe",
  46762. height: math.unit(8000000000, "feet")
  46763. },
  46764. {
  46765. name: "Transcended",
  46766. height: math.unit(8e27, "feet")
  46767. },
  46768. ]
  46769. ))
  46770. characterMakers.push(() => makeCharacter(
  46771. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46772. {
  46773. front: {
  46774. height: math.unit(5, "feet"),
  46775. weight: math.unit(50, "kg"),
  46776. name: "Front",
  46777. image: {
  46778. source: "./media/characters/biot-avery/front.svg",
  46779. extra: 1295/1232,
  46780. bottom: 86/1381
  46781. }
  46782. },
  46783. },
  46784. [
  46785. {
  46786. name: "Normal",
  46787. height: math.unit(5, "feet"),
  46788. default: true
  46789. },
  46790. ]
  46791. ))
  46792. characterMakers.push(() => makeCharacter(
  46793. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46794. {
  46795. front: {
  46796. height: math.unit(6, "feet"),
  46797. name: "Front",
  46798. image: {
  46799. source: "./media/characters/kitsune-kiro/front.svg",
  46800. extra: 1270/1158,
  46801. bottom: 42/1312
  46802. }
  46803. },
  46804. frontAlt: {
  46805. height: math.unit(6, "feet"),
  46806. name: "Front-alt",
  46807. image: {
  46808. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46809. extra: 1130/1081,
  46810. bottom: 36/1166
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Smol",
  46817. height: math.unit(3, "feet")
  46818. },
  46819. {
  46820. name: "Normal",
  46821. height: math.unit(6, "feet"),
  46822. default: true
  46823. },
  46824. ]
  46825. ))
  46826. characterMakers.push(() => makeCharacter(
  46827. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46828. {
  46829. front: {
  46830. height: math.unit(6, "feet"),
  46831. weight: math.unit(125, "lb"),
  46832. name: "Front",
  46833. image: {
  46834. source: "./media/characters/jack-thatcher/front.svg",
  46835. extra: 1474/1370,
  46836. bottom: 26/1500
  46837. }
  46838. },
  46839. back: {
  46840. height: math.unit(6, "feet"),
  46841. weight: math.unit(125, "lb"),
  46842. name: "Back",
  46843. image: {
  46844. source: "./media/characters/jack-thatcher/back.svg",
  46845. extra: 1489/1384,
  46846. bottom: 18/1507
  46847. }
  46848. },
  46849. },
  46850. [
  46851. {
  46852. name: "Normal",
  46853. height: math.unit(6, "feet"),
  46854. default: true
  46855. },
  46856. {
  46857. name: "Macro",
  46858. height: math.unit(75, "feet")
  46859. },
  46860. {
  46861. name: "Macro-er",
  46862. height: math.unit(250, "feet")
  46863. },
  46864. ]
  46865. ))
  46866. characterMakers.push(() => makeCharacter(
  46867. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46868. {
  46869. front: {
  46870. height: math.unit(7, "feet"),
  46871. weight: math.unit(110, "kg"),
  46872. name: "Front",
  46873. image: {
  46874. source: "./media/characters/max-hyper/front.svg",
  46875. extra: 1969/1881,
  46876. bottom: 49/2018
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Normal",
  46883. height: math.unit(7, "feet"),
  46884. default: true
  46885. },
  46886. ]
  46887. ))
  46888. characterMakers.push(() => makeCharacter(
  46889. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46890. {
  46891. front: {
  46892. height: math.unit(5 + 5/12, "feet"),
  46893. weight: math.unit(160, "lb"),
  46894. name: "Front",
  46895. image: {
  46896. source: "./media/characters/spook/front.svg",
  46897. extra: 794/791,
  46898. bottom: 54/848
  46899. }
  46900. },
  46901. back: {
  46902. height: math.unit(5 + 5/12, "feet"),
  46903. weight: math.unit(160, "lb"),
  46904. name: "Back",
  46905. image: {
  46906. source: "./media/characters/spook/back.svg",
  46907. extra: 812/798,
  46908. bottom: 32/844
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Normal",
  46915. height: math.unit(5 + 5/12, "feet"),
  46916. default: true
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46922. {
  46923. front: {
  46924. height: math.unit(18, "feet"),
  46925. name: "Front",
  46926. image: {
  46927. source: "./media/characters/xeaduulix/front.svg",
  46928. extra: 1380/1166,
  46929. bottom: 110/1490
  46930. }
  46931. },
  46932. back: {
  46933. height: math.unit(18, "feet"),
  46934. name: "Back",
  46935. image: {
  46936. source: "./media/characters/xeaduulix/back.svg",
  46937. extra: 1592/1170,
  46938. bottom: 128/1720
  46939. }
  46940. },
  46941. frontNsfw: {
  46942. height: math.unit(18, "feet"),
  46943. name: "Front (NSFW)",
  46944. image: {
  46945. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46946. extra: 1380/1166,
  46947. bottom: 110/1490
  46948. }
  46949. },
  46950. backNsfw: {
  46951. height: math.unit(18, "feet"),
  46952. name: "Back (NSFW)",
  46953. image: {
  46954. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46955. extra: 1592/1170,
  46956. bottom: 128/1720
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(18, "feet"),
  46964. default: true
  46965. },
  46966. ]
  46967. ))
  46968. characterMakers.push(() => makeCharacter(
  46969. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46970. {
  46971. spreadWings: {
  46972. height: math.unit(20, "feet"),
  46973. name: "Spread Wings",
  46974. image: {
  46975. source: "./media/characters/fledge/spread-wings.svg",
  46976. extra: 693/635,
  46977. bottom: 26/719
  46978. }
  46979. },
  46980. front: {
  46981. height: math.unit(20, "feet"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/fledge/front.svg",
  46985. extra: 684/637,
  46986. bottom: 18/702
  46987. }
  46988. },
  46989. frontAlt: {
  46990. height: math.unit(20, "feet"),
  46991. name: "Front (Alt)",
  46992. image: {
  46993. source: "./media/characters/fledge/front-alt.svg",
  46994. extra: 708/664,
  46995. bottom: 13/721
  46996. }
  46997. },
  46998. back: {
  46999. height: math.unit(20, "feet"),
  47000. name: "Back",
  47001. image: {
  47002. source: "./media/characters/fledge/back.svg",
  47003. extra: 718/634,
  47004. bottom: 22/740
  47005. }
  47006. },
  47007. head: {
  47008. height: math.unit(5.55, "feet"),
  47009. name: "Head",
  47010. image: {
  47011. source: "./media/characters/fledge/head.svg"
  47012. }
  47013. },
  47014. headAlt: {
  47015. height: math.unit(5.1, "feet"),
  47016. name: "Head (Alt)",
  47017. image: {
  47018. source: "./media/characters/fledge/head-alt.svg"
  47019. }
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Small",
  47025. height: math.unit(6 + 2/12, "feet")
  47026. },
  47027. {
  47028. name: "Big",
  47029. height: math.unit(20, "feet"),
  47030. default: true
  47031. },
  47032. {
  47033. name: "Giant",
  47034. height: math.unit(100, "feet")
  47035. },
  47036. {
  47037. name: "Macro",
  47038. height: math.unit(200, "feet")
  47039. },
  47040. ]
  47041. ))
  47042. characterMakers.push(() => makeCharacter(
  47043. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47044. {
  47045. front: {
  47046. height: math.unit(1, "meter"),
  47047. name: "Front",
  47048. image: {
  47049. source: "./media/characters/atlas-morenai/front.svg",
  47050. extra: 1275/1043,
  47051. bottom: 19/1294
  47052. }
  47053. },
  47054. back: {
  47055. height: math.unit(1, "meter"),
  47056. name: "Back",
  47057. image: {
  47058. source: "./media/characters/atlas-morenai/back.svg",
  47059. extra: 1141/1001,
  47060. bottom: 25/1166
  47061. }
  47062. },
  47063. },
  47064. [
  47065. {
  47066. name: "Normal",
  47067. height: math.unit(1, "meter"),
  47068. default: true
  47069. },
  47070. {
  47071. name: "Magic-Infused",
  47072. height: math.unit(5, "meters")
  47073. },
  47074. ]
  47075. ))
  47076. characterMakers.push(() => makeCharacter(
  47077. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47078. {
  47079. front: {
  47080. height: math.unit(5, "meters"),
  47081. name: "Front",
  47082. image: {
  47083. source: "./media/characters/cintia/front.svg",
  47084. extra: 1312/1228,
  47085. bottom: 38/1350
  47086. }
  47087. },
  47088. back: {
  47089. height: math.unit(5, "meters"),
  47090. name: "Back",
  47091. image: {
  47092. source: "./media/characters/cintia/back.svg",
  47093. extra: 1260/1166,
  47094. bottom: 98/1358
  47095. }
  47096. },
  47097. frontDick: {
  47098. height: math.unit(5, "meters"),
  47099. name: "Front (Dick)",
  47100. image: {
  47101. source: "./media/characters/cintia/front-dick.svg",
  47102. extra: 1312/1228,
  47103. bottom: 38/1350
  47104. }
  47105. },
  47106. backDick: {
  47107. height: math.unit(5, "meters"),
  47108. name: "Back (Dick)",
  47109. image: {
  47110. source: "./media/characters/cintia/back-dick.svg",
  47111. extra: 1260/1166,
  47112. bottom: 98/1358
  47113. }
  47114. },
  47115. bust: {
  47116. height: math.unit(1.97, "meters"),
  47117. name: "Bust",
  47118. image: {
  47119. source: "./media/characters/cintia/bust.svg",
  47120. extra: 617/565,
  47121. bottom: 0/617
  47122. }
  47123. },
  47124. },
  47125. [
  47126. {
  47127. name: "Normal",
  47128. height: math.unit(5, "meters"),
  47129. default: true
  47130. },
  47131. ]
  47132. ))
  47133. characterMakers.push(() => makeCharacter(
  47134. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47135. {
  47136. side: {
  47137. height: math.unit(100, "feet"),
  47138. name: "Side",
  47139. image: {
  47140. source: "./media/characters/denora/side.svg",
  47141. extra: 875/803,
  47142. bottom: 9/884
  47143. }
  47144. },
  47145. },
  47146. [
  47147. {
  47148. name: "Standard",
  47149. height: math.unit(100, "feet"),
  47150. default: true
  47151. },
  47152. {
  47153. name: "Grand",
  47154. height: math.unit(1000, "feet")
  47155. },
  47156. {
  47157. name: "Conquering",
  47158. height: math.unit(10000, "feet")
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47164. {
  47165. dressed: {
  47166. height: math.unit(8 + 5/12, "feet"),
  47167. weight: math.unit(700, "lb"),
  47168. name: "Dressed",
  47169. image: {
  47170. source: "./media/characters/kiva/dressed.svg",
  47171. extra: 1102/1055,
  47172. bottom: 60/1162
  47173. }
  47174. },
  47175. nude: {
  47176. height: math.unit(8 + 5/12, "feet"),
  47177. weight: math.unit(700, "lb"),
  47178. name: "Nude",
  47179. image: {
  47180. source: "./media/characters/kiva/nude.svg",
  47181. extra: 1102/1055,
  47182. bottom: 60/1162
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Base Height",
  47189. height: math.unit(8 + 5/12, "feet"),
  47190. default: true
  47191. },
  47192. {
  47193. name: "Macro",
  47194. height: math.unit(100, "feet")
  47195. },
  47196. {
  47197. name: "Max",
  47198. height: math.unit(3280, "feet")
  47199. },
  47200. ]
  47201. ))
  47202. characterMakers.push(() => makeCharacter(
  47203. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47204. {
  47205. front: {
  47206. height: math.unit(6 + 8/12, "feet"),
  47207. weight: math.unit(250, "lb"),
  47208. name: "Front",
  47209. image: {
  47210. source: "./media/characters/ztragon/front.svg",
  47211. extra: 1825/1684,
  47212. bottom: 98/1923
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(6 + 8/12, "feet"),
  47220. default: true
  47221. },
  47222. {
  47223. name: "Macro",
  47224. height: math.unit(80, "feet")
  47225. },
  47226. ]
  47227. ))
  47228. characterMakers.push(() => makeCharacter(
  47229. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47230. {
  47231. front: {
  47232. height: math.unit(10.4, "feet"),
  47233. weight: math.unit(2, "tons"),
  47234. name: "Front",
  47235. image: {
  47236. source: "./media/characters/yesenia/front.svg",
  47237. extra: 1479/1474,
  47238. bottom: 233/1712
  47239. }
  47240. },
  47241. },
  47242. [
  47243. {
  47244. name: "Normal",
  47245. height: math.unit(10.4, "feet"),
  47246. default: true
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47252. {
  47253. normal: {
  47254. height: math.unit(6 + 1/12, "feet"),
  47255. weight: math.unit(180, "lb"),
  47256. name: "Normal",
  47257. image: {
  47258. source: "./media/characters/leanne-lycheborne/normal.svg",
  47259. extra: 1748/1660,
  47260. bottom: 98/1846
  47261. }
  47262. },
  47263. were: {
  47264. height: math.unit(12, "feet"),
  47265. weight: math.unit(1600, "lb"),
  47266. name: "Were",
  47267. image: {
  47268. source: "./media/characters/leanne-lycheborne/were.svg",
  47269. extra: 1485/1432,
  47270. bottom: 66/1551
  47271. }
  47272. },
  47273. },
  47274. [
  47275. {
  47276. name: "Normal",
  47277. height: math.unit(6 + 1/12, "feet"),
  47278. default: true
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47284. {
  47285. side: {
  47286. height: math.unit(13, "feet"),
  47287. name: "Side",
  47288. image: {
  47289. source: "./media/characters/kira-tyler/side.svg",
  47290. extra: 693/393,
  47291. bottom: 58/751
  47292. }
  47293. },
  47294. },
  47295. [
  47296. {
  47297. name: "Normal",
  47298. height: math.unit(13, "feet"),
  47299. default: true
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47305. {
  47306. front: {
  47307. height: math.unit(10.3, "feet"),
  47308. weight: math.unit(150, "lb"),
  47309. name: "Front",
  47310. image: {
  47311. source: "./media/characters/blaze/front.svg",
  47312. extra: 1378/1286,
  47313. bottom: 172/1550
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(10.3, "feet"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47327. {
  47328. side: {
  47329. height: math.unit(2, "meters"),
  47330. weight: math.unit(400, "kg"),
  47331. name: "Side",
  47332. image: {
  47333. source: "./media/characters/anu/side.svg",
  47334. extra: 506/394,
  47335. bottom: 18/524
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Humanoid",
  47342. height: math.unit(2, "meters")
  47343. },
  47344. {
  47345. name: "Normal",
  47346. height: math.unit(5, "meters"),
  47347. default: true
  47348. },
  47349. ]
  47350. ))
  47351. characterMakers.push(() => makeCharacter(
  47352. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47353. {
  47354. front: {
  47355. height: math.unit(5 + 5/12, "feet"),
  47356. weight: math.unit(170, "lb"),
  47357. name: "Front",
  47358. image: {
  47359. source: "./media/characters/synx-the-lynx/front.svg",
  47360. extra: 1893/1745,
  47361. bottom: 17/1910
  47362. }
  47363. },
  47364. side: {
  47365. height: math.unit(5 + 5/12, "feet"),
  47366. weight: math.unit(170, "lb"),
  47367. name: "Side",
  47368. image: {
  47369. source: "./media/characters/synx-the-lynx/side.svg",
  47370. extra: 1884/1740,
  47371. bottom: 39/1923
  47372. }
  47373. },
  47374. back: {
  47375. height: math.unit(5 + 5/12, "feet"),
  47376. weight: math.unit(170, "lb"),
  47377. name: "Back",
  47378. image: {
  47379. source: "./media/characters/synx-the-lynx/back.svg",
  47380. extra: 1903/1755,
  47381. bottom: 14/1917
  47382. }
  47383. },
  47384. },
  47385. [
  47386. {
  47387. name: "Normal",
  47388. height: math.unit(5 + 5/12, "feet"),
  47389. default: true
  47390. },
  47391. ]
  47392. ))
  47393. characterMakers.push(() => makeCharacter(
  47394. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47395. {
  47396. back: {
  47397. height: math.unit(15, "feet"),
  47398. name: "Back",
  47399. image: {
  47400. source: "./media/characters/nadezda-fex/back.svg",
  47401. extra: 1695/1481,
  47402. bottom: 25/1720
  47403. }
  47404. },
  47405. },
  47406. [
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(15, "feet"),
  47410. default: true
  47411. },
  47412. {
  47413. name: "Macro",
  47414. height: math.unit(2.5, "miles")
  47415. },
  47416. {
  47417. name: "Goddess",
  47418. height: math.unit(2, "multiverses")
  47419. },
  47420. ]
  47421. ))
  47422. characterMakers.push(() => makeCharacter(
  47423. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47424. {
  47425. front: {
  47426. height: math.unit(216, "cm"),
  47427. name: "Front",
  47428. image: {
  47429. source: "./media/characters/lev/front.svg",
  47430. extra: 1728/1670,
  47431. bottom: 82/1810
  47432. }
  47433. },
  47434. back: {
  47435. height: math.unit(216, "cm"),
  47436. name: "Back",
  47437. image: {
  47438. source: "./media/characters/lev/back.svg",
  47439. extra: 1738/1675,
  47440. bottom: 24/1762
  47441. }
  47442. },
  47443. dressed: {
  47444. height: math.unit(216, "cm"),
  47445. name: "Dressed",
  47446. image: {
  47447. source: "./media/characters/lev/dressed.svg",
  47448. extra: 1397/1351,
  47449. bottom: 73/1470
  47450. }
  47451. },
  47452. head: {
  47453. height: math.unit(0.51, "meter"),
  47454. name: "Head",
  47455. image: {
  47456. source: "./media/characters/lev/head.svg"
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(216, "cm"),
  47464. default: true
  47465. },
  47466. {
  47467. name: "Relatively Macro",
  47468. height: math.unit(80, "meters")
  47469. },
  47470. {
  47471. name: "Megamacro",
  47472. height: math.unit(21600, "meters")
  47473. },
  47474. {
  47475. name: "Megamacro+",
  47476. height: math.unit(64800, "meters")
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47482. {
  47483. front: {
  47484. height: math.unit(2, "meters"),
  47485. weight: math.unit(80, "kg"),
  47486. name: "Front",
  47487. image: {
  47488. source: "./media/characters/moka/front.svg",
  47489. extra: 1337/1255,
  47490. bottom: 58/1395
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Micro",
  47497. height: math.unit(15, "cm")
  47498. },
  47499. {
  47500. name: "Normal",
  47501. height: math.unit(2, "meters"),
  47502. default: true
  47503. },
  47504. {
  47505. name: "Macro",
  47506. height: math.unit(20, "meters"),
  47507. },
  47508. ]
  47509. ))
  47510. characterMakers.push(() => makeCharacter(
  47511. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47512. {
  47513. front: {
  47514. height: math.unit(9, "feet"),
  47515. weight: math.unit(240, "lb"),
  47516. name: "Front",
  47517. image: {
  47518. source: "./media/characters/kuzco/front.svg",
  47519. extra: 1593/1487,
  47520. bottom: 32/1625
  47521. }
  47522. },
  47523. side: {
  47524. height: math.unit(9, "feet"),
  47525. weight: math.unit(240, "lb"),
  47526. name: "Side",
  47527. image: {
  47528. source: "./media/characters/kuzco/side.svg",
  47529. extra: 1575/1485,
  47530. bottom: 30/1605
  47531. }
  47532. },
  47533. back: {
  47534. height: math.unit(9, "feet"),
  47535. weight: math.unit(240, "lb"),
  47536. name: "Back",
  47537. image: {
  47538. source: "./media/characters/kuzco/back.svg",
  47539. extra: 1603/1514,
  47540. bottom: 14/1617
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Normal",
  47547. height: math.unit(9, "feet"),
  47548. default: true
  47549. },
  47550. ]
  47551. ))
  47552. characterMakers.push(() => makeCharacter(
  47553. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47554. {
  47555. side: {
  47556. height: math.unit(2, "meters"),
  47557. weight: math.unit(300, "kg"),
  47558. name: "Side",
  47559. image: {
  47560. source: "./media/characters/ceruleus/side.svg",
  47561. extra: 1068/974,
  47562. bottom: 126/1194
  47563. }
  47564. },
  47565. maw: {
  47566. height: math.unit(0.8125, "meter"),
  47567. name: "Maw",
  47568. image: {
  47569. source: "./media/characters/ceruleus/maw.svg"
  47570. }
  47571. },
  47572. },
  47573. [
  47574. {
  47575. name: "Normal",
  47576. height: math.unit(16, "meters"),
  47577. default: true
  47578. },
  47579. ]
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47583. {
  47584. front: {
  47585. height: math.unit(9, "feet"),
  47586. weight: math.unit(500, "kg"),
  47587. name: "Front",
  47588. image: {
  47589. source: "./media/characters/acouya/front.svg",
  47590. extra: 1660/1473,
  47591. bottom: 28/1688
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Normal",
  47598. height: math.unit(9, "feet"),
  47599. default: true
  47600. },
  47601. ]
  47602. ))
  47603. characterMakers.push(() => makeCharacter(
  47604. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47605. {
  47606. front: {
  47607. height: math.unit(5 + 6/12, "feet"),
  47608. weight: math.unit(195, "lb"),
  47609. name: "Front",
  47610. image: {
  47611. source: "./media/characters/vant/front.svg",
  47612. extra: 1396/1320,
  47613. bottom: 20/1416
  47614. }
  47615. },
  47616. back: {
  47617. height: math.unit(5 + 6/12, "feet"),
  47618. weight: math.unit(195, "lb"),
  47619. name: "Back",
  47620. image: {
  47621. source: "./media/characters/vant/back.svg",
  47622. extra: 1396/1320,
  47623. bottom: 20/1416
  47624. }
  47625. },
  47626. maw: {
  47627. height: math.unit(0.75, "feet"),
  47628. name: "Maw",
  47629. image: {
  47630. source: "./media/characters/vant/maw.svg"
  47631. }
  47632. },
  47633. paw: {
  47634. height: math.unit(1.07, "feet"),
  47635. name: "Paw",
  47636. image: {
  47637. source: "./media/characters/vant/paw.svg"
  47638. }
  47639. },
  47640. },
  47641. [
  47642. {
  47643. name: "Micro",
  47644. height: math.unit(0.25, "inches")
  47645. },
  47646. {
  47647. name: "Normal",
  47648. height: math.unit(5 + 6/12, "feet"),
  47649. default: true
  47650. },
  47651. {
  47652. name: "Macro",
  47653. height: math.unit(75, "feet")
  47654. },
  47655. ]
  47656. ))
  47657. characterMakers.push(() => makeCharacter(
  47658. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47659. {
  47660. front: {
  47661. height: math.unit(30, "meters"),
  47662. weight: math.unit(363, "tons"),
  47663. name: "Front",
  47664. image: {
  47665. source: "./media/characters/ahra/front.svg",
  47666. extra: 1914/1814,
  47667. bottom: 46/1960
  47668. }
  47669. },
  47670. },
  47671. [
  47672. {
  47673. name: "Macro",
  47674. height: math.unit(30, "meters"),
  47675. default: true
  47676. },
  47677. ]
  47678. ))
  47679. characterMakers.push(() => makeCharacter(
  47680. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47681. {
  47682. undressed: {
  47683. height: math.unit(2, "m"),
  47684. weight: math.unit(250, "kg"),
  47685. name: "Undressed",
  47686. image: {
  47687. source: "./media/characters/coriander/undressed.svg",
  47688. extra: 1757/1606,
  47689. bottom: 107/1864
  47690. }
  47691. },
  47692. dressed: {
  47693. height: math.unit(2, "m"),
  47694. weight: math.unit(250, "kg"),
  47695. name: "Dressed",
  47696. image: {
  47697. source: "./media/characters/coriander/dressed.svg",
  47698. extra: 1757/1606,
  47699. bottom: 107/1864
  47700. }
  47701. },
  47702. },
  47703. [
  47704. {
  47705. name: "Normal",
  47706. height: math.unit(4, "meters"),
  47707. default: true
  47708. },
  47709. {
  47710. name: "XL",
  47711. height: math.unit(6, "meters")
  47712. },
  47713. {
  47714. name: "XXL",
  47715. height: math.unit(8, "meters")
  47716. },
  47717. ]
  47718. ))
  47719. characterMakers.push(() => makeCharacter(
  47720. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47721. {
  47722. front: {
  47723. height: math.unit(6, "feet"),
  47724. name: "Front",
  47725. image: {
  47726. source: "./media/characters/syrinx/front.svg",
  47727. extra: 1557/1259,
  47728. bottom: 171/1728
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Normal",
  47735. height: math.unit(6 + 3/12, "feet"),
  47736. default: true
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47742. {
  47743. front: {
  47744. height: math.unit(11 + 6/12, "feet"),
  47745. weight: math.unit(1.5, "tons"),
  47746. name: "Front",
  47747. image: {
  47748. source: "./media/characters/bor/front.svg",
  47749. extra: 1189/1109,
  47750. bottom: 170/1359
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(11 + 6/12, "feet"),
  47758. default: true
  47759. },
  47760. {
  47761. name: "Macro",
  47762. height: math.unit(32 + 9/12, "feet")
  47763. },
  47764. ]
  47765. ))
  47766. characterMakers.push(() => makeCharacter(
  47767. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47768. {
  47769. anthro: {
  47770. height: math.unit(9, "feet"),
  47771. weight: math.unit(2076, "lb"),
  47772. name: "Anthro",
  47773. image: {
  47774. source: "./media/characters/abacus/anthro.svg",
  47775. extra: 1540/1494,
  47776. bottom: 233/1773
  47777. }
  47778. },
  47779. pigeon: {
  47780. height: math.unit(1, "feet"),
  47781. name: "Pigeon",
  47782. image: {
  47783. source: "./media/characters/abacus/pigeon.svg",
  47784. extra: 528/525,
  47785. bottom: 46/574
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(9, "feet"),
  47793. default: true
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47799. {
  47800. side: {
  47801. height: math.unit(6, "feet"),
  47802. name: "Side",
  47803. image: {
  47804. source: "./media/characters/delkhan/side.svg",
  47805. extra: 1884/1786,
  47806. bottom: 308/2192
  47807. }
  47808. },
  47809. head: {
  47810. height: math.unit(3.38, "feet"),
  47811. name: "Head",
  47812. image: {
  47813. source: "./media/characters/delkhan/head.svg"
  47814. }
  47815. },
  47816. },
  47817. [
  47818. {
  47819. name: "Normal",
  47820. height: math.unit(72, "feet"),
  47821. default: true
  47822. },
  47823. {
  47824. name: "Giant",
  47825. height: math.unit(172, "feet")
  47826. },
  47827. ]
  47828. ))
  47829. characterMakers.push(() => makeCharacter(
  47830. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47831. {
  47832. standing: {
  47833. height: math.unit(6, "feet"),
  47834. name: "Standing",
  47835. image: {
  47836. source: "./media/characters/euchidat/standing.svg",
  47837. extra: 1612/1553,
  47838. bottom: 116/1728
  47839. }
  47840. },
  47841. leaning: {
  47842. height: math.unit(6, "feet"),
  47843. name: "Leaning",
  47844. image: {
  47845. source: "./media/characters/euchidat/leaning.svg",
  47846. extra: 1719/1674,
  47847. bottom: 27/1746
  47848. }
  47849. },
  47850. },
  47851. [
  47852. {
  47853. name: "Normal",
  47854. height: math.unit(175, "feet"),
  47855. default: true
  47856. },
  47857. {
  47858. name: "Megamacro",
  47859. height: math.unit(190, "miles")
  47860. },
  47861. {
  47862. name: "Gigamacro",
  47863. height: math.unit(190000, "miles")
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47869. {
  47870. front: {
  47871. height: math.unit(6, "feet"),
  47872. weight: math.unit(150, "lb"),
  47873. name: "Front",
  47874. image: {
  47875. source: "./media/characters/rebecca-stack/front.svg",
  47876. extra: 1256/1201,
  47877. bottom: 18/1274
  47878. }
  47879. },
  47880. },
  47881. [
  47882. {
  47883. name: "Normal",
  47884. height: math.unit(5 + 8/12, "feet"),
  47885. default: true
  47886. },
  47887. {
  47888. name: "Demolitionist",
  47889. height: math.unit(200, "feet")
  47890. },
  47891. {
  47892. name: "Out of Control",
  47893. height: math.unit(2, "miles")
  47894. },
  47895. {
  47896. name: "Giga",
  47897. height: math.unit(7200, "miles")
  47898. },
  47899. ]
  47900. ))
  47901. characterMakers.push(() => makeCharacter(
  47902. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47903. {
  47904. front: {
  47905. height: math.unit(6, "feet"),
  47906. weight: math.unit(150, "lb"),
  47907. name: "Front",
  47908. image: {
  47909. source: "./media/characters/jenny-cartwright/front.svg",
  47910. extra: 1384/1376,
  47911. bottom: 58/1442
  47912. }
  47913. },
  47914. },
  47915. [
  47916. {
  47917. name: "Normal",
  47918. height: math.unit(6 + 7/12, "feet"),
  47919. default: true
  47920. },
  47921. {
  47922. name: "Librarian",
  47923. height: math.unit(55, "feet")
  47924. },
  47925. {
  47926. name: "Sightseer",
  47927. height: math.unit(50, "miles")
  47928. },
  47929. {
  47930. name: "Giga",
  47931. height: math.unit(30000, "miles")
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47937. {
  47938. nude: {
  47939. height: math.unit(8, "feet"),
  47940. weight: math.unit(225, "lb"),
  47941. name: "Nude",
  47942. image: {
  47943. source: "./media/characters/marvy/nude.svg",
  47944. extra: 1900/1683,
  47945. bottom: 89/1989
  47946. }
  47947. },
  47948. dressed: {
  47949. height: math.unit(8, "feet"),
  47950. weight: math.unit(225, "lb"),
  47951. name: "Dressed",
  47952. image: {
  47953. source: "./media/characters/marvy/dressed.svg",
  47954. extra: 1900/1683,
  47955. bottom: 89/1989
  47956. }
  47957. },
  47958. head: {
  47959. height: math.unit(2.85, "feet"),
  47960. name: "Head",
  47961. image: {
  47962. source: "./media/characters/marvy/head.svg"
  47963. }
  47964. },
  47965. },
  47966. [
  47967. {
  47968. name: "Normal",
  47969. height: math.unit(8, "feet"),
  47970. default: true
  47971. },
  47972. ]
  47973. ))
  47974. characterMakers.push(() => makeCharacter(
  47975. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47976. {
  47977. front: {
  47978. height: math.unit(8, "feet"),
  47979. weight: math.unit(250, "lb"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/leah/front.svg",
  47983. extra: 1257/1149,
  47984. bottom: 109/1366
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(8, "feet"),
  47992. default: true
  47993. },
  47994. {
  47995. name: "Minimacro",
  47996. height: math.unit(40, "feet")
  47997. },
  47998. {
  47999. name: "Macro",
  48000. height: math.unit(124, "feet")
  48001. },
  48002. {
  48003. name: "Megamacro",
  48004. height: math.unit(850, "feet")
  48005. },
  48006. ]
  48007. ))
  48008. characterMakers.push(() => makeCharacter(
  48009. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48010. {
  48011. side: {
  48012. height: math.unit(13 + 6/12, "feet"),
  48013. weight: math.unit(3200, "lb"),
  48014. name: "Side",
  48015. image: {
  48016. source: "./media/characters/alvir/side.svg",
  48017. extra: 896/589,
  48018. bottom: 26/922
  48019. }
  48020. },
  48021. },
  48022. [
  48023. {
  48024. name: "Normal",
  48025. height: math.unit(13 + 6/12, "feet"),
  48026. default: true
  48027. },
  48028. ]
  48029. ))
  48030. characterMakers.push(() => makeCharacter(
  48031. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48032. {
  48033. front: {
  48034. height: math.unit(5 + 4/12, "feet"),
  48035. weight: math.unit(236, "lb"),
  48036. name: "Front",
  48037. image: {
  48038. source: "./media/characters/zaina-khalil/front.svg",
  48039. extra: 1533/1485,
  48040. bottom: 94/1627
  48041. }
  48042. },
  48043. side: {
  48044. height: math.unit(5 + 4/12, "feet"),
  48045. weight: math.unit(236, "lb"),
  48046. name: "Side",
  48047. image: {
  48048. source: "./media/characters/zaina-khalil/side.svg",
  48049. extra: 1537/1498,
  48050. bottom: 66/1603
  48051. }
  48052. },
  48053. back: {
  48054. height: math.unit(5 + 4/12, "feet"),
  48055. weight: math.unit(236, "lb"),
  48056. name: "Back",
  48057. image: {
  48058. source: "./media/characters/zaina-khalil/back.svg",
  48059. extra: 1546/1494,
  48060. bottom: 89/1635
  48061. }
  48062. },
  48063. },
  48064. [
  48065. {
  48066. name: "Normal",
  48067. height: math.unit(5 + 4/12, "feet"),
  48068. default: true
  48069. },
  48070. ]
  48071. ))
  48072. characterMakers.push(() => makeCharacter(
  48073. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48074. {
  48075. side: {
  48076. height: math.unit(12, "feet"),
  48077. weight: math.unit(4000, "lb"),
  48078. name: "Side",
  48079. image: {
  48080. source: "./media/characters/terry/side.svg",
  48081. extra: 1518/1439,
  48082. bottom: 149/1667
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(12, "feet"),
  48090. default: true
  48091. },
  48092. ]
  48093. ))
  48094. characterMakers.push(() => makeCharacter(
  48095. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48096. {
  48097. front: {
  48098. height: math.unit(12, "feet"),
  48099. weight: math.unit(1500, "lb"),
  48100. name: "Front",
  48101. image: {
  48102. source: "./media/characters/kahea/front.svg",
  48103. extra: 1722/1617,
  48104. bottom: 179/1901
  48105. }
  48106. },
  48107. },
  48108. [
  48109. {
  48110. name: "Normal",
  48111. height: math.unit(12, "feet"),
  48112. default: true
  48113. },
  48114. ]
  48115. ))
  48116. characterMakers.push(() => makeCharacter(
  48117. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48118. {
  48119. demonFront: {
  48120. height: math.unit(36, "feet"),
  48121. name: "Front",
  48122. image: {
  48123. source: "./media/characters/alex-xuria/demon-front.svg",
  48124. extra: 1705/1673,
  48125. bottom: 198/1903
  48126. },
  48127. form: "demon",
  48128. default: true
  48129. },
  48130. demonBack: {
  48131. height: math.unit(36, "feet"),
  48132. name: "Back",
  48133. image: {
  48134. source: "./media/characters/alex-xuria/demon-back.svg",
  48135. extra: 1725/1693,
  48136. bottom: 70/1795
  48137. },
  48138. form: "demon"
  48139. },
  48140. demonHead: {
  48141. height: math.unit(2.14, "meters"),
  48142. name: "Head",
  48143. image: {
  48144. source: "./media/characters/alex-xuria/demon-head.svg"
  48145. },
  48146. form: "demon"
  48147. },
  48148. demonHand: {
  48149. height: math.unit(1.61, "meters"),
  48150. name: "Hand",
  48151. image: {
  48152. source: "./media/characters/alex-xuria/demon-hand.svg"
  48153. },
  48154. form: "demon"
  48155. },
  48156. demonPaw: {
  48157. height: math.unit(1.35, "meters"),
  48158. name: "Paw",
  48159. image: {
  48160. source: "./media/characters/alex-xuria/demon-paw.svg"
  48161. },
  48162. form: "demon"
  48163. },
  48164. demonFoot: {
  48165. height: math.unit(2.2, "meters"),
  48166. name: "Foot",
  48167. image: {
  48168. source: "./media/characters/alex-xuria/demon-foot.svg"
  48169. },
  48170. form: "demon"
  48171. },
  48172. demonCock: {
  48173. height: math.unit(1.74, "meters"),
  48174. name: "Cock",
  48175. image: {
  48176. source: "./media/characters/alex-xuria/demon-cock.svg"
  48177. },
  48178. form: "demon"
  48179. },
  48180. demonTailClosed: {
  48181. height: math.unit(1.47, "meters"),
  48182. name: "Tail (Closed)",
  48183. image: {
  48184. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48185. },
  48186. form: "demon"
  48187. },
  48188. demonTailOpen: {
  48189. height: math.unit(2.85, "meters"),
  48190. name: "Tail (Open)",
  48191. image: {
  48192. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48193. },
  48194. form: "demon"
  48195. },
  48196. incubusFront: {
  48197. height: math.unit(12, "feet"),
  48198. name: "Front",
  48199. image: {
  48200. source: "./media/characters/alex-xuria/incubus-front.svg",
  48201. extra: 1754/1677,
  48202. bottom: 125/1879
  48203. },
  48204. form: "incubus",
  48205. default: true
  48206. },
  48207. incubusBack: {
  48208. height: math.unit(12, "feet"),
  48209. name: "Back",
  48210. image: {
  48211. source: "./media/characters/alex-xuria/incubus-back.svg",
  48212. extra: 1702/1647,
  48213. bottom: 30/1732
  48214. },
  48215. form: "incubus"
  48216. },
  48217. incubusHead: {
  48218. height: math.unit(3.45, "feet"),
  48219. name: "Head",
  48220. image: {
  48221. source: "./media/characters/alex-xuria/incubus-head.svg"
  48222. },
  48223. form: "incubus"
  48224. },
  48225. rabbitFront: {
  48226. height: math.unit(6, "feet"),
  48227. name: "Front",
  48228. image: {
  48229. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48230. extra: 1369/1349,
  48231. bottom: 45/1414
  48232. },
  48233. form: "rabbit",
  48234. default: true
  48235. },
  48236. rabbitSide: {
  48237. height: math.unit(6, "feet"),
  48238. name: "Side",
  48239. image: {
  48240. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48241. extra: 1370/1356,
  48242. bottom: 37/1407
  48243. },
  48244. form: "rabbit"
  48245. },
  48246. rabbitBack: {
  48247. height: math.unit(6, "feet"),
  48248. name: "Back",
  48249. image: {
  48250. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48251. extra: 1375/1358,
  48252. bottom: 43/1418
  48253. },
  48254. form: "rabbit"
  48255. },
  48256. },
  48257. [
  48258. {
  48259. name: "Normal",
  48260. height: math.unit(6, "feet"),
  48261. default: true,
  48262. form: "rabbit"
  48263. },
  48264. {
  48265. name: "Incubus",
  48266. height: math.unit(12, "feet"),
  48267. default: true,
  48268. form: "incubus"
  48269. },
  48270. {
  48271. name: "Demon",
  48272. height: math.unit(36, "feet"),
  48273. default: true,
  48274. form: "demon"
  48275. }
  48276. ],
  48277. {
  48278. "demon": {
  48279. name: "Demon",
  48280. default: true
  48281. },
  48282. "incubus": {
  48283. name: "Incubus",
  48284. },
  48285. "rabbit": {
  48286. name: "Rabbit"
  48287. }
  48288. }
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48292. {
  48293. front: {
  48294. height: math.unit(7 + 5/12, "feet"),
  48295. weight: math.unit(510, "lb"),
  48296. name: "Front",
  48297. image: {
  48298. source: "./media/characters/syrup/front.svg",
  48299. extra: 932/916,
  48300. bottom: 26/958
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(7 + 5/12, "feet"),
  48308. default: true
  48309. },
  48310. {
  48311. name: "Big",
  48312. height: math.unit(50, "feet")
  48313. },
  48314. {
  48315. name: "Macro",
  48316. height: math.unit(300, "feet")
  48317. },
  48318. {
  48319. name: "Megamacro",
  48320. height: math.unit(1, "mile")
  48321. },
  48322. ]
  48323. ))
  48324. characterMakers.push(() => makeCharacter(
  48325. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48326. {
  48327. front: {
  48328. height: math.unit(6 + 9/12, "feet"),
  48329. name: "Front",
  48330. image: {
  48331. source: "./media/characters/zeimne/front.svg",
  48332. extra: 1969/1806,
  48333. bottom: 53/2022
  48334. }
  48335. },
  48336. },
  48337. [
  48338. {
  48339. name: "Normal",
  48340. height: math.unit(6 + 9/12, "feet"),
  48341. default: true
  48342. },
  48343. {
  48344. name: "Giant",
  48345. height: math.unit(550, "feet")
  48346. },
  48347. {
  48348. name: "Mega",
  48349. height: math.unit(3, "miles")
  48350. },
  48351. {
  48352. name: "Giga",
  48353. height: math.unit(250, "miles")
  48354. },
  48355. {
  48356. name: "Tera",
  48357. height: math.unit(1, "AU")
  48358. },
  48359. ]
  48360. ))
  48361. characterMakers.push(() => makeCharacter(
  48362. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48363. {
  48364. front: {
  48365. height: math.unit(5 + 2/12, "feet"),
  48366. name: "Front",
  48367. image: {
  48368. source: "./media/characters/grar/front.svg",
  48369. extra: 1331/1119,
  48370. bottom: 60/1391
  48371. }
  48372. },
  48373. back: {
  48374. height: math.unit(5 + 2/12, "feet"),
  48375. name: "Back",
  48376. image: {
  48377. source: "./media/characters/grar/back.svg",
  48378. extra: 1385/1169,
  48379. bottom: 23/1408
  48380. }
  48381. },
  48382. },
  48383. [
  48384. {
  48385. name: "Normal",
  48386. height: math.unit(5 + 2/12, "feet"),
  48387. default: true
  48388. },
  48389. ]
  48390. ))
  48391. characterMakers.push(() => makeCharacter(
  48392. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48393. {
  48394. front: {
  48395. height: math.unit(13 + 7/12, "feet"),
  48396. weight: math.unit(2200, "lb"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/endraya/front.svg",
  48400. extra: 1289/1215,
  48401. bottom: 50/1339
  48402. }
  48403. },
  48404. nude: {
  48405. height: math.unit(13 + 7/12, "feet"),
  48406. weight: math.unit(2200, "lb"),
  48407. name: "Nude",
  48408. image: {
  48409. source: "./media/characters/endraya/nude.svg",
  48410. extra: 1247/1171,
  48411. bottom: 40/1287
  48412. }
  48413. },
  48414. head: {
  48415. height: math.unit(2.6, "feet"),
  48416. name: "Head",
  48417. image: {
  48418. source: "./media/characters/endraya/head.svg"
  48419. }
  48420. },
  48421. slit: {
  48422. height: math.unit(3.4, "feet"),
  48423. name: "Slit",
  48424. image: {
  48425. source: "./media/characters/endraya/slit.svg"
  48426. }
  48427. },
  48428. },
  48429. [
  48430. {
  48431. name: "Normal",
  48432. height: math.unit(13 + 7/12, "feet"),
  48433. default: true
  48434. },
  48435. {
  48436. name: "Macro",
  48437. height: math.unit(200, "feet")
  48438. },
  48439. ]
  48440. ))
  48441. characterMakers.push(() => makeCharacter(
  48442. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48443. {
  48444. front: {
  48445. height: math.unit(1.81, "meters"),
  48446. weight: math.unit(69, "kg"),
  48447. name: "Front",
  48448. image: {
  48449. source: "./media/characters/rodryana/front.svg",
  48450. extra: 2002/1921,
  48451. bottom: 53/2055
  48452. }
  48453. },
  48454. back: {
  48455. height: math.unit(1.81, "meters"),
  48456. weight: math.unit(69, "kg"),
  48457. name: "Back",
  48458. image: {
  48459. source: "./media/characters/rodryana/back.svg",
  48460. extra: 1993/1926,
  48461. bottom: 48/2041
  48462. }
  48463. },
  48464. maw: {
  48465. height: math.unit(0.19769417475, "meters"),
  48466. name: "Maw",
  48467. image: {
  48468. source: "./media/characters/rodryana/maw.svg"
  48469. }
  48470. },
  48471. slit: {
  48472. height: math.unit(0.31631067961, "meters"),
  48473. name: "Slit",
  48474. image: {
  48475. source: "./media/characters/rodryana/slit.svg"
  48476. }
  48477. },
  48478. },
  48479. [
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(1.81, "meters")
  48483. },
  48484. {
  48485. name: "Mini Macro",
  48486. height: math.unit(181, "meters")
  48487. },
  48488. {
  48489. name: "Macro",
  48490. height: math.unit(452, "meters"),
  48491. default: true
  48492. },
  48493. {
  48494. name: "Mega Macro",
  48495. height: math.unit(1.375, "km")
  48496. },
  48497. {
  48498. name: "Giga Macro",
  48499. height: math.unit(13.575, "km")
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48505. {
  48506. front: {
  48507. height: math.unit(6, "feet"),
  48508. weight: math.unit(1000, "lb"),
  48509. name: "Front",
  48510. image: {
  48511. source: "./media/characters/asaya/front.svg",
  48512. extra: 1460/1200,
  48513. bottom: 71/1531
  48514. }
  48515. },
  48516. },
  48517. [
  48518. {
  48519. name: "Normal",
  48520. height: math.unit(8, "km"),
  48521. default: true
  48522. },
  48523. ]
  48524. ))
  48525. characterMakers.push(() => makeCharacter(
  48526. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48527. {
  48528. front: {
  48529. height: math.unit(3.5, "meters"),
  48530. name: "Front",
  48531. image: {
  48532. source: "./media/characters/sarzu-and-israz/front.svg",
  48533. extra: 1570/1558,
  48534. bottom: 150/1720
  48535. },
  48536. },
  48537. back: {
  48538. height: math.unit(3.5, "meters"),
  48539. name: "Back",
  48540. image: {
  48541. source: "./media/characters/sarzu-and-israz/back.svg",
  48542. extra: 1523/1509,
  48543. bottom: 132/1655
  48544. },
  48545. },
  48546. frontFemale: {
  48547. height: math.unit(3.5, "meters"),
  48548. name: "Front (Female)",
  48549. image: {
  48550. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48551. extra: 1570/1558,
  48552. bottom: 150/1720
  48553. },
  48554. },
  48555. frontHerm: {
  48556. height: math.unit(3.5, "meters"),
  48557. name: "Front (Herm)",
  48558. image: {
  48559. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48560. extra: 1570/1558,
  48561. bottom: 150/1720
  48562. },
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Normal",
  48568. height: math.unit(3.5, "meters"),
  48569. default: true,
  48570. },
  48571. {
  48572. name: "Macro",
  48573. height: math.unit(65.5, "meters"),
  48574. },
  48575. ],
  48576. ))
  48577. characterMakers.push(() => makeCharacter(
  48578. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48579. {
  48580. front: {
  48581. height: math.unit(6, "feet"),
  48582. weight: math.unit(250, "lb"),
  48583. name: "Front",
  48584. image: {
  48585. source: "./media/characters/zenimma/front.svg",
  48586. extra: 1346/1320,
  48587. bottom: 58/1404
  48588. }
  48589. },
  48590. back: {
  48591. height: math.unit(6, "feet"),
  48592. weight: math.unit(250, "lb"),
  48593. name: "Back",
  48594. image: {
  48595. source: "./media/characters/zenimma/back.svg",
  48596. extra: 1324/1308,
  48597. bottom: 44/1368
  48598. }
  48599. },
  48600. dick: {
  48601. height: math.unit(1.44, "feet"),
  48602. name: "Dick",
  48603. image: {
  48604. source: "./media/characters/zenimma/dick.svg"
  48605. }
  48606. },
  48607. },
  48608. [
  48609. {
  48610. name: "Canon Height",
  48611. height: math.unit(66, "miles"),
  48612. default: true
  48613. },
  48614. ]
  48615. ))
  48616. characterMakers.push(() => makeCharacter(
  48617. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48618. {
  48619. nude: {
  48620. height: math.unit(6, "feet"),
  48621. weight: math.unit(150, "lb"),
  48622. name: "Nude",
  48623. image: {
  48624. source: "./media/characters/shavon/nude.svg",
  48625. extra: 1242/1096,
  48626. bottom: 98/1340
  48627. }
  48628. },
  48629. dressed: {
  48630. height: math.unit(6, "feet"),
  48631. weight: math.unit(150, "lb"),
  48632. name: "Dressed",
  48633. image: {
  48634. source: "./media/characters/shavon/dressed.svg",
  48635. extra: 1242/1096,
  48636. bottom: 98/1340
  48637. }
  48638. },
  48639. },
  48640. [
  48641. {
  48642. name: "Macro",
  48643. height: math.unit(255, "feet"),
  48644. default: true
  48645. },
  48646. ]
  48647. ))
  48648. characterMakers.push(() => makeCharacter(
  48649. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48650. {
  48651. front: {
  48652. height: math.unit(6, "feet"),
  48653. name: "Front",
  48654. image: {
  48655. source: "./media/characters/steph/front.svg",
  48656. extra: 1430/1330,
  48657. bottom: 54/1484
  48658. }
  48659. },
  48660. },
  48661. [
  48662. {
  48663. name: "Normal",
  48664. height: math.unit(6, "feet"),
  48665. default: true
  48666. },
  48667. ]
  48668. ))
  48669. characterMakers.push(() => makeCharacter(
  48670. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48671. {
  48672. front: {
  48673. height: math.unit(9, "feet"),
  48674. weight: math.unit(400, "lb"),
  48675. name: "Front",
  48676. image: {
  48677. source: "./media/characters/kil'aman/front.svg",
  48678. extra: 1210/1159,
  48679. bottom: 109/1319
  48680. }
  48681. },
  48682. head: {
  48683. height: math.unit(2.14, "feet"),
  48684. name: "Head",
  48685. image: {
  48686. source: "./media/characters/kil'aman/head.svg"
  48687. }
  48688. },
  48689. maw: {
  48690. height: math.unit(1.21, "feet"),
  48691. name: "Maw",
  48692. image: {
  48693. source: "./media/characters/kil'aman/maw.svg"
  48694. }
  48695. },
  48696. foot: {
  48697. height: math.unit(1.7, "feet"),
  48698. name: "Foot",
  48699. image: {
  48700. source: "./media/characters/kil'aman/foot.svg"
  48701. }
  48702. },
  48703. dick: {
  48704. height: math.unit(2.1, "feet"),
  48705. name: "Dick",
  48706. image: {
  48707. source: "./media/characters/kil'aman/dick.svg"
  48708. }
  48709. },
  48710. },
  48711. [
  48712. {
  48713. name: "Normal",
  48714. height: math.unit(9, "feet")
  48715. },
  48716. {
  48717. name: "Canon Height",
  48718. height: math.unit(10, "miles"),
  48719. default: true
  48720. },
  48721. {
  48722. name: "Maximum",
  48723. height: math.unit(6e9, "miles")
  48724. },
  48725. ]
  48726. ))
  48727. characterMakers.push(() => makeCharacter(
  48728. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48729. {
  48730. front: {
  48731. height: math.unit(90, "feet"),
  48732. weight: math.unit(675000, "lb"),
  48733. name: "Front",
  48734. image: {
  48735. source: "./media/characters/qadan/front.svg",
  48736. extra: 1012/1004,
  48737. bottom: 78/1090
  48738. }
  48739. },
  48740. back: {
  48741. height: math.unit(90, "feet"),
  48742. weight: math.unit(675000, "lb"),
  48743. name: "Back",
  48744. image: {
  48745. source: "./media/characters/qadan/back.svg",
  48746. extra: 1042/1031,
  48747. bottom: 55/1097
  48748. }
  48749. },
  48750. armored: {
  48751. height: math.unit(90, "feet"),
  48752. weight: math.unit(675000, "lb"),
  48753. name: "Armored",
  48754. image: {
  48755. source: "./media/characters/qadan/armored.svg",
  48756. extra: 1047/1037,
  48757. bottom: 48/1095
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(90, "feet"),
  48765. default: true
  48766. },
  48767. ]
  48768. ))
  48769. characterMakers.push(() => makeCharacter(
  48770. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48771. {
  48772. front: {
  48773. height: math.unit(6, "feet"),
  48774. weight: math.unit(225, "lb"),
  48775. name: "Front",
  48776. image: {
  48777. source: "./media/characters/brooke/front.svg",
  48778. extra: 1050/1010,
  48779. bottom: 66/1116
  48780. }
  48781. },
  48782. back: {
  48783. height: math.unit(6, "feet"),
  48784. weight: math.unit(225, "lb"),
  48785. name: "Back",
  48786. image: {
  48787. source: "./media/characters/brooke/back.svg",
  48788. extra: 1053/1013,
  48789. bottom: 41/1094
  48790. }
  48791. },
  48792. dressed: {
  48793. height: math.unit(6, "feet"),
  48794. weight: math.unit(225, "lb"),
  48795. name: "Dressed",
  48796. image: {
  48797. source: "./media/characters/brooke/dressed.svg",
  48798. extra: 1050/1010,
  48799. bottom: 66/1116
  48800. }
  48801. },
  48802. },
  48803. [
  48804. {
  48805. name: "Canon Height",
  48806. height: math.unit(500, "miles"),
  48807. default: true
  48808. },
  48809. ]
  48810. ))
  48811. characterMakers.push(() => makeCharacter(
  48812. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48813. {
  48814. front: {
  48815. height: math.unit(6 + 2/12, "feet"),
  48816. weight: math.unit(210, "lb"),
  48817. name: "Front",
  48818. image: {
  48819. source: "./media/characters/wubs/front.svg",
  48820. extra: 1345/1325,
  48821. bottom: 70/1415
  48822. }
  48823. },
  48824. back: {
  48825. height: math.unit(6 + 2/12, "feet"),
  48826. weight: math.unit(210, "lb"),
  48827. name: "Back",
  48828. image: {
  48829. source: "./media/characters/wubs/back.svg",
  48830. extra: 1296/1275,
  48831. bottom: 58/1354
  48832. }
  48833. },
  48834. },
  48835. [
  48836. {
  48837. name: "Normal",
  48838. height: math.unit(6 + 2/12, "feet"),
  48839. default: true
  48840. },
  48841. {
  48842. name: "Macro",
  48843. height: math.unit(1000, "feet")
  48844. },
  48845. {
  48846. name: "Megamacro",
  48847. height: math.unit(1, "mile")
  48848. },
  48849. ]
  48850. ))
  48851. characterMakers.push(() => makeCharacter(
  48852. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48853. {
  48854. front: {
  48855. height: math.unit(4, "feet"),
  48856. weight: math.unit(120, "lb"),
  48857. name: "Front",
  48858. image: {
  48859. source: "./media/characters/blue/front.svg",
  48860. extra: 1636/1525,
  48861. bottom: 43/1679
  48862. }
  48863. },
  48864. back: {
  48865. height: math.unit(4, "feet"),
  48866. weight: math.unit(120, "lb"),
  48867. name: "Back",
  48868. image: {
  48869. source: "./media/characters/blue/back.svg",
  48870. extra: 1660/1560,
  48871. bottom: 57/1717
  48872. }
  48873. },
  48874. paws: {
  48875. height: math.unit(0.826, "feet"),
  48876. name: "Paws",
  48877. image: {
  48878. source: "./media/characters/blue/paws.svg"
  48879. }
  48880. },
  48881. },
  48882. [
  48883. {
  48884. name: "Micro",
  48885. height: math.unit(3, "inches")
  48886. },
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(4, "feet"),
  48890. default: true
  48891. },
  48892. {
  48893. name: "Femenine Form",
  48894. height: math.unit(14, "feet")
  48895. },
  48896. {
  48897. name: "Werebat Form",
  48898. height: math.unit(18, "feet")
  48899. },
  48900. ]
  48901. ))
  48902. characterMakers.push(() => makeCharacter(
  48903. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48904. {
  48905. female: {
  48906. height: math.unit(7 + 4/12, "feet"),
  48907. weight: math.unit(243, "lb"),
  48908. name: "Female",
  48909. image: {
  48910. source: "./media/characters/kaya/female.svg",
  48911. extra: 975/898,
  48912. bottom: 34/1009
  48913. }
  48914. },
  48915. herm: {
  48916. height: math.unit(7 + 4/12, "feet"),
  48917. weight: math.unit(243, "lb"),
  48918. name: "Herm",
  48919. image: {
  48920. source: "./media/characters/kaya/herm.svg",
  48921. extra: 975/898,
  48922. bottom: 34/1009
  48923. }
  48924. },
  48925. },
  48926. [
  48927. {
  48928. name: "Normal",
  48929. height: math.unit(7 + 4/12, "feet"),
  48930. default: true
  48931. },
  48932. ]
  48933. ))
  48934. characterMakers.push(() => makeCharacter(
  48935. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48936. {
  48937. female: {
  48938. height: math.unit(9 + 4/12, "feet"),
  48939. weight: math.unit(398, "lb"),
  48940. name: "Female",
  48941. image: {
  48942. source: "./media/characters/kassandra/female.svg",
  48943. extra: 908/839,
  48944. bottom: 61/969
  48945. }
  48946. },
  48947. intersex: {
  48948. height: math.unit(9 + 4/12, "feet"),
  48949. weight: math.unit(398, "lb"),
  48950. name: "Intersex",
  48951. image: {
  48952. source: "./media/characters/kassandra/intersex.svg",
  48953. extra: 908/839,
  48954. bottom: 61/969
  48955. }
  48956. },
  48957. },
  48958. [
  48959. {
  48960. name: "Normal",
  48961. height: math.unit(9 + 4/12, "feet"),
  48962. default: true
  48963. },
  48964. ]
  48965. ))
  48966. characterMakers.push(() => makeCharacter(
  48967. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48968. {
  48969. front: {
  48970. height: math.unit(3, "meters"),
  48971. name: "Front",
  48972. image: {
  48973. source: "./media/characters/amy/front.svg",
  48974. extra: 1380/1343,
  48975. bottom: 70/1450
  48976. }
  48977. },
  48978. back: {
  48979. height: math.unit(3, "meters"),
  48980. name: "Back",
  48981. image: {
  48982. source: "./media/characters/amy/back.svg",
  48983. extra: 1380/1347,
  48984. bottom: 66/1446
  48985. }
  48986. },
  48987. },
  48988. [
  48989. {
  48990. name: "Normal",
  48991. height: math.unit(3, "meters"),
  48992. default: true
  48993. },
  48994. ]
  48995. ))
  48996. characterMakers.push(() => makeCharacter(
  48997. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48998. {
  48999. side: {
  49000. height: math.unit(47, "cm"),
  49001. weight: math.unit(10.8, "kg"),
  49002. name: "Side",
  49003. image: {
  49004. source: "./media/characters/alphaschakal/side.svg",
  49005. extra: 1058/568,
  49006. bottom: 62/1120
  49007. }
  49008. },
  49009. back: {
  49010. height: math.unit(78, "cm"),
  49011. weight: math.unit(10.8, "kg"),
  49012. name: "Back",
  49013. image: {
  49014. source: "./media/characters/alphaschakal/back.svg",
  49015. extra: 1102/942,
  49016. bottom: 185/1287
  49017. }
  49018. },
  49019. head: {
  49020. height: math.unit(28, "cm"),
  49021. name: "Head",
  49022. image: {
  49023. source: "./media/characters/alphaschakal/head.svg",
  49024. extra: 696/508,
  49025. bottom: 0/696
  49026. }
  49027. },
  49028. paw: {
  49029. height: math.unit(16, "cm"),
  49030. name: "Paw",
  49031. image: {
  49032. source: "./media/characters/alphaschakal/paw.svg"
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Normal",
  49039. height: math.unit(47, "cm"),
  49040. default: true
  49041. },
  49042. {
  49043. name: "Macro",
  49044. height: math.unit(340, "cm")
  49045. },
  49046. ]
  49047. ))
  49048. characterMakers.push(() => makeCharacter(
  49049. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49050. {
  49051. front: {
  49052. height: math.unit(36, "earths"),
  49053. name: "Front",
  49054. image: {
  49055. source: "./media/characters/ecobyss/front.svg",
  49056. extra: 1282/1215,
  49057. bottom: 11/1293
  49058. }
  49059. },
  49060. back: {
  49061. height: math.unit(36, "earths"),
  49062. name: "Back",
  49063. image: {
  49064. source: "./media/characters/ecobyss/back.svg",
  49065. extra: 1291/1222,
  49066. bottom: 8/1299
  49067. }
  49068. },
  49069. },
  49070. [
  49071. {
  49072. name: "Normal",
  49073. height: math.unit(36, "earths"),
  49074. default: true
  49075. },
  49076. ]
  49077. ))
  49078. characterMakers.push(() => makeCharacter(
  49079. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49080. {
  49081. front: {
  49082. height: math.unit(12, "feet"),
  49083. name: "Front",
  49084. image: {
  49085. source: "./media/characters/vasuk/front.svg",
  49086. extra: 1326/1207,
  49087. bottom: 64/1390
  49088. }
  49089. },
  49090. },
  49091. [
  49092. {
  49093. name: "Normal",
  49094. height: math.unit(12, "feet"),
  49095. default: true
  49096. },
  49097. ]
  49098. ))
  49099. characterMakers.push(() => makeCharacter(
  49100. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49101. {
  49102. side: {
  49103. height: math.unit(100, "feet"),
  49104. name: "Side",
  49105. image: {
  49106. source: "./media/characters/linneaus/side.svg",
  49107. extra: 987/807,
  49108. bottom: 47/1034
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Macro",
  49115. height: math.unit(100, "feet"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(8, "feet"),
  49125. weight: math.unit(1200, "lb"),
  49126. name: "Front",
  49127. image: {
  49128. source: "./media/characters/nyterious-daligdig/front.svg",
  49129. extra: 1284/1094,
  49130. bottom: 84/1368
  49131. }
  49132. },
  49133. back: {
  49134. height: math.unit(8, "feet"),
  49135. weight: math.unit(1200, "lb"),
  49136. name: "Back",
  49137. image: {
  49138. source: "./media/characters/nyterious-daligdig/back.svg",
  49139. extra: 1301/1121,
  49140. bottom: 129/1430
  49141. }
  49142. },
  49143. mouth: {
  49144. height: math.unit(1.464, "feet"),
  49145. name: "Mouth",
  49146. image: {
  49147. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49148. }
  49149. },
  49150. },
  49151. [
  49152. {
  49153. name: "Small",
  49154. height: math.unit(8, "feet"),
  49155. default: true
  49156. },
  49157. {
  49158. name: "Normal",
  49159. height: math.unit(15, "feet")
  49160. },
  49161. {
  49162. name: "Macro",
  49163. height: math.unit(90, "feet")
  49164. },
  49165. ]
  49166. ))
  49167. characterMakers.push(() => makeCharacter(
  49168. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49169. {
  49170. front: {
  49171. height: math.unit(7 + 4/12, "feet"),
  49172. weight: math.unit(252, "lb"),
  49173. name: "Front",
  49174. image: {
  49175. source: "./media/characters/bandel/front.svg",
  49176. extra: 1946/1775,
  49177. bottom: 26/1972
  49178. }
  49179. },
  49180. back: {
  49181. height: math.unit(7 + 4/12, "feet"),
  49182. weight: math.unit(252, "lb"),
  49183. name: "Back",
  49184. image: {
  49185. source: "./media/characters/bandel/back.svg",
  49186. extra: 1940/1770,
  49187. bottom: 25/1965
  49188. }
  49189. },
  49190. maw: {
  49191. height: math.unit(2.15, "feet"),
  49192. name: "Maw",
  49193. image: {
  49194. source: "./media/characters/bandel/maw.svg"
  49195. }
  49196. },
  49197. stomach: {
  49198. height: math.unit(1.95, "feet"),
  49199. name: "Stomach",
  49200. image: {
  49201. source: "./media/characters/bandel/stomach.svg"
  49202. }
  49203. },
  49204. },
  49205. [
  49206. {
  49207. name: "Normal",
  49208. height: math.unit(7 + 4/12, "feet"),
  49209. default: true
  49210. },
  49211. ]
  49212. ))
  49213. characterMakers.push(() => makeCharacter(
  49214. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49215. {
  49216. front: {
  49217. height: math.unit(10 + 5/12, "feet"),
  49218. weight: math.unit(773.5, "kg"),
  49219. name: "Front",
  49220. image: {
  49221. source: "./media/characters/zed/front.svg",
  49222. extra: 987/941,
  49223. bottom: 52/1039
  49224. }
  49225. },
  49226. },
  49227. [
  49228. {
  49229. name: "Short",
  49230. height: math.unit(5 + 4/12, "feet")
  49231. },
  49232. {
  49233. name: "Average",
  49234. height: math.unit(10 + 5/12, "feet"),
  49235. default: true
  49236. },
  49237. {
  49238. name: "Mini-Macro",
  49239. height: math.unit(24 + 9/12, "feet")
  49240. },
  49241. {
  49242. name: "Macro",
  49243. height: math.unit(249, "feet")
  49244. },
  49245. {
  49246. name: "Mega-Macro",
  49247. height: math.unit(12490, "feet")
  49248. },
  49249. {
  49250. name: "Giga-Macro",
  49251. height: math.unit(24.9, "miles")
  49252. },
  49253. {
  49254. name: "Tera-Macro",
  49255. height: math.unit(24900, "miles")
  49256. },
  49257. {
  49258. name: "Cosmic Scale",
  49259. height: math.unit(38.9, "lightyears")
  49260. },
  49261. {
  49262. name: "Universal Scale",
  49263. height: math.unit(138e12, "lightyears")
  49264. },
  49265. ]
  49266. ))
  49267. characterMakers.push(() => makeCharacter(
  49268. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49269. {
  49270. front: {
  49271. height: math.unit(1561, "inches"),
  49272. name: "Front",
  49273. image: {
  49274. source: "./media/characters/ivan/front.svg",
  49275. extra: 1126/1071,
  49276. bottom: 26/1152
  49277. }
  49278. },
  49279. back: {
  49280. height: math.unit(1561, "inches"),
  49281. name: "Back",
  49282. image: {
  49283. source: "./media/characters/ivan/back.svg",
  49284. extra: 1134/1079,
  49285. bottom: 30/1164
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(1561, "inches"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(5 + 7/12, "feet"),
  49302. weight: math.unit(150, "lb"),
  49303. name: "Front",
  49304. image: {
  49305. source: "./media/characters/robin-arctic-hare/front.svg",
  49306. extra: 1148/974,
  49307. bottom: 20/1168
  49308. }
  49309. },
  49310. },
  49311. [
  49312. {
  49313. name: "Normal",
  49314. height: math.unit(5 + 7/12, "feet"),
  49315. default: true
  49316. },
  49317. ]
  49318. ))
  49319. characterMakers.push(() => makeCharacter(
  49320. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49321. {
  49322. side: {
  49323. height: math.unit(5, "feet"),
  49324. name: "Side",
  49325. image: {
  49326. source: "./media/characters/birch/side.svg",
  49327. extra: 985/796,
  49328. bottom: 111/1096
  49329. }
  49330. },
  49331. },
  49332. [
  49333. {
  49334. name: "Normal",
  49335. height: math.unit(5, "feet"),
  49336. default: true
  49337. },
  49338. ]
  49339. ))
  49340. characterMakers.push(() => makeCharacter(
  49341. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49342. {
  49343. front: {
  49344. height: math.unit(4, "feet"),
  49345. name: "Front",
  49346. image: {
  49347. source: "./media/characters/rasp/front.svg",
  49348. extra: 561/478,
  49349. bottom: 74/635
  49350. }
  49351. },
  49352. },
  49353. [
  49354. {
  49355. name: "Normal",
  49356. height: math.unit(4, "feet"),
  49357. default: true
  49358. },
  49359. ]
  49360. ))
  49361. characterMakers.push(() => makeCharacter(
  49362. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49363. {
  49364. front: {
  49365. height: math.unit(4 + 6/12, "feet"),
  49366. name: "Front",
  49367. image: {
  49368. source: "./media/characters/agatha/front.svg",
  49369. extra: 947/933,
  49370. bottom: 42/989
  49371. }
  49372. },
  49373. back: {
  49374. height: math.unit(4 + 6/12, "feet"),
  49375. name: "Back",
  49376. image: {
  49377. source: "./media/characters/agatha/back.svg",
  49378. extra: 935/922,
  49379. bottom: 48/983
  49380. }
  49381. },
  49382. },
  49383. [
  49384. {
  49385. name: "Normal",
  49386. height: math.unit(4 + 6 /12, "feet"),
  49387. default: true
  49388. },
  49389. {
  49390. name: "Max Size",
  49391. height: math.unit(500, "feet")
  49392. },
  49393. ]
  49394. ))
  49395. characterMakers.push(() => makeCharacter(
  49396. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49397. {
  49398. side: {
  49399. height: math.unit(30, "feet"),
  49400. name: "Side",
  49401. image: {
  49402. source: "./media/characters/roggy/side.svg",
  49403. extra: 909/643,
  49404. bottom: 63/972
  49405. }
  49406. },
  49407. lounging: {
  49408. height: math.unit(20, "feet"),
  49409. name: "Lounging",
  49410. image: {
  49411. source: "./media/characters/roggy/lounging.svg",
  49412. extra: 643/479,
  49413. bottom: 145/788
  49414. }
  49415. },
  49416. handpaw: {
  49417. height: math.unit(13.1, "feet"),
  49418. name: "Handpaw",
  49419. image: {
  49420. source: "./media/characters/roggy/handpaw.svg"
  49421. }
  49422. },
  49423. footpaw: {
  49424. height: math.unit(15.8, "feet"),
  49425. name: "Footpaw",
  49426. image: {
  49427. source: "./media/characters/roggy/footpaw.svg"
  49428. }
  49429. },
  49430. },
  49431. [
  49432. {
  49433. name: "Menacing",
  49434. height: math.unit(30, "feet"),
  49435. default: true
  49436. },
  49437. ]
  49438. ))
  49439. characterMakers.push(() => makeCharacter(
  49440. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49441. {
  49442. front: {
  49443. height: math.unit(5 + 7/12, "feet"),
  49444. weight: math.unit(135, "lb"),
  49445. name: "Front",
  49446. image: {
  49447. source: "./media/characters/naomi/front.svg",
  49448. extra: 1209/1154,
  49449. bottom: 129/1338
  49450. }
  49451. },
  49452. back: {
  49453. height: math.unit(5 + 7/12, "feet"),
  49454. weight: math.unit(135, "lb"),
  49455. name: "Back",
  49456. image: {
  49457. source: "./media/characters/naomi/back.svg",
  49458. extra: 1252/1190,
  49459. bottom: 23/1275
  49460. }
  49461. },
  49462. },
  49463. [
  49464. {
  49465. name: "Normal",
  49466. height: math.unit(5 + 7 /12, "feet"),
  49467. default: true
  49468. },
  49469. ]
  49470. ))
  49471. characterMakers.push(() => makeCharacter(
  49472. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49473. {
  49474. side: {
  49475. height: math.unit(35, "meters"),
  49476. name: "Side",
  49477. image: {
  49478. source: "./media/characters/kimpi/side.svg",
  49479. extra: 419/382,
  49480. bottom: 63/482
  49481. }
  49482. },
  49483. hand: {
  49484. height: math.unit(8.96, "meters"),
  49485. name: "Hand",
  49486. image: {
  49487. source: "./media/characters/kimpi/hand.svg"
  49488. }
  49489. },
  49490. },
  49491. [
  49492. {
  49493. name: "Normal",
  49494. height: math.unit(35, "meters"),
  49495. default: true
  49496. },
  49497. ]
  49498. ))
  49499. characterMakers.push(() => makeCharacter(
  49500. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49501. {
  49502. front: {
  49503. height: math.unit(4 + 4/12, "feet"),
  49504. name: "Front",
  49505. image: {
  49506. source: "./media/characters/pepper-purrloin/front.svg",
  49507. extra: 1141/1024,
  49508. bottom: 21/1162
  49509. }
  49510. },
  49511. },
  49512. [
  49513. {
  49514. name: "Normal",
  49515. height: math.unit(4 + 4/12, "feet"),
  49516. default: true
  49517. },
  49518. ]
  49519. ))
  49520. characterMakers.push(() => makeCharacter(
  49521. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49522. {
  49523. front: {
  49524. height: math.unit(6 + 2/12, "feet"),
  49525. name: "Front",
  49526. image: {
  49527. source: "./media/characters/raphael/front.svg",
  49528. extra: 1101/962,
  49529. bottom: 59/1160
  49530. }
  49531. },
  49532. },
  49533. [
  49534. {
  49535. name: "Normal",
  49536. height: math.unit(6 + 2/12, "feet"),
  49537. default: true
  49538. },
  49539. ]
  49540. ))
  49541. characterMakers.push(() => makeCharacter(
  49542. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49543. {
  49544. front: {
  49545. height: math.unit(6, "feet"),
  49546. weight: math.unit(150, "lb"),
  49547. name: "Front",
  49548. image: {
  49549. source: "./media/characters/victor-williams/front.svg",
  49550. extra: 1894/1825,
  49551. bottom: 67/1961
  49552. }
  49553. },
  49554. },
  49555. [
  49556. {
  49557. name: "Normal",
  49558. height: math.unit(6, "feet"),
  49559. default: true
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49565. {
  49566. front: {
  49567. height: math.unit(5 + 8/12, "feet"),
  49568. weight: math.unit(150, "lb"),
  49569. name: "Front",
  49570. image: {
  49571. source: "./media/characters/rachel/front.svg",
  49572. extra: 1902/1787,
  49573. bottom: 46/1948
  49574. }
  49575. },
  49576. },
  49577. [
  49578. {
  49579. name: "Base Height",
  49580. height: math.unit(5 + 8/12, "feet"),
  49581. default: true
  49582. },
  49583. {
  49584. name: "Macro",
  49585. height: math.unit(200, "feet")
  49586. },
  49587. {
  49588. name: "Mega Macro",
  49589. height: math.unit(1, "mile")
  49590. },
  49591. {
  49592. name: "Giga Macro",
  49593. height: math.unit(1500, "miles")
  49594. },
  49595. {
  49596. name: "Tera Macro",
  49597. height: math.unit(8000, "miles")
  49598. },
  49599. {
  49600. name: "Tera Macro+",
  49601. height: math.unit(2e5, "miles")
  49602. },
  49603. ]
  49604. ))
  49605. characterMakers.push(() => makeCharacter(
  49606. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49607. {
  49608. front: {
  49609. height: math.unit(6.5, "feet"),
  49610. name: "Front",
  49611. image: {
  49612. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49613. extra: 860/819,
  49614. bottom: 307/1167
  49615. }
  49616. },
  49617. back: {
  49618. height: math.unit(6.5, "feet"),
  49619. name: "Back",
  49620. image: {
  49621. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49622. extra: 880/837,
  49623. bottom: 395/1275
  49624. }
  49625. },
  49626. sleeping: {
  49627. height: math.unit(2.79, "feet"),
  49628. name: "Sleeping",
  49629. image: {
  49630. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49631. extra: 465/383,
  49632. bottom: 263/728
  49633. }
  49634. },
  49635. maw: {
  49636. height: math.unit(2.52, "feet"),
  49637. name: "Maw",
  49638. image: {
  49639. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49640. }
  49641. },
  49642. },
  49643. [
  49644. {
  49645. name: "Normal",
  49646. height: math.unit(6.5, "feet"),
  49647. default: true
  49648. },
  49649. ]
  49650. ))
  49651. characterMakers.push(() => makeCharacter(
  49652. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49653. {
  49654. front: {
  49655. height: math.unit(5, "feet"),
  49656. name: "Front",
  49657. image: {
  49658. source: "./media/characters/nova-nerium/front.svg",
  49659. extra: 1548/1392,
  49660. bottom: 374/1922
  49661. }
  49662. },
  49663. back: {
  49664. height: math.unit(5, "feet"),
  49665. name: "Back",
  49666. image: {
  49667. source: "./media/characters/nova-nerium/back.svg",
  49668. extra: 1658/1468,
  49669. bottom: 257/1915
  49670. }
  49671. },
  49672. },
  49673. [
  49674. {
  49675. name: "Normal",
  49676. height: math.unit(5, "feet"),
  49677. default: true
  49678. },
  49679. ]
  49680. ))
  49681. characterMakers.push(() => makeCharacter(
  49682. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49683. {
  49684. front: {
  49685. height: math.unit(5 + 4/12, "feet"),
  49686. name: "Front",
  49687. image: {
  49688. source: "./media/characters/ashe-pyriph/front.svg",
  49689. extra: 1935/1747,
  49690. bottom: 60/1995
  49691. }
  49692. },
  49693. },
  49694. [
  49695. {
  49696. name: "Normal",
  49697. height: math.unit(5 + 4/12, "feet"),
  49698. default: true
  49699. },
  49700. ]
  49701. ))
  49702. characterMakers.push(() => makeCharacter(
  49703. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49704. {
  49705. front: {
  49706. height: math.unit(8.7, "feet"),
  49707. name: "Front",
  49708. image: {
  49709. source: "./media/characters/flicker-wisp/front.svg",
  49710. extra: 1835/1613,
  49711. bottom: 449/2284
  49712. }
  49713. },
  49714. side: {
  49715. height: math.unit(8.7, "feet"),
  49716. name: "Side",
  49717. image: {
  49718. source: "./media/characters/flicker-wisp/side.svg",
  49719. extra: 1841/1642,
  49720. bottom: 336/2177
  49721. },
  49722. default: true
  49723. },
  49724. maw: {
  49725. height: math.unit(3.35, "feet"),
  49726. name: "Maw",
  49727. image: {
  49728. source: "./media/characters/flicker-wisp/maw.svg",
  49729. extra: 2338/1506,
  49730. bottom: 0/2338
  49731. }
  49732. },
  49733. ovipositor: {
  49734. height: math.unit(4.95, "feet"),
  49735. name: "Ovipositor",
  49736. image: {
  49737. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49738. }
  49739. },
  49740. egg: {
  49741. height: math.unit(0.385, "feet"),
  49742. weight: math.unit(2, "lb"),
  49743. name: "Egg",
  49744. image: {
  49745. source: "./media/characters/flicker-wisp/egg.svg"
  49746. }
  49747. },
  49748. },
  49749. [
  49750. {
  49751. name: "Normal",
  49752. height: math.unit(8.7, "feet"),
  49753. default: true
  49754. },
  49755. ]
  49756. ))
  49757. characterMakers.push(() => makeCharacter(
  49758. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49759. {
  49760. side: {
  49761. height: math.unit(11, "feet"),
  49762. name: "Side",
  49763. image: {
  49764. source: "./media/characters/faefnul/side.svg",
  49765. extra: 1100/1007,
  49766. bottom: 0/1100
  49767. }
  49768. },
  49769. },
  49770. [
  49771. {
  49772. name: "Normal",
  49773. height: math.unit(11, "feet"),
  49774. default: true
  49775. },
  49776. ]
  49777. ))
  49778. characterMakers.push(() => makeCharacter(
  49779. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49780. {
  49781. front: {
  49782. height: math.unit(6 + 2/12, "feet"),
  49783. name: "Front",
  49784. image: {
  49785. source: "./media/characters/shady/front.svg",
  49786. extra: 502/461,
  49787. bottom: 9/511
  49788. }
  49789. },
  49790. kneeling: {
  49791. height: math.unit(4.6, "feet"),
  49792. name: "Kneeling",
  49793. image: {
  49794. source: "./media/characters/shady/kneeling.svg",
  49795. extra: 1328/1219,
  49796. bottom: 117/1445
  49797. }
  49798. },
  49799. maw: {
  49800. height: math.unit(2, "feet"),
  49801. name: "Maw",
  49802. image: {
  49803. source: "./media/characters/shady/maw.svg"
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Nano",
  49810. height: math.unit(1, "mm")
  49811. },
  49812. {
  49813. name: "Micro",
  49814. height: math.unit(12, "mm")
  49815. },
  49816. {
  49817. name: "Tiny",
  49818. height: math.unit(3, "inches")
  49819. },
  49820. {
  49821. name: "Normal",
  49822. height: math.unit(6 + 2/12, "feet"),
  49823. default: true
  49824. },
  49825. {
  49826. name: "Big",
  49827. height: math.unit(15, "feet")
  49828. },
  49829. {
  49830. name: "Macro",
  49831. height: math.unit(150, "feet")
  49832. },
  49833. {
  49834. name: "Titanic",
  49835. height: math.unit(500, "feet")
  49836. },
  49837. ]
  49838. ))
  49839. characterMakers.push(() => makeCharacter(
  49840. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49841. {
  49842. front: {
  49843. height: math.unit(12, "feet"),
  49844. name: "Front",
  49845. image: {
  49846. source: "./media/characters/fenrir/front.svg",
  49847. extra: 968/875,
  49848. bottom: 22/990
  49849. }
  49850. },
  49851. },
  49852. [
  49853. {
  49854. name: "Big",
  49855. height: math.unit(12, "feet"),
  49856. default: true
  49857. },
  49858. ]
  49859. ))
  49860. characterMakers.push(() => makeCharacter(
  49861. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49862. {
  49863. front: {
  49864. height: math.unit(5 + 4/12, "feet"),
  49865. name: "Front",
  49866. image: {
  49867. source: "./media/characters/makar/front.svg",
  49868. extra: 1181/1112,
  49869. bottom: 78/1259
  49870. }
  49871. },
  49872. },
  49873. [
  49874. {
  49875. name: "Normal",
  49876. height: math.unit(5 + 4/12, "feet"),
  49877. default: true
  49878. },
  49879. ]
  49880. ))
  49881. characterMakers.push(() => makeCharacter(
  49882. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49883. {
  49884. front: {
  49885. height: math.unit(5 + 7/12, "feet"),
  49886. name: "Front",
  49887. image: {
  49888. source: "./media/characters/callow/front.svg",
  49889. extra: 1482/1304,
  49890. bottom: 23/1505
  49891. }
  49892. },
  49893. back: {
  49894. height: math.unit(5 + 7/12, "feet"),
  49895. name: "Back",
  49896. image: {
  49897. source: "./media/characters/callow/back.svg",
  49898. extra: 1484/1296,
  49899. bottom: 25/1509
  49900. }
  49901. },
  49902. },
  49903. [
  49904. {
  49905. name: "Micro",
  49906. height: math.unit(3, "inches"),
  49907. default: true
  49908. },
  49909. {
  49910. name: "Normal",
  49911. height: math.unit(5 + 7/12, "feet")
  49912. },
  49913. ]
  49914. ))
  49915. characterMakers.push(() => makeCharacter(
  49916. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49917. {
  49918. front: {
  49919. height: math.unit(6 + 2/12, "feet"),
  49920. name: "Front",
  49921. image: {
  49922. source: "./media/characters/natel/front.svg",
  49923. extra: 1833/1692,
  49924. bottom: 166/1999
  49925. }
  49926. },
  49927. },
  49928. [
  49929. {
  49930. name: "Normal",
  49931. height: math.unit(6 + 2/12, "feet"),
  49932. default: true
  49933. },
  49934. ]
  49935. ))
  49936. characterMakers.push(() => makeCharacter(
  49937. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49938. {
  49939. front: {
  49940. height: math.unit(1.75, "meters"),
  49941. name: "Front",
  49942. image: {
  49943. source: "./media/characters/misu/front.svg",
  49944. extra: 1690/1558,
  49945. bottom: 234/1924
  49946. }
  49947. },
  49948. back: {
  49949. height: math.unit(1.75, "meters"),
  49950. name: "Back",
  49951. image: {
  49952. source: "./media/characters/misu/back.svg",
  49953. extra: 1762/1618,
  49954. bottom: 146/1908
  49955. }
  49956. },
  49957. frontNude: {
  49958. height: math.unit(1.75, "meters"),
  49959. name: "Front (Nude)",
  49960. image: {
  49961. source: "./media/characters/misu/front-nude.svg",
  49962. extra: 1690/1558,
  49963. bottom: 234/1924
  49964. }
  49965. },
  49966. backNude: {
  49967. height: math.unit(1.75, "meters"),
  49968. name: "Back (Nude)",
  49969. image: {
  49970. source: "./media/characters/misu/back-nude.svg",
  49971. extra: 1762/1618,
  49972. bottom: 146/1908
  49973. }
  49974. },
  49975. frontErect: {
  49976. height: math.unit(1.75, "meters"),
  49977. name: "Front (Erect)",
  49978. image: {
  49979. source: "./media/characters/misu/front-erect.svg",
  49980. extra: 1690/1558,
  49981. bottom: 234/1924
  49982. }
  49983. },
  49984. maw: {
  49985. height: math.unit(0.47, "meters"),
  49986. name: "Maw",
  49987. image: {
  49988. source: "./media/characters/misu/maw.svg"
  49989. }
  49990. },
  49991. head: {
  49992. height: math.unit(0.35, "meters"),
  49993. name: "Head",
  49994. image: {
  49995. source: "./media/characters/misu/head.svg"
  49996. }
  49997. },
  49998. rear: {
  49999. height: math.unit(0.47, "meters"),
  50000. name: "Rear",
  50001. image: {
  50002. source: "./media/characters/misu/rear.svg"
  50003. }
  50004. },
  50005. },
  50006. [
  50007. {
  50008. name: "Normal",
  50009. height: math.unit(1.75, "meters")
  50010. },
  50011. {
  50012. name: "Not good for the people",
  50013. height: math.unit(42, "meters")
  50014. },
  50015. {
  50016. name: "Not good for the neighborhood",
  50017. height: math.unit(135, "meters")
  50018. },
  50019. {
  50020. name: "Bit bigger problem",
  50021. height: math.unit(380, "meters"),
  50022. default: true
  50023. },
  50024. {
  50025. name: "Not good for the city",
  50026. height: math.unit(1.5, "km")
  50027. },
  50028. {
  50029. name: "Not good for the county",
  50030. height: math.unit(5.5, "km")
  50031. },
  50032. {
  50033. name: "Not good for the state",
  50034. height: math.unit(25, "km")
  50035. },
  50036. {
  50037. name: "Not good for the country",
  50038. height: math.unit(125, "km")
  50039. },
  50040. {
  50041. name: "Not good for the continent",
  50042. height: math.unit(2100, "km")
  50043. },
  50044. {
  50045. name: "Not good for the planet",
  50046. height: math.unit(35000, "km")
  50047. },
  50048. {
  50049. name: "Just no",
  50050. height: math.unit(8.5e18, "km")
  50051. },
  50052. ]
  50053. ))
  50054. characterMakers.push(() => makeCharacter(
  50055. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50056. {
  50057. front: {
  50058. height: math.unit(6.5, "feet"),
  50059. name: "Front",
  50060. image: {
  50061. source: "./media/characters/poppy/front.svg",
  50062. extra: 1878/1812,
  50063. bottom: 43/1921
  50064. }
  50065. },
  50066. feet: {
  50067. height: math.unit(1.06, "feet"),
  50068. name: "Feet",
  50069. image: {
  50070. source: "./media/characters/poppy/feet.svg",
  50071. extra: 1083/1083,
  50072. bottom: 87/1170
  50073. }
  50074. },
  50075. },
  50076. [
  50077. {
  50078. name: "Human",
  50079. height: math.unit(6.5, "feet")
  50080. },
  50081. {
  50082. name: "Default",
  50083. height: math.unit(300, "feet"),
  50084. default: true
  50085. },
  50086. {
  50087. name: "Huge",
  50088. height: math.unit(850, "feet")
  50089. },
  50090. {
  50091. name: "Mega",
  50092. height: math.unit(8000, "feet")
  50093. },
  50094. {
  50095. name: "Giga",
  50096. height: math.unit(300, "miles")
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50102. {
  50103. bipedal: {
  50104. height: math.unit(7, "feet"),
  50105. name: "Bipedal",
  50106. image: {
  50107. source: "./media/characters/zener/bipedal.svg",
  50108. extra: 874/805,
  50109. bottom: 109/983
  50110. }
  50111. },
  50112. quadrupedal: {
  50113. height: math.unit(4.64, "feet"),
  50114. name: "Quadrupedal",
  50115. image: {
  50116. source: "./media/characters/zener/quadrupedal.svg",
  50117. extra: 638/507,
  50118. bottom: 190/828
  50119. }
  50120. },
  50121. cock: {
  50122. height: math.unit(18, "inches"),
  50123. name: "Cock",
  50124. image: {
  50125. source: "./media/characters/zener/cock.svg"
  50126. }
  50127. },
  50128. },
  50129. [
  50130. {
  50131. name: "Normal",
  50132. height: math.unit(7, "feet"),
  50133. default: true
  50134. },
  50135. ]
  50136. ))
  50137. characterMakers.push(() => makeCharacter(
  50138. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50139. {
  50140. nude: {
  50141. height: math.unit(5 + 6/12, "feet"),
  50142. name: "Nude",
  50143. image: {
  50144. source: "./media/characters/charlie-dog/nude.svg",
  50145. extra: 768/734,
  50146. bottom: 26/794
  50147. }
  50148. },
  50149. dressed: {
  50150. height: math.unit(5 + 6/12, "feet"),
  50151. name: "Dressed",
  50152. image: {
  50153. source: "./media/characters/charlie-dog/dressed.svg",
  50154. extra: 768/734,
  50155. bottom: 26/794
  50156. }
  50157. },
  50158. },
  50159. [
  50160. {
  50161. name: "Normal",
  50162. height: math.unit(5 + 6/12, "feet"),
  50163. default: true
  50164. },
  50165. ]
  50166. ))
  50167. characterMakers.push(() => makeCharacter(
  50168. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50169. {
  50170. front: {
  50171. height: math.unit(6 + 4/12, "feet"),
  50172. name: "Front",
  50173. image: {
  50174. source: "./media/characters/ir'istrasz/front.svg",
  50175. extra: 1014/977,
  50176. bottom: 65/1079
  50177. }
  50178. },
  50179. back: {
  50180. height: math.unit(6 + 4/12, "feet"),
  50181. name: "Back",
  50182. image: {
  50183. source: "./media/characters/ir'istrasz/back.svg",
  50184. extra: 1024/992,
  50185. bottom: 34/1058
  50186. }
  50187. },
  50188. },
  50189. [
  50190. {
  50191. name: "Normal",
  50192. height: math.unit(6 + 4/12, "feet"),
  50193. default: true
  50194. },
  50195. ]
  50196. ))
  50197. characterMakers.push(() => makeCharacter(
  50198. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50199. {
  50200. front: {
  50201. height: math.unit(5 + 8/12, "feet"),
  50202. name: "Front",
  50203. image: {
  50204. source: "./media/characters/dee-ditto/front.svg",
  50205. extra: 1874/1785,
  50206. bottom: 68/1942
  50207. }
  50208. },
  50209. back: {
  50210. height: math.unit(5 + 8/12, "feet"),
  50211. name: "Back",
  50212. image: {
  50213. source: "./media/characters/dee-ditto/back.svg",
  50214. extra: 1870/1783,
  50215. bottom: 77/1947
  50216. }
  50217. },
  50218. },
  50219. [
  50220. {
  50221. name: "Normal",
  50222. height: math.unit(5 + 8/12, "feet"),
  50223. default: true
  50224. },
  50225. ]
  50226. ))
  50227. characterMakers.push(() => makeCharacter(
  50228. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50229. {
  50230. front: {
  50231. height: math.unit(7 + 6/12, "feet"),
  50232. name: "Front",
  50233. image: {
  50234. source: "./media/characters/fey/front.svg",
  50235. extra: 995/979,
  50236. bottom: 30/1025
  50237. }
  50238. },
  50239. back: {
  50240. height: math.unit(7 + 6/12, "feet"),
  50241. name: "Back",
  50242. image: {
  50243. source: "./media/characters/fey/back.svg",
  50244. extra: 1079/1008,
  50245. bottom: 5/1084
  50246. }
  50247. },
  50248. dressed: {
  50249. height: math.unit(7 + 6/12, "feet"),
  50250. name: "Dressed",
  50251. image: {
  50252. source: "./media/characters/fey/dressed.svg",
  50253. extra: 995/979,
  50254. bottom: 30/1025
  50255. }
  50256. },
  50257. },
  50258. [
  50259. {
  50260. name: "Normal",
  50261. height: math.unit(7 + 6/12, "feet"),
  50262. default: true
  50263. },
  50264. ]
  50265. ))
  50266. characterMakers.push(() => makeCharacter(
  50267. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50268. {
  50269. standing: {
  50270. height: math.unit(17, "feet"),
  50271. name: "Standing",
  50272. image: {
  50273. source: "./media/characters/aster/standing.svg",
  50274. extra: 1798/1598,
  50275. bottom: 117/1915
  50276. }
  50277. },
  50278. },
  50279. [
  50280. {
  50281. name: "Normal",
  50282. height: math.unit(17, "feet"),
  50283. default: true
  50284. },
  50285. {
  50286. name: "Homewrecker",
  50287. height: math.unit(95, "feet")
  50288. },
  50289. {
  50290. name: "Planet Devourer",
  50291. height: math.unit(1008000, "miles")
  50292. },
  50293. ]
  50294. ))
  50295. characterMakers.push(() => makeCharacter(
  50296. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50297. {
  50298. front: {
  50299. height: math.unit(6 + 5/12, "feet"),
  50300. weight: math.unit(265, "lb"),
  50301. name: "Front",
  50302. image: {
  50303. source: "./media/characters/devon-childs/front.svg",
  50304. extra: 1795/1721,
  50305. bottom: 41/1836
  50306. }
  50307. },
  50308. side: {
  50309. height: math.unit(6 + 5/12, "feet"),
  50310. weight: math.unit(265, "lb"),
  50311. name: "Side",
  50312. image: {
  50313. source: "./media/characters/devon-childs/side.svg",
  50314. extra: 1812/1738,
  50315. bottom: 30/1842
  50316. }
  50317. },
  50318. back: {
  50319. height: math.unit(6 + 5/12, "feet"),
  50320. weight: math.unit(265, "lb"),
  50321. name: "Back",
  50322. image: {
  50323. source: "./media/characters/devon-childs/back.svg",
  50324. extra: 1808/1735,
  50325. bottom: 23/1831
  50326. }
  50327. },
  50328. hand: {
  50329. height: math.unit(1.464, "feet"),
  50330. name: "Hand",
  50331. image: {
  50332. source: "./media/characters/devon-childs/hand.svg"
  50333. }
  50334. },
  50335. foot: {
  50336. height: math.unit(1.6, "feet"),
  50337. name: "Foot",
  50338. image: {
  50339. source: "./media/characters/devon-childs/foot.svg"
  50340. }
  50341. },
  50342. },
  50343. [
  50344. {
  50345. name: "Micro",
  50346. height: math.unit(7, "cm")
  50347. },
  50348. {
  50349. name: "Normal",
  50350. height: math.unit(6 + 5/12, "feet"),
  50351. default: true
  50352. },
  50353. {
  50354. name: "Macro",
  50355. height: math.unit(154, "feet")
  50356. },
  50357. ]
  50358. ))
  50359. characterMakers.push(() => makeCharacter(
  50360. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50361. {
  50362. front: {
  50363. height: math.unit(6, "feet"),
  50364. weight: math.unit(180, "lb"),
  50365. name: "Front",
  50366. image: {
  50367. source: "./media/characters/lydemox-vir/front.svg",
  50368. extra: 1632/1435,
  50369. bottom: 58/1690
  50370. }
  50371. },
  50372. frontSFW: {
  50373. height: math.unit(6, "feet"),
  50374. weight: math.unit(180, "lb"),
  50375. name: "Front (SFW)",
  50376. image: {
  50377. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50378. extra: 1632/1435,
  50379. bottom: 58/1690
  50380. }
  50381. },
  50382. back: {
  50383. height: math.unit(6, "feet"),
  50384. weight: math.unit(180, "lb"),
  50385. name: "Back",
  50386. image: {
  50387. source: "./media/characters/lydemox-vir/back.svg",
  50388. extra: 1593/1408,
  50389. bottom: 31/1624
  50390. }
  50391. },
  50392. paw: {
  50393. height: math.unit(1.85, "feet"),
  50394. name: "Paw",
  50395. image: {
  50396. source: "./media/characters/lydemox-vir/paw.svg"
  50397. }
  50398. },
  50399. dick: {
  50400. height: math.unit(1.8, "feet"),
  50401. name: "Dick",
  50402. image: {
  50403. source: "./media/characters/lydemox-vir/dick.svg"
  50404. }
  50405. },
  50406. },
  50407. [
  50408. {
  50409. name: "Macro",
  50410. height: math.unit(100, "feet"),
  50411. default: true
  50412. },
  50413. {
  50414. name: "Teramacro",
  50415. height: math.unit(1, "earth")
  50416. },
  50417. {
  50418. name: "Planetary",
  50419. height: math.unit(20, "earths")
  50420. },
  50421. ]
  50422. ))
  50423. characterMakers.push(() => makeCharacter(
  50424. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50425. {
  50426. front: {
  50427. height: math.unit(15 + 8/12, "feet"),
  50428. weight: math.unit(1237, "kg"),
  50429. name: "Front",
  50430. image: {
  50431. source: "./media/characters/mia/front.svg",
  50432. extra: 1573/1446,
  50433. bottom: 58/1631
  50434. }
  50435. },
  50436. },
  50437. [
  50438. {
  50439. name: "Small",
  50440. height: math.unit(9 + 5/12, "feet")
  50441. },
  50442. {
  50443. name: "Normal",
  50444. height: math.unit(15 + 8/12, "feet"),
  50445. default: true
  50446. },
  50447. ]
  50448. ))
  50449. characterMakers.push(() => makeCharacter(
  50450. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50451. {
  50452. front: {
  50453. height: math.unit(10 + 6/12, "feet"),
  50454. weight: math.unit(1.3, "tons"),
  50455. name: "Front",
  50456. image: {
  50457. source: "./media/characters/mr-graves/front.svg",
  50458. extra: 1779/1695,
  50459. bottom: 198/1977
  50460. }
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(10 + 6 /12, "feet"),
  50467. default: true
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50473. {
  50474. dressedFront: {
  50475. height: math.unit(5 + 8/12, "feet"),
  50476. weight: math.unit(125, "lb"),
  50477. name: "Dressed (Front)",
  50478. image: {
  50479. source: "./media/characters/jess/dressed-front.svg",
  50480. extra: 1176/1152,
  50481. bottom: 42/1218
  50482. }
  50483. },
  50484. dressedSide: {
  50485. height: math.unit(5 + 8/12, "feet"),
  50486. weight: math.unit(125, "lb"),
  50487. name: "Dressed (Side)",
  50488. image: {
  50489. source: "./media/characters/jess/dressed-side.svg",
  50490. extra: 1204/1190,
  50491. bottom: 6/1210
  50492. }
  50493. },
  50494. nudeFront: {
  50495. height: math.unit(5 + 8/12, "feet"),
  50496. weight: math.unit(125, "lb"),
  50497. name: "Nude (Front)",
  50498. image: {
  50499. source: "./media/characters/jess/nude-front.svg",
  50500. extra: 1176/1152,
  50501. bottom: 42/1218
  50502. }
  50503. },
  50504. nudeSide: {
  50505. height: math.unit(5 + 8/12, "feet"),
  50506. weight: math.unit(125, "lb"),
  50507. name: "Nude (Side)",
  50508. image: {
  50509. source: "./media/characters/jess/nude-side.svg",
  50510. extra: 1204/1190,
  50511. bottom: 6/1210
  50512. }
  50513. },
  50514. organsFront: {
  50515. height: math.unit(2.83799342105, "feet"),
  50516. name: "Organs (Front)",
  50517. image: {
  50518. source: "./media/characters/jess/organs-front.svg"
  50519. }
  50520. },
  50521. organsSide: {
  50522. height: math.unit(2.64225290474, "feet"),
  50523. name: "Organs (Side)",
  50524. image: {
  50525. source: "./media/characters/jess/organs-side.svg"
  50526. }
  50527. },
  50528. digestiveTractFront: {
  50529. height: math.unit(2.8106580871, "feet"),
  50530. name: "Digestive Tract (Front)",
  50531. image: {
  50532. source: "./media/characters/jess/digestive-tract-front.svg"
  50533. }
  50534. },
  50535. digestiveTractSide: {
  50536. height: math.unit(2.54365045014, "feet"),
  50537. name: "Digestive Tract (Side)",
  50538. image: {
  50539. source: "./media/characters/jess/digestive-tract-side.svg"
  50540. }
  50541. },
  50542. respiratorySystemFront: {
  50543. height: math.unit(1.11196233456, "feet"),
  50544. name: "Respiratory System (Front)",
  50545. image: {
  50546. source: "./media/characters/jess/respiratory-system-front.svg"
  50547. }
  50548. },
  50549. respiratorySystemSide: {
  50550. height: math.unit(0.89327966297, "feet"),
  50551. name: "Respiratory System (Side)",
  50552. image: {
  50553. source: "./media/characters/jess/respiratory-system-side.svg"
  50554. }
  50555. },
  50556. urinaryTractFront: {
  50557. height: math.unit(1.16126356186, "feet"),
  50558. name: "Urinary Tract (Front)",
  50559. image: {
  50560. source: "./media/characters/jess/urinary-tract-front.svg"
  50561. }
  50562. },
  50563. urinaryTractSide: {
  50564. height: math.unit(1.20910039627, "feet"),
  50565. name: "Urinary Tract (Side)",
  50566. image: {
  50567. source: "./media/characters/jess/urinary-tract-side.svg"
  50568. }
  50569. },
  50570. reproductiveOrgansFront: {
  50571. height: math.unit(0.48422591566, "feet"),
  50572. name: "Reproductive Organs (Front)",
  50573. image: {
  50574. source: "./media/characters/jess/reproductive-organs-front.svg"
  50575. }
  50576. },
  50577. reproductiveOrgansSide: {
  50578. height: math.unit(0.61553314481, "feet"),
  50579. name: "Reproductive Organs (Side)",
  50580. image: {
  50581. source: "./media/characters/jess/reproductive-organs-side.svg"
  50582. }
  50583. },
  50584. breastsFront: {
  50585. height: math.unit(0.47690395121, "feet"),
  50586. name: "Breasts (Front)",
  50587. image: {
  50588. source: "./media/characters/jess/breasts-front.svg"
  50589. }
  50590. },
  50591. breastsSide: {
  50592. height: math.unit(0.30556998307, "feet"),
  50593. name: "Breasts (Side)",
  50594. image: {
  50595. source: "./media/characters/jess/breasts-side.svg"
  50596. }
  50597. },
  50598. heartFront: {
  50599. height: math.unit(0.53011022622, "feet"),
  50600. name: "Heart (Front)",
  50601. image: {
  50602. source: "./media/characters/jess/heart-front.svg"
  50603. }
  50604. },
  50605. heartSide: {
  50606. height: math.unit(0.51790695213, "feet"),
  50607. name: "Heart (Side)",
  50608. image: {
  50609. source: "./media/characters/jess/heart-side.svg"
  50610. }
  50611. },
  50612. earsAndNoseFront: {
  50613. height: math.unit(0.29385483995, "feet"),
  50614. name: "Ears and Nose (Front)",
  50615. image: {
  50616. source: "./media/characters/jess/ears-and-nose-front.svg"
  50617. }
  50618. },
  50619. earsAndNoseSide: {
  50620. height: math.unit(0.18109658741, "feet"),
  50621. name: "Ears and Nose (Side)",
  50622. image: {
  50623. source: "./media/characters/jess/ears-and-nose-side.svg"
  50624. }
  50625. },
  50626. },
  50627. [
  50628. {
  50629. name: "Normal",
  50630. height: math.unit(5 + 8/12, "feet"),
  50631. default: true
  50632. },
  50633. ]
  50634. ))
  50635. characterMakers.push(() => makeCharacter(
  50636. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50637. {
  50638. front: {
  50639. height: math.unit(6, "feet"),
  50640. weight: math.unit(6.64467e-7, "grams"),
  50641. name: "Front",
  50642. image: {
  50643. source: "./media/characters/wimpering/front.svg",
  50644. extra: 597/587,
  50645. bottom: 34/631
  50646. }
  50647. },
  50648. },
  50649. [
  50650. {
  50651. name: "Micro",
  50652. height: math.unit(0.4, "mm"),
  50653. default: true
  50654. },
  50655. ]
  50656. ))
  50657. characterMakers.push(() => makeCharacter(
  50658. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50659. {
  50660. front: {
  50661. height: math.unit(5 + 2/12, "feet"),
  50662. weight: math.unit(110, "lb"),
  50663. name: "Front",
  50664. image: {
  50665. source: "./media/characters/keltre/front.svg",
  50666. extra: 1099/1057,
  50667. bottom: 22/1121
  50668. }
  50669. },
  50670. back: {
  50671. height: math.unit(5 + 2/12, "feet"),
  50672. weight: math.unit(110, "lb"),
  50673. name: "Back",
  50674. image: {
  50675. source: "./media/characters/keltre/back.svg",
  50676. extra: 1095/1053,
  50677. bottom: 17/1112
  50678. }
  50679. },
  50680. dressed: {
  50681. height: math.unit(5 + 2/12, "feet"),
  50682. weight: math.unit(110, "lb"),
  50683. name: "Dressed",
  50684. image: {
  50685. source: "./media/characters/keltre/dressed.svg",
  50686. extra: 1099/1057,
  50687. bottom: 22/1121
  50688. }
  50689. },
  50690. winter: {
  50691. height: math.unit(5 + 2/12, "feet"),
  50692. weight: math.unit(110, "lb"),
  50693. name: "Winter",
  50694. image: {
  50695. source: "./media/characters/keltre/winter.svg",
  50696. extra: 1099/1057,
  50697. bottom: 22/1121
  50698. }
  50699. },
  50700. head: {
  50701. height: math.unit(1.61 * 0.86, "feet"),
  50702. name: "Head",
  50703. image: {
  50704. source: "./media/characters/keltre/head.svg",
  50705. extra: 534/421,
  50706. bottom: 0/534
  50707. }
  50708. },
  50709. hand: {
  50710. height: math.unit(1.3 * 0.86, "feet"),
  50711. name: "Hand",
  50712. image: {
  50713. source: "./media/characters/keltre/hand.svg"
  50714. }
  50715. },
  50716. foot: {
  50717. height: math.unit(1.8 * 0.86, "feet"),
  50718. name: "Foot",
  50719. image: {
  50720. source: "./media/characters/keltre/foot.svg"
  50721. }
  50722. },
  50723. },
  50724. [
  50725. {
  50726. name: "Fine",
  50727. height: math.unit(1, "inch")
  50728. },
  50729. {
  50730. name: "Dimnutive",
  50731. height: math.unit(4, "inches")
  50732. },
  50733. {
  50734. name: "Tiny",
  50735. height: math.unit(1, "foot")
  50736. },
  50737. {
  50738. name: "Small",
  50739. height: math.unit(3, "feet")
  50740. },
  50741. {
  50742. name: "Normal",
  50743. height: math.unit(5 + 2/12, "feet"),
  50744. default: true
  50745. },
  50746. ]
  50747. ))
  50748. characterMakers.push(() => makeCharacter(
  50749. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50750. {
  50751. front: {
  50752. height: math.unit(6 + 2/12, "feet"),
  50753. name: "Front",
  50754. image: {
  50755. source: "./media/characters/nox/front.svg",
  50756. extra: 1917/1830,
  50757. bottom: 74/1991
  50758. }
  50759. },
  50760. back: {
  50761. height: math.unit(6 + 2/12, "feet"),
  50762. name: "Back",
  50763. image: {
  50764. source: "./media/characters/nox/back.svg",
  50765. extra: 1896/1815,
  50766. bottom: 21/1917
  50767. }
  50768. },
  50769. head: {
  50770. height: math.unit(1.1, "feet"),
  50771. name: "Head",
  50772. image: {
  50773. source: "./media/characters/nox/head.svg",
  50774. extra: 874/704,
  50775. bottom: 0/874
  50776. }
  50777. },
  50778. tattoo: {
  50779. height: math.unit(0.729, "feet"),
  50780. name: "Tattoo",
  50781. image: {
  50782. source: "./media/characters/nox/tattoo.svg"
  50783. }
  50784. },
  50785. },
  50786. [
  50787. {
  50788. name: "Normal",
  50789. height: math.unit(6 + 2/12, "feet")
  50790. },
  50791. {
  50792. name: "Gigamacro",
  50793. height: math.unit(2, "earths"),
  50794. default: true
  50795. },
  50796. {
  50797. name: "Cosmic",
  50798. height: math.unit(867, "yottameters")
  50799. },
  50800. ]
  50801. ))
  50802. characterMakers.push(() => makeCharacter(
  50803. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50804. {
  50805. front: {
  50806. height: math.unit(6, "feet"),
  50807. weight: math.unit(150, "lb"),
  50808. name: "Front",
  50809. image: {
  50810. source: "./media/characters/caspian/front.svg",
  50811. extra: 1443/1359,
  50812. bottom: 0/1443
  50813. }
  50814. },
  50815. back: {
  50816. height: math.unit(6, "feet"),
  50817. weight: math.unit(150, "lb"),
  50818. name: "Back",
  50819. image: {
  50820. source: "./media/characters/caspian/back.svg",
  50821. extra: 1379/1309,
  50822. bottom: 0/1379
  50823. }
  50824. },
  50825. head: {
  50826. height: math.unit(0.9, "feet"),
  50827. name: "Head",
  50828. image: {
  50829. source: "./media/characters/caspian/head.svg",
  50830. extra: 692/492,
  50831. bottom: 0/692
  50832. }
  50833. },
  50834. headAlt: {
  50835. height: math.unit(0.95, "feet"),
  50836. name: "Head (Alt)",
  50837. image: {
  50838. source: "./media/characters/caspian/head-alt.svg",
  50839. extra: 668/508,
  50840. bottom: 0/668
  50841. }
  50842. },
  50843. hand: {
  50844. height: math.unit(0.8, "feet"),
  50845. name: "Hand",
  50846. image: {
  50847. source: "./media/characters/caspian/hand.svg"
  50848. }
  50849. },
  50850. paw: {
  50851. height: math.unit(0.95, "feet"),
  50852. name: "Paw",
  50853. image: {
  50854. source: "./media/characters/caspian/paw.svg"
  50855. }
  50856. },
  50857. },
  50858. [
  50859. {
  50860. name: "Normal",
  50861. height: math.unit(162, "feet"),
  50862. default: true
  50863. },
  50864. ]
  50865. ))
  50866. characterMakers.push(() => makeCharacter(
  50867. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50868. {
  50869. front: {
  50870. height: math.unit(6, "feet"),
  50871. name: "Front",
  50872. image: {
  50873. source: "./media/characters/myra-aisling/front.svg",
  50874. extra: 1268/1166,
  50875. bottom: 73/1341
  50876. }
  50877. },
  50878. back: {
  50879. height: math.unit(6, "feet"),
  50880. name: "Back",
  50881. image: {
  50882. source: "./media/characters/myra-aisling/back.svg",
  50883. extra: 1249/1149,
  50884. bottom: 79/1328
  50885. }
  50886. },
  50887. dressed: {
  50888. height: math.unit(6, "feet"),
  50889. name: "Dressed",
  50890. image: {
  50891. source: "./media/characters/myra-aisling/dressed.svg",
  50892. extra: 1290/1189,
  50893. bottom: 47/1337
  50894. }
  50895. },
  50896. hand: {
  50897. height: math.unit(1.1, "feet"),
  50898. name: "Hand",
  50899. image: {
  50900. source: "./media/characters/myra-aisling/hand.svg"
  50901. }
  50902. },
  50903. paw: {
  50904. height: math.unit(1.23, "feet"),
  50905. name: "Paw",
  50906. image: {
  50907. source: "./media/characters/myra-aisling/paw.svg"
  50908. }
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Normal",
  50914. height: math.unit(160, "feet"),
  50915. default: true
  50916. },
  50917. ]
  50918. ))
  50919. characterMakers.push(() => makeCharacter(
  50920. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50921. {
  50922. front: {
  50923. height: math.unit(6, "feet"),
  50924. name: "Front",
  50925. image: {
  50926. source: "./media/characters/tenley-sidero/front.svg",
  50927. extra: 1365/1276,
  50928. bottom: 47/1412
  50929. }
  50930. },
  50931. back: {
  50932. height: math.unit(6, "feet"),
  50933. name: "Back",
  50934. image: {
  50935. source: "./media/characters/tenley-sidero/back.svg",
  50936. extra: 1383/1283,
  50937. bottom: 35/1418
  50938. }
  50939. },
  50940. dressed: {
  50941. height: math.unit(6, "feet"),
  50942. name: "Dressed",
  50943. image: {
  50944. source: "./media/characters/tenley-sidero/dressed.svg",
  50945. extra: 1364/1275,
  50946. bottom: 42/1406
  50947. }
  50948. },
  50949. head: {
  50950. height: math.unit(1.47, "feet"),
  50951. name: "Head",
  50952. image: {
  50953. source: "./media/characters/tenley-sidero/head.svg",
  50954. extra: 610/490,
  50955. bottom: 0/610
  50956. }
  50957. },
  50958. },
  50959. [
  50960. {
  50961. name: "Normal",
  50962. height: math.unit(154, "feet"),
  50963. default: true
  50964. },
  50965. ]
  50966. ))
  50967. characterMakers.push(() => makeCharacter(
  50968. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50969. {
  50970. front: {
  50971. height: math.unit(5, "inches"),
  50972. name: "Front",
  50973. image: {
  50974. source: "./media/characters/mallory/front.svg",
  50975. extra: 1919/1678,
  50976. bottom: 29/1948
  50977. }
  50978. },
  50979. hand: {
  50980. height: math.unit(0.73, "inches"),
  50981. name: "Hand",
  50982. image: {
  50983. source: "./media/characters/mallory/hand.svg"
  50984. }
  50985. },
  50986. paw: {
  50987. height: math.unit(0.68, "inches"),
  50988. name: "Paw",
  50989. image: {
  50990. source: "./media/characters/mallory/paw.svg"
  50991. }
  50992. },
  50993. },
  50994. [
  50995. {
  50996. name: "Small",
  50997. height: math.unit(5, "inches"),
  50998. default: true
  50999. },
  51000. ]
  51001. ))
  51002. characterMakers.push(() => makeCharacter(
  51003. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51004. {
  51005. naked: {
  51006. height: math.unit(6, "feet"),
  51007. name: "Naked",
  51008. image: {
  51009. source: "./media/characters/mab/naked.svg",
  51010. extra: 1855/1757,
  51011. bottom: 208/2063
  51012. }
  51013. },
  51014. outside: {
  51015. height: math.unit(6, "feet"),
  51016. name: "Outside",
  51017. image: {
  51018. source: "./media/characters/mab/outside.svg",
  51019. extra: 1855/1757,
  51020. bottom: 208/2063
  51021. }
  51022. },
  51023. party: {
  51024. height: math.unit(6, "feet"),
  51025. name: "Party",
  51026. image: {
  51027. source: "./media/characters/mab/party.svg",
  51028. extra: 1855/1757,
  51029. bottom: 208/2063
  51030. }
  51031. },
  51032. },
  51033. [
  51034. {
  51035. name: "Normal",
  51036. height: math.unit(165, "feet"),
  51037. default: true
  51038. },
  51039. ]
  51040. ))
  51041. characterMakers.push(() => makeCharacter(
  51042. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51043. {
  51044. feral: {
  51045. height: math.unit(12, "feet"),
  51046. weight: math.unit(20000, "lb"),
  51047. name: "Side",
  51048. image: {
  51049. source: "./media/characters/winter/feral.svg",
  51050. extra: 1286/943,
  51051. bottom: 112/1398
  51052. },
  51053. form: "feral",
  51054. default: true
  51055. },
  51056. feralNsfw: {
  51057. height: math.unit(12, "feet"),
  51058. weight: math.unit(20000, "lb"),
  51059. name: "Side (NSFW)",
  51060. image: {
  51061. source: "./media/characters/winter/feral-nsfw.svg",
  51062. extra: 1286/943,
  51063. bottom: 112/1398
  51064. },
  51065. form: "feral"
  51066. },
  51067. dick: {
  51068. height: math.unit(3.79, "feet"),
  51069. name: "Dick",
  51070. image: {
  51071. source: "./media/characters/winter/dick.svg"
  51072. },
  51073. form: "feral"
  51074. },
  51075. anthro: {
  51076. height: math.unit(12, "feet"),
  51077. weight: math.unit(10, "tons"),
  51078. name: "Anthro",
  51079. image: {
  51080. source: "./media/characters/winter/anthro.svg",
  51081. extra: 1701/1553,
  51082. bottom: 64/1765
  51083. },
  51084. form: "anthro",
  51085. default: true
  51086. },
  51087. },
  51088. [
  51089. {
  51090. name: "Big",
  51091. height: math.unit(12, "feet"),
  51092. default: true,
  51093. form: "feral"
  51094. },
  51095. {
  51096. name: "Big",
  51097. height: math.unit(12, "feet"),
  51098. default: true,
  51099. form: "anthro"
  51100. },
  51101. ],
  51102. {
  51103. "feral": {
  51104. name: "Feral",
  51105. default: true
  51106. },
  51107. "anthro": {
  51108. name: "Anthro"
  51109. }
  51110. }
  51111. ))
  51112. characterMakers.push(() => makeCharacter(
  51113. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51114. {
  51115. front: {
  51116. height: math.unit(4.1, "inches"),
  51117. name: "Front",
  51118. image: {
  51119. source: "./media/characters/alto/front.svg",
  51120. extra: 736/627,
  51121. bottom: 90/826
  51122. }
  51123. },
  51124. },
  51125. [
  51126. {
  51127. name: "Normal",
  51128. height: math.unit(4.1, "inches"),
  51129. default: true
  51130. },
  51131. ]
  51132. ))
  51133. characterMakers.push(() => makeCharacter(
  51134. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51135. {
  51136. sitting: {
  51137. height: math.unit(3, "feet"),
  51138. name: "Sitting",
  51139. image: {
  51140. source: "./media/characters/ratstrid-v/sitting.svg",
  51141. extra: 355/310,
  51142. bottom: 136/491
  51143. }
  51144. },
  51145. },
  51146. [
  51147. {
  51148. name: "Normal",
  51149. height: math.unit(3, "feet"),
  51150. default: true
  51151. },
  51152. ]
  51153. ))
  51154. characterMakers.push(() => makeCharacter(
  51155. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51156. {
  51157. back: {
  51158. height: math.unit(6, "feet"),
  51159. weight: math.unit(450, "lb"),
  51160. name: "Back",
  51161. image: {
  51162. source: "./media/characters/siz/back.svg",
  51163. extra: 1449/1274,
  51164. bottom: 13/1462
  51165. }
  51166. },
  51167. },
  51168. [
  51169. {
  51170. name: "Smallest",
  51171. height: math.unit(18 + 3/12, "feet")
  51172. },
  51173. {
  51174. name: "Modest",
  51175. height: math.unit(56 + 8/12, "feet"),
  51176. default: true
  51177. },
  51178. {
  51179. name: "Largest",
  51180. height: math.unit(3590, "feet")
  51181. },
  51182. ]
  51183. ))
  51184. characterMakers.push(() => makeCharacter(
  51185. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51186. {
  51187. front: {
  51188. height: math.unit(5 + 9/12, "feet"),
  51189. weight: math.unit(150, "lb"),
  51190. name: "Front",
  51191. image: {
  51192. source: "./media/characters/ven/front.svg",
  51193. extra: 1372/1320,
  51194. bottom: 73/1445
  51195. }
  51196. },
  51197. side: {
  51198. height: math.unit(5 + 9/12, "feet"),
  51199. weight: math.unit(1150, "lb"),
  51200. name: "Side",
  51201. image: {
  51202. source: "./media/characters/ven/side.svg",
  51203. extra: 1119/1070,
  51204. bottom: 42/1161
  51205. },
  51206. default: true
  51207. },
  51208. },
  51209. [
  51210. {
  51211. name: "Normal",
  51212. height: math.unit(5 + 9/12, "feet"),
  51213. default: true
  51214. },
  51215. ]
  51216. ))
  51217. characterMakers.push(() => makeCharacter(
  51218. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51219. {
  51220. front: {
  51221. height: math.unit(12, "feet"),
  51222. weight: math.unit(1000, "kg"),
  51223. name: "Front",
  51224. image: {
  51225. source: "./media/characters/maple/front.svg",
  51226. extra: 1193/1081,
  51227. bottom: 22/1215
  51228. }
  51229. },
  51230. },
  51231. [
  51232. {
  51233. name: "Compressed",
  51234. height: math.unit(7, "feet")
  51235. },
  51236. {
  51237. name: "Normal",
  51238. height: math.unit(12, "feet"),
  51239. default: true
  51240. },
  51241. ]
  51242. ))
  51243. characterMakers.push(() => makeCharacter(
  51244. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51245. {
  51246. front: {
  51247. height: math.unit(9, "feet"),
  51248. weight: math.unit(1500, "lb"),
  51249. name: "Front",
  51250. image: {
  51251. source: "./media/characters/nora/front.svg",
  51252. extra: 1348/1286,
  51253. bottom: 218/1566
  51254. }
  51255. },
  51256. erect: {
  51257. height: math.unit(9, "feet"),
  51258. weight: math.unit(11500, "lb"),
  51259. name: "Erect",
  51260. image: {
  51261. source: "./media/characters/nora/erect.svg",
  51262. extra: 1488/1433,
  51263. bottom: 133/1621
  51264. }
  51265. },
  51266. },
  51267. [
  51268. {
  51269. name: "Normal",
  51270. height: math.unit(9, "feet"),
  51271. default: true
  51272. },
  51273. ]
  51274. ))
  51275. characterMakers.push(() => makeCharacter(
  51276. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51277. {
  51278. front: {
  51279. height: math.unit(25, "feet"),
  51280. weight: math.unit(27500, "lb"),
  51281. name: "Front",
  51282. image: {
  51283. source: "./media/characters/north-caudin/front.svg",
  51284. extra: 1184/1082,
  51285. bottom: 23/1207
  51286. }
  51287. },
  51288. },
  51289. [
  51290. {
  51291. name: "Compressed",
  51292. height: math.unit(10, "feet")
  51293. },
  51294. {
  51295. name: "Normal",
  51296. height: math.unit(25, "feet"),
  51297. default: true
  51298. },
  51299. ]
  51300. ))
  51301. characterMakers.push(() => makeCharacter(
  51302. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51303. {
  51304. front: {
  51305. height: math.unit(9, "feet"),
  51306. weight: math.unit(1250, "lb"),
  51307. name: "Front",
  51308. image: {
  51309. source: "./media/characters/merrian/front.svg",
  51310. extra: 2393/2304,
  51311. bottom: 40/2433
  51312. }
  51313. },
  51314. },
  51315. [
  51316. {
  51317. name: "Normal",
  51318. height: math.unit(9, "feet"),
  51319. default: true
  51320. },
  51321. ]
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51325. {
  51326. front: {
  51327. height: math.unit(9, "feet"),
  51328. weight: math.unit(1000, "lb"),
  51329. name: "Front",
  51330. image: {
  51331. source: "./media/characters/hazel/front.svg",
  51332. extra: 2351/2298,
  51333. bottom: 38/2389
  51334. }
  51335. },
  51336. },
  51337. [
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(9, "feet"),
  51341. default: true
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(13, "feet"),
  51350. weight: math.unit(3200, "lb"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/emma/front.svg",
  51354. extra: 2263/2029,
  51355. bottom: 68/2331
  51356. }
  51357. },
  51358. },
  51359. [
  51360. {
  51361. name: "Normal",
  51362. height: math.unit(13, "feet"),
  51363. default: true
  51364. },
  51365. ]
  51366. ))
  51367. characterMakers.push(() => makeCharacter(
  51368. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51369. {
  51370. front: {
  51371. height: math.unit(11 + 9/12, "feet"),
  51372. weight: math.unit(2500, "lb"),
  51373. name: "Front",
  51374. image: {
  51375. source: "./media/characters/ilumina/front.svg",
  51376. extra: 2248/2209,
  51377. bottom: 164/2412
  51378. }
  51379. },
  51380. },
  51381. [
  51382. {
  51383. name: "Normal",
  51384. height: math.unit(11 + 9/12, "feet"),
  51385. default: true
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51391. {
  51392. front: {
  51393. height: math.unit(8 + 10/12, "feet"),
  51394. weight: math.unit(1350, "lb"),
  51395. name: "Front",
  51396. image: {
  51397. source: "./media/characters/moonshine/front.svg",
  51398. extra: 2395/2288,
  51399. bottom: 40/2435
  51400. }
  51401. },
  51402. },
  51403. [
  51404. {
  51405. name: "Normal",
  51406. height: math.unit(8 + 10/12, "feet"),
  51407. default: true
  51408. },
  51409. ]
  51410. ))
  51411. characterMakers.push(() => makeCharacter(
  51412. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51413. {
  51414. front: {
  51415. height: math.unit(14, "feet"),
  51416. weight: math.unit(3400, "lb"),
  51417. name: "Front",
  51418. image: {
  51419. source: "./media/characters/aletia/front.svg",
  51420. extra: 1185/1052,
  51421. bottom: 21/1206
  51422. }
  51423. },
  51424. },
  51425. [
  51426. {
  51427. name: "Compressed",
  51428. height: math.unit(8, "feet")
  51429. },
  51430. {
  51431. name: "Normal",
  51432. height: math.unit(14, "feet"),
  51433. default: true
  51434. },
  51435. ]
  51436. ))
  51437. characterMakers.push(() => makeCharacter(
  51438. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51439. {
  51440. front: {
  51441. height: math.unit(17, "feet"),
  51442. weight: math.unit(6500, "lb"),
  51443. name: "Front",
  51444. image: {
  51445. source: "./media/characters/deidra/front.svg",
  51446. extra: 1201/1081,
  51447. bottom: 16/1217
  51448. }
  51449. },
  51450. },
  51451. [
  51452. {
  51453. name: "Compressed",
  51454. height: math.unit(9 + 6/12, "feet")
  51455. },
  51456. {
  51457. name: "Normal",
  51458. height: math.unit(17, "feet"),
  51459. default: true
  51460. },
  51461. ]
  51462. ))
  51463. characterMakers.push(() => makeCharacter(
  51464. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51465. {
  51466. front: {
  51467. height: math.unit(7 + 4/12, "feet"),
  51468. weight: math.unit(280, "lb"),
  51469. name: "Front",
  51470. image: {
  51471. source: "./media/characters/freki-yrmori/front.svg",
  51472. extra: 1286/1182,
  51473. bottom: 29/1315
  51474. }
  51475. },
  51476. maw: {
  51477. height: math.unit(0.9, "feet"),
  51478. name: "Maw",
  51479. image: {
  51480. source: "./media/characters/freki-yrmori/maw.svg"
  51481. }
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Normal",
  51487. height: math.unit(7 + 4/12, "feet"),
  51488. default: true
  51489. },
  51490. {
  51491. name: "Macro",
  51492. height: math.unit(38.5, "meters")
  51493. },
  51494. ]
  51495. ))
  51496. characterMakers.push(() => makeCharacter(
  51497. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51498. {
  51499. side: {
  51500. height: math.unit(47.2, "meters"),
  51501. weight: math.unit(10000, "tons"),
  51502. name: "Side",
  51503. image: {
  51504. source: "./media/characters/aetherios/side.svg",
  51505. extra: 2363/642,
  51506. bottom: 221/2584
  51507. }
  51508. },
  51509. top: {
  51510. height: math.unit(240, "meters"),
  51511. weight: math.unit(10000, "tons"),
  51512. name: "Top",
  51513. image: {
  51514. source: "./media/characters/aetherios/top.svg"
  51515. }
  51516. },
  51517. bottom: {
  51518. height: math.unit(240, "meters"),
  51519. weight: math.unit(10000, "tons"),
  51520. name: "Bottom",
  51521. image: {
  51522. source: "./media/characters/aetherios/bottom.svg"
  51523. }
  51524. },
  51525. head: {
  51526. height: math.unit(38.6, "meters"),
  51527. name: "Head",
  51528. image: {
  51529. source: "./media/characters/aetherios/head.svg",
  51530. extra: 1335/1112,
  51531. bottom: 0/1335
  51532. }
  51533. },
  51534. front: {
  51535. height: math.unit(29, "meters"),
  51536. name: "Front",
  51537. image: {
  51538. source: "./media/characters/aetherios/front.svg",
  51539. extra: 1266/953,
  51540. bottom: 158/1424
  51541. }
  51542. },
  51543. maw: {
  51544. height: math.unit(16.37, "meters"),
  51545. name: "Maw",
  51546. image: {
  51547. source: "./media/characters/aetherios/maw.svg",
  51548. extra: 748/637,
  51549. bottom: 0/748
  51550. },
  51551. extraAttributes: {
  51552. preyCapacity: {
  51553. name: "Capacity",
  51554. power: 3,
  51555. type: "volume",
  51556. base: math.unit(1000, "people")
  51557. },
  51558. tongueSize: {
  51559. name: "Tongue Size",
  51560. power: 2,
  51561. type: "area",
  51562. base: math.unit(21, "m^2")
  51563. }
  51564. }
  51565. },
  51566. forepaw: {
  51567. height: math.unit(18, "meters"),
  51568. name: "Forepaw",
  51569. image: {
  51570. source: "./media/characters/aetherios/forepaw.svg"
  51571. }
  51572. },
  51573. hindpaw: {
  51574. height: math.unit(23, "meters"),
  51575. name: "Hindpaw",
  51576. image: {
  51577. source: "./media/characters/aetherios/hindpaw.svg"
  51578. }
  51579. },
  51580. genitals: {
  51581. height: math.unit(42, "meters"),
  51582. name: "Genitals",
  51583. image: {
  51584. source: "./media/characters/aetherios/genitals.svg"
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Normal",
  51591. height: math.unit(47.2, "meters"),
  51592. default: true
  51593. },
  51594. {
  51595. name: "Macro",
  51596. height: math.unit(160, "meters")
  51597. },
  51598. {
  51599. name: "Mega",
  51600. height: math.unit(1.87, "km")
  51601. },
  51602. {
  51603. name: "Giga",
  51604. height: math.unit(40000, "km")
  51605. },
  51606. {
  51607. name: "Stellar",
  51608. height: math.unit(158000000, "km")
  51609. },
  51610. {
  51611. name: "Cosmic",
  51612. height: math.unit(9.46e12, "km")
  51613. },
  51614. ]
  51615. ))
  51616. characterMakers.push(() => makeCharacter(
  51617. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51618. {
  51619. front: {
  51620. height: math.unit(5 + 4/12, "feet"),
  51621. weight: math.unit(80, "lb"),
  51622. name: "Front",
  51623. image: {
  51624. source: "./media/characters/mizu-gieeg/front.svg",
  51625. extra: 850/709,
  51626. bottom: 52/902
  51627. }
  51628. },
  51629. back: {
  51630. height: math.unit(5 + 4/12, "feet"),
  51631. weight: math.unit(80, "lb"),
  51632. name: "Back",
  51633. image: {
  51634. source: "./media/characters/mizu-gieeg/back.svg",
  51635. extra: 882/745,
  51636. bottom: 25/907
  51637. }
  51638. },
  51639. },
  51640. [
  51641. {
  51642. name: "Normal",
  51643. height: math.unit(5 + 4/12, "feet"),
  51644. default: true
  51645. },
  51646. ]
  51647. ))
  51648. characterMakers.push(() => makeCharacter(
  51649. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51650. {
  51651. front: {
  51652. height: math.unit(6, "feet"),
  51653. name: "Front",
  51654. image: {
  51655. source: "./media/characters/roselle-st-papier/front.svg",
  51656. extra: 1430/1280,
  51657. bottom: 37/1467
  51658. }
  51659. },
  51660. back: {
  51661. height: math.unit(6, "feet"),
  51662. name: "Back",
  51663. image: {
  51664. source: "./media/characters/roselle-st-papier/back.svg",
  51665. extra: 1491/1296,
  51666. bottom: 23/1514
  51667. }
  51668. },
  51669. ear: {
  51670. height: math.unit(1.26, "feet"),
  51671. name: "Ear",
  51672. image: {
  51673. source: "./media/characters/roselle-st-papier/ear.svg"
  51674. }
  51675. },
  51676. },
  51677. [
  51678. {
  51679. name: "Normal",
  51680. height: math.unit(150, "feet"),
  51681. default: true
  51682. },
  51683. ]
  51684. ))
  51685. characterMakers.push(() => makeCharacter(
  51686. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51687. {
  51688. front: {
  51689. height: math.unit(1, "inches"),
  51690. name: "Front",
  51691. image: {
  51692. source: "./media/characters/valargent/front.svg",
  51693. extra: 1825/1694,
  51694. bottom: 62/1887
  51695. }
  51696. },
  51697. back: {
  51698. height: math.unit(1, "inches"),
  51699. name: "Back",
  51700. image: {
  51701. source: "./media/characters/valargent/back.svg",
  51702. extra: 1775/1682,
  51703. bottom: 88/1863
  51704. }
  51705. },
  51706. },
  51707. [
  51708. {
  51709. name: "Micro",
  51710. height: math.unit(1, "inch"),
  51711. default: true
  51712. },
  51713. ]
  51714. ))
  51715. characterMakers.push(() => makeCharacter(
  51716. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51717. {
  51718. front: {
  51719. height: math.unit(3.4, "meters"),
  51720. name: "Front",
  51721. image: {
  51722. source: "./media/characters/zarina/front.svg",
  51723. extra: 1733/1425,
  51724. bottom: 93/1826
  51725. }
  51726. },
  51727. squatting: {
  51728. height: math.unit(2.14, "meters"),
  51729. name: "Squatting",
  51730. image: {
  51731. source: "./media/characters/zarina/squatting.svg",
  51732. extra: 1073/788,
  51733. bottom: 63/1136
  51734. }
  51735. },
  51736. back: {
  51737. height: math.unit(2.14, "meters"),
  51738. name: "Back",
  51739. image: {
  51740. source: "./media/characters/zarina/back.svg",
  51741. extra: 1128/885,
  51742. bottom: 0/1128
  51743. }
  51744. },
  51745. },
  51746. [
  51747. {
  51748. name: "Normal",
  51749. height: math.unit(3.4, "meters"),
  51750. default: true
  51751. },
  51752. {
  51753. name: "Big",
  51754. height: math.unit(5, "meters")
  51755. },
  51756. {
  51757. name: "Macro",
  51758. height: math.unit(110, "meters")
  51759. },
  51760. ]
  51761. ))
  51762. characterMakers.push(() => makeCharacter(
  51763. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51764. {
  51765. front: {
  51766. height: math.unit(7, "feet"),
  51767. name: "Front",
  51768. image: {
  51769. source: "./media/characters/ventus-astro-fox/front.svg",
  51770. extra: 1792/1623,
  51771. bottom: 28/1820
  51772. }
  51773. },
  51774. back: {
  51775. height: math.unit(7, "feet"),
  51776. name: "Back",
  51777. image: {
  51778. source: "./media/characters/ventus-astro-fox/back.svg",
  51779. extra: 1789/1620,
  51780. bottom: 31/1820
  51781. }
  51782. },
  51783. outfit: {
  51784. height: math.unit(7, "feet"),
  51785. name: "Outfit",
  51786. image: {
  51787. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51788. extra: 1054/925,
  51789. bottom: 15/1069
  51790. }
  51791. },
  51792. head: {
  51793. height: math.unit(1.12, "feet"),
  51794. name: "Head",
  51795. image: {
  51796. source: "./media/characters/ventus-astro-fox/head.svg",
  51797. extra: 866/504,
  51798. bottom: 0/866
  51799. }
  51800. },
  51801. hand: {
  51802. height: math.unit(1, "feet"),
  51803. name: "Hand",
  51804. image: {
  51805. source: "./media/characters/ventus-astro-fox/hand.svg"
  51806. }
  51807. },
  51808. paw: {
  51809. height: math.unit(1.5, "feet"),
  51810. name: "Paw",
  51811. image: {
  51812. source: "./media/characters/ventus-astro-fox/paw.svg"
  51813. }
  51814. },
  51815. },
  51816. [
  51817. {
  51818. name: "Normal",
  51819. height: math.unit(7, "feet"),
  51820. default: true
  51821. },
  51822. {
  51823. name: "Macro",
  51824. height: math.unit(200, "feet")
  51825. },
  51826. {
  51827. name: "Cosmic",
  51828. height: math.unit(3, "universes")
  51829. },
  51830. ]
  51831. ))
  51832. characterMakers.push(() => makeCharacter(
  51833. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51834. {
  51835. front: {
  51836. height: math.unit(3, "meters"),
  51837. weight: math.unit(7000, "lb"),
  51838. name: "Front",
  51839. image: {
  51840. source: "./media/characters/core-t/front.svg",
  51841. extra: 5729/4941,
  51842. bottom: 1129/6858
  51843. }
  51844. },
  51845. },
  51846. [
  51847. {
  51848. name: "Big",
  51849. height: math.unit(3, "meters"),
  51850. default: true
  51851. },
  51852. ]
  51853. ))
  51854. characterMakers.push(() => makeCharacter(
  51855. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51856. {
  51857. normal: {
  51858. height: math.unit(6 + 6/12, "feet"),
  51859. weight: math.unit(275, "lb"),
  51860. name: "Front",
  51861. image: {
  51862. source: "./media/characters/cadbunny/normal.svg",
  51863. extra: 1129/947,
  51864. bottom: 93/1222
  51865. },
  51866. default: true,
  51867. form: "normal"
  51868. },
  51869. gigantamax: {
  51870. height: math.unit(26, "feet"),
  51871. weight: math.unit(16000, "lb"),
  51872. name: "Front",
  51873. image: {
  51874. source: "./media/characters/cadbunny/gigantamax.svg",
  51875. extra: 1133/944,
  51876. bottom: 90/1223
  51877. },
  51878. default: true,
  51879. form: "gigantamax"
  51880. },
  51881. },
  51882. [
  51883. {
  51884. name: "Normal",
  51885. height: math.unit(6 + 6/12, "feet"),
  51886. default: true,
  51887. form: "normal"
  51888. },
  51889. {
  51890. name: "Small",
  51891. height: math.unit(26, "feet"),
  51892. default: true,
  51893. form: "gigantamax"
  51894. },
  51895. {
  51896. name: "Large",
  51897. height: math.unit(78, "feet"),
  51898. form: "gigantamax"
  51899. },
  51900. ],
  51901. {
  51902. "normal": {
  51903. name: "Normal",
  51904. default: true
  51905. },
  51906. "gigantamax": {
  51907. name: "Gigantamax"
  51908. }
  51909. }
  51910. ))
  51911. characterMakers.push(() => makeCharacter(
  51912. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51913. {
  51914. anthroFront: {
  51915. height: math.unit(8, "feet"),
  51916. weight: math.unit(300, "lb"),
  51917. name: "Front",
  51918. image: {
  51919. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51920. extra: 1272/1176,
  51921. bottom: 53/1325
  51922. },
  51923. form: "anthro",
  51924. default: true
  51925. },
  51926. feralSide: {
  51927. height: math.unit(4, "feet"),
  51928. weight: math.unit(250, "lb"),
  51929. name: "Side",
  51930. image: {
  51931. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51932. extra: 731/621,
  51933. bottom: 0/731
  51934. },
  51935. form: "feral",
  51936. default: true
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Regular",
  51942. height: math.unit(8, "feet"),
  51943. form: "anthro"
  51944. },
  51945. {
  51946. name: "Macro",
  51947. height: math.unit(250, "feet"),
  51948. form: "anthro",
  51949. default: true
  51950. },
  51951. {
  51952. name: "Regular",
  51953. height: math.unit(4, "feet"),
  51954. form: "feral"
  51955. },
  51956. {
  51957. name: "Macro",
  51958. height: math.unit(125, "feet"),
  51959. form: "feral",
  51960. default: true
  51961. },
  51962. ],
  51963. {
  51964. "anthro": {
  51965. name: "Anthro",
  51966. default: true
  51967. },
  51968. "feral": {
  51969. name: "Feral",
  51970. },
  51971. }
  51972. ))
  51973. characterMakers.push(() => makeCharacter(
  51974. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51975. {
  51976. front: {
  51977. height: math.unit(11 + 10/12, "feet"),
  51978. weight: math.unit(1587, "kg"),
  51979. name: "Front",
  51980. image: {
  51981. source: "./media/characters/maple-javira-dragon/front.svg",
  51982. extra: 1136/744,
  51983. bottom: 73/1209
  51984. }
  51985. },
  51986. side: {
  51987. height: math.unit(11 + 10/12, "feet"),
  51988. weight: math.unit(1587, "kg"),
  51989. name: "Side",
  51990. image: {
  51991. source: "./media/characters/maple-javira-dragon/side.svg",
  51992. extra: 712/505,
  51993. bottom: 17/729
  51994. }
  51995. },
  51996. head: {
  51997. height: math.unit(8.05, "feet"),
  51998. name: "Head",
  51999. image: {
  52000. source: "./media/characters/maple-javira-dragon/head.svg",
  52001. extra: 1420/1344,
  52002. bottom: 0/1420
  52003. }
  52004. },
  52005. },
  52006. [
  52007. {
  52008. name: "Normal",
  52009. height: math.unit(11 + 10/12, "feet"),
  52010. default: true
  52011. },
  52012. ]
  52013. ))
  52014. characterMakers.push(() => makeCharacter(
  52015. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52016. {
  52017. front: {
  52018. height: math.unit(117, "cm"),
  52019. weight: math.unit(50, "kg"),
  52020. name: "Front",
  52021. image: {
  52022. source: "./media/characters/sonia-wyverntail/front.svg",
  52023. extra: 708/592,
  52024. bottom: 25/733
  52025. }
  52026. },
  52027. },
  52028. [
  52029. {
  52030. name: "Normal",
  52031. height: math.unit(117, "cm"),
  52032. default: true
  52033. },
  52034. ]
  52035. ))
  52036. characterMakers.push(() => makeCharacter(
  52037. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52038. {
  52039. front: {
  52040. height: math.unit(6 + 5/12, "feet"),
  52041. name: "Front",
  52042. image: {
  52043. source: "./media/characters/micah/front.svg",
  52044. extra: 1758/1546,
  52045. bottom: 214/1972
  52046. }
  52047. },
  52048. },
  52049. [
  52050. {
  52051. name: "Normal",
  52052. height: math.unit(6 + 5/12, "feet"),
  52053. default: true
  52054. },
  52055. ]
  52056. ))
  52057. characterMakers.push(() => makeCharacter(
  52058. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52059. {
  52060. front: {
  52061. height: math.unit(1.75, "meters"),
  52062. weight: math.unit(100, "kg"),
  52063. name: "Front",
  52064. image: {
  52065. source: "./media/characters/zarya/front.svg",
  52066. extra: 741/735,
  52067. bottom: 44/785
  52068. },
  52069. extraAttributes: {
  52070. "tailLength": {
  52071. name: "Tail Length",
  52072. power: 1,
  52073. type: "length",
  52074. base: math.unit(180, "cm")
  52075. },
  52076. "pawLength": {
  52077. name: "Paw Length",
  52078. power: 1,
  52079. type: "length",
  52080. base: math.unit(31, "cm")
  52081. },
  52082. }
  52083. },
  52084. side: {
  52085. height: math.unit(1.75, "meters"),
  52086. weight: math.unit(100, "kg"),
  52087. name: "Side",
  52088. image: {
  52089. source: "./media/characters/zarya/side.svg",
  52090. extra: 776/770,
  52091. bottom: 17/793
  52092. },
  52093. extraAttributes: {
  52094. "tailLength": {
  52095. name: "Tail Length",
  52096. power: 1,
  52097. type: "length",
  52098. base: math.unit(180, "cm")
  52099. },
  52100. "pawLength": {
  52101. name: "Paw Length",
  52102. power: 1,
  52103. type: "length",
  52104. base: math.unit(31, "cm")
  52105. },
  52106. }
  52107. },
  52108. back: {
  52109. height: math.unit(1.75, "meters"),
  52110. weight: math.unit(100, "kg"),
  52111. name: "Back",
  52112. image: {
  52113. source: "./media/characters/zarya/back.svg",
  52114. extra: 741/735,
  52115. bottom: 44/785
  52116. },
  52117. extraAttributes: {
  52118. "tailLength": {
  52119. name: "Tail Length",
  52120. power: 1,
  52121. type: "length",
  52122. base: math.unit(180, "cm")
  52123. },
  52124. "pawLength": {
  52125. name: "Paw Length",
  52126. power: 1,
  52127. type: "length",
  52128. base: math.unit(31, "cm")
  52129. },
  52130. }
  52131. },
  52132. frontNoTail: {
  52133. height: math.unit(1.75, "meters"),
  52134. weight: math.unit(100, "kg"),
  52135. name: "Front (No Tail)",
  52136. image: {
  52137. source: "./media/characters/zarya/front-no-tail.svg",
  52138. extra: 741/735,
  52139. bottom: 44/785
  52140. },
  52141. extraAttributes: {
  52142. "tailLength": {
  52143. name: "Tail Length",
  52144. power: 1,
  52145. type: "length",
  52146. base: math.unit(180, "cm")
  52147. },
  52148. "pawLength": {
  52149. name: "Paw Length",
  52150. power: 1,
  52151. type: "length",
  52152. base: math.unit(31, "cm")
  52153. },
  52154. }
  52155. },
  52156. dressed: {
  52157. height: math.unit(1.75, "meters"),
  52158. weight: math.unit(100, "kg"),
  52159. name: "Dressed",
  52160. image: {
  52161. source: "./media/characters/zarya/dressed.svg",
  52162. extra: 683/672,
  52163. bottom: 79/762
  52164. },
  52165. extraAttributes: {
  52166. "tailLength": {
  52167. name: "Tail Length",
  52168. power: 1,
  52169. type: "length",
  52170. base: math.unit(180, "cm")
  52171. },
  52172. "pawLength": {
  52173. name: "Paw Length",
  52174. power: 1,
  52175. type: "length",
  52176. base: math.unit(31, "cm")
  52177. },
  52178. }
  52179. },
  52180. },
  52181. [
  52182. {
  52183. name: "Micro",
  52184. height: math.unit(5, "cm")
  52185. },
  52186. {
  52187. name: "Normal",
  52188. height: math.unit(1.75, "meters"),
  52189. default: true
  52190. },
  52191. {
  52192. name: "Macro",
  52193. height: math.unit(122, "meters")
  52194. },
  52195. ]
  52196. ))
  52197. characterMakers.push(() => makeCharacter(
  52198. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52199. {
  52200. front: {
  52201. height: math.unit(7.5, "feet"),
  52202. name: "Front",
  52203. image: {
  52204. source: "./media/characters/sven-hatisson/front.svg",
  52205. extra: 917/857,
  52206. bottom: 42/959
  52207. }
  52208. },
  52209. back: {
  52210. height: math.unit(7.5, "feet"),
  52211. name: "Back",
  52212. image: {
  52213. source: "./media/characters/sven-hatisson/back.svg",
  52214. extra: 903/856,
  52215. bottom: 15/918
  52216. }
  52217. },
  52218. },
  52219. [
  52220. {
  52221. name: "Base Height",
  52222. height: math.unit(7.5, "feet")
  52223. },
  52224. {
  52225. name: "Usual Height",
  52226. height: math.unit(13.5, "feet"),
  52227. default: true
  52228. },
  52229. {
  52230. name: "Smaller Macro",
  52231. height: math.unit(85, "feet")
  52232. },
  52233. {
  52234. name: "Moderate Macro",
  52235. height: math.unit(320, "feet")
  52236. },
  52237. {
  52238. name: "Large Macro",
  52239. height: math.unit(1000, "feet")
  52240. },
  52241. {
  52242. name: "Largest Size",
  52243. height: math.unit(2, "miles")
  52244. },
  52245. ]
  52246. ))
  52247. characterMakers.push(() => makeCharacter(
  52248. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52249. {
  52250. side: {
  52251. height: math.unit(1.8, "meters"),
  52252. weight: math.unit(275, "kg"),
  52253. name: "Side",
  52254. image: {
  52255. source: "./media/characters/terra/side.svg",
  52256. extra: 1273/1147,
  52257. bottom: 0/1273
  52258. }
  52259. },
  52260. },
  52261. [
  52262. {
  52263. name: "Normal",
  52264. height: math.unit(16.2, "meters"),
  52265. default: true
  52266. },
  52267. ]
  52268. ))
  52269. characterMakers.push(() => makeCharacter(
  52270. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52271. {
  52272. borzoiFront: {
  52273. height: math.unit(6 + 9/12, "feet"),
  52274. name: "Front",
  52275. image: {
  52276. source: "./media/characters/rae/borzoi-front.svg",
  52277. extra: 1161/1098,
  52278. bottom: 31/1192
  52279. },
  52280. form: "borzoi",
  52281. default: true
  52282. },
  52283. werewolfFront: {
  52284. height: math.unit(8 + 7/12, "feet"),
  52285. name: "Front",
  52286. image: {
  52287. source: "./media/characters/rae/werewolf-front.svg",
  52288. extra: 1411/1334,
  52289. bottom: 127/1538
  52290. },
  52291. form: "werewolf",
  52292. default: true
  52293. },
  52294. },
  52295. [
  52296. {
  52297. name: "Normal",
  52298. height: math.unit(6 + 9/12, "feet"),
  52299. default: true,
  52300. form: "borzoi"
  52301. },
  52302. {
  52303. name: "Normal",
  52304. height: math.unit(8 + 7/12, "feet"),
  52305. default: true,
  52306. form: "werewolf"
  52307. },
  52308. ],
  52309. {
  52310. "borzoi": {
  52311. name: "Borzoi",
  52312. default: true
  52313. },
  52314. "werewolf": {
  52315. name: "Werewolf",
  52316. },
  52317. }
  52318. ))
  52319. characterMakers.push(() => makeCharacter(
  52320. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52321. {
  52322. front: {
  52323. height: math.unit(8 + 7/12, "feet"),
  52324. weight: math.unit(482, "lb"),
  52325. name: "Front",
  52326. image: {
  52327. source: "./media/characters/kit/front.svg",
  52328. extra: 1247/1103,
  52329. bottom: 41/1288
  52330. }
  52331. },
  52332. back: {
  52333. height: math.unit(8 + 7/12, "feet"),
  52334. weight: math.unit(482, "lb"),
  52335. name: "Back",
  52336. image: {
  52337. source: "./media/characters/kit/back.svg",
  52338. extra: 1252/1123,
  52339. bottom: 21/1273
  52340. }
  52341. },
  52342. paw: {
  52343. height: math.unit(1.46, "feet"),
  52344. name: "Paw",
  52345. image: {
  52346. source: "./media/characters/kit/paw.svg"
  52347. }
  52348. },
  52349. },
  52350. [
  52351. {
  52352. name: "Normal",
  52353. height: math.unit(2.61, "meters"),
  52354. default: true
  52355. },
  52356. {
  52357. name: "\"Tall\"",
  52358. height: math.unit(8.21, "meters")
  52359. },
  52360. {
  52361. name: "Tall",
  52362. height: math.unit(19.6, "meters")
  52363. },
  52364. {
  52365. name: "Very Tall",
  52366. height: math.unit(57.91, "meters")
  52367. },
  52368. {
  52369. name: "Semi-Macro",
  52370. height: math.unit(138.64, "meters")
  52371. },
  52372. {
  52373. name: "Macro",
  52374. height: math.unit(831.99, "meters")
  52375. },
  52376. {
  52377. name: "EX-Macro",
  52378. height: math.unit(96451121, "meters")
  52379. },
  52380. {
  52381. name: "S1-Omnipotent",
  52382. height: math.unit(4.42074e+9, "meters")
  52383. },
  52384. {
  52385. name: "S2-Omnipotent",
  52386. height: math.unit(9.42074e+17, "meters")
  52387. },
  52388. {
  52389. name: "Omnipotent",
  52390. height: math.unit(4.23112e+24, "meters")
  52391. },
  52392. {
  52393. name: "Hypergod",
  52394. height: math.unit(5.05176e+27, "meters")
  52395. },
  52396. {
  52397. name: "Hypergod-EX",
  52398. height: math.unit(9.45532e+49, "meters")
  52399. },
  52400. {
  52401. name: "Hypergod-SP",
  52402. height: math.unit(9.45532e+195, "meters")
  52403. },
  52404. ]
  52405. ))
  52406. characterMakers.push(() => makeCharacter(
  52407. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52408. {
  52409. side: {
  52410. height: math.unit(0.6, "meters"),
  52411. weight: math.unit(24, "kg"),
  52412. name: "Side",
  52413. image: {
  52414. source: "./media/characters/celeste/side.svg",
  52415. extra: 810/517,
  52416. bottom: 53/863
  52417. }
  52418. },
  52419. },
  52420. [
  52421. {
  52422. name: "Velociraptor",
  52423. height: math.unit(0.6, "meters"),
  52424. default: true
  52425. },
  52426. {
  52427. name: "Utahraptor",
  52428. height: math.unit(1.8, "meters")
  52429. },
  52430. {
  52431. name: "Gallimimus",
  52432. height: math.unit(4.0, "meters")
  52433. },
  52434. {
  52435. name: "Large",
  52436. height: math.unit(20, "meters")
  52437. },
  52438. {
  52439. name: "Planetary",
  52440. height: math.unit(50, "megameters")
  52441. },
  52442. {
  52443. name: "Stellar",
  52444. height: math.unit(1.5, "gigameters")
  52445. },
  52446. {
  52447. name: "Galactic",
  52448. height: math.unit(100, "exameters")
  52449. },
  52450. ]
  52451. ))
  52452. characterMakers.push(() => makeCharacter(
  52453. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52454. {
  52455. front: {
  52456. height: math.unit(6, "feet"),
  52457. weight: math.unit(210, "lb"),
  52458. name: "Front",
  52459. image: {
  52460. source: "./media/characters/glacia/front.svg",
  52461. extra: 958/901,
  52462. bottom: 45/1003
  52463. }
  52464. },
  52465. },
  52466. [
  52467. {
  52468. name: "Macro",
  52469. height: math.unit(1000, "meters"),
  52470. default: true
  52471. },
  52472. ]
  52473. ))
  52474. characterMakers.push(() => makeCharacter(
  52475. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52476. {
  52477. front: {
  52478. height: math.unit(4, "meters"),
  52479. name: "Front",
  52480. image: {
  52481. source: "./media/characters/giri/front.svg",
  52482. extra: 966/894,
  52483. bottom: 21/987
  52484. }
  52485. },
  52486. },
  52487. [
  52488. {
  52489. name: "Normal",
  52490. height: math.unit(4, "meters"),
  52491. default: true
  52492. },
  52493. ]
  52494. ))
  52495. characterMakers.push(() => makeCharacter(
  52496. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52497. {
  52498. back: {
  52499. height: math.unit(4, "feet"),
  52500. weight: math.unit(37, "lb"),
  52501. name: "Back",
  52502. image: {
  52503. source: "./media/characters/tin/back.svg",
  52504. extra: 845/780,
  52505. bottom: 28/873
  52506. }
  52507. },
  52508. },
  52509. [
  52510. {
  52511. name: "Normal",
  52512. height: math.unit(4, "feet"),
  52513. default: true
  52514. },
  52515. ]
  52516. ))
  52517. characterMakers.push(() => makeCharacter(
  52518. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52519. {
  52520. front: {
  52521. height: math.unit(25, "feet"),
  52522. name: "Front",
  52523. image: {
  52524. source: "./media/characters/cadenza-vivace/front.svg",
  52525. extra: 1842/1578,
  52526. bottom: 30/1872
  52527. }
  52528. },
  52529. },
  52530. [
  52531. {
  52532. name: "Macro",
  52533. height: math.unit(25, "feet"),
  52534. default: true
  52535. },
  52536. ]
  52537. ))
  52538. characterMakers.push(() => makeCharacter(
  52539. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52540. {
  52541. front: {
  52542. height: math.unit(10, "feet"),
  52543. weight: math.unit(625, "kg"),
  52544. name: "Front",
  52545. image: {
  52546. source: "./media/characters/zain/front.svg",
  52547. extra: 1682/1498,
  52548. bottom: 223/1905
  52549. }
  52550. },
  52551. back: {
  52552. height: math.unit(10, "feet"),
  52553. weight: math.unit(625, "kg"),
  52554. name: "Back",
  52555. image: {
  52556. source: "./media/characters/zain/back.svg",
  52557. extra: 1814/1657,
  52558. bottom: 152/1966
  52559. }
  52560. },
  52561. head: {
  52562. height: math.unit(10, "feet"),
  52563. weight: math.unit(625, "kg"),
  52564. name: "Head",
  52565. image: {
  52566. source: "./media/characters/zain/head.svg",
  52567. extra: 1059/762,
  52568. bottom: 0/1059
  52569. }
  52570. },
  52571. },
  52572. [
  52573. {
  52574. name: "Normal",
  52575. height: math.unit(10, "feet"),
  52576. default: true
  52577. },
  52578. ]
  52579. ))
  52580. characterMakers.push(() => makeCharacter(
  52581. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52582. {
  52583. front: {
  52584. height: math.unit(6 + 5/12, "feet"),
  52585. weight: math.unit(750, "lb"),
  52586. name: "Front",
  52587. image: {
  52588. source: "./media/characters/ruchex/front.svg",
  52589. extra: 877/820,
  52590. bottom: 17/894
  52591. },
  52592. extraAttributes: {
  52593. "width": {
  52594. name: "Width",
  52595. power: 1,
  52596. type: "length",
  52597. base: math.unit(4.757, "feet")
  52598. },
  52599. }
  52600. },
  52601. },
  52602. [
  52603. {
  52604. name: "Normal",
  52605. height: math.unit(6 + 5/12, "feet"),
  52606. default: true
  52607. },
  52608. ]
  52609. ))
  52610. characterMakers.push(() => makeCharacter(
  52611. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52612. {
  52613. dressedFront: {
  52614. height: math.unit(191, "cm"),
  52615. weight: math.unit(80, "kg"),
  52616. name: "Front",
  52617. image: {
  52618. source: "./media/characters/buster/dressed-front.svg",
  52619. extra: 1022/973,
  52620. bottom: 69/1091
  52621. }
  52622. },
  52623. dressedBack: {
  52624. height: math.unit(191, "cm"),
  52625. weight: math.unit(80, "kg"),
  52626. name: "Back",
  52627. image: {
  52628. source: "./media/characters/buster/dressed-back.svg",
  52629. extra: 1018/970,
  52630. bottom: 55/1073
  52631. }
  52632. },
  52633. nudeFront: {
  52634. height: math.unit(191, "cm"),
  52635. weight: math.unit(80, "kg"),
  52636. name: "Front (Nude)",
  52637. image: {
  52638. source: "./media/characters/buster/nude-front.svg",
  52639. extra: 1022/973,
  52640. bottom: 69/1091
  52641. }
  52642. },
  52643. nudeBack: {
  52644. height: math.unit(191, "cm"),
  52645. weight: math.unit(80, "kg"),
  52646. name: "Back (Nude)",
  52647. image: {
  52648. source: "./media/characters/buster/nude-back.svg",
  52649. extra: 1018/970,
  52650. bottom: 55/1073
  52651. }
  52652. },
  52653. dick: {
  52654. height: math.unit(2.59, "feet"),
  52655. name: "Dick",
  52656. image: {
  52657. source: "./media/characters/buster/dick.svg"
  52658. }
  52659. },
  52660. ass: {
  52661. height: math.unit(1.2, "feet"),
  52662. name: "Ass",
  52663. image: {
  52664. source: "./media/characters/buster/ass.svg"
  52665. }
  52666. },
  52667. },
  52668. [
  52669. {
  52670. name: "Normal",
  52671. height: math.unit(191, "cm"),
  52672. default: true
  52673. },
  52674. ]
  52675. ))
  52676. characterMakers.push(() => makeCharacter(
  52677. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52678. {
  52679. side: {
  52680. height: math.unit(8.1, "feet"),
  52681. weight: math.unit(3500, "lb"),
  52682. name: "Side",
  52683. image: {
  52684. source: "./media/characters/sonya/side.svg",
  52685. extra: 1730/1317,
  52686. bottom: 86/1816
  52687. }
  52688. },
  52689. },
  52690. [
  52691. {
  52692. name: "Normal",
  52693. height: math.unit(8.1, "feet"),
  52694. default: true
  52695. },
  52696. ]
  52697. ))
  52698. characterMakers.push(() => makeCharacter(
  52699. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52700. {
  52701. front: {
  52702. height: math.unit(6, "feet"),
  52703. weight: math.unit(150, "lb"),
  52704. name: "Front",
  52705. image: {
  52706. source: "./media/characters/cadence-andrysiak/front.svg",
  52707. extra: 1164/1121,
  52708. bottom: 60/1224
  52709. }
  52710. },
  52711. back: {
  52712. height: math.unit(6, "feet"),
  52713. weight: math.unit(150, "lb"),
  52714. name: "Back",
  52715. image: {
  52716. source: "./media/characters/cadence-andrysiak/back.svg",
  52717. extra: 1200/1165,
  52718. bottom: 9/1209
  52719. }
  52720. },
  52721. dressed: {
  52722. height: math.unit(6, "feet"),
  52723. weight: math.unit(150, "lb"),
  52724. name: "Dressed",
  52725. image: {
  52726. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52727. extra: 1164/1121,
  52728. bottom: 60/1224
  52729. }
  52730. },
  52731. },
  52732. [
  52733. {
  52734. name: "Micro",
  52735. height: math.unit(1, "mm")
  52736. },
  52737. {
  52738. name: "Normal",
  52739. height: math.unit(6, "feet"),
  52740. default: true
  52741. },
  52742. ]
  52743. ))
  52744. characterMakers.push(() => makeCharacter(
  52745. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52746. {
  52747. front: {
  52748. height: math.unit(60, "inches"),
  52749. weight: math.unit(16, "lb"),
  52750. preyCapacity: math.unit(80, "liters"),
  52751. name: "Front",
  52752. image: {
  52753. source: "./media/characters/penny-lynx/front.svg",
  52754. extra: 1959/1769,
  52755. bottom: 49/2008
  52756. }
  52757. },
  52758. },
  52759. [
  52760. {
  52761. name: "Nokia",
  52762. height: math.unit(2, "inches")
  52763. },
  52764. {
  52765. name: "Desktop",
  52766. height: math.unit(24, "inches")
  52767. },
  52768. {
  52769. name: "TV",
  52770. height: math.unit(60, "inches")
  52771. },
  52772. {
  52773. name: "Jumbotron",
  52774. height: math.unit(12, "feet")
  52775. },
  52776. {
  52777. name: "Billboard",
  52778. height: math.unit(48, "feet"),
  52779. default: true
  52780. },
  52781. {
  52782. name: "IMAX",
  52783. height: math.unit(96, "feet")
  52784. },
  52785. {
  52786. name: "SINGULARITY",
  52787. height: math.unit(864938, "miles")
  52788. },
  52789. ]
  52790. ))
  52791. characterMakers.push(() => makeCharacter(
  52792. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52793. {
  52794. front: {
  52795. height: math.unit(5 + 4/12, "feet"),
  52796. weight: math.unit(230, "lb"),
  52797. name: "Front",
  52798. image: {
  52799. source: "./media/characters/sukebe/front.svg",
  52800. extra: 2130/2038,
  52801. bottom: 90/2220
  52802. }
  52803. },
  52804. back: {
  52805. height: math.unit(3.48, "feet"),
  52806. weight: math.unit(230, "lb"),
  52807. name: "Back",
  52808. image: {
  52809. source: "./media/characters/sukebe/back.svg",
  52810. extra: 1670/1604,
  52811. bottom: 0/1670
  52812. }
  52813. },
  52814. },
  52815. [
  52816. {
  52817. name: "Normal",
  52818. height: math.unit(5 + 4/12, "feet"),
  52819. default: true
  52820. },
  52821. ]
  52822. ))
  52823. characterMakers.push(() => makeCharacter(
  52824. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52825. {
  52826. front: {
  52827. height: math.unit(6, "feet"),
  52828. name: "Front",
  52829. image: {
  52830. source: "./media/characters/nylla/front.svg",
  52831. extra: 1868/1699,
  52832. bottom: 97/1965
  52833. }
  52834. },
  52835. back: {
  52836. height: math.unit(6, "feet"),
  52837. name: "Back",
  52838. image: {
  52839. source: "./media/characters/nylla/back.svg",
  52840. extra: 1889/1712,
  52841. bottom: 93/1982
  52842. }
  52843. },
  52844. frontNsfw: {
  52845. height: math.unit(6, "feet"),
  52846. name: "Front (NSFW)",
  52847. image: {
  52848. source: "./media/characters/nylla/front-nsfw.svg",
  52849. extra: 1868/1699,
  52850. bottom: 97/1965
  52851. },
  52852. extraAttributes: {
  52853. "dickLength": {
  52854. name: "Dick Length",
  52855. power: 1,
  52856. type: "length",
  52857. base: math.unit(1.4, "feet")
  52858. },
  52859. "cumVolume": {
  52860. name: "Cum Volume",
  52861. power: 3,
  52862. type: "volume",
  52863. base: math.unit(100, "mL")
  52864. },
  52865. }
  52866. },
  52867. backNsfw: {
  52868. height: math.unit(6, "feet"),
  52869. name: "Back (NSFW)",
  52870. image: {
  52871. source: "./media/characters/nylla/back-nsfw.svg",
  52872. extra: 1889/1712,
  52873. bottom: 93/1982
  52874. }
  52875. },
  52876. maw: {
  52877. height: math.unit(2.10, "feet"),
  52878. name: "Maw",
  52879. image: {
  52880. source: "./media/characters/nylla/maw.svg"
  52881. }
  52882. },
  52883. paws: {
  52884. height: math.unit(2.06, "feet"),
  52885. name: "Paws",
  52886. image: {
  52887. source: "./media/characters/nylla/paws.svg"
  52888. }
  52889. },
  52890. muzzle: {
  52891. height: math.unit(0.61, "feet"),
  52892. name: "Muzzle",
  52893. image: {
  52894. source: "./media/characters/nylla/muzzle.svg"
  52895. }
  52896. },
  52897. sheath: {
  52898. height: math.unit(1.305, "feet"),
  52899. name: "Sheath",
  52900. image: {
  52901. source: "./media/characters/nylla/sheath.svg"
  52902. }
  52903. },
  52904. },
  52905. [
  52906. {
  52907. name: "Micro",
  52908. height: math.unit(7.5, "inches")
  52909. },
  52910. {
  52911. name: "Normal",
  52912. height: math.unit(7, "feet"),
  52913. default: true
  52914. },
  52915. {
  52916. name: "Macro",
  52917. height: math.unit(60, "feet")
  52918. },
  52919. {
  52920. name: "Mega",
  52921. height: math.unit(200, "feet")
  52922. },
  52923. ]
  52924. ))
  52925. characterMakers.push(() => makeCharacter(
  52926. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52927. {
  52928. front: {
  52929. height: math.unit(10, "feet"),
  52930. weight: math.unit(2300, "lb"),
  52931. name: "Front",
  52932. image: {
  52933. source: "./media/characters/hunt3r/front.svg",
  52934. extra: 1909/1742,
  52935. bottom: 46/1955
  52936. }
  52937. },
  52938. },
  52939. [
  52940. {
  52941. name: "Normal",
  52942. height: math.unit(10, "feet"),
  52943. default: true
  52944. },
  52945. ]
  52946. ))
  52947. characterMakers.push(() => makeCharacter(
  52948. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52949. {
  52950. dressed: {
  52951. height: math.unit(11, "feet"),
  52952. weight: math.unit(18500, "lb"),
  52953. preyCapacity: math.unit(9, "people"),
  52954. name: "Dressed",
  52955. image: {
  52956. source: "./media/characters/cylphis/dressed.svg",
  52957. extra: 1028/1003,
  52958. bottom: 75/1103
  52959. },
  52960. },
  52961. undressed: {
  52962. height: math.unit(11, "feet"),
  52963. weight: math.unit(18500, "lb"),
  52964. preyCapacity: math.unit(9, "people"),
  52965. name: "Undressed",
  52966. image: {
  52967. source: "./media/characters/cylphis/undressed.svg",
  52968. extra: 1028/1003,
  52969. bottom: 75/1103
  52970. }
  52971. },
  52972. full: {
  52973. height: math.unit(11, "feet"),
  52974. weight: math.unit(18500 + 150*9, "lb"),
  52975. preyCapacity: math.unit(9, "people"),
  52976. name: "Full",
  52977. image: {
  52978. source: "./media/characters/cylphis/full.svg",
  52979. extra: 1028/1003,
  52980. bottom: 75/1103
  52981. }
  52982. },
  52983. },
  52984. [
  52985. {
  52986. name: "Small",
  52987. height: math.unit(8, "feet")
  52988. },
  52989. {
  52990. name: "Normal",
  52991. height: math.unit(11, "feet"),
  52992. default: true
  52993. },
  52994. ]
  52995. ))
  52996. characterMakers.push(() => makeCharacter(
  52997. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52998. {
  52999. front: {
  53000. height: math.unit(2 + 7/12, "feet"),
  53001. name: "Front",
  53002. image: {
  53003. source: "./media/characters/orishan/front.svg",
  53004. extra: 1058/1023,
  53005. bottom: 23/1081
  53006. }
  53007. },
  53008. back: {
  53009. height: math.unit(2 + 7/12, "feet"),
  53010. name: "Back",
  53011. image: {
  53012. source: "./media/characters/orishan/back.svg",
  53013. extra: 1058/1023,
  53014. bottom: 23/1081
  53015. }
  53016. },
  53017. },
  53018. [
  53019. {
  53020. name: "Micro",
  53021. height: math.unit(2, "cm")
  53022. },
  53023. {
  53024. name: "Normal",
  53025. height: math.unit(2 + 7/12, "feet"),
  53026. default: true
  53027. },
  53028. ]
  53029. ))
  53030. characterMakers.push(() => makeCharacter(
  53031. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53032. {
  53033. front: {
  53034. height: math.unit(3, "meters"),
  53035. weight: math.unit(508, "kg"),
  53036. name: "Front",
  53037. image: {
  53038. source: "./media/characters/seranis/front.svg",
  53039. extra: 1478/1454,
  53040. bottom: 41/1519
  53041. }
  53042. },
  53043. },
  53044. [
  53045. {
  53046. name: "Normal",
  53047. height: math.unit(3, "meters"),
  53048. default: true
  53049. },
  53050. {
  53051. name: "Macro",
  53052. height: math.unit(108, "meters")
  53053. },
  53054. {
  53055. name: "Megamacro",
  53056. height: math.unit(1250, "meters")
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53062. {
  53063. undressed: {
  53064. height: math.unit(5 + 3/12, "feet"),
  53065. name: "Undressed",
  53066. image: {
  53067. source: "./media/characters/ankou/undressed.svg",
  53068. extra: 1301/1213,
  53069. bottom: 87/1388
  53070. }
  53071. },
  53072. dressed: {
  53073. height: math.unit(5 + 3/12, "feet"),
  53074. name: "Dressed",
  53075. image: {
  53076. source: "./media/characters/ankou/dressed.svg",
  53077. extra: 1301/1213,
  53078. bottom: 87/1388
  53079. }
  53080. },
  53081. head: {
  53082. height: math.unit(1.61, "feet"),
  53083. name: "Head",
  53084. image: {
  53085. source: "./media/characters/ankou/head.svg"
  53086. }
  53087. },
  53088. },
  53089. [
  53090. {
  53091. name: "Normal",
  53092. height: math.unit(5 + 3/12, "feet"),
  53093. default: true
  53094. },
  53095. ]
  53096. ))
  53097. characterMakers.push(() => makeCharacter(
  53098. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53099. {
  53100. side: {
  53101. height: math.unit(6 + 3/12, "feet"),
  53102. weight: math.unit(200, "kg"),
  53103. name: "Side",
  53104. image: {
  53105. source: "./media/characters/juniper-skunktaur/side.svg",
  53106. extra: 1574/1229,
  53107. bottom: 38/1612
  53108. }
  53109. },
  53110. front: {
  53111. height: math.unit(6 + 3/12, "feet"),
  53112. weight: math.unit(200, "kg"),
  53113. name: "Front",
  53114. image: {
  53115. source: "./media/characters/juniper-skunktaur/front.svg",
  53116. extra: 1337/1278,
  53117. bottom: 22/1359
  53118. }
  53119. },
  53120. back: {
  53121. height: math.unit(6 + 3/12, "feet"),
  53122. weight: math.unit(200, "kg"),
  53123. name: "Back",
  53124. image: {
  53125. source: "./media/characters/juniper-skunktaur/back.svg",
  53126. extra: 1618/1273,
  53127. bottom: 13/1631
  53128. }
  53129. },
  53130. top: {
  53131. height: math.unit(2.62, "feet"),
  53132. weight: math.unit(200, "kg"),
  53133. name: "Top",
  53134. image: {
  53135. source: "./media/characters/juniper-skunktaur/top.svg"
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Normal",
  53142. height: math.unit(6 + 3/12, "feet"),
  53143. default: true
  53144. },
  53145. ]
  53146. ))
  53147. characterMakers.push(() => makeCharacter(
  53148. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53149. {
  53150. front: {
  53151. height: math.unit(20.5, "feet"),
  53152. name: "Front",
  53153. image: {
  53154. source: "./media/characters/rei/front.svg",
  53155. extra: 1349/1195,
  53156. bottom: 31/1380
  53157. }
  53158. },
  53159. back: {
  53160. height: math.unit(20.5, "feet"),
  53161. name: "Back",
  53162. image: {
  53163. source: "./media/characters/rei/back.svg",
  53164. extra: 1358/1204,
  53165. bottom: 22/1380
  53166. }
  53167. },
  53168. pawsDigi: {
  53169. height: math.unit(3.45, "feet"),
  53170. name: "Paws (Digi)",
  53171. image: {
  53172. source: "./media/characters/rei/paws-digi.svg"
  53173. }
  53174. },
  53175. pawsPlanti: {
  53176. height: math.unit(3.45, "feet"),
  53177. name: "Paws (Planti)",
  53178. image: {
  53179. source: "./media/characters/rei/paws-planti.svg"
  53180. }
  53181. },
  53182. },
  53183. [
  53184. {
  53185. name: "Normal",
  53186. height: math.unit(20.5, "feet"),
  53187. default: true
  53188. },
  53189. ]
  53190. ))
  53191. characterMakers.push(() => makeCharacter(
  53192. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53193. {
  53194. front: {
  53195. height: math.unit(5 + 11/12, "feet"),
  53196. name: "Front",
  53197. image: {
  53198. source: "./media/characters/carina/front.svg",
  53199. extra: 1720/1449,
  53200. bottom: 14/1734
  53201. }
  53202. },
  53203. back: {
  53204. height: math.unit(5 + 11/12, "feet"),
  53205. name: "Back",
  53206. image: {
  53207. source: "./media/characters/carina/back.svg",
  53208. extra: 1493/1445,
  53209. bottom: 17/1510
  53210. }
  53211. },
  53212. paw: {
  53213. height: math.unit(0.92, "feet"),
  53214. name: "Paw",
  53215. image: {
  53216. source: "./media/characters/carina/paw.svg"
  53217. }
  53218. },
  53219. },
  53220. [
  53221. {
  53222. name: "Normal",
  53223. height: math.unit(5 + 11/12, "feet"),
  53224. default: true
  53225. },
  53226. ]
  53227. ))
  53228. characterMakers.push(() => makeCharacter(
  53229. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53230. {
  53231. normal_front: {
  53232. height: math.unit(4.88, "meters"),
  53233. name: "Front",
  53234. image: {
  53235. source: "./media/characters/maya/normal-front.svg",
  53236. extra: 1222/1145,
  53237. bottom: 57/1279
  53238. },
  53239. form: "normal",
  53240. default: true
  53241. },
  53242. monstrous_front: {
  53243. height: math.unit(10, "meters"),
  53244. name: "Front",
  53245. image: {
  53246. source: "./media/characters/maya/monstrous-front.svg",
  53247. extra: 1523/1109,
  53248. bottom: 113/1636
  53249. },
  53250. form: "monstrous",
  53251. extraAttributes: {
  53252. "swallowSize": {
  53253. name: "Tailmaw Bite Size",
  53254. power: 3,
  53255. type: "volume",
  53256. base: math.unit(43000, "liters")
  53257. },
  53258. }
  53259. },
  53260. taur_front: {
  53261. height: math.unit(10, "meters"),
  53262. name: "Front",
  53263. image: {
  53264. source: "./media/characters/maya/taur-front.svg",
  53265. extra: 743/506,
  53266. bottom: 101/844
  53267. },
  53268. form: "taur",
  53269. },
  53270. },
  53271. [
  53272. {
  53273. name: "Normal",
  53274. height: math.unit(4.88, "meters"),
  53275. default: true,
  53276. form: "normal"
  53277. },
  53278. {
  53279. name: "Macro",
  53280. height: math.unit(38.1, "meters"),
  53281. form: "normal"
  53282. },
  53283. {
  53284. name: "Macro+",
  53285. height: math.unit(152.4, "meters"),
  53286. form: "normal"
  53287. },
  53288. {
  53289. name: "Macro++",
  53290. height: math.unit(16.09, "km"),
  53291. form: "normal"
  53292. },
  53293. {
  53294. name: "Mega-macro",
  53295. height: math.unit(700, "megameters"),
  53296. form: "normal"
  53297. },
  53298. {
  53299. name: "Satiated",
  53300. height: math.unit(10, "meters"),
  53301. default: true,
  53302. form: "monstrous"
  53303. },
  53304. {
  53305. name: "Hungry",
  53306. height: math.unit(75, "meters"),
  53307. form: "monstrous"
  53308. },
  53309. {
  53310. name: "Ravenous",
  53311. height: math.unit(500, "meters"),
  53312. form: "monstrous"
  53313. },
  53314. {
  53315. name: "\"Normal\"",
  53316. height: math.unit(10, "meters"),
  53317. form: "taur"
  53318. },
  53319. {
  53320. name: "Macro",
  53321. height: math.unit(50, "meters"),
  53322. form: "taur"
  53323. },
  53324. ],
  53325. {
  53326. "normal": {
  53327. name: "Normal",
  53328. default: true
  53329. },
  53330. "monstrous": {
  53331. name: "Monstrous",
  53332. },
  53333. "taur": {
  53334. name: "Taur",
  53335. },
  53336. }
  53337. ))
  53338. characterMakers.push(() => makeCharacter(
  53339. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53340. {
  53341. front: {
  53342. height: math.unit(6 + 2/12, "feet"),
  53343. weight: math.unit(500, "lb"),
  53344. preyCapacity: math.unit(4, "people"),
  53345. name: "Front",
  53346. image: {
  53347. source: "./media/characters/yepir/front.svg"
  53348. }
  53349. },
  53350. side: {
  53351. height: math.unit(6 + 2/12, "feet"),
  53352. weight: math.unit(500, "lb"),
  53353. preyCapacity: math.unit(4, "people"),
  53354. name: "Side",
  53355. image: {
  53356. source: "./media/characters/yepir/side.svg"
  53357. }
  53358. },
  53359. paw: {
  53360. height: math.unit(1.05, "feet"),
  53361. name: "Paw",
  53362. image: {
  53363. source: "./media/characters/yepir/paw.svg"
  53364. }
  53365. },
  53366. },
  53367. [
  53368. {
  53369. name: "Normal",
  53370. height: math.unit(6 + 2/12, "feet"),
  53371. default: true
  53372. },
  53373. ]
  53374. ))
  53375. characterMakers.push(() => makeCharacter(
  53376. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53377. {
  53378. front: {
  53379. height: math.unit(5 + 4/12, "feet"),
  53380. name: "Front",
  53381. image: {
  53382. source: "./media/characters/russec/front.svg",
  53383. extra: 1926/1626,
  53384. bottom: 72/1998
  53385. }
  53386. },
  53387. back: {
  53388. height: math.unit(5 + 4/12, "feet"),
  53389. name: "Back",
  53390. image: {
  53391. source: "./media/characters/russec/back.svg",
  53392. extra: 1910/1591,
  53393. bottom: 48/1958
  53394. }
  53395. },
  53396. },
  53397. [
  53398. {
  53399. name: "Small",
  53400. height: math.unit(5 + 4/12, "feet")
  53401. },
  53402. {
  53403. name: "Normal",
  53404. height: math.unit(72, "feet"),
  53405. default: true
  53406. },
  53407. ]
  53408. ))
  53409. characterMakers.push(() => makeCharacter(
  53410. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53411. {
  53412. side: {
  53413. height: math.unit(12, "feet"),
  53414. name: "Side",
  53415. image: {
  53416. source: "./media/characters/cianus/side.svg",
  53417. extra: 808/526,
  53418. bottom: 61/869
  53419. }
  53420. },
  53421. },
  53422. [
  53423. {
  53424. name: "Normal",
  53425. height: math.unit(12, "feet"),
  53426. default: true
  53427. },
  53428. ]
  53429. ))
  53430. characterMakers.push(() => makeCharacter(
  53431. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53432. {
  53433. front: {
  53434. height: math.unit(9 + 6/12, "feet"),
  53435. weight: math.unit(300, "lb"),
  53436. name: "Front",
  53437. image: {
  53438. source: "./media/characters/ahab/front.svg",
  53439. extra: 1897/1868,
  53440. bottom: 121/2018
  53441. }
  53442. },
  53443. frontNsfw: {
  53444. height: math.unit(9 + 6/12, "feet"),
  53445. weight: math.unit(300, "lb"),
  53446. name: "Front-nsfw",
  53447. image: {
  53448. source: "./media/characters/ahab/front-nsfw.svg",
  53449. extra: 1897/1868,
  53450. bottom: 121/2018
  53451. }
  53452. },
  53453. },
  53454. [
  53455. {
  53456. name: "Normal",
  53457. height: math.unit(9 + 6/12, "feet")
  53458. },
  53459. {
  53460. name: "Macro",
  53461. height: math.unit(657, "feet"),
  53462. default: true
  53463. },
  53464. ]
  53465. ))
  53466. characterMakers.push(() => makeCharacter(
  53467. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53468. {
  53469. front: {
  53470. height: math.unit(2.69, "meters"),
  53471. weight: math.unit(132, "kg"),
  53472. name: "Front",
  53473. image: {
  53474. source: "./media/characters/aarkus/front.svg",
  53475. extra: 1400/1231,
  53476. bottom: 34/1434
  53477. }
  53478. },
  53479. back: {
  53480. height: math.unit(2.69, "meters"),
  53481. weight: math.unit(132, "kg"),
  53482. name: "Back",
  53483. image: {
  53484. source: "./media/characters/aarkus/back.svg",
  53485. extra: 1381/1218,
  53486. bottom: 30/1411
  53487. }
  53488. },
  53489. frontNsfw: {
  53490. height: math.unit(2.69, "meters"),
  53491. weight: math.unit(132, "kg"),
  53492. name: "Front (NSFW)",
  53493. image: {
  53494. source: "./media/characters/aarkus/front-nsfw.svg",
  53495. extra: 1400/1231,
  53496. bottom: 34/1434
  53497. }
  53498. },
  53499. foot: {
  53500. height: math.unit(1.45, "feet"),
  53501. name: "Foot",
  53502. image: {
  53503. source: "./media/characters/aarkus/foot.svg"
  53504. }
  53505. },
  53506. head: {
  53507. height: math.unit(2.85, "feet"),
  53508. name: "Head",
  53509. image: {
  53510. source: "./media/characters/aarkus/head.svg"
  53511. }
  53512. },
  53513. headAlt: {
  53514. height: math.unit(3.07, "feet"),
  53515. name: "Head (Alt)",
  53516. image: {
  53517. source: "./media/characters/aarkus/head-alt.svg"
  53518. }
  53519. },
  53520. mouth: {
  53521. height: math.unit(1.25, "feet"),
  53522. name: "Mouth",
  53523. image: {
  53524. source: "./media/characters/aarkus/mouth.svg"
  53525. }
  53526. },
  53527. dick: {
  53528. height: math.unit(1.77, "feet"),
  53529. name: "Dick",
  53530. image: {
  53531. source: "./media/characters/aarkus/dick.svg"
  53532. }
  53533. },
  53534. },
  53535. [
  53536. {
  53537. name: "Normal",
  53538. height: math.unit(2.69, "meters"),
  53539. default: true
  53540. },
  53541. {
  53542. name: "Macro",
  53543. height: math.unit(269, "meters")
  53544. },
  53545. {
  53546. name: "Macro+",
  53547. height: math.unit(672.5, "meters")
  53548. },
  53549. {
  53550. name: "Megamacro",
  53551. height: math.unit(2.017, "km")
  53552. },
  53553. ]
  53554. ))
  53555. characterMakers.push(() => makeCharacter(
  53556. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53557. {
  53558. front: {
  53559. height: math.unit(23.47, "cm"),
  53560. weight: math.unit(600, "grams"),
  53561. name: "Front",
  53562. image: {
  53563. source: "./media/characters/diode/front.svg",
  53564. extra: 1778/1396,
  53565. bottom: 95/1873
  53566. }
  53567. },
  53568. side: {
  53569. height: math.unit(23.47, "cm"),
  53570. weight: math.unit(600, "grams"),
  53571. name: "Side",
  53572. image: {
  53573. source: "./media/characters/diode/side.svg",
  53574. extra: 1831/1404,
  53575. bottom: 86/1917
  53576. }
  53577. },
  53578. wings: {
  53579. height: math.unit(0.683, "feet"),
  53580. name: "Wings",
  53581. image: {
  53582. source: "./media/characters/diode/wings.svg"
  53583. }
  53584. },
  53585. },
  53586. [
  53587. {
  53588. name: "Normal",
  53589. height: math.unit(23.47, "cm"),
  53590. default: true
  53591. },
  53592. ]
  53593. ))
  53594. characterMakers.push(() => makeCharacter(
  53595. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53596. {
  53597. front: {
  53598. height: math.unit(6 + 3/12, "feet"),
  53599. weight: math.unit(250, "lb"),
  53600. name: "Front",
  53601. image: {
  53602. source: "./media/characters/reika/front.svg",
  53603. extra: 1120/1078,
  53604. bottom: 86/1206
  53605. }
  53606. },
  53607. },
  53608. [
  53609. {
  53610. name: "Normal",
  53611. height: math.unit(6 + 3/12, "feet"),
  53612. default: true
  53613. },
  53614. ]
  53615. ))
  53616. characterMakers.push(() => makeCharacter(
  53617. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53618. {
  53619. front: {
  53620. height: math.unit(16 + 8/12, "feet"),
  53621. weight: math.unit(9000, "lb"),
  53622. name: "Front",
  53623. image: {
  53624. source: "./media/characters/lokuto-takama/front.svg",
  53625. extra: 1774/1632,
  53626. bottom: 147/1921
  53627. },
  53628. extraAttributes: {
  53629. "bustWidth": {
  53630. name: "Bust Width",
  53631. power: 1,
  53632. type: "length",
  53633. base: math.unit(2.4, "meters")
  53634. },
  53635. "breastWeight": {
  53636. name: "Breast Weight",
  53637. power: 3,
  53638. type: "mass",
  53639. base: math.unit(1000, "kg")
  53640. },
  53641. }
  53642. },
  53643. },
  53644. [
  53645. {
  53646. name: "Normal",
  53647. height: math.unit(16 + 8/12, "feet"),
  53648. default: true
  53649. },
  53650. ]
  53651. ))
  53652. characterMakers.push(() => makeCharacter(
  53653. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53654. {
  53655. front: {
  53656. height: math.unit(10, "cm"),
  53657. weight: math.unit(850, "grams"),
  53658. name: "Front",
  53659. image: {
  53660. source: "./media/characters/owak-bone/front.svg",
  53661. extra: 1965/1801,
  53662. bottom: 31/1996
  53663. }
  53664. },
  53665. },
  53666. [
  53667. {
  53668. name: "Normal",
  53669. height: math.unit(10, "cm"),
  53670. default: true
  53671. },
  53672. ]
  53673. ))
  53674. characterMakers.push(() => makeCharacter(
  53675. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53676. {
  53677. front: {
  53678. height: math.unit(2 + 6/12, "feet"),
  53679. weight: math.unit(9, "lb"),
  53680. name: "Front",
  53681. image: {
  53682. source: "./media/characters/muffin/front.svg",
  53683. extra: 1220/1195,
  53684. bottom: 84/1304
  53685. }
  53686. },
  53687. },
  53688. [
  53689. {
  53690. name: "Normal",
  53691. height: math.unit(2 + 6/12, "feet"),
  53692. default: true
  53693. },
  53694. ]
  53695. ))
  53696. characterMakers.push(() => makeCharacter(
  53697. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53698. {
  53699. front: {
  53700. height: math.unit(7, "feet"),
  53701. name: "Front",
  53702. image: {
  53703. source: "./media/characters/chimera/front.svg",
  53704. extra: 1752/1614,
  53705. bottom: 68/1820
  53706. }
  53707. },
  53708. },
  53709. [
  53710. {
  53711. name: "Normal",
  53712. height: math.unit(7, "feet")
  53713. },
  53714. {
  53715. name: "Gigamacro",
  53716. height: math.unit(2.9, "gigameters"),
  53717. default: true
  53718. },
  53719. {
  53720. name: "Universal",
  53721. height: math.unit(1.56e26, "yottameters")
  53722. },
  53723. ]
  53724. ))
  53725. characterMakers.push(() => makeCharacter(
  53726. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53727. {
  53728. front: {
  53729. height: math.unit(3, "feet"),
  53730. weight: math.unit(20, "lb"),
  53731. name: "Front",
  53732. image: {
  53733. source: "./media/characters/kit-fennec-fox/front.svg",
  53734. extra: 1027/932,
  53735. bottom: 16/1043
  53736. }
  53737. },
  53738. back: {
  53739. height: math.unit(3, "feet"),
  53740. weight: math.unit(20, "lb"),
  53741. name: "Back",
  53742. image: {
  53743. source: "./media/characters/kit-fennec-fox/back.svg",
  53744. extra: 1027/932,
  53745. bottom: 16/1043
  53746. }
  53747. },
  53748. },
  53749. [
  53750. {
  53751. name: "Normal",
  53752. height: math.unit(3, "feet"),
  53753. default: true
  53754. },
  53755. ]
  53756. ))
  53757. characterMakers.push(() => makeCharacter(
  53758. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53759. {
  53760. front: {
  53761. height: math.unit(167, "cm"),
  53762. name: "Front",
  53763. image: {
  53764. source: "./media/characters/blue-otter/front.svg",
  53765. extra: 1951/1920,
  53766. bottom: 31/1982
  53767. }
  53768. },
  53769. },
  53770. [
  53771. {
  53772. name: "Otter-Sized",
  53773. height: math.unit(100, "cm")
  53774. },
  53775. {
  53776. name: "Normal",
  53777. height: math.unit(167, "cm"),
  53778. default: true
  53779. },
  53780. ]
  53781. ))
  53782. characterMakers.push(() => makeCharacter(
  53783. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53784. {
  53785. front: {
  53786. height: math.unit(4 + 4/12, "feet"),
  53787. name: "Front",
  53788. image: {
  53789. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53790. extra: 1072/1067,
  53791. bottom: 117/1189
  53792. }
  53793. },
  53794. back: {
  53795. height: math.unit(4 + 4/12, "feet"),
  53796. name: "Back",
  53797. image: {
  53798. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53799. extra: 1135/1129,
  53800. bottom: 57/1192
  53801. }
  53802. },
  53803. head: {
  53804. height: math.unit(1.77, "feet"),
  53805. name: "Head",
  53806. image: {
  53807. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53808. }
  53809. },
  53810. },
  53811. [
  53812. {
  53813. name: "Normal",
  53814. height: math.unit(4 + 4/12, "feet"),
  53815. default: true
  53816. },
  53817. ]
  53818. ))
  53819. characterMakers.push(() => makeCharacter(
  53820. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53821. {
  53822. front: {
  53823. height: math.unit(2, "inches"),
  53824. name: "Front",
  53825. image: {
  53826. source: "./media/characters/carley-hartford/front.svg",
  53827. extra: 1035/988,
  53828. bottom: 23/1058
  53829. }
  53830. },
  53831. back: {
  53832. height: math.unit(2, "inches"),
  53833. name: "Back",
  53834. image: {
  53835. source: "./media/characters/carley-hartford/back.svg",
  53836. extra: 1035/988,
  53837. bottom: 23/1058
  53838. }
  53839. },
  53840. dressed: {
  53841. height: math.unit(2, "inches"),
  53842. name: "Dressed",
  53843. image: {
  53844. source: "./media/characters/carley-hartford/dressed.svg",
  53845. extra: 651/620,
  53846. bottom: 0/651
  53847. }
  53848. },
  53849. },
  53850. [
  53851. {
  53852. name: "Micro",
  53853. height: math.unit(2, "inches"),
  53854. default: true
  53855. },
  53856. {
  53857. name: "Macro",
  53858. height: math.unit(6 + 3/12, "feet")
  53859. },
  53860. ]
  53861. ))
  53862. characterMakers.push(() => makeCharacter(
  53863. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53864. {
  53865. front: {
  53866. height: math.unit(2 + 3/12, "feet"),
  53867. weight: math.unit(15 + 7/16, "lb"),
  53868. name: "Front",
  53869. image: {
  53870. source: "./media/characters/duke/front.svg",
  53871. extra: 910/815,
  53872. bottom: 30/940
  53873. }
  53874. },
  53875. },
  53876. [
  53877. {
  53878. name: "Normal",
  53879. height: math.unit(2 + 3/12, "feet"),
  53880. default: true
  53881. },
  53882. ]
  53883. ))
  53884. characterMakers.push(() => makeCharacter(
  53885. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53886. {
  53887. front: {
  53888. height: math.unit(5 + 4/12, "feet"),
  53889. weight: math.unit(156, "lb"),
  53890. name: "Front",
  53891. image: {
  53892. source: "./media/characters/dein/front.svg",
  53893. extra: 855/815,
  53894. bottom: 48/903
  53895. }
  53896. },
  53897. side: {
  53898. height: math.unit(5 + 4/12, "feet"),
  53899. weight: math.unit(156, "lb"),
  53900. name: "side",
  53901. image: {
  53902. source: "./media/characters/dein/side.svg",
  53903. extra: 846/803,
  53904. bottom: 25/871
  53905. }
  53906. },
  53907. maw: {
  53908. height: math.unit(1.45, "feet"),
  53909. name: "Maw",
  53910. image: {
  53911. source: "./media/characters/dein/maw.svg"
  53912. }
  53913. },
  53914. },
  53915. [
  53916. {
  53917. name: "Ferret Sized",
  53918. height: math.unit(2 + 5/12, "feet")
  53919. },
  53920. {
  53921. name: "Normal",
  53922. height: math.unit(5 + 4/12, "feet"),
  53923. default: true
  53924. },
  53925. ]
  53926. ))
  53927. characterMakers.push(() => makeCharacter(
  53928. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53929. {
  53930. front: {
  53931. height: math.unit(84 + 8/12, "feet"),
  53932. weight: math.unit(942180, "lb"),
  53933. name: "Front",
  53934. image: {
  53935. source: "./media/characters/daurine-arima/front.svg",
  53936. extra: 1989/1782,
  53937. bottom: 37/2026
  53938. }
  53939. },
  53940. side: {
  53941. height: math.unit(84 + 8/12, "feet"),
  53942. weight: math.unit(942180, "lb"),
  53943. name: "Side",
  53944. image: {
  53945. source: "./media/characters/daurine-arima/side.svg",
  53946. extra: 1997/1790,
  53947. bottom: 21/2018
  53948. }
  53949. },
  53950. back: {
  53951. height: math.unit(84 + 8/12, "feet"),
  53952. weight: math.unit(942180, "lb"),
  53953. name: "Back",
  53954. image: {
  53955. source: "./media/characters/daurine-arima/back.svg",
  53956. extra: 1992/1800,
  53957. bottom: 12/2004
  53958. }
  53959. },
  53960. head: {
  53961. height: math.unit(15.5, "feet"),
  53962. name: "Head",
  53963. image: {
  53964. source: "./media/characters/daurine-arima/head.svg"
  53965. }
  53966. },
  53967. headAlt: {
  53968. height: math.unit(19.19, "feet"),
  53969. name: "Head (Alt)",
  53970. image: {
  53971. source: "./media/characters/daurine-arima/head-alt.svg"
  53972. }
  53973. },
  53974. },
  53975. [
  53976. {
  53977. name: "Minimum height",
  53978. height: math.unit(8 + 10/12, "feet")
  53979. },
  53980. {
  53981. name: "Comfort height",
  53982. height: math.unit(19 + 6 /12, "feet")
  53983. },
  53984. {
  53985. name: "\"Normal\" height",
  53986. height: math.unit(28 + 10/12, "feet")
  53987. },
  53988. {
  53989. name: "Base height",
  53990. height: math.unit(84 + 8/12, "feet"),
  53991. default: true
  53992. },
  53993. {
  53994. name: "Mini-macro",
  53995. height: math.unit(2360, "feet")
  53996. },
  53997. {
  53998. name: "Macro",
  53999. height: math.unit(10, "miles")
  54000. },
  54001. {
  54002. name: "Goddess",
  54003. height: math.unit(9.99e40, "yottameters")
  54004. },
  54005. ]
  54006. ))
  54007. characterMakers.push(() => makeCharacter(
  54008. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54009. {
  54010. front: {
  54011. height: math.unit(2.3, "meters"),
  54012. name: "Front",
  54013. image: {
  54014. source: "./media/characters/cilenomon/front.svg",
  54015. extra: 1963/1778,
  54016. bottom: 54/2017
  54017. }
  54018. },
  54019. },
  54020. [
  54021. {
  54022. name: "Normal",
  54023. height: math.unit(2.3, "meters"),
  54024. default: true
  54025. },
  54026. {
  54027. name: "Big",
  54028. height: math.unit(5, "meters")
  54029. },
  54030. {
  54031. name: "Macro",
  54032. height: math.unit(30, "meters")
  54033. },
  54034. {
  54035. name: "True",
  54036. height: math.unit(1, "universe")
  54037. },
  54038. ]
  54039. ))
  54040. characterMakers.push(() => makeCharacter(
  54041. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54042. {
  54043. front: {
  54044. height: math.unit(5, "feet"),
  54045. name: "Front",
  54046. image: {
  54047. source: "./media/characters/sen-mink/front.svg",
  54048. extra: 1727/1675,
  54049. bottom: 35/1762
  54050. }
  54051. },
  54052. },
  54053. [
  54054. {
  54055. name: "Normal",
  54056. height: math.unit(5, "feet"),
  54057. default: true
  54058. },
  54059. ]
  54060. ))
  54061. characterMakers.push(() => makeCharacter(
  54062. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54063. {
  54064. front: {
  54065. height: math.unit(5.42999, "feet"),
  54066. weight: math.unit(100, "lb"),
  54067. name: "Front",
  54068. image: {
  54069. source: "./media/characters/ophois/front.svg",
  54070. extra: 1429/1286,
  54071. bottom: 60/1489
  54072. }
  54073. },
  54074. },
  54075. [
  54076. {
  54077. name: "Normal",
  54078. height: math.unit(5.42999, "feet"),
  54079. default: true
  54080. },
  54081. ]
  54082. ))
  54083. characterMakers.push(() => makeCharacter(
  54084. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54085. {
  54086. front: {
  54087. height: math.unit(2, "meters"),
  54088. name: "Front",
  54089. image: {
  54090. source: "./media/characters/riley/front.svg",
  54091. extra: 1779/1754,
  54092. bottom: 139/1918
  54093. }
  54094. },
  54095. },
  54096. [
  54097. {
  54098. name: "Normal",
  54099. height: math.unit(2, "meters"),
  54100. default: true
  54101. },
  54102. ]
  54103. ))
  54104. characterMakers.push(() => makeCharacter(
  54105. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54106. {
  54107. front: {
  54108. height: math.unit(6 + 2/12, "feet"),
  54109. weight: math.unit(195, "lb"),
  54110. preyCapacity: math.unit(6, "people"),
  54111. name: "Front",
  54112. image: {
  54113. source: "./media/characters/shuken-flash/front.svg",
  54114. extra: 1905/1739,
  54115. bottom: 65/1970
  54116. }
  54117. },
  54118. back: {
  54119. height: math.unit(6 + 2/12, "feet"),
  54120. weight: math.unit(195, "lb"),
  54121. preyCapacity: math.unit(6, "people"),
  54122. name: "Back",
  54123. image: {
  54124. source: "./media/characters/shuken-flash/back.svg",
  54125. extra: 1912/1751,
  54126. bottom: 13/1925
  54127. }
  54128. },
  54129. },
  54130. [
  54131. {
  54132. name: "Normal",
  54133. height: math.unit(6 + 2/12, "feet"),
  54134. default: true
  54135. },
  54136. ]
  54137. ))
  54138. characterMakers.push(() => makeCharacter(
  54139. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54140. {
  54141. front: {
  54142. height: math.unit(5 + 9/12, "feet"),
  54143. weight: math.unit(150, "lb"),
  54144. name: "Front",
  54145. image: {
  54146. source: "./media/characters/plat/front.svg",
  54147. extra: 1816/1703,
  54148. bottom: 43/1859
  54149. }
  54150. },
  54151. side: {
  54152. height: math.unit(5 + 9/12, "feet"),
  54153. weight: math.unit(300, "lb"),
  54154. name: "Side",
  54155. image: {
  54156. source: "./media/characters/plat/side.svg",
  54157. extra: 1824/1699,
  54158. bottom: 18/1842
  54159. }
  54160. },
  54161. },
  54162. [
  54163. {
  54164. name: "Normal",
  54165. height: math.unit(5 + 9/12, "feet"),
  54166. default: true
  54167. },
  54168. ]
  54169. ))
  54170. characterMakers.push(() => makeCharacter(
  54171. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54172. {
  54173. front: {
  54174. height: math.unit(9, "feet"),
  54175. weight: math.unit(1800, "lb"),
  54176. name: "Front",
  54177. image: {
  54178. source: "./media/characters/elaine/front.svg",
  54179. extra: 1833/1354,
  54180. bottom: 25/1858
  54181. }
  54182. },
  54183. back: {
  54184. height: math.unit(8.8, "feet"),
  54185. weight: math.unit(1800, "lb"),
  54186. name: "Back",
  54187. image: {
  54188. source: "./media/characters/elaine/back.svg",
  54189. extra: 1641/1233,
  54190. bottom: 53/1694
  54191. }
  54192. },
  54193. },
  54194. [
  54195. {
  54196. name: "Normal",
  54197. height: math.unit(9, "feet"),
  54198. default: true
  54199. },
  54200. ]
  54201. ))
  54202. characterMakers.push(() => makeCharacter(
  54203. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54204. {
  54205. front: {
  54206. height: math.unit(17 + 9/12, "feet"),
  54207. weight: math.unit(8000, "lb"),
  54208. name: "Front",
  54209. image: {
  54210. source: "./media/characters/vera-raven/front.svg",
  54211. extra: 1457/1412,
  54212. bottom: 121/1578
  54213. }
  54214. },
  54215. side: {
  54216. height: math.unit(17 + 9/12, "feet"),
  54217. weight: math.unit(8000, "lb"),
  54218. name: "Side",
  54219. image: {
  54220. source: "./media/characters/vera-raven/side.svg",
  54221. extra: 1510/1464,
  54222. bottom: 54/1564
  54223. }
  54224. },
  54225. },
  54226. [
  54227. {
  54228. name: "Normal",
  54229. height: math.unit(17 + 9/12, "feet"),
  54230. default: true
  54231. },
  54232. ]
  54233. ))
  54234. characterMakers.push(() => makeCharacter(
  54235. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54236. {
  54237. dressed: {
  54238. height: math.unit(6 + 9/12, "feet"),
  54239. name: "Dressed",
  54240. image: {
  54241. source: "./media/characters/nakisha/dressed.svg",
  54242. extra: 1909/1757,
  54243. bottom: 48/1957
  54244. }
  54245. },
  54246. nude: {
  54247. height: math.unit(6 + 9/12, "feet"),
  54248. name: "Nude",
  54249. image: {
  54250. source: "./media/characters/nakisha/nude.svg",
  54251. extra: 1917/1765,
  54252. bottom: 34/1951
  54253. }
  54254. },
  54255. },
  54256. [
  54257. {
  54258. name: "Normal",
  54259. height: math.unit(6 + 9/12, "feet"),
  54260. default: true
  54261. },
  54262. ]
  54263. ))
  54264. characterMakers.push(() => makeCharacter(
  54265. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54266. {
  54267. front: {
  54268. height: math.unit(87, "meters"),
  54269. name: "Front",
  54270. image: {
  54271. source: "./media/characters/serafin/front.svg",
  54272. extra: 1919/1776,
  54273. bottom: 65/1984
  54274. }
  54275. },
  54276. },
  54277. [
  54278. {
  54279. name: "Normal",
  54280. height: math.unit(87, "meters"),
  54281. default: true
  54282. },
  54283. ]
  54284. ))
  54285. characterMakers.push(() => makeCharacter(
  54286. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54287. {
  54288. front: {
  54289. height: math.unit(6, "feet"),
  54290. weight: math.unit(200, "lb"),
  54291. name: "Front",
  54292. image: {
  54293. source: "./media/characters/poptart/front.svg",
  54294. extra: 615/583,
  54295. bottom: 23/638
  54296. }
  54297. },
  54298. back: {
  54299. height: math.unit(6, "feet"),
  54300. weight: math.unit(200, "lb"),
  54301. name: "Back",
  54302. image: {
  54303. source: "./media/characters/poptart/back.svg",
  54304. extra: 617/584,
  54305. bottom: 22/639
  54306. }
  54307. },
  54308. frontNsfw: {
  54309. height: math.unit(6, "feet"),
  54310. weight: math.unit(200, "lb"),
  54311. name: "Front (NSFW)",
  54312. image: {
  54313. source: "./media/characters/poptart/front-nsfw.svg",
  54314. extra: 615/583,
  54315. bottom: 23/638
  54316. }
  54317. },
  54318. backNsfw: {
  54319. height: math.unit(6, "feet"),
  54320. weight: math.unit(200, "lb"),
  54321. name: "Back (NSFW)",
  54322. image: {
  54323. source: "./media/characters/poptart/back-nsfw.svg",
  54324. extra: 617/584,
  54325. bottom: 22/639
  54326. }
  54327. },
  54328. hand: {
  54329. height: math.unit(1.14, "feet"),
  54330. name: "Hand",
  54331. image: {
  54332. source: "./media/characters/poptart/hand.svg"
  54333. }
  54334. },
  54335. foot: {
  54336. height: math.unit(1.5, "feet"),
  54337. name: "Foot",
  54338. image: {
  54339. source: "./media/characters/poptart/foot.svg"
  54340. }
  54341. },
  54342. },
  54343. [
  54344. {
  54345. name: "Normal",
  54346. height: math.unit(6, "feet"),
  54347. default: true
  54348. },
  54349. {
  54350. name: "Grande",
  54351. height: math.unit(350, "feet")
  54352. },
  54353. {
  54354. name: "Massif",
  54355. height: math.unit(967, "feet")
  54356. },
  54357. ]
  54358. ))
  54359. characterMakers.push(() => makeCharacter(
  54360. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54361. {
  54362. hyenaSide: {
  54363. height: math.unit(120, "cm"),
  54364. weight: math.unit(120, "lb"),
  54365. name: "Side",
  54366. image: {
  54367. source: "./media/characters/trance/hyena-side.svg",
  54368. extra: 998/904,
  54369. bottom: 76/1074
  54370. }
  54371. },
  54372. },
  54373. [
  54374. {
  54375. name: "Normal",
  54376. height: math.unit(120, "cm"),
  54377. default: true
  54378. },
  54379. {
  54380. name: "Dire",
  54381. height: math.unit(230, "cm")
  54382. },
  54383. {
  54384. name: "Macro",
  54385. height: math.unit(37, "feet")
  54386. },
  54387. ]
  54388. ))
  54389. characterMakers.push(() => makeCharacter(
  54390. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54391. {
  54392. front: {
  54393. height: math.unit(6 + 3/12, "feet"),
  54394. name: "Front",
  54395. image: {
  54396. source: "./media/characters/michael-berretta/front.svg",
  54397. extra: 515/494,
  54398. bottom: 20/535
  54399. }
  54400. },
  54401. back: {
  54402. height: math.unit(6 + 3/12, "feet"),
  54403. name: "Back",
  54404. image: {
  54405. source: "./media/characters/michael-berretta/back.svg",
  54406. extra: 520/497,
  54407. bottom: 21/541
  54408. }
  54409. },
  54410. frontNsfw: {
  54411. height: math.unit(6 + 3/12, "feet"),
  54412. name: "Front (NSFW)",
  54413. image: {
  54414. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54415. extra: 515/494,
  54416. bottom: 20/535
  54417. }
  54418. },
  54419. dick: {
  54420. height: math.unit(1, "feet"),
  54421. name: "Dick",
  54422. image: {
  54423. source: "./media/characters/michael-berretta/dick.svg"
  54424. }
  54425. },
  54426. },
  54427. [
  54428. {
  54429. name: "Normal",
  54430. height: math.unit(6 + 3/12, "feet"),
  54431. default: true
  54432. },
  54433. {
  54434. name: "Big",
  54435. height: math.unit(12, "feet")
  54436. },
  54437. {
  54438. name: "Macro",
  54439. height: math.unit(187.5, "feet")
  54440. },
  54441. ]
  54442. ))
  54443. characterMakers.push(() => makeCharacter(
  54444. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54445. {
  54446. front: {
  54447. height: math.unit(9 + 9/12, "feet"),
  54448. weight: math.unit(1244, "lb"),
  54449. name: "Front",
  54450. image: {
  54451. source: "./media/characters/stella-edgecomb/front.svg",
  54452. extra: 1835/1706,
  54453. bottom: 49/1884
  54454. }
  54455. },
  54456. pen: {
  54457. height: math.unit(0.95, "feet"),
  54458. name: "Pen",
  54459. image: {
  54460. source: "./media/characters/stella-edgecomb/pen.svg"
  54461. }
  54462. },
  54463. },
  54464. [
  54465. {
  54466. name: "Cozy Bear",
  54467. height: math.unit(0.5, "inches")
  54468. },
  54469. {
  54470. name: "Normal",
  54471. height: math.unit(9 + 9/12, "feet"),
  54472. default: true
  54473. },
  54474. {
  54475. name: "Giga Bear",
  54476. height: math.unit(1, "mile")
  54477. },
  54478. {
  54479. name: "Great Bear",
  54480. height: math.unit(53, "miles")
  54481. },
  54482. {
  54483. name: "Goddess Bear",
  54484. height: math.unit(40000, "miles")
  54485. },
  54486. {
  54487. name: "Sun Bear",
  54488. height: math.unit(900000, "miles")
  54489. },
  54490. ]
  54491. ))
  54492. characterMakers.push(() => makeCharacter(
  54493. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54494. {
  54495. anthroFront: {
  54496. height: math.unit(556, "cm"),
  54497. weight: math.unit(2650, "kg"),
  54498. preyCapacity: math.unit(3, "people"),
  54499. name: "Front",
  54500. image: {
  54501. source: "./media/characters/ash´iika/front.svg",
  54502. extra: 710/673,
  54503. bottom: 15/725
  54504. },
  54505. form: "anthro",
  54506. default: true
  54507. },
  54508. anthroSide: {
  54509. height: math.unit(556, "cm"),
  54510. weight: math.unit(2650, "kg"),
  54511. preyCapacity: math.unit(3, "people"),
  54512. name: "Side",
  54513. image: {
  54514. source: "./media/characters/ash´iika/side.svg",
  54515. extra: 696/676,
  54516. bottom: 13/709
  54517. },
  54518. form: "anthro"
  54519. },
  54520. anthroDressed: {
  54521. height: math.unit(556, "cm"),
  54522. weight: math.unit(2650, "kg"),
  54523. preyCapacity: math.unit(3, "people"),
  54524. name: "Dressed",
  54525. image: {
  54526. source: "./media/characters/ash´iika/dressed.svg",
  54527. extra: 710/673,
  54528. bottom: 15/725
  54529. },
  54530. form: "anthro"
  54531. },
  54532. anthroHead: {
  54533. height: math.unit(3.5, "feet"),
  54534. name: "Head",
  54535. image: {
  54536. source: "./media/characters/ash´iika/head.svg",
  54537. extra: 348/291,
  54538. bottom: 45/393
  54539. },
  54540. form: "anthro"
  54541. },
  54542. feralSide: {
  54543. height: math.unit(870, "cm"),
  54544. weight: math.unit(17500, "kg"),
  54545. preyCapacity: math.unit(15, "people"),
  54546. name: "Side",
  54547. image: {
  54548. source: "./media/characters/ash´iika/feral.svg",
  54549. extra: 595/199,
  54550. bottom: 7/602
  54551. },
  54552. form: "feral",
  54553. default: true,
  54554. },
  54555. },
  54556. [
  54557. {
  54558. name: "Normal",
  54559. height: math.unit(556, "cm"),
  54560. default: true,
  54561. form: "anthro"
  54562. },
  54563. {
  54564. name: "Macro",
  54565. height: math.unit(88, "meters"),
  54566. form: "anthro"
  54567. },
  54568. {
  54569. name: "Normal",
  54570. height: math.unit(870, "cm"),
  54571. default: true,
  54572. form: "feral"
  54573. },
  54574. {
  54575. name: "Large",
  54576. height: math.unit(25, "meters"),
  54577. form: "feral"
  54578. },
  54579. ],
  54580. {
  54581. "anthro": {
  54582. name: "Anthro",
  54583. default: true
  54584. },
  54585. "feral": {
  54586. name: "Feral",
  54587. },
  54588. }
  54589. ))
  54590. characterMakers.push(() => makeCharacter(
  54591. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54592. {
  54593. front: {
  54594. height: math.unit(10, "feet"),
  54595. weight: math.unit(800, "lb"),
  54596. name: "Front",
  54597. image: {
  54598. source: "./media/characters/yen/front.svg",
  54599. extra: 443/411,
  54600. bottom: 6/449
  54601. }
  54602. },
  54603. sleeping: {
  54604. height: math.unit(10, "feet"),
  54605. weight: math.unit(800, "lb"),
  54606. name: "Sleeping",
  54607. image: {
  54608. source: "./media/characters/yen/sleeping.svg",
  54609. extra: 470/422,
  54610. bottom: 0/470
  54611. }
  54612. },
  54613. head: {
  54614. height: math.unit(2.2, "feet"),
  54615. name: "Head",
  54616. image: {
  54617. source: "./media/characters/yen/head.svg"
  54618. }
  54619. },
  54620. headAlt: {
  54621. height: math.unit(2.1, "feet"),
  54622. name: "Head (Alt)",
  54623. image: {
  54624. source: "./media/characters/yen/head-alt.svg"
  54625. }
  54626. },
  54627. },
  54628. [
  54629. {
  54630. name: "Normal",
  54631. height: math.unit(10, "feet"),
  54632. default: true
  54633. },
  54634. ]
  54635. ))
  54636. characterMakers.push(() => makeCharacter(
  54637. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54638. {
  54639. front: {
  54640. height: math.unit(12, "feet"),
  54641. name: "Front",
  54642. image: {
  54643. source: "./media/characters/citra/front.svg",
  54644. extra: 1950/1710,
  54645. bottom: 47/1997
  54646. }
  54647. },
  54648. },
  54649. [
  54650. {
  54651. name: "Normal",
  54652. height: math.unit(12, "feet"),
  54653. default: true
  54654. },
  54655. ]
  54656. ))
  54657. characterMakers.push(() => makeCharacter(
  54658. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54659. {
  54660. side: {
  54661. height: math.unit(7 + 10/12, "feet"),
  54662. name: "Side",
  54663. image: {
  54664. source: "./media/characters/sholstim/side.svg",
  54665. extra: 786/682,
  54666. bottom: 40/826
  54667. }
  54668. },
  54669. },
  54670. [
  54671. {
  54672. name: "Normal",
  54673. height: math.unit(7 + 10/12, "feet"),
  54674. default: true
  54675. },
  54676. ]
  54677. ))
  54678. characterMakers.push(() => makeCharacter(
  54679. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54680. {
  54681. front: {
  54682. height: math.unit(3.10, "meters"),
  54683. name: "Front",
  54684. image: {
  54685. source: "./media/characters/aggyn/front.svg",
  54686. extra: 1188/963,
  54687. bottom: 24/1212
  54688. }
  54689. },
  54690. },
  54691. [
  54692. {
  54693. name: "Normal",
  54694. height: math.unit(3.10, "meters"),
  54695. default: true
  54696. },
  54697. ]
  54698. ))
  54699. characterMakers.push(() => makeCharacter(
  54700. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54701. {
  54702. front: {
  54703. height: math.unit(7 + 5/12, "feet"),
  54704. weight: math.unit(687, "lb"),
  54705. name: "Front",
  54706. image: {
  54707. source: "./media/characters/alsandair-hergenroether/front.svg",
  54708. extra: 1251/1186,
  54709. bottom: 75/1326
  54710. }
  54711. },
  54712. back: {
  54713. height: math.unit(7 + 5/12, "feet"),
  54714. weight: math.unit(687, "lb"),
  54715. name: "Back",
  54716. image: {
  54717. source: "./media/characters/alsandair-hergenroether/back.svg",
  54718. extra: 1290/1229,
  54719. bottom: 17/1307
  54720. }
  54721. },
  54722. },
  54723. [
  54724. {
  54725. name: "Max Compression",
  54726. height: math.unit(7 + 5/12, "feet"),
  54727. default: true
  54728. },
  54729. {
  54730. name: "\"Normal\"",
  54731. height: math.unit(2, "universes")
  54732. },
  54733. ]
  54734. ))
  54735. characterMakers.push(() => makeCharacter(
  54736. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54737. {
  54738. front: {
  54739. height: math.unit(4 + 1/12, "feet"),
  54740. weight: math.unit(92, "lb"),
  54741. name: "Front",
  54742. image: {
  54743. source: "./media/characters/ie/front.svg",
  54744. extra: 1585/1352,
  54745. bottom: 91/1676
  54746. }
  54747. },
  54748. },
  54749. [
  54750. {
  54751. name: "Normal",
  54752. height: math.unit(4 + 1/12, "feet"),
  54753. default: true
  54754. },
  54755. ]
  54756. ))
  54757. characterMakers.push(() => makeCharacter(
  54758. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54759. {
  54760. anthro: {
  54761. height: math.unit(6, "feet"),
  54762. weight: math.unit(150, "lb"),
  54763. name: "Front",
  54764. image: {
  54765. source: "./media/characters/willow/anthro.svg",
  54766. extra: 1073/986,
  54767. bottom: 34/1107
  54768. },
  54769. form: "anthro",
  54770. default: true
  54771. },
  54772. taur: {
  54773. height: math.unit(6, "feet"),
  54774. weight: math.unit(150, "lb"),
  54775. name: "Side",
  54776. image: {
  54777. source: "./media/characters/willow/taur.svg",
  54778. extra: 647/512,
  54779. bottom: 136/783
  54780. },
  54781. form: "taur",
  54782. default: true
  54783. },
  54784. },
  54785. [
  54786. {
  54787. name: "Humanoid",
  54788. height: math.unit(2.7, "meters"),
  54789. form: "anthro"
  54790. },
  54791. {
  54792. name: "Normal",
  54793. height: math.unit(9, "meters"),
  54794. form: "anthro",
  54795. default: true
  54796. },
  54797. {
  54798. name: "Humanoid",
  54799. height: math.unit(2.1, "meters"),
  54800. form: "taur"
  54801. },
  54802. {
  54803. name: "Normal",
  54804. height: math.unit(7, "meters"),
  54805. form: "taur",
  54806. default: true
  54807. },
  54808. ],
  54809. {
  54810. "anthro": {
  54811. name: "Anthro",
  54812. default: true
  54813. },
  54814. "taur": {
  54815. name: "Taur",
  54816. },
  54817. }
  54818. ))
  54819. characterMakers.push(() => makeCharacter(
  54820. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54821. {
  54822. front: {
  54823. height: math.unit(2 + 5/12, "feet"),
  54824. name: "Front",
  54825. image: {
  54826. source: "./media/characters/kyan/front.svg",
  54827. extra: 460/334,
  54828. bottom: 23/483
  54829. },
  54830. extraAttributes: {
  54831. "toeLength": {
  54832. name: "Toe Length",
  54833. power: 1,
  54834. type: "length",
  54835. base: math.unit(7, "cm")
  54836. },
  54837. "toeclawLength": {
  54838. name: "Toeclaw Length",
  54839. power: 1,
  54840. type: "length",
  54841. base: math.unit(4.7, "cm")
  54842. },
  54843. "earHeight": {
  54844. name: "Ear Height",
  54845. power: 1,
  54846. type: "length",
  54847. base: math.unit(14.1, "cm")
  54848. },
  54849. }
  54850. },
  54851. paws: {
  54852. height: math.unit(0.45, "feet"),
  54853. name: "Paws",
  54854. image: {
  54855. source: "./media/characters/kyan/paws.svg",
  54856. extra: 581/581,
  54857. bottom: 114/695
  54858. }
  54859. },
  54860. },
  54861. [
  54862. {
  54863. name: "Normal",
  54864. height: math.unit(2 + 5/12, "feet"),
  54865. default: true
  54866. },
  54867. ]
  54868. ))
  54869. characterMakers.push(() => makeCharacter(
  54870. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54871. {
  54872. front: {
  54873. height: math.unit(2 + 2/3, "feet"),
  54874. name: "Front",
  54875. image: {
  54876. source: "./media/characters/xazzon/front.svg",
  54877. extra: 1109/984,
  54878. bottom: 42/1151
  54879. }
  54880. },
  54881. back: {
  54882. height: math.unit(2 + 2/3, "feet"),
  54883. name: "Back",
  54884. image: {
  54885. source: "./media/characters/xazzon/back.svg",
  54886. extra: 1095/971,
  54887. bottom: 23/1118
  54888. }
  54889. },
  54890. },
  54891. [
  54892. {
  54893. name: "Normal",
  54894. height: math.unit(2 + 2/3, "feet"),
  54895. default: true
  54896. },
  54897. ]
  54898. ))
  54899. characterMakers.push(() => makeCharacter(
  54900. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54901. {
  54902. front: {
  54903. height: math.unit(8, "feet"),
  54904. weight: math.unit(300, "lb"),
  54905. name: "Front",
  54906. image: {
  54907. source: "./media/characters/khyla-shadowsong/front.svg",
  54908. extra: 861/798,
  54909. bottom: 32/893
  54910. }
  54911. },
  54912. side: {
  54913. height: math.unit(8, "feet"),
  54914. weight: math.unit(300, "lb"),
  54915. name: "Side",
  54916. image: {
  54917. source: "./media/characters/khyla-shadowsong/side.svg",
  54918. extra: 790/750,
  54919. bottom: 87/877
  54920. }
  54921. },
  54922. back: {
  54923. height: math.unit(8, "feet"),
  54924. weight: math.unit(300, "lb"),
  54925. name: "Back",
  54926. image: {
  54927. source: "./media/characters/khyla-shadowsong/back.svg",
  54928. extra: 855/808,
  54929. bottom: 14/869
  54930. }
  54931. },
  54932. head: {
  54933. height: math.unit(2.7, "feet"),
  54934. name: "Head",
  54935. image: {
  54936. source: "./media/characters/khyla-shadowsong/head.svg"
  54937. }
  54938. },
  54939. },
  54940. [
  54941. {
  54942. name: "Micro",
  54943. height: math.unit(6, "inches")
  54944. },
  54945. {
  54946. name: "Normal",
  54947. height: math.unit(8, "feet"),
  54948. default: true
  54949. },
  54950. ]
  54951. ))
  54952. characterMakers.push(() => makeCharacter(
  54953. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54954. {
  54955. hyperFront: {
  54956. height: math.unit(9 + 4/12, "feet"),
  54957. weight: math.unit(2000, "lb"),
  54958. name: "Front",
  54959. image: {
  54960. source: "./media/characters/tiden/hyper-front.svg",
  54961. extra: 400/382,
  54962. bottom: 6/406
  54963. },
  54964. form: "hyper",
  54965. },
  54966. regularFront: {
  54967. height: math.unit(7 + 10/12, "feet"),
  54968. weight: math.unit(470, "lb"),
  54969. name: "Front",
  54970. image: {
  54971. source: "./media/characters/tiden/regular-front.svg",
  54972. extra: 468/442,
  54973. bottom: 6/474
  54974. },
  54975. form: "regular",
  54976. },
  54977. },
  54978. [
  54979. {
  54980. name: "Normal",
  54981. height: math.unit(9 + 4/12, "feet"),
  54982. default: true,
  54983. form: "hyper"
  54984. },
  54985. {
  54986. name: "Normal",
  54987. height: math.unit(7 + 10/12, "feet"),
  54988. default: true,
  54989. form: "regular"
  54990. },
  54991. ],
  54992. {
  54993. "hyper": {
  54994. name: "Hyper",
  54995. default: true
  54996. },
  54997. "regular": {
  54998. name: "Regular",
  54999. },
  55000. }
  55001. ))
  55002. characterMakers.push(() => makeCharacter(
  55003. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55004. {
  55005. side: {
  55006. height: math.unit(6, "feet"),
  55007. weight: math.unit(150, "lb"),
  55008. name: "Side",
  55009. image: {
  55010. source: "./media/characters/jason-crowe/side.svg",
  55011. extra: 1771/766,
  55012. bottom: 219/1990
  55013. }
  55014. },
  55015. },
  55016. [
  55017. {
  55018. name: "Pocket Gryphon",
  55019. height: math.unit(6, "cm")
  55020. },
  55021. {
  55022. name: "Raven",
  55023. height: math.unit(60, "cm")
  55024. },
  55025. {
  55026. name: "Normal",
  55027. height: math.unit(1, "meter"),
  55028. default: true
  55029. },
  55030. ]
  55031. ))
  55032. characterMakers.push(() => makeCharacter(
  55033. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55034. {
  55035. front: {
  55036. height: math.unit(9 + 6/12, "feet"),
  55037. weight: math.unit(1100, "lb"),
  55038. name: "Front",
  55039. image: {
  55040. source: "./media/characters/django/front.svg",
  55041. extra: 1231/1136,
  55042. bottom: 34/1265
  55043. }
  55044. },
  55045. side: {
  55046. height: math.unit(9 + 6/12, "feet"),
  55047. weight: math.unit(1100, "lb"),
  55048. name: "Side",
  55049. image: {
  55050. source: "./media/characters/django/side.svg",
  55051. extra: 1267/1174,
  55052. bottom: 9/1276
  55053. }
  55054. },
  55055. },
  55056. [
  55057. {
  55058. name: "Normal",
  55059. height: math.unit(9 + 6/12, "feet"),
  55060. default: true
  55061. },
  55062. {
  55063. name: "Macro 1",
  55064. height: math.unit(50, "feet")
  55065. },
  55066. {
  55067. name: "Macro 2",
  55068. height: math.unit(500, "feet")
  55069. },
  55070. {
  55071. name: "Mega Macro",
  55072. height: math.unit(5300, "feet")
  55073. },
  55074. ]
  55075. ))
  55076. characterMakers.push(() => makeCharacter(
  55077. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55078. {
  55079. frontSfw: {
  55080. height: math.unit(120, "cm"),
  55081. weight: math.unit(15, "kg"),
  55082. name: "Front (SFW)",
  55083. image: {
  55084. source: "./media/characters/eri/front-sfw.svg",
  55085. extra: 1014/939,
  55086. bottom: 37/1051
  55087. },
  55088. form: "moth",
  55089. },
  55090. frontNsfw: {
  55091. height: math.unit(120, "cm"),
  55092. weight: math.unit(15, "kg"),
  55093. name: "Front (NSFW)",
  55094. image: {
  55095. source: "./media/characters/eri/front-nsfw.svg",
  55096. extra: 1014/939,
  55097. bottom: 37/1051
  55098. },
  55099. form: "moth",
  55100. default: true
  55101. },
  55102. egg: {
  55103. height: math.unit(10, "cm"),
  55104. name: "Egg",
  55105. image: {
  55106. source: "./media/characters/eri/egg.svg"
  55107. },
  55108. form: "egg",
  55109. default: true
  55110. },
  55111. },
  55112. [
  55113. {
  55114. name: "Normal",
  55115. height: math.unit(120, "cm"),
  55116. default: true,
  55117. form: "moth"
  55118. },
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(10, "cm"),
  55122. default: true,
  55123. form: "egg"
  55124. },
  55125. ],
  55126. {
  55127. "moth": {
  55128. name: "Moth",
  55129. default: true
  55130. },
  55131. "egg": {
  55132. name: "Egg",
  55133. },
  55134. }
  55135. ))
  55136. characterMakers.push(() => makeCharacter(
  55137. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55138. {
  55139. front: {
  55140. height: math.unit(200, "feet"),
  55141. name: "Front",
  55142. image: {
  55143. source: "./media/characters/bishop-dowser/front.svg",
  55144. extra: 933/868,
  55145. bottom: 106/1039
  55146. }
  55147. },
  55148. },
  55149. [
  55150. {
  55151. name: "Giant",
  55152. height: math.unit(200, "feet"),
  55153. default: true
  55154. },
  55155. ]
  55156. ))
  55157. characterMakers.push(() => makeCharacter(
  55158. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55159. {
  55160. front: {
  55161. height: math.unit(2, "meters"),
  55162. preyCapacity: math.unit(3, "people"),
  55163. name: "Front",
  55164. image: {
  55165. source: "./media/characters/fryra/front.svg",
  55166. extra: 1025/948,
  55167. bottom: 30/1055
  55168. },
  55169. extraAttributes: {
  55170. "breastVolume": {
  55171. name: "Breast Volume",
  55172. power: 3,
  55173. type: "volume",
  55174. base: math.unit(8, "liters")
  55175. },
  55176. }
  55177. },
  55178. back: {
  55179. height: math.unit(2, "meters"),
  55180. preyCapacity: math.unit(3, "people"),
  55181. name: "Back",
  55182. image: {
  55183. source: "./media/characters/fryra/back.svg",
  55184. extra: 993/938,
  55185. bottom: 38/1031
  55186. },
  55187. extraAttributes: {
  55188. "breastVolume": {
  55189. name: "Breast Volume",
  55190. power: 3,
  55191. type: "volume",
  55192. base: math.unit(8, "liters")
  55193. },
  55194. }
  55195. },
  55196. head: {
  55197. height: math.unit(1.33, "feet"),
  55198. name: "Head",
  55199. image: {
  55200. source: "./media/characters/fryra/head.svg"
  55201. }
  55202. },
  55203. maw: {
  55204. height: math.unit(0.56, "feet"),
  55205. name: "Maw",
  55206. image: {
  55207. source: "./media/characters/fryra/maw.svg"
  55208. }
  55209. },
  55210. },
  55211. [
  55212. {
  55213. name: "Micro",
  55214. height: math.unit(5, "cm")
  55215. },
  55216. {
  55217. name: "Normal",
  55218. height: math.unit(2, "meters"),
  55219. default: true
  55220. },
  55221. {
  55222. name: "Small Macro",
  55223. height: math.unit(8, "meters")
  55224. },
  55225. {
  55226. name: "Macro",
  55227. height: math.unit(50, "meters")
  55228. },
  55229. {
  55230. name: "Megamacro",
  55231. height: math.unit(1, "km")
  55232. },
  55233. {
  55234. name: "Planetary",
  55235. height: math.unit(300000, "km")
  55236. },
  55237. {
  55238. name: "Universal",
  55239. height: math.unit(250, "lightyears")
  55240. },
  55241. {
  55242. name: "Fabric of Reality",
  55243. height: math.unit(1000, "multiverses")
  55244. },
  55245. ]
  55246. ))
  55247. characterMakers.push(() => makeCharacter(
  55248. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55249. {
  55250. frontDressed: {
  55251. height: math.unit(6 + 2/12, "feet"),
  55252. name: "Front (Dressed)",
  55253. image: {
  55254. source: "./media/characters/fiera/front-dressed.svg",
  55255. extra: 1883/1793,
  55256. bottom: 70/1953
  55257. }
  55258. },
  55259. backDressed: {
  55260. height: math.unit(6 + 2/12, "feet"),
  55261. name: "Back (Dressed)",
  55262. image: {
  55263. source: "./media/characters/fiera/back-dressed.svg",
  55264. extra: 1847/1780,
  55265. bottom: 70/1917
  55266. }
  55267. },
  55268. frontNude: {
  55269. height: math.unit(6 + 2/12, "feet"),
  55270. name: "Front (Nude)",
  55271. image: {
  55272. source: "./media/characters/fiera/front-nude.svg",
  55273. extra: 1875/1785,
  55274. bottom: 66/1941
  55275. }
  55276. },
  55277. backNude: {
  55278. height: math.unit(6 + 2/12, "feet"),
  55279. name: "Back (Nude)",
  55280. image: {
  55281. source: "./media/characters/fiera/back-nude.svg",
  55282. extra: 1855/1788,
  55283. bottom: 44/1899
  55284. }
  55285. },
  55286. maw: {
  55287. height: math.unit(1.3, "feet"),
  55288. name: "Maw",
  55289. image: {
  55290. source: "./media/characters/fiera/maw.svg"
  55291. }
  55292. },
  55293. paw: {
  55294. height: math.unit(1, "feet"),
  55295. name: "Paw",
  55296. image: {
  55297. source: "./media/characters/fiera/paw.svg"
  55298. }
  55299. },
  55300. shoe: {
  55301. height: math.unit(1.05, "feet"),
  55302. name: "Shoe",
  55303. image: {
  55304. source: "./media/characters/fiera/shoe.svg"
  55305. }
  55306. },
  55307. },
  55308. [
  55309. {
  55310. name: "Normal",
  55311. height: math.unit(6 + 2/12, "feet"),
  55312. default: true
  55313. },
  55314. {
  55315. name: "Size Difference",
  55316. height: math.unit(13, "feet")
  55317. },
  55318. {
  55319. name: "Macro",
  55320. height: math.unit(60, "feet")
  55321. },
  55322. {
  55323. name: "Mega Macro",
  55324. height: math.unit(200, "feet")
  55325. },
  55326. ]
  55327. ))
  55328. characterMakers.push(() => makeCharacter(
  55329. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55330. {
  55331. back: {
  55332. height: math.unit(6, "feet"),
  55333. name: "Back",
  55334. image: {
  55335. source: "./media/characters/flare/back.svg",
  55336. extra: 1883/1765,
  55337. bottom: 32/1915
  55338. }
  55339. },
  55340. },
  55341. [
  55342. {
  55343. name: "Normal",
  55344. height: math.unit(6 + 2/12, "feet"),
  55345. default: true
  55346. },
  55347. {
  55348. name: "Size Difference",
  55349. height: math.unit(13, "feet")
  55350. },
  55351. {
  55352. name: "Macro",
  55353. height: math.unit(60, "feet")
  55354. },
  55355. {
  55356. name: "Macro 2",
  55357. height: math.unit(100, "feet")
  55358. },
  55359. {
  55360. name: "Mega Macro",
  55361. height: math.unit(200, "feet")
  55362. },
  55363. ]
  55364. ))
  55365. characterMakers.push(() => makeCharacter(
  55366. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55367. {
  55368. front: {
  55369. height: math.unit(2.2, "m"),
  55370. weight: math.unit(300, "kg"),
  55371. name: "Front",
  55372. image: {
  55373. source: "./media/characters/hanna/front.svg",
  55374. extra: 1696/1502,
  55375. bottom: 206/1902
  55376. }
  55377. },
  55378. },
  55379. [
  55380. {
  55381. name: "Humanoid",
  55382. height: math.unit(2.2, "meters")
  55383. },
  55384. {
  55385. name: "Normal",
  55386. height: math.unit(4.8, "meters"),
  55387. default: true
  55388. },
  55389. ]
  55390. ))
  55391. characterMakers.push(() => makeCharacter(
  55392. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55393. {
  55394. front: {
  55395. height: math.unit(2.8, "meters"),
  55396. name: "Front",
  55397. image: {
  55398. source: "./media/characters/argo/front.svg",
  55399. extra: 731/518,
  55400. bottom: 84/815
  55401. }
  55402. },
  55403. },
  55404. [
  55405. {
  55406. name: "Normal",
  55407. height: math.unit(3, "meters"),
  55408. default: true
  55409. },
  55410. ]
  55411. ))
  55412. characterMakers.push(() => makeCharacter(
  55413. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55414. {
  55415. side: {
  55416. height: math.unit(3.8, "meters"),
  55417. name: "Side",
  55418. image: {
  55419. source: "./media/characters/sybil/side.svg",
  55420. extra: 382/361,
  55421. bottom: 25/407
  55422. }
  55423. },
  55424. },
  55425. [
  55426. {
  55427. name: "Normal",
  55428. height: math.unit(3.8, "meters"),
  55429. default: true
  55430. },
  55431. ]
  55432. ))
  55433. characterMakers.push(() => makeCharacter(
  55434. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55435. {
  55436. side: {
  55437. height: math.unit(6, "meters"),
  55438. name: "Side",
  55439. image: {
  55440. source: "./media/characters/plum/side.svg",
  55441. extra: 858/755,
  55442. bottom: 45/903
  55443. },
  55444. form: "taur",
  55445. default: true
  55446. },
  55447. back: {
  55448. height: math.unit(6.3, "meters"),
  55449. name: "Back",
  55450. image: {
  55451. source: "./media/characters/plum/back.svg",
  55452. extra: 887/813,
  55453. bottom: 32/919
  55454. },
  55455. form: "taur",
  55456. },
  55457. feral: {
  55458. height: math.unit(5.5, "meter"),
  55459. name: "Front",
  55460. image: {
  55461. source: "./media/characters/plum/feral.svg",
  55462. extra: 568/403,
  55463. bottom: 51/619
  55464. },
  55465. form: "feral",
  55466. default: true
  55467. },
  55468. head: {
  55469. height: math.unit(1.46, "meter"),
  55470. name: "Head",
  55471. image: {
  55472. source: "./media/characters/plum/head.svg"
  55473. },
  55474. form: "taur"
  55475. },
  55476. tailTop: {
  55477. height: math.unit(5.6, "meter"),
  55478. name: "Tail (Top)",
  55479. image: {
  55480. source: "./media/characters/plum/tail-top.svg"
  55481. },
  55482. form: "taur",
  55483. },
  55484. tailBottom: {
  55485. height: math.unit(5.6, "meter"),
  55486. name: "Tail (Bottom)",
  55487. image: {
  55488. source: "./media/characters/plum/tail-bottom.svg"
  55489. },
  55490. form: "taur",
  55491. },
  55492. feralHead: {
  55493. height: math.unit(2.56549521, "meter"),
  55494. name: "Head",
  55495. image: {
  55496. source: "./media/characters/plum/head.svg"
  55497. },
  55498. form: "feral"
  55499. },
  55500. feralTailTop: {
  55501. height: math.unit(5.44728435, "meter"),
  55502. name: "Tail (Top)",
  55503. image: {
  55504. source: "./media/characters/plum/tail-top.svg"
  55505. },
  55506. form: "feral",
  55507. },
  55508. feralTailBottom: {
  55509. height: math.unit(5.44728435, "meter"),
  55510. name: "Tail (Bottom)",
  55511. image: {
  55512. source: "./media/characters/plum/tail-bottom.svg"
  55513. },
  55514. form: "feral",
  55515. },
  55516. },
  55517. [
  55518. {
  55519. name: "Normal",
  55520. height: math.unit(6, "meters"),
  55521. default: true,
  55522. form: "taur"
  55523. },
  55524. {
  55525. name: "Normal",
  55526. height: math.unit(5.5, "meters"),
  55527. default: true,
  55528. form: "feral"
  55529. },
  55530. ],
  55531. {
  55532. "taur": {
  55533. name: "Taur",
  55534. default: true
  55535. },
  55536. "feral": {
  55537. name: "Feral",
  55538. },
  55539. }
  55540. ))
  55541. characterMakers.push(() => makeCharacter(
  55542. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55543. {
  55544. front: {
  55545. height: math.unit(6, "feet"),
  55546. weight: math.unit(115, "lb"),
  55547. name: "Front",
  55548. image: {
  55549. source: "./media/characters/celeste-kitsune/front.svg",
  55550. extra: 393/366,
  55551. bottom: 7/400
  55552. }
  55553. },
  55554. side: {
  55555. height: math.unit(6, "feet"),
  55556. weight: math.unit(115, "lb"),
  55557. name: "Side",
  55558. image: {
  55559. source: "./media/characters/celeste-kitsune/side.svg",
  55560. extra: 818/765,
  55561. bottom: 40/858
  55562. }
  55563. },
  55564. },
  55565. [
  55566. {
  55567. name: "Megamacro",
  55568. height: math.unit(1500, "miles"),
  55569. default: true
  55570. },
  55571. ]
  55572. ))
  55573. characterMakers.push(() => makeCharacter(
  55574. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55575. {
  55576. front: {
  55577. height: math.unit(8, "meters"),
  55578. name: "Front",
  55579. image: {
  55580. source: "./media/characters/io/front.svg",
  55581. extra: 865/722,
  55582. bottom: 58/923
  55583. }
  55584. },
  55585. back: {
  55586. height: math.unit(8, "meters"),
  55587. name: "Back",
  55588. image: {
  55589. source: "./media/characters/io/back.svg",
  55590. extra: 920/776,
  55591. bottom: 42/962
  55592. }
  55593. },
  55594. head: {
  55595. height: math.unit(5.09, "meters"),
  55596. name: "Head",
  55597. image: {
  55598. source: "./media/characters/io/head.svg"
  55599. }
  55600. },
  55601. hand: {
  55602. height: math.unit(1.6, "meters"),
  55603. name: "Hand",
  55604. image: {
  55605. source: "./media/characters/io/hand.svg"
  55606. }
  55607. },
  55608. foot: {
  55609. height: math.unit(2.4, "meters"),
  55610. name: "Foot",
  55611. image: {
  55612. source: "./media/characters/io/foot.svg"
  55613. }
  55614. },
  55615. },
  55616. [
  55617. {
  55618. name: "Normal",
  55619. height: math.unit(8, "meters"),
  55620. default: true
  55621. },
  55622. ]
  55623. ))
  55624. characterMakers.push(() => makeCharacter(
  55625. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55626. {
  55627. side: {
  55628. height: math.unit(6 + 3/12, "feet"),
  55629. weight: math.unit(225, "lb"),
  55630. name: "Side",
  55631. image: {
  55632. source: "./media/characters/silas/side.svg",
  55633. extra: 703/653,
  55634. bottom: 23/726
  55635. },
  55636. extraAttributes: {
  55637. "pawLength": {
  55638. name: "Paw Length",
  55639. power: 1,
  55640. type: "length",
  55641. base: math.unit(12, "inches")
  55642. },
  55643. "pawWidth": {
  55644. name: "Paw Width",
  55645. power: 1,
  55646. type: "length",
  55647. base: math.unit(4.5, "inches")
  55648. },
  55649. "pawArea": {
  55650. name: "Paw Area",
  55651. power: 2,
  55652. type: "area",
  55653. base: math.unit(12 * 4.5, "inches^2")
  55654. },
  55655. }
  55656. },
  55657. },
  55658. [
  55659. {
  55660. name: "Normal",
  55661. height: math.unit(6 + 3/12, "feet"),
  55662. default: true
  55663. },
  55664. ]
  55665. ))
  55666. characterMakers.push(() => makeCharacter(
  55667. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55668. {
  55669. back: {
  55670. height: math.unit(1.6, "meters"),
  55671. weight: math.unit(150, "lb"),
  55672. name: "Back",
  55673. image: {
  55674. source: "./media/characters/zari/back.svg",
  55675. extra: 424/411,
  55676. bottom: 32/456
  55677. },
  55678. extraAttributes: {
  55679. "bladderCapacity": {
  55680. name: "Bladder Size",
  55681. power: 3,
  55682. type: "volume",
  55683. base: math.unit(500, "mL")
  55684. },
  55685. "bladderFlow": {
  55686. name: "Flow Rate",
  55687. power: 3,
  55688. type: "volume",
  55689. base: math.unit(25, "mL")
  55690. },
  55691. }
  55692. },
  55693. },
  55694. [
  55695. {
  55696. name: "Normal",
  55697. height: math.unit(1.6, "meters"),
  55698. default: true
  55699. },
  55700. ]
  55701. ))
  55702. characterMakers.push(() => makeCharacter(
  55703. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55704. {
  55705. front: {
  55706. height: math.unit(25, "feet"),
  55707. weight: math.unit(5, "tons"),
  55708. name: "Front",
  55709. image: {
  55710. source: "./media/characters/charlie-human/front.svg",
  55711. extra: 1870/1740,
  55712. bottom: 102/1972
  55713. },
  55714. extraAttributes: {
  55715. "dickLength": {
  55716. name: "Dick Length",
  55717. power: 1,
  55718. type: "length",
  55719. base: math.unit(9, "feet")
  55720. },
  55721. }
  55722. },
  55723. back: {
  55724. height: math.unit(25, "feet"),
  55725. weight: math.unit(5, "tons"),
  55726. name: "Back",
  55727. image: {
  55728. source: "./media/characters/charlie-human/back.svg",
  55729. extra: 1858/1733,
  55730. bottom: 105/1963
  55731. },
  55732. extraAttributes: {
  55733. "dickLength": {
  55734. name: "Dick Length",
  55735. power: 1,
  55736. type: "length",
  55737. base: math.unit(9, "feet")
  55738. },
  55739. }
  55740. },
  55741. },
  55742. [
  55743. {
  55744. name: "\"Normal\"",
  55745. height: math.unit(6 + 4/12, "feet")
  55746. },
  55747. {
  55748. name: "Big",
  55749. height: math.unit(25, "feet"),
  55750. default: true
  55751. },
  55752. ]
  55753. ))
  55754. characterMakers.push(() => makeCharacter(
  55755. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55756. {
  55757. front: {
  55758. height: math.unit(6 + 4/12, "feet"),
  55759. weight: math.unit(320, "lb"),
  55760. name: "Front",
  55761. image: {
  55762. source: "./media/characters/ookitsu/front.svg",
  55763. extra: 1160/976,
  55764. bottom: 38/1198
  55765. }
  55766. },
  55767. frontNsfw: {
  55768. height: math.unit(6 + 4/12, "feet"),
  55769. weight: math.unit(320, "lb"),
  55770. name: "Front (NSFW)",
  55771. image: {
  55772. source: "./media/characters/ookitsu/front-nsfw.svg",
  55773. extra: 1160/976,
  55774. bottom: 38/1198
  55775. }
  55776. },
  55777. back: {
  55778. height: math.unit(6 + 4/12, "feet"),
  55779. weight: math.unit(320, "lb"),
  55780. name: "Back",
  55781. image: {
  55782. source: "./media/characters/ookitsu/back.svg",
  55783. extra: 1030/975,
  55784. bottom: 70/1100
  55785. }
  55786. },
  55787. head: {
  55788. height: math.unit(1.79, "feet"),
  55789. name: "Head",
  55790. image: {
  55791. source: "./media/characters/ookitsu/head.svg"
  55792. }
  55793. },
  55794. hand: {
  55795. height: math.unit(0.92, "feet"),
  55796. name: "Hand",
  55797. image: {
  55798. source: "./media/characters/ookitsu/hand.svg"
  55799. }
  55800. },
  55801. tails: {
  55802. height: math.unit(3.3, "feet"),
  55803. name: "Tails",
  55804. image: {
  55805. source: "./media/characters/ookitsu/tails.svg"
  55806. }
  55807. },
  55808. dick: {
  55809. height: math.unit(1.10833, "feet"),
  55810. name: "Dick",
  55811. image: {
  55812. source: "./media/characters/ookitsu/dick.svg"
  55813. }
  55814. },
  55815. },
  55816. [
  55817. {
  55818. name: "Normal",
  55819. height: math.unit(6 + 4/12, "feet"),
  55820. default: true
  55821. },
  55822. {
  55823. name: "Macro",
  55824. height: math.unit(30, "feet")
  55825. },
  55826. ]
  55827. ))
  55828. characterMakers.push(() => makeCharacter(
  55829. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55830. {
  55831. anthroFront: {
  55832. height: math.unit(6, "feet"),
  55833. weight: math.unit(250, "lb"),
  55834. name: "Front",
  55835. image: {
  55836. source: "./media/characters/jhusky/anthro-front.svg",
  55837. extra: 474/439,
  55838. bottom: 7/481
  55839. },
  55840. form: "anthro",
  55841. default: true
  55842. },
  55843. taurSideSfw: {
  55844. height: math.unit(6 + 4/12, "feet"),
  55845. weight: math.unit(500, "lb"),
  55846. name: "Side (SFW)",
  55847. image: {
  55848. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55849. extra: 1741/1629,
  55850. bottom: 196/1937
  55851. },
  55852. form: "taur",
  55853. default: true
  55854. },
  55855. taurSideNsfw: {
  55856. height: math.unit(6 + 4/12, "feet"),
  55857. weight: math.unit(500, "lb"),
  55858. name: "Taur (NSFW)",
  55859. image: {
  55860. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55861. extra: 1741/1629,
  55862. bottom: 196/1937
  55863. },
  55864. form: "taur",
  55865. },
  55866. },
  55867. [
  55868. {
  55869. name: "Huge",
  55870. height: math.unit(500, "feet"),
  55871. form: "anthro"
  55872. },
  55873. {
  55874. name: "Macro",
  55875. height: math.unit(1000, "feet"),
  55876. default: true,
  55877. form: "anthro"
  55878. },
  55879. {
  55880. name: "Megamacro",
  55881. height: math.unit(10000, "feet"),
  55882. form: "anthro"
  55883. },
  55884. {
  55885. name: "Huge",
  55886. height: math.unit(528, "feet"),
  55887. form: "taur"
  55888. },
  55889. {
  55890. name: "Macro",
  55891. height: math.unit(1056, "feet"),
  55892. default: true,
  55893. form: "taur"
  55894. },
  55895. {
  55896. name: "Megamacro",
  55897. height: math.unit(10556, "feet"),
  55898. form: "taur"
  55899. },
  55900. ],
  55901. {
  55902. "anthro": {
  55903. name: "Anthro",
  55904. default: true
  55905. },
  55906. "taur": {
  55907. name: "Taur",
  55908. },
  55909. }
  55910. ))
  55911. characterMakers.push(() => makeCharacter(
  55912. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55913. {
  55914. front: {
  55915. height: math.unit(8, "feet"),
  55916. weight: math.unit(500, "lb"),
  55917. name: "Front",
  55918. image: {
  55919. source: "./media/characters/armail/front.svg",
  55920. extra: 1753/1669,
  55921. bottom: 155/1908
  55922. }
  55923. },
  55924. back: {
  55925. height: math.unit(8, "feet"),
  55926. weight: math.unit(500, "lb"),
  55927. name: "Back",
  55928. image: {
  55929. source: "./media/characters/armail/back.svg",
  55930. extra: 1872/1803,
  55931. bottom: 63/1935
  55932. }
  55933. },
  55934. },
  55935. [
  55936. {
  55937. name: "Micro",
  55938. height: math.unit(0.25, "feet")
  55939. },
  55940. {
  55941. name: "Normal",
  55942. height: math.unit(8, "feet"),
  55943. default: true
  55944. },
  55945. {
  55946. name: "Mini-macro",
  55947. height: math.unit(30, "feet")
  55948. },
  55949. {
  55950. name: "Macro",
  55951. height: math.unit(400, "feet")
  55952. },
  55953. {
  55954. name: "Mega-macro",
  55955. height: math.unit(6000, "feet")
  55956. },
  55957. ]
  55958. ))
  55959. characterMakers.push(() => makeCharacter(
  55960. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55961. {
  55962. front: {
  55963. height: math.unit(6 + 7/12, "feet"),
  55964. weight: math.unit(210, "lb"),
  55965. name: "Front",
  55966. image: {
  55967. source: "./media/characters/wilfred-t-buxton/front.svg",
  55968. extra: 1068/882,
  55969. bottom: 28/1096
  55970. }
  55971. },
  55972. },
  55973. [
  55974. {
  55975. name: "Normal",
  55976. height: math.unit(6 + 7/12, "feet"),
  55977. default: true
  55978. },
  55979. ]
  55980. ))
  55981. characterMakers.push(() => makeCharacter(
  55982. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55983. {
  55984. front: {
  55985. height: math.unit(5 + 2/12, "feet"),
  55986. weight: math.unit(120, "lb"),
  55987. name: "Front",
  55988. image: {
  55989. source: "./media/characters/leighton-marrow/front.svg",
  55990. extra: 441/409,
  55991. bottom: 37/478
  55992. }
  55993. },
  55994. },
  55995. [
  55996. {
  55997. name: "Normal",
  55998. height: math.unit(5 + 2/12, "feet"),
  55999. default: true
  56000. },
  56001. ]
  56002. ))
  56003. characterMakers.push(() => makeCharacter(
  56004. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56005. {
  56006. front: {
  56007. height: math.unit(4, "meters"),
  56008. weight: math.unit(1200, "kg"),
  56009. name: "Front",
  56010. image: {
  56011. source: "./media/characters/licos/front.svg",
  56012. extra: 1727/1604,
  56013. bottom: 101/1828
  56014. },
  56015. form: "anthro",
  56016. default: true
  56017. },
  56018. taur_side: {
  56019. height: math.unit(20, "meters"),
  56020. weight: math.unit(1100000, "kg"),
  56021. name: "Side",
  56022. image: {
  56023. source: "./media/characters/licos/taur.svg",
  56024. extra: 1158/1091,
  56025. bottom: 80/1238
  56026. },
  56027. form: "taur",
  56028. default: true
  56029. },
  56030. },
  56031. [
  56032. {
  56033. name: "Normal",
  56034. height: math.unit(4, "meters"),
  56035. default: true,
  56036. form: "anthro"
  56037. },
  56038. {
  56039. name: "Normal",
  56040. height: math.unit(20, "meters"),
  56041. default: true,
  56042. form: "taur"
  56043. },
  56044. ],
  56045. {
  56046. "anthro": {
  56047. name: "Anthro",
  56048. default: true
  56049. },
  56050. "taur": {
  56051. name: "Taur",
  56052. },
  56053. }
  56054. ))
  56055. characterMakers.push(() => makeCharacter(
  56056. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56057. {
  56058. front: {
  56059. height: math.unit(10 + 3/12, "feet"),
  56060. name: "Front",
  56061. image: {
  56062. source: "./media/characters/theo-monkey/front.svg",
  56063. extra: 1735/1658,
  56064. bottom: 73/1808
  56065. }
  56066. },
  56067. back: {
  56068. height: math.unit(10 + 3/12, "feet"),
  56069. name: "Back",
  56070. image: {
  56071. source: "./media/characters/theo-monkey/back.svg",
  56072. extra: 1742/1664,
  56073. bottom: 33/1775
  56074. }
  56075. },
  56076. head: {
  56077. height: math.unit(2.29, "feet"),
  56078. name: "Head",
  56079. image: {
  56080. source: "./media/characters/theo-monkey/head.svg"
  56081. }
  56082. },
  56083. handPalm: {
  56084. height: math.unit(1.73, "feet"),
  56085. name: "Hand (Palm)",
  56086. image: {
  56087. source: "./media/characters/theo-monkey/hand-palm.svg"
  56088. }
  56089. },
  56090. handBack: {
  56091. height: math.unit(1.63, "feet"),
  56092. name: "Hand (Back)",
  56093. image: {
  56094. source: "./media/characters/theo-monkey/hand-back.svg"
  56095. }
  56096. },
  56097. footSole: {
  56098. height: math.unit(2.15, "feet"),
  56099. name: "Foot (Sole)",
  56100. image: {
  56101. source: "./media/characters/theo-monkey/foot-sole.svg"
  56102. }
  56103. },
  56104. footSide: {
  56105. height: math.unit(1.6, "feet"),
  56106. name: "Foot (Side)",
  56107. image: {
  56108. source: "./media/characters/theo-monkey/foot-side.svg"
  56109. }
  56110. },
  56111. },
  56112. [
  56113. {
  56114. name: "Normal",
  56115. height: math.unit(10 + 3/12, "feet"),
  56116. default: true
  56117. },
  56118. ]
  56119. ))
  56120. characterMakers.push(() => makeCharacter(
  56121. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56122. {
  56123. front: {
  56124. height: math.unit(11, "feet"),
  56125. weight: math.unit(3000, "lb"),
  56126. preyCapacity: math.unit(10, "people"),
  56127. name: "Front",
  56128. image: {
  56129. source: "./media/characters/brook/front.svg",
  56130. extra: 909/835,
  56131. bottom: 108/1017
  56132. }
  56133. },
  56134. back: {
  56135. height: math.unit(11, "feet"),
  56136. weight: math.unit(3000, "lb"),
  56137. preyCapacity: math.unit(10, "people"),
  56138. name: "Back",
  56139. image: {
  56140. source: "./media/characters/brook/back.svg",
  56141. extra: 976/916,
  56142. bottom: 34/1010
  56143. }
  56144. },
  56145. backAlt: {
  56146. height: math.unit(11, "feet"),
  56147. weight: math.unit(3000, "lb"),
  56148. preyCapacity: math.unit(10, "people"),
  56149. name: "Back (Alt)",
  56150. image: {
  56151. source: "./media/characters/brook/back-alt.svg",
  56152. extra: 1283/1213,
  56153. bottom: 35/1318
  56154. }
  56155. },
  56156. bust: {
  56157. height: math.unit(9.0859030837, "feet"),
  56158. weight: math.unit(3000, "lb"),
  56159. preyCapacity: math.unit(10, "people"),
  56160. name: "Bust",
  56161. image: {
  56162. source: "./media/characters/brook/bust.svg",
  56163. extra: 2043/1923,
  56164. bottom: 0/2043
  56165. }
  56166. },
  56167. },
  56168. [
  56169. {
  56170. name: "Small",
  56171. height: math.unit(11, "feet"),
  56172. default: true
  56173. },
  56174. {
  56175. name: "Towering",
  56176. height: math.unit(5, "km")
  56177. },
  56178. {
  56179. name: "Enormous",
  56180. height: math.unit(25, "earths")
  56181. },
  56182. ]
  56183. ))
  56184. characterMakers.push(() => makeCharacter(
  56185. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56186. {
  56187. front: {
  56188. height: math.unit(4, "feet"),
  56189. weight: math.unit(150, "lb"),
  56190. name: "Front",
  56191. image: {
  56192. source: "./media/characters/squishi/front.svg",
  56193. extra: 1428/1271,
  56194. bottom: 30/1458
  56195. },
  56196. extraAttributes: {
  56197. "pawSize": {
  56198. name: "Paw Size",
  56199. power: 1,
  56200. type: "length",
  56201. base: math.unit(14, "ShoeSizeMensUS"),
  56202. defaultUnit: "ShoeSizeMensUS"
  56203. },
  56204. }
  56205. },
  56206. side: {
  56207. height: math.unit(4, "feet"),
  56208. weight: math.unit(150, "lb"),
  56209. name: "Side",
  56210. image: {
  56211. source: "./media/characters/squishi/side.svg",
  56212. extra: 1428/1271,
  56213. bottom: 30/1458
  56214. },
  56215. extraAttributes: {
  56216. "pawSize": {
  56217. name: "Paw Size",
  56218. power: 1,
  56219. type: "length",
  56220. base: math.unit(14, "ShoeSizeMensUS"),
  56221. defaultUnit: "ShoeSizeMensUS"
  56222. },
  56223. }
  56224. },
  56225. back: {
  56226. height: math.unit(4, "feet"),
  56227. weight: math.unit(150, "lb"),
  56228. name: "Back",
  56229. image: {
  56230. source: "./media/characters/squishi/back.svg",
  56231. extra: 1428/1271,
  56232. bottom: 30/1458
  56233. },
  56234. extraAttributes: {
  56235. "pawSize": {
  56236. name: "Paw Size",
  56237. power: 1,
  56238. type: "length",
  56239. base: math.unit(14, "ShoeSizeMensUS"),
  56240. defaultUnit: "ShoeSizeMensUS"
  56241. },
  56242. }
  56243. },
  56244. },
  56245. [
  56246. {
  56247. name: "Normal",
  56248. height: math.unit(4, "feet"),
  56249. default: true
  56250. },
  56251. ]
  56252. ))
  56253. characterMakers.push(() => makeCharacter(
  56254. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56255. {
  56256. front: {
  56257. height: math.unit(7 + 8/12, "feet"),
  56258. weight: math.unit(333, "lb"),
  56259. name: "Front",
  56260. image: {
  56261. source: "./media/characters/vincent-vasroc/front.svg",
  56262. extra: 1962/1860,
  56263. bottom: 41/2003
  56264. }
  56265. },
  56266. back: {
  56267. height: math.unit(7 + 8/12, "feet"),
  56268. weight: math.unit(333, "lb"),
  56269. name: "Back",
  56270. image: {
  56271. source: "./media/characters/vincent-vasroc/back.svg",
  56272. extra: 1952/1815,
  56273. bottom: 33/1985
  56274. }
  56275. },
  56276. paw: {
  56277. height: math.unit(1.24, "feet"),
  56278. name: "Paw",
  56279. image: {
  56280. source: "./media/characters/vincent-vasroc/paw.svg"
  56281. }
  56282. },
  56283. ear: {
  56284. height: math.unit(0.75, "feet"),
  56285. name: "Ear",
  56286. image: {
  56287. source: "./media/characters/vincent-vasroc/ear.svg"
  56288. }
  56289. },
  56290. },
  56291. [
  56292. {
  56293. name: "Nano",
  56294. height: math.unit(92, "micrometers")
  56295. },
  56296. {
  56297. name: "Normal",
  56298. height: math.unit(7 + 8/12, "feet"),
  56299. default: true
  56300. },
  56301. ]
  56302. ))
  56303. characterMakers.push(() => makeCharacter(
  56304. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56305. {
  56306. frontNsfw: {
  56307. height: math.unit(40, "feet"),
  56308. weight: math.unit(58, "tons"),
  56309. name: "Front (NSFW)",
  56310. image: {
  56311. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56312. extra: 1265/965,
  56313. bottom: 155/1420
  56314. }
  56315. },
  56316. frontSfw: {
  56317. height: math.unit(40, "feet"),
  56318. weight: math.unit(58, "tons"),
  56319. name: "Front (SFW)",
  56320. image: {
  56321. source: "./media/characters/ru-kahn/front-sfw.svg",
  56322. extra: 1265/965,
  56323. bottom: 80/1345
  56324. }
  56325. },
  56326. },
  56327. [
  56328. {
  56329. name: "Small",
  56330. height: math.unit(4, "feet")
  56331. },
  56332. {
  56333. name: "Normal",
  56334. height: math.unit(40, "feet"),
  56335. default: true
  56336. },
  56337. {
  56338. name: "Macro",
  56339. height: math.unit(400, "feet")
  56340. },
  56341. ]
  56342. ))
  56343. characterMakers.push(() => makeCharacter(
  56344. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56345. {
  56346. frontNude: {
  56347. height: math.unit(6 + 5/12, "feet"),
  56348. name: "Front (Nude)",
  56349. image: {
  56350. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56351. extra: 1369/1366,
  56352. bottom: 68/1437
  56353. }
  56354. },
  56355. frontDressed: {
  56356. height: math.unit(6 + 5/12, "feet"),
  56357. name: "Front (Dressed)",
  56358. image: {
  56359. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56360. extra: 1369/1366,
  56361. bottom: 68/1437
  56362. }
  56363. },
  56364. },
  56365. [
  56366. {
  56367. name: "Normal",
  56368. height: math.unit(6 + 5/12, "feet"),
  56369. default: true
  56370. },
  56371. {
  56372. name: "Maximum",
  56373. height: math.unit(1930, "feet")
  56374. },
  56375. ]
  56376. ))
  56377. characterMakers.push(() => makeCharacter(
  56378. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56379. {
  56380. front: {
  56381. height: math.unit(5 + 6/12, "feet"),
  56382. name: "Front",
  56383. image: {
  56384. source: "./media/characters/kaja/front.svg",
  56385. extra: 1874/1514,
  56386. bottom: 117/1991
  56387. }
  56388. },
  56389. },
  56390. [
  56391. {
  56392. name: "Normal",
  56393. height: math.unit(5 + 6/12, "feet"),
  56394. default: true
  56395. },
  56396. ]
  56397. ))
  56398. characterMakers.push(() => makeCharacter(
  56399. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56400. {
  56401. front: {
  56402. height: math.unit(5 + 9/12, "feet"),
  56403. weight: math.unit(200, "lb"),
  56404. name: "Front",
  56405. image: {
  56406. source: "./media/characters/mark-smith/front.svg",
  56407. extra: 1004/943,
  56408. bottom: 58/1062
  56409. }
  56410. },
  56411. back: {
  56412. height: math.unit(5 + 9/12, "feet"),
  56413. weight: math.unit(200, "lb"),
  56414. name: "Back",
  56415. image: {
  56416. source: "./media/characters/mark-smith/back.svg",
  56417. extra: 1023/953,
  56418. bottom: 24/1047
  56419. }
  56420. },
  56421. head: {
  56422. height: math.unit(1.82, "feet"),
  56423. name: "Head",
  56424. image: {
  56425. source: "./media/characters/mark-smith/head.svg"
  56426. }
  56427. },
  56428. hand: {
  56429. height: math.unit(1.4, "feet"),
  56430. name: "Hand",
  56431. image: {
  56432. source: "./media/characters/mark-smith/hand.svg"
  56433. }
  56434. },
  56435. paw: {
  56436. height: math.unit(1.69, "feet"),
  56437. name: "Paw",
  56438. image: {
  56439. source: "./media/characters/mark-smith/paw.svg"
  56440. }
  56441. },
  56442. },
  56443. [
  56444. {
  56445. name: "Micro",
  56446. height: math.unit(0.25, "inches")
  56447. },
  56448. {
  56449. name: "Normal",
  56450. height: math.unit(5 + 9/12, "feet"),
  56451. default: true
  56452. },
  56453. {
  56454. name: "Macro",
  56455. height: math.unit(500, "feet")
  56456. },
  56457. ]
  56458. ))
  56459. characterMakers.push(() => makeCharacter(
  56460. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56461. {
  56462. frontNude: {
  56463. height: math.unit(6, "feet"),
  56464. name: "Front (Nude)",
  56465. image: {
  56466. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56467. extra: 1384/1321,
  56468. bottom: 57/1441
  56469. }
  56470. },
  56471. frontDressed: {
  56472. height: math.unit(6, "feet"),
  56473. name: "Front (Dressed)",
  56474. image: {
  56475. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56476. extra: 1384/1321,
  56477. bottom: 57/1441
  56478. }
  56479. },
  56480. },
  56481. [
  56482. {
  56483. name: "Normal",
  56484. height: math.unit(6, "feet"),
  56485. default: true
  56486. },
  56487. {
  56488. name: "Maximum",
  56489. height: math.unit(1776, "feet")
  56490. },
  56491. ]
  56492. ))
  56493. characterMakers.push(() => makeCharacter(
  56494. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56495. {
  56496. front: {
  56497. height: math.unit(2 + 4/12, "feet"),
  56498. weight: math.unit(350, "lb"),
  56499. name: "Front",
  56500. image: {
  56501. source: "./media/characters/devos/front.svg",
  56502. extra: 958/852,
  56503. bottom: 143/1101
  56504. }
  56505. },
  56506. },
  56507. [
  56508. {
  56509. name: "Base",
  56510. height: math.unit(2 + 4/12, "feet"),
  56511. default: true
  56512. },
  56513. ]
  56514. ))
  56515. characterMakers.push(() => makeCharacter(
  56516. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56517. {
  56518. front: {
  56519. height: math.unit(9 + 2/12, "feet"),
  56520. name: "Front",
  56521. image: {
  56522. source: "./media/characters/hiveheart/front.svg",
  56523. extra: 394/364,
  56524. bottom: 65/459
  56525. }
  56526. },
  56527. back: {
  56528. height: math.unit(9 + 2/12, "feet"),
  56529. name: "Back",
  56530. image: {
  56531. source: "./media/characters/hiveheart/back.svg",
  56532. extra: 374/357,
  56533. bottom: 63/437
  56534. }
  56535. },
  56536. },
  56537. [
  56538. {
  56539. name: "Base",
  56540. height: math.unit(9 + 2/12, "feet"),
  56541. default: true
  56542. },
  56543. ]
  56544. ))
  56545. characterMakers.push(() => makeCharacter(
  56546. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56547. {
  56548. front: {
  56549. height: math.unit(2.5, "inches"),
  56550. weight: math.unit(0.6, "oz"),
  56551. name: "Front",
  56552. image: {
  56553. source: "./media/characters/bryn/front.svg",
  56554. extra: 1480/1205,
  56555. bottom: 27/1507
  56556. }
  56557. },
  56558. back: {
  56559. height: math.unit(2.5, "inches"),
  56560. weight: math.unit(0.6, "oz"),
  56561. name: "Back",
  56562. image: {
  56563. source: "./media/characters/bryn/back.svg",
  56564. extra: 1475/1201,
  56565. bottom: 39/1514
  56566. }
  56567. },
  56568. foot: {
  56569. height: math.unit(0.4, "inches"),
  56570. name: "Foot",
  56571. image: {
  56572. source: "./media/characters/bryn/foot.svg"
  56573. }
  56574. },
  56575. },
  56576. [
  56577. {
  56578. name: "Normal",
  56579. height: math.unit(2.5, "inches"),
  56580. default: true
  56581. },
  56582. ]
  56583. ))
  56584. characterMakers.push(() => makeCharacter(
  56585. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56586. {
  56587. side: {
  56588. height: math.unit(7, "feet"),
  56589. weight: math.unit(657, "kg"),
  56590. name: "Side",
  56591. image: {
  56592. source: "./media/characters/delta/side.svg",
  56593. extra: 781/212,
  56594. bottom: 7/788
  56595. },
  56596. extraAttributes: {
  56597. "wingspan": {
  56598. name: "Wingspan",
  56599. power: 1,
  56600. type: "length",
  56601. base: math.unit(48, "feet")
  56602. },
  56603. "length": {
  56604. name: "Length",
  56605. power: 1,
  56606. type: "length",
  56607. base: math.unit(21, "feet")
  56608. },
  56609. "pawSize": {
  56610. name: "Paw Size",
  56611. power: 2,
  56612. type: "area",
  56613. base: math.unit(1.5*1.4, "feet^2")
  56614. },
  56615. }
  56616. },
  56617. },
  56618. [
  56619. {
  56620. name: "Normal",
  56621. height: math.unit(6, "feet"),
  56622. default: true
  56623. },
  56624. ]
  56625. ))
  56626. characterMakers.push(() => makeCharacter(
  56627. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56628. {
  56629. front: {
  56630. height: math.unit(6, "feet"),
  56631. name: "Front",
  56632. image: {
  56633. source: "./media/characters/pyrow/front.svg",
  56634. extra: 513/486,
  56635. bottom: 14/527
  56636. }
  56637. },
  56638. frontWing: {
  56639. height: math.unit(6, "feet"),
  56640. name: "Front (Wing)",
  56641. image: {
  56642. source: "./media/characters/pyrow/front-wing.svg",
  56643. extra: 539/383,
  56644. bottom: 20/559
  56645. }
  56646. },
  56647. back: {
  56648. height: math.unit(6, "feet"),
  56649. name: "Back",
  56650. image: {
  56651. source: "./media/characters/pyrow/back.svg",
  56652. extra: 500/473,
  56653. bottom: 9/509
  56654. }
  56655. },
  56656. },
  56657. [
  56658. {
  56659. name: "Normal",
  56660. height: math.unit(6, "feet"),
  56661. default: true
  56662. },
  56663. ]
  56664. ))
  56665. characterMakers.push(() => makeCharacter(
  56666. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56667. {
  56668. front: {
  56669. height: math.unit(5, "meters"),
  56670. weight: math.unit(3, "tonnes"),
  56671. name: "Front",
  56672. image: {
  56673. source: "./media/characters/velikan/front.svg",
  56674. extra: 867/744,
  56675. bottom: 71/938
  56676. },
  56677. extraAttributes: {
  56678. "shoeSize": {
  56679. name: "Shoe Size",
  56680. power: 1,
  56681. type: "length",
  56682. base: math.unit(135, "ShoeSizeUK"),
  56683. defaultUnit: "ShoeSizeUK"
  56684. },
  56685. }
  56686. },
  56687. },
  56688. [
  56689. {
  56690. name: "Normal",
  56691. height: math.unit(5, "meters"),
  56692. default: true
  56693. },
  56694. {
  56695. name: "Macro",
  56696. height: math.unit(1, "km")
  56697. },
  56698. {
  56699. name: "Mega Macro",
  56700. height: math.unit(100, "km")
  56701. },
  56702. {
  56703. name: "Giga Macro",
  56704. height: math.unit(2, "megameters")
  56705. },
  56706. {
  56707. name: "Planetary",
  56708. height: math.unit(22, "megameters")
  56709. },
  56710. {
  56711. name: "Solar",
  56712. height: math.unit(8, "gigameters")
  56713. },
  56714. {
  56715. name: "Cosmic",
  56716. height: math.unit(10, "zettameters")
  56717. },
  56718. {
  56719. name: "Omni",
  56720. height: math.unit(9e260, "multiverses")
  56721. },
  56722. ]
  56723. ))
  56724. characterMakers.push(() => makeCharacter(
  56725. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56726. {
  56727. front: {
  56728. height: math.unit(4 + 3/12, "feet"),
  56729. weight: math.unit(90, "lb"),
  56730. name: "Front",
  56731. image: {
  56732. source: "./media/characters/sabiki/front.svg",
  56733. extra: 1662/1423,
  56734. bottom: 65/1727
  56735. }
  56736. },
  56737. },
  56738. [
  56739. {
  56740. name: "Normal",
  56741. height: math.unit(4 + 3/12, "feet"),
  56742. default: true
  56743. },
  56744. ]
  56745. ))
  56746. characterMakers.push(() => makeCharacter(
  56747. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56748. {
  56749. frontSfw: {
  56750. height: math.unit(2, "mm"),
  56751. name: "Front (SFW)",
  56752. image: {
  56753. source: "./media/characters/carmel/front-sfw.svg",
  56754. extra: 1131/1006,
  56755. bottom: 66/1197
  56756. }
  56757. },
  56758. frontNsfw: {
  56759. height: math.unit(2, "mm"),
  56760. name: "Front (NSFW)",
  56761. image: {
  56762. source: "./media/characters/carmel/front-nsfw.svg",
  56763. extra: 1131/1006,
  56764. bottom: 66/1197
  56765. }
  56766. },
  56767. foot: {
  56768. height: math.unit(0.3, "mm"),
  56769. name: "Foot",
  56770. image: {
  56771. source: "./media/characters/carmel/foot.svg"
  56772. }
  56773. },
  56774. tongue: {
  56775. height: math.unit(0.71, "mm"),
  56776. name: "Tongue",
  56777. image: {
  56778. source: "./media/characters/carmel/tongue.svg"
  56779. }
  56780. },
  56781. dick: {
  56782. height: math.unit(0.085, "mm"),
  56783. name: "Dick",
  56784. image: {
  56785. source: "./media/characters/carmel/dick.svg"
  56786. }
  56787. },
  56788. },
  56789. [
  56790. {
  56791. name: "Micro",
  56792. height: math.unit(2, "mm"),
  56793. default: true
  56794. },
  56795. {
  56796. name: "Normal",
  56797. height: math.unit(4 + 8/12, "feet")
  56798. },
  56799. {
  56800. name: "Mega Macro",
  56801. height: math.unit(250, "feet")
  56802. },
  56803. {
  56804. name: "BIGGER",
  56805. height: math.unit(1000, "feet")
  56806. },
  56807. {
  56808. name: "BIGGEST",
  56809. height: math.unit(2, "miles")
  56810. },
  56811. ]
  56812. ))
  56813. characterMakers.push(() => makeCharacter(
  56814. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56815. {
  56816. front: {
  56817. height: math.unit(6.5, "feet"),
  56818. weight: math.unit(198, "lb"),
  56819. name: "Front",
  56820. image: {
  56821. source: "./media/characters/tamani/anthro.svg",
  56822. extra: 930/890,
  56823. bottom: 34/964
  56824. },
  56825. form: "anthro",
  56826. default: true
  56827. },
  56828. side: {
  56829. height: math.unit(6, "feet"),
  56830. weight: math.unit(198*2, "lb"),
  56831. name: "Side",
  56832. image: {
  56833. source: "./media/characters/tamani/feral.svg",
  56834. extra: 559/519,
  56835. bottom: 43/602
  56836. },
  56837. form: "feral"
  56838. },
  56839. },
  56840. [
  56841. {
  56842. name: "Normal",
  56843. height: math.unit(6.5, "feet"),
  56844. default: true,
  56845. form: "anthro"
  56846. },
  56847. {
  56848. name: "Normal",
  56849. height: math.unit(6, "feet"),
  56850. default: true,
  56851. form: "feral"
  56852. },
  56853. ],
  56854. {
  56855. "anthro": {
  56856. name: "Anthro",
  56857. default: true
  56858. },
  56859. "feral": {
  56860. name: "Feral",
  56861. },
  56862. }
  56863. ))
  56864. characterMakers.push(() => makeCharacter(
  56865. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56866. {
  56867. front: {
  56868. height: math.unit(4 + 1/12, "feet"),
  56869. weight: math.unit(114, "lb"),
  56870. name: "Front",
  56871. image: {
  56872. source: "./media/characters/dex/front.svg",
  56873. extra: 787/680,
  56874. bottom: 18/805
  56875. }
  56876. },
  56877. side: {
  56878. height: math.unit(4 + 1/12, "feet"),
  56879. weight: math.unit(114, "lb"),
  56880. name: "Side",
  56881. image: {
  56882. source: "./media/characters/dex/side.svg",
  56883. extra: 785/680,
  56884. bottom: 12/797
  56885. }
  56886. },
  56887. back: {
  56888. height: math.unit(4 + 1/12, "feet"),
  56889. weight: math.unit(114, "lb"),
  56890. name: "Back",
  56891. image: {
  56892. source: "./media/characters/dex/back.svg",
  56893. extra: 785/681,
  56894. bottom: 17/802
  56895. }
  56896. },
  56897. loungewear: {
  56898. height: math.unit(4 + 1/12, "feet"),
  56899. weight: math.unit(114, "lb"),
  56900. name: "Loungewear",
  56901. image: {
  56902. source: "./media/characters/dex/loungewear.svg",
  56903. extra: 787/680,
  56904. bottom: 18/805
  56905. }
  56906. },
  56907. workout: {
  56908. height: math.unit(4 + 1/12, "feet"),
  56909. weight: math.unit(114, "lb"),
  56910. name: "Workout",
  56911. image: {
  56912. source: "./media/characters/dex/workout.svg",
  56913. extra: 787/680,
  56914. bottom: 18/805
  56915. }
  56916. },
  56917. schoolUniform: {
  56918. height: math.unit(4 + 1/12, "feet"),
  56919. weight: math.unit(114, "lb"),
  56920. name: "School-uniform",
  56921. image: {
  56922. source: "./media/characters/dex/school-uniform.svg",
  56923. extra: 787/680,
  56924. bottom: 18/805
  56925. }
  56926. },
  56927. maw: {
  56928. height: math.unit(0.55, "feet"),
  56929. name: "Maw",
  56930. image: {
  56931. source: "./media/characters/dex/maw.svg"
  56932. }
  56933. },
  56934. paw: {
  56935. height: math.unit(0.87, "feet"),
  56936. name: "Paw",
  56937. image: {
  56938. source: "./media/characters/dex/paw.svg"
  56939. }
  56940. },
  56941. bust: {
  56942. height: math.unit(1.67, "feet"),
  56943. name: "Bust",
  56944. image: {
  56945. source: "./media/characters/dex/bust.svg"
  56946. }
  56947. },
  56948. },
  56949. [
  56950. {
  56951. name: "Normal",
  56952. height: math.unit(4 + 1/12, "feet"),
  56953. default: true
  56954. },
  56955. ]
  56956. ))
  56957. characterMakers.push(() => makeCharacter(
  56958. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56959. {
  56960. front: {
  56961. height: math.unit(4 + 3/12, "feet"),
  56962. weight: math.unit(60, "lb"),
  56963. name: "Front",
  56964. image: {
  56965. source: "./media/characters/silke/front.svg",
  56966. extra: 1334/1122,
  56967. bottom: 21/1355
  56968. }
  56969. },
  56970. back: {
  56971. height: math.unit(4 + 3/12, "feet"),
  56972. weight: math.unit(60, "lb"),
  56973. name: "Back",
  56974. image: {
  56975. source: "./media/characters/silke/back.svg",
  56976. extra: 1328/1092,
  56977. bottom: 16/1344
  56978. }
  56979. },
  56980. dressed: {
  56981. height: math.unit(4 + 3/12, "feet"),
  56982. weight: math.unit(60, "lb"),
  56983. name: "Dressed",
  56984. image: {
  56985. source: "./media/characters/silke/dressed.svg",
  56986. extra: 1334/1122,
  56987. bottom: 43/1377
  56988. }
  56989. },
  56990. },
  56991. [
  56992. {
  56993. name: "Normal",
  56994. height: math.unit(4 + 3/12, "feet"),
  56995. default: true
  56996. },
  56997. ]
  56998. ))
  56999. characterMakers.push(() => makeCharacter(
  57000. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57001. {
  57002. front: {
  57003. height: math.unit(1.58, "meters"),
  57004. weight: math.unit(47, "kg"),
  57005. name: "Front",
  57006. image: {
  57007. source: "./media/characters/wireshark/front.svg",
  57008. extra: 883/838,
  57009. bottom: 66/949
  57010. }
  57011. },
  57012. },
  57013. [
  57014. {
  57015. name: "Normal",
  57016. height: math.unit(1.58, "meters"),
  57017. default: true
  57018. },
  57019. ]
  57020. ))
  57021. characterMakers.push(() => makeCharacter(
  57022. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57023. {
  57024. front: {
  57025. height: math.unit(6, "meters"),
  57026. weight: math.unit(15000, "kg"),
  57027. name: "Front",
  57028. image: {
  57029. source: "./media/characters/gallagher/front.svg",
  57030. extra: 532/493,
  57031. bottom: 0/532
  57032. }
  57033. },
  57034. },
  57035. [
  57036. {
  57037. name: "Normal",
  57038. height: math.unit(6, "meters"),
  57039. default: true
  57040. },
  57041. ]
  57042. ))
  57043. characterMakers.push(() => makeCharacter(
  57044. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57045. {
  57046. front: {
  57047. height: math.unit(2.4, "meters"),
  57048. weight: math.unit(270, "kg"),
  57049. name: "Front",
  57050. image: {
  57051. source: "./media/characters/alice/front.svg",
  57052. extra: 950/900,
  57053. bottom: 36/986
  57054. }
  57055. },
  57056. side: {
  57057. height: math.unit(2.4, "meters"),
  57058. weight: math.unit(270, "kg"),
  57059. name: "Side",
  57060. image: {
  57061. source: "./media/characters/alice/side.svg",
  57062. extra: 921/876,
  57063. bottom: 19/940
  57064. }
  57065. },
  57066. dressed: {
  57067. height: math.unit(2.4, "meters"),
  57068. weight: math.unit(270, "kg"),
  57069. name: "Dressed",
  57070. image: {
  57071. source: "./media/characters/alice/dressed.svg",
  57072. extra: 905/850,
  57073. bottom: 81/986
  57074. }
  57075. },
  57076. fishnet: {
  57077. height: math.unit(2.4, "meters"),
  57078. weight: math.unit(270, "kg"),
  57079. name: "Fishnet",
  57080. image: {
  57081. source: "./media/characters/alice/fishnet.svg",
  57082. extra: 905/850,
  57083. bottom: 81/986
  57084. }
  57085. },
  57086. },
  57087. [
  57088. {
  57089. name: "Normal",
  57090. height: math.unit(2.4, "meters"),
  57091. default: true
  57092. },
  57093. ]
  57094. ))
  57095. characterMakers.push(() => makeCharacter(
  57096. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57097. {
  57098. front: {
  57099. height: math.unit(175.25, "feet"),
  57100. name: "Front",
  57101. image: {
  57102. source: "./media/characters/fio/front.svg",
  57103. extra: 1883/1591,
  57104. bottom: 34/1917
  57105. }
  57106. },
  57107. },
  57108. [
  57109. {
  57110. name: "Normal",
  57111. height: math.unit(175.25, "cm"),
  57112. default: true
  57113. },
  57114. ]
  57115. ))
  57116. characterMakers.push(() => makeCharacter(
  57117. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57118. {
  57119. side: {
  57120. height: math.unit(6, "meters"),
  57121. weight: math.unit(3400, "kg"),
  57122. preyCapacity: math.unit(1700, "liters"),
  57123. name: "Side",
  57124. image: {
  57125. source: "./media/characters/hass/side.svg",
  57126. extra: 1058/997,
  57127. bottom: 177/1235
  57128. }
  57129. },
  57130. feeding: {
  57131. height: math.unit(6*0.63, "meters"),
  57132. weight: math.unit(3400, "kg"),
  57133. preyCapacity: math.unit(1700, "liters"),
  57134. name: "Feeding",
  57135. image: {
  57136. source: "./media/characters/hass/feeding.svg",
  57137. extra: 689/579,
  57138. bottom: 146/835
  57139. }
  57140. },
  57141. guts: {
  57142. height: math.unit(6, "meters"),
  57143. weight: math.unit(3400, "kg"),
  57144. name: "Guts",
  57145. image: {
  57146. source: "./media/characters/hass/guts.svg",
  57147. extra: 1223/1198,
  57148. bottom: 182/1405
  57149. }
  57150. },
  57151. dickFront: {
  57152. height: math.unit(1.4, "meters"),
  57153. name: "Dick (Front)",
  57154. image: {
  57155. source: "./media/characters/hass/dick-front.svg"
  57156. }
  57157. },
  57158. dickSide: {
  57159. height: math.unit(1.3, "meters"),
  57160. name: "Dick (Side)",
  57161. image: {
  57162. source: "./media/characters/hass/dick-side.svg"
  57163. }
  57164. },
  57165. dickBack: {
  57166. height: math.unit(1.4, "meters"),
  57167. name: "Dick (Back)",
  57168. image: {
  57169. source: "./media/characters/hass/dick-back.svg"
  57170. }
  57171. },
  57172. },
  57173. [
  57174. {
  57175. name: "Normal",
  57176. height: math.unit(6, "meters"),
  57177. default: true
  57178. },
  57179. ]
  57180. ))
  57181. characterMakers.push(() => makeCharacter(
  57182. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57183. {
  57184. front: {
  57185. height: math.unit(4, "feet"),
  57186. weight: math.unit(60, "lb"),
  57187. name: "Front",
  57188. image: {
  57189. source: "./media/characters/hickory-finnegan/front.svg",
  57190. extra: 444/411,
  57191. bottom: 10/454
  57192. }
  57193. },
  57194. side: {
  57195. height: math.unit(4, "feet"),
  57196. weight: math.unit(60, "lb"),
  57197. name: "Side",
  57198. image: {
  57199. source: "./media/characters/hickory-finnegan/side.svg",
  57200. extra: 444/411,
  57201. bottom: 10/454
  57202. }
  57203. },
  57204. back: {
  57205. height: math.unit(4, "feet"),
  57206. weight: math.unit(60, "lb"),
  57207. name: "Back",
  57208. image: {
  57209. source: "./media/characters/hickory-finnegan/back.svg",
  57210. extra: 444/411,
  57211. bottom: 10/454
  57212. }
  57213. },
  57214. },
  57215. [
  57216. {
  57217. name: "Normal",
  57218. height: math.unit(4, "feet"),
  57219. default: true
  57220. },
  57221. ]
  57222. ))
  57223. characterMakers.push(() => makeCharacter(
  57224. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57225. {
  57226. snivy_front: {
  57227. height: math.unit(2, "feet"),
  57228. weight: math.unit(17.9, "lb"),
  57229. name: "Front",
  57230. image: {
  57231. source: "./media/characters/robin-phox/snivy-front.svg",
  57232. extra: 569/504,
  57233. bottom: 33/602
  57234. },
  57235. form: "snivy",
  57236. default: true
  57237. },
  57238. snivy_frontNsfw: {
  57239. height: math.unit(2, "feet"),
  57240. weight: math.unit(17.9, "lb"),
  57241. name: "Front (NSFW)",
  57242. image: {
  57243. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57244. extra: 569/504,
  57245. bottom: 33/602
  57246. },
  57247. form: "snivy",
  57248. },
  57249. snivy_back: {
  57250. height: math.unit(2, "feet"),
  57251. weight: math.unit(17.9, "lb"),
  57252. name: "Back",
  57253. image: {
  57254. source: "./media/characters/robin-phox/snivy-back.svg",
  57255. extra: 577/508,
  57256. bottom: 21/598
  57257. },
  57258. form: "snivy",
  57259. },
  57260. snivy_foot: {
  57261. height: math.unit(0.68, "feet"),
  57262. name: "Foot",
  57263. image: {
  57264. source: "./media/characters/robin-phox/snivy-foot.svg"
  57265. },
  57266. form: "snivy",
  57267. },
  57268. snivy_sole: {
  57269. height: math.unit(0.68, "feet"),
  57270. name: "Sole",
  57271. image: {
  57272. source: "./media/characters/robin-phox/snivy-sole.svg"
  57273. },
  57274. form: "snivy",
  57275. },
  57276. yoshi_front: {
  57277. height: math.unit(6, "feet"),
  57278. weight: math.unit(150, "lb"),
  57279. name: "Front",
  57280. image: {
  57281. source: "./media/characters/robin-phox/yoshi-front.svg",
  57282. extra: 890/792,
  57283. bottom: 29/919
  57284. },
  57285. form: "yoshi",
  57286. default: true
  57287. },
  57288. yoshi_frontNsfw: {
  57289. height: math.unit(6, "feet"),
  57290. weight: math.unit(150, "lb"),
  57291. name: "Front (NSFW)",
  57292. image: {
  57293. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57294. extra: 890/792,
  57295. bottom: 29/919
  57296. },
  57297. form: "yoshi",
  57298. },
  57299. yoshi_back: {
  57300. height: math.unit(6, "feet"),
  57301. weight: math.unit(150, "lb"),
  57302. name: "Back",
  57303. image: {
  57304. source: "./media/characters/robin-phox/yoshi-back.svg",
  57305. extra: 890/792,
  57306. bottom: 29/919
  57307. },
  57308. form: "yoshi",
  57309. },
  57310. yoshi_foot: {
  57311. height: math.unit(1.5, "feet"),
  57312. name: "Foot",
  57313. image: {
  57314. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57315. },
  57316. form: "yoshi",
  57317. },
  57318. delphox_front: {
  57319. height: math.unit(4 + 11/12, "feet"),
  57320. weight: math.unit(86, "lb"),
  57321. name: "Front",
  57322. image: {
  57323. source: "./media/characters/robin-phox/delphox-front.svg",
  57324. extra: 1266/1069,
  57325. bottom: 32/1298
  57326. },
  57327. form: "delphox",
  57328. default: true
  57329. },
  57330. delphox_frontNsfw: {
  57331. height: math.unit(4 + 11/12, "feet"),
  57332. weight: math.unit(86, "lb"),
  57333. name: "Front (NSFW)",
  57334. image: {
  57335. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57336. extra: 1266/1069,
  57337. bottom: 32/1298
  57338. },
  57339. form: "delphox",
  57340. },
  57341. delphox_back: {
  57342. height: math.unit(4 + 11/12, "feet"),
  57343. weight: math.unit(86, "lb"),
  57344. name: "Back",
  57345. image: {
  57346. source: "./media/characters/robin-phox/delphox-back.svg",
  57347. extra: 1269/1083,
  57348. bottom: 15/1284
  57349. },
  57350. form: "delphox",
  57351. },
  57352. mienshao_front: {
  57353. height: math.unit(4 + 7/12, "feet"),
  57354. weight: math.unit(78.3, "lb"),
  57355. name: "Front",
  57356. image: {
  57357. source: "./media/characters/robin-phox/mienshao-front.svg",
  57358. extra: 1052/970,
  57359. bottom: 108/1160
  57360. },
  57361. form: "mienshao",
  57362. default: true
  57363. },
  57364. mienshao_frontNsfw: {
  57365. height: math.unit(4 + 7/12, "feet"),
  57366. weight: math.unit(78.3, "lb"),
  57367. name: "Front (NSFW)",
  57368. image: {
  57369. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57370. extra: 1052/970,
  57371. bottom: 108/1160
  57372. },
  57373. form: "mienshao",
  57374. },
  57375. mienshao_back: {
  57376. height: math.unit(4 + 7/12, "feet"),
  57377. weight: math.unit(78.3, "lb"),
  57378. name: "Back",
  57379. image: {
  57380. source: "./media/characters/robin-phox/mienshao-back.svg",
  57381. extra: 1102/982,
  57382. bottom: 32/1134
  57383. },
  57384. form: "mienshao",
  57385. },
  57386. inteleon_front: {
  57387. height: math.unit(6 + 3/12, "feet"),
  57388. weight: math.unit(99.6, "lb"),
  57389. name: "Front",
  57390. image: {
  57391. source: "./media/characters/robin-phox/inteleon-front.svg",
  57392. extra: 910/799,
  57393. bottom: 76/986
  57394. },
  57395. form: "inteleon",
  57396. default: true
  57397. },
  57398. inteleon_frontNsfw: {
  57399. height: math.unit(6 + 3/12, "feet"),
  57400. weight: math.unit(99.6, "lb"),
  57401. name: "Front (NSFW)",
  57402. image: {
  57403. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57404. extra: 910/799,
  57405. bottom: 76/986
  57406. },
  57407. form: "inteleon",
  57408. },
  57409. inteleon_back: {
  57410. height: math.unit(6 + 3/12, "feet"),
  57411. weight: math.unit(99.6, "lb"),
  57412. name: "Back",
  57413. image: {
  57414. source: "./media/characters/robin-phox/inteleon-back.svg",
  57415. extra: 907/796,
  57416. bottom: 25/932
  57417. },
  57418. form: "inteleon",
  57419. },
  57420. reshiram_front: {
  57421. height: math.unit(10 + 6/12, "feet"),
  57422. weight: math.unit(727.5, "lb"),
  57423. name: "Front",
  57424. image: {
  57425. source: "./media/characters/robin-phox/reshiram-front.svg",
  57426. extra: 1198/940,
  57427. bottom: 123/1321
  57428. },
  57429. form: "reshiram",
  57430. },
  57431. reshiram_frontNsfw: {
  57432. height: math.unit(10 + 6/12, "feet"),
  57433. weight: math.unit(727.5, "lb"),
  57434. name: "Front-nsfw",
  57435. image: {
  57436. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57437. extra: 1198/940,
  57438. bottom: 123/1321
  57439. },
  57440. form: "reshiram",
  57441. },
  57442. reshiram_back: {
  57443. height: math.unit(10 + 6/12, "feet"),
  57444. weight: math.unit(727.5, "lb"),
  57445. name: "Back",
  57446. image: {
  57447. source: "./media/characters/robin-phox/reshiram-back.svg",
  57448. extra: 1024/904,
  57449. bottom: 85/1109
  57450. },
  57451. form: "reshiram",
  57452. },
  57453. samurott_front: {
  57454. height: math.unit(8, "feet"),
  57455. weight: math.unit(208.6, "lb"),
  57456. name: "Front",
  57457. image: {
  57458. source: "./media/characters/robin-phox/samurott-front.svg",
  57459. extra: 1048/984,
  57460. bottom: 100/1148
  57461. },
  57462. form: "samurott",
  57463. },
  57464. samurott_frontNsfw: {
  57465. height: math.unit(8, "feet"),
  57466. weight: math.unit(208.6, "lb"),
  57467. name: "Front-nsfw",
  57468. image: {
  57469. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57470. extra: 1048/984,
  57471. bottom: 100/1148
  57472. },
  57473. form: "samurott",
  57474. },
  57475. samurott_back: {
  57476. height: math.unit(8, "feet"),
  57477. weight: math.unit(208.6, "lb"),
  57478. name: "Back",
  57479. image: {
  57480. source: "./media/characters/robin-phox/samurott-back.svg",
  57481. extra: 1110/1042,
  57482. bottom: 12/1122
  57483. },
  57484. form: "samurott",
  57485. },
  57486. samurott_feral: {
  57487. height: math.unit(4 + 11/12, "feet"),
  57488. weight: math.unit(208.6, "lb"),
  57489. name: "Feral",
  57490. image: {
  57491. source: "./media/characters/robin-phox/samurott-feral.svg",
  57492. extra: 766/681,
  57493. bottom: 108/874
  57494. },
  57495. form: "samurott",
  57496. },
  57497. },
  57498. [
  57499. {
  57500. name: "Normal",
  57501. height: math.unit(2, "feet"),
  57502. default: true,
  57503. form: "snivy"
  57504. },
  57505. {
  57506. name: "Normal",
  57507. height: math.unit(6, "feet"),
  57508. default: true,
  57509. form: "yoshi"
  57510. },
  57511. {
  57512. name: "Normal",
  57513. height: math.unit(4 + 11/12, "feet"),
  57514. default: true,
  57515. form: "delphox"
  57516. },
  57517. {
  57518. name: "Normal",
  57519. height: math.unit(4 + 7/12, "feet"),
  57520. default: true,
  57521. form: "mienshao"
  57522. },
  57523. {
  57524. name: "Normal",
  57525. height: math.unit(6 + 3/12, "feet"),
  57526. default: true,
  57527. form: "inteleon"
  57528. },
  57529. {
  57530. name: "Normal",
  57531. height: math.unit(10 + 6/12, "feet"),
  57532. default: true,
  57533. form: "reshiram"
  57534. },
  57535. {
  57536. name: "Normal",
  57537. height: math.unit(8, "feet"),
  57538. default: true,
  57539. form: "samurott"
  57540. },
  57541. {
  57542. name: "Macro",
  57543. height: math.unit(500, "feet"),
  57544. allForms: true
  57545. },
  57546. {
  57547. name: "Mega Macro",
  57548. height: math.unit(10, "earths"),
  57549. allForms: true
  57550. },
  57551. {
  57552. name: "Giga Macro",
  57553. height: math.unit(1, "galaxy"),
  57554. allForms: true
  57555. },
  57556. {
  57557. name: "Godly Macro",
  57558. height: math.unit(1e10, "multiverses"),
  57559. allForms: true
  57560. },
  57561. ],
  57562. {
  57563. "snivy": {
  57564. name: "Snivy",
  57565. default: true
  57566. },
  57567. "yoshi": {
  57568. name: "Yoshi",
  57569. },
  57570. "delphox": {
  57571. name: "Delphox",
  57572. },
  57573. "mienshao": {
  57574. name: "Mienshao",
  57575. },
  57576. "inteleon": {
  57577. name: "Inteleon",
  57578. },
  57579. "reshiram": {
  57580. name: "Reshiram",
  57581. },
  57582. "samurott": {
  57583. name: "Samurott",
  57584. },
  57585. }
  57586. ))
  57587. characterMakers.push(() => makeCharacter(
  57588. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57589. {
  57590. front: {
  57591. height: math.unit(4, "feet"),
  57592. name: "Front",
  57593. image: {
  57594. source: "./media/characters/ash-leung/front.svg",
  57595. extra: 1916/1792,
  57596. bottom: 50/1966
  57597. }
  57598. },
  57599. },
  57600. [
  57601. {
  57602. name: "Atomic",
  57603. height: math.unit(1, "angstrom")
  57604. },
  57605. {
  57606. name: "Microscopic",
  57607. height: math.unit(4000, "angstroms")
  57608. },
  57609. {
  57610. name: "Speck",
  57611. height: math.unit(1, "mm")
  57612. },
  57613. {
  57614. name: "Small",
  57615. height: math.unit(1, "inch")
  57616. },
  57617. {
  57618. name: "Normal",
  57619. height: math.unit(4, "feet"),
  57620. default: true
  57621. },
  57622. ]
  57623. ))
  57624. characterMakers.push(() => makeCharacter(
  57625. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57626. {
  57627. frontDressed: {
  57628. height: math.unit(2.08, "meters"),
  57629. weight: math.unit(175, "lb"),
  57630. name: "Front (Dressed)",
  57631. image: {
  57632. source: "./media/characters/carie/front-dressed.svg",
  57633. extra: 456/417,
  57634. bottom: 7/463
  57635. }
  57636. },
  57637. backDressed: {
  57638. height: math.unit(2.08, "meters"),
  57639. weight: math.unit(175, "lb"),
  57640. name: "Back (Dressed)",
  57641. image: {
  57642. source: "./media/characters/carie/back-dressed.svg",
  57643. extra: 455/414,
  57644. bottom: 11/466
  57645. }
  57646. },
  57647. front: {
  57648. height: math.unit(2, "meters"),
  57649. weight: math.unit(175, "lb"),
  57650. name: "Front",
  57651. image: {
  57652. source: "./media/characters/carie/front.svg",
  57653. extra: 438/399,
  57654. bottom: 12/450
  57655. }
  57656. },
  57657. back: {
  57658. height: math.unit(2, "meters"),
  57659. weight: math.unit(175, "lb"),
  57660. name: "Back",
  57661. image: {
  57662. source: "./media/characters/carie/back.svg",
  57663. extra: 438/397,
  57664. bottom: 7/445
  57665. }
  57666. },
  57667. },
  57668. [
  57669. {
  57670. name: "Normal",
  57671. height: math.unit(2.08, "meters"),
  57672. default: true
  57673. },
  57674. {
  57675. name: "Macro",
  57676. height: math.unit(2.08e3, "meters")
  57677. },
  57678. {
  57679. name: "Mega Macro",
  57680. height: math.unit(2.08e6, "meters")
  57681. },
  57682. {
  57683. name: "Giga Macro",
  57684. height: math.unit(2.08e9, "meters")
  57685. },
  57686. {
  57687. name: "Tera Macro",
  57688. height: math.unit(2.08e12, "meters")
  57689. },
  57690. {
  57691. name: "Peta Macro",
  57692. height: math.unit(2.08e15, "meters")
  57693. },
  57694. {
  57695. name: "Exa Macro",
  57696. height: math.unit(2.08e18, "meters")
  57697. },
  57698. {
  57699. name: "Zetta Macro",
  57700. height: math.unit(2.08e21, "meters")
  57701. },
  57702. {
  57703. name: "Yotta Macro",
  57704. height: math.unit(2.08e24, "meters")
  57705. },
  57706. ]
  57707. ))
  57708. characterMakers.push(() => makeCharacter(
  57709. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57710. {
  57711. front: {
  57712. height: math.unit(5 + 2/12, "feet"),
  57713. weight: math.unit(120, "lb"),
  57714. name: "Front",
  57715. image: {
  57716. source: "./media/characters/sai-bree/front.svg",
  57717. extra: 1843/1702,
  57718. bottom: 91/1934
  57719. }
  57720. },
  57721. back: {
  57722. height: math.unit(5 + 2/12, "feet"),
  57723. weight: math.unit(120, "lb"),
  57724. name: "Back",
  57725. image: {
  57726. source: "./media/characters/sai-bree/back.svg",
  57727. extra: 1809/1637,
  57728. bottom: 56/1865
  57729. }
  57730. },
  57731. },
  57732. [
  57733. {
  57734. name: "Normal",
  57735. height: math.unit(5 + 2/12, "feet"),
  57736. default: true
  57737. },
  57738. {
  57739. name: "Macro",
  57740. height: math.unit(500, "feet")
  57741. },
  57742. ]
  57743. ))
  57744. characterMakers.push(() => makeCharacter(
  57745. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57746. {
  57747. side: {
  57748. height: math.unit(0.77, "meters"),
  57749. weight: math.unit(120, "lb"),
  57750. name: "Side",
  57751. image: {
  57752. source: "./media/characters/davwyn/side.svg",
  57753. extra: 1557/1225,
  57754. bottom: 131/1688
  57755. }
  57756. },
  57757. front: {
  57758. height: math.unit(0.835410, "meters"),
  57759. weight: math.unit(120, "lb"),
  57760. name: "Front",
  57761. image: {
  57762. source: "./media/characters/davwyn/front.svg",
  57763. extra: 870/843,
  57764. bottom: 175/1045
  57765. }
  57766. },
  57767. },
  57768. [
  57769. {
  57770. name: "Minidrake",
  57771. height: math.unit(0.77/4, "meters")
  57772. },
  57773. {
  57774. name: "Normal",
  57775. height: math.unit(0.77, "meters"),
  57776. default: true
  57777. },
  57778. ]
  57779. ))
  57780. characterMakers.push(() => makeCharacter(
  57781. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57782. {
  57783. front: {
  57784. height: math.unit(10 + 3/12, "feet"),
  57785. weight: math.unit(2857, "lb"),
  57786. name: "Front",
  57787. image: {
  57788. source: "./media/characters/balans/front.svg",
  57789. extra: 427/402,
  57790. bottom: 26/453
  57791. }
  57792. },
  57793. side: {
  57794. height: math.unit(10 + 3/12, "feet"),
  57795. weight: math.unit(2857, "lb"),
  57796. name: "Side",
  57797. image: {
  57798. source: "./media/characters/balans/side.svg",
  57799. extra: 397/371,
  57800. bottom: 17/414
  57801. }
  57802. },
  57803. back: {
  57804. height: math.unit(10 + 3/12, "feet"),
  57805. weight: math.unit(2857, "lb"),
  57806. name: "Back",
  57807. image: {
  57808. source: "./media/characters/balans/back.svg",
  57809. extra: 408/381,
  57810. bottom: 14/422
  57811. }
  57812. },
  57813. hand: {
  57814. height: math.unit(1.15, "feet"),
  57815. name: "Hand",
  57816. image: {
  57817. source: "./media/characters/balans/hand.svg"
  57818. }
  57819. },
  57820. footRest: {
  57821. height: math.unit(3.1, "feet"),
  57822. name: "Foot (Rest)",
  57823. image: {
  57824. source: "./media/characters/balans/foot-rest.svg"
  57825. }
  57826. },
  57827. footActive: {
  57828. height: math.unit(3.5, "feet"),
  57829. name: "Foot (Active)",
  57830. image: {
  57831. source: "./media/characters/balans/foot-active.svg"
  57832. }
  57833. },
  57834. },
  57835. [
  57836. {
  57837. name: "Normal",
  57838. height: math.unit(10 + 3/12, "feet"),
  57839. default: true
  57840. },
  57841. ]
  57842. ))
  57843. characterMakers.push(() => makeCharacter(
  57844. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57845. {
  57846. side: {
  57847. height: math.unit(9, "meters"),
  57848. weight: math.unit(114, "tonnes"),
  57849. name: "Side",
  57850. image: {
  57851. source: "./media/characters/eldkveikir/side.svg",
  57852. extra: 1927/338,
  57853. bottom: 42/1969
  57854. }
  57855. },
  57856. sitting: {
  57857. height: math.unit(13.4, "meters"),
  57858. weight: math.unit(114, "tonnes"),
  57859. name: "Sitting",
  57860. image: {
  57861. source: "./media/characters/eldkveikir/sitting.svg",
  57862. extra: 1108/963,
  57863. bottom: 610/1718
  57864. }
  57865. },
  57866. maw: {
  57867. height: math.unit(8.36, "meters"),
  57868. name: "Maw",
  57869. image: {
  57870. source: "./media/characters/eldkveikir/maw.svg"
  57871. }
  57872. },
  57873. hand: {
  57874. height: math.unit(4.84, "meters"),
  57875. name: "Hand",
  57876. image: {
  57877. source: "./media/characters/eldkveikir/hand.svg"
  57878. }
  57879. },
  57880. foot: {
  57881. height: math.unit(6.9, "meters"),
  57882. name: "Foot",
  57883. image: {
  57884. source: "./media/characters/eldkveikir/foot.svg"
  57885. }
  57886. },
  57887. genitals: {
  57888. height: math.unit(9.6, "meters"),
  57889. name: "Genitals",
  57890. image: {
  57891. source: "./media/characters/eldkveikir/genitals.svg"
  57892. }
  57893. },
  57894. },
  57895. [
  57896. {
  57897. name: "Normal",
  57898. height: math.unit(9, "meters"),
  57899. default: true
  57900. },
  57901. ]
  57902. ))
  57903. characterMakers.push(() => makeCharacter(
  57904. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57905. {
  57906. front: {
  57907. height: math.unit(14, "feet"),
  57908. weight: math.unit(4100, "lb"),
  57909. name: "Front",
  57910. image: {
  57911. source: "./media/characters/arrow/front.svg",
  57912. extra: 330/318,
  57913. bottom: 56/386
  57914. }
  57915. },
  57916. },
  57917. [
  57918. {
  57919. name: "Normal",
  57920. height: math.unit(14, "feet"),
  57921. default: true
  57922. },
  57923. {
  57924. name: "Minimacro",
  57925. height: math.unit(63, "feet")
  57926. },
  57927. {
  57928. name: "Macro",
  57929. height: math.unit(630, "feet")
  57930. },
  57931. {
  57932. name: "Megamacro",
  57933. height: math.unit(12600, "feet")
  57934. },
  57935. {
  57936. name: "Gigamacro",
  57937. height: math.unit(18000, "miles")
  57938. },
  57939. ]
  57940. ))
  57941. characterMakers.push(() => makeCharacter(
  57942. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57943. {
  57944. front: {
  57945. height: math.unit(10, "feet"),
  57946. weight: math.unit(2.4, "tons"),
  57947. name: "Front",
  57948. image: {
  57949. source: "./media/characters/3yk-k0-unit/front.svg",
  57950. extra: 573/561,
  57951. bottom: 33/606
  57952. }
  57953. },
  57954. back: {
  57955. height: math.unit(10, "feet"),
  57956. weight: math.unit(2.4, "tons"),
  57957. name: "Back",
  57958. image: {
  57959. source: "./media/characters/3yk-k0-unit/back.svg",
  57960. extra: 614/573,
  57961. bottom: 32/646
  57962. }
  57963. },
  57964. maw: {
  57965. height: math.unit(2.15, "feet"),
  57966. name: "Maw",
  57967. image: {
  57968. source: "./media/characters/3yk-k0-unit/maw.svg"
  57969. }
  57970. },
  57971. },
  57972. [
  57973. {
  57974. name: "Normal",
  57975. height: math.unit(10, "feet"),
  57976. default: true
  57977. },
  57978. ]
  57979. ))
  57980. characterMakers.push(() => makeCharacter(
  57981. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57982. {
  57983. front: {
  57984. height: math.unit(8 + 8/12, "feet"),
  57985. name: "Front",
  57986. image: {
  57987. source: "./media/characters/nemo/front.svg",
  57988. extra: 1308/1217,
  57989. bottom: 57/1365
  57990. }
  57991. },
  57992. },
  57993. [
  57994. {
  57995. name: "Normal",
  57996. height: math.unit(8 + 8/12, "feet"),
  57997. default: true
  57998. },
  57999. ]
  58000. ))
  58001. characterMakers.push(() => makeCharacter(
  58002. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58003. {
  58004. front: {
  58005. height: math.unit(8, "feet"),
  58006. weight: math.unit(760, "lb"),
  58007. name: "Front",
  58008. image: {
  58009. source: "./media/characters/rexx/front.svg",
  58010. extra: 786/750,
  58011. bottom: 17/803
  58012. },
  58013. extraAttributes: {
  58014. "pawLength": {
  58015. name: "Paw Length",
  58016. power: 1,
  58017. type: "length",
  58018. base: math.unit(27, "inches")
  58019. },
  58020. }
  58021. },
  58022. },
  58023. [
  58024. {
  58025. name: "Micro",
  58026. height: math.unit(2, "inches")
  58027. },
  58028. {
  58029. name: "Normal",
  58030. height: math.unit(8, "feet"),
  58031. default: true
  58032. },
  58033. {
  58034. name: "Macro",
  58035. height: math.unit(150, "feet")
  58036. },
  58037. ]
  58038. ))
  58039. characterMakers.push(() => makeCharacter(
  58040. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58041. {
  58042. front: {
  58043. height: math.unit(18, "feet"),
  58044. weight: math.unit(1975, "lb"),
  58045. name: "Front",
  58046. image: {
  58047. source: "./media/characters/draco/front.svg",
  58048. extra: 1325/1241,
  58049. bottom: 83/1408
  58050. }
  58051. },
  58052. back: {
  58053. height: math.unit(18, "feet"),
  58054. weight: math.unit(1975, "lb"),
  58055. name: "Back",
  58056. image: {
  58057. source: "./media/characters/draco/back.svg",
  58058. extra: 1332/1250,
  58059. bottom: 43/1375
  58060. }
  58061. },
  58062. dick: {
  58063. height: math.unit(7.5, "feet"),
  58064. name: "Dick",
  58065. image: {
  58066. source: "./media/characters/draco/dick.svg"
  58067. }
  58068. },
  58069. },
  58070. [
  58071. {
  58072. name: "Normal",
  58073. height: math.unit(18, "feet"),
  58074. default: true
  58075. },
  58076. ]
  58077. ))
  58078. characterMakers.push(() => makeCharacter(
  58079. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58080. {
  58081. front: {
  58082. height: math.unit(3.2, "meters"),
  58083. name: "Front",
  58084. image: {
  58085. source: "./media/characters/harriett/front.svg",
  58086. extra: 1966/1915,
  58087. bottom: 9/1975
  58088. }
  58089. },
  58090. },
  58091. [
  58092. {
  58093. name: "Normal",
  58094. height: math.unit(3.2, "meters"),
  58095. default: true
  58096. },
  58097. ]
  58098. ))
  58099. characterMakers.push(() => makeCharacter(
  58100. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58101. {
  58102. sitting: {
  58103. height: math.unit(0.8, "meter"),
  58104. name: "Sitting",
  58105. image: {
  58106. source: "./media/characters/serpentus/sitting.svg",
  58107. extra: 293/290,
  58108. bottom: 140/433
  58109. }
  58110. },
  58111. },
  58112. [
  58113. {
  58114. name: "Normal",
  58115. height: math.unit(0.8, "meter"),
  58116. default: true
  58117. },
  58118. ]
  58119. ))
  58120. characterMakers.push(() => makeCharacter(
  58121. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58122. {
  58123. front: {
  58124. height: math.unit(5.7174385736, "feet"),
  58125. name: "Front",
  58126. image: {
  58127. source: "./media/characters/nova-polecat/front.svg",
  58128. extra: 1317/1216,
  58129. bottom: 92/1409
  58130. }
  58131. },
  58132. },
  58133. [
  58134. {
  58135. name: "Normal",
  58136. height: math.unit(5.7174385736, "feet"),
  58137. default: true
  58138. },
  58139. ]
  58140. ))
  58141. characterMakers.push(() => makeCharacter(
  58142. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58143. {
  58144. front: {
  58145. height: math.unit(5 + 4/12, "feet"),
  58146. weight: math.unit(250, "lb"),
  58147. name: "Front",
  58148. image: {
  58149. source: "./media/characters/mook/front.svg",
  58150. extra: 1088/1037,
  58151. bottom: 132/1220
  58152. }
  58153. },
  58154. back: {
  58155. height: math.unit(5 + 1/12, "feet"),
  58156. weight: math.unit(250, "lb"),
  58157. name: "Back",
  58158. image: {
  58159. source: "./media/characters/mook/back.svg",
  58160. extra: 1184/905,
  58161. bottom: 96/1280
  58162. }
  58163. },
  58164. head: {
  58165. height: math.unit(1.85, "feet"),
  58166. name: "Head",
  58167. image: {
  58168. source: "./media/characters/mook/head.svg"
  58169. }
  58170. },
  58171. hand: {
  58172. height: math.unit(1.9, "feet"),
  58173. name: "Hand",
  58174. image: {
  58175. source: "./media/characters/mook/hand.svg"
  58176. }
  58177. },
  58178. palm: {
  58179. height: math.unit(1.84, "feet"),
  58180. name: "Palm",
  58181. image: {
  58182. source: "./media/characters/mook/palm.svg"
  58183. }
  58184. },
  58185. foot: {
  58186. height: math.unit(1.44, "feet"),
  58187. name: "Foot",
  58188. image: {
  58189. source: "./media/characters/mook/foot.svg"
  58190. }
  58191. },
  58192. sole: {
  58193. height: math.unit(1.44, "feet"),
  58194. name: "Sole",
  58195. image: {
  58196. source: "./media/characters/mook/sole.svg"
  58197. }
  58198. },
  58199. },
  58200. [
  58201. {
  58202. name: "Normal",
  58203. height: math.unit(5 + 4/12, "feet"),
  58204. default: true
  58205. },
  58206. {
  58207. name: "Big",
  58208. height: math.unit(12, "feet")
  58209. },
  58210. ]
  58211. ))
  58212. characterMakers.push(() => makeCharacter(
  58213. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58214. {
  58215. front: {
  58216. height: math.unit(6 + 10/12, "feet"),
  58217. weight: math.unit(233, "lb"),
  58218. name: "Front",
  58219. image: {
  58220. source: "./media/characters/kayla/front.svg",
  58221. extra: 1850/1775,
  58222. bottom: 65/1915
  58223. }
  58224. },
  58225. },
  58226. [
  58227. {
  58228. name: "Normal",
  58229. height: math.unit(6 + 10/12, "feet"),
  58230. default: true
  58231. },
  58232. {
  58233. name: "Amazonian",
  58234. height: math.unit(12 + 5/12, "feet")
  58235. },
  58236. {
  58237. name: "Mini Giantess",
  58238. height: math.unit(26, "feet")
  58239. },
  58240. {
  58241. name: "Giantess",
  58242. height: math.unit(200, "feet")
  58243. },
  58244. {
  58245. name: "Mega Giantess",
  58246. height: math.unit(2500, "feet")
  58247. },
  58248. {
  58249. name: "City Sized",
  58250. height: math.unit(50, "miles")
  58251. },
  58252. {
  58253. name: "Country Sized",
  58254. height: math.unit(500, "miles")
  58255. },
  58256. {
  58257. name: "Continent Sized",
  58258. height: math.unit(2500, "miles")
  58259. },
  58260. {
  58261. name: "Planet Sized",
  58262. height: math.unit(10000, "miles")
  58263. },
  58264. {
  58265. name: "Star Sized",
  58266. height: math.unit(5e6, "miles")
  58267. },
  58268. {
  58269. name: "Solar System Sized",
  58270. height: math.unit(125, "AU")
  58271. },
  58272. {
  58273. name: "Galaxy Sized",
  58274. height: math.unit(300e3, "lightyears")
  58275. },
  58276. {
  58277. name: "Universe Sized",
  58278. height: math.unit(200e9, "lightyears")
  58279. },
  58280. {
  58281. name: "Multiverse Sized",
  58282. height: math.unit(20, "exauniverses")
  58283. },
  58284. {
  58285. name: "Mother of Existence",
  58286. height: math.unit(1e6, "yottauniverses")
  58287. },
  58288. ]
  58289. ))
  58290. characterMakers.push(() => makeCharacter(
  58291. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58292. {
  58293. side: {
  58294. height: math.unit(9.5, "meters"),
  58295. name: "Side",
  58296. image: {
  58297. source: "./media/characters/kulve-ragnarok/side.svg",
  58298. extra: 364/326,
  58299. bottom: 50/414
  58300. }
  58301. },
  58302. },
  58303. [
  58304. {
  58305. name: "Normal",
  58306. height: math.unit(9.5, "meters"),
  58307. default: true
  58308. },
  58309. ]
  58310. ))
  58311. characterMakers.push(() => makeCharacter(
  58312. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58313. {
  58314. front: {
  58315. height: math.unit(8 + 9/12, "feet"),
  58316. name: "Front",
  58317. image: {
  58318. source: "./media/characters/atlas-goat/front.svg",
  58319. extra: 1462/1323,
  58320. bottom: 12/1474
  58321. }
  58322. },
  58323. },
  58324. [
  58325. {
  58326. name: "Normal",
  58327. height: math.unit(8 + 9/12, "feet"),
  58328. default: true
  58329. },
  58330. {
  58331. name: "Skyline",
  58332. height: math.unit(845, "feet")
  58333. },
  58334. {
  58335. name: "Orbital",
  58336. height: math.unit(93000, "miles")
  58337. },
  58338. {
  58339. name: "Constellation",
  58340. height: math.unit(27000, "lightyears")
  58341. },
  58342. ]
  58343. ))
  58344. characterMakers.push(() => makeCharacter(
  58345. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58346. {
  58347. side: {
  58348. height: math.unit(1.8, "meters"),
  58349. weight: math.unit(120, "kg"),
  58350. name: "Side",
  58351. image: {
  58352. source: "./media/characters/xie-ling/side.svg",
  58353. extra: 646/574,
  58354. bottom: 44/690
  58355. }
  58356. },
  58357. },
  58358. [
  58359. {
  58360. name: "Tiny",
  58361. height: math.unit(1.80, "meters")
  58362. },
  58363. {
  58364. name: "Small",
  58365. height: math.unit(6, "meters")
  58366. },
  58367. {
  58368. name: "Medium",
  58369. height: math.unit(15, "meters")
  58370. },
  58371. {
  58372. name: "Normal",
  58373. height: math.unit(30, "meters"),
  58374. default: true
  58375. },
  58376. {
  58377. name: "Above Normal",
  58378. height: math.unit(60, "meters")
  58379. },
  58380. {
  58381. name: "Big",
  58382. height: math.unit(220, "meters")
  58383. },
  58384. {
  58385. name: "Giant",
  58386. height: math.unit(2.2, "km")
  58387. },
  58388. {
  58389. name: "Macro",
  58390. height: math.unit(25, "km")
  58391. },
  58392. {
  58393. name: "Mega Macro",
  58394. height: math.unit(350, "km")
  58395. },
  58396. {
  58397. name: "Mega Macro+",
  58398. height: math.unit(5000, "km")
  58399. },
  58400. {
  58401. name: "Goddess",
  58402. height: math.unit(3, "multiverses")
  58403. },
  58404. ]
  58405. ))
  58406. characterMakers.push(() => makeCharacter(
  58407. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58408. {
  58409. frontSfw: {
  58410. height: math.unit(5 + 11/12, "feet"),
  58411. weight: math.unit(210, "lb"),
  58412. name: "Front",
  58413. image: {
  58414. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58415. extra: 1928/1821,
  58416. bottom: 45/1973
  58417. }
  58418. },
  58419. backSfw: {
  58420. height: math.unit(5 + 11/12, "feet"),
  58421. weight: math.unit(210, "lb"),
  58422. name: "Back",
  58423. image: {
  58424. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58425. extra: 1920/1813,
  58426. bottom: 34/1954
  58427. }
  58428. },
  58429. frontNsfw: {
  58430. height: math.unit(5 + 11/12, "feet"),
  58431. weight: math.unit(210, "lb"),
  58432. name: "Front (NSFW)",
  58433. image: {
  58434. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58435. extra: 1928/1821,
  58436. bottom: 45/1973
  58437. }
  58438. },
  58439. backNsfw: {
  58440. height: math.unit(5 + 11/12, "feet"),
  58441. weight: math.unit(210, "lb"),
  58442. name: "Back (NSFW)",
  58443. image: {
  58444. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58445. extra: 1920/1813,
  58446. bottom: 34/1954
  58447. }
  58448. },
  58449. },
  58450. [
  58451. {
  58452. name: "Normal",
  58453. height: math.unit(5 + 11/12, "feet"),
  58454. default: true
  58455. },
  58456. {
  58457. name: "Goddess",
  58458. height: math.unit(20 + 3/12, "feet")
  58459. },
  58460. {
  58461. name: "Breaker of Man",
  58462. height: math.unit(329 + 9/12, "feet")
  58463. },
  58464. {
  58465. name: "Solar Justice",
  58466. height: math.unit(0.6, "solarradii")
  58467. },
  58468. {
  58469. name: "She Who Judges",
  58470. height: math.unit(1, "universe")
  58471. },
  58472. ]
  58473. ))
  58474. characterMakers.push(() => makeCharacter(
  58475. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58476. {
  58477. casual_front: {
  58478. height: math.unit(6 + 1/12, "feet"),
  58479. weight: math.unit(190, "lb"),
  58480. preyCapacity: math.unit(1, "people"),
  58481. name: "Front",
  58482. image: {
  58483. source: "./media/characters/managarmr/casual-front.svg",
  58484. extra: 411/381,
  58485. bottom: 15/426
  58486. },
  58487. extraAttributes: {
  58488. "pawSize": {
  58489. name: "Paw Size",
  58490. power: 1,
  58491. type: "length",
  58492. base: math.unit(0.2, "meters")
  58493. },
  58494. },
  58495. form: "casual",
  58496. },
  58497. casual_back: {
  58498. height: math.unit(6 + 1/12, "feet"),
  58499. weight: math.unit(190, "lb"),
  58500. preyCapacity: math.unit(1, "people"),
  58501. name: "Back",
  58502. image: {
  58503. source: "./media/characters/managarmr/casual-back.svg",
  58504. extra: 413/383,
  58505. bottom: 13/426
  58506. },
  58507. extraAttributes: {
  58508. "pawSize": {
  58509. name: "Paw Size",
  58510. power: 1,
  58511. type: "length",
  58512. base: math.unit(0.2, "meters")
  58513. },
  58514. },
  58515. form: "casual",
  58516. },
  58517. base_front: {
  58518. height: math.unit(7, "feet"),
  58519. weight: math.unit(210, "lb"),
  58520. preyCapacity: math.unit(2, "people"),
  58521. name: "Front",
  58522. image: {
  58523. source: "./media/characters/managarmr/base-front.svg",
  58524. extra: 580/485,
  58525. bottom: 32/612
  58526. },
  58527. extraAttributes: {
  58528. "wingspan": {
  58529. name: "Wingspan",
  58530. power: 1,
  58531. type: "length",
  58532. base: math.unit(4, "meters")
  58533. },
  58534. "pawSize": {
  58535. name: "Paw Size",
  58536. power: 1,
  58537. type: "length",
  58538. base: math.unit(0.2, "meters")
  58539. },
  58540. },
  58541. form: "base",
  58542. },
  58543. "true-divine_front": {
  58544. height: math.unit(40, "feet"),
  58545. weight: math.unit(39000, "lb"),
  58546. preyCapacity: math.unit(375, "people"),
  58547. name: "Front",
  58548. image: {
  58549. source: "./media/characters/managarmr/true-divine-front.svg",
  58550. extra: 725/573,
  58551. bottom: 120/845
  58552. },
  58553. extraAttributes: {
  58554. "wingspan": {
  58555. name: "Wingspan",
  58556. power: 1,
  58557. type: "length",
  58558. base: math.unit(20, "meters")
  58559. },
  58560. "pawSize": {
  58561. name: "Paw Size",
  58562. power: 1,
  58563. type: "length",
  58564. base: math.unit(1.5, "meters")
  58565. },
  58566. },
  58567. form: "true-divine",
  58568. },
  58569. },
  58570. [
  58571. {
  58572. name: "Normal",
  58573. height: math.unit(6 + 1/12, "feet"),
  58574. form: "casual",
  58575. default: true
  58576. },
  58577. {
  58578. name: "Normal",
  58579. height: math.unit(7, "feet"),
  58580. form: "base",
  58581. default: true
  58582. },
  58583. ],
  58584. {
  58585. "casual": {
  58586. name: "Casual",
  58587. default: true
  58588. },
  58589. "base": {
  58590. name: "Base",
  58591. },
  58592. "true-divine": {
  58593. name: "True Divine",
  58594. },
  58595. }
  58596. ))
  58597. characterMakers.push(() => makeCharacter(
  58598. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58599. {
  58600. front: {
  58601. height: math.unit(1.8, "meters"),
  58602. weight: math.unit(110, "kg"),
  58603. name: "Front",
  58604. image: {
  58605. source: "./media/characters/mystra/front.svg",
  58606. extra: 529/442,
  58607. bottom: 31/560
  58608. }
  58609. },
  58610. frontLewd: {
  58611. height: math.unit(1.8, "meters"),
  58612. weight: math.unit(110, "kg"),
  58613. name: "Front (Lewd)",
  58614. image: {
  58615. source: "./media/characters/mystra/front-lewd.svg",
  58616. extra: 529/442,
  58617. bottom: 31/560
  58618. }
  58619. },
  58620. head: {
  58621. height: math.unit(1.63, "feet"),
  58622. name: "Head",
  58623. image: {
  58624. source: "./media/characters/mystra/head.svg"
  58625. }
  58626. },
  58627. paw: {
  58628. height: math.unit(1.9, "feet"),
  58629. name: "Paw",
  58630. image: {
  58631. source: "./media/characters/mystra/paw.svg"
  58632. }
  58633. },
  58634. },
  58635. [
  58636. {
  58637. name: "Incognito",
  58638. height: math.unit(2.3, "meters")
  58639. },
  58640. {
  58641. name: "Small Macro",
  58642. height: math.unit(300, "meters")
  58643. },
  58644. {
  58645. name: "Small Mega",
  58646. height: math.unit(2, "km")
  58647. },
  58648. {
  58649. name: "Mega",
  58650. height: math.unit(30, "km")
  58651. },
  58652. {
  58653. name: "Small Giga",
  58654. height: math.unit(100, "km")
  58655. },
  58656. {
  58657. name: "Giga",
  58658. height: math.unit(1000, "km"),
  58659. default: true
  58660. },
  58661. {
  58662. name: "Continental",
  58663. height: math.unit(5000, "km")
  58664. },
  58665. {
  58666. name: "Terra",
  58667. height: math.unit(20000, "km")
  58668. },
  58669. {
  58670. name: "Solar",
  58671. height: math.unit(2e6, "km")
  58672. },
  58673. {
  58674. name: "Galactic",
  58675. height: math.unit(528502, "lightyears")
  58676. },
  58677. {
  58678. name: "Universal",
  58679. height: math.unit(20, "universes")
  58680. },
  58681. ]
  58682. ))
  58683. characterMakers.push(() => makeCharacter(
  58684. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58685. {
  58686. front: {
  58687. height: math.unit(2, "meters"),
  58688. weight: math.unit(140, "kg"),
  58689. name: "Front",
  58690. image: {
  58691. source: "./media/characters/caleb/front.svg",
  58692. extra: 873/817,
  58693. bottom: 47/920
  58694. }
  58695. },
  58696. back: {
  58697. height: math.unit(2, "meters"),
  58698. weight: math.unit(140, "kg"),
  58699. name: "Back",
  58700. image: {
  58701. source: "./media/characters/caleb/back.svg",
  58702. extra: 877/828,
  58703. bottom: 24/901
  58704. }
  58705. },
  58706. snakeTail: {
  58707. height: math.unit(1.44, "feet"),
  58708. name: "Snake Tail",
  58709. image: {
  58710. source: "./media/characters/caleb/snake-tail.svg"
  58711. }
  58712. },
  58713. dick: {
  58714. height: math.unit(2.6, "feet"),
  58715. name: "Dick",
  58716. image: {
  58717. source: "./media/characters/caleb/dick.svg"
  58718. }
  58719. },
  58720. },
  58721. [
  58722. {
  58723. name: "Incognito",
  58724. height: math.unit(3, "meters")
  58725. },
  58726. {
  58727. name: "Home Size",
  58728. height: math.unit(200, "meters"),
  58729. default: true
  58730. },
  58731. {
  58732. name: "Macro",
  58733. height: math.unit(500, "meters")
  58734. },
  58735. {
  58736. name: "Big Macro",
  58737. height: math.unit(5, "km")
  58738. },
  58739. {
  58740. name: "Giga",
  58741. height: math.unit(250, "km")
  58742. },
  58743. {
  58744. name: "Giga+",
  58745. height: math.unit(5000, "km")
  58746. },
  58747. {
  58748. name: "Small Terra",
  58749. height: math.unit(35e3, "km")
  58750. },
  58751. {
  58752. name: "Terra",
  58753. height: math.unit(2e6, "km")
  58754. },
  58755. {
  58756. name: "Terra+",
  58757. height: math.unit(1.5e6, "km")
  58758. },
  58759. ]
  58760. ))
  58761. characterMakers.push(() => makeCharacter(
  58762. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58763. {
  58764. front: {
  58765. height: math.unit(2, "meters"),
  58766. weight: math.unit(120, "kg"),
  58767. name: "Front",
  58768. image: {
  58769. source: "./media/characters/gilirian/front.svg",
  58770. extra: 805/737,
  58771. bottom: 13/818
  58772. }
  58773. },
  58774. side: {
  58775. height: math.unit(2, "meters"),
  58776. weight: math.unit(120, "kg"),
  58777. name: "Side",
  58778. image: {
  58779. source: "./media/characters/gilirian/side.svg",
  58780. extra: 810/746,
  58781. bottom: 6/816
  58782. }
  58783. },
  58784. back: {
  58785. height: math.unit(2, "meters"),
  58786. weight: math.unit(120, "kg"),
  58787. name: "Back",
  58788. image: {
  58789. source: "./media/characters/gilirian/back.svg",
  58790. extra: 815/745,
  58791. bottom: 15/830
  58792. }
  58793. },
  58794. frontNsfw: {
  58795. height: math.unit(2, "meters"),
  58796. weight: math.unit(120, "kg"),
  58797. name: "Front (NSFW)",
  58798. image: {
  58799. source: "./media/characters/gilirian/front-nsfw.svg",
  58800. extra: 805/737,
  58801. bottom: 13/818
  58802. }
  58803. },
  58804. sideNsfw: {
  58805. height: math.unit(2, "meters"),
  58806. weight: math.unit(120, "kg"),
  58807. name: "Side (NSFW)",
  58808. image: {
  58809. source: "./media/characters/gilirian/side-nsfw.svg",
  58810. extra: 810/746,
  58811. bottom: 6/816
  58812. }
  58813. },
  58814. },
  58815. [
  58816. {
  58817. name: "Incognito",
  58818. height: math.unit(2, "meters"),
  58819. default: true
  58820. },
  58821. {
  58822. name: "Macro",
  58823. height: math.unit(250, "meters")
  58824. },
  58825. {
  58826. name: "Big Macro",
  58827. height: math.unit(1500, "meters")
  58828. },
  58829. {
  58830. name: "Mega",
  58831. height: math.unit(40, "km")
  58832. },
  58833. {
  58834. name: "Giga",
  58835. height: math.unit(300, "km")
  58836. },
  58837. {
  58838. name: "Extra Giga",
  58839. height: math.unit(5000, "km")
  58840. },
  58841. {
  58842. name: "Small Terra",
  58843. height: math.unit(10e3, "km")
  58844. },
  58845. {
  58846. name: "Terra",
  58847. height: math.unit(3e5, "km")
  58848. },
  58849. {
  58850. name: "Galactic",
  58851. height: math.unit(369950, "lightyears")
  58852. },
  58853. ]
  58854. ))
  58855. characterMakers.push(() => makeCharacter(
  58856. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58857. {
  58858. front: {
  58859. height: math.unit(2.5, "meters"),
  58860. weight: math.unit(230, "lb"),
  58861. name: "Front",
  58862. image: {
  58863. source: "./media/characters/tarken/front.svg",
  58864. extra: 764/720,
  58865. bottom: 49/813
  58866. }
  58867. },
  58868. back: {
  58869. height: math.unit(2.5, "meters"),
  58870. weight: math.unit(230, "lb"),
  58871. name: "Back",
  58872. image: {
  58873. source: "./media/characters/tarken/back.svg",
  58874. extra: 756/720,
  58875. bottom: 35/791
  58876. }
  58877. },
  58878. frontNsfw: {
  58879. height: math.unit(2.5, "meters"),
  58880. weight: math.unit(230, "lb"),
  58881. name: "Front (NSFW)",
  58882. image: {
  58883. source: "./media/characters/tarken/front-nsfw.svg",
  58884. extra: 764/720,
  58885. bottom: 49/813
  58886. }
  58887. },
  58888. backNsfw: {
  58889. height: math.unit(2.5, "meters"),
  58890. weight: math.unit(230, "lb"),
  58891. name: "Back (NSFW)",
  58892. image: {
  58893. source: "./media/characters/tarken/back-nsfw.svg",
  58894. extra: 756/720,
  58895. bottom: 35/791
  58896. }
  58897. },
  58898. head: {
  58899. height: math.unit(2.22, "feet"),
  58900. name: "Head",
  58901. image: {
  58902. source: "./media/characters/tarken/head.svg"
  58903. }
  58904. },
  58905. tail: {
  58906. height: math.unit(5.25, "feet"),
  58907. name: "Tail",
  58908. image: {
  58909. source: "./media/characters/tarken/tail.svg"
  58910. }
  58911. },
  58912. dick: {
  58913. height: math.unit(1.95, "feet"),
  58914. name: "Dick",
  58915. image: {
  58916. source: "./media/characters/tarken/dick.svg"
  58917. }
  58918. },
  58919. hand: {
  58920. height: math.unit(1.78, "feet"),
  58921. name: "Hand",
  58922. image: {
  58923. source: "./media/characters/tarken/hand.svg"
  58924. }
  58925. },
  58926. beam: {
  58927. height: math.unit(1.5, "feet"),
  58928. name: "Beam",
  58929. image: {
  58930. source: "./media/characters/tarken/beam.svg"
  58931. }
  58932. },
  58933. },
  58934. [
  58935. {
  58936. name: "Original Size",
  58937. height: math.unit(2.5, "meters")
  58938. },
  58939. {
  58940. name: "Macro",
  58941. height: math.unit(150, "meters"),
  58942. default: true
  58943. },
  58944. {
  58945. name: "Macro+",
  58946. height: math.unit(300, "meters")
  58947. },
  58948. {
  58949. name: "Mega",
  58950. height: math.unit(2, "km")
  58951. },
  58952. {
  58953. name: "Mega+",
  58954. height: math.unit(35, "km")
  58955. },
  58956.  {
  58957. name: "Mega++",
  58958. height: math.unit(60, "km")
  58959. },
  58960. {
  58961. name: "Giga",
  58962. height: math.unit(200, "km")
  58963. },
  58964. {
  58965. name: "Giga+",
  58966. height: math.unit(2500, "km")
  58967. },
  58968. {
  58969. name: "Giga++",
  58970. height: math.unit(6600, "km")
  58971. },
  58972. {
  58973. name: "Terra",
  58974. height: math.unit(20000, "km")
  58975. },
  58976. {
  58977. name: "Terra+",
  58978. height: math.unit(300000, "km")
  58979. },
  58980. ]
  58981. ))
  58982. characterMakers.push(() => makeCharacter(
  58983. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58984. {
  58985. magpie_dressed: {
  58986. height: math.unit(1.7, "meters"),
  58987. weight: math.unit(70, "kg"),
  58988. name: "Dressed",
  58989. image: {
  58990. source: "./media/characters/otreus/magpie-dressed.svg",
  58991. extra: 691/672,
  58992. bottom: 116/807
  58993. },
  58994. form: "magpie",
  58995. default: true
  58996. },
  58997. magpie_nude: {
  58998. height: math.unit(1.7, "meters"),
  58999. weight: math.unit(70, "kg"),
  59000. name: "Nude",
  59001. image: {
  59002. source: "./media/characters/otreus/magpie-nude.svg",
  59003. extra: 691/672,
  59004. bottom: 116/807
  59005. },
  59006. form: "magpie",
  59007. },
  59008. magpie_dressedLewd: {
  59009. height: math.unit(1.7, "meters"),
  59010. weight: math.unit(70, "kg"),
  59011. name: "Dressed (Lewd)",
  59012. image: {
  59013. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59014. extra: 691/672,
  59015. bottom: 116/807
  59016. },
  59017. form: "magpie",
  59018. },
  59019. magpie_nudeLewd: {
  59020. height: math.unit(1.7, "meters"),
  59021. weight: math.unit(70, "kg"),
  59022. name: "Nude (Lewd)",
  59023. image: {
  59024. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59025. extra: 691/672,
  59026. bottom: 116/807
  59027. },
  59028. form: "magpie",
  59029. },
  59030. magpie_leftFoot: {
  59031. height: math.unit(1.58, "feet"),
  59032. name: "Left Foot",
  59033. image: {
  59034. source: "./media/characters/otreus/magpie-left-foot.svg"
  59035. },
  59036. form: "magpie",
  59037. },
  59038. magpie_rightFoot: {
  59039. height: math.unit(1.58, "feet"),
  59040. name: "Right Foot",
  59041. image: {
  59042. source: "./media/characters/otreus/magpie-right-foot.svg"
  59043. },
  59044. form: "magpie",
  59045. },
  59046. magpie_wingspan: {
  59047. height: math.unit(2, "meters"),
  59048. weight: math.unit(70, "kg"),
  59049. name: "Wingspan",
  59050. image: {
  59051. source: "./media/characters/otreus/magpie-wingspan.svg"
  59052. },
  59053. extraAttributes: {
  59054. "wingspan": {
  59055. name: "Wingspan",
  59056. power: 1,
  59057. type: "length",
  59058. base: math.unit(3.35, "meters")
  59059. },
  59060. },
  59061. form: "magpie",
  59062. },
  59063. hippogriff_dressed: {
  59064. height: math.unit(1.7, "meters"),
  59065. weight: math.unit(70, "kg"),
  59066. name: "Dressed",
  59067. image: {
  59068. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59069. extra: 710/689,
  59070. bottom: 67/777
  59071. },
  59072. form: "hippogriff",
  59073. default: true
  59074. },
  59075. hippogriff_nude: {
  59076. height: math.unit(1.7, "meters"),
  59077. weight: math.unit(70, "kg"),
  59078. name: "Nude",
  59079. image: {
  59080. source: "./media/characters/otreus/hippogriff-nude.svg",
  59081. extra: 710/689,
  59082. bottom: 67/777
  59083. },
  59084. form: "hippogriff",
  59085. },
  59086. hippogriff_dressedLewd: {
  59087. height: math.unit(1.7, "meters"),
  59088. weight: math.unit(70, "kg"),
  59089. name: "Dressed (Lewd)",
  59090. image: {
  59091. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59092. extra: 710/689,
  59093. bottom: 67/777
  59094. },
  59095. form: "hippogriff",
  59096. },
  59097. hippogriff_nudeLewd: {
  59098. height: math.unit(1.7, "meters"),
  59099. weight: math.unit(70, "kg"),
  59100. name: "Nude (Lewd)",
  59101. image: {
  59102. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59103. extra: 710/689,
  59104. bottom: 67/777
  59105. },
  59106. form: "hippogriff",
  59107. },
  59108. },
  59109. [
  59110. {
  59111. name: "Original Size",
  59112. height: math.unit(1.7, "meters"),
  59113. allForms: true
  59114. },
  59115. {
  59116. name: "Incognito Size",
  59117. height: math.unit(2, "meters"),
  59118. allForms: true
  59119. },
  59120. {
  59121. name: "Mega",
  59122. height: math.unit(2, "km"),
  59123. allForms: true
  59124. },
  59125. {
  59126. name: "Mega+",
  59127. height: math.unit(40, "km"),
  59128. allForms: true
  59129. },
  59130. {
  59131. name: "Giga",
  59132. height: math.unit(250, "km"),
  59133. allForms: true
  59134. },
  59135. {
  59136. name: "Giga+",
  59137. height: math.unit(3000, "km"),
  59138. allForms: true
  59139. },
  59140. {
  59141. name: "Terra",
  59142. height: math.unit(20000, "km"),
  59143. allForms: true
  59144. },
  59145. {
  59146. name: "Solar (Home Size)",
  59147. height: math.unit(3e6, "km"),
  59148. allForms: true,
  59149. default: true
  59150. },
  59151. ],
  59152. {
  59153. "magpie": {
  59154. name: "Magpie",
  59155. default: true
  59156. },
  59157. "hippogriff": {
  59158. name: "Hippogriff",
  59159. },
  59160. }
  59161. ))
  59162. characterMakers.push(() => makeCharacter(
  59163. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59164. {
  59165. frontDressed: {
  59166. height: math.unit(1.8, "meters"),
  59167. weight: math.unit(90, "kg"),
  59168. name: "Front (Dressed)",
  59169. image: {
  59170. source: "./media/characters/thalia/front-dressed.svg",
  59171. extra: 478/402,
  59172. bottom: 55/533
  59173. }
  59174. },
  59175. backDressed: {
  59176. height: math.unit(1.8, "meters"),
  59177. weight: math.unit(90, "kg"),
  59178. name: "Back (Dressed)",
  59179. image: {
  59180. source: "./media/characters/thalia/back-dressed.svg",
  59181. extra: 500/424,
  59182. bottom: 15/515
  59183. }
  59184. },
  59185. frontNude: {
  59186. height: math.unit(1.8, "meters"),
  59187. weight: math.unit(90, "kg"),
  59188. name: "Front (Nude)",
  59189. image: {
  59190. source: "./media/characters/thalia/front-nude.svg",
  59191. extra: 478/402,
  59192. bottom: 55/533
  59193. }
  59194. },
  59195. backNude: {
  59196. height: math.unit(1.8, "meters"),
  59197. weight: math.unit(90, "kg"),
  59198. name: "Back (Nude)",
  59199. image: {
  59200. source: "./media/characters/thalia/back-nude.svg",
  59201. extra: 500/424,
  59202. bottom: 15/515
  59203. }
  59204. },
  59205. },
  59206. [
  59207. {
  59208. name: "Incognito",
  59209. height: math.unit(3, "meters")
  59210. },
  59211. {
  59212. name: "Macro",
  59213. height: math.unit(500, "meters")
  59214. },
  59215. {
  59216. name: "Mega",
  59217. height: math.unit(5, "km")
  59218. },
  59219. {
  59220. name: "Mega+",
  59221. height: math.unit(30, "km")
  59222. },
  59223. {
  59224. name: "Giga",
  59225. height: math.unit(350, "km")
  59226. },
  59227. {
  59228. name: "Giga+",
  59229. height: math.unit(4000, "km")
  59230. },
  59231. {
  59232. name: "Terra",
  59233. height: math.unit(35000, "km")
  59234. },
  59235. {
  59236. name: "Original Size",
  59237. height: math.unit(130000, "km")
  59238. },
  59239. {
  59240. name: "Solar (Home Size)",
  59241. height: math.unit(4e6, "km"),
  59242. default: true
  59243. },
  59244. ]
  59245. ))
  59246. characterMakers.push(() => makeCharacter(
  59247. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59248. {
  59249. front: {
  59250. height: math.unit(1.8, "meters"),
  59251. weight: math.unit(95, "kg"),
  59252. name: "Front",
  59253. image: {
  59254. source: "./media/characters/shango/front.svg",
  59255. extra: 1925/1774,
  59256. bottom: 67/1992
  59257. }
  59258. },
  59259. back: {
  59260. height: math.unit(1.8, "meters"),
  59261. weight: math.unit(95, "kg"),
  59262. name: "Back",
  59263. image: {
  59264. source: "./media/characters/shango/back.svg",
  59265. extra: 1915/1766,
  59266. bottom: 52/1967
  59267. }
  59268. },
  59269. frontLewd: {
  59270. height: math.unit(1.8, "meters"),
  59271. weight: math.unit(95, "kg"),
  59272. name: "Front (Lewd)",
  59273. image: {
  59274. source: "./media/characters/shango/front-lewd.svg",
  59275. extra: 1925/1774,
  59276. bottom: 67/1992
  59277. }
  59278. },
  59279. backLewd: {
  59280. height: math.unit(1.8, "meters"),
  59281. weight: math.unit(95, "kg"),
  59282. name: "Back (Lewd)",
  59283. image: {
  59284. source: "./media/characters/shango/back-lewd.svg",
  59285. extra: 1915/1766,
  59286. bottom: 52/1967
  59287. }
  59288. },
  59289. maw: {
  59290. height: math.unit(1.64, "feet"),
  59291. name: "Maw",
  59292. image: {
  59293. source: "./media/characters/shango/maw.svg"
  59294. }
  59295. },
  59296. dick: {
  59297. height: math.unit(2.14, "feet"),
  59298. name: "Dick",
  59299. image: {
  59300. source: "./media/characters/shango/dick.svg"
  59301. }
  59302. },
  59303. },
  59304. [
  59305. {
  59306. name: "Incognito",
  59307. height: math.unit(1.8, "meters")
  59308. },
  59309. {
  59310. name: "Home Size",
  59311. height: math.unit(60, "meters"),
  59312. default: true
  59313. },
  59314. {
  59315. name: "Macro",
  59316. height: math.unit(450, "meters")
  59317. },
  59318. {
  59319. name: "Mega",
  59320. height: math.unit(6, "km")
  59321. },
  59322. {
  59323. name: "Mega+",
  59324. height: math.unit(35, "km")
  59325. },
  59326. {
  59327. name: "Giga",
  59328. height: math.unit(500, "km")
  59329. },
  59330. {
  59331. name: "Giga+",
  59332. height: math.unit(5000, "km")
  59333. },
  59334. {
  59335. name: "Terra",
  59336. height: math.unit(60000, "km")
  59337. },
  59338. {
  59339. name: "Terra+",
  59340. height: math.unit(400000, "km")
  59341. },
  59342. ]
  59343. ))
  59344. characterMakers.push(() => makeCharacter(
  59345. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59346. {
  59347. front: {
  59348. height: math.unit(2, "meters"),
  59349. weight: math.unit(95, "kg"),
  59350. name: "Front",
  59351. image: {
  59352. source: "./media/characters/osiris-gryphon/front.svg",
  59353. extra: 1508/1313,
  59354. bottom: 87/1595
  59355. }
  59356. },
  59357. back: {
  59358. height: math.unit(2, "meters"),
  59359. weight: math.unit(95, "kg"),
  59360. name: "Back",
  59361. image: {
  59362. source: "./media/characters/osiris-gryphon/back.svg",
  59363. extra: 1436/1309,
  59364. bottom: 64/1500
  59365. }
  59366. },
  59367. frontLewd: {
  59368. height: math.unit(2, "meters"),
  59369. weight: math.unit(95, "kg"),
  59370. name: "Front-lewd",
  59371. image: {
  59372. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59373. extra: 1508/1313,
  59374. bottom: 87/1595
  59375. }
  59376. },
  59377. wing: {
  59378. height: math.unit(6.3333, "feet"),
  59379. name: "Wing",
  59380. image: {
  59381. source: "./media/characters/osiris-gryphon/wing.svg"
  59382. }
  59383. },
  59384. },
  59385. [
  59386. {
  59387. name: "Incognito",
  59388. height: math.unit(2, "meters")
  59389. },
  59390. {
  59391. name: "Home Size",
  59392. height: math.unit(30, "meters"),
  59393. default: true
  59394. },
  59395. {
  59396. name: "Macro",
  59397. height: math.unit(100, "meters")
  59398. },
  59399. {
  59400. name: "Macro+",
  59401. height: math.unit(350, "meters")
  59402. },
  59403. {
  59404. name: "Mega",
  59405. height: math.unit(40, "km")
  59406. },
  59407. {
  59408. name: "Giga",
  59409. height: math.unit(300, "km")
  59410. },
  59411. {
  59412. name: "Giga+",
  59413. height: math.unit(2000, "km")
  59414. },
  59415. {
  59416. name: "Terra",
  59417. height: math.unit(30000, "km")
  59418. },
  59419. ]
  59420. ))
  59421. characterMakers.push(() => makeCharacter(
  59422. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59423. {
  59424. front: {
  59425. height: math.unit(2.5, "meters"),
  59426. weight: math.unit(200, "kg"),
  59427. name: "Front",
  59428. image: {
  59429. source: "./media/characters/atlas-dragon/front.svg",
  59430. extra: 745/462,
  59431. bottom: 36/781
  59432. }
  59433. },
  59434. back: {
  59435. height: math.unit(2.5, "meters"),
  59436. weight: math.unit(200, "kg"),
  59437. name: "Back",
  59438. image: {
  59439. source: "./media/characters/atlas-dragon/back.svg",
  59440. extra: 848/822,
  59441. bottom: 57/905
  59442. }
  59443. },
  59444. frontLewd: {
  59445. height: math.unit(2.5, "meters"),
  59446. weight: math.unit(200, "kg"),
  59447. name: "Front (Lewd)",
  59448. image: {
  59449. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59450. extra: 745/462,
  59451. bottom: 36/781
  59452. }
  59453. },
  59454. backLewd: {
  59455. height: math.unit(2.5, "meters"),
  59456. weight: math.unit(200, "kg"),
  59457. name: "Back (Lewd)",
  59458. image: {
  59459. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59460. extra: 848/822,
  59461. bottom: 57/905
  59462. }
  59463. },
  59464. },
  59465. [
  59466. {
  59467. name: "Incognito",
  59468. height: math.unit(2.5, "meters")
  59469. },
  59470. {
  59471. name: "Small Macro",
  59472. height: math.unit(50, "meters")
  59473. },
  59474. {
  59475. name: "Macro",
  59476. height: math.unit(350, "meters")
  59477. },
  59478. {
  59479. name: "Mega",
  59480. height: math.unit(5.5, "kilometers")
  59481. },
  59482. {
  59483. name: "Mega+",
  59484. height: math.unit(50, "km")
  59485. },
  59486. {
  59487. name: "Giga",
  59488. height: math.unit(350, "km")
  59489. },
  59490. {
  59491. name: "Giga+",
  59492. height: math.unit(2000, "km")
  59493. },
  59494. {
  59495. name: "Giga++",
  59496. height: math.unit(6500, "km")
  59497. },
  59498. {
  59499. name: "Terra",
  59500. height: math.unit(30000, "km")
  59501. },
  59502. {
  59503. name: "Terra+",
  59504. height: math.unit(250000, "km")
  59505. },
  59506. {
  59507. name: "True Size",
  59508. height: math.unit(100, "multiverses"),
  59509. default: true
  59510. },
  59511. ]
  59512. ))
  59513. characterMakers.push(() => makeCharacter(
  59514. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59515. {
  59516. front: {
  59517. height: math.unit(1.8, "m"),
  59518. weight: math.unit(120, "kg"),
  59519. name: "Front",
  59520. image: {
  59521. source: "./media/characters/chey/front.svg",
  59522. extra: 1359/1270,
  59523. bottom: 18/1377
  59524. }
  59525. },
  59526. arm: {
  59527. height: math.unit(2.05, "feet"),
  59528. name: "Arm",
  59529. image: {
  59530. source: "./media/characters/chey/arm.svg"
  59531. }
  59532. },
  59533. head: {
  59534. height: math.unit(1.89, "feet"),
  59535. name: "Head",
  59536. image: {
  59537. source: "./media/characters/chey/head.svg"
  59538. }
  59539. },
  59540. },
  59541. [
  59542. {
  59543. name: "Original Size",
  59544. height: math.unit(5, "cm")
  59545. },
  59546. {
  59547. name: "Incognito Size",
  59548. height: math.unit(2.4, "m")
  59549. },
  59550. {
  59551. name: "Home Size",
  59552. height: math.unit(200, "meters"),
  59553. default: true
  59554. },
  59555. {
  59556. name: "Mega",
  59557. height: math.unit(2, "km")
  59558. },
  59559. {
  59560. name: "Giga (Preferred Size)",
  59561. height: math.unit(2000, "km")
  59562. },
  59563. {
  59564. name: "Giga+",
  59565. height: math.unit(6000, "km")
  59566. },
  59567. {
  59568. name: "Terra",
  59569. height: math.unit(17000, "km")
  59570. },
  59571. {
  59572. name: "Terra+",
  59573. height: math.unit(75000, "km")
  59574. },
  59575. {
  59576. name: "Terra++",
  59577. height: math.unit(225000, "km")
  59578. },
  59579. ]
  59580. ))
  59581. characterMakers.push(() => makeCharacter(
  59582. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59583. {
  59584. side: {
  59585. height: math.unit(7.8, "meters"),
  59586. name: "Side",
  59587. image: {
  59588. source: "./media/characters/ragnarok/side.svg",
  59589. extra: 725/621,
  59590. bottom: 72/797
  59591. }
  59592. },
  59593. },
  59594. [
  59595. {
  59596. name: "Normal",
  59597. height: math.unit(7.8, "meters"),
  59598. default: true
  59599. },
  59600. ]
  59601. ))
  59602. characterMakers.push(() => makeCharacter(
  59603. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59604. {
  59605. hyena_front: {
  59606. height: math.unit(2.1, "meters"),
  59607. weight: math.unit(110, "kg"),
  59608. name: "Front",
  59609. image: {
  59610. source: "./media/characters/nima/hyena-front.svg",
  59611. extra: 1904/1796,
  59612. bottom: 67/1971
  59613. },
  59614. form: "hyena",
  59615. },
  59616. hyena_back: {
  59617. height: math.unit(2.1, "meters"),
  59618. weight: math.unit(110, "kg"),
  59619. name: "Back",
  59620. image: {
  59621. source: "./media/characters/nima/hyena-back.svg",
  59622. extra: 1964/1884,
  59623. bottom: 35/1999
  59624. },
  59625. form: "hyena",
  59626. },
  59627. shark_front: {
  59628. height: math.unit(1.95, "meters"),
  59629. weight: math.unit(110, "kg"),
  59630. name: "Front",
  59631. image: {
  59632. source: "./media/characters/nima/shark-front.svg",
  59633. extra: 2238/2013,
  59634. bottom: 0/223
  59635. },
  59636. form: "shark",
  59637. },
  59638. paw: {
  59639. height: math.unit(1, "feet"),
  59640. name: "Paw",
  59641. image: {
  59642. source: "./media/characters/nima/paw.svg"
  59643. }
  59644. },
  59645. circlet: {
  59646. height: math.unit(0.3, "feet"),
  59647. name: "Circlet",
  59648. image: {
  59649. source: "./media/characters/nima/circlet.svg"
  59650. }
  59651. },
  59652. necklace: {
  59653. height: math.unit(1.2, "feet"),
  59654. name: "Necklace",
  59655. image: {
  59656. source: "./media/characters/nima/necklace.svg"
  59657. }
  59658. },
  59659. bracelet: {
  59660. height: math.unit(0.51, "feet"),
  59661. name: "Bracelet",
  59662. image: {
  59663. source: "./media/characters/nima/bracelet.svg"
  59664. }
  59665. },
  59666. armband: {
  59667. height: math.unit(1.3, "feet"),
  59668. name: "Armband",
  59669. image: {
  59670. source: "./media/characters/nima/armband.svg"
  59671. }
  59672. },
  59673. },
  59674. [
  59675. {
  59676. name: "Incognito",
  59677. height: math.unit(2.1, "meters"),
  59678. allForms: true
  59679. },
  59680. {
  59681. name: "Small Macro",
  59682. height: math.unit(50, "meters"),
  59683. allForms: true
  59684. },
  59685. {
  59686. name: "Macro",
  59687. height: math.unit(200, "meters"),
  59688. allForms: true
  59689. },
  59690. {
  59691. name: "Mega",
  59692. height: math.unit(2.5, "km"),
  59693. allForms: true
  59694. },
  59695. {
  59696. name: "Mega+",
  59697. height: math.unit(30, "km"),
  59698. allForms: true
  59699. },
  59700. {
  59701. name: "Giga (Home Size)",
  59702. height: math.unit(400, "km"),
  59703. allForms: true,
  59704. default: true
  59705. },
  59706. {
  59707. name: "Giga+",
  59708. height: math.unit(2500, "km"),
  59709. allForms: true
  59710. },
  59711. {
  59712. name: "Giga++",
  59713. height: math.unit(8000, "km"),
  59714. allForms: true
  59715. },
  59716. {
  59717. name: "Terra",
  59718. height: math.unit(20000, "km"),
  59719. allForms: true
  59720. },
  59721. {
  59722. name: "Terra+",
  59723. height: math.unit(70000, "km"),
  59724. allForms: true
  59725. },
  59726. {
  59727. name: "Terra++",
  59728. height: math.unit(600000, "km"),
  59729. allForms: true
  59730. },
  59731. {
  59732. name: "Galactic",
  59733. height: math.unit(40, "galaxies"),
  59734. allForms: true
  59735. },
  59736. {
  59737. name: "Universal",
  59738. height: math.unit(40, "universes"),
  59739. allForms: true
  59740. },
  59741. ],
  59742. {
  59743. "hyena": {
  59744. name: "Hyena",
  59745. default: true
  59746. },
  59747. "shark": {
  59748. name: "Shark",
  59749. },
  59750. }
  59751. ))
  59752. characterMakers.push(() => makeCharacter(
  59753. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59754. {
  59755. anthro_front: {
  59756. height: math.unit(1.5, "meters"),
  59757. name: "Front",
  59758. image: {
  59759. source: "./media/characters/adelaide/anthro-front.svg",
  59760. extra: 860/783,
  59761. bottom: 60/920
  59762. },
  59763. form: "anthro",
  59764. default: true
  59765. },
  59766. hand: {
  59767. height: math.unit(0.65, "feet"),
  59768. name: "Hand",
  59769. image: {
  59770. source: "./media/characters/adelaide/hand.svg"
  59771. },
  59772. form: "anthro"
  59773. },
  59774. foot: {
  59775. height: math.unit(1.38 * 259 / 314, "feet"),
  59776. name: "Foot",
  59777. image: {
  59778. source: "./media/characters/adelaide/foot.svg",
  59779. extra: 259/259,
  59780. bottom: 55/314
  59781. },
  59782. form: "anthro"
  59783. },
  59784. feather: {
  59785. height: math.unit(0.85, "feet"),
  59786. name: "Feather",
  59787. image: {
  59788. source: "./media/characters/adelaide/feather.svg"
  59789. },
  59790. form: "anthro"
  59791. },
  59792. feral_side: {
  59793. height: math.unit(1, "meters"),
  59794. name: "Side",
  59795. image: {
  59796. source: "./media/characters/adelaide/feral-side.svg",
  59797. extra: 550/467,
  59798. bottom: 37/587
  59799. },
  59800. form: "feral",
  59801. default: true
  59802. },
  59803. feral_hand: {
  59804. height: math.unit(0.58, "feet"),
  59805. name: "Hand",
  59806. image: {
  59807. source: "./media/characters/adelaide/hand.svg"
  59808. },
  59809. form: "feral"
  59810. },
  59811. feral_foot: {
  59812. height: math.unit(1.2 * 259 / 314, "feet"),
  59813. name: "Foot",
  59814. image: {
  59815. source: "./media/characters/adelaide/foot.svg",
  59816. extra: 259/259,
  59817. bottom: 55/314
  59818. },
  59819. form: "feral"
  59820. },
  59821. feral_feather: {
  59822. height: math.unit(0.63, "feet"),
  59823. name: "Feather",
  59824. image: {
  59825. source: "./media/characters/adelaide/feather.svg"
  59826. },
  59827. form: "feral"
  59828. },
  59829. },
  59830. [
  59831. {
  59832. name: "Normal",
  59833. height: math.unit(1.5, "meters"),
  59834. form: "anthro",
  59835. default: true
  59836. },
  59837. {
  59838. name: "Normal",
  59839. height: math.unit(1, "meters"),
  59840. form: "feral",
  59841. default: true
  59842. },
  59843. ],
  59844. {
  59845. "anthro": {
  59846. name: "Anthro",
  59847. default: true
  59848. },
  59849. "feral": {
  59850. name: "Feral",
  59851. },
  59852. }
  59853. ))
  59854. characterMakers.push(() => makeCharacter(
  59855. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59856. {
  59857. front: {
  59858. height: math.unit(2.5, "meters"),
  59859. name: "Front",
  59860. image: {
  59861. source: "./media/characters/goa/front.svg",
  59862. extra: 1109/1013,
  59863. bottom: 150/1259
  59864. }
  59865. },
  59866. },
  59867. [
  59868. {
  59869. name: "Normal",
  59870. height: math.unit(2.5, "meters"),
  59871. default: true
  59872. },
  59873. ]
  59874. ))
  59875. characterMakers.push(() => makeCharacter(
  59876. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59877. {
  59878. front: {
  59879. height: math.unit(2, "meters"),
  59880. weight: math.unit(100, "kg"),
  59881. name: "Front",
  59882. image: {
  59883. source: "./media/characters/kiki-weavile/front.svg",
  59884. extra: 357/332,
  59885. bottom: 60/417
  59886. }
  59887. },
  59888. },
  59889. [
  59890. {
  59891. name: "Normal",
  59892. height: math.unit(2, "meters"),
  59893. default: true
  59894. },
  59895. ]
  59896. ))
  59897. characterMakers.push(() => makeCharacter(
  59898. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59899. {
  59900. side: {
  59901. height: math.unit(1.6, "meters"),
  59902. name: "Side",
  59903. image: {
  59904. source: "./media/characters/liza/side.svg",
  59905. extra: 943/915,
  59906. bottom: 72/1015
  59907. }
  59908. },
  59909. },
  59910. [
  59911. {
  59912. name: "Normal",
  59913. height: math.unit(1.6, "meters"),
  59914. default: true
  59915. },
  59916. ]
  59917. ))
  59918. characterMakers.push(() => makeCharacter(
  59919. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59920. {
  59921. side: {
  59922. height: math.unit(2.5, "meters"),
  59923. preyCapacity: math.unit(1, "people"),
  59924. name: "Side",
  59925. image: {
  59926. source: "./media/characters/persephone-sweetbreath/side.svg",
  59927. extra: 796/700,
  59928. bottom: 44/840
  59929. }
  59930. },
  59931. sideVore: {
  59932. height: math.unit(2.5, "meters"),
  59933. preyCapacity: math.unit(1, "people"),
  59934. name: "Side (Full)",
  59935. image: {
  59936. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59937. extra: 796/700,
  59938. bottom: 44/840
  59939. }
  59940. },
  59941. },
  59942. [
  59943. {
  59944. name: "Normal",
  59945. height: math.unit(2.5, "meters"),
  59946. default: true
  59947. },
  59948. ]
  59949. ))
  59950. characterMakers.push(() => makeCharacter(
  59951. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59952. {
  59953. front: {
  59954. height: math.unit(32, "meters"),
  59955. name: "Front",
  59956. image: {
  59957. source: "./media/characters/pierce/front.svg",
  59958. extra: 1695/1475,
  59959. bottom: 185/1880
  59960. }
  59961. },
  59962. side: {
  59963. height: math.unit(32, "meters"),
  59964. name: "Side",
  59965. image: {
  59966. source: "./media/characters/pierce/side.svg",
  59967. extra: 974/859,
  59968. bottom: 43/1017
  59969. }
  59970. },
  59971. frontWingless: {
  59972. height: math.unit(32, "meters"),
  59973. name: "Front (Wingless)",
  59974. image: {
  59975. source: "./media/characters/pierce/front-wingless.svg",
  59976. extra: 1695/1475,
  59977. bottom: 185/1880
  59978. }
  59979. },
  59980. sideWingless: {
  59981. height: math.unit(32, "meters"),
  59982. name: "Side (Wingless)",
  59983. image: {
  59984. source: "./media/characters/pierce/side-wingless.svg",
  59985. extra: 974/859,
  59986. bottom: 43/1017
  59987. }
  59988. },
  59989. maw: {
  59990. height: math.unit(19.3, "meters"),
  59991. name: "Maw",
  59992. image: {
  59993. source: "./media/characters/pierce/maw.svg"
  59994. }
  59995. },
  59996. },
  59997. [
  59998. {
  59999. name: "Small",
  60000. height: math.unit(8.5, "meters")
  60001. },
  60002. {
  60003. name: "Normal",
  60004. height: math.unit(32, "meters"),
  60005. default: true
  60006. },
  60007. ]
  60008. ))
  60009. characterMakers.push(() => makeCharacter(
  60010. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60011. {
  60012. front: {
  60013. height: math.unit(2.3, "meters"),
  60014. weight: math.unit(165, "kg"),
  60015. name: "Front",
  60016. image: {
  60017. source: "./media/characters/shira/front.svg",
  60018. extra: 924/919,
  60019. bottom: 17/941
  60020. },
  60021. form: "cobra",
  60022. default: true
  60023. },
  60024. back: {
  60025. height: math.unit(2.3, "meters"),
  60026. weight: math.unit(165, "kg"),
  60027. name: "Back",
  60028. image: {
  60029. source: "./media/characters/shira/back.svg",
  60030. extra: 928/922,
  60031. bottom: 18/946
  60032. },
  60033. form: "cobra"
  60034. },
  60035. frontLewd: {
  60036. height: math.unit(2.3, "meters"),
  60037. weight: math.unit(165, "kg"),
  60038. name: "Front (Lewd)",
  60039. image: {
  60040. source: "./media/characters/shira/front-lewd.svg",
  60041. extra: 924/919,
  60042. bottom: 17/941
  60043. },
  60044. form: "cobra"
  60045. },
  60046. backLewd: {
  60047. height: math.unit(2.3, "meters"),
  60048. weight: math.unit(165, "kg"),
  60049. name: "Back (Lewd)",
  60050. image: {
  60051. source: "./media/characters/shira/back-lewd.svg",
  60052. extra: 928/922,
  60053. bottom: 18/946
  60054. },
  60055. form: "cobra"
  60056. },
  60057. maw: {
  60058. height: math.unit(1.14, "feet"),
  60059. name: "Maw",
  60060. image: {
  60061. source: "./media/characters/shira/maw.svg"
  60062. },
  60063. form: "cobra"
  60064. },
  60065. magma_front: {
  60066. height: math.unit(2.3, "meters"),
  60067. weight: math.unit(165, "kg"),
  60068. name: "Front",
  60069. image: {
  60070. source: "./media/characters/shira/magma-front.svg",
  60071. extra: 1870/1693,
  60072. bottom: 24/1894
  60073. },
  60074. form: "magma",
  60075. },
  60076. magma_back: {
  60077. height: math.unit(2.3, "meters"),
  60078. weight: math.unit(165, "kg"),
  60079. name: "Back",
  60080. image: {
  60081. source: "./media/characters/shira/magma-back.svg",
  60082. extra: 1918/1756,
  60083. bottom: 46/1964
  60084. },
  60085. form: "magma",
  60086. },
  60087. },
  60088. [
  60089. {
  60090. name: "Incognito",
  60091. height: math.unit(2.3, "meters"),
  60092. allForms: true
  60093. },
  60094. {
  60095. name: "Home Size",
  60096. height: math.unit(150, "meters"),
  60097. default: true,
  60098. allForms: true
  60099. },
  60100. {
  60101. name: "Macro",
  60102. height: math.unit(2, "km"),
  60103. allForms: true
  60104. },
  60105. {
  60106. name: "Mega",
  60107. height: math.unit(30, "km"),
  60108. allForms: true
  60109. },
  60110. {
  60111. name: "Giga",
  60112. height: math.unit(450, "km"),
  60113. allForms: true
  60114. },
  60115. {
  60116. name: "Giga+",
  60117. height: math.unit(3000, "km"),
  60118. allForms: true
  60119. },
  60120. {
  60121. name: "Giga++",
  60122. height: math.unit(6000, "km"),
  60123. allForms: true
  60124. },
  60125. {
  60126. name: "Terra",
  60127. height: math.unit(80000, "km"),
  60128. allForms: true
  60129. },
  60130. {
  60131. name: "Terra+",
  60132. height: math.unit(350000, "km"),
  60133. allForms: true
  60134. },
  60135. {
  60136. name: "Solar",
  60137. height: math.unit(1e6, "km"),
  60138. allForms: true
  60139. },
  60140. ],
  60141. {
  60142. "cobra": {
  60143. name: "Cobra",
  60144. default: true
  60145. },
  60146. "magma": {
  60147. name: "Magma Dragon",
  60148. },
  60149. }
  60150. ))
  60151. characterMakers.push(() => makeCharacter(
  60152. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60153. {
  60154. front: {
  60155. height: math.unit(2, "meters"),
  60156. weight: math.unit(160, "kg"),
  60157. name: "Front",
  60158. image: {
  60159. source: "./media/characters/daxerios/front.svg",
  60160. extra: 1334/1277,
  60161. bottom: 45/1379
  60162. }
  60163. },
  60164. frontLewd: {
  60165. height: math.unit(2, "meters"),
  60166. weight: math.unit(160, "kg"),
  60167. name: "Front (Lewd)",
  60168. image: {
  60169. source: "./media/characters/daxerios/front-lewd.svg",
  60170. extra: 1334/1277,
  60171. bottom: 45/1379
  60172. }
  60173. },
  60174. dick: {
  60175. height: math.unit(2.35, "feet"),
  60176. name: "Dick",
  60177. image: {
  60178. source: "./media/characters/daxerios/dick.svg"
  60179. }
  60180. },
  60181. },
  60182. [
  60183. {
  60184. name: "\"Small\"",
  60185. height: math.unit(5, "meters")
  60186. },
  60187. {
  60188. name: "Original Size",
  60189. height: math.unit(500, "meters"),
  60190. default: true
  60191. },
  60192. {
  60193. name: "Mega",
  60194. height: math.unit(2, "km")
  60195. },
  60196. {
  60197. name: "Mega+",
  60198. height: math.unit(35, "km")
  60199. },
  60200. {
  60201. name: "Giga",
  60202. height: math.unit(250, "km")
  60203. },
  60204. {
  60205. name: "Giga+",
  60206. height: math.unit(3000, "km")
  60207. },
  60208. {
  60209. name: "Terra",
  60210. height: math.unit(25000, "km")
  60211. },
  60212. {
  60213. name: "Terra+",
  60214. height: math.unit(300000, "km")
  60215. },
  60216. {
  60217. name: "Solar",
  60218. height: math.unit(1e6, "km")
  60219. },
  60220. ]
  60221. ))
  60222. characterMakers.push(() => makeCharacter(
  60223. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60224. {
  60225. front: {
  60226. height: math.unit(8 + 4/12, "feet"),
  60227. weight: math.unit(464, "lb"),
  60228. name: "Front",
  60229. image: {
  60230. source: "./media/characters/caveat/front.svg",
  60231. extra: 1861/1678,
  60232. bottom: 40/1901
  60233. }
  60234. },
  60235. },
  60236. [
  60237. {
  60238. name: "Normal",
  60239. height: math.unit(8 + 4/12, "feet"),
  60240. default: true
  60241. },
  60242. ]
  60243. ))
  60244. characterMakers.push(() => makeCharacter(
  60245. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60246. {
  60247. front: {
  60248. height: math.unit(12, "feet"),
  60249. weight: math.unit(1800, "lb"),
  60250. name: "Front",
  60251. image: {
  60252. source: "./media/characters/centbair/front.svg",
  60253. extra: 781/663,
  60254. bottom: 25/806
  60255. }
  60256. },
  60257. frontNsfw: {
  60258. height: math.unit(12, "feet"),
  60259. weight: math.unit(1800, "lb"),
  60260. name: "Front (NSFW)",
  60261. image: {
  60262. source: "./media/characters/centbair/front-nsfw.svg",
  60263. extra: 781/663,
  60264. bottom: 25/806
  60265. }
  60266. },
  60267. back: {
  60268. height: math.unit(12, "feet"),
  60269. weight: math.unit(1800, "lb"),
  60270. name: "Back",
  60271. image: {
  60272. source: "./media/characters/centbair/back.svg",
  60273. extra: 808/761,
  60274. bottom: 19/827
  60275. }
  60276. },
  60277. dick: {
  60278. height: math.unit(6.5, "feet"),
  60279. name: "Dick",
  60280. image: {
  60281. source: "./media/characters/centbair/dick.svg"
  60282. }
  60283. },
  60284. slit: {
  60285. height: math.unit(3.25, "feet"),
  60286. name: "Slit",
  60287. image: {
  60288. source: "./media/characters/centbair/slit.svg"
  60289. }
  60290. },
  60291. },
  60292. [
  60293. {
  60294. name: "Normal",
  60295. height: math.unit(12, "feet"),
  60296. default: true
  60297. },
  60298. ]
  60299. ))
  60300. characterMakers.push(() => makeCharacter(
  60301. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60302. {
  60303. front: {
  60304. height: math.unit(5 + 7/12, "feet"),
  60305. name: "Front",
  60306. image: {
  60307. source: "./media/characters/andy/front.svg",
  60308. extra: 634/588,
  60309. bottom: 36/670
  60310. },
  60311. extraAttributes: {
  60312. "pawLength": {
  60313. name: "Paw Length",
  60314. power: 1,
  60315. type: "length",
  60316. base: math.unit(1, "feet")
  60317. },
  60318. }
  60319. },
  60320. side: {
  60321. height: math.unit(5 + 7/12, "feet"),
  60322. name: "Side",
  60323. image: {
  60324. source: "./media/characters/andy/side.svg",
  60325. extra: 641/596,
  60326. bottom: 34/675
  60327. },
  60328. extraAttributes: {
  60329. "pawLength": {
  60330. name: "Paw Length",
  60331. power: 1,
  60332. type: "length",
  60333. base: math.unit(1, "feet")
  60334. },
  60335. }
  60336. },
  60337. back: {
  60338. height: math.unit(5 + 7/12, "feet"),
  60339. name: "Back",
  60340. image: {
  60341. source: "./media/characters/andy/back.svg",
  60342. extra: 618/583,
  60343. bottom: 39/657
  60344. },
  60345. extraAttributes: {
  60346. "pawLength": {
  60347. name: "Paw Length",
  60348. power: 1,
  60349. type: "length",
  60350. base: math.unit(1, "feet")
  60351. },
  60352. }
  60353. },
  60354. paw: {
  60355. height: math.unit(1.13, "feet"),
  60356. name: "Paw",
  60357. image: {
  60358. source: "./media/characters/andy/paw.svg"
  60359. }
  60360. },
  60361. },
  60362. [
  60363. {
  60364. name: "Micro",
  60365. height: math.unit(4, "inches")
  60366. },
  60367. {
  60368. name: "Normal",
  60369. height: math.unit(5 + 7/12, "feet"),
  60370. default: true
  60371. },
  60372. {
  60373. name: "Macro",
  60374. height: math.unit(390.42, "feet")
  60375. },
  60376. ]
  60377. ))
  60378. characterMakers.push(() => makeCharacter(
  60379. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60380. {
  60381. front: {
  60382. height: math.unit(7, "feet"),
  60383. weight: math.unit(250, "lb"),
  60384. name: "Front",
  60385. image: {
  60386. source: "./media/characters/vix-titan/front.svg",
  60387. extra: 460/428,
  60388. bottom: 15/475
  60389. },
  60390. extraAttributes: {
  60391. "pawWidth": {
  60392. name: "Paw Width",
  60393. power: 1,
  60394. type: "length",
  60395. base: math.unit(0.75, "feet")
  60396. },
  60397. }
  60398. },
  60399. },
  60400. [
  60401. {
  60402. name: "Normal",
  60403. height: math.unit(7, "feet"),
  60404. default: true
  60405. },
  60406. {
  60407. name: "Giant",
  60408. height: math.unit(1500, "feet")
  60409. },
  60410. {
  60411. name: "Mega",
  60412. height: math.unit(10, "miles")
  60413. },
  60414. {
  60415. name: "Giga",
  60416. height: math.unit(150, "miles")
  60417. },
  60418. {
  60419. name: "Tera",
  60420. height: math.unit(144000, "miles")
  60421. },
  60422. ]
  60423. ))
  60424. characterMakers.push(() => makeCharacter(
  60425. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60426. {
  60427. front: {
  60428. height: math.unit(6 + 2/12, "feet"),
  60429. name: "Front",
  60430. image: {
  60431. source: "./media/characters/reiku/front.svg",
  60432. extra: 1910/1757,
  60433. bottom: 103/2013
  60434. },
  60435. extraAttributes: {
  60436. "thighThickness": {
  60437. name: "Thigh Thickness",
  60438. power: 1,
  60439. type: "length",
  60440. base: math.unit(1.12, "feet")
  60441. },
  60442. "assThickness": {
  60443. name: "Ass Thickness",
  60444. power: 1,
  60445. type: "length",
  60446. base: math.unit(1.12*2, "feet")
  60447. },
  60448. }
  60449. },
  60450. side: {
  60451. height: math.unit(6 + 2/12, "feet"),
  60452. name: "Side",
  60453. image: {
  60454. source: "./media/characters/reiku/side.svg",
  60455. extra: 1846/1748,
  60456. bottom: 99/1945
  60457. },
  60458. extraAttributes: {
  60459. "thighThickness": {
  60460. name: "Thigh Thickness",
  60461. power: 1,
  60462. type: "length",
  60463. base: math.unit(1.12, "feet")
  60464. },
  60465. "assThickness": {
  60466. name: "Ass Thickness",
  60467. power: 1,
  60468. type: "length",
  60469. base: math.unit(1.12*2, "feet")
  60470. },
  60471. }
  60472. },
  60473. back: {
  60474. height: math.unit(6 + 2/12, "feet"),
  60475. name: "Back",
  60476. image: {
  60477. source: "./media/characters/reiku/back.svg",
  60478. extra: 1941/1786,
  60479. bottom: 34/1975
  60480. },
  60481. extraAttributes: {
  60482. "thighThickness": {
  60483. name: "Thigh Thickness",
  60484. power: 1,
  60485. type: "length",
  60486. base: math.unit(1.12, "feet")
  60487. },
  60488. "assThickness": {
  60489. name: "Ass Thickness",
  60490. power: 1,
  60491. type: "length",
  60492. base: math.unit(1.12*2, "feet")
  60493. },
  60494. }
  60495. },
  60496. head: {
  60497. height: math.unit(1.8, "feet"),
  60498. name: "Head",
  60499. image: {
  60500. source: "./media/characters/reiku/head.svg"
  60501. }
  60502. },
  60503. tailTop: {
  60504. height: math.unit(8.4, "feet"),
  60505. name: "Tail (Top)",
  60506. image: {
  60507. source: "./media/characters/reiku/tail-top.svg"
  60508. }
  60509. },
  60510. tailBottom: {
  60511. height: math.unit(8.4, "feet"),
  60512. name: "Tail (Bottom)",
  60513. image: {
  60514. source: "./media/characters/reiku/tail-bottom.svg"
  60515. }
  60516. },
  60517. foot: {
  60518. height: math.unit(2.6, "feet"),
  60519. name: "Foot",
  60520. image: {
  60521. source: "./media/characters/reiku/foot.svg"
  60522. }
  60523. },
  60524. footCurled: {
  60525. height: math.unit(2.3, "feet"),
  60526. name: "Foot (Curled)",
  60527. image: {
  60528. source: "./media/characters/reiku/foot-curled.svg"
  60529. }
  60530. },
  60531. footSide: {
  60532. height: math.unit(1.26, "feet"),
  60533. name: "Foot (Side)",
  60534. image: {
  60535. source: "./media/characters/reiku/foot-side.svg"
  60536. }
  60537. },
  60538. },
  60539. [
  60540. {
  60541. name: "Normal",
  60542. height: math.unit(6 + 2/12, "feet"),
  60543. default: true
  60544. },
  60545. ]
  60546. ))
  60547. characterMakers.push(() => makeCharacter(
  60548. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60549. {
  60550. front: {
  60551. height: math.unit(7, "feet"),
  60552. weight: math.unit(500, "kg"),
  60553. name: "Front",
  60554. image: {
  60555. source: "./media/characters/cialda/front.svg",
  60556. extra: 912/745,
  60557. bottom: 55/967
  60558. }
  60559. },
  60560. },
  60561. [
  60562. {
  60563. name: "Normal",
  60564. height: math.unit(7, "feet"),
  60565. default: true
  60566. },
  60567. ]
  60568. ))
  60569. characterMakers.push(() => makeCharacter(
  60570. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60571. {
  60572. side: {
  60573. height: math.unit(6, "feet"),
  60574. weight: math.unit(600, "lb"),
  60575. preyCapacity: math.unit(25, "liters"),
  60576. name: "Side",
  60577. image: {
  60578. source: "./media/characters/darkkin/side.svg",
  60579. extra: 1597/1447,
  60580. bottom: 101/1698
  60581. }
  60582. },
  60583. },
  60584. [
  60585. {
  60586. name: "Canon Height",
  60587. height: math.unit(568, "feet"),
  60588. default: true
  60589. },
  60590. ]
  60591. ))
  60592. characterMakers.push(() => makeCharacter(
  60593. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60594. {
  60595. front: {
  60596. height: math.unit(6, "feet"),
  60597. weight: math.unit(1500, "lb"),
  60598. preyCapacity: math.unit(3, "people"),
  60599. name: "Front",
  60600. image: {
  60601. source: "./media/characters/livnia/front.svg",
  60602. extra: 934/932,
  60603. bottom: 83/1017
  60604. }
  60605. },
  60606. back: {
  60607. height: math.unit(6, "feet"),
  60608. weight: math.unit(1500, "lb"),
  60609. preyCapacity: math.unit(3, "people"),
  60610. name: "Back",
  60611. image: {
  60612. source: "./media/characters/livnia/back.svg",
  60613. extra: 916/915,
  60614. bottom: 58/974
  60615. }
  60616. },
  60617. head: {
  60618. height: math.unit(1.53, "feet"),
  60619. name: "Head",
  60620. image: {
  60621. source: "./media/characters/livnia/head.svg"
  60622. }
  60623. },
  60624. maw: {
  60625. height: math.unit(0.78, "feet"),
  60626. name: "Maw",
  60627. image: {
  60628. source: "./media/characters/livnia/maw.svg"
  60629. }
  60630. },
  60631. genitals: {
  60632. height: math.unit(0.35, "feet"),
  60633. name: "Genitals",
  60634. image: {
  60635. source: "./media/characters/livnia/genitals.svg"
  60636. }
  60637. },
  60638. },
  60639. [
  60640. {
  60641. name: "Normal",
  60642. height: math.unit(1000, "feet"),
  60643. default: true
  60644. },
  60645. ]
  60646. ))
  60647. characterMakers.push(() => makeCharacter(
  60648. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60649. {
  60650. front: {
  60651. height: math.unit(4, "feet"),
  60652. weight: math.unit(73, "lb"),
  60653. name: "Front",
  60654. image: {
  60655. source: "./media/characters/hayaku/front.svg",
  60656. extra: 1011/888,
  60657. bottom: 33/1044
  60658. }
  60659. },
  60660. back: {
  60661. height: math.unit(4, "feet"),
  60662. weight: math.unit(73, "lb"),
  60663. name: "Back",
  60664. image: {
  60665. source: "./media/characters/hayaku/back.svg",
  60666. extra: 1040/930,
  60667. bottom: 20/1060
  60668. }
  60669. },
  60670. },
  60671. [
  60672. {
  60673. name: "Normal",
  60674. height: math.unit(4, "feet"),
  60675. default: true
  60676. },
  60677. ]
  60678. ))
  60679. characterMakers.push(() => makeCharacter(
  60680. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60681. {
  60682. front: {
  60683. height: math.unit(6 + 7/12, "feet"),
  60684. weight: math.unit(300, "lb"),
  60685. name: "Front",
  60686. image: {
  60687. source: "./media/characters/athena-bryzant/front.svg",
  60688. extra: 870/835,
  60689. bottom: 33/903
  60690. }
  60691. },
  60692. back: {
  60693. height: math.unit(6 + 7/12, "feet"),
  60694. weight: math.unit(300, "lb"),
  60695. name: "Back",
  60696. image: {
  60697. source: "./media/characters/athena-bryzant/back.svg",
  60698. extra: 858/823,
  60699. bottom: 30/888
  60700. }
  60701. },
  60702. head: {
  60703. height: math.unit(2.38, "feet"),
  60704. name: "Head",
  60705. image: {
  60706. source: "./media/characters/athena-bryzant/head.svg"
  60707. }
  60708. },
  60709. wings: {
  60710. height: math.unit(2.85, "feet"),
  60711. name: "Wings",
  60712. image: {
  60713. source: "./media/characters/athena-bryzant/wings.svg"
  60714. }
  60715. },
  60716. },
  60717. [
  60718. {
  60719. name: "Normal",
  60720. height: math.unit(6 + 7/12, "feet"),
  60721. default: true
  60722. },
  60723. {
  60724. name: "Big",
  60725. height: math.unit(8, "feet")
  60726. },
  60727. {
  60728. name: "Very Big",
  60729. height: math.unit(11, "feet")
  60730. },
  60731. ]
  60732. ))
  60733. characterMakers.push(() => makeCharacter(
  60734. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60735. {
  60736. side: {
  60737. height: math.unit(3, "meters"),
  60738. weight: math.unit(7500, "kg"),
  60739. preyCapacity: math.unit(1e12, "people"),
  60740. name: "Side",
  60741. image: {
  60742. source: "./media/characters/zel-kesh/side.svg",
  60743. extra: 910/407,
  60744. bottom: 147/1057
  60745. }
  60746. },
  60747. },
  60748. [
  60749. {
  60750. name: "Normal",
  60751. height: math.unit(3, "meters"),
  60752. default: true
  60753. },
  60754. ]
  60755. ))
  60756. characterMakers.push(() => makeCharacter(
  60757. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60758. {
  60759. front: {
  60760. height: math.unit(2, "meters"),
  60761. weight: math.unit(95, "kg"),
  60762. name: "Front",
  60763. image: {
  60764. source: "./media/characters/kane-fox/front.svg",
  60765. extra: 945/888,
  60766. bottom: 27/972
  60767. }
  60768. },
  60769. back: {
  60770. height: math.unit(2, "meters"),
  60771. weight: math.unit(95, "kg"),
  60772. name: "Back",
  60773. image: {
  60774. source: "./media/characters/kane-fox/back.svg",
  60775. extra: 959/914,
  60776. bottom: 15/974
  60777. }
  60778. },
  60779. frontLewd: {
  60780. height: math.unit(2, "meters"),
  60781. weight: math.unit(95, "kg"),
  60782. name: "Front (Lewd)",
  60783. image: {
  60784. source: "./media/characters/kane-fox/front-lewd.svg",
  60785. extra: 945/888,
  60786. bottom: 27/972
  60787. }
  60788. },
  60789. },
  60790. [
  60791. {
  60792. name: "Home Size",
  60793. height: math.unit(2, "meters"),
  60794. default: true
  60795. },
  60796. {
  60797. name: "Macro",
  60798. height: math.unit(200, "meters")
  60799. },
  60800. {
  60801. name: "Small Mega",
  60802. height: math.unit(3, "km")
  60803. },
  60804. {
  60805. name: "Mega",
  60806. height: math.unit(50, "km")
  60807. },
  60808. {
  60809. name: "Giga",
  60810. height: math.unit(200, "km")
  60811. },
  60812. {
  60813. name: "Giga+",
  60814. height: math.unit(2500, "km")
  60815. },
  60816. {
  60817. name: "Terra",
  60818. height: math.unit(70000, "km")
  60819. },
  60820. {
  60821. name: "Terra+",
  60822. height: math.unit(150000, "km")
  60823. },
  60824. {
  60825. name: "Terra++",
  60826. height: math.unit(400000, "km")
  60827. },
  60828. ]
  60829. ))
  60830. characterMakers.push(() => makeCharacter(
  60831. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60832. {
  60833. otter_front: {
  60834. height: math.unit(1.8, "meters"),
  60835. weight: math.unit(90, "kg"),
  60836. name: "Front",
  60837. image: {
  60838. source: "./media/characters/ayranus/otter-front.svg",
  60839. extra: 468/452,
  60840. bottom: 43/511
  60841. },
  60842. form: "otter",
  60843. },
  60844. otter_frontLewd: {
  60845. height: math.unit(1.8, "meters"),
  60846. weight: math.unit(90, "kg"),
  60847. name: "Front (Lewd)",
  60848. image: {
  60849. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60850. extra: 468/452,
  60851. bottom: 43/511
  60852. },
  60853. form: "otter",
  60854. },
  60855. lionbat_front: {
  60856. height: math.unit(1.8, "meters"),
  60857. weight: math.unit(90, "kg"),
  60858. name: "Front (Lewd)",
  60859. image: {
  60860. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60861. extra: 797/740,
  60862. bottom: 78/875
  60863. },
  60864. form: "lionbat",
  60865. },
  60866. paw: {
  60867. height: math.unit(1.5, "feet"),
  60868. name: "Paw",
  60869. image: {
  60870. source: "./media/characters/ayranus/paw.svg"
  60871. },
  60872. },
  60873. },
  60874. [
  60875. {
  60876. name: "Incognito",
  60877. height: math.unit(1.8, "meters"),
  60878. allForms: true
  60879. },
  60880. {
  60881. name: "Macro",
  60882. height: math.unit(60, "meters"),
  60883. allForms: true
  60884. },
  60885. {
  60886. name: "Macro+",
  60887. height: math.unit(200, "meters"),
  60888. allForms: true
  60889. },
  60890. {
  60891. name: "Mega",
  60892. height: math.unit(35, "km"),
  60893. allForms: true
  60894. },
  60895. {
  60896. name: "Giga",
  60897. height: math.unit(220, "km"),
  60898. allForms: true
  60899. },
  60900. {
  60901. name: "Giga+",
  60902. height: math.unit(1500, "km"),
  60903. allForms: true
  60904. },
  60905. {
  60906. name: "Terra",
  60907. height: math.unit(13000, "km"),
  60908. allForms: true
  60909. },
  60910. {
  60911. name: "Terra+",
  60912. height: math.unit(500000, "km"),
  60913. allForms: true
  60914. },
  60915. {
  60916. name: "Galactic",
  60917. height: math.unit(486080, "parsecs"),
  60918. default: true,
  60919. allForms: true
  60920. },
  60921. ],
  60922. {
  60923. "otter": {
  60924. name: "Otter",
  60925. default: true
  60926. },
  60927. "lionbat": {
  60928. name: "Lionbat",
  60929. },
  60930. }
  60931. ))
  60932. characterMakers.push(() => makeCharacter(
  60933. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60934. {
  60935. front: {
  60936. height: math.unit(7 + 4/12, "feet"),
  60937. weight: math.unit(400, "lb"),
  60938. name: "Front",
  60939. image: {
  60940. source: "./media/characters/proxy/front.svg",
  60941. extra: 1605/1542,
  60942. bottom: 55/1660
  60943. }
  60944. },
  60945. side: {
  60946. height: math.unit(7 + 4/12, "feet"),
  60947. weight: math.unit(400, "lb"),
  60948. name: "Side",
  60949. image: {
  60950. source: "./media/characters/proxy/side.svg",
  60951. extra: 794/759,
  60952. bottom: 6/800
  60953. }
  60954. },
  60955. hand: {
  60956. height: math.unit(1.54, "feet"),
  60957. name: "Hand",
  60958. image: {
  60959. source: "./media/characters/proxy/hand.svg"
  60960. }
  60961. },
  60962. paw: {
  60963. height: math.unit(1.53, "feet"),
  60964. name: "Paw",
  60965. image: {
  60966. source: "./media/characters/proxy/paw.svg"
  60967. }
  60968. },
  60969. maw: {
  60970. height: math.unit(1.9, "feet"),
  60971. name: "Maw",
  60972. image: {
  60973. source: "./media/characters/proxy/maw.svg"
  60974. }
  60975. },
  60976. },
  60977. [
  60978. {
  60979. name: "Normal",
  60980. height: math.unit(7 + 4/12, "feet"),
  60981. default: true
  60982. },
  60983. ]
  60984. ))
  60985. characterMakers.push(() => makeCharacter(
  60986. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60987. {
  60988. front: {
  60989. height: math.unit(4, "meters"),
  60990. name: "Front",
  60991. image: {
  60992. source: "./media/characters/crocozilla/front.svg",
  60993. extra: 1790/1742,
  60994. bottom: 78/1868
  60995. }
  60996. },
  60997. },
  60998. [
  60999. {
  61000. name: "Normal",
  61001. height: math.unit(4, "meters"),
  61002. default: true
  61003. },
  61004. ]
  61005. ))
  61006. characterMakers.push(() => makeCharacter(
  61007. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61008. {
  61009. front: {
  61010. height: math.unit(1.8, "meters"),
  61011. weight: math.unit(120, "kg"),
  61012. name: "Front",
  61013. image: {
  61014. source: "./media/characters/kurz/front.svg",
  61015. extra: 1960/1824,
  61016. bottom: 41/2001
  61017. }
  61018. },
  61019. back: {
  61020. height: math.unit(1.8, "meters"),
  61021. weight: math.unit(120, "kg"),
  61022. name: "Back",
  61023. image: {
  61024. source: "./media/characters/kurz/back.svg",
  61025. extra: 1906/1787,
  61026. bottom: 60/1966
  61027. }
  61028. },
  61029. frontLewd: {
  61030. height: math.unit(1.8, "meters"),
  61031. weight: math.unit(120, "kg"),
  61032. name: "Front (Lewd)",
  61033. image: {
  61034. source: "./media/characters/kurz/front-lewd.svg",
  61035. extra: 1960/1824,
  61036. bottom: 41/2001
  61037. }
  61038. },
  61039. maw: {
  61040. height: math.unit(0.69, "meters"),
  61041. name: "Maw",
  61042. image: {
  61043. source: "./media/characters/kurz/maw.svg"
  61044. }
  61045. },
  61046. },
  61047. [
  61048. {
  61049. name: "Original Size",
  61050. height: math.unit(1.8, "meters")
  61051. },
  61052. {
  61053. name: "Incognito Size",
  61054. height: math.unit(2.4, "meters"),
  61055. default: true
  61056. },
  61057. {
  61058. name: "Macro",
  61059. height: math.unit(30, "meters")
  61060. },
  61061. {
  61062. name: "Macro+",
  61063. height: math.unit(250, "meters")
  61064. },
  61065. {
  61066. name: "Mega",
  61067. height: math.unit(2, "km")
  61068. },
  61069. {
  61070. name: "Mega+",
  61071. height: math.unit(35, "km")
  61072. },
  61073. {
  61074. name: "Mega++",
  61075. height: math.unit(75, "km")
  61076. },
  61077. {
  61078. name: "Giga",
  61079. height: math.unit(250, "km")
  61080. },
  61081. {
  61082. name: "Terra",
  61083. height: math.unit(15000, "km")
  61084. },
  61085. {
  61086. name: "Terra+",
  61087. height: math.unit(2250000, "km")
  61088. },
  61089. ]
  61090. ))
  61091. characterMakers.push(() => makeCharacter(
  61092. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61093. {
  61094. front: {
  61095. height: math.unit(16 + 3/12, "feet"),
  61096. weight: math.unit(3575, "lb"),
  61097. name: "Front",
  61098. image: {
  61099. source: "./media/characters/nikita/front.svg",
  61100. extra: 1064/955,
  61101. bottom: 47/1111
  61102. }
  61103. },
  61104. },
  61105. [
  61106. {
  61107. name: "Normal",
  61108. height: math.unit(16 + 3/12, "feet"),
  61109. default: true
  61110. },
  61111. {
  61112. name: "Big",
  61113. height: math.unit(21, "feet")
  61114. },
  61115. {
  61116. name: "Biggest",
  61117. height: math.unit(50, "feet")
  61118. },
  61119. ]
  61120. ))
  61121. characterMakers.push(() => makeCharacter(
  61122. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61123. {
  61124. front: {
  61125. height: math.unit(1.92, "m"),
  61126. weight: math.unit(76, "kg"),
  61127. name: "Front",
  61128. image: {
  61129. source: "./media/characters/kyara/front.svg",
  61130. extra: 1550/1438,
  61131. bottom: 139/1689
  61132. }
  61133. },
  61134. back: {
  61135. height: math.unit(1.92, "m"),
  61136. weight: math.unit(76, "kg"),
  61137. name: "Back",
  61138. image: {
  61139. source: "./media/characters/kyara/back.svg",
  61140. extra: 1523/1427,
  61141. bottom: 83/1606
  61142. }
  61143. },
  61144. head: {
  61145. height: math.unit(1.22, "feet"),
  61146. name: "Head",
  61147. image: {
  61148. source: "./media/characters/kyara/head.svg"
  61149. }
  61150. },
  61151. maw: {
  61152. height: math.unit(0.73, "feet"),
  61153. name: "Maw",
  61154. image: {
  61155. source: "./media/characters/kyara/maw.svg"
  61156. }
  61157. },
  61158. paws: {
  61159. height: math.unit(0.95, "feet"),
  61160. name: "Paws",
  61161. image: {
  61162. source: "./media/characters/kyara/paws.svg"
  61163. }
  61164. },
  61165. },
  61166. [
  61167. {
  61168. name: "Normal",
  61169. height: math.unit(1.92, "meters"),
  61170. default: true
  61171. },
  61172. {
  61173. name: "Mini Macro",
  61174. height: math.unit(192, "meters")
  61175. },
  61176. {
  61177. name: "Macro",
  61178. height: math.unit(480, "meters")
  61179. },
  61180. {
  61181. name: "Mega Macro",
  61182. height: math.unit(1440, "meters")
  61183. },
  61184. ]
  61185. ))
  61186. characterMakers.push(() => makeCharacter(
  61187. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61188. {
  61189. front: {
  61190. height: math.unit(6, "feet"),
  61191. weight: math.unit(160, "lbs"),
  61192. preyCapacity: math.unit(0.05, "people"),
  61193. name: "Front",
  61194. image: {
  61195. source: "./media/characters/layla-amari/front.svg",
  61196. extra: 1922/1723,
  61197. bottom: 90/2012
  61198. }
  61199. },
  61200. back: {
  61201. height: math.unit(6, "feet"),
  61202. weight: math.unit(160, "lbs"),
  61203. preyCapacity: math.unit(0.05, "people"),
  61204. name: "Back",
  61205. image: {
  61206. source: "./media/characters/layla-amari/back.svg",
  61207. extra: 1917/1718,
  61208. bottom: 50/1967
  61209. }
  61210. },
  61211. frontDressed: {
  61212. height: math.unit(6, "feet"),
  61213. weight: math.unit(160, "lbs"),
  61214. preyCapacity: math.unit(0.05, "people"),
  61215. name: "Front (Dressed)",
  61216. image: {
  61217. source: "./media/characters/layla-amari/front-dressed.svg",
  61218. extra: 1922/1723,
  61219. bottom: 90/2012
  61220. }
  61221. },
  61222. face: {
  61223. height: math.unit(0.93, "feet"),
  61224. name: "Face",
  61225. image: {
  61226. source: "./media/characters/layla-amari/face.svg"
  61227. }
  61228. },
  61229. hand: {
  61230. height: math.unit(0.66 , "feet"),
  61231. name: "Hand",
  61232. image: {
  61233. source: "./media/characters/layla-amari/hand.svg"
  61234. }
  61235. },
  61236. foot: {
  61237. height: math.unit(1, "feet"),
  61238. name: "Foot",
  61239. image: {
  61240. source: "./media/characters/layla-amari/foot.svg"
  61241. }
  61242. },
  61243. necklace: {
  61244. height: math.unit(0.32, "feet"),
  61245. name: "Necklace",
  61246. image: {
  61247. source: "./media/characters/layla-amari/necklace.svg"
  61248. }
  61249. },
  61250. nipple: {
  61251. height: math.unit(0.2, "feet"),
  61252. name: "Nipple",
  61253. image: {
  61254. source: "./media/characters/layla-amari/nipple.svg"
  61255. }
  61256. },
  61257. slit: {
  61258. height: math.unit(0.26, "feet"),
  61259. name: "Slit",
  61260. image: {
  61261. source: "./media/characters/layla-amari/slit.svg"
  61262. }
  61263. },
  61264. },
  61265. [
  61266. {
  61267. name: "Natural",
  61268. height: math.unit(825, "feet"),
  61269. default: true
  61270. },
  61271. {
  61272. name: "Enhanced",
  61273. height: math.unit(8250, "feet")
  61274. },
  61275. {
  61276. name: "Apparent Size",
  61277. height: math.unit(9.04363e+8, "meters")
  61278. },
  61279. ]
  61280. ))
  61281. characterMakers.push(() => makeCharacter(
  61282. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61283. {
  61284. front: {
  61285. height: math.unit(1.3, "meters"),
  61286. name: "Front",
  61287. image: {
  61288. source: "./media/characters/percy/front.svg",
  61289. extra: 1444/1289,
  61290. bottom: 54/1498
  61291. }
  61292. },
  61293. },
  61294. [
  61295. {
  61296. name: "Normal",
  61297. height: math.unit(1.3, "meters"),
  61298. default: true
  61299. },
  61300. ]
  61301. ))
  61302. characterMakers.push(() => makeCharacter(
  61303. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61304. {
  61305. side: {
  61306. height: math.unit(10, "meters"),
  61307. name: "Side",
  61308. image: {
  61309. source: "./media/characters/grev/side.svg",
  61310. extra: 653/266,
  61311. bottom: 77/730
  61312. }
  61313. },
  61314. head: {
  61315. height: math.unit(16.2, "m"),
  61316. name: "Head",
  61317. image: {
  61318. source: "./media/characters/grev/head.svg"
  61319. }
  61320. },
  61321. dick: {
  61322. height: math.unit(2.8135932034, "m"),
  61323. name: "Dick",
  61324. image: {
  61325. source: "./media/characters/grev/dick.svg"
  61326. }
  61327. },
  61328. },
  61329. [
  61330. {
  61331. name: "Friend-Sized",
  61332. height: math.unit(80, "cm")
  61333. },
  61334. {
  61335. name: "Normal",
  61336. height: math.unit(10, "meters"),
  61337. default: true
  61338. },
  61339. {
  61340. name: "Macro",
  61341. height: math.unit(200, "meters")
  61342. },
  61343. ]
  61344. ))
  61345. characterMakers.push(() => makeCharacter(
  61346. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61347. {
  61348. front: {
  61349. height: math.unit(19.75, "feet"),
  61350. weight: math.unit(20000, "lb"),
  61351. name: "Front",
  61352. image: {
  61353. source: "./media/characters/azuuca/front.svg",
  61354. extra: 1593/1511,
  61355. bottom: 55/1648
  61356. }
  61357. },
  61358. },
  61359. [
  61360. {
  61361. name: "Normal",
  61362. height: math.unit(19.75, "feet"),
  61363. default: true
  61364. },
  61365. ]
  61366. ))
  61367. characterMakers.push(() => makeCharacter(
  61368. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61369. {
  61370. front: {
  61371. height: math.unit(15, "feet"),
  61372. weight: math.unit(1500, "lb"),
  61373. name: "Front",
  61374. image: {
  61375. source: "./media/characters/valuria/front.svg",
  61376. extra: 1588/1486,
  61377. bottom: 31/1619
  61378. }
  61379. },
  61380. },
  61381. [
  61382. {
  61383. name: "Normal",
  61384. height: math.unit(15, "feet"),
  61385. default: true
  61386. },
  61387. {
  61388. name: "Small",
  61389. height: math.unit(500, "feet")
  61390. },
  61391. {
  61392. name: "Macro",
  61393. height: math.unit(4000, "feet")
  61394. },
  61395. {
  61396. name: "Mega Macro",
  61397. height: math.unit(2000, "miles")
  61398. },
  61399. {
  61400. name: "Giga Macro",
  61401. height: math.unit(3e6, "miles")
  61402. },
  61403. ]
  61404. ))
  61405. characterMakers.push(() => makeCharacter(
  61406. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61407. {
  61408. front: {
  61409. height: math.unit(3500, "solarradii"),
  61410. name: "Front",
  61411. image: {
  61412. source: "./media/characters/terigaia/front.svg",
  61413. extra: 1531/1451,
  61414. bottom: 98/1629
  61415. }
  61416. },
  61417. },
  61418. [
  61419. {
  61420. name: "Normal",
  61421. height: math.unit(3500, "solarradii"),
  61422. default: true
  61423. },
  61424. ]
  61425. ))
  61426. characterMakers.push(() => makeCharacter(
  61427. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61428. {
  61429. front: {
  61430. height: math.unit(9.34, "feet"),
  61431. weight: math.unit(600, "lb"),
  61432. name: "Front",
  61433. image: {
  61434. source: "./media/characters/blair-blaziken/front.svg",
  61435. extra: 1557/1462,
  61436. bottom: 55/1612
  61437. }
  61438. },
  61439. },
  61440. [
  61441. {
  61442. name: "Normal",
  61443. height: math.unit(9.34, "feet"),
  61444. default: true
  61445. },
  61446. ]
  61447. ))
  61448. characterMakers.push(() => makeCharacter(
  61449. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61450. {
  61451. pistrogre_front: {
  61452. height: math.unit(10, "feet"),
  61453. weight: math.unit(10, "tons"),
  61454. name: "Front",
  61455. image: {
  61456. source: "./media/characters/braxia/pistrogre-front.svg",
  61457. extra: 1531/1334,
  61458. bottom: 114/1645
  61459. },
  61460. form: "pistrogre",
  61461. default: true
  61462. },
  61463. human_front: {
  61464. height: math.unit(10, "feet"),
  61465. weight: math.unit(10, "tons"),
  61466. name: "Front",
  61467. image: {
  61468. source: "./media/characters/braxia/human-front.svg",
  61469. extra: 1574/1501,
  61470. bottom: 37/1611
  61471. },
  61472. form: "human",
  61473. default: true
  61474. },
  61475. },
  61476. [
  61477. {
  61478. name: "Normal",
  61479. height: math.unit(10, "feet"),
  61480. default: true,
  61481. allForms: true
  61482. },
  61483. {
  61484. name: "Macro",
  61485. height: math.unit(1000, "feet"),
  61486. allForms: true
  61487. },
  61488. {
  61489. name: "Mega Macro",
  61490. height: math.unit(100, "miles"),
  61491. allForms: true
  61492. },
  61493. {
  61494. name: "Cosmic",
  61495. height: math.unit(1000000, "lightyears"),
  61496. allForms: true
  61497. },
  61498. {
  61499. name: "ϐѮԆԬӁꭍϞԢ",
  61500. height: math.unit(1000, "multiverses"),
  61501. allForms: true
  61502. },
  61503. ],
  61504. {
  61505. "pistrogre": {
  61506. name: "Pistrogre",
  61507. default: true
  61508. },
  61509. "human": {
  61510. name: "Human",
  61511. },
  61512. }
  61513. ))
  61514. characterMakers.push(() => makeCharacter(
  61515. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61516. {
  61517. front: {
  61518. height: math.unit(6 + 1/12, "feet"),
  61519. weight: math.unit(280, "lb"),
  61520. name: "Front",
  61521. image: {
  61522. source: "./media/characters/kiriga-yato/front.svg",
  61523. extra: 445/394,
  61524. bottom: 11/456
  61525. }
  61526. },
  61527. },
  61528. [
  61529. {
  61530. name: "Descended",
  61531. height: math.unit(3, "feet")
  61532. },
  61533. {
  61534. name: "Average",
  61535. height: math.unit(6 + 1/12, "feet"),
  61536. default: true
  61537. },
  61538. {
  61539. name: "Ascended",
  61540. height: math.unit(9 + 2/12, "feet")
  61541. },
  61542. ]
  61543. ))
  61544. characterMakers.push(() => makeCharacter(
  61545. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61546. {
  61547. front: {
  61548. height: math.unit(6, "feet"),
  61549. weight: math.unit(150, "lb"),
  61550. name: "Front",
  61551. image: {
  61552. source: "./media/characters/kylie/front.svg",
  61553. extra: 1114/1046,
  61554. bottom: 65/1179
  61555. },
  61556. extraAttributes: {
  61557. "hoofSize": {
  61558. name: "Hoof Size",
  61559. power: 2,
  61560. type: "area",
  61561. base: math.unit(0.034, "m^2")
  61562. },
  61563. "footSize": {
  61564. name: "Foot Size",
  61565. power: 2,
  61566. type: "area",
  61567. base: math.unit(0.75, "m^2")
  61568. },
  61569. }
  61570. },
  61571. side: {
  61572. height: math.unit(6, "feet"),
  61573. weight: math.unit(150, "lb"),
  61574. name: "Side",
  61575. image: {
  61576. source: "./media/characters/kylie/side.svg",
  61577. extra: 1178/1110,
  61578. bottom: 21/1199
  61579. },
  61580. extraAttributes: {
  61581. "hoofSize": {
  61582. name: "Hoof Size",
  61583. power: 2,
  61584. type: "area",
  61585. base: math.unit(0.034, "m^2")
  61586. },
  61587. "footSize": {
  61588. name: "Foot Size",
  61589. power: 2,
  61590. type: "area",
  61591. base: math.unit(0.75, "m^2")
  61592. },
  61593. }
  61594. },
  61595. back: {
  61596. height: math.unit(6, "feet"),
  61597. weight: math.unit(150, "lb"),
  61598. name: "Back",
  61599. image: {
  61600. source: "./media/characters/kylie/back.svg",
  61601. extra: 1115/1047,
  61602. bottom: 66/1181
  61603. },
  61604. extraAttributes: {
  61605. "hoofSize": {
  61606. name: "Hoof Size",
  61607. power: 2,
  61608. type: "area",
  61609. base: math.unit(0.034, "m^2")
  61610. },
  61611. "footSize": {
  61612. name: "Foot Size",
  61613. power: 2,
  61614. type: "area",
  61615. base: math.unit(0.75, "m^2")
  61616. },
  61617. }
  61618. },
  61619. head: {
  61620. height: math.unit(1.85, "feet"),
  61621. name: "Head",
  61622. image: {
  61623. source: "./media/characters/kylie/head.svg"
  61624. }
  61625. },
  61626. },
  61627. [
  61628. {
  61629. name: "Normal",
  61630. height: math.unit(90, "meters"),
  61631. default: true
  61632. },
  61633. ]
  61634. ))
  61635. characterMakers.push(() => makeCharacter(
  61636. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61637. {
  61638. front: {
  61639. height: math.unit(245, "feet"),
  61640. weight: math.unit(400000, "lb"),
  61641. name: "Front",
  61642. image: {
  61643. source: "./media/characters/sabado/front.svg",
  61644. extra: 1309/1164,
  61645. bottom: 29/1338
  61646. }
  61647. },
  61648. },
  61649. [
  61650. {
  61651. name: "Normal",
  61652. height: math.unit(245, "feet"),
  61653. default: true
  61654. },
  61655. ]
  61656. ))
  61657. characterMakers.push(() => makeCharacter(
  61658. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61659. {
  61660. shark_front: {
  61661. height: math.unit(2, "meters"),
  61662. weight: math.unit(200, "kg"),
  61663. name: "Front",
  61664. image: {
  61665. source: "./media/characters/zechal/shark-front.svg",
  61666. extra: 969/925,
  61667. bottom: 74/1043
  61668. },
  61669. form: "shark",
  61670. },
  61671. shark_back: {
  61672. height: math.unit(2, "meters"),
  61673. weight: math.unit(200, "kg"),
  61674. name: "Back",
  61675. image: {
  61676. source: "./media/characters/zechal/shark-back.svg",
  61677. extra: 994/949,
  61678. bottom: 176/1170
  61679. },
  61680. form: "shark",
  61681. },
  61682. shark_frontLewd: {
  61683. height: math.unit(2, "meters"),
  61684. weight: math.unit(200, "kg"),
  61685. name: "Front (Lewd)",
  61686. image: {
  61687. source: "./media/characters/zechal/shark-front-lewd.svg",
  61688. extra: 969/925,
  61689. bottom: 74/1043
  61690. },
  61691. form: "shark",
  61692. },
  61693. shark_side: {
  61694. height: math.unit(1.56, "meters"),
  61695. weight: math.unit(200, "kg"),
  61696. name: "Side",
  61697. image: {
  61698. source: "./media/characters/zechal/shark-side.svg"
  61699. },
  61700. form: "shark",
  61701. },
  61702. dragon_front: {
  61703. height: math.unit(2, "meters"),
  61704. weight: math.unit(200, "kg"),
  61705. name: "Front",
  61706. image: {
  61707. source: "./media/characters/zechal/dragon-front.svg",
  61708. extra: 1041/925,
  61709. bottom: 74/1115
  61710. },
  61711. form: "dragon",
  61712. },
  61713. dragon_back: {
  61714. height: math.unit(2, "meters"),
  61715. weight: math.unit(200, "kg"),
  61716. name: "Back",
  61717. image: {
  61718. source: "./media/characters/zechal/dragon-back.svg",
  61719. extra: 1061/949,
  61720. bottom: 176/1237
  61721. },
  61722. form: "dragon",
  61723. },
  61724. dragon_frontLewd: {
  61725. height: math.unit(2, "meters"),
  61726. weight: math.unit(200, "kg"),
  61727. name: "Front (Lewd)",
  61728. image: {
  61729. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61730. extra: 1041/925,
  61731. bottom: 74/1115
  61732. },
  61733. form: "dragon",
  61734. },
  61735. dragon_side: {
  61736. height: math.unit(1.56, "meters"),
  61737. weight: math.unit(200, "kg"),
  61738. name: "Side",
  61739. image: {
  61740. source: "./media/characters/zechal/dragon-side.svg"
  61741. },
  61742. form: "dragon",
  61743. },
  61744. foot: {
  61745. height: math.unit(0.5, "meters"),
  61746. name: "Foot",
  61747. image: {
  61748. source: "./media/characters/zechal/foot.svg"
  61749. }
  61750. },
  61751. sheathFront: {
  61752. height: math.unit(0.45, "meters"),
  61753. name: "Sheath (Front)",
  61754. image: {
  61755. source: "./media/characters/zechal/sheath-front.svg"
  61756. }
  61757. },
  61758. sheathSide: {
  61759. height: math.unit(0.45, "meters"),
  61760. name: "Sheath (Side)",
  61761. image: {
  61762. source: "./media/characters/zechal/sheath-side.svg"
  61763. }
  61764. },
  61765. },
  61766. [
  61767. {
  61768. name: "Incognito",
  61769. height: math.unit(2, "meters"),
  61770. allForms: true
  61771. },
  61772. {
  61773. name: "Small Rampage",
  61774. height: math.unit(25, "meters"),
  61775. allForms: true
  61776. },
  61777. {
  61778. name: "Home Size",
  61779. height: math.unit(250, "meters"),
  61780. allForms: true,
  61781. default: true
  61782. },
  61783. {
  61784. name: "Macro+",
  61785. height: math.unit(700, "meters"),
  61786. allForms: true
  61787. },
  61788. {
  61789. name: "Small Mega",
  61790. height: math.unit(3, "km"),
  61791. allForms: true
  61792. },
  61793. {
  61794. name: "Mega",
  61795. height: math.unit(15, "km"),
  61796. allForms: true
  61797. },
  61798. {
  61799. name: "Giga",
  61800. height: math.unit(300, "km"),
  61801. allForms: true
  61802. },
  61803. {
  61804. name: "Giga+",
  61805. height: math.unit(1750, "km"),
  61806. allForms: true
  61807. },
  61808. {
  61809. name: "Continental",
  61810. height: math.unit(5000, "km"),
  61811. allForms: true
  61812. },
  61813. {
  61814. name: "Terra",
  61815. height: math.unit(20000, "km"),
  61816. allForms: true
  61817. },
  61818. {
  61819. name: "Terra+",
  61820. height: math.unit(300000, "km"),
  61821. allForms: true
  61822. },
  61823. {
  61824. name: "Solar",
  61825. height: math.unit(40000000, "km"),
  61826. allForms: true
  61827. },
  61828. {
  61829. name: "Galactic",
  61830. height: math.unit(810133, "parsecs"),
  61831. allForms: true
  61832. },
  61833. {
  61834. name: "Universal",
  61835. height: math.unit(25, "universes"),
  61836. allForms: true
  61837. },
  61838. ],
  61839. {
  61840. "shark": {
  61841. name: "Shark",
  61842. default: true
  61843. },
  61844. "dragon": {
  61845. name: "Dragon",
  61846. },
  61847. }
  61848. ))
  61849. characterMakers.push(() => makeCharacter(
  61850. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61851. {
  61852. front: {
  61853. height: math.unit(2.2, "meters"),
  61854. weight: math.unit(150, "kg"),
  61855. name: "Front",
  61856. image: {
  61857. source: "./media/characters/sergis/front.svg",
  61858. extra: 1314/1312,
  61859. bottom: 112/1426
  61860. }
  61861. },
  61862. back: {
  61863. height: math.unit(2.2, "meters"),
  61864. weight: math.unit(150, "kg"),
  61865. name: "Back",
  61866. image: {
  61867. source: "./media/characters/sergis/back.svg",
  61868. extra: 1335/1333,
  61869. bottom: 19/1354
  61870. }
  61871. },
  61872. frontLewd: {
  61873. height: math.unit(2.2, "meters"),
  61874. weight: math.unit(150, "kg"),
  61875. name: "Front (Lewd)",
  61876. image: {
  61877. source: "./media/characters/sergis/front-lewd.svg",
  61878. extra: 1314/1312,
  61879. bottom: 112/1426
  61880. }
  61881. },
  61882. frontDressed: {
  61883. height: math.unit(2.2, "meters"),
  61884. weight: math.unit(150, "kg"),
  61885. name: "Front (Dressed)",
  61886. image: {
  61887. source: "./media/characters/sergis/front-dressed.svg",
  61888. extra: 1330/1328,
  61889. bottom: 95/1425
  61890. }
  61891. },
  61892. frontDressedLewd: {
  61893. height: math.unit(2.2, "meters"),
  61894. weight: math.unit(150, "kg"),
  61895. name: "Front (Dressed, Lewd)",
  61896. image: {
  61897. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61898. extra: 1330/1328,
  61899. bottom: 95/1425
  61900. }
  61901. },
  61902. maw: {
  61903. height: math.unit(0.48, "meters"),
  61904. name: "Maw",
  61905. image: {
  61906. source: "./media/characters/sergis/maw.svg"
  61907. }
  61908. },
  61909. sheath: {
  61910. height: math.unit(0.38, "meters"),
  61911. name: "Sheath",
  61912. image: {
  61913. source: "./media/characters/sergis/sheath.svg"
  61914. }
  61915. },
  61916. },
  61917. [
  61918. {
  61919. name: "Incognito Size",
  61920. height: math.unit(2.2, "meters")
  61921. },
  61922. {
  61923. name: "Small Macro",
  61924. height: math.unit(40, "meters")
  61925. },
  61926. {
  61927. name: "Macro",
  61928. height: math.unit(150, "meters")
  61929. },
  61930. {
  61931. name: "Macro+",
  61932. height: math.unit(300, "meters")
  61933. },
  61934. {
  61935. name: "Mega",
  61936. height: math.unit(2.5, "km")
  61937. },
  61938. {
  61939. name: "Mega+",
  61940. height: math.unit(30, "km")
  61941. },
  61942. {
  61943. name: "Home Size",
  61944. height: math.unit(300, "km"),
  61945. default: true
  61946. },
  61947. {
  61948. name: "Giga+",
  61949. height: math.unit(1000, "km")
  61950. },
  61951. {
  61952. name: "Giga++",
  61953. height: math.unit(6000, "km")
  61954. },
  61955. {
  61956. name: "Terra",
  61957. height: math.unit(70000, "km")
  61958. },
  61959. {
  61960. name: "Terra+",
  61961. height: math.unit(200000, "km")
  61962. },
  61963. {
  61964. name: "Galactic",
  61965. height: math.unit(634200, "lightyears")
  61966. },
  61967. ]
  61968. ))
  61969. characterMakers.push(() => makeCharacter(
  61970. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61971. {
  61972. standard: {
  61973. height: math.unit(1 + 5/12, "feet"),
  61974. name: "Standard",
  61975. image: {
  61976. source: "./media/characters/spade/standard.svg",
  61977. extra: 1794/1703,
  61978. bottom: 115/1909
  61979. }
  61980. },
  61981. disguised: {
  61982. height: math.unit(1 + 5/12, "feet"),
  61983. name: "Disguised",
  61984. image: {
  61985. source: "./media/characters/spade/disguised.svg",
  61986. extra: 1794/1700,
  61987. bottom: 98/1892
  61988. }
  61989. },
  61990. },
  61991. [
  61992. {
  61993. name: "Normal",
  61994. height: math.unit(1 + 5/12, "feet"),
  61995. default: true
  61996. },
  61997. ]
  61998. ))
  61999. characterMakers.push(() => makeCharacter(
  62000. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62001. {
  62002. frontNsfw: {
  62003. height: math.unit(5, "meters"),
  62004. weight: math.unit(2000, "kg"),
  62005. preyCapacity: math.unit(5, "people"),
  62006. name: "Front (NSFW)",
  62007. image: {
  62008. source: "./media/characters/zeanlain/front-nsfw.svg",
  62009. extra: 1087/938,
  62010. bottom: 93/1180
  62011. },
  62012. extraAttributes: {
  62013. "wingspan": {
  62014. name: "Wingspan",
  62015. power: 1,
  62016. type: "length",
  62017. base: math.unit(10, "meters")
  62018. },
  62019. "footSize": {
  62020. name: "Foot Size",
  62021. power: 1,
  62022. type: "length",
  62023. base: math.unit(0.68, "meters")
  62024. },
  62025. "cockLength": {
  62026. name: "Cock Length",
  62027. power: 1,
  62028. type: "length",
  62029. base: math.unit(1.69, "meters")
  62030. },
  62031. "ballVolume": {
  62032. name: "Ball Volume",
  62033. power: 3,
  62034. type: "volume",
  62035. base: math.unit(0.028, "m^3")
  62036. },
  62037. }
  62038. },
  62039. front: {
  62040. height: math.unit(5, "meters"),
  62041. weight: math.unit(2000, "kg"),
  62042. preyCapacity: math.unit(3, "people"),
  62043. name: "Front",
  62044. image: {
  62045. source: "./media/characters/zeanlain/front.svg",
  62046. extra: 1087/938,
  62047. bottom: 93/1180
  62048. },
  62049. extraAttributes: {
  62050. "wingspan": {
  62051. name: "Wingspan",
  62052. power: 1,
  62053. type: "length",
  62054. base: math.unit(10, "meters")
  62055. },
  62056. "footSize": {
  62057. name: "Foot Size",
  62058. power: 1,
  62059. type: "length",
  62060. base: math.unit(0.68, "meters")
  62061. },
  62062. }
  62063. },
  62064. },
  62065. [
  62066. {
  62067. name: "Normal",
  62068. height: math.unit(5, "meters"),
  62069. default: true
  62070. },
  62071. ]
  62072. ))
  62073. characterMakers.push(() => makeCharacter(
  62074. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62075. {
  62076. front: {
  62077. height: math.unit(10, "meters"),
  62078. weight: math.unit(250000, "kg"),
  62079. name: "Front",
  62080. image: {
  62081. source: "./media/characters/airamis/front.svg",
  62082. extra: 865/835,
  62083. bottom: 13/878
  62084. }
  62085. },
  62086. },
  62087. [
  62088. {
  62089. name: "Normal",
  62090. height: math.unit(10, "meters"),
  62091. default: true
  62092. },
  62093. ]
  62094. ))
  62095. characterMakers.push(() => makeCharacter(
  62096. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62097. {
  62098. front: {
  62099. height: math.unit(3 + 3/12, "feet"),
  62100. weight: math.unit(75, "lb"),
  62101. name: "Front",
  62102. image: {
  62103. source: "./media/characters/corra-tourmaline/front.svg",
  62104. extra: 1037/864,
  62105. bottom: 39/1076
  62106. }
  62107. },
  62108. back: {
  62109. height: math.unit(3 + 3/12, "feet"),
  62110. weight: math.unit(75, "lb"),
  62111. name: "Back",
  62112. image: {
  62113. source: "./media/characters/corra-tourmaline/back.svg",
  62114. extra: 1022/849,
  62115. bottom: 26/1048
  62116. }
  62117. },
  62118. dressed: {
  62119. height: math.unit(3 + 3/12, "feet"),
  62120. weight: math.unit(75, "lb"),
  62121. name: "Dressed",
  62122. image: {
  62123. source: "./media/characters/corra-tourmaline/dressed.svg",
  62124. extra: 1037/864,
  62125. bottom: 39/1076
  62126. }
  62127. },
  62128. beans: {
  62129. height: math.unit(0.37, "feet"),
  62130. name: "Beans",
  62131. image: {
  62132. source: "./media/characters/corra-tourmaline/beans.svg"
  62133. }
  62134. },
  62135. },
  62136. [
  62137. {
  62138. name: "Normal",
  62139. height: math.unit(3 + 3/12, "feet"),
  62140. default: true
  62141. },
  62142. {
  62143. name: "Macro",
  62144. height: math.unit(32, "feet")
  62145. },
  62146. ]
  62147. ))
  62148. characterMakers.push(() => makeCharacter(
  62149. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62150. {
  62151. front: {
  62152. height: math.unit(6 + 2/12, "feet"),
  62153. weight: math.unit(203, "lb"),
  62154. name: "Front",
  62155. image: {
  62156. source: "./media/characters/maki-kawa/front.svg",
  62157. extra: 950/890,
  62158. bottom: 62/1012
  62159. }
  62160. },
  62161. back: {
  62162. height: math.unit(6 + 2/12, "feet"),
  62163. weight: math.unit(203, "lb"),
  62164. name: "Back",
  62165. image: {
  62166. source: "./media/characters/maki-kawa/back.svg",
  62167. extra: 953/878,
  62168. bottom: 49/1002
  62169. }
  62170. },
  62171. frontBarista: {
  62172. height: math.unit(6 + 2/12, "feet"),
  62173. weight: math.unit(203, "lb"),
  62174. name: "Front (Barista)",
  62175. image: {
  62176. source: "./media/characters/maki-kawa/front-barista.svg",
  62177. extra: 943/883,
  62178. bottom: 69/1012
  62179. }
  62180. },
  62181. backBarista: {
  62182. height: math.unit(6 + 2/12, "feet"),
  62183. weight: math.unit(203, "lb"),
  62184. name: "Back (Barista)",
  62185. image: {
  62186. source: "./media/characters/maki-kawa/back-barista.svg",
  62187. extra: 953/878,
  62188. bottom: 49/1002
  62189. }
  62190. },
  62191. frontWrestler: {
  62192. height: math.unit(6 + 2/12, "feet"),
  62193. weight: math.unit(203, "lb"),
  62194. name: "Front (Wrestler)",
  62195. image: {
  62196. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62197. extra: 950/890,
  62198. bottom: 62/1012
  62199. }
  62200. },
  62201. backWrestler: {
  62202. height: math.unit(6 + 2/12, "feet"),
  62203. weight: math.unit(203, "lb"),
  62204. name: "Back (Wrestler)",
  62205. image: {
  62206. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62207. extra: 953/878,
  62208. bottom: 49/1002
  62209. }
  62210. },
  62211. headFront: {
  62212. height: math.unit(1.64, "feet"),
  62213. name: "Head (Front)",
  62214. image: {
  62215. source: "./media/characters/maki-kawa/head-front.svg"
  62216. }
  62217. },
  62218. headSide: {
  62219. height: math.unit(1.59, "feet"),
  62220. name: "Head (Side)",
  62221. image: {
  62222. source: "./media/characters/maki-kawa/head-side.svg"
  62223. }
  62224. },
  62225. paw: {
  62226. height: math.unit(0.9, "feet"),
  62227. name: "Paw",
  62228. image: {
  62229. source: "./media/characters/maki-kawa/paw.svg"
  62230. }
  62231. },
  62232. },
  62233. [
  62234. {
  62235. name: "Normal",
  62236. height: math.unit(6 + 2/12, "feet"),
  62237. default: true
  62238. },
  62239. {
  62240. name: "Macro",
  62241. height: math.unit(617, "feet")
  62242. },
  62243. ]
  62244. ))
  62245. characterMakers.push(() => makeCharacter(
  62246. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62247. {
  62248. front: {
  62249. height: math.unit(10, "feet"),
  62250. weight: math.unit(1500, "lb"),
  62251. name: "Front",
  62252. image: {
  62253. source: "./media/characters/lennox/front.svg",
  62254. extra: 1623/1496,
  62255. bottom: 18/1641
  62256. }
  62257. },
  62258. back: {
  62259. height: math.unit(10, "feet"),
  62260. weight: math.unit(1500, "lb"),
  62261. name: "Back",
  62262. image: {
  62263. source: "./media/characters/lennox/back.svg",
  62264. extra: 1641/1481,
  62265. bottom: 13/1654
  62266. }
  62267. },
  62268. maw: {
  62269. height: math.unit(2.94, "feet"),
  62270. name: "Maw",
  62271. image: {
  62272. source: "./media/characters/lennox/maw.svg"
  62273. }
  62274. },
  62275. },
  62276. [
  62277. {
  62278. name: "Micro",
  62279. height: math.unit(1, "inch")
  62280. },
  62281. {
  62282. name: "Normal",
  62283. height: math.unit(10, "feet"),
  62284. default: true
  62285. },
  62286. {
  62287. name: "Macro",
  62288. height: math.unit(200, "feet")
  62289. },
  62290. ]
  62291. ))
  62292. characterMakers.push(() => makeCharacter(
  62293. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62294. {
  62295. frontDressed: {
  62296. height: math.unit(15 + 7/12, "feet"),
  62297. weight: math.unit(5000, "lb"),
  62298. name: "Front (Dressed)",
  62299. image: {
  62300. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62301. extra: 1136/1023,
  62302. bottom: 51/1187
  62303. }
  62304. },
  62305. backDressed: {
  62306. height: math.unit(15 + 7/12, "feet"),
  62307. weight: math.unit(5000, "lb"),
  62308. name: "Back (Dressed)",
  62309. image: {
  62310. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62311. extra: 2359/2143,
  62312. bottom: 103/2462
  62313. }
  62314. },
  62315. front: {
  62316. height: math.unit(15 + 7/12, "feet"),
  62317. weight: math.unit(5000, "lb"),
  62318. name: "Front",
  62319. image: {
  62320. source: "./media/characters/vyse-iron-thunder/front.svg",
  62321. extra: 1136/1023,
  62322. bottom: 51/1187
  62323. }
  62324. },
  62325. hand: {
  62326. height: math.unit(2.36, "feet"),
  62327. name: "Hand",
  62328. image: {
  62329. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62330. }
  62331. },
  62332. foot: {
  62333. height: math.unit(1.72, "feet"),
  62334. name: "Foot",
  62335. image: {
  62336. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62337. }
  62338. },
  62339. mouth: {
  62340. height: math.unit(2, "feet"),
  62341. name: "Mouth",
  62342. image: {
  62343. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62344. }
  62345. },
  62346. eye: {
  62347. height: math.unit(0.58, "feet"),
  62348. name: "Eye",
  62349. image: {
  62350. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62351. }
  62352. },
  62353. },
  62354. [
  62355. {
  62356. name: "Normal",
  62357. height: math.unit(15 + 7/12, "feet"),
  62358. default: true
  62359. },
  62360. {
  62361. name: "Macro",
  62362. height: math.unit(157, "feet")
  62363. },
  62364. {
  62365. name: "Macro+",
  62366. height: math.unit(1570, "feet")
  62367. },
  62368. {
  62369. name: "Macro++",
  62370. height: math.unit(15700, "feet")
  62371. },
  62372. {
  62373. name: "Macro+++",
  62374. height: math.unit(157000, "feet")
  62375. },
  62376. {
  62377. name: "Macro++++",
  62378. height: math.unit(1570000, "feet")
  62379. },
  62380. ]
  62381. ))
  62382. characterMakers.push(() => makeCharacter(
  62383. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62384. {
  62385. side: {
  62386. height: math.unit(6, "feet"),
  62387. weight: math.unit(115, "lb"),
  62388. name: "Side",
  62389. image: {
  62390. source: "./media/characters/moonbeam/side.svg",
  62391. extra: 839/485,
  62392. bottom: 60/899
  62393. }
  62394. },
  62395. },
  62396. [
  62397. {
  62398. name: "Normal",
  62399. height: math.unit(6, "feet"),
  62400. default: true
  62401. },
  62402. ]
  62403. ))
  62404. characterMakers.push(() => makeCharacter(
  62405. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62406. {
  62407. front: {
  62408. height: math.unit(3500, "miles"),
  62409. weight: math.unit(1659, "petatonnes"),
  62410. name: "Front",
  62411. image: {
  62412. source: "./media/characters/baltica/front.svg",
  62413. extra: 429/428,
  62414. bottom: 41/470
  62415. }
  62416. },
  62417. back: {
  62418. height: math.unit(3500, "miles"),
  62419. weight: math.unit(1659, "petatonnes"),
  62420. name: "Back",
  62421. image: {
  62422. source: "./media/characters/baltica/back.svg",
  62423. extra: 452/451,
  62424. bottom: 8/460
  62425. }
  62426. },
  62427. },
  62428. [
  62429. {
  62430. name: "Gigamacro",
  62431. height: math.unit(3500, "miles"),
  62432. default: true
  62433. },
  62434. ]
  62435. ))
  62436. characterMakers.push(() => makeCharacter(
  62437. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62438. {
  62439. front: {
  62440. height: math.unit(6 + 10/12, "feet"),
  62441. weight: math.unit(200, "lb"),
  62442. name: "Front",
  62443. image: {
  62444. source: "./media/characters/shadow-wolf/front.svg",
  62445. extra: 1931/1760,
  62446. bottom: 88/2019
  62447. }
  62448. },
  62449. },
  62450. [
  62451. {
  62452. name: "Normal",
  62453. height: math.unit(6 + 10/12, "feet"),
  62454. default: true
  62455. },
  62456. ]
  62457. ))
  62458. characterMakers.push(() => makeCharacter(
  62459. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62460. {
  62461. front: {
  62462. height: math.unit(5 + 10/12, "feet"),
  62463. name: "Front",
  62464. image: {
  62465. source: "./media/characters/quincy-praying-mantis/front.svg",
  62466. extra: 1055/891,
  62467. bottom: 92/1147
  62468. }
  62469. },
  62470. soles: {
  62471. height: math.unit(0.85, "feet"),
  62472. name: "Soles",
  62473. image: {
  62474. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62475. extra: 429/324,
  62476. bottom: 89/518
  62477. },
  62478. extraAttributes: {
  62479. "shoeSize": {
  62480. name: "Shoe Size",
  62481. power: 1,
  62482. type: "length",
  62483. base: math.unit(23, "ShoeSizeMensUS"),
  62484. defaultUnit: "ShoeSizeMensUS"
  62485. },
  62486. }
  62487. },
  62488. foot: {
  62489. height: math.unit(0.72, "feet"),
  62490. name: "Foot",
  62491. image: {
  62492. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62493. extra: 349/349,
  62494. bottom: 76/425
  62495. }
  62496. },
  62497. },
  62498. [
  62499. {
  62500. name: "Normal",
  62501. height: math.unit(5 + 10/12, "feet"),
  62502. default: true
  62503. },
  62504. ]
  62505. ))
  62506. characterMakers.push(() => makeCharacter(
  62507. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62508. {
  62509. front: {
  62510. height: math.unit(6, "feet"),
  62511. name: "Front",
  62512. image: {
  62513. source: "./media/characters/christopher-redwood/front.svg",
  62514. extra: 1402/1341,
  62515. bottom: 23/1425
  62516. }
  62517. },
  62518. back: {
  62519. height: math.unit(6, "feet"),
  62520. name: "Back",
  62521. image: {
  62522. source: "./media/characters/christopher-redwood/back.svg",
  62523. extra: 1406/1345,
  62524. bottom: 36/1442
  62525. }
  62526. },
  62527. head: {
  62528. height: math.unit(1.685, "feet"),
  62529. name: "Head",
  62530. image: {
  62531. source: "./media/characters/christopher-redwood/head.svg"
  62532. }
  62533. },
  62534. },
  62535. [
  62536. {
  62537. name: "Normal",
  62538. height: math.unit(6, "feet"),
  62539. default: true
  62540. },
  62541. ]
  62542. ))
  62543. characterMakers.push(() => makeCharacter(
  62544. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62545. {
  62546. front: {
  62547. height: math.unit(1.9, "meters"),
  62548. weight: math.unit(140, "lb"),
  62549. name: "Front",
  62550. image: {
  62551. source: "./media/characters/kara-fox/front.svg",
  62552. extra: 766/711,
  62553. bottom: 41/807
  62554. }
  62555. },
  62556. back: {
  62557. height: math.unit(1.9, "meters"),
  62558. weight: math.unit(140, "lb"),
  62559. name: "Back",
  62560. image: {
  62561. source: "./media/characters/kara-fox/back.svg",
  62562. extra: 766/596,
  62563. bottom: 29/795
  62564. }
  62565. },
  62566. maw: {
  62567. height: math.unit(0.78, "feet"),
  62568. name: "Maw",
  62569. image: {
  62570. source: "./media/characters/kara-fox/maw.svg"
  62571. }
  62572. },
  62573. pawpads: {
  62574. height: math.unit(0.96, "feet"),
  62575. name: "Pawpads",
  62576. image: {
  62577. source: "./media/characters/kara-fox/pawpads.svg"
  62578. }
  62579. },
  62580. },
  62581. [
  62582. {
  62583. name: "Normal",
  62584. height: math.unit(1.9, "meters"),
  62585. default: true
  62586. },
  62587. {
  62588. name: "Giantess",
  62589. height: math.unit(80, "meters")
  62590. },
  62591. ]
  62592. ))
  62593. characterMakers.push(() => makeCharacter(
  62594. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62595. {
  62596. front: {
  62597. height: math.unit(12, "feet"),
  62598. name: "Front",
  62599. image: {
  62600. source: "./media/characters/naomi-espeon/front.svg",
  62601. extra: 892/797,
  62602. bottom: 5/897
  62603. }
  62604. },
  62605. back: {
  62606. height: math.unit(12, "feet"),
  62607. name: "Back",
  62608. image: {
  62609. source: "./media/characters/naomi-espeon/back.svg",
  62610. extra: 890/785,
  62611. bottom: 12/902
  62612. }
  62613. },
  62614. },
  62615. [
  62616. {
  62617. name: "Normal",
  62618. height: math.unit(12, "feet"),
  62619. default: true
  62620. },
  62621. ]
  62622. ))
  62623. characterMakers.push(() => makeCharacter(
  62624. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62625. {
  62626. anthro_front: {
  62627. height: math.unit(8, "feet"),
  62628. weight: math.unit(625, "lb"),
  62629. name: "Front",
  62630. image: {
  62631. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62632. extra: 638/574,
  62633. bottom: 73/711
  62634. },
  62635. form: "anthro",
  62636. default: true
  62637. },
  62638. anthro_back: {
  62639. height: math.unit(8, "feet"),
  62640. weight: math.unit(625, "lb"),
  62641. name: "Back",
  62642. image: {
  62643. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62644. extra: 674/614,
  62645. bottom: 7/681
  62646. },
  62647. form: "anthro",
  62648. },
  62649. taur_side: {
  62650. height: math.unit(16, "feet"),
  62651. weight: math.unit(4.5, "tons"),
  62652. name: "Side",
  62653. image: {
  62654. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62655. extra: 704/646,
  62656. bottom: 132/836
  62657. },
  62658. form: "taur",
  62659. default: true
  62660. },
  62661. },
  62662. [
  62663. {
  62664. name: "Normal",
  62665. height: math.unit(8, "feet"),
  62666. default: true,
  62667. form: "anthro"
  62668. },
  62669. {
  62670. name: "Normal",
  62671. height: math.unit(16, "feet"),
  62672. default: true,
  62673. form: "taur"
  62674. },
  62675. ],
  62676. {
  62677. "anthro": {
  62678. name: "Anthro",
  62679. default: true
  62680. },
  62681. "taur": {
  62682. name: "Taur",
  62683. },
  62684. }
  62685. ))
  62686. characterMakers.push(() => makeCharacter(
  62687. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62688. {
  62689. front: {
  62690. height: math.unit(190, "cm"),
  62691. weight: math.unit(110, "kg"),
  62692. name: "Front",
  62693. image: {
  62694. source: "./media/characters/amelie/front.svg",
  62695. extra: 530/442,
  62696. bottom: 35/565
  62697. }
  62698. },
  62699. },
  62700. [
  62701. {
  62702. name: "Normal",
  62703. height: math.unit(190, "cm"),
  62704. default: true
  62705. },
  62706. ]
  62707. ))
  62708. characterMakers.push(() => makeCharacter(
  62709. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62710. {
  62711. front: {
  62712. height: math.unit(21, "feet"),
  62713. weight: math.unit(30000, "lb"),
  62714. name: "Front",
  62715. image: {
  62716. source: "./media/characters/valence/front.svg",
  62717. extra: 1430/1306,
  62718. bottom: 51/1481
  62719. }
  62720. },
  62721. },
  62722. [
  62723. {
  62724. name: "Normal",
  62725. height: math.unit(21, "feet"),
  62726. default: true
  62727. },
  62728. ]
  62729. ))
  62730. characterMakers.push(() => makeCharacter(
  62731. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62732. {
  62733. front: {
  62734. height: math.unit(5 + 9/12, "feet"),
  62735. weight: math.unit(170, "lb"),
  62736. name: "Front",
  62737. image: {
  62738. source: "./media/characters/aurora-adkins/front.svg",
  62739. extra: 1141/1089,
  62740. bottom: 41/1182
  62741. }
  62742. },
  62743. },
  62744. [
  62745. {
  62746. name: "Tiny",
  62747. height: math.unit(7, "mm")
  62748. },
  62749. {
  62750. name: "Small",
  62751. height: math.unit(3.4, "inches")
  62752. },
  62753. {
  62754. name: "Normal",
  62755. height: math.unit(5 + 9/12, "feet"),
  62756. default: true
  62757. },
  62758. {
  62759. name: "Big",
  62760. height: math.unit(31, "feet")
  62761. },
  62762. {
  62763. name: "Giant",
  62764. height: math.unit(300, "feet")
  62765. },
  62766. ]
  62767. ))
  62768. characterMakers.push(() => makeCharacter(
  62769. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62770. {
  62771. front: {
  62772. height: math.unit(5 + 6/12, "feet"),
  62773. weight: math.unit(210, "lb"),
  62774. name: "Front",
  62775. image: {
  62776. source: "./media/characters/cyber/front.svg",
  62777. extra: 1968/1798,
  62778. bottom: 10/1978
  62779. },
  62780. extraAttributes: {
  62781. "shoeSize": {
  62782. name: "Shoe Size",
  62783. power: 1,
  62784. type: "length",
  62785. base: math.unit(30, "ShoeSizeMensUS")
  62786. },
  62787. }
  62788. },
  62789. },
  62790. [
  62791. {
  62792. name: "Normal",
  62793. height: math.unit(5 + 6/12, "feet"),
  62794. default: true
  62795. },
  62796. ]
  62797. ))
  62798. characterMakers.push(() => makeCharacter(
  62799. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62800. {
  62801. front: {
  62802. height: math.unit(6 + 6/12, "feet"),
  62803. weight: math.unit(140, "lb"),
  62804. name: "Front",
  62805. image: {
  62806. source: "./media/characters/sapphire-wairimea/front.svg",
  62807. extra: 475/458,
  62808. bottom: 14/489
  62809. }
  62810. },
  62811. },
  62812. [
  62813. {
  62814. name: "Normal",
  62815. height: math.unit(6 + 6/12, "feet")
  62816. },
  62817. {
  62818. name: "Macro",
  62819. height: math.unit(132, "feet"),
  62820. default: true
  62821. },
  62822. ]
  62823. ))
  62824. characterMakers.push(() => makeCharacter(
  62825. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62826. {
  62827. front: {
  62828. height: math.unit(1.6, "meters"),
  62829. weight: math.unit(100, "lb"),
  62830. name: "Front",
  62831. image: {
  62832. source: "./media/characters/cirkazi/front.svg",
  62833. extra: 489/477,
  62834. bottom: 0/489
  62835. }
  62836. },
  62837. },
  62838. [
  62839. {
  62840. name: "Normal",
  62841. height: math.unit(1.6, "meters")
  62842. },
  62843. {
  62844. name: "Macro",
  62845. height: math.unit(800, "feet"),
  62846. default: true
  62847. },
  62848. ]
  62849. ))
  62850. characterMakers.push(() => makeCharacter(
  62851. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62852. {
  62853. front: {
  62854. height: math.unit(5 + 10/12, "feet"),
  62855. weight: math.unit(145, "lb"),
  62856. name: "Front",
  62857. image: {
  62858. source: "./media/characters/corrin-cavelli/front.svg",
  62859. extra: 483/464,
  62860. bottom: 6/489
  62861. }
  62862. },
  62863. },
  62864. [
  62865. {
  62866. name: "Human",
  62867. height: math.unit(5 + 10/12, "feet")
  62868. },
  62869. {
  62870. name: "Giant",
  62871. height: math.unit(210, "feet"),
  62872. default: true
  62873. },
  62874. ]
  62875. ))
  62876. characterMakers.push(() => makeCharacter(
  62877. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62878. {
  62879. back: {
  62880. height: math.unit(5 + 6/12, "feet"),
  62881. weight: math.unit(115, "lb"),
  62882. name: "Back",
  62883. image: {
  62884. source: "./media/characters/lori-lopez/back.svg",
  62885. extra: 483/474,
  62886. bottom: 6/489
  62887. }
  62888. },
  62889. },
  62890. [
  62891. {
  62892. name: "Human",
  62893. height: math.unit(5 + 6/12, "feet")
  62894. },
  62895. {
  62896. name: "Macro",
  62897. height: math.unit(198, "feet"),
  62898. default: true
  62899. },
  62900. ]
  62901. ))
  62902. characterMakers.push(() => makeCharacter(
  62903. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62904. {
  62905. front: {
  62906. height: math.unit(6, "feet"),
  62907. weight: math.unit(220, "lb"),
  62908. name: "Front",
  62909. image: {
  62910. source: "./media/characters/sylvia-beauregard/front.svg",
  62911. extra: 483/479,
  62912. bottom: 6/489
  62913. }
  62914. },
  62915. },
  62916. [
  62917. {
  62918. name: "Macro",
  62919. height: math.unit(2071, "feet"),
  62920. default: true
  62921. },
  62922. ]
  62923. ))
  62924. characterMakers.push(() => makeCharacter(
  62925. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62926. {
  62927. back: {
  62928. height: math.unit(5 + 6/12, "feet"),
  62929. weight: math.unit(160, "lb"),
  62930. name: "Back",
  62931. image: {
  62932. source: "./media/characters/akiko-takahashi/back.svg",
  62933. extra: 459/454,
  62934. bottom: 27/486
  62935. }
  62936. },
  62937. },
  62938. [
  62939. {
  62940. name: "Human",
  62941. height: math.unit(5 + 6/12, "feet")
  62942. },
  62943. {
  62944. name: "Macro",
  62945. height: math.unit(198, "feet"),
  62946. default: true
  62947. },
  62948. {
  62949. name: "Megamacro",
  62950. height: math.unit(7128, "feet")
  62951. },
  62952. ]
  62953. ))
  62954. characterMakers.push(() => makeCharacter(
  62955. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62956. {
  62957. front: {
  62958. height: math.unit(6, "feet"),
  62959. weight: math.unit(140, "lb"),
  62960. name: "Front",
  62961. image: {
  62962. source: "./media/characters/velvet-garza/front.svg",
  62963. extra: 480/462,
  62964. bottom: 7/487
  62965. }
  62966. },
  62967. },
  62968. [
  62969. {
  62970. name: "Macro",
  62971. height: math.unit(37, "feet"),
  62972. default: true
  62973. },
  62974. ]
  62975. ))
  62976. characterMakers.push(() => makeCharacter(
  62977. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62978. {
  62979. front: {
  62980. height: math.unit(7 + 6/12, "feet"),
  62981. weight: math.unit(400, "lb"),
  62982. name: "Front",
  62983. image: {
  62984. source: "./media/characters/gaia/front.svg",
  62985. extra: 474/463,
  62986. bottom: 13/487
  62987. }
  62988. },
  62989. },
  62990. [
  62991. {
  62992. name: "MiniMacro",
  62993. height: math.unit(7 + 6/12, "feet")
  62994. },
  62995. {
  62996. name: "GigaMacro",
  62997. height: math.unit(14500, "feet"),
  62998. default: true
  62999. },
  63000. ]
  63001. ))
  63002. characterMakers.push(() => makeCharacter(
  63003. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63004. {
  63005. front: {
  63006. height: math.unit(6, "feet"),
  63007. weight: math.unit(150, "lb"),
  63008. name: "Front",
  63009. image: {
  63010. source: "./media/characters/tim/front.svg",
  63011. extra: 1878/1743,
  63012. bottom: 9/1887
  63013. }
  63014. },
  63015. frontDressed: {
  63016. height: math.unit(6, "feet"),
  63017. weight: math.unit(150, "lb"),
  63018. name: "Front (Dressed)",
  63019. image: {
  63020. source: "./media/characters/tim/front-dressed.svg",
  63021. extra: 1765/1485,
  63022. bottom: 48/1813
  63023. }
  63024. },
  63025. backDressed: {
  63026. height: math.unit(6, "feet"),
  63027. weight: math.unit(150, "lb"),
  63028. name: "Back (Dressed)",
  63029. image: {
  63030. source: "./media/characters/tim/back-dressed.svg",
  63031. extra: 1750/1465,
  63032. bottom: 25/1775
  63033. }
  63034. },
  63035. dick: {
  63036. height: math.unit(1.5, "feet"),
  63037. weight: math.unit(6, "lb"),
  63038. name: "Dick",
  63039. image: {
  63040. source: "./media/characters/tim/dick.svg"
  63041. }
  63042. },
  63043. hand: {
  63044. height: math.unit(0.522, "feet"),
  63045. name: "Hand",
  63046. image: {
  63047. source: "./media/characters/tim/hand.svg"
  63048. }
  63049. },
  63050. palm: {
  63051. height: math.unit(0.48, "feet"),
  63052. name: "Palm",
  63053. image: {
  63054. source: "./media/characters/tim/palm.svg"
  63055. }
  63056. },
  63057. paw: {
  63058. height: math.unit(0.9, "feet"),
  63059. name: "Paw",
  63060. image: {
  63061. source: "./media/characters/tim/paw.svg"
  63062. }
  63063. },
  63064. sole: {
  63065. height: math.unit(0.88, "feet"),
  63066. name: "Sole",
  63067. image: {
  63068. source: "./media/characters/tim/sole.svg"
  63069. }
  63070. },
  63071. },
  63072. [
  63073. {
  63074. name: "Macro",
  63075. height: math.unit(1000, "feet")
  63076. },
  63077. {
  63078. name: "Megamacro",
  63079. height: math.unit(10000, "feet"),
  63080. default: true
  63081. },
  63082. {
  63083. name: "Megamacro+",
  63084. height: math.unit(50000, "feet")
  63085. },
  63086. {
  63087. name: "Gigamacro",
  63088. height: math.unit(150000, "km")
  63089. },
  63090. ]
  63091. ))
  63092. characterMakers.push(() => makeCharacter(
  63093. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63094. {
  63095. front: {
  63096. height: math.unit(5 + 8/12, "feet"),
  63097. weight: math.unit(170, "lb"),
  63098. name: "Front",
  63099. image: {
  63100. source: "./media/characters/abel-delreoux/front.svg",
  63101. extra: 1615/1500,
  63102. bottom: 82/1697
  63103. }
  63104. },
  63105. back: {
  63106. height: math.unit(5 + 8/12, "feet"),
  63107. weight: math.unit(170, "lb"),
  63108. name: "Back",
  63109. image: {
  63110. source: "./media/characters/abel-delreoux/back.svg",
  63111. extra: 1644/1534,
  63112. bottom: 24/1668
  63113. }
  63114. },
  63115. casual: {
  63116. height: math.unit(5 + 8/12, "feet"),
  63117. weight: math.unit(170, "lb"),
  63118. name: "Casual",
  63119. image: {
  63120. source: "./media/characters/abel-delreoux/casual.svg",
  63121. extra: 1716/1598,
  63122. bottom: 29/1745
  63123. }
  63124. },
  63125. sleepy: {
  63126. height: math.unit(5 + 8/12, "feet"),
  63127. weight: math.unit(170, "lb"),
  63128. name: "Sleepy",
  63129. image: {
  63130. source: "./media/characters/abel-delreoux/sleepy.svg",
  63131. extra: 1649/1573,
  63132. bottom: 22/1671
  63133. }
  63134. },
  63135. fem: {
  63136. height: math.unit(5 + 8/12, "feet"),
  63137. weight: math.unit(170, "lb"),
  63138. name: "Fem",
  63139. image: {
  63140. source: "./media/characters/abel-delreoux/fem.svg",
  63141. extra: 1680/1564,
  63142. bottom: 17/1697
  63143. }
  63144. },
  63145. hand: {
  63146. height: math.unit(0.78, "feet"),
  63147. name: "Hand",
  63148. image: {
  63149. source: "./media/characters/abel-delreoux/hand.svg"
  63150. }
  63151. },
  63152. paw: {
  63153. height: math.unit(0.78, "feet"),
  63154. name: "Paw",
  63155. image: {
  63156. source: "./media/characters/abel-delreoux/paw.svg"
  63157. }
  63158. },
  63159. },
  63160. [
  63161. {
  63162. name: "Normal",
  63163. height: math.unit(5 + 8/12, "feet"),
  63164. default: true
  63165. },
  63166. ]
  63167. ))
  63168. characterMakers.push(() => makeCharacter(
  63169. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63170. {
  63171. front: {
  63172. height: math.unit(6, "feet"),
  63173. weight: math.unit(159, "lb"),
  63174. name: "Front",
  63175. image: {
  63176. source: "./media/characters/meus/front.svg",
  63177. extra: 938/843,
  63178. bottom: 37/975
  63179. }
  63180. },
  63181. back: {
  63182. height: math.unit(6, "feet"),
  63183. weight: math.unit(159, "lb"),
  63184. name: "Back",
  63185. image: {
  63186. source: "./media/characters/meus/back.svg",
  63187. extra: 967/873,
  63188. bottom: 12/979
  63189. }
  63190. },
  63191. },
  63192. [
  63193. {
  63194. name: "Micro",
  63195. height: math.unit(2, "inches")
  63196. },
  63197. {
  63198. name: "Mini",
  63199. height: math.unit(6, "inches")
  63200. },
  63201. {
  63202. name: "Normal",
  63203. height: math.unit(6, "feet"),
  63204. default: true
  63205. },
  63206. {
  63207. name: "Macro",
  63208. height: math.unit(84, "feet")
  63209. },
  63210. ]
  63211. ))
  63212. characterMakers.push(() => makeCharacter(
  63213. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63214. {
  63215. front: {
  63216. height: math.unit(60, "cm"),
  63217. weight: math.unit(18, "kg"),
  63218. name: "Front",
  63219. image: {
  63220. source: "./media/characters/yamato/front.svg",
  63221. extra: 733/688,
  63222. bottom: 29/762
  63223. }
  63224. },
  63225. },
  63226. [
  63227. {
  63228. name: "Micro",
  63229. height: math.unit(6, "cm")
  63230. },
  63231. {
  63232. name: "Normal",
  63233. height: math.unit(60, "cm"),
  63234. default: true
  63235. },
  63236. ]
  63237. ))
  63238. characterMakers.push(() => makeCharacter(
  63239. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63240. {
  63241. front: {
  63242. height: math.unit(9, "feet"),
  63243. weight: math.unit(518, "lb"),
  63244. name: "Front",
  63245. image: {
  63246. source: "./media/characters/barus/front.svg",
  63247. extra: 1877/1795,
  63248. bottom: 55/1932
  63249. }
  63250. },
  63251. },
  63252. [
  63253. {
  63254. name: "Base Height",
  63255. height: math.unit(9, "feet"),
  63256. default: true
  63257. },
  63258. {
  63259. name: "Large",
  63260. height: math.unit(18, "feet")
  63261. },
  63262. {
  63263. name: "Giant",
  63264. height: math.unit(100, "feet")
  63265. },
  63266. {
  63267. name: "Huge",
  63268. height: math.unit(500, "feet")
  63269. },
  63270. {
  63271. name: "Enormous",
  63272. height: math.unit(300, "meters")
  63273. },
  63274. {
  63275. name: "Deity Among Man",
  63276. height: math.unit(3000, "meters")
  63277. },
  63278. ]
  63279. ))
  63280. characterMakers.push(() => makeCharacter(
  63281. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63282. {
  63283. front: {
  63284. height: math.unit(1.7, "meters"),
  63285. name: "Front",
  63286. image: {
  63287. source: "./media/characters/yari/front.svg",
  63288. extra: 1210/1125,
  63289. bottom: 283/1493
  63290. }
  63291. },
  63292. back: {
  63293. height: math.unit(1.7, "meters"),
  63294. name: "Back",
  63295. image: {
  63296. source: "./media/characters/yari/back.svg",
  63297. extra: 1240/1195,
  63298. bottom: 180/1420
  63299. }
  63300. },
  63301. head: {
  63302. height: math.unit(1.26, "feet"),
  63303. name: "Head",
  63304. image: {
  63305. source: "./media/characters/yari/head.svg"
  63306. }
  63307. },
  63308. },
  63309. [
  63310. {
  63311. name: "Nano",
  63312. height: math.unit(0.5, "mm")
  63313. },
  63314. {
  63315. name: "Micro",
  63316. height: math.unit(3, "inches")
  63317. },
  63318. {
  63319. name: "Short",
  63320. height: math.unit(1.5, "meters")
  63321. },
  63322. {
  63323. name: "Norm",
  63324. height: math.unit(1.7, "meters"),
  63325. default: true
  63326. },
  63327. ]
  63328. ))
  63329. characterMakers.push(() => makeCharacter(
  63330. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63331. {
  63332. front: {
  63333. height: math.unit(5 + 2/12, "feet"),
  63334. weight: math.unit(110, "lb"),
  63335. name: "Front",
  63336. image: {
  63337. source: "./media/characters/salem/front.svg",
  63338. extra: 1895/1800,
  63339. bottom: 23/1918
  63340. }
  63341. },
  63342. back: {
  63343. height: math.unit(5 + 2/12, "feet"),
  63344. weight: math.unit(110, "lb"),
  63345. name: "Back",
  63346. image: {
  63347. source: "./media/characters/salem/back.svg",
  63348. extra: 1875/1802,
  63349. bottom: 20/1895
  63350. }
  63351. },
  63352. head: {
  63353. height: math.unit(1, "feet"),
  63354. name: "Head",
  63355. image: {
  63356. source: "./media/characters/salem/head.svg"
  63357. }
  63358. },
  63359. paw: {
  63360. height: math.unit(0.59, "feet"),
  63361. name: "Paw",
  63362. image: {
  63363. source: "./media/characters/salem/paw.svg"
  63364. }
  63365. },
  63366. beans: {
  63367. height: math.unit(0.66, "feet"),
  63368. name: "Beans",
  63369. image: {
  63370. source: "./media/characters/salem/beans.svg"
  63371. }
  63372. },
  63373. eye: {
  63374. height: math.unit(0.224, "feet"),
  63375. name: "Eye",
  63376. image: {
  63377. source: "./media/characters/salem/eye.svg"
  63378. }
  63379. },
  63380. semiferal: {
  63381. height: math.unit(2.3, "feet"),
  63382. name: "Semiferal",
  63383. image: {
  63384. source: "./media/characters/salem/semiferal.svg",
  63385. extra: 914/839,
  63386. bottom: 32/946
  63387. }
  63388. },
  63389. },
  63390. [
  63391. {
  63392. name: "Micro",
  63393. height: math.unit(4, "inches")
  63394. },
  63395. {
  63396. name: "Normal",
  63397. height: math.unit(5 + 2/12, "feet"),
  63398. default: true
  63399. },
  63400. {
  63401. name: "Macro",
  63402. height: math.unit(108, "feet")
  63403. },
  63404. {
  63405. name: "Macro+",
  63406. height: math.unit(1500, "feet")
  63407. },
  63408. ]
  63409. ))
  63410. characterMakers.push(() => makeCharacter(
  63411. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63412. {
  63413. front: {
  63414. height: math.unit(7 + 6/12, "feet"),
  63415. weight: math.unit(600, "kg"),
  63416. preyCapacity: math.unit(10, "people"),
  63417. name: "Front",
  63418. image: {
  63419. source: "./media/characters/kii/front.svg",
  63420. extra: 3296/3087,
  63421. bottom: 130/3426
  63422. }
  63423. },
  63424. },
  63425. [
  63426. {
  63427. name: "Normal",
  63428. height: math.unit(7 + 6/12, "feet"),
  63429. default: true
  63430. },
  63431. ]
  63432. ))
  63433. characterMakers.push(() => makeCharacter(
  63434. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63435. {
  63436. front: {
  63437. height: math.unit(2, "meters"),
  63438. weight: math.unit(200, "lb"),
  63439. name: "Front",
  63440. image: {
  63441. source: "./media/characters/taffy/front.svg",
  63442. extra: 1666/1618,
  63443. bottom: 157/1823
  63444. }
  63445. },
  63446. back: {
  63447. height: math.unit(2, "meters"),
  63448. weight: math.unit(200, "lb"),
  63449. name: "Back",
  63450. image: {
  63451. source: "./media/characters/taffy/back.svg",
  63452. extra: 1635/1583,
  63453. bottom: 153/1788
  63454. }
  63455. },
  63456. },
  63457. [
  63458. {
  63459. name: "Normal",
  63460. height: math.unit(2, "meters"),
  63461. default: true
  63462. },
  63463. ]
  63464. ))
  63465. characterMakers.push(() => makeCharacter(
  63466. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63467. {
  63468. front: {
  63469. height: math.unit(1.55, "meters"),
  63470. weight: math.unit(60, "kg"),
  63471. name: "Front",
  63472. image: {
  63473. source: "./media/characters/barley/front.svg",
  63474. extra: 1520/1340,
  63475. bottom: 47/1567
  63476. }
  63477. },
  63478. back: {
  63479. height: math.unit(1.55, "meters"),
  63480. weight: math.unit(60, "kg"),
  63481. name: "Back",
  63482. image: {
  63483. source: "./media/characters/barley/back.svg",
  63484. extra: 1543/1341,
  63485. bottom: 12/1555
  63486. }
  63487. },
  63488. feet: {
  63489. height: math.unit(2.18, "feet"),
  63490. name: "Feet",
  63491. image: {
  63492. source: "./media/characters/barley/feet.svg"
  63493. }
  63494. },
  63495. },
  63496. [
  63497. {
  63498. name: "Normal",
  63499. height: math.unit(1.55, "meters"),
  63500. default: true
  63501. },
  63502. ]
  63503. ))
  63504. characterMakers.push(() => makeCharacter(
  63505. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63506. {
  63507. dressed: {
  63508. height: math.unit(6, "feet"),
  63509. name: "Dressed",
  63510. image: {
  63511. source: "./media/characters/lydia-lopez/dressed.svg",
  63512. extra: 1319/1277,
  63513. bottom: 90/1409
  63514. }
  63515. },
  63516. nude: {
  63517. height: math.unit(6, "feet"),
  63518. name: "Nude",
  63519. image: {
  63520. source: "./media/characters/lydia-lopez/nude.svg",
  63521. extra: 1319/1277,
  63522. bottom: 90/1409
  63523. }
  63524. },
  63525. },
  63526. [
  63527. {
  63528. name: "Normal",
  63529. height: math.unit(6, "feet"),
  63530. default: true
  63531. },
  63532. {
  63533. name: "Maximum",
  63534. height: math.unit(2101, "feet")
  63535. },
  63536. ]
  63537. ))
  63538. characterMakers.push(() => makeCharacter(
  63539. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63540. {
  63541. front: {
  63542. height: math.unit(5 + 4/12, "feet"),
  63543. weight: math.unit(250, "lb"),
  63544. volume: math.unit(20, "gallons"),
  63545. name: "Front",
  63546. image: {
  63547. source: "./media/characters/kira-slime/front.svg",
  63548. extra: 442/403,
  63549. bottom: 18/460
  63550. }
  63551. },
  63552. frontNsfw: {
  63553. height: math.unit(5 + 4/12, "feet"),
  63554. weight: math.unit(250, "lb"),
  63555. volume: math.unit(20, "gallons"),
  63556. name: "Front (NSFW)",
  63557. image: {
  63558. source: "./media/characters/kira-slime/front-nsfw.svg",
  63559. extra: 442/403,
  63560. bottom: 18/460
  63561. }
  63562. },
  63563. },
  63564. [
  63565. {
  63566. name: "Droplet",
  63567. height: math.unit(0.0464452, "feet")
  63568. },
  63569. {
  63570. name: "Pint",
  63571. height: math.unit(0.9824, "feet")
  63572. },
  63573. {
  63574. name: "Bucket",
  63575. height: math.unit(2.83, "feet")
  63576. },
  63577. {
  63578. name: "Normal",
  63579. height: math.unit(5 + 4/12, "feet"),
  63580. default: true
  63581. },
  63582. {
  63583. name: "Tub",
  63584. height: math.unit(8.46614, "feet")
  63585. },
  63586. {
  63587. name: "Pool",
  63588. height: math.unit(31.1895, "feet")
  63589. },
  63590. {
  63591. name: "Pond",
  63592. height: math.unit(170.349, "feet")
  63593. },
  63594. {
  63595. name: "Lake",
  63596. height: math.unit(289334, "feet")
  63597. },
  63598. {
  63599. name: "Ocean",
  63600. height: math.unit(1.11940e+7, "feet")
  63601. },
  63602. ]
  63603. ))
  63604. characterMakers.push(() => makeCharacter(
  63605. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63606. {
  63607. front: {
  63608. height: math.unit(5 + 6/12, "feet"),
  63609. weight: math.unit(120, "lb"),
  63610. name: "Front",
  63611. image: {
  63612. source: "./media/characters/holiday/front.svg",
  63613. extra: 456/403,
  63614. bottom: 4/460
  63615. }
  63616. },
  63617. back: {
  63618. height: math.unit(5 + 6/12, "feet"),
  63619. weight: math.unit(120, "lb"),
  63620. name: "Back",
  63621. image: {
  63622. source: "./media/characters/holiday/back.svg",
  63623. extra: 450/404,
  63624. bottom: 12/462
  63625. }
  63626. },
  63627. head: {
  63628. height: math.unit(2.3, "feet"),
  63629. name: "Head",
  63630. image: {
  63631. source: "./media/characters/holiday/head.svg"
  63632. }
  63633. },
  63634. },
  63635. [
  63636. {
  63637. name: "Normal",
  63638. height: math.unit(5 + 6/12, "feet"),
  63639. default: true
  63640. },
  63641. {
  63642. name: "Macro",
  63643. height: math.unit(6574.25, "feet")
  63644. },
  63645. ]
  63646. ))
  63647. //characters
  63648. function makeCharacters() {
  63649. const results = [];
  63650. characterMakers.forEach(character => {
  63651. results.push(character());
  63652. });
  63653. return results;
  63654. }